Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andreped/4b0988424c837c8060835ed15b8ee1e9 to your computer and use it in GitHub Desktop.
Save andreped/4b0988424c837c8060835ed15b8ee1e9 to your computer and use it in GitHub Desktop.
breast_cancer_mortality_rate_world_map.ipynb
Display the source blob
Display the rendered blob
Raw
{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"provenance": [],
"authorship_tag": "ABX9TyNSXhV5QNwKEYsnf3HirflN",
"include_colab_link": true
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
},
"language_info": {
"name": "python"
}
},
"cells": [
{
"cell_type": "markdown",
"metadata": {
"id": "view-in-github",
"colab_type": "text"
},
"source": [
"<a href=\"https://colab.research.google.com/gist/andreped/4b0988424c837c8060835ed15b8ee1e9/breast_cancer_mortality_rate_world_map.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"id": "vYf6bBGlD7MY"
},
"outputs": [],
"source": [
"# Install dependencies\n",
"!pip install -q geopandas folium pycountry Pillow selenium"
]
},
{
"cell_type": "code",
"source": [
"# Download data\n",
"!mkdir data/ && wget -O ./data/SA_0000001439.csv \"https://apps.who.int/gho/athena/api/GHO/SA_0000001439?format=csv\""
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "2cNXOCr9EB6e",
"outputId": "24d4992b-4dd9-4923-839a-68307c7b6bec"
},
"execution_count": 5,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"mkdir: cannot create directory ‘data/’: File exists\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"import folium\n",
"import pandas as pd\n",
"import pycountry\n",
"import io\n",
"from PIL import Image\n",
"\n",
"# load data\n",
"cancer_data = pd.read_csv(\"./data/SA_0000001439.csv\")\n",
"political_countries_url = (\n",
" \"http://geojson.xyz/naturalearth-3.3.0/ne_50m_admin_0_countries.geojson\"\n",
")\n",
"\n",
"# convert country code to full name\n",
"tmp = []\n",
"for x in cancer_data[\"COUNTRY\"]:\n",
" try:\n",
" tmp.append(pycountry.countries.get(alpha_3=x).name)\n",
" except AttributeError:\n",
" tmp.append(x)\n",
"cancer_data[\"COUNTRY\"] = tmp\n",
"\n",
"# create world map and layout\n",
"m = folium.Map(location=(30, 10), zoom_start=2, tiles=\"cartodb positron\")\n",
"folium.Choropleth(\n",
" geo_data=political_countries_url,\n",
" data=cancer_data,\n",
" columns=[\"COUNTRY\", \"Numeric\"],\n",
" key_on=\"feature.properties.name\",\n",
" fill_color=\"Reds\",\n",
" nan_fill_color=\"Grey\",\n",
" fill_opacity=0.7,\n",
" line_opacity=0.2,\n",
" legend_name=\"Breast cancer mortality rate\"\n",
").add_to(m)\n",
"\n",
"# to export snapshot of map as PNG\n",
"#img_data = m._to_png(5)\n",
"#img = Image.open(io.BytesIO(img_data))\n",
"#img.save('mortality_rate_breast_cancer.png')\n",
"\n",
"# to export as interactive viewer in HTML\n",
"#m.save(\"mortality_rate_breast_cancer.html\")\n",
"\n",
"# render map in colab directly\n",
"m\n"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 795
},
"id": "cF-ajW8ED8Yf",
"outputId": "32c2ced4-ab4d-45ae-ca01-ecc8260cb445"
},
"execution_count": 6,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"<folium.folium.Map at 0x7b54e4b3f790>"
],
"text/html": [
"<div style=\"width:100%;\"><div style=\"position:relative;width:100%;height:0;padding-bottom:60%;\"><span style=\"color:#565656\">Make this Notebook Trusted to load map: File -> Trust Notebook</span><iframe srcdoc=\"&lt;!DOCTYPE html&gt;\n",
"&lt;html&gt;\n",
"&lt;head&gt;\n",
" \n",
" &lt;meta http-equiv=&quot;content-type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;\n",
" \n",
" &lt;script&gt;\n",
" L_NO_TOUCH = false;\n",
" L_DISABLE_3D = false;\n",
" &lt;/script&gt;\n",
" \n",
" &lt;style&gt;html, body {width: 100%;height: 100%;margin: 0;padding: 0;}&lt;/style&gt;\n",
" &lt;style&gt;#map {position:absolute;top:0;bottom:0;right:0;left:0;}&lt;/style&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://code.jquery.com/jquery-1.12.4.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js&quot;&gt;&lt;/script&gt;\n",
" &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js&quot;&gt;&lt;/script&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/[email protected]/dist/leaflet.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/npm/@fortawesome/[email protected]/css/all.min.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css&quot;/&gt;\n",
" &lt;link rel=&quot;stylesheet&quot; href=&quot;https://cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css&quot;/&gt;\n",
" \n",
" &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,\n",
" initial-scale=1.0, maximum-scale=1.0, user-scalable=no&quot; /&gt;\n",
" &lt;style&gt;\n",
" #map_9c0cdce3a4331c81c1476d6ecf4b044d {\n",
" position: relative;\n",
" width: 100.0%;\n",
" height: 100.0%;\n",
" left: 0.0%;\n",
" top: 0.0%;\n",
" }\n",
" .leaflet-container { font-size: 1rem; }\n",
" &lt;/style&gt;\n",
" \n",
" &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js&quot;&gt;&lt;/script&gt;\n",
"&lt;/head&gt;\n",
"&lt;body&gt;\n",
" \n",
" \n",
" &lt;div class=&quot;folium-map&quot; id=&quot;map_9c0cdce3a4331c81c1476d6ecf4b044d&quot; &gt;&lt;/div&gt;\n",
" \n",
"&lt;/body&gt;\n",
"&lt;script&gt;\n",
" \n",
" \n",
" var map_9c0cdce3a4331c81c1476d6ecf4b044d = L.map(\n",
" &quot;map_9c0cdce3a4331c81c1476d6ecf4b044d&quot;,\n",
" {\n",
" center: [30.0, 10.0],\n",
" crs: L.CRS.EPSG3857,\n",
" zoom: 2,\n",
" zoomControl: true,\n",
" preferCanvas: false,\n",
" }\n",
" );\n",
"\n",
" \n",
"\n",
" \n",
" \n",
" var tile_layer_dd5de02a4be3511366ecfb106520a04b = L.tileLayer(\n",
" &quot;https://cartodb-basemaps-{s}.global.ssl.fastly.net/light_all/{z}/{x}/{y}.png&quot;,\n",
" {&quot;attribution&quot;: &quot;\\u0026copy; \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://www.openstreetmap.org/copyright\\&quot;\\u003eOpenStreetMap\\u003c/a\\u003e contributors \\u0026copy; \\u003ca target=\\&quot;_blank\\&quot; href=\\&quot;http://cartodb.com/attributions\\&quot;\\u003eCartoDB\\u003c/a\\u003e, CartoDB \\u003ca target=\\&quot;_blank\\&quot; href =\\&quot;http://cartodb.com/attributions\\&quot;\\u003eattributions\\u003c/a\\u003e&quot;, &quot;detectRetina&quot;: false, &quot;maxNativeZoom&quot;: 18, &quot;maxZoom&quot;: 18, &quot;minZoom&quot;: 0, &quot;noWrap&quot;: false, &quot;opacity&quot;: 1, &quot;subdomains&quot;: &quot;abc&quot;, &quot;tms&quot;: false}\n",
" ).addTo(map_9c0cdce3a4331c81c1476d6ecf4b044d);\n",
" \n",
" \n",
" var choropleth_b0b3a4cae823ec5fdf52a3d62347d6a9 = L.featureGroup(\n",
" {}\n",
" ).addTo(map_9c0cdce3a4331c81c1476d6ecf4b044d);\n",
" \n",
" \n",
" function geo_json_ba1af501347570b85782690ae142db11_styler(feature) {\n",
" switch(feature.properties.admin) {\n",
" case &quot;Afghanistan&quot;: case &quot;Angola&quot;: case &quot;Andorra&quot;: case &quot;Argentina&quot;: case &quot;Armenia&quot;: case &quot;The Bahamas&quot;: case &quot;Brazil&quot;: case &quot;Barbados&quot;: case &quot;Canada&quot;: case &quot;Chile&quot;: case &quot;China&quot;: case &quot;Colombia&quot;: case &quot;Costa Rica&quot;: case &quot;Cuba&quot;: case &quot;Cyprus&quot;: case &quot;Dominica&quot;: case &quot;Spain&quot;: case &quot;Ethiopia&quot;: case &quot;Finland&quot;: case &quot;France&quot;: case &quot;Guinea&quot;: case &quot;Guinea Bissau&quot;: case &quot;Greece&quot;: case &quot;Grenada&quot;: case &quot;Guatemala&quot;: case &quot;Guyana&quot;: case &quot;Honduras&quot;: case &quot;Iraq&quot;: case &quot;Italy&quot;: case &quot;Jamaica&quot;: case &quot;Jordan&quot;: case &quot;Cambodia&quot;: case &quot;Liberia&quot;: case &quot;Saint Lucia&quot;: case &quot;Mauritius&quot;: case &quot;Niger&quot;: case &quot;Nigeria&quot;: case &quot;Nicaragua&quot;: case &quot;Panama&quot;: case &quot;Peru&quot;: case &quot;Philippines&quot;: case &quot;Paraguay&quot;: case &quot;Rwanda&quot;: case &quot;Saudi Arabia&quot;: case &quot;San Marino&quot;: case &quot;Suriname&quot;: case &quot;Togo&quot;: case &quot;Thailand&quot;: case &quot;East Timor&quot;: case &quot;Trinidad and Tobago&quot;: case &quot;Turkey&quot;: case &quot;Uganda&quot;: case &quot;United States of America&quot;: case &quot;Samoa&quot;: case &quot;South Africa&quot;: case &quot;Zambia&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fcbba1&quot;, &quot;fillOpacity&quot;: 0.7, &quot;opacity&quot;: 0.2, &quot;weight&quot;: 1};\n",
" case &quot;Albania&quot;: case &quot;Austria&quot;: case &quot;Bulgaria&quot;: case &quot;Ireland&quot;: case &quot;Luxembourg&quot;: case &quot;Maldives&quot;: case &quot;Norway&quot;: case &quot;New Zealand&quot;: case &quot;Poland&quot;: case &quot;Singapore&quot;: case &quot;Slovakia&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fb6a4a&quot;, &quot;fillOpacity&quot;: 0.7, &quot;opacity&quot;: 0.2, &quot;weight&quot;: 1};\n",
" case &quot;United Arab Emirates&quot;: case &quot;Azerbaijan&quot;: case &quot;Burundi&quot;: case &quot;Benin&quot;: case &quot;Burkina Faso&quot;: case &quot;Bangladesh&quot;: case &quot;Bahrain&quot;: case &quot;Belize&quot;: case &quot;Bhutan&quot;: case &quot;Botswana&quot;: case &quot;Ivory Coast&quot;: case &quot;Cameroon&quot;: case &quot;Republic of Congo&quot;: case &quot;Comoros&quot;: case &quot;Djibouti&quot;: case &quot;Algeria&quot;: case &quot;Ecuador&quot;: case &quot;Egypt&quot;: case &quot;Eritrea&quot;: case &quot;Fiji&quot;: case &quot;Gabon&quot;: case &quot;Georgia&quot;: case &quot;Ghana&quot;: case &quot;Gambia&quot;: case &quot;Haiti&quot;: case &quot;India&quot;: case &quot;Kazakhstan&quot;: case &quot;Kenya&quot;: case &quot;Kyrgyzstan&quot;: case &quot;Kiribati&quot;: case &quot;Kuwait&quot;: case &quot;Lebanon&quot;: case &quot;Libya&quot;: case &quot;Sri Lanka&quot;: case &quot;Lesotho&quot;: case &quot;Morocco&quot;: case &quot;Madagascar&quot;: case &quot;Mexico&quot;: case &quot;Mali&quot;: case &quot;Myanmar&quot;: case &quot;Mongolia&quot;: case &quot;Mozambique&quot;: case &quot;Mauritania&quot;: case &quot;Malawi&quot;: case &quot;Namibia&quot;: case &quot;Niue&quot;: case &quot;Nepal&quot;: case &quot;Nauru&quot;: case &quot;Oman&quot;: case &quot;Pakistan&quot;: case &quot;Palau&quot;: case &quot;Papua New Guinea&quot;: case &quot;Qatar&quot;: case &quot;Sudan&quot;: case &quot;Senegal&quot;: case &quot;Sierra Leone&quot;: case &quot;El Salvador&quot;: case &quot;Somalia&quot;: case &quot;Seychelles&quot;: case &quot;Chad&quot;: case &quot;Tajikistan&quot;: case &quot;Turkmenistan&quot;: case &quot;Tonga&quot;: case &quot;Tunisia&quot;: case &quot;Uzbekistan&quot;: case &quot;Vanuatu&quot;: case &quot;Yemen&quot;: case &quot;Zimbabwe&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fee5d9&quot;, &quot;fillOpacity&quot;: 0.7, &quot;opacity&quot;: 0.2, &quot;weight&quot;: 1};\n",
" case &quot;Australia&quot;: case &quot;Belgium&quot;: case &quot;Belarus&quot;: case &quot;Switzerland&quot;: case &quot;Germany&quot;: case &quot;Estonia&quot;: case &quot;United Kingdom&quot;: case &quot;Indonesia&quot;: case &quot;Iceland&quot;: case &quot;Israel&quot;: case &quot;Japan&quot;: case &quot;Lithuania&quot;: case &quot;Latvia&quot;: case &quot;Monaco&quot;: case &quot;Malta&quot;: case &quot;Malaysia&quot;: case &quot;Netherlands&quot;: case &quot;Portugal&quot;: case &quot;Romania&quot;: case &quot;Slovenia&quot;: case &quot;Sweden&quot;: case &quot;Ukraine&quot;: case &quot;Uruguay&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#fc9272&quot;, &quot;fillOpacity&quot;: 0.7, &quot;opacity&quot;: 0.2, &quot;weight&quot;: 1};\n",
" case &quot;Denmark&quot;: case &quot;Croatia&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#de2d26&quot;, &quot;fillOpacity&quot;: 0.7, &quot;opacity&quot;: 0.2, &quot;weight&quot;: 1};\n",
" case &quot;Hungary&quot;: \n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;#a50f15&quot;, &quot;fillOpacity&quot;: 0.7, &quot;opacity&quot;: 0.2, &quot;weight&quot;: 1};\n",
" default:\n",
" return {&quot;color&quot;: &quot;black&quot;, &quot;fillColor&quot;: &quot;Grey&quot;, &quot;fillOpacity&quot;: 0.7, &quot;opacity&quot;: 0.2, &quot;weight&quot;: 1};\n",
" }\n",
" }\n",
"\n",
" function geo_json_ba1af501347570b85782690ae142db11_onEachFeature(feature, layer) {\n",
" layer.on({\n",
" });\n",
" };\n",
" var geo_json_ba1af501347570b85782690ae142db11 = L.geoJson(null, {\n",
" onEachFeature: geo_json_ba1af501347570b85782690ae142db11_onEachFeature,\n",
" \n",
" style: geo_json_ba1af501347570b85782690ae142db11_styler,\n",
" });\n",
"\n",
" function geo_json_ba1af501347570b85782690ae142db11_add (data) {\n",
" geo_json_ba1af501347570b85782690ae142db11\n",
" .addData(data)\n",
" .addTo(choropleth_b0b3a4cae823ec5fdf52a3d62347d6a9);\n",
" }\n",
" geo_json_ba1af501347570b85782690ae142db11_add({&quot;features&quot;: [{&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-69.89912109375, 12.452001953124991], [-69.895703125, 12.422998046874994], [-69.94218749999999, 12.438525390624989], [-70.004150390625, 12.50048828125], [-70.06611328125, 12.546972656249991], [-70.05087890624999, 12.597070312499994], [-70.035107421875, 12.614111328124991], [-69.97314453125, 12.567626953125], [-69.91181640625, 12.48046875], [-69.89912109375, 12.452001953124991]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Aruba&quot;, &quot;abbrev_len&quot;: 5, &quot;adm0_a3&quot;: &quot;ABW&quot;, &quot;adm0_a3_is&quot;: &quot;ABW&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;ABW&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 1, &quot;admin&quot;: &quot;Aruba&quot;, &quot;brk_a3&quot;: &quot;ABW&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Aruba&quot;, &quot;continent&quot;: &quot;North America&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Aruba&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 2258, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Aruba&quot;, &quot;gu_a3&quot;: &quot;ABW&quot;, &quot;homepart&quot;: -99, &quot;income_grp&quot;: &quot;2. High income: nonOECD&quot;, &quot;iso_a2&quot;: &quot;AW&quot;, &quot;iso_a3&quot;: &quot;ABW&quot;, &quot;iso_n3&quot;: &quot;533&quot;, &quot;labelrank&quot;: 5, &quot;lastcensus&quot;: 2010, &quot;level&quot;: 2, &quot;long_len&quot;: 5, &quot;mapcolor13&quot;: 9, &quot;mapcolor7&quot;: 4, &quot;mapcolor8&quot;: 2, &quot;mapcolor9&quot;: 2, &quot;name&quot;: &quot;Aruba&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 5, &quot;name_long&quot;: &quot;Aruba&quot;, &quot;name_sort&quot;: &quot;Aruba&quot;, &quot;note_adm0&quot;: &quot;Neth.&quot;, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 103065, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AW&quot;, &quot;region_un&quot;: &quot;Americas&quot;, &quot;region_wb&quot;: &quot;Latin America \\u0026 Caribbean&quot;, &quot;scalerank&quot;: 3, &quot;sov_a3&quot;: &quot;NL1&quot;, &quot;sovereignt&quot;: &quot;Netherlands&quot;, &quot;su_a3&quot;: &quot;ABW&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Caribbean&quot;, &quot;subunit&quot;: &quot;Aruba&quot;, &quot;tiny&quot;: 4, &quot;type&quot;: &quot;Country&quot;, &quot;un_a3&quot;: &quot;533&quot;, &quot;wb_a2&quot;: &quot;AW&quot;, &quot;wb_a3&quot;: &quot;ABW&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[74.89130859375001, 37.231640625], [74.84023437500002, 37.225048828125], [74.76738281250002, 37.249169921874994], [74.73896484375001, 37.28564453125], [74.72666015625, 37.29072265625], [74.6689453125, 37.26669921875], [74.55898437500002, 37.236621093749996], [74.37216796875, 37.15771484375], [74.37617187500001, 37.137353515624994], [74.49794921875002, 37.0572265625], [74.52646484375, 37.030664062499994], [74.54140625000002, 37.02216796875], [74.43105468750002, 36.983691406249996], [74.19472656250002, 36.896875], [74.03886718750002, 36.825732421874996], [74.00185546875002, 36.823095703125], [73.9078125, 36.852929687499994], [73.769140625, 36.888476562499996], [73.73183593750002, 36.88779296875], [73.4111328125, 36.881689453125], [73.116796875, 36.868554687499994], [72.99375, 36.851611328124996], [72.7662109375, 36.835009765624996], [72.62285156250002, 36.82958984375], [72.53134765625, 36.802001953125], [72.43115234375, 36.7658203125], [72.32695312500002, 36.7423828125], [72.24980468750002, 36.734716796875], [72.15673828125, 36.70087890625], [72.09560546875002, 36.633740234375], [71.92070312500002, 36.5341796875], [71.822265625, 36.486083984375], [71.77265625000001, 36.4318359375], [71.71640625, 36.4265625], [71.62050781250002, 36.436474609375], [71.5458984375, 36.377685546875], [71.46328125000002, 36.293261718749996], [71.31259765625, 36.171191406249996], [71.23291015625, 36.12177734375], [71.18505859375, 36.04208984375], [71.22021484375, 36.00068359375], [71.34287109375, 35.938525390624996], [71.39755859375, 35.880175781249996], [71.42753906250002, 35.833740234375], [71.48359375000001, 35.714599609375], [71.51904296875, 35.597509765625], [71.57197265625001, 35.546826171875], [71.58740234375, 35.460839843749994], [71.6005859375, 35.40791015625], [71.57197265625001, 35.370410156249996], [71.5455078125, 35.328515625], [71.5455078125, 35.288867187499996], [71.57724609375, 35.247998046875], [71.60527343750002, 35.211767578125], [71.62050781250002, 35.183007812499994], [71.60166015625, 35.150683593749996], [71.5455078125, 35.101416015625], [71.51708984375, 35.051123046875], [71.455078125, 34.966943359374994], [71.35810546875001, 34.909619140625], [71.29414062500001, 34.867724609374996], [71.22578125000001, 34.779541015625], [71.11328125, 34.681591796875], [71.065625, 34.599609375], [71.01630859375001, 34.554638671875], [70.965625, 34.53037109375], [70.97890625000002, 34.486279296875], [71.02294921875, 34.43115234375], [71.095703125, 34.369433593749996], [71.0923828125, 34.273242187499996], [71.08906250000001, 34.204052734375], [71.09130859375, 34.120263671874994], [71.05156250000002, 34.049707031249994], [70.84843750000002, 33.981884765625], [70.65400390625001, 33.952294921874994], [70.41572265625001, 33.950439453125], [70.32568359375, 33.9611328125], [70.25361328125001, 33.975976562499994], [69.9947265625, 34.051806640624996], [69.8896484375, 34.007275390625], [69.86806640625002, 33.89765625], [70.056640625, 33.719873046874994], [70.13417968750002, 33.620751953124994], [70.2197265625, 33.4546875], [70.2841796875, 33.369042968749994], [70.26113281250002, 33.289013671875], [70.09023437500002, 33.198095703125], [69.92011718750001, 33.1125], [69.7037109375, 33.0947265625], [69.56777343750002, 33.06416015625], [69.5015625, 33.020068359374996], [69.453125, 32.8328125], [69.40458984375002, 32.7642578125], [69.40537109375, 32.68271484375], [69.35947265625, 32.59033203125], [69.28994140625002, 32.530566406249996], [69.24140625000001, 32.433544921875], [69.25654296875001, 32.249462890625], [69.279296875, 31.936816406249996], [69.18691406250002, 31.838085937499997], [69.08310546875, 31.738476562499997], [68.97343750000002, 31.667382812499994], [68.86894531250002, 31.634228515624997], [68.78232421875, 31.646435546874997], [68.71367187500002, 31.708056640624996], [68.67324218750002, 31.759716796874997], [68.59765625, 31.802978515625], [68.52070312500001, 31.794140625], [68.44326171875002, 31.7544921875], [68.31982421875, 31.76767578125], [68.21396484375, 31.807373046875], [68.16103515625002, 31.802978515625], [68.13017578125002, 31.76328125], [68.0171875, 31.677978515625], [67.73984375, 31.548193359375], [67.62675781250002, 31.538769531249997], [67.57822265625, 31.506494140624994], [67.59755859375002, 31.453320312499997], [67.6470703125, 31.409960937499996], [67.73349609375, 31.379248046875], [67.737890625, 31.343945312499997], [67.66152343750002, 31.31298828125], [67.59638671875001, 31.277685546875], [67.45283203125001, 31.234619140625], [67.28730468750001, 31.217822265624996], [67.11591796875001, 31.242919921875], [67.02773437500002, 31.300244140624997], [66.92431640625, 31.305615234374997], [66.82929687500001, 31.263671875], [66.73134765625002, 31.19453125], [66.62421875000001, 31.046044921874994], [66.59580078125, 31.019970703124997], [66.56679687500002, 30.99658203125], [66.49736328125002, 30.964550781249997], [66.39716796875001, 30.91220703125], [66.346875, 30.802783203124996], [66.28691406250002, 30.60791015625], [66.30097656250001, 30.502978515624996], [66.30546875000002, 30.321142578125], [66.2818359375, 30.19345703125], [66.23847656250001, 30.109619140625], [66.24716796875, 30.043505859374996], [66.31337890625002, 29.968554687499996], [66.28691406250002, 29.92001953125], [66.23125, 29.86572265625], [66.17705078125002, 29.835595703124994], [65.96162109375001, 29.77890625], [65.66621093750001, 29.701318359374994], [65.47099609375002, 29.6515625], [65.18046875000002, 29.57763671875], [65.09550781250002, 29.559472656249994], [64.9189453125, 29.552783203124996], [64.82734375000001, 29.564160156249997], [64.70351562500002, 29.567138671875], [64.52109375, 29.564501953124996], [64.39375, 29.544335937499994], [64.26611328125, 29.50693359375], [64.17216796875002, 29.460351562499994], [64.11796875000002, 29.414257812499997], [64.09873046875, 29.391943359375], [63.97099609375002, 29.430078125], [63.56757812500001, 29.497998046874997], [62.4765625, 29.408349609374994], [62.37343750000002, 29.425390625], [62.0009765625, 29.530419921874994], [61.521484375, 29.665673828124994], [61.22441406250002, 29.749414062499994], [60.843359375, 29.858691406249996], [61.104101562500006, 30.12841796875], [61.331640625, 30.363720703124997], [61.55947265625002, 30.599365234375], [61.7841796875, 30.831933593749994], [61.81083984375002, 30.91328125], [61.81425781250002, 31.072558593749996], [61.75507812500001, 31.285302734374994], [61.66015625, 31.382421875], [61.34648437500002, 31.421630859375], [61.11074218750002, 31.451123046874997], [60.854101562500006, 31.483251953125], [60.82070312500002, 31.495166015624996], [60.791601562500006, 31.660595703124997], [60.804296875, 31.73447265625], [60.7875, 31.877197265625], [60.78994140625002, 31.987109375], [60.827246093750006, 32.16796875], [60.82929687500001, 32.249414062499994], [60.71044921875, 32.6], [60.64453125, 32.794384765625], [60.57656250000002, 32.994873046875], [60.56191406250002, 33.0587890625], [60.560546875, 33.137841796874994], [60.71806640625002, 33.323535156249996], [60.76689453125002, 33.363818359374996], [60.85927734375002, 33.45625], [60.9169921875, 33.505224609375], [60.90693359375001, 33.538964843749994], [60.80644531250002, 33.55869140625], [60.65458984375002, 33.560400390625], [60.573828125, 33.588330078125], [60.510839843750006, 33.638916015625], [60.4859375, 33.7119140625], [60.52705078125001, 33.8419921875], [60.48574218750002, 34.094775390624996], [60.57021484375002, 34.219628906249994], [60.642675781250006, 34.307177734374996], [60.88945312500002, 34.31943359375], [60.80390625000001, 34.418017578124996], [60.76259765625002, 34.475244140624994], [60.73613281250002, 34.491796875], [60.72626953125001, 34.51826171875], [60.73945312500001, 34.544726562499996], [60.80234375, 34.554638671875], [60.8453125, 34.587695312499996], [60.91474609375001, 34.633984375], [60.951171875, 34.653857421874996], [60.95781250000002, 34.71005859375], [60.990820312500006, 34.749755859375], [61.04042968750002, 34.799365234374996], [61.080078125, 34.855615234374994], [61.07021484375002, 34.921728515625], [61.10664062500001, 35.001123046874994], [61.123144531250006, 35.050732421875], [61.14960937500001, 35.09375], [61.12646484375, 35.156542968749996], [61.10664062500001, 35.20947265625], [61.1, 35.272314453125], [61.1396484375, 35.288867187499996], [61.18925781250002, 35.31201171875], [61.19921875, 35.361621093749996], [61.225683593750006, 35.424462890624994], [61.24550781250002, 35.474072265625], [61.27851562500001, 35.51376953125], [61.281835937500006, 35.55341796875], [61.26201171875002, 35.619580078125], [61.3447265625, 35.6294921875], [61.37773437500002, 35.593115234375], [61.42177734375002, 35.545800781249994], [61.54277343750002, 35.457861328125], [61.62099609375002, 35.43232421875], [61.7197265625, 35.41943359375], [61.84101562500001, 35.431494140625], [61.938085937500006, 35.447900390624994], [61.98388671875, 35.443701171875], [62.08964843750002, 35.3796875], [62.21308593750001, 35.289941406249994], [62.25283203125002, 35.250244140625], [62.27119140625001, 35.189111328124994], [62.30781250000001, 35.170800781249994], [62.38662109375002, 35.23125], [62.462890625, 35.251367187499994], [62.53310546875002, 35.239892578124994], [62.61054687500001, 35.233154296875], [62.688085937500006, 35.255322265625], [62.72265625, 35.271337890625], [62.858007812500006, 35.349658203124996], [62.98027343750002, 35.4091796875], [63.056640625, 35.44580078125], [63.08417968750001, 35.56806640625], [63.11933593750001, 35.637548828125], [63.16972656250002, 35.678125], [63.15078125000002, 35.728271484375], [63.129980468750006, 35.766748046874994], [63.10859375000001, 35.818701171875], [63.129980468750006, 35.84619140625], [63.17890625000001, 35.858447265624996], [63.30166015625002, 35.8583984375], [63.51699218750002, 35.913134765624996], [63.69658203125002, 35.967822265624996], [63.8625, 36.012353515624994], [63.938085937500006, 36.0197265625], [64.00966796875002, 36.012109375], [64.04238281250002, 36.02509765625], [64.0513671875, 36.067626953125], [64.09218750000002, 36.112695312499994], [64.184375, 36.14892578125], [64.3580078125, 36.22607421875], [64.51103515625002, 36.340673828125], [64.56582031250002, 36.427587890625], [64.6025390625, 36.554541015625], [64.67431640625, 36.7501953125], [64.753125, 36.964794921875], [64.78242187500001, 37.05927734375], [64.81630859375002, 37.132080078125], [64.95156250000002, 37.1935546875], [65.08964843750002, 37.237939453124994], [65.30361328125002, 37.24677734375], [65.55498046875002, 37.251171875], [65.6080078125, 37.368408203125], [65.6412109375, 37.467822265624996], [65.68300781250002, 37.519140625], [65.74384765625001, 37.560839843749996], [65.76503906250002, 37.569140625], [65.90068359375002, 37.508105468749996], [66.1083984375, 37.41474609375], [66.35029296875001, 37.3681640625], [66.471875, 37.3447265625], [66.52226562500002, 37.348486328125], [66.827734375, 37.3712890625], [67.06884765625, 37.334814453125], [67.19550781250001, 37.235205078125], [67.31972656250002, 37.2095703125], [67.44169921875002, 37.2580078125], [67.51728515625001, 37.266650390624996], [67.546484375, 37.235644531249996], [67.607421875, 37.222509765625], [67.7, 37.22724609375], [67.7529296875, 37.1998046875], [67.75898437500001, 37.172216796875], [67.76601562500002, 37.14013671875], [67.83447265625, 37.064208984375], [67.9580078125, 36.972021484375], [68.06777343750002, 36.9498046875], [68.21210937500001, 37.021533203124996], [68.26093750000001, 37.013085937499994], [68.284765625, 37.036328125], [68.29951171875001, 37.088427734374996], [68.38691406250001, 37.1375], [68.546484375, 37.183447265625], [68.63701171875002, 37.224462890625], [68.66914062500001, 37.2583984375], [68.7232421875, 37.268017578125], [68.78203125000002, 37.2580078125], [68.82373046875, 37.270703125], [68.8384765625, 37.30283203125], [68.85537109375002, 37.316845703125], [68.88525390625, 37.328076171875], [68.91181640625001, 37.333935546875], [68.96044921875, 37.325048828125], [69.05, 37.266503906249994], [69.18017578125, 37.15830078125], [69.26484375000001, 37.1083984375], [69.30390625000001, 37.116943359375], [69.35380859375002, 37.150048828124994], [69.41445312500002, 37.207763671875], [69.4296875, 37.290869140625], [69.39921875000002, 37.399316406249994], [69.42011718750001, 37.48671875], [69.49208984375002, 37.553076171875], [69.62578125000002, 37.594042968749996], [69.8208984375, 37.6095703125], [69.940625, 37.60029296875], [69.9849609375, 37.566162109375], [70.04472656250002, 37.547216796875], [70.11982421875001, 37.543505859374996], [70.18867187500001, 37.582470703125], [70.25146484375, 37.66416015625], [70.25498046875, 37.765380859375], [70.19941406250001, 37.886035156249996], [70.21464843750002, 37.9244140625], [70.23876953125, 37.941210937499996], [70.31328125000002, 37.984814453125], [70.41777343750002, 38.075439453125], [70.5185546875, 38.1919921875], [70.6158203125, 38.334423828125], [70.7359375, 38.42255859375], [70.87890625, 38.456396484375], [71.05214843750002, 38.417871093749994], [71.255859375, 38.306982421875], [71.33271484375001, 38.170263671875], [71.2828125, 38.00791015625], [71.27851562500001, 37.918408203125], [71.319921875, 37.90185546875], [71.3896484375, 37.906298828124996], [71.48779296875, 37.931884765625], [71.55195312500001, 37.933154296874996], [71.58222656250001, 37.910107421875], [71.58037109375002, 37.8642578125], [71.54619140625002, 37.795654296875], [71.50507812500001, 37.602929687499994], [71.47968750000001, 37.43603515625], [71.45478515625001, 37.271826171875], [71.43291015625002, 37.1275390625], [71.471875, 37.015087890625], [71.530859375, 36.845117187499994], [71.59746093750002, 36.73291015625], [71.665625, 36.696923828124994], [71.73378906250002, 36.684033203125], [71.80205078125002, 36.694287109375], [71.9419921875, 36.766455078125], [72.15351562500001, 36.900537109374994], [72.35878906250002, 36.98291015625], [72.65742187500001, 37.029052734375], [72.75703125000001, 37.172705078125], [72.8955078125, 37.267529296875], [73.21113281250001, 37.408496093749996], [73.38291015625, 37.462255859375], [73.48134765625002, 37.4716796875], [73.60468750000001, 37.446044921875], [73.63261718750002, 37.43720703125], [73.65712890625002, 37.43046875], [73.72060546875002, 37.41875], [73.73378906250002, 37.37578125], [73.71728515625, 37.329443359375], [73.64882812500002, 37.2912109375], [73.6275390625, 37.261572265625], [73.65351562500001, 37.23935546875], [73.749609375, 37.231787109375], [73.948828125, 37.283154296875], [74.077734375, 37.316210937499996], [74.16708984375, 37.329443359375], [74.20351562500002, 37.372460937499994], [74.25966796875002, 37.415429687499994], [74.34902343750002, 37.41875], [74.444921875, 37.39560546875], [74.52421875000002, 37.382373046874996], [74.659375, 37.394482421875], [74.73056640625, 37.35703125], [74.83046875000002, 37.2859375], [74.87539062500002, 37.241992187499996], [74.89130859375001, 37.231640625]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Afg.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;AFG&quot;, &quot;adm0_a3_is&quot;: &quot;AFG&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;AFG&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Afghanistan&quot;, &quot;brk_a3&quot;: &quot;AFG&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Afghanistan&quot;, &quot;continent&quot;: &quot;Asia&quot;, &quot;economy&quot;: &quot;7. Least developed region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Islamic State of Afghanistan&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 22270, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Afghanistan&quot;, &quot;gu_a3&quot;: &quot;AFG&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;5. Low income&quot;, &quot;iso_a2&quot;: &quot;AF&quot;, &quot;iso_a3&quot;: &quot;AFG&quot;, &quot;iso_n3&quot;: &quot;004&quot;, &quot;labelrank&quot;: 3, &quot;lastcensus&quot;: 1979, &quot;level&quot;: 2, &quot;long_len&quot;: 11, &quot;mapcolor13&quot;: 7, &quot;mapcolor7&quot;: 5, &quot;mapcolor8&quot;: 6, &quot;mapcolor9&quot;: 8, &quot;name&quot;: &quot;Afghanistan&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 11, &quot;name_long&quot;: &quot;Afghanistan&quot;, &quot;name_sort&quot;: &quot;Afghanistan&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 28400000, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AF&quot;, &quot;region_un&quot;: &quot;Asia&quot;, &quot;region_wb&quot;: &quot;South Asia&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;AFG&quot;, &quot;sovereignt&quot;: &quot;Afghanistan&quot;, &quot;su_a3&quot;: &quot;AFG&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Southern Asia&quot;, &quot;subunit&quot;: &quot;Afghanistan&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;004&quot;, &quot;wb_a2&quot;: &quot;AF&quot;, &quot;wb_a3&quot;: &quot;AFG&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[14.19082031250008, -5.8759765625], [14.398632812500068, -5.89267578125002], [14.65791015625004, -5.888867187499955], [14.749414062500023, -5.88007812500004], [15.08935546875, -5.874511718749972], [15.425, -5.868847656249969], [15.726953125000051, -5.86386718750002], [16.060156250000063, -5.864941406249969], [16.315234375000074, -5.865625], [16.431445312500045, -5.90019531249996], [16.53710937499997, -5.9658203125], [16.58515625000001, -6.025292968749952], [16.608007812500034, -6.051562499999974], [16.63955078125008, -6.114550781250017], [16.697265625, -6.164257812500026], [16.71777343750003, -6.241406250000011], [16.700976562500045, -6.345996093750003], [16.709375, -6.471679687499943], [16.74296874999999, -6.618457031250003], [16.813085937500063, -6.772558593749963], [16.919433593750057, -6.93398437499998], [16.9658203125, -7.062109374999977], [16.95205078125005, -7.157031249999946], [16.98476562500005, -7.257421874999977], [17.063769531250074, -7.363085937500003], [17.12158203125003, -7.419042968750034], [17.155078125000017, -7.461328125000037], [17.24501953125005, -7.623339843750003], [17.41132812500001, -7.88193359375002], [17.536035156249994, -8.075878906249997], [17.57958984375, -8.099023437500009], [17.643359375000017, -8.090722656250009], [17.77880859375, -8.071386718749977], [17.9130859375, -8.067675781250017], [18.00878906250003, -8.107617187499983], [18.047167968750045, -8.100781250000011], [18.191503906250063, -8.023828124999966], [18.334863281250023, -8.000292968749974], [18.48466796874999, -7.968554687499989], [18.56269531250001, -7.9359375], [18.653417968750006, -7.936035156250028], [18.89833984375008, -7.998144531249977], [18.944433593750063, -8.001464843750028], [19.142675781250034, -8.001464843750028], [19.34082031249997, -7.966601562500031], [19.369921875000045, -7.706542968749986], [19.371679687500063, -7.655078124999989], [19.41933593750008, -7.557324218749969], [19.47988281250008, -7.472167968750028], [19.487402343750006, -7.390722656249949], [19.48378906250008, -7.279492187500026], [19.527636718750017, -7.144433593749952], [19.660351562500068, -7.037109375000028], [19.87519531250004, -6.986328124999986], [19.99746093750008, -6.976464843750023], [20.190039062500063, -6.9462890625], [20.482226562500074, -6.915820312500017], [20.59003906250001, -6.919921874999957], [20.598730468750006, -6.935156249999949], [20.536914062500045, -7.121777343749955], [20.535839843749983, -7.182812499999955], [20.558398437500045, -7.244433593749989], [20.60781250000008, -7.277734375000023], [20.910937500000017, -7.281445312499983], [21.190332031250023, -7.284960937499989], [21.510839843750034, -7.296679687499974], [21.751074218750034, -7.305468749999989], [21.78164062500005, -7.314648437499997], [21.80605468750005, -7.32861328125], [21.84160156249999, -7.420996093749991], [21.833593750000063, -7.60166015625002], [21.780078125000074, -7.865429687500026], [21.800878906250063, -8.111914062499977], [21.89589843750005, -8.341113281249946], [21.905371093750034, -8.693359374999943], [21.871875, -8.90351562500004], [21.829492187500023, -9.168457031250014], [21.813183593750068, -9.46875], [21.85664062500004, -9.594238281249986], [21.94863281250005, -9.7255859375], [22.089160156250074, -9.862792968749986], [22.19775390625, -10.04062], [22.274511718750006, -10.259082031249974], [22.30244140625001, -10.39667968750004], [22.281640625000023, -10.453320312500026], [22.283203125, -10.551562499999974], [22.30703125000005, -10.691308593750023], [22.280468750000068, -10.783984374999974], [22.203515625000023, -10.829492187500009], [22.17792968750004, -10.892285156250011], [22.216699218750023, -11.012695312499943], [22.226171875, -11.121972656250009], [22.25664062499999, -11.163671874999977], [22.27880859375, -11.19414062499996], [22.314941406250057, -11.198632812499994], [22.39296875000005, -11.159472656250003], [22.486132812500045, -11.086718750000017], [22.56103515625003, -11.05585937500004], [22.66650390625, -11.059765625000026], [22.814746093750017, -11.08027343750004], [23.076269531250006, -11.087890624999986], [23.156738281250057, -11.074804687499991], [23.400195312500017, -10.976464843750023], [23.463964843750034, -10.969335937499991], [23.55996093750005, -10.97861328125002], [23.696386718750034, -11.007617187499974], [23.83388671875008, -11.013671874999972], [23.901171875000017, -10.983203124999974], [23.907324218750034, -10.943457031249963], [23.92871093750003, -10.891503906250037], [23.96650390625001, -10.871777343750011], [23.98828125, -11.00283203124998], [24.010058593750074, -11.184765625000011], [24.02558593750004, -11.315625], [24.04140625000008, -11.374121093750034], [24.046679687500074, -11.405371093750006], [24.029296875, -11.439160156249969], [24.01464843750003, -11.517675781249977], [23.986816406250057, -11.587207031250017], [23.970996093750017, -11.635839843749977], [23.98388671875, -11.725], [23.973437500000074, -11.852929687499966], [23.962304687500023, -11.98789062500002], [23.95888671875005, -12.11777343750002], [23.99648437500008, -12.350683593750034], [23.991308593750006, -12.422167968750031], [23.944726562499994, -12.54375], [23.909375, -12.636132812500009], [23.886523437500045, -12.743261718749991], [23.882421875, -12.799023437499983], [23.968066406250045, -12.956933593749994], [23.962988281250006, -12.988476562500026], [23.897460937500057, -12.998242187499983], [23.843164062500023, -13.0009765625], [23.635839843750063, -13.0009765625], [23.338671875000074, -13.0009765625], [23.04150390625003, -13.0009765625], [22.744335937500068, -13.0009765625], [22.470996093750074, -13.0009765625], [22.209570312500006, -13.0009765625], [21.97890625000008, -13.0009765625], [21.97900390625003, -13.156835937499963], [21.979101562500034, -13.477734374999969], [21.979101562500034, -13.798730468749994], [21.979296875000074, -14.11962890625], [21.979394531249994, -14.440527343750006], [21.97949218750003, -14.761425781250011], [21.979589843750034, -15.082324218750017], [21.979687500000068, -15.403222656250023], [21.97978515624999, -15.724121093750028], [21.97978515624999, -15.955566406250014], [22.040234375000068, -16.26279296874999], [22.15068359374999, -16.597167968749986], [22.193945312500006, -16.62812], [22.305078125000023, -16.689550781249977], [22.45947265625003, -16.815136718749983], [22.545996093750063, -16.91025390624999], [22.721972656250045, -17.075292968749963], [22.955859375000074, -17.28574218750002], [23.181640625000057, -17.474414062500003], [23.380664062500017, -17.640625], [23.06826171875005, -17.698828124999977], [22.624023437500057, -17.78164062499998], [22.32421875, -17.8375], [21.96083984375005, -17.90517578125001], [21.71845703125004, -17.94775390624997], [21.41689453125008, -18.00068359375001], [21.36875, -17.999511718749957], [21.287890625000074, -17.962988281249977], [21.113476562500068, -17.95576171875001], [20.908300781250034, -18.00605468750004], [20.74550781250008, -18.019726562499983], [20.625097656250063, -17.99667968749999], [20.507617187500017, -17.95253906249998], [20.392968750000023, -17.887402343750026], [20.194335937500057, -17.863671875], [19.91181640625004, -17.881347656250043], [19.63935546875004, -17.86865234375003], [19.37714843750001, -17.82548828125003], [19.189453125000057, -17.808496093750023], [19.076464843750045, -17.81767578125003], [18.95527343750004, -17.80351562499999], [18.825976562500074, -17.766308593750054], [18.718066406250045, -17.70322265624999], [18.588183593750045, -17.570019531250026], [18.486621093750045, -17.442773437500037], [18.460351562500023, -17.424609374999974], [18.428222656250057, -17.405175781250023], [18.39638671875005, -17.3994140625], [18.10878906250008, -17.395996093750014], [17.83535156250005, -17.392773437499983], [17.678808593750063, -17.39257812500003], [17.296289062500023, -17.391992187499994], [16.913671875000034, -17.39140625], [16.531054687500074, -17.390820312500026], [16.14843750000003, -17.390234375], [15.765820312500068, -17.389648437499957], [15.38320312500008, -17.389160156249957], [15.000585937500034, -17.38857421875001], [14.617968750000074, -17.387988281249974], [14.41474609375004, -17.387695312500014], [14.225878906250045, -17.397753906250017], [14.017480468750023, -17.40888671874997], [13.987402343750034, -17.404199218749994], [13.93798828125, -17.388769531249963], [13.904199218750051, -17.360742187500023], [13.7919921875, -17.28837890625003], [13.6943359375, -17.233496093750034], [13.561718749999983, -17.141210937499977], [13.475976562500023, -17.04003906249997], [13.403710937500051, -17.00781249999997], [13.275683593750074, -16.98955078124999], [13.179492187500017, -16.971679687499986], [13.101171875000063, -16.967675781249966], [12.963183593750017, -17.015429687500017], [12.859277343750051, -17.062597656250034], [12.785156250000057, -17.108203125], [12.656542968750074, -17.160546875], [12.548144531250017, -17.212695312499974], [12.35927734375008, -17.205859375], [12.318457031250006, -17.21337890625003], [12.213378906250028, -17.209960937500043], [12.114355468750006, -17.16455078125003], [12.013964843750074, -17.168554687500034], [11.902539062500011, -17.226562499999957], [11.743066406250023, -17.24921875000004], [11.780078125000017, -16.87128906249997], [11.818945312500034, -16.704101562500014], [11.819921875000063, -16.50429687499998], [11.796972656250006, -15.986425781249991], [11.76943359375008, -15.915332031249989], [11.750878906250023, -15.831933593749966], [11.849707031250006, -15.768359374999974], [11.89990234375, -15.719824218750034], [11.967871093750006, -15.63398437500004], [12.016113281250057, -15.513671874999957], [12.073242187500057, -15.248242187499969], [12.280468750000011, -14.6375], [12.37890625, -14.039062500000014], [12.503710937500017, -13.755468749999963], [12.55048828125004, -13.437792968750003], [12.897656250000068, -13.027734375000037], [12.983203124999989, -12.775683593750017], [13.162695312500063, -12.652148437499989], [13.4169921875, -12.52041015624998], [13.597949218750017, -12.286132812500028], [13.685546875, -12.123828125], [13.785351562499983, -11.81279296874996], [13.784277343750034, -11.487988281249969], [13.847460937500045, -11.054394531249997], [13.833593750000063, -10.9296875], [13.73896484375004, -10.757128906250017], [13.721386718750011, -10.633593749999989], [13.63349609375004, -10.512304687499963], [13.53945312500008, -10.42070312499996], [13.495410156250074, -10.257128906250031], [13.33222656250004, -9.998925781250009], [13.2875, -9.826757812500006], [13.209375, -9.703222656249977], [13.196875, -9.550683593749994], [13.155664062500051, -9.389648437499957], [13.075976562500074, -9.230371093750009], [12.99853515625, -9.048046875], [12.99853515625, -8.991015625000017], [13.04677734375008, -8.922265625000037], [13.092773437500028, -8.899707031249974], [13.077246093750063, -8.934277343749997], [13.04658203125004, -8.975195312499991], [13.053808593750006, -9.006835937499943], [13.358984375, -8.687207031250026], [13.378320312500023, -8.624707031249997], [13.36806640625008, -8.554785156249963], [13.366406249999983, -8.469238281250028], [13.378515625000063, -8.369726562500006], [13.090820312499972, -7.78017578124998], [12.862304687500057, -7.231835937499994], [12.82343750000004, -6.954785156249955], [12.521289062500045, -6.590332031249957], [12.402148437500017, -6.353417968750009], [12.334277343750045, -6.187304687500003], [12.283300781250063, -6.12431640624996], [12.302539062500074, -6.092578124999989], [12.380371093750028, -6.084277343749974], [12.553515625000045, -6.045898437499972], [12.790625, -6.003906249999943], [13.009765625, -5.907617187499966], [13.068164062500074, -5.864843749999949], [13.184375, -5.85625], [13.302636718750051, -5.881835937499943], [13.346484375000017, -5.863378906250006], [13.371484375000051, -5.861816406249957], [13.649023437500006, -5.861718750000023], [13.764550781250023, -5.855175781250026], [13.978515625, -5.857226562500003], [14.113769531250028, -5.865136718750009], [14.19082031250008, -5.8759765625]]], [[[12.255273437500023, -5.746484375], [12.213671875000074, -5.758691406249994], [12.199023437500017, -5.731933593749957], [12.15546875000004, -5.632714843749994], [12.18007812500008, -5.53867187500002], [12.206542968750057, -5.468261718749986], [12.177148437499994, -5.324804687499977], [12.11054687500004, -5.197167968749994], [12.039941406250023, -5.035156250000028], [12.018359375000074, -5.004296874999966], [12.077539062500051, -4.9521484375], [12.167089843750006, -4.837695312499946], [12.20429687500004, -4.778613281249989], [12.307910156249989, -4.765527343749994], [12.3466796875, -4.724121093749986], [12.374023437500057, -4.657714843749957], [12.384570312500074, -4.619140625000014], [12.50146484375, -4.5875], [12.641699218750063, -4.531152343750023], [12.719433593749983, -4.469726562499943], [12.798242187500051, -4.430566406249966], [12.848144531250028, -4.428906249999983], [12.881054687500068, -4.445117187499989], [12.971386718750068, -4.551757812499957], [13.048046875000068, -4.619238281250034], [13.072753906250028, -4.634765625], [13.057324218750011, -4.651074218750026], [12.947460937500011, -4.695312499999986], [12.829687499999977, -4.73662109374996], [12.674804687500057, -4.905371093749963], [12.596191406250028, -4.978417968750023], [12.573535156250017, -4.996582031249986], [12.502734375000074, -5.036914062500031], [12.451464843750017, -5.071484374999969], [12.453222656250034, -5.090625], [12.487402343750063, -5.112695312500023], [12.52236328125008, -5.148925781250028], [12.518945312499994, -5.424609374999974], [12.503710937500017, -5.695800781249972], [12.484570312500011, -5.71875], [12.386035156250017, -5.727734375], [12.255273437500023, -5.746484375]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Ang.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;AGO&quot;, &quot;adm0_a3_is&quot;: &quot;AGO&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;AGO&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Angola&quot;, &quot;brk_a3&quot;: &quot;AGO&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Angola&quot;, &quot;continent&quot;: &quot;Africa&quot;, &quot;economy&quot;: &quot;7. Least developed region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;People\\u0027s Republic of Angola&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 110300, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Angola&quot;, &quot;gu_a3&quot;: &quot;AGO&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;3. Upper middle income&quot;, &quot;iso_a2&quot;: &quot;AO&quot;, &quot;iso_a3&quot;: &quot;AGO&quot;, &quot;iso_n3&quot;: &quot;024&quot;, &quot;labelrank&quot;: 3, &quot;lastcensus&quot;: 1970, &quot;level&quot;: 2, &quot;long_len&quot;: 6, &quot;mapcolor13&quot;: 1, &quot;mapcolor7&quot;: 3, &quot;mapcolor8&quot;: 2, &quot;mapcolor9&quot;: 6, &quot;name&quot;: &quot;Angola&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 6, &quot;name_long&quot;: &quot;Angola&quot;, &quot;name_sort&quot;: &quot;Angola&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 12799293, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AO&quot;, &quot;region_un&quot;: &quot;Africa&quot;, &quot;region_wb&quot;: &quot;Sub-Saharan Africa&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;AGO&quot;, &quot;sovereignt&quot;: &quot;Angola&quot;, &quot;su_a3&quot;: &quot;AGO&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Middle Africa&quot;, &quot;subunit&quot;: &quot;Angola&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;024&quot;, &quot;wb_a2&quot;: &quot;AO&quot;, &quot;wb_a3&quot;: &quot;AGO&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-63.001220703125, 18.22177734374999], [-63.16000976562499, 18.17138671875], [-63.1533203125, 18.20029296874999], [-63.026025390624994, 18.269726562499997], [-62.97958984374999, 18.264794921874994], [-63.001220703125, 18.22177734374999]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Ang.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;AIA&quot;, &quot;adm0_a3_is&quot;: &quot;AIA&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;AIA&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 1, &quot;admin&quot;: &quot;Anguilla&quot;, &quot;brk_a3&quot;: &quot;AIA&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Anguilla&quot;, &quot;continent&quot;: &quot;North America&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: null, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 108.9, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Anguilla&quot;, &quot;gu_a3&quot;: &quot;AIA&quot;, &quot;homepart&quot;: -99, &quot;income_grp&quot;: &quot;3. Upper middle income&quot;, &quot;iso_a2&quot;: &quot;AI&quot;, &quot;iso_a3&quot;: &quot;AIA&quot;, &quot;iso_n3&quot;: &quot;660&quot;, &quot;labelrank&quot;: 6, &quot;lastcensus&quot;: -99, &quot;level&quot;: 2, &quot;long_len&quot;: 8, &quot;mapcolor13&quot;: 3, &quot;mapcolor7&quot;: 6, &quot;mapcolor8&quot;: 6, &quot;mapcolor9&quot;: 6, &quot;name&quot;: &quot;Anguilla&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 8, &quot;name_long&quot;: &quot;Anguilla&quot;, &quot;name_sort&quot;: &quot;Anguilla&quot;, &quot;note_adm0&quot;: &quot;U.K.&quot;, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 14436, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AI&quot;, &quot;region_un&quot;: &quot;Americas&quot;, &quot;region_wb&quot;: &quot;Latin America \\u0026 Caribbean&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;GB1&quot;, &quot;sovereignt&quot;: &quot;United Kingdom&quot;, &quot;su_a3&quot;: &quot;AIA&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Caribbean&quot;, &quot;subunit&quot;: &quot;Anguilla&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Dependency&quot;, &quot;un_a3&quot;: &quot;660&quot;, &quot;wb_a2&quot;: &quot;-99&quot;, &quot;wb_a3&quot;: &quot;-99&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[20.06396484375, 42.547265625], [20.103515625, 42.524658203125], [20.18574218750001, 42.42587890625], [20.240527343750017, 42.33896484375], [20.348242187500006, 42.3087890625], [20.408300781250006, 42.274951171874996], [20.485449218750006, 42.223388671875], [20.522851562500023, 42.171484375], [20.57539062500001, 42.013085937499994], [20.581445312500023, 41.917431640625], [20.566210937500017, 41.873681640624994], [20.553125, 41.862353515624996], [20.505175781250017, 41.706494140625], [20.5166015625, 41.62705078125], [20.516210937500006, 41.574755859374996], [20.4755859375, 41.554101562499994], [20.448632812500023, 41.521289062499996], [20.49238281250001, 41.39140625], [20.48701171875001, 41.336083984374994], [20.48896484375001, 41.272607421874994], [20.56787109375, 41.127832031249994], [20.61445312500001, 41.083056640624996], [20.656054687500017, 41.061669921874994], [20.709277343750017, 40.928369140624994], [20.740820312500006, 40.9052734375], [20.870214843750006, 40.917919921875], [20.933496093750023, 40.903125], [20.95859375, 40.871533203125], [20.964257812500023, 40.849902343749996], [20.95576171875001, 40.775292968749994], [20.987890625, 40.7177734375], [21.031054687500017, 40.658642578125], [21.030859375, 40.622460937499994], [21.001953125, 40.563378906249994], [20.9501953125, 40.494384765625], [20.881640625000017, 40.467919921874994], [20.806054687500023, 40.445458984374994], [20.77001953125, 40.391894531249996], [20.75166015625001, 40.334912109375], [20.717871093750006, 40.29267578125], [20.69697265625001, 40.246386718749996], [20.664941406250023, 40.151757812499994], [20.65742187500001, 40.1173828125], [20.60625, 40.082666015624994], [20.52705078125001, 40.068505859374994], [20.4560546875, 40.065576171874994], [20.408007812500017, 40.049462890624994], [20.383691406250023, 40.0171875], [20.338476562500006, 39.991064453125], [20.311132812500006, 39.979443359375], [20.311328125000017, 39.95078125], [20.34423828125, 39.890625], [20.381640625000017, 39.841796875], [20.382421875, 39.802636718749994], [20.364062500000017, 39.791748046875], [20.30615234375, 39.796679687499996], [20.293847656250023, 39.7822265625], [20.28759765625, 39.738574218749996], [20.272070312500006, 39.701171875], [20.24824218750001, 39.678369140624994], [20.206835937500017, 39.653515625], [20.13105468750001, 39.66162109375], [20.05976562500001, 39.699121093749994], [20.022558593750006, 39.710693359375], [20.001269531250017, 39.709423828125], [19.99560546875, 39.801025390625], [19.96484375, 39.872265625], [19.851855468750017, 40.0435546875], [19.48457031250001, 40.2099609375], [19.39814453125001, 40.28486328125], [19.360156250000017, 40.347705078124996], [19.322265625, 40.407080078125], [19.35859375000001, 40.408740234374996], [19.39453125, 40.393701171874994], [19.440527343750006, 40.37568359375], [19.45917968750001, 40.40537109375], [19.439257812500017, 40.470263671874996], [19.344628906250023, 40.6220703125], [19.3375, 40.663818359375], [19.383886718750006, 40.79072265625], [19.461230468750017, 40.93330078125], [19.4560546875, 41.1060546875], [19.480078125, 41.236376953124996], [19.453417968750017, 41.32099609375], [19.440625, 41.424755859375], [19.497363281250017, 41.5626953125], [19.545800781250023, 41.596826171874994], [19.57568359375, 41.640429687499996], [19.577539062500023, 41.7875], [19.46826171875, 41.85615234375], [19.342382812500006, 41.869091796875], [19.345507812500017, 41.918847656249994], [19.361132812500017, 41.99775390625], [19.352148437500006, 42.0240234375], [19.361425781250006, 42.069091796875], [19.330859375000017, 42.129296875], [19.280664062500023, 42.17255859375], [19.329003906250023, 42.249267578125], [19.39960937500001, 42.34189453125], [19.465136718750017, 42.415380859375], [19.54453125, 42.491943359375], [19.597460937500017, 42.5654296875], [19.65449218750001, 42.628564453124994], [19.703417968750017, 42.64794921875], [19.727832031250017, 42.634521484375], [19.74072265625, 42.60693359375], [19.73779296875, 42.525146484375], [19.754492187500006, 42.496923828125], [19.78828125000001, 42.476171875], [19.859765625000023, 42.486328125], [19.9390625, 42.506689453125], [20.045703125000017, 42.54990234375], [20.06396484375, 42.547265625]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Alb.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;ALB&quot;, &quot;adm0_a3_is&quot;: &quot;ALB&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;ALB&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Albania&quot;, &quot;brk_a3&quot;: &quot;ALB&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Albania&quot;, &quot;continent&quot;: &quot;Europe&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Republic of Albania&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 21810, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Albania&quot;, &quot;gu_a3&quot;: &quot;ALB&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;4. Lower middle income&quot;, &quot;iso_a2&quot;: &quot;AL&quot;, &quot;iso_a3&quot;: &quot;ALB&quot;, &quot;iso_n3&quot;: &quot;008&quot;, &quot;labelrank&quot;: 6, &quot;lastcensus&quot;: 2001, &quot;level&quot;: 2, &quot;long_len&quot;: 7, &quot;mapcolor13&quot;: 6, &quot;mapcolor7&quot;: 1, &quot;mapcolor8&quot;: 4, &quot;mapcolor9&quot;: 1, &quot;name&quot;: &quot;Albania&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 7, &quot;name_long&quot;: &quot;Albania&quot;, &quot;name_sort&quot;: &quot;Albania&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 3639453, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AL&quot;, &quot;region_un&quot;: &quot;Europe&quot;, &quot;region_wb&quot;: &quot;Europe \\u0026 Central Asia&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;ALB&quot;, &quot;sovereignt&quot;: &quot;Albania&quot;, &quot;su_a3&quot;: &quot;ALB&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Southern Europe&quot;, &quot;subunit&quot;: &quot;Albania&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;008&quot;, &quot;wb_a2&quot;: &quot;AL&quot;, &quot;wb_a3&quot;: &quot;ALB&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[20.611328125, 60.040673828124994], [20.60341796875008, 60.016943359375034], [20.521777343750045, 60.011669921874955], [20.4875, 60.03276367187499], [20.411230468750006, 60.03012695312498], [20.397949218750057, 60.040673828124994], [20.429589843750023, 60.06171875000001], [20.490136718749994, 60.074902343749955], [20.569140625000017, 60.069628906250045], [20.611328125, 60.040673828124994]]], [[[19.66230468750001, 60.187158203124994], [19.66748046875, 60.164746093749955], [19.629199218750017, 60.170361328124955], [19.599804687500068, 60.16269531249998], [19.579882812500017, 60.135058593750045], [19.53652343750005, 60.14497070312501], [19.519042968750057, 60.1845703125], [19.551367187500063, 60.24384765625001], [19.628808593750023, 60.24609375], [19.66230468750001, 60.187158203124994]]], [[[19.989550781250074, 60.351171875], [20.02021484375001, 60.350878906250045], [20.03388671875004, 60.35932617187498], [20.08740234375003, 60.35341796875002], [20.16787109375008, 60.31469726562506], [20.18408203125, 60.29375], [20.239550781250017, 60.28300781249999], [20.258886718750063, 60.26127929687499], [20.19472656250005, 60.193554687499955], [20.155078125000045, 60.192285156249966], [20.125488281250057, 60.200878906249955], [20.07324218749997, 60.193457031250034], [20.042578125000034, 60.1806640625], [20.032324218750006, 60.15249023437505], [20.033984375000074, 60.09355468750002], [19.799804687500057, 60.08173828125001], [19.745996093750023, 60.09897460937498], [19.672265625, 60.233007812500006], [19.68691406250005, 60.267626953125045], [19.73652343750004, 60.28237304687502], [19.779003906249983, 60.285546874999966], [19.785253906250034, 60.21337890625], [19.84765625000003, 60.22055664062506], [19.86718750000003, 60.268115234375045], [19.87158203125003, 60.301611328125034], [19.85468750000004, 60.31850585937502], [19.812304687500017, 60.33159179687502], [19.78779296875001, 60.354052734375074], [19.823046875000074, 60.390185546875045], [19.888281250000063, 60.405810546875045], [19.94453125000004, 60.35751953124998], [19.989550781250074, 60.351171875]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Aland&quot;, &quot;abbrev_len&quot;: 5, &quot;adm0_a3&quot;: &quot;ALD&quot;, &quot;adm0_a3_is&quot;: &quot;ALA&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;ALD&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 1, &quot;admin&quot;: &quot;Aland&quot;, &quot;brk_a3&quot;: &quot;ALD&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Aland&quot;, &quot;continent&quot;: &quot;Europe&quot;, &quot;economy&quot;: &quot;2. Developed region: nonG7&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;\\u00c5land Islands&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 1563, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Aland&quot;, &quot;gu_a3&quot;: &quot;ALD&quot;, &quot;homepart&quot;: -99, &quot;income_grp&quot;: &quot;1. High income: OECD&quot;, &quot;iso_a2&quot;: &quot;AX&quot;, &quot;iso_a3&quot;: &quot;ALA&quot;, &quot;iso_n3&quot;: &quot;248&quot;, &quot;labelrank&quot;: 6, &quot;lastcensus&quot;: -99, &quot;level&quot;: 2, &quot;long_len&quot;: 13, &quot;mapcolor13&quot;: 6, &quot;mapcolor7&quot;: 4, &quot;mapcolor8&quot;: 1, &quot;mapcolor9&quot;: 4, &quot;name&quot;: &quot;Aland&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 5, &quot;name_long&quot;: &quot;Aland Islands&quot;, &quot;name_sort&quot;: &quot;Aland&quot;, &quot;note_adm0&quot;: &quot;Fin.&quot;, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 27153, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AI&quot;, &quot;region_un&quot;: &quot;Europe&quot;, &quot;region_wb&quot;: &quot;Europe \\u0026 Central Asia&quot;, &quot;scalerank&quot;: 3, &quot;sov_a3&quot;: &quot;FI1&quot;, &quot;sovereignt&quot;: &quot;Finland&quot;, &quot;su_a3&quot;: &quot;ALD&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Northern Europe&quot;, &quot;subunit&quot;: &quot;Aland&quot;, &quot;tiny&quot;: 5, &quot;type&quot;: &quot;Country&quot;, &quot;un_a3&quot;: &quot;248&quot;, &quot;wb_a2&quot;: &quot;-99&quot;, &quot;wb_a3&quot;: &quot;-99&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[1.7060546875, 42.503320312499994], [1.678515625000017, 42.4966796875], [1.58642578125, 42.455957031249994], [1.534082031250023, 42.441699218749996], [1.486230468750023, 42.434472656249994], [1.448828125, 42.437451171875], [1.428125, 42.461328125], [1.430273437500006, 42.497851562499996], [1.421972656250006, 42.530810546874996], [1.414843750000017, 42.548388671874996], [1.428320312500006, 42.5958984375], [1.458886718750023, 42.6216796875], [1.501367187500023, 42.642724609374994], [1.568164062500017, 42.635009765625], [1.709863281250023, 42.604443359375], [1.739453125000011, 42.575927734375], [1.740234375, 42.55673828125], [1.713964843750006, 42.525634765625], [1.7060546875, 42.503320312499994]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;And.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;AND&quot;, &quot;adm0_a3_is&quot;: &quot;AND&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;AND&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Andorra&quot;, &quot;brk_a3&quot;: &quot;AND&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Andorra&quot;, &quot;continent&quot;: &quot;Europe&quot;, &quot;economy&quot;: &quot;2. Developed region: nonG7&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Principality of Andorra&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 3660, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Andorra&quot;, &quot;gu_a3&quot;: &quot;AND&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;2. High income: nonOECD&quot;, &quot;iso_a2&quot;: &quot;AD&quot;, &quot;iso_a3&quot;: &quot;AND&quot;, &quot;iso_n3&quot;: &quot;020&quot;, &quot;labelrank&quot;: 6, &quot;lastcensus&quot;: 1989, &quot;level&quot;: 2, &quot;long_len&quot;: 7, &quot;mapcolor13&quot;: 8, &quot;mapcolor7&quot;: 1, &quot;mapcolor8&quot;: 4, &quot;mapcolor9&quot;: 1, &quot;name&quot;: &quot;Andorra&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 7, &quot;name_long&quot;: &quot;Andorra&quot;, &quot;name_sort&quot;: &quot;Andorra&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 83888, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AND&quot;, &quot;region_un&quot;: &quot;Europe&quot;, &quot;region_wb&quot;: &quot;Europe \\u0026 Central Asia&quot;, &quot;scalerank&quot;: 3, &quot;sov_a3&quot;: &quot;AND&quot;, &quot;sovereignt&quot;: &quot;Andorra&quot;, &quot;su_a3&quot;: &quot;AND&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Southern Europe&quot;, &quot;subunit&quot;: &quot;Andorra&quot;, &quot;tiny&quot;: 5, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;020&quot;, &quot;wb_a2&quot;: &quot;AD&quot;, &quot;wb_a3&quot;: &quot;ADO&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[53.927832031250006, 24.177197265624983], [53.928125, 24.143359375000017], [53.82636718750004, 24.153125], [53.799121093750074, 24.135546875000017], [53.71582031249997, 24.145312500000045], [53.63447265625004, 24.169775390624977], [53.6896484375001, 24.210791015624977], [53.83378906250002, 24.258935546875023], [53.89375, 24.215136718750074], [53.927832031250006, 24.177197265624983]]], [[[52.6168945312501, 24.28857421875003], [52.6, 24.281298828125045], [52.58222656250004, 24.335253906250017], [52.58359375000006, 24.352343750000045], [52.62939453124997, 24.376757812500045], [52.65761718750005, 24.332617187500034], [52.6168945312501, 24.28857421875003]]], [[[53.3322265625001, 24.258593750000045], [53.25830078125003, 24.252929687500057], [53.19091796874997, 24.290917968749966], [53.33251953124997, 24.34160156249999], [53.370898437500074, 24.36445312500004], [53.412402343750074, 24.411035156250023], [53.44531250000003, 24.371191406249977], [53.40898437500002, 24.307910156250045], [53.382617187500074, 24.280859375000063], [53.3322265625001, 24.258593750000045]]], [[[54.465429687500006, 24.442773437499994], [54.456640625, 24.42333984375003], [54.42841796875004, 24.425097656250045], [54.35771484375002, 24.442773437499994], [54.334765625000074, 24.471044921874977], [54.37890624999997, 24.504589843749983], [54.39833984375005, 24.50634765624997], [54.42656250000002, 24.471044921874977], [54.465429687500006, 24.442773437499994]]], [[[56.18359375000003, 25.644921875000023], [56.24951171874997, 25.625390624999966], [56.2785156250001, 25.62773437499999], [56.29785156250003, 25.650683593750045], [56.3634765625001, 25.569384765625017], [56.37285156250002, 25.018310546875], [56.38798828125002, 24.97919921875004], [56.352929687499994, 24.973291015624994], [56.31357421875006, 24.93129882812505], [56.267871093750074, 24.86669921875003], [56.20468750000006, 24.833300781250074], [56.15449218750004, 24.795507812500006], [56.10654296875006, 24.748681640624966], [56.06386718750005, 24.73876953125], [56.00839843750006, 24.798242187500023], [55.9703125, 24.858935546875045], [55.97968750000004, 24.87207031249997], [56.00634765624997, 24.876416015624955], [56.01669921875006, 24.90771484375003], [56.00058593750006, 24.953222656249977], [55.96308593750004, 24.97026367187499], [55.91582031250002, 24.971777343750034], [55.87070312500006, 24.95141601562497], [55.822851562500006, 24.911279296874966], [55.795703125000074, 24.868115234374955], [55.791601562500006, 24.781298828125045], [55.80419921875003, 24.68359375000003], [55.80390625000004, 24.63623046874997], [55.7775390625001, 24.577343749999955], [55.76816406250006, 24.49062], [55.7868164062501, 24.423535156249983], [55.804003906250074, 24.383544921875], [55.80566406250003, 24.349804687499983], [55.76083984375006, 24.24267578125], [55.799707031249994, 24.22265625], [55.92861328125005, 24.215136718750074], [55.96630859374997, 24.142626953125045], [55.99218750000003, 24.092968749999955], [55.98515625000002, 24.063378906249966], [55.894140625, 24.041406250000023], [55.77910156250002, 24.017089843750057], [55.69658203125002, 24.024121093749983], [55.54785156250003, 23.99135742187505], [55.4684570312501, 23.94111328125001], [55.49179687500006, 23.90966796875], [55.519335937500074, 23.88549804687497], [55.531640625, 23.81904296875001], [55.5084960937501, 23.72460937499997], [55.46630859375003, 23.632910156250034], [55.413867187500074, 23.51875], [55.35322265625004, 23.38745117187503], [55.27021484375004, 23.18994140625003], [55.1999023437501, 23.034765625000034], [55.19218750000002, 22.922949218749977], [55.19404296875004, 22.85], [55.185839843750074, 22.7041015625], [55.11943359375002, 22.623925781249994], [55.104296875000074, 22.621484375000023], [55.025, 22.631152343750045], [54.99824218750004, 22.634375], [54.92246093750006, 22.643652343750006], [54.8048828125001, 22.658007812500017], [54.652246093749994, 22.676660156249994], [54.47167968749997, 22.698730468750057], [54.270117187500006, 22.72333984375001], [54.054589843749994, 22.749658203125023], [53.83212890625006, 22.776806640624955], [53.6095703125001, 22.80400390624999], [53.39404296874997, 22.83032226562503], [53.19238281250003, 22.854931640624983], [53.01191406250004, 22.877001953125045], [52.859277343749994, 22.895605468750006], [52.741601562499994, 22.910009765625006], [52.66591796875005, 22.919287109375034], [52.63916015625003, 22.922509765624994], [52.55507812500005, 22.932812499999955], [52.50957031250002, 22.986962890624966], [52.45458984374997, 23.052441406249983], [52.39960937500004, 23.117968750000017], [52.34453125000002, 23.18349609375005], [52.28955078125003, 23.248974609374983], [52.2345703125001, 23.314453125], [52.179492187500074, 23.379980468750006], [52.12451171874997, 23.445458984375023], [52.06943359375006, 23.51098632812497], [52.01445312500002, 23.57646484374999], [51.95947265625003, 23.641992187500023], [51.904394531250006, 23.70751953125003], [51.849414062500074, 23.772998046875045], [51.79433593750005, 23.838476562499977], [51.739355468750006, 23.90400390625001], [51.684375, 23.969531250000045], [51.629296875, 24.035009765625063], [51.592578125000074, 24.07885742187503], [51.572167968749994, 24.128320312499966], [51.56835937500003, 24.257910156250006], [51.56835937500003, 24.286181640625074], [51.60546875000003, 24.338427734375045], [51.62314453125006, 24.30107421874999], [51.66455078124997, 24.250439453124983], [51.734765625, 24.262792968750006], [51.76757812500003, 24.25439453125], [51.79169921875004, 24.074755859375074], [51.84316406250005, 24.010888671875023], [51.906054687500074, 23.98535156249997], [52.118554687499994, 23.97109375], [52.25087890625005, 23.995214843750034], [52.51142578125004, 24.1125], [52.64824218750002, 24.154638671875006], [53.02636718750003, 24.147314453125034], [53.32958984374997, 24.098437500000017], [53.80175781249997, 24.069482421874966], [53.89335937500002, 24.077050781249994], [54.14794921875003, 24.17119140624999], [54.30429687500006, 24.254296874999966], [54.39707031250006, 24.278173828125034], [54.458398437499994, 24.358251953125006], [54.498828125000074, 24.462695312500045], [54.53466796875003, 24.53095703125001], [54.58046875, 24.56352539062499], [54.624121093750006, 24.62128906250004], [54.65898437500002, 24.715527343749955], [54.74677734375004, 24.810449218750023], [55.09814453124997, 25.041601562500034], [55.303515625000074, 25.23681640625003], [55.32167968750005, 25.29980468749997], [55.433398437500074, 25.394482421874983], [55.522851562499994, 25.498144531249977], [55.94121093750002, 25.793994140625017], [56.02519531250002, 25.91601562500003], [56.07460937500005, 26.05278320312499], [56.08046875, 26.06264648437505], [56.11650390625002, 26.068164062500017], [56.16748046875003, 26.047460937499977], [56.1725585937501, 25.945166015625006], [56.154101562500074, 25.848486328125034], [56.15195312500006, 25.74609375000003], [56.144628906250006, 25.690527343750006], [56.18359375000003, 25.644921875000023]], [[56.210546875, 25.213281250000023], [56.24023437500003, 25.208837890625006], [56.28183593750006, 25.23554687500004], [56.28779296875004, 25.278613281250017], [56.27734375000003, 25.300878906250034], [56.23427734375005, 25.303808593750006], [56.2165039062501, 25.266699218749977], [56.210546875, 25.213281250000023]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;U.A.E.&quot;, &quot;abbrev_len&quot;: 6, &quot;adm0_a3&quot;: &quot;ARE&quot;, &quot;adm0_a3_is&quot;: &quot;ARE&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;ARE&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;United Arab Emirates&quot;, &quot;brk_a3&quot;: &quot;ARE&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;United Arab Emirates&quot;, &quot;continent&quot;: &quot;Asia&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;United Arab Emirates&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 184300, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;United Arab Emirates&quot;, &quot;gu_a3&quot;: &quot;ARE&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;2. High income: nonOECD&quot;, &quot;iso_a2&quot;: &quot;AE&quot;, &quot;iso_a3&quot;: &quot;ARE&quot;, &quot;iso_n3&quot;: &quot;784&quot;, &quot;labelrank&quot;: 4, &quot;lastcensus&quot;: 2010, &quot;level&quot;: 2, &quot;long_len&quot;: 20, &quot;mapcolor13&quot;: 3, &quot;mapcolor7&quot;: 2, &quot;mapcolor8&quot;: 1, &quot;mapcolor9&quot;: 3, &quot;name&quot;: &quot;United Arab Emirates&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 20, &quot;name_long&quot;: &quot;United Arab Emirates&quot;, &quot;name_sort&quot;: &quot;United Arab Emirates&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 4798491, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AE&quot;, &quot;region_un&quot;: &quot;Asia&quot;, &quot;region_wb&quot;: &quot;Middle East \\u0026 North Africa&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;ARE&quot;, &quot;sovereignt&quot;: &quot;United Arab Emirates&quot;, &quot;su_a3&quot;: &quot;ARE&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Western Asia&quot;, &quot;subunit&quot;: &quot;United Arab Emirates&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;784&quot;, &quot;wb_a2&quot;: &quot;AE&quot;, &quot;wb_a3&quot;: &quot;ARE&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-64.54916992187498, -54.71621093749998], [-64.43881835937495, -54.739355468749984], [-64.22050781249999, -54.721972656249996], [-64.10532226562495, -54.72167968750003], [-64.054931640625, -54.72988281250001], [-64.03242187499995, -54.74238281249998], [-63.881933593750006, -54.72294921875002], [-63.81542968749997, -54.725097656250014], [-63.83256835937499, -54.76796874999995], [-63.97124023437499, -54.810644531250034], [-64.0283203125, -54.792578125], [-64.32290039062497, -54.796484375], [-64.45327148437497, -54.84033203124995], [-64.50869140625, -54.83994140624996], [-64.637353515625, -54.90253906250001], [-64.73144531249997, -54.86298828125004], [-64.75732421875, -54.82656249999999], [-64.689208984375, -54.774707031249996], [-64.62509765624998, -54.77363281250004], [-64.58134765624996, -54.752734375000045], [-64.54916992187498, -54.71621093749998]]], [[[-68.27822265625002, -52.98398437500004], [-68.24013671875, -53.08183593749999], [-68.3330078125, -53.01962890625002], [-68.43115234375, -53.0552734375], [-68.4794921875, -53.113769531250014], [-68.52080078124996, -53.17724609374998], [-68.5205078125, -53.221875], [-68.48852539062497, -53.260937499999976], [-68.39311523437499, -53.29492187499997], [-68.16113281249997, -53.30644531250001], [-68.14409179687496, -53.31904296875], [-68.00849609374995, -53.5640625], [-67.940283203125, -53.61875], [-67.86108398437494, -53.66220703125001], [-67.67812, -53.787109374999964], [-67.502587890625, -53.92197265625], [-67.29423828125002, -54.049804687500014], [-67.06948242187497, -54.148046874999956], [-66.86513671875, -54.22255859374995], [-66.67006835937497, -54.31357421875002], [-66.46201171875003, -54.441015624999956], [-66.23564453124999, -54.53349609374997], [-65.99257812499997, -54.598925781249974], [-65.74707031250003, -54.65341796874998], [-65.369287109375, -54.63212890624999], [-65.25195312499997, -54.63808593749996], [-65.17900390624993, -54.67812], [-65.25234374999997, -54.78886718750004], [-65.34599609374993, -54.87792968749997], [-65.47114257812495, -54.91464843749999], [-65.60332031249996, -54.92812], [-65.72275390624995, -54.926367187499984], [-65.84199218750001, -54.90996093750002], [-65.95375976562494, -54.91933593749997], [-66.06064453124998, -54.95673828125004], [-66.172021484375, -54.975292968750004], [-66.28676757812502, -54.97773437499997], [-66.398681640625, -55.009375], [-66.5111328125, -55.032128906249945], [-66.62768554687503, -55.01328125000001], [-66.93046874999999, -54.92490234375004], [-67.127099609375, -54.90380859375001], [-67.79326171874999, -54.868652343750036], [-68.00712890624993, -54.8484375], [-68.2201171875, -54.817578125000026], [-68.331689453125, -54.81630859375003], [-68.49101562499993, -54.83623046875], [-68.61865234375, -54.83378906250004], [-68.65322265624994, -54.85361328124999], [-68.64750976562493, -54.62783203125], [-68.63979492187497, -54.32402343750002], [-68.63823242187499, -54.05292968750003], [-68.63666992187495, -53.78886718749997], [-68.63505859374996, -53.51542968750004], [-68.633447265625, -53.241894531250004], [-68.631689453125, -52.94951171875003], [-68.62993164062499, -52.65263671875004], [-68.57119140625002, -52.694921875000034], [-68.33876953125, -52.900097656250004], [-68.27822265625002, -52.98398437500004]]], [[[-61.87578125, -39.17187], [-61.865966796875, -39.23486328125003], [-61.91801757812496, -39.22744140625002], [-62.04160156249998, -39.16689453125004], [-62.08330078124996, -39.11015625000002], [-62.09301757812497, -39.08623046875003], [-61.966650390625006, -39.112207031249994], [-61.90712890624994, -39.135644531249966], [-61.87578125, -39.17187]]], [[[-65.77104492187493, -22.099609375000014], [-65.68618164062497, -22.11025390625005], [-65.51879882812497, -22.094531250000045], [-65.48486328125, -22.09814453124997], [-65.05781249999995, -22.102734375000026], [-64.99262695312498, -22.109667968750017], [-64.84306640624999, -22.14394531249998], [-64.758642578125, -22.17128906250005], [-64.70009765625, -22.185546875000014], [-64.60551757812499, -22.228808593750045], [-64.52363281250001, -22.37158203125], [-64.47773437499998, -22.485351562499986], [-64.44550781249998, -22.585351562500023], [-64.37397460937498, -22.761035156250017], [-64.32529296875, -22.82763671875], [-64.30791015624993, -22.7953125], [-64.26640625000002, -22.60332031249996], [-64.20908203124995, -22.491308593749963], [-64.13183593749994, -22.365820312499977], [-63.97612304687502, -22.072558593750003], [-63.92167968749993, -22.028613281250017], [-63.861035156249926, -22.007226562500023], [-63.81865234374999, -22.00546875000002], [-63.775585937499926, -22.02724609375001], [-63.716943359374966, -22.027539062499983], [-63.67534179687493, -22.004296875000037], [-63.2671875, -22.00058593749999], [-62.843359375, -21.997265625000026], [-62.83427734375002, -21.999121093749963], [-62.815087890624994, -22.04960937500003], [-62.744580078124955, -22.159863281250026], [-62.66528320312494, -22.21796874999997], [-62.65097656249998, -22.233691406249974], [-62.625683593749955, -22.26152343749996], [-62.62597656250003, -22.29042968749998], [-62.54155273437496, -22.349609374999957], [-62.37250976562498, -22.439160156249997], [-62.21416015624996, -22.612402343750034], [-62.066601562499926, -22.86943359374999], [-61.92802734374993, -23.059277343750026], [-61.798535156249955, -23.18203125], [-61.67949218749993, -23.26875], [-61.570996093749955, -23.319433593750006], [-61.51303710937495, -23.36044921875002], [-61.50551757812502, -23.39199218750005], [-61.40395507812502, -23.457519531249986], [-61.208398437499966, -23.55703125], [-61.084716796875, -23.65644531250001], [-61.032910156249926, -23.755664062499974], [-60.83984375000003, -23.85810546874997], [-60.50537109375, -23.96357421874997], [-60.26220703124994, -24.013964843750017], [-60.11030273437498, -24.009179687500023], [-59.89248046874994, -24.093554687499974], [-59.60859375000001, -24.26679687500001], [-59.43540039062498, -24.38701171874999], [-59.372949218749966, -24.45390625000003], [-59.18725585937497, -24.56230468749999], [-58.72402343750002, -24.786621093749957], [-58.519628906250034, -24.84287109375005], [-58.422802734374926, -24.894140625], [-58.365380859374966, -24.95927734374996], [-58.30869140624995, -24.97910156249999], [-58.252783203125034, -24.953808593749997], [-58.13647460937494, -24.97714843750005], [-57.959814453125034, -25.04921875], [-57.82167968749994, -25.136425781249983], [-57.64389648437498, -25.328417968750017], [-57.58715820312494, -25.405078125], [-57.56313476562494, -25.473730468749963], [-57.571679687499994, -25.534179687500014], [-57.625830078125006, -25.59873046875002], [-57.725488281249966, -25.667187500000026], [-57.754785156249994, -25.69707031249999], [-57.75708007812503, -25.72597656250001], [-57.78247070312494, -25.783691406249957], [-57.86523437500003, -25.90693359375001], [-57.88623046874994, -25.964257812499966], [-57.89062, -26.00654296874997], [-57.943115234375, -26.05292968750001], [-58.082421874999966, -26.13857421875005], [-58.11113281249993, -26.18017578125], [-58.11806640625002, -26.22490234374996], [-58.135644531249966, -26.251464843749957], [-58.15468750000002, -26.262597656249994], [-58.18149414062498, -26.30742187499999], [-58.20302734375002, -26.381445312499963], [-58.205175781250006, -26.476562499999986], [-58.187939453124955, -26.59257812499999], [-58.19130859375002, -26.629980468749977], [-58.222070312499994, -26.65], [-58.23935546874995, -26.67685546875002], [-58.24555664062498, -26.731054687499963], [-58.271679687499955, -26.77070312500004], [-58.31767578125002, -26.79589843750003], [-58.33466796875001, -26.824902343749983], [-58.32255859374993, -26.857617187499983], [-58.3564453125, -26.890039062500023], [-58.43632812499993, -26.921972656250034], [-58.485253906249966, -26.96845703125001], [-58.50322265624996, -27.02949218750001], [-58.54770507812498, -27.083984375], [-58.618603515624955, -27.13212890624996], [-58.64174804687494, -27.196093750000017], [-58.60483398437498, -27.314355468750037], [-58.16826171874993, -27.27343749999997], [-57.81220703124998, -27.31660156249997], [-57.39125976562502, -27.43046874999999], [-57.11181640625, -27.47011718749998], [-56.973974609375006, -27.435742187499997], [-56.87172851562494, -27.440625], [-56.80517578124997, -27.484667968750017], [-56.715722656249966, -27.49375], [-56.60336914062498, -27.467871093749963], [-56.51054687499999, -27.487890624999963], [-56.437158203124966, -27.553808593749977], [-56.370507812499966, -27.537402343750003], [-56.31054687500003, -27.43876953124999], [-56.24169921875003, -27.366796874999977], [-56.16406250000003, -27.321484374999983], [-56.067333984374955, -27.30771484375002], [-55.95146484374996, -27.325683593749957], [-55.859033203124966, -27.361914062499963], [-55.789990234374926, -27.416406249999966], [-55.71464843749996, -27.41484375], [-55.632910156250006, -27.35712890624997], [-55.59379882812502, -27.288085937500014], [-55.597265625, -27.207617187499963], [-55.56489257812498, -27.15], [-55.496728515624966, -27.11533203124999], [-55.45063476562498, -27.068359375000014], [-55.426660156249994, -27.00927734374997], [-55.345800781250034, -26.973144531249986], [-55.20800781250003, -26.96015625], [-55.13593750000001, -26.931152343749957], [-55.12963867187497, -26.886035156250003], [-55.0888671875, -26.84453124999999], [-55.013623046874955, -26.806640624999986], [-54.96215820312503, -26.759375], [-54.934472656249994, -26.70253906250001], [-54.88891601562503, -26.666796875000017], [-54.82548828124999, -26.65224609374998], [-54.755078124999955, -26.532910156249997], [-54.677734375, -26.308789062499997], [-54.631933593750006, -26.005761718749994], [-54.615869140624994, -25.576074218750023], [-54.537841796875, -25.576464843750017], [-54.50151367187499, -25.608300781250023], [-54.44394531249998, -25.625], [-54.38334960937499, -25.588671875000017], [-54.33188476562498, -25.57187], [-54.250097656250006, -25.57041015625002], [-54.206152343750034, -25.529589843749974], [-54.15458984374999, -25.523046874999963], [-54.119238281250006, -25.54521484374996], [-54.08500976562496, -25.57187], [-54.01230468749998, -25.57792968749996], [-53.95478515624998, -25.64765625000004], [-53.89116210937499, -25.66884765625001], [-53.86420898437498, -25.74882812499996], [-53.8232421875, -25.95957031249999], [-53.746923828125006, -26.08369140624997], [-53.67128906249994, -26.22509765625], [-53.668554687500006, -26.288183593749977], [-53.71093750000003, -26.351855468749974], [-53.718164062499994, -26.443164062500017], [-53.744580078124955, -26.666503906249957], [-53.753320312499966, -26.74863281249999], [-53.72714843749995, -26.804687500000043], [-53.71728515625, -26.88281249999997], [-53.758496093749955, -26.978320312499974], [-53.83818359375002, -27.121093750000014], [-53.91562, -27.159570312500037], [-53.93535156250002, -27.1611328125], [-54.04013671874995, -27.24375], [-54.11381835937496, -27.27470703124996], [-54.156445312499926, -27.253808593749966], [-54.20522460937502, -27.289648437499977], [-54.26015625000002, -27.38203124999997], [-54.32700195312495, -27.423535156249997], [-54.44814453124994, -27.446484375000054], [-54.484326171874955, -27.45732421875003], [-54.55493164062503, -27.4541015625], [-54.61542968750001, -27.47714843749999], [-54.66586914062498, -27.526562500000026], [-54.71972656250003, -27.54492187500003], [-54.777099609375, -27.53251953124999], [-54.82910156250003, -27.55058593750003], [-54.875732421875, -27.59921875], [-54.90278320312501, -27.651953125], [-54.91020507812502, -27.708593749999977], [-54.955908203125006, -27.74716796875002], [-55.039941406249994, -27.76777343750004], [-55.06899414062494, -27.796289062499994], [-55.063867187499966, -27.835937499999986], [-55.10151367187501, -27.866796874999963], [-55.24375, -27.898828125], [-55.34648437499999, -27.95595703125001], [-55.40981445312502, -28.037792968749983], [-55.47666015624995, -28.089355468750014], [-55.582373046875006, -28.12099609374998], [-55.72548828125002, -28.20410156250003], [-55.74599609375002, -28.25546875000002], [-55.691503906250034, -28.302832031249977], [-55.67197265624995, -28.344921875000026], [-55.68725585937497, -28.38164062499996], [-55.73198242187502, -28.386621093749994], [-55.806054687499994, -28.359765625000037], [-55.85888671875003, -28.35419921874997], [-55.890527343749994, -28.370019531249994], [-55.905419921874994, -28.399609374999983], [-55.903662109375006, -28.443261718749994], [-55.93017578124997, -28.472851562499983], [-55.98491210937493, -28.48857421874999], [-56.019628906250006, -28.52460937500004], [-56.03422851562496, -28.58085937499996], [-56.102880859375006, -28.65175781250001], [-56.225537109374926, -28.73720703125001], [-56.322363281250034, -28.852441406250037], [-56.39326171874998, -28.99726562499997], [-56.475976562499966, -29.09248046875001], [-56.570703125, -29.138085937499966], [-56.635839843750034, -29.203027343749966], [-56.67153320312502, -29.287304687499997], [-56.77246093749997, -29.417871093750037], [-56.938623046874994, -29.594824218750034], [-57.08935546874997, -29.71621093749998], [-57.22465820312499, -29.782128906249994], [-57.30068359374994, -29.856542968749963], [-57.31748046874998, -29.939453124999986], [-57.40522460937501, -30.03388671875004], [-57.563867187499994, -30.139941406249974], [-57.60888671875003, -30.187792968750045], [-57.645751953125, -30.226953125000023], [-57.65087890624997, -30.295019531250034], [-57.71269531249996, -30.38447265624997], [-57.83120117187502, -30.495214843749963], [-57.87250976562501, -30.591015625000026], [-57.818554687499926, -30.71201171874999], [-57.81059570312499, -30.85859375000001], [-57.83408203124998, -30.917480468750014], [-57.88632812499998, -30.937402343749994], [-57.898291015625006, -30.975195312499963], [-57.870068359374955, -31.031054687499974], [-57.86840820312497, -31.104394531249994], [-57.89335937499999, -31.195312499999957], [-57.948339843750006, -31.29941406250002], [-58.03339843750001, -31.416601562500006], [-58.053857421874994, -31.494921874999974], [-58.009667968749966, -31.534375], [-57.98798828124998, -31.576171875], [-57.98886718749998, -31.62060546875], [-58.00698242187494, -31.684960937499966], [-58.04233398437495, -31.769238281249997], [-58.09584960937502, -31.83183593749996], [-58.16748046874997, -31.87265625], [-58.18901367187499, -31.924218750000037], [-58.16040039062503, -31.986523437500026], [-58.156347656250006, -32.0515625], [-58.17700195312494, -32.11904296875002], [-58.16479492187494, -32.18486328125002], [-58.119726562500006, -32.24892578125002], [-58.12304687499997, -32.32187], [-58.201171875, -32.471679687500014], [-58.219970703125, -32.563964843749986], [-58.17099609374998, -32.95927734374996], [-58.20078125, -33.01464843749996], [-58.250390624999966, -33.07832031249997], [-58.30888671874999, -33.08291015625001], [-58.37597656249997, -33.071875], [-58.424462890624994, -33.11152343749998], [-58.45483398437497, -33.28593749999999], [-58.54721679687498, -33.66347656249998], [-58.53056640624996, -33.75302734375002], [-58.45659179687499, -33.898339843749966], [-58.42949218749996, -33.99091796875], [-58.40903320312498, -34.06074218750001], [-58.392480468749966, -34.192968750000034], [-58.435498046874955, -34.252539062500006], [-58.475244140624966, -34.26298828125], [-58.52548828124998, -34.29619140625002], [-58.466210937499994, -34.457421875], [-58.41894531249994, -34.53164062500002], [-58.28334960937494, -34.68349609375005], [-57.76357421875002, -34.89453124999996], [-57.54785156250003, -35.018945312499994], [-57.303662109374926, -35.188476562499986], [-57.170654296875, -35.3625], [-57.15888671875001, -35.505957031250006], [-57.35390624999994, -35.72031249999998], [-57.37548828125, -35.900292968749966], [-57.33544921875, -36.026757812499966], [-57.26499023437495, -36.144140625], [-57.07617187499994, -36.296777343749994], [-56.937158203124966, -36.352539062499986], [-56.74946289062501, -36.346484375], [-56.717382812500034, -36.389062499999966], [-56.698095703125006, -36.42646484375004], [-56.66826171874999, -36.73525390624998], [-56.67202148437494, -36.85126953124998], [-56.72714843749998, -36.95771484375], [-57.08769531249999, -37.44638671874999], [-57.39575195312494, -37.74462890625], [-57.507275390624926, -37.90927734374998], [-57.546972656250034, -38.085644531250026], [-57.64560546874995, -38.16962890624998], [-58.17919921874994, -38.435839843750045], [-59.007226562499966, -38.67333984375003], [-59.67626953124994, -38.79667968750002], [-59.82832031250001, -38.83818359375003], [-60.90395507812494, -38.973925781249974], [-61.112207031249994, -38.99296875000003], [-61.38286132812499, -38.980859374999966], [-61.60253906249997, -38.99882812499999], [-61.84790039062497, -38.961816406249994], [-62.06689453125, -38.91914062500001], [-62.18925781249996, -38.81328125000002], [-62.33476562499993, -38.80009765625], [-62.374462890624955, -38.85292968750002], [-62.303613281249994, -38.98808593750002], [-62.33808593749998, -39.1505859375], [-62.29506835937502, -39.24326171874996], [-62.209082031250006, -39.261816406250006], [-62.12646484374997, -39.30976562500001], [-62.053662109374955, -39.373828125], [-62.179345703124994, -39.38046875000002], [-62.13056640624998, -39.43154296874995], [-62.076806640624966, -39.46152343750002], [-62.08276367187503, -39.568359375000014], [-62.131542968749926, -39.82539062499998], [-62.25395507812499, -39.88046875], [-62.28691406249996, -39.89531250000002], [-62.32397460937497, -39.950683593750014], [-62.40185546875003, -40.19658203125002], [-62.427001953125, -40.355957031249986], [-62.39360351562493, -40.458789062499974], [-62.24633789062494, -40.674609374999974], [-62.30185546874998, -40.8146484375], [-62.39501953124997, -40.89082031249997], [-62.797998046874994, -41.04716796875002], [-62.95903320312493, -41.10966796875006], [-63.212841796874955, -41.15244140624998], [-63.621777343749955, -41.15976562499996], [-63.77299804687493, -41.15], [-64.12319335937497, -41.0078125], [-64.38344726562497, -40.92246093750002], [-64.62148437499997, -40.85449218750003], [-64.85297851562495, -40.81376953124999], [-64.81987304687496, -40.79326171874999], [-64.80439453125001, -40.75654296874997], [-64.86948242187503, -40.735839843750014], [-64.91689453125002, -40.73134765624998], [-65.06943359375, -40.805273437500034], [-65.13339843749998, -40.88066406250003], [-65.15185546875, -40.94697265625004], [-65.15498046874993, -41.10566406250004], [-65.12788085937501, -41.23876953124997], [-65.01826171874995, -41.56689453125003], [-65.00703124999998, -41.745117187500014], [-65.05908203125003, -41.96992187499998], [-64.98637695312496, -42.102050781249986], [-64.89804687499998, -42.16181640625], [-64.69951171874996, -42.22080078125002], [-64.62246093749997, -42.261035156250045], [-64.53774414062494, -42.25458984374998], [-64.51171874999997, -42.27021484374997], [-64.52421875, -42.29921875], [-64.57412109375, -42.35595703125003], [-64.57099609374998, -42.416015625], [-64.42041015625003, -42.43378906249998], [-64.26459960937498, -42.4216796875], [-64.10087890624993, -42.395117187500006], [-64.06220703124998, -42.35341796874995], [-64.06118164062494, -42.266113281250014], [-64.2529296875, -42.25078125], [-64.228515625, -42.21826171874996], [-64.083251953125, -42.18281250000001], [-63.89287109374993, -42.12460937499996], [-63.795556640624994, -42.113867187500006], [-63.72949218749994, -42.15292968749996], [-63.68476562499998, -42.18867187499997], [-63.6298828125, -42.28271484375003], [-63.59589843750001, -42.40654296875003], [-63.59443359374998, -42.55556640625001], [-63.61733398437502, -42.695800781249986], [-63.644482421874955, -42.74570312500002], [-63.69248046874998, -42.80527343749999], [-64.03476562499998, -42.88125], [-64.13066406249996, -42.86142578124998], [-64.21992187499995, -42.75556640625], [-64.24794921874997, -42.64609374999998], [-64.32426757812499, -42.57226562499996], [-64.48784179687499, -42.51347656250006], [-64.65048828125, -42.53144531249998], [-64.81196289062495, -42.63320312500002], [-64.97070312499997, -42.66630859375002], [-65.02690429687496, -42.75888671874996], [-64.62919921875002, -42.90898437499999], [-64.441552734375, -42.95068359374996], [-64.38037109374994, -42.949218750000014], [-64.31914062499999, -42.968945312500026], [-64.37568359374998, -43.024609375], [-64.43222656250003, -43.059179687500034], [-64.71523437499997, -43.135546875000045], [-64.83994140624998, -43.18886718749998], [-64.98554687499995, -43.29355468749999], [-65.18974609374999, -43.522070312500006], [-65.25234374999997, -43.571875], [-65.28359375000002, -43.62998046874996], [-65.30468749999997, -43.7875], [-65.23857421874999, -44.04873046875001], [-65.30839843750002, -44.158203125000014], [-65.26552734375, -44.2796875], [-65.28984375, -44.36074218749998], [-65.36127929687495, -44.47734375000002], [-65.64760742187502, -44.661425781250045], [-65.69833984374995, -44.79619140625006], [-65.59912109375, -44.87558593749998], [-65.605712890625, -44.94501953125], [-65.63876953125, -45.0078125], [-65.75771484374997, -45.007128906250045], [-66.19013671874995, -44.96474609375002], [-66.34775390625, -45.03359375], [-66.49360351562498, -45.11757812499998], [-66.533447265625, -45.1578125], [-66.58505859374995, -45.182910156249974], [-66.88247070312497, -45.22763671875002], [-66.94140625, -45.25732421875003], [-67.25761718750002, -45.57724609375002], [-67.39301757812498, -45.77558593750001], [-67.556640625, -45.97011718750002], [-67.59956054687495, -46.05253906250003], [-67.60888671875, -46.166796875000045], [-67.58608398437497, -46.269531250000014], [-67.56337890624997, -46.34541015625001], [-67.5064453125, -46.44277343749995], [-67.38662109375, -46.55380859375002], [-66.77685546874994, -47.005859375], [-66.65039062500003, -47.045312499999966], [-65.99853515625, -47.09375], [-65.853662109375, -47.156738281250014], [-65.76909179687499, -47.25673828124995], [-65.73808593749999, -47.34492187499998], [-65.77539062500003, -47.56835937500003], [-65.81430664062495, -47.63818359374996], [-65.88632812499998, -47.7015625], [-66.04062, -47.783300781250034], [-66.22524414062502, -47.826757812500006], [-66.17236328125, -47.85761718749998], [-66.09736328124998, -47.85322265624997], [-65.93422851562497, -47.826757812500006], [-65.863671875, -47.85322265624997], [-65.81005859374997, -47.941113281250026], [-65.91215820312499, -47.97675781250001], [-65.94340820312496, -48.019335937499974], [-66.0171875, -48.084277343749974], [-66.39335937499999, -48.34238281249998], [-66.59628906250003, -48.41953124999998], [-66.7828125, -48.522949218749986], [-67.03310546875002, -48.627734375000024], [-67.13095703124998, -48.68789062500002], [-67.26333007812502, -48.81425781250001], [-67.46630859375, -48.95175781250004], [-67.68486328125002, -49.2466796875], [-67.69370117187495, -49.30400390625004], [-67.66196289062498, -49.3421875], [-67.78349609374996, -49.85888671875002], [-67.82597656249999, -49.91962890625005], [-67.91396484374997, -49.98447265625003], [-68.14565429687502, -50.09140624999996], [-68.2572265625, -50.104589843749984], [-68.404638671875, -50.04267578124998], [-68.487890625, -49.97792968750002], [-68.56928710937498, -49.86699218749998], [-68.66757812500003, -49.75253906250003], [-68.67265624999999, -49.793457031250014], [-68.63847656249996, -49.86298828124997], [-68.66162109374997, -49.93574218750005], [-68.91298828125002, -49.96875], [-68.97958984375, -50.003027343749984], [-68.75268554687494, -49.98769531249997], [-68.59794921874996, -50.00947265624997], [-68.53256835937498, -50.03613281249998], [-68.47373046874998, -50.09140624999996], [-68.42187, -50.15791015625001], [-68.46542968749998, -50.19472656249996], [-68.58935546875, -50.22519531250004], [-68.749853515625, -50.28115234374998], [-68.939453125, -50.382324218749986], [-69.04477539062495, -50.49912109374998], [-69.09018554687498, -50.583105468750034], [-69.14140625000002, -50.752539062500006], [-69.15498046874993, -50.864453124999976], [-69.23515625000002, -50.95058593750003], [-69.35859374999993, -51.028125], [-69.35175781249995, -51.04580078124997], [-69.26796874999994, -51.00615234374998], [-69.20102539062498, -50.99365234375001], [-69.14350585937498, -51.09697265625001], [-69.06572265624996, -51.30351562499999], [-69.02958984374996, -51.44648437499998], [-69.03530273437497, -51.48896484375002], [-69.05830078124995, -51.547167968749974], [-69.21806640624999, -51.56123046875], [-69.36054687499998, -51.559472656249994], [-69.46542968750003, -51.58447265625003], [-69.40908203125002, -51.61025390624995], [-69.31303710937499, -51.601074218750036], [-69.18012695312498, -51.66230468749998], [-69.03251953124993, -51.63623046875], [-68.96533203125003, -51.67714843749999], [-68.91679687499999, -51.71464843749999], [-68.69082031249997, -52.01308593749995], [-68.493505859375, -52.19755859375005], [-68.39375, -52.30703124999997], [-68.443359375, -52.35664062500004], [-68.46098632812496, -52.290429687499966], [-68.58979492187498, -52.273339843749945], [-68.71518554687495, -52.255468750000034], [-68.92456054687497, -52.20810546874998], [-69.20620117187497, -52.13613281249997], [-69.48842773437502, -52.13613281249997], [-69.71259765624993, -52.07539062500003], [-69.96025390624993, -52.00820312500002], [-70.48286132812501, -52.00224609375005], [-70.94316406249999, -51.99814453125001], [-71.41474609374995, -51.993945312500045], [-71.71660156249999, -51.99130859375004], [-71.91865234374995, -51.98955078125004], [-71.97109374999997, -51.96416015625002], [-71.95346679687503, -51.88037109375], [-72.02841796875003, -51.81865234375004], [-72.13696289062503, -51.74404296875003], [-72.26899414062501, -51.69111328124999], [-72.33452148437493, -51.62031250000005], [-72.40766601562501, -51.54082031250002], [-72.36640624999995, -51.47031250000004], [-72.30322265624997, -51.29892578125003], [-72.30185546874995, -51.22333984375], [-72.35917968749999, -51.17041015624996], [-72.37680664062503, -51.09541015625005], [-72.35917968749999, -51.06015625], [-72.307373046875, -51.033398437500026], [-72.27631835937498, -50.910253906249984], [-72.30063476562498, -50.78955078124999], [-72.34023437499997, -50.68183593749999], [-72.39257812499997, -50.63427734374998], [-72.46015624999995, -50.61171875], [-72.50981445312496, -50.607519531250034], [-72.62041015625002, -50.64765625000004], [-72.80361328124994, -50.637695312499964], [-72.86591796874993, -50.653125], [-72.95556640625, -50.69648437500004], [-73.08237304687498, -50.7603515625], [-73.15292968749998, -50.73828125000003], [-73.17451171875001, -50.67001953124998], [-73.22163085937493, -50.61074218749998], [-73.251611328125, -50.558496093749994], [-73.27416992187497, -50.47255859374999], [-73.31171874999998, -50.361914062500006], [-73.38662109374997, -50.23115234375001], [-73.50126953124996, -50.125292968750024], [-73.50771484374994, -50.03027343750003], [-73.52890625, -49.91093750000005], [-73.47041015624998, -49.79453124999996], [-73.50454101562502, -49.698046875000024], [-73.57626953124998, -49.582910156250016], [-73.55419921875, -49.463867187500014], [-73.48364257812503, -49.397656250000026], [-73.46157226562497, -49.31386718750001], [-73.13525390625, -49.30068359374999], [-73.14887695312493, -49.18798828125003], [-73.09458007812498, -49.096875], [-73.03364257812501, -49.014355468750004], [-72.98173828124999, -48.97675781249998], [-72.86542968750001, -48.94394531249996], [-72.72846679687501, -48.896289062500024], [-72.65126953125, -48.84160156249998], [-72.61440429687494, -48.79287109375], [-72.59174804687495, -48.72968750000001], [-72.5859375, -48.6625], [-72.60839843749997, -48.51933593750006], [-72.582861328125, -48.47539062499999], [-72.49814453124998, -48.41738281249998], [-72.35473632812497, -48.36582031250005], [-72.29301757812502, -48.22910156249999], [-72.32832031250001, -48.11005859374998], [-72.40791015624998, -48.01591796874999], [-72.50908203124999, -47.973339843750026], [-72.517919921875, -47.87636718749998], [-72.47221679687502, -47.78417968750003], [-72.41259765624994, -47.685546875000014], [-72.34150390624995, -47.57207031249999], [-72.34594726562497, -47.49267578124997], [-72.28291015625001, -47.44628906250003], [-72.10341796875002, -47.342773437499986], [-72.04169921874998, -47.241406250000026], [-71.97851562499997, -47.213867187500014], [-71.90498046875001, -47.201660156250014], [-71.900537109375, -47.144335937499974], [-71.95424804687502, -47.0875], [-71.96298828125, -47.01601562500004], [-71.95664062499998, -46.936816406249974], [-71.94023437499999, -46.83125], [-71.85644531249997, -46.79160156249996], [-71.73271484374999, -46.70585937499999], [-71.69965820312501, -46.6513671875], [-71.69521484375, -46.57841796875006], [-71.73129882812498, -46.42783203125002], [-71.76210937499994, -46.31982421874996], [-71.77763671874999, -46.27998046875001], [-71.83413085937497, -46.20673828125001], [-71.87568359374998, -46.160546875], [-71.80927734374995, -46.10273437500004], [-71.68447265624994, -46.041894531249994], [-71.63154296874998, -45.95371093749998], [-71.68007812500002, -45.878710937499974], [-71.750634765625, -45.83906249999997], [-71.77265624999995, -45.724414062499974], [-71.74619140624998, -45.57890625], [-71.69331054687495, -45.53476562499998], [-71.50810546874999, -45.512695312500014], [-71.49042968749993, -45.43769531250001], [-71.34931640624995, -45.33193359374995], [-71.35375976562497, -45.23046874999997], [-71.44345703124995, -45.16826171875], [-71.53129882812499, -45.067871093749986], [-71.5962890625, -44.97919921875004], [-71.81235351562498, -44.9306640625], [-72.04169921874998, -44.90419921875004], [-72.07250976562494, -44.82041015625002], [-72.06372070312503, -44.771875], [-71.95703124999994, -44.791503906249986], [-71.78281249999998, -44.77441406249997], [-71.65166015625002, -44.77041015624995], [-71.56040039062498, -44.76201171875002], [-71.45517578125003, -44.74980468750002], [-71.35815429687497, -44.78515625000003], [-71.26113281250002, -44.763085937499966], [-71.22148437499993, -44.63076171875001], [-71.15971679687496, -44.56025390625004], [-71.15087890624994, -44.494042968749966], [-71.21259765624998, -44.44121093750003], [-71.32573242187496, -44.42490234374999], [-71.82001953124993, -44.38310546875], [-71.83505859374998, -44.33017578124998], [-71.83076171874998, -44.24140625000001], [-71.812109375, -44.15078125000002], [-71.81235351562498, -44.10605468749996], [-71.7671875, -44.06669921875003], [-71.716162109375, -43.98447265624998], [-71.68007812500002, -43.92958984374998], [-71.71596679687497, -43.85839843749996], [-71.79472656250002, -43.75322265625003], [-71.73740234374998, -43.7046875], [-71.732763671875, -43.64677734375002], [-71.750634765625, -43.59013671875002], [-71.83242187499997, -43.527148437499974], [-71.90498046875001, -43.44013671875001], [-71.90498046875001, -43.34755859374998], [-71.82021484374997, -43.322949218750026], [-71.76386718749995, -43.29462890625004], [-71.750634765625, -43.237304687499986], [-71.781494140625, -43.16679687500002], [-71.89858398437494, -43.14531249999999], [-72.05468749999994, -43.10195312499995], [-72.102392578125, -43.065625], [-72.14643554687498, -42.990039062499974], [-72.11362304687498, -42.77675781249995], [-72.13002929687494, -42.648242187499974], [-72.14370117187497, -42.57714843749997], [-72.10541992187498, -42.522460937500014], [-72.05346679687497, -42.473242187500034], [-72.078125, -42.358496093750006], [-72.12460937499998, -42.298339843750014], [-72.10820312499993, -42.25185546874995], [-72.06440429687498, -42.20537109374999], [-72.026123046875, -42.147949218750014], [-71.99331054687497, -42.134277343749986], [-71.94409179687497, -42.167089843750006], [-71.86079101562498, -42.147851562499994], [-71.76093749999998, -42.101464843749966], [-71.75, -42.04677734375001], [-71.77001953124997, -41.968554687499974], [-71.84448242187503, -41.771972656249986], [-71.91127929687497, -41.650390624999986], [-71.89760742187502, -41.606640625000054], [-71.87114257812496, -41.560546874999986], [-71.89218749999998, -41.39335937500003], [-71.88559570312498, -41.29238281249998], [-71.88071289062495, -40.99462890624997], [-71.873046875, -40.892968749999966], [-71.94135742187495, -40.789160156250034], [-71.93212890624994, -40.69169921874999], [-71.88378906249994, -40.620605468749986], [-71.83852539062497, -40.524414062500014], [-71.80463867187498, -40.43916015624997], [-71.76914062499995, -40.400878906249986], [-71.70898437499997, -40.381738281249994], [-71.69531250000003, -40.33525390625003], [-71.72265625, -40.29970703124998], [-71.80058593749996, -40.24433593749998], [-71.81831054687493, -40.17666015624995], [-71.80195312499998, -40.124707031250026], [-71.763671875, -40.09462890625004], [-71.70439453124999, -40.094921875], [-71.65976562499998, -40.02080078125], [-71.64711914062497, -39.929199218749986], [-71.63789062499995, -39.88681640624998], [-71.67207031249998, -39.83330078124999], [-71.69682617187496, -39.70703125000003], [-71.71992187499995, -39.63525390624997], [-71.69257812499998, -39.60517578124997], [-71.654296875, -39.59423828124996], [-71.58701171874998, -39.61113281250003], [-71.53945312499997, -39.60244140624995], [-71.53125, -39.56416015624997], [-71.52578124999994, -39.52314453125004], [-71.50776367187501, -39.495214843750034], [-71.46538085937499, -39.40234375000004], [-71.42001953124998, -39.287207031250034], [-71.40937, -39.205957031249994], [-71.42558593749996, -38.98564453125006], [-71.40156249999995, -38.93505859374996], [-71.35317382812494, -38.88886718749997], [-71.28574218749998, -38.84541015625], [-71.19726562499997, -38.809375], [-71.08710937500001, -38.757519531250026], [-70.95161132812493, -38.73847656249997], [-70.89692382812498, -38.681054687499994], [-70.858642578125, -38.60449218750003], [-70.84765625, -38.541601562500006], [-70.899658203125, -38.497851562499974], [-70.96796874999998, -38.44589843749996], [-71.00048828124994, -38.31484375], [-71.0181640625, -38.19394531249996], [-71.028173828125, -38.041210937500026], [-71.09619140625, -37.90996093750002], [-71.16757812499998, -37.76230468749996], [-71.18671874999995, -37.63105468750004], [-71.16284179687497, -37.55917968749996], [-71.13481445312496, -37.4451171875], [-71.16489257812495, -37.39326171875001], [-71.20039062499998, -37.300292968749986], [-71.16347656250002, -37.22744140624998], [-71.118408203125, -37.114355468750034], [-71.12382812499993, -37.05693359374996], [-71.15937, -36.92021484375], [-71.19218750000002, -36.84365234375004], [-71.15937, -36.76162109375002], [-71.10742187499997, -36.68505859374997], [-71.06640624999997, -36.64404296874996], [-71.07324218750003, -36.57802734375001], [-71.05551757812498, -36.52373046874996], [-70.97792968749997, -36.4873046875], [-70.90512695312498, -36.41992187499996], [-70.85317382812497, -36.41171874999996], [-70.79028320312503, -36.41171874999996], [-70.74926757812503, -36.39257812499997], [-70.73286132812495, -36.340625], [-70.72192382812494, -36.283203124999986], [-70.62187, -36.21191406250003], [-70.56337890625, -36.14638671875001], [-70.45673828124993, -36.132714843749966], [-70.40478515625, -36.06171874999998], [-70.40366210937495, -35.97050781249996], [-70.41572265625001, -35.87851562499996], [-70.38017578124996, -35.771875], [-70.41972656249993, -35.60917968749999], [-70.41572265625001, -35.52304687500002], [-70.45673828124993, -35.45195312500002], [-70.44853515624993, -35.375390624999966], [-70.47041015624995, -35.32617187499997], [-70.53232421874995, -35.307910156249974], [-70.55517578125, -35.24687], [-70.52509765625001, -35.216796874999986], [-70.46660156249999, -35.193652343749974], [-70.39316406250003, -35.146875], [-70.338134765625, -34.92177734375001], [-70.31210937499995, -34.854980468749986], [-70.28676757812494, -34.77451171875002], [-70.28994140624997, -34.732812499999966], [-70.25468749999999, -34.672656249999974], [-70.21069335937497, -34.58125], [-70.14125976562497, -34.492871093750026], [-70.10146484375002, -34.43203125], [-70.06298828125, -34.35], [-70.05205078124999, -34.30078124999997], [-70.00283203125, -34.27626953125004], [-69.94633789062496, -34.269921875], [-69.87978515625, -34.25439453125003], [-69.85244140625, -34.224316406250026], [-69.85737304687495, -34.180468749999974], [-69.86152343749998, -34.08359375000005], [-69.88149414062497, -33.92978515624998], [-69.89433593750002, -33.73134765625005], [-69.88256835937503, -33.60097656250004], [-69.83876953124997, -33.46972656250004], [-69.79775390624997, -33.398632812500026], [-69.80869140624998, -33.3439453125], [-69.81962890624999, -33.28378906249999], [-69.89619140624995, -33.25097656249997], [-69.96904296874996, -33.27939453124999], [-70.01982421874999, -33.27148437499997], [-70.08486328125002, -33.20175781249998], [-70.10400390625, -33.12792968750004], [-70.09306640624999, -33.02675781250004], [-70.04213867187502, -32.963671874999974], [-70.02197265625, -32.88457031250002], [-70.05205078124999, -32.85996093749998], [-70.11616210937501, -32.80742187500002], [-70.17695312499995, -32.62607421875002], [-70.16962890624995, -32.471679687500014], [-70.22978515624996, -32.4306640625], [-70.2578125, -32.30996093750002], [-70.32001953124995, -32.26669921874999], [-70.34462890625, -32.17646484375], [-70.36376953125, -32.08349609374997], [-70.35556640625, -32.04238281250004], [-70.29091796875, -32.031054687500045], [-70.25439453125, -31.957714843750026], [-70.28173828124997, -31.91660156249999], [-70.33095703124997, -31.88105468750004], [-70.39384765624999, -31.88378906249997], [-70.45014648437501, -31.841894531249963], [-70.52563476562503, -31.66640625], [-70.585205078125, -31.569433593749963], [-70.56640624999997, -31.427929687499997], [-70.5546875, -31.317382812499957], [-70.529052734375, -31.22285156249997], [-70.51958007812493, -31.1484375], [-70.47309570312498, -31.112792968750014], [-70.42939453124995, -31.129296875], [-70.38837890624995, -31.121093750000014], [-70.35058593749997, -31.06044921875001], [-70.30908203124994, -31.02265625000004], [-70.31181640624999, -30.992578125000037], [-70.33642578125003, -30.959765625000017], [-70.34814453125, -30.902343749999957], [-70.31923828125, -30.83398437499997], [-70.26938476562495, -30.677246093750014], [-70.19394531250003, -30.50468750000003], [-70.16142578124999, -30.44023437499996], [-70.16962890624995, -30.385546875], [-70.15322265625, -30.360937499999963], [-70.10200195312495, -30.388281250000034], [-69.95634765624996, -30.35820312500003], [-69.90712890624997, -30.28164062499998], [-69.88803710937498, -30.21328125], [-69.84428710937493, -30.175], [-69.86337890625, -30.12031249999997], [-69.92353515625001, -30.10390625], [-69.95996093749997, -30.078320312500026], [-69.94545898437494, -30.01640625000003], [-69.92412109374996, -29.87402343749997], [-69.92763671874997, -29.76914062500002], [-69.98261718749998, -29.54541015625], [-70.02680664062501, -29.324023437500017], [-69.99560546874994, -29.25], [-69.90034179687498, -29.148828125000023], [-69.82788085937497, -29.10322265624997], [-69.81484375, -29.045507812500034], [-69.74316406249994, -28.783886718750026], [-69.73491210937496, -28.64111328124997], [-69.68789062499997, -28.56201171875003], [-69.65693359374995, -28.413574218749986], [-69.52714843749999, -28.28564453125003], [-69.4888671875, -28.200878906249997], [-69.4369140625, -28.192675781250017], [-69.40957031250002, -28.16533203125003], [-69.34072265624994, -28.070800781249957], [-69.251220703125, -27.97363281249997], [-69.17441406249998, -27.924707031250037], [-69.1552734375, -27.848144531249986], [-69.11850585937498, -27.743554687499994], [-69.04218749999995, -27.570019531249997], [-68.99941406249994, -27.44902343750003], [-68.94199218749998, -27.40517578124998], [-68.87509765625003, -27.24667968750002], [-68.84633789062494, -27.153710937499994], [-68.76977539062497, -27.11542968750001], [-68.70961914062497, -27.104492187500014], [-68.652197265625, -27.148339843749966], [-68.59208984375002, -27.140039062499966], [-68.53735351562497, -27.085351562500023], [-68.40537109374998, -27.04814453124999], [-68.34599609374996, -27.02792968750005], [-68.31865234374999, -26.973242187500006], [-68.31865234374999, -26.877539062499963], [-68.37333984374993, -26.806445312500045], [-68.48510742187497, -26.670312500000023], [-68.58115234375, -26.518359374999974], [-68.59160156249999, -26.47041015624997], [-68.59218749999994, -26.418066406249963], [-68.57578124999998, -26.351953125], [-68.52983398437493, -26.276953125], [-68.41450195312498, -26.153710937500023], [-68.4267578125, -26.06542968749997], [-68.51083984374998, -25.74101562499996], [-68.54189453125, -25.65156250000004], [-68.60029296874998, -25.48564453124999], [-68.59208984375002, -25.420019531250034], [-68.54082031249996, -25.23671875], [-68.49633789062494, -25.16298828124998], [-68.43071289062499, -25.149316406250037], [-68.39521484374995, -25.124707031249997], [-68.38422851562495, -25.091894531249977], [-68.42802734374999, -25.050976562499983], [-68.44711914062498, -24.998925781250037], [-68.46630859374997, -24.925195312500023], [-68.52705078124998, -24.899218749999974], [-68.56201171875, -24.83769531249996], [-68.56201171875, -24.74736328125003], [-68.50727539062495, -24.62978515624998], [-68.44711914062498, -24.596972656250045], [-68.42255859374993, -24.54511718750004], [-68.35810546874995, -24.497265624999983], [-68.29951171875001, -24.46035156250001], [-68.25029296875002, -24.391992187500023], [-68.04736328124997, -24.308300781250026], [-67.88623046875, -24.243359375000026], [-67.57177734374997, -24.118945312500003], [-67.35620117187503, -24.033789062499963], [-67.335595703125, -23.974804687500026], [-67.31914062499993, -23.93466796875002], [-67.219140625, -23.63398437499997], [-67.08974609375002, -23.24511718749997], [-67.00878906249994, -23.00136718750005], [-67.19487304687493, -22.821679687500037], [-67.16191406249996, -22.773828124999966], [-67.05541992187494, -22.650878906249957], [-67.033544921875, -22.55224609375003], [-66.99111328125, -22.509863281250006], [-66.80029296875003, -22.40966796875003], [-66.76748046875, -22.34306640624996], [-66.75063476562502, -22.26933593750003], [-66.71171874999999, -22.216308593749986], [-66.63901367187503, -22.205371093749974], [-66.50698242187494, -22.158398437499997], [-66.36518554687501, -22.113769531249957], [-66.32246093750001, -22.053125], [-66.28212890624997, -21.94746093750001], [-66.24760742187496, -21.83046875], [-66.22016601562495, -21.802539062499974], [-66.174658203125, -21.805664062499986], [-66.09858398437495, -21.83505859375002], [-66.05859375, -21.87949218750002], [-65.86015624999999, -22.019726562499983], [-65.77104492187493, -22.099609375000014]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Arg.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;ARG&quot;, &quot;adm0_a3_is&quot;: &quot;ARG&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;ARG&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Argentina&quot;, &quot;brk_a3&quot;: &quot;ARG&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Argentina&quot;, &quot;continent&quot;: &quot;South America&quot;, &quot;economy&quot;: &quot;5. Emerging region: G20&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Argentine Republic&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 573900, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Argentina&quot;, &quot;gu_a3&quot;: &quot;ARG&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;3. Upper middle income&quot;, &quot;iso_a2&quot;: &quot;AR&quot;, &quot;iso_a3&quot;: &quot;ARG&quot;, &quot;iso_n3&quot;: &quot;032&quot;, &quot;labelrank&quot;: 2, &quot;lastcensus&quot;: 2010, &quot;level&quot;: 2, &quot;long_len&quot;: 9, &quot;mapcolor13&quot;: 13, &quot;mapcolor7&quot;: 3, &quot;mapcolor8&quot;: 1, &quot;mapcolor9&quot;: 3, &quot;name&quot;: &quot;Argentina&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 9, &quot;name_long&quot;: &quot;Argentina&quot;, &quot;name_sort&quot;: &quot;Argentina&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 40913584, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AR&quot;, &quot;region_un&quot;: &quot;Americas&quot;, &quot;region_wb&quot;: &quot;Latin America \\u0026 Caribbean&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;ARG&quot;, &quot;sovereignt&quot;: &quot;Argentina&quot;, &quot;su_a3&quot;: &quot;ARG&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;South America&quot;, &quot;subunit&quot;: &quot;Argentina&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;032&quot;, &quot;wb_a2&quot;: &quot;AR&quot;, &quot;wb_a3&quot;: &quot;ARG&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[45.55234375000006, 40.61606445312506], [45.51435546875004, 40.59956054687498], [45.47880859375002, 40.60698242187499], [45.47880859375002, 40.648339843749966], [45.504492187500006, 40.664843750000045], [45.53417968750003, 40.664013671874955], [45.562304687500074, 40.64916992187506], [45.55234375000006, 40.61606445312506]]], [[[45.08476562500002, 41.195458984374966], [45.15234375000003, 41.175146484375006], [45.188574218750006, 41.14741210937504], [45.19023437500002, 41.12636718750002], [45.070703125, 41.10083007812506], [45.06259765625006, 41.08813476562503], [45.07050781250004, 41.075585937499966], [45.106054687500006, 41.06933593750003], [45.27343750000003, 41.00625], [45.36894531250002, 41.00488281250003], [45.41914062500004, 40.985693359375034], [45.444238281249994, 40.947998046875], [45.52402343750006, 40.89672851562503], [45.5875, 40.846923828125], [45.59140625, 40.829736328124966], [45.579394531250074, 40.80449218749999], [45.40136718749997, 40.707128906250034], [45.37890624999997, 40.67358398437506], [45.37617187500004, 40.63808593750002], [45.45439453125002, 40.532373046874966], [45.5695312500001, 40.41684570312506], [45.73574218750005, 40.32910156250003], [45.96464843750002, 40.233789062499966], [45.96757812500002, 40.17480468750003], [45.93125, 40.104687499999955], [45.90009765625004, 40.05708007812504], [45.8859375000001, 40.024853515624955], [45.8581054687501, 40.011279296875045], [45.63017578125002, 40.01420898437502], [45.595996093750074, 40.002832031249994], [45.58095703125005, 39.98901367187503], [45.57978515625004, 39.9775390625], [45.6618164062501, 39.956201171874994], [45.789648437500006, 39.88110351562497], [45.863183593749994, 39.808349609375], [45.93994140624997, 39.77656250000001], [46.02587890624997, 39.71855468749999], [46.094824218750006, 39.664453125], [46.202050781249994, 39.59448242187503], [46.32167968750005, 39.617431640625], [46.48144531249997, 39.55517578125003], [46.48808593750002, 39.512841796874994], [46.478125, 39.47509765625006], [46.3776367187501, 39.43388671874999], [46.365136718749994, 39.41679687499999], [46.36523437500003, 39.402490234374994], [46.37841796874997, 39.382275390624955], [46.437304687500074, 39.34853515625002], [46.506640625000074, 39.298535156249955], [46.584765625000074, 39.22368164062499], [46.55, 39.20141601562497], [46.477148437500006, 39.19819335937504], [46.42031250000005, 39.207373046875034], [46.400292968749994, 39.1921875], [46.40146484375006, 39.16767578125004], [46.47539062500002, 39.11088867187502], [46.48984375, 39.069433593750006], [46.48671875, 38.997460937499994], [46.490625, 38.90668945312498], [46.31777343750005, 38.912646484375045], [46.1701171875001, 38.86904296875002], [46.1144531250001, 38.877783203125034], [46.07744140625002, 38.95488281250002], [46.04589843749997, 39.01752929687498], [45.9518554687501, 39.178125], [45.977441406249994, 39.24389648437503], [45.925, 39.28193359375004], [45.798632812500074, 39.350195312500006], [45.76630859375004, 39.37846679687499], [45.78417968749997, 39.41723632812497], [45.79648437500006, 39.488134765625034], [45.78447265625002, 39.54560546875001], [45.75048828125003, 39.56293945312501], [45.68740234375005, 39.56406250000006], [45.610742187499994, 39.5498046875], [45.456835937500074, 39.494482421875006], [45.34990234375002, 39.529882812500006], [45.2882812500001, 39.565576171874994], [45.252539062500006, 39.59545898437506], [45.17255859375004, 39.57060546874996], [45.15283203125003, 39.58266601562502], [45.14863281250004, 39.65659179687498], [45.12460937500006, 39.69633789062499], [45.07646484375002, 39.742822265624966], [45.03164062500005, 39.76513671874997], [44.86718750000003, 39.71914062500002], [44.76826171875004, 39.70351562500005], [44.733789062499994, 39.746484375], [44.56044921875005, 39.887597656249966], [44.39960937500004, 39.995751953124966], [44.28925781250004, 40.040380859375006], [44.17802734375002, 40.035742187500034], [44.00537109375003, 40.01411132812498], [43.941992187500006, 40.023144531249955], [43.79169921875004, 40.07026367187498], [43.66621093750004, 40.12636718750002], [43.68330078125004, 40.14965820312497], [43.70986328125005, 40.16650390625003], [43.678125, 40.239306640625045], [43.60839843749997, 40.35659179687505], [43.615820312500006, 40.39331054687497], [43.59375, 40.44404296875001], [43.56933593750003, 40.48237304687498], [43.667871093749994, 40.574072265625034], [43.71289062499997, 40.64775390625002], [43.72265624999997, 40.71953124999999], [43.6964843750001, 40.79414062500001], [43.63164062500002, 40.929003906250045], [43.59169921875005, 40.96821289062504], [43.51748046875005, 41.00483398437504], [43.45527343750004, 41.06469726562497], [43.43945312500003, 41.10712890625001], [43.491992187500074, 41.11552734375002], [43.64501953124997, 41.11665039062498], [43.79316406250004, 41.131103515625], [43.90917968749997, 41.15898437499999], [44.077246093750006, 41.182519531249994], [44.14648437500003, 41.20336914062497], [44.227343750000074, 41.213330078124955], [44.473046875, 41.191015625000034], [44.56484375000005, 41.20820312499998], [44.84140625, 41.21137695312501], [44.84853515625005, 41.22016601562501], [44.8109375, 41.248583984375045], [44.81132812500002, 41.259375], [44.97587890625002, 41.277490234374966], [45.001367187499994, 41.29096679687498], [45.02294921874997, 41.24570312499998], [45.08476562500002, 41.195458984374966]], [[44.969042968750074, 41.027246093749966], [45.00205078125006, 41.015820312499955], [45.0236328125001, 41.027246093749966], [45.02871093750005, 41.053857421874994], [45.02109375, 41.077978515625006], [44.9943359375001, 41.085595703124966], [44.96142578125003, 41.079248046874994], [44.95888671875005, 41.052636718749994], [44.969042968750074, 41.027246093749966]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Arm.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;ARM&quot;, &quot;adm0_a3_is&quot;: &quot;ARM&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;ARM&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Armenia&quot;, &quot;brk_a3&quot;: &quot;ARM&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Armenia&quot;, &quot;continent&quot;: &quot;Asia&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Republic of Armenia&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 18770, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Armenia&quot;, &quot;gu_a3&quot;: &quot;ARM&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;4. Lower middle income&quot;, &quot;iso_a2&quot;: &quot;AM&quot;, &quot;iso_a3&quot;: &quot;ARM&quot;, &quot;iso_n3&quot;: &quot;051&quot;, &quot;labelrank&quot;: 6, &quot;lastcensus&quot;: 2001, &quot;level&quot;: 2, &quot;long_len&quot;: 7, &quot;mapcolor13&quot;: 10, &quot;mapcolor7&quot;: 3, &quot;mapcolor8&quot;: 1, &quot;mapcolor9&quot;: 2, &quot;name&quot;: &quot;Armenia&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 7, &quot;name_long&quot;: &quot;Armenia&quot;, &quot;name_sort&quot;: &quot;Armenia&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 2967004, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;ARM&quot;, &quot;region_un&quot;: &quot;Asia&quot;, &quot;region_wb&quot;: &quot;Europe \\u0026 Central Asia&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;ARM&quot;, &quot;sovereignt&quot;: &quot;Armenia&quot;, &quot;su_a3&quot;: &quot;ARM&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Western Asia&quot;, &quot;subunit&quot;: &quot;Armenia&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;051&quot;, &quot;wb_a2&quot;: &quot;AM&quot;, &quot;wb_a3&quot;: &quot;ARM&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-170.72626953125, -14.351171875], [-170.76923828125, -14.359765625], [-170.8205078125, -14.312109375], [-170.720849609375, -14.275976562500006], [-170.68916015625, -14.257421875], [-170.568115234375, -14.266796875000011], [-170.640478515625, -14.2822265625], [-170.72626953125, -14.351171875]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Am. Samoa&quot;, &quot;abbrev_len&quot;: 9, &quot;adm0_a3&quot;: &quot;ASM&quot;, &quot;adm0_a3_is&quot;: &quot;ASM&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;ASM&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 1, &quot;admin&quot;: &quot;American Samoa&quot;, &quot;brk_a3&quot;: &quot;ASM&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;American Samoa&quot;, &quot;continent&quot;: &quot;Oceania&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;American Samoa&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 575.3, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;American Samoa&quot;, &quot;gu_a3&quot;: &quot;ASM&quot;, &quot;homepart&quot;: -99, &quot;income_grp&quot;: &quot;3. Upper middle income&quot;, &quot;iso_a2&quot;: &quot;AS&quot;, &quot;iso_a3&quot;: &quot;ASM&quot;, &quot;iso_n3&quot;: &quot;016&quot;, &quot;labelrank&quot;: 4, &quot;lastcensus&quot;: 2010, &quot;level&quot;: 2, &quot;long_len&quot;: 14, &quot;mapcolor13&quot;: 1, &quot;mapcolor7&quot;: 4, &quot;mapcolor8&quot;: 5, &quot;mapcolor9&quot;: 1, &quot;name&quot;: &quot;American Samoa&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 14, &quot;name_long&quot;: &quot;American Samoa&quot;, &quot;name_sort&quot;: &quot;American Samoa&quot;, &quot;note_adm0&quot;: &quot;U.S.A.&quot;, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 65628, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AS&quot;, &quot;region_un&quot;: &quot;Oceania&quot;, &quot;region_wb&quot;: &quot;East Asia \\u0026 Pacific&quot;, &quot;scalerank&quot;: 3, &quot;sov_a3&quot;: &quot;US1&quot;, &quot;sovereignt&quot;: &quot;United States of America&quot;, &quot;su_a3&quot;: &quot;ASM&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Polynesia&quot;, &quot;subunit&quot;: &quot;American Samoa&quot;, &quot;tiny&quot;: 3, &quot;type&quot;: &quot;Dependency&quot;, &quot;un_a3&quot;: &quot;016&quot;, &quot;wb_a2&quot;: &quot;AS&quot;, &quot;wb_a3&quot;: &quot;ASM&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-161.99379882812502, -83.11875], [-162.304931640625, -83.14179687500001], [-163.046533203125, -83.09677734374999], [-163.24213867187495, -83.05966796874998], [-163.34838867187503, -83.02158203125003], [-163.55209960937498, -82.98769531249998], [-163.60175781250004, -82.96855468749999], [-163.60219726562497, -82.92734375000003], [-163.63432617187502, -82.90224609374998], [-163.70390625, -82.879296875], [-163.73530273437498, -82.85683593750005], [-163.795947265625, -82.84267578125001], [-162.798486328125, -82.86484375], [-162.410595703125, -82.89921874999999], [-162.33979492187498, -82.92275390624998], [-161.63515624999997, -83.02695312499998], [-161.82822265625003, -83.04257812499996], [-161.99379882812502, -83.11875]]], [[[-157.9875, -82.10498046875], [-158.07622070312502, -82.11201171875001], [-158.1541015625, -82.05849609375004], [-158.54531250000002, -81.94882812499998], [-158.773193359375, -81.87548828124997], [-158.92631835937502, -81.81865234375002], [-158.988720703125, -81.779296875], [-158.91372070312502, -81.77978515625], [-158.346728515625, -81.90048828124999], [-158.26083984374998, -81.94726562500003], [-157.83457031249998, -82.03076171874997], [-157.9875, -82.10498046875]]], [[[-160.46713867187503, -81.58945312500005], [-160.57099609374995, -81.59785156249998], [-163.25307617187497, -81.482421875], [-163.76606445312504, -81.44482421874997], [-163.89013671875, -81.42363281250002], [-163.93925781249996, -81.40410156250003], [-163.95122070312502, -81.39091796875002], [-163.93002929687503, -81.35214843750002], [-163.86899414062503, -81.32402343749997], [-163.20063476562504, -81.2814453125], [-162.45649414062507, -81.31328125], [-161.55859375, -81.39667968750003], [-160.93789062500002, -81.46347656249996], [-160.61689453125, -81.52207031249999], [-160.48544921875003, -81.5669921875], [-160.46713867187503, -81.58945312500005]]], [[[-153.93046875, -80.03330078125], [-154.1140625, -80.03603515625002], [-154.34882812500004, -80.02607421875004], [-154.52944335937497, -80.00048828124999], [-154.94165039062503, -79.96630859375003], [-155.04477539062498, -79.8998046875], [-155.525341796875, -79.84648437500005], [-155.751171875, -79.82958984374999], [-155.67426757812498, -79.76552734375], [-155.16220703125003, -79.85068359375002], [-154.53510742187498, -79.93554687499999], [-154.02539062499997, -79.98769531250005], [-153.93046875, -80.03330078125]]], [[[-59.73393554687496, -80.344140625], [-59.77373046874999, -80.55810546874999], [-59.77133789062495, -80.65654296875006], [-59.82548828124996, -80.73330078125007], [-59.926367187500006, -80.77431640624998], [-60.124658203124994, -80.84072265625001], [-60.26821289062502, -80.88134765625003], [-60.58281249999999, -80.94814453125005], [-62.023339843749994, -80.8890625], [-62.67050781249995, -80.83427734375003], [-62.940380859374955, -80.76582031250003], [-62.98608398437503, -80.73457031249997], [-63.06752929687502, -80.62744140624999], [-63.143994140624955, -80.59482421875], [-63.714941406250006, -80.61699218749999], [-64.0650390625, -80.65039062499996], [-64.12646484375, -80.66787109375005], [-64.21992187499995, -80.73398437500002], [-64.26826171874993, -80.74853515624997], [-65.20283203125001, -80.607421875], [-66.183740234375, -80.44199218750005], [-66.59140625, -80.3576171875], [-66.73359374999993, -80.31855468750004], [-66.77114257812494, -80.29384765625007], [-66.68110351562498, -80.26044921875001], [-66.58842773437502, -80.23857421874999], [-66.48266601562497, -80.22441406250005], [-66.376953125, -80.22226562500005], [-66.29580078125, -80.23476562500002], [-66.2173828125, -80.258203125], [-66.167626953125, -80.34619140624997], [-66.11547851562494, -80.36123046875002], [-65.98007812499998, -80.38447265625005], [-62.51879882812494, -80.37333984375], [-62.23183593750002, -80.36865234375003], [-61.63330078125003, -80.344140625], [-61.312841796875034, -80.30654296875], [-61.193994140624966, -80.25664062500003], [-61.484765624999966, -80.24384765625001], [-61.59746093750002, -80.20585937499999], [-61.69433593750003, -80.134375], [-61.71684570312499, -80.06933593749997], [-61.684179687500006, -80.0197265625], [-61.30234375, -79.99580078125001], [-61.246240234374966, -79.97832031249999], [-61.34624023437499, -79.95058593750002], [-61.34311523437498, -79.88681640625], [-61.11499023437494, -79.86220703125005], [-61.02631835937501, -79.80888671875003], [-60.578808593749955, -79.74101562500006], [-59.87333984374996, -79.776953125], [-59.70634765624993, -79.87529296875006], [-59.75244140625, -79.93798828125004], [-59.78564453125003, -80.00107421875], [-59.787792968749926, -80.10097656250002], [-59.49814453124998, -80.11503906250005], [-59.40781249999998, -80.15087890624997], [-59.321679687499994, -80.19619140625007], [-59.42661132812498, -80.19765625], [-59.53007812500002, -80.20800781249999], [-59.61240234374998, -80.25546874999998], [-59.683300781249955, -80.31533203125], [-59.73393554687496, -80.344140625]]], [[[-31.118847656249955, -79.79843750000003], [-30.985058593749983, -79.81845703125003], [-30.84082031249997, -79.77128906250002], [-30.861474609375023, -79.72587890624999], [-30.779931640625023, -79.64736328125], [-30.660156249999943, -79.73310546875004], [-29.870898437500017, -79.82324218750003], [-29.614453124999983, -79.90957031250002], [-29.72075195312496, -79.92988281249998], [-29.80009765624996, -79.92597656249998], [-30.029003906249983, -79.93613281250002], [-30.422119140624943, -80.01083984374996], [-30.84443359375001, -79.93847656249997], [-31.59423828125, -79.8876953125], [-31.824121093750023, -79.84951171875005], [-32.00029296874993, -79.732421875], [-31.68041992187497, -79.63427734374999], [-31.604882812499937, -79.64472656249998], [-31.118847656249955, -79.79843750000003]]], [[[-32.34252929687503, -79.67363281250002], [-32.51489257812497, -79.68281250000001], [-32.58325195312497, -79.65830078124999], [-32.50083007812495, -79.59228515624996], [-32.376611328124966, -79.53466796875003], [-32.15, -79.52988281250003], [-31.933447265625006, -79.56787109374996], [-31.956738281249955, -79.60380859374999], [-32.001171874999955, -79.60703125000003], [-32.34252929687503, -79.67363281250002]]], [[[-66.17363281249999, -80.07783203125001], [-66.26718750000003, -80.08144531250005], [-66.31948242187494, -80.07509765625], [-66.36689453125001, -80.05429687500002], [-66.410400390625, -79.97333984375004], [-66.90419921874997, -79.90888671874998], [-66.96235351562498, -79.87265624999996], [-66.99365234374997, -79.79335937500007], [-67.07724609374995, -79.76181640625003], [-67.719140625, -79.62021484374996], [-67.77075195312503, -79.589453125], [-67.80874023437494, -79.5458984375], [-67.68793945312493, -79.52841796875], [-67.43823242187494, -79.56035156250002], [-66.97890625, -79.56865234375002], [-66.88129882812501, -79.58222656250004], [-66.78520507812496, -79.60800781249996], [-66.27377929687495, -79.61201171874998], [-66.01416015625, -79.62441406250002], [-65.87031250000001, -79.7376953125], [-65.57924804687494, -79.77080078124999], [-65.53955078125003, -79.83691406249997], [-65.50444335937499, -79.95429687499998], [-65.89902343749998, -80.04052734374997], [-65.98940429687502, -80.05400390625005], [-66.17363281249999, -80.07783203125001]]], [[[-67.26191406250001, -79.45263671875001], [-67.43432617187494, -79.50117187500004], [-68.16147460937503, -79.47851562499996], [-68.40810546875002, -79.46396484375], [-68.54892578125, -79.43740234375002], [-68.42226562499997, -79.33320312500001], [-68.324365234375, -79.2982421875], [-68.23300781249995, -79.28496093750005], [-68.03256835937498, -79.2271484375], [-67.71416015624993, -79.2140625], [-67.47451171874997, -79.22294921875003], [-67.06865234374999, -79.26845703125007], [-67.17294921875, -79.31152343749996], [-67.23950195312497, -79.32763671875004], [-67.30488281249995, -79.39404296874997], [-67.26191406250001, -79.45263671875001]]], [[[-33.934179687500034, -79.32041015624999], [-34.049951171874994, -79.35712890625001], [-36.48129882812498, -79.29404296875003], [-36.60078124999998, -79.28271484375003], [-36.56596679687499, -79.20878906249999], [-36.23779296875003, -79.195703125], [-36.047998046874994, -79.18115234375004], [-35.790234374999955, -79.14892578124996], [-35.597314453124994, -79.09189453124998], [-35.53466796875003, -79.09003906250004], [-34.39150390625002, -79.22294921875003], [-33.994726562500006, -79.27851562499998], [-33.947167968749994, -79.30537109375004], [-33.934179687500034, -79.32041015624999]]], [[[-159.05292968749995, -79.80742187499999], [-160.30209960937498, -79.84453125000002], [-160.80668945312505, -79.81201171874996], [-161.86552734375, -79.70351562500005], [-163.31723632812498, -79.50478515624998], [-163.71240234375003, -79.44199218749998], [-163.9708984375, -79.38876953124998], [-164.22578124999998, -79.32080078124997], [-164.281640625, -79.24550781250001], [-164.24487304687497, -79.13769531249997], [-164.19951171874996, -79.05078125000003], [-164.125537109375, -78.99531250000001], [-163.81464843749998, -78.92880859374998], [-163.66025390624998, -78.85576171875002], [-163.34531250000003, -78.7798828125], [-163.25610351562497, -78.72207031250004], [-163.12412109374998, -78.71914062500007], [-162.87275390625004, -78.72519531249996], [-162.62158203125, -78.74179687499998], [-162.39003906250002, -78.76015625], [-162.160693359375, -78.79345703125001], [-161.64296874999997, -78.90097656249998], [-161.283447265625, -79.00703125000001], [-160.76440429687503, -79.13164062499999], [-160.24960937500003, -79.27148437499997], [-159.96352539062502, -79.32431640624998], [-159.68408203125003, -79.40244140625], [-159.41879882812498, -79.50810546875005], [-159.36640624999995, -79.54521484375005], [-159.25610351562497, -79.59101562500005], [-159.18969726562503, -79.63730468749998], [-159.11875, -79.67451171875001], [-159.0513671875, -79.69453125000001], [-158.99658203125003, -79.73515625000002], [-159.00957031250002, -79.78046875000001], [-159.05292968749995, -79.80742187499999]]], [[[-70.33408203124998, -79.67988281250004], [-70.55253906249999, -79.68300781250005], [-70.983740234375, -79.67441406249999], [-71.41401367187498, -79.64023437500003], [-71.52578124999994, -79.62363281250003], [-71.68666992187494, -79.56806640625], [-71.73520507812498, -79.53857421875003], [-71.77773437500002, -79.5005859375], [-71.78354492187495, -79.44433593750001], [-71.66748046875003, -79.24570312500005], [-71.45400390624997, -79.12890624999997], [-71.2544921875, -79.05966796874998], [-70.62587890625002, -78.90156250000001], [-70.54399414062493, -78.88369140625002], [-69.971875, -78.80937], [-69.74765624999998, -78.76914062500003], [-69.39824218749993, -78.6861328125], [-67.478515625, -78.3625], [-67.03813476562499, -78.31572265625003], [-66.840234375, -78.34970703125003], [-66.72807617187496, -78.38369140625002], [-66.78701171874997, -78.42167968750005], [-67.046142578125, -78.51416015624996], [-67.16640625, -78.56953125000004], [-67.48095703124994, -78.68242187500005], [-68.15703125000002, -78.87089843749999], [-68.63793945312503, -79.01318359375001], [-69.25087890625002, -79.21035156250004], [-69.39443359374997, -79.27978515624997], [-69.68647460937495, -79.443359375], [-69.63447265625001, -79.51757812500001], [-69.73173828125002, -79.61835937500003], [-70.11630859375003, -79.66601562499997], [-70.33408203124998, -79.67988281250004]]], [[[167.6427734375001, -78.14140625000005], [167.51748046875005, -78.21601562499997], [167.37695312500003, -78.24902343750003], [166.93623046875004, -78.22246093750005], [166.62597656249997, -78.28427734375002], [166.2848632812501, -78.30644531250002], [166.121875, -78.27460937500001], [166.05058593750007, -78.21337890624997], [166.0125, -78.13125], [166.01289062500004, -78.101953125], [166.11113281250007, -78.08964843749999], [166.56708984375004, -78.14804687499998], [166.75986328125006, -78.19794921875001], [166.863671875, -78.19638671874998], [167.1378906250001, -78.12998046875003], [167.36406250000007, -78.04580078125002], [167.42236328125003, -78.0064453125], [167.49785156250002, -77.99238281249998], [167.59384765625006, -78.02226562500002], [167.6398437500001, -78.11171875000004], [167.6427734375001, -78.14140625000005]]], [[[-45.22265625000003, -78.81074218749998], [-45.09160156249996, -78.81425781249999], [-44.566308593749994, -78.804296875], [-44.04116210937502, -78.80664062500003], [-43.72207031250002, -78.81845703125005], [-43.62734375, -78.84609375], [-43.544335937499966, -78.901953125], [-43.45063476562498, -78.98964843750002], [-43.36367187500002, -79.08476562500003], [-43.267236328124994, -79.1630859375], [-43.210546875, -79.3], [-43.11870117187493, -79.35], [-42.96538085937496, -79.47705078125001], [-42.944677734375006, -79.57910156250003], [-42.989990234375, -79.80126953124999], [-43.06591796875003, -79.89140625000005], [-43.26728515625001, -79.97861328124998], [-43.495800781249926, -79.96933593750003], [-43.60029296875001, -79.97392578124999], [-43.70366210937502, -79.99013671875001], [-43.74218749999994, -80.00292968750003], [-43.75820312500002, -80.02050781249997], [-43.489990234375, -80.09550781249999], [-43.45883789062495, -80.123046875], [-43.453759765624994, -80.15507812500005], [-43.48935546874995, -80.17802734375], [-43.527929687500006, -80.19140624999997], [-49.1875, -80.64277343750001], [-49.41044921875002, -80.66689453125004], [-49.62968749999999, -80.71230468750005], [-49.70131835937502, -80.75322265625003], [-49.77304687499998, -80.78417968750003], [-54.1625, -80.87011718749996], [-54.20209960937501, -80.86386718750002], [-54.241308593750006, -80.84697265625005], [-54.35078125000001, -80.76035156249998], [-54.37158203124997, -80.6236328125], [-54.34716796874997, -80.56943359374998], [-54.12958984374998, -80.51650390625004], [-54.04492187499994, -80.4875], [-53.67607421874996, -80.28369140625003], [-53.482324218749994, -80.18896484375001], [-53.393896484375006, -80.10878906250002], [-53.34648437499996, -80.11445312500001], [-53.17641601562502, -80.16093749999999], [-53.05346679687503, -80.175], [-52.80722656249995, -80.15595703125004], [-52.566796875, -80.0990234375], [-52.46098632812493, -80.06660156250004], [-52.35712890625001, -80.07783203125001], [-52.338085937499955, -80.12607421874999], [-52.29716796874996, -80.14121093749996], [-51.711328124999966, -79.98984375000003], [-51.18383789062497, -79.81972656250002], [-50.66435546875002, -79.62675781250005], [-50.401562499999955, -79.51171874999997], [-50.339257812499966, -79.47949218749997], [-50.294921875, -79.42968749999996], [-50.33134765624996, -79.38144531249999], [-50.378662109375, -79.33818359375006], [-50.41953124999998, -79.3212890625], [-50.46386718750003, -79.31328125000005], [-50.733056640624994, -79.28271484375003], [-50.649023437500006, -79.2328125], [-50.57329101562493, -79.172265625], [-50.52031249999999, -79.10439453125004], [-50.50239257812498, -79.02177734374999], [-50.51372070312499, -78.97988281249998], [-50.50249023437499, -78.94990234375001], [-50.379785156249966, -78.9228515625], [-50.29775390624994, -78.88222656249998], [-50.24194335937503, -78.83330078125005], [-50.33544921874997, -78.81826171875001], [-50.37739257812501, -78.78046875000004], [-50.29418945312503, -78.69599609374997], [-50.21962890625002, -78.60527343750005], [-50.14165039062493, -78.55673828125002], [-49.93974609375002, -78.46220703125003], [-49.354150390624994, -78.22246093750005], [-49.143652343750006, -78.09384765625003], [-49.08125, -78.0474609375], [-47.692089843749955, -77.84013671875005], [-47.463476562500006, -77.81904296875001], [-47.029931640624966, -77.79052734374997], [-46.82568359375003, -77.78525390624996], [-46.25786132812499, -77.80488281249997], [-45.99316406249997, -77.82685546875001], [-45.5302734375, -77.88144531250002], [-44.851953125, -77.98837890625005], [-44.59448242187494, -78.03515624999999], [-44.33984375000003, -78.09287109375002], [-44.09399414062494, -78.16728515624999], [-43.8544921875, -78.25849609375001], [-43.80859374999997, -78.28652343750004], [-43.784570312499966, -78.33632812500005], [-43.77670898437498, -78.38505859375005], [-43.78828125000001, -78.43261718749996], [-43.852294921875, -78.52988281249996], [-43.94721679687498, -78.59755859375], [-45.06782226562501, -78.66142578125003], [-45.213085937499955, -78.68701171875], [-45.29477539062498, -78.73984375000002], [-45.35234374999999, -78.79121093750001], [-45.22265625000003, -78.81074218749998]]], [[[-149.21811523437498, -77.336328125], [-148.92885742187497, -77.38681640624998], [-149.43867187499998, -77.37060546874996], [-149.662353515625, -77.30097656249998], [-149.51865234375003, -77.27470703125005], [-149.37543945312498, -77.27998046874997], [-149.24912109375, -77.3150390625], [-149.21811523437498, -77.336328125]]], [[[-150.3970703125, -77.36914062500001], [-150.47485351562494, -77.37373046874997], [-151.34448242187503, -77.2962890625], [-151.51162109374997, -77.27333984375004], [-151.218017578125, -77.22646484375], [-151.02153320312496, -77.22001953125002], [-150.49912109375003, -77.33505859375], [-150.35625, -77.3490234375], [-150.3970703125, -77.36914062500001]]], [[[167.08408203125012, -77.32167968750002], [167.46093749999997, -77.39433593749999], [168.45078125000012, -77.38613281250001], [169.2755859375001, -77.45468750000003], [169.3527343750001, -77.52470703124999], [169.11728515625012, -77.56054687500001], [168.7545898437501, -77.6533203125], [168.51884765625002, -77.68125], [168.32255859375002, -77.68251953125], [167.91757812500012, -77.644140625], [167.39228515625004, -77.64863281250001], [167.27949218750004, -77.70263671875], [167.0250976562501, -77.75644531250005], [166.72900390624997, -77.85097656250002], [166.65039062499997, -77.77402343749998], [166.53251953125002, -77.700390625], [166.23681640624997, -77.5474609375], [166.21679687500003, -77.52460937499998], [166.37841796874997, -77.49404296875005], [166.45800781250003, -77.44375], [166.62636718750005, -77.37675781250005], [166.60712890625004, -77.335546875], [166.46904296875007, -77.2888671875], [166.41308593750003, -77.25195312500003], [166.50634765625003, -77.18935546874998], [166.71640625000006, -77.16171875000003], [166.98730468750003, -77.18652343750003], [167.10683593750005, -77.27060546875], [167.08496093750003, -77.30742187500005], [167.08408203125012, -77.32167968750002]]], [[[-148.59584960937497, -77.0068359375], [-149.0146484375, -77.01914062500003], [-149.24482421875, -76.99306640625005], [-149.30253906249996, -76.91582031250003], [-149.2380859375, -76.90019531250005], [-148.7041015625, -76.93564453124998], [-148.50893554687502, -76.95458984375003], [-148.43974609374996, -76.9771484375], [-148.47431640624998, -76.99775390625003], [-148.59584960937497, -77.0068359375]]], [[[-149.23066406249995, -77.1205078125], [-149.29345703124997, -77.13662109374998], [-149.72861328124998, -77.12851562500002], [-149.81689453125003, -77.11416015625002], [-149.85634765624997, -77.09941406250005], [-150.46181640624997, -77.07568359375], [-150.735791015625, -77.00429687500002], [-150.788525390625, -76.98164062500003], [-150.68022460937496, -76.94843750000001], [-150.47578124999995, -76.92607421874999], [-150.39331054687494, -76.89873046875002], [-149.87060546874994, -76.875], [-149.78984375000005, -76.88925781250003], [-149.742578125, -76.92705078125002], [-149.50576171874997, -77.00166015625001], [-149.44174804687498, -77.04921875000002], [-149.41640624999997, -77.07890625000005], [-149.288330078125, -77.09316406250001], [-149.23066406249995, -77.1205078125]]], [[[-146.60673828125, -76.96132812500007], [-146.98144531249994, -77.00566406250005], [-147.07890625, -76.99277343749998], [-147.044140625, -76.92968750000001], [-147.10146484374997, -76.88652343750002], [-147.115625, -76.86621093749996], [-147.086669921875, -76.83730468750002], [-146.86650390625, -76.83710937499998], [-146.244384765625, -76.88310546875002], [-146.16396484374997, -76.94853515625003], [-146.60673828125, -76.96132812500007]]], [[[-149.333251953125, -76.7173828125], [-148.9279296875, -76.73007812500003], [-148.66259765624997, -76.72050781250003], [-148.38417968750002, -76.74443359375002], [-148.32080078124997, -76.77167968749998], [-148.37094726562498, -76.794921875], [-148.66953124999998, -76.80205078125003], [-148.81459960937502, -76.84072265625001], [-148.98388671874997, -76.84531249999996], [-149.23847656249995, -76.81777343750004], [-149.4689453125, -76.75712890625003], [-149.333251953125, -76.7173828125]]], [[[-150.23251953124998, -76.77646484374998], [-150.65517578125002, -76.78896484375002], [-150.83046875000002, -76.76152343750005], [-150.87353515625, -76.73671875000005], [-150.83764648437497, -76.71416015624999], [-150.17739257812502, -76.69130859375002], [-150.103564453125, -76.71884765625005], [-150.084765625, -76.73515624999999], [-150.23251953124998, -76.77646484374998]]], [[[-147.58828124999997, -76.64980468750002], [-147.578857421875, -76.66279296875], [-147.72963867187497, -76.65341796875003], [-147.954296875, -76.59716796875003], [-148.00107421875003, -76.57714843749996], [-147.89970703125, -76.55800781250005], [-147.76967773437497, -76.57685546874998], [-147.64912109375, -76.61083984374997], [-147.58828124999997, -76.64980468750002]]], [[[-146.79003906249994, -76.63310546874999], [-146.90781249999998, -76.71406250000004], [-147.22133789062497, -76.67089843749996], [-147.355322265625, -76.61884765625001], [-147.27861328125002, -76.5525390625], [-147.13530273437493, -76.53154296874999], [-146.94746093750007, -76.55498046875006], [-146.877880859375, -76.56328124999997], [-146.79003906249994, -76.63310546874999]]], [[[-146.69013671875, -76.24638671874999], [-146.894482421875, -76.26093750000001], [-147.15092773437502, -76.19746093750005], [-147.34541015625, -76.14667968750001], [-147.40776367187493, -76.10458984374996], [-147.42089843749994, -76.09023437500005], [-147.41806640625, -76.07343750000001], [-147.36064453125005, -76.06279296874997], [-146.94902343750002, -76.09814453124997], [-146.69013671875, -76.24638671874999]]], [[[162.96806640625002, -75.56708984374997], [162.7882812500001, -75.69619140624998], [162.66191406250002, -75.69189453125], [162.5912109375, -75.66855468750003], [162.72001953125002, -75.59667968749996], [162.84238281250006, -75.56621093750006], [162.91699218750003, -75.55732421875003], [162.96806640625002, -75.56708984374997]]], [[[-145.2380859375, -75.71123046875002], [-145.34838867187497, -75.71611328125005], [-145.54116210937497, -75.69267578124997], [-146.04277343749993, -75.61191406250003], [-146.150830078125, -75.57353515625005], [-146.075732421875, -75.53339843750004], [-145.89550781249997, -75.50478515624998], [-145.76079101562496, -75.51386718750005], [-145.4173828125, -75.58798828124996], [-145.3154296875, -75.64140625000002], [-145.25224609375002, -75.68281250000001], [-145.2380859375, -75.71123046875002]]], [[[163.9759765625, -74.83271484375001], [163.84462890625, -74.83271484375001], [163.76337890625004, -74.80283203124998], [163.73720703125005, -74.73378906250002], [163.74169921874997, -74.71152343750002], [164.00234375000005, -74.62890624999997], [164.20849609374997, -74.60771484375002], [164.09824218750006, -74.73193359375], [164.05917968750006, -74.75273437499997], [163.9759765625, -74.83271484375001]]], [[[-132.39125976562502, -74.44189453124997], [-132.54628906249997, -74.49843750000004], [-132.857177734375, -74.46171875000002], [-132.83168945312502, -74.42158203125001], [-132.552490234375, -74.38662109375], [-132.36230468749997, -74.40996093750005], [-132.39125976562502, -74.44189453124997]]], [[[-131.06669921875, -74.58378906250002], [-131.17890625, -74.60478515625003], [-131.59794921874993, -74.55371093750003], [-131.840869140625, -74.54257812499998], [-131.95249023437498, -74.51435546875], [-132.02509765625, -74.488671875], [-132.04931640625, -74.46386718750001], [-132.162646484375, -74.42578124999997], [-131.93779296875, -74.34912109375], [-131.76269531250003, -74.323828125], [-131.59409179687498, -74.32968750000003], [-131.55961914062496, -74.36728515624996], [-131.23388671875003, -74.41357421874997], [-130.98110351562497, -74.4140625], [-130.956787109375, -74.45625], [-130.96728515625, -74.51503906250005], [-131.06669921875, -74.58378906250002]]], [[[-127.36582031249999, -74.62265625000003], [-127.51772460937495, -74.64052734375002], [-127.81708984375001, -74.57460937500002], [-127.91523437500001, -74.54257812499998], [-128.000048828125, -74.48945312499998], [-128.07045898437502, -74.47822265625001], [-128.09624023437493, -74.46621093750005], [-128.13344726562497, -74.32744140625002], [-128.04287109375, -74.31220703125003], [-127.85297851562504, -74.33183593750002], [-127.48642578124996, -74.40527343749997], [-127.22973632812499, -74.42519531250004], [-127.14516601562498, -74.48017578125004], [-127.23193359374999, -74.57841796874999], [-127.36582031249999, -74.62265625000003]]], [[[-116.73862304687498, -74.16503906249997], [-117.23032226562496, -74.19277343750002], [-117.36298828124998, -74.16093750000002], [-117.39829101562499, -74.1224609375], [-117.37646484374999, -74.08281250000002], [-116.38129882812501, -73.86552734374997], [-116.20268554687495, -73.89560546874998], [-116.15498046875, -73.91044921874997], [-116.451416015625, -74.01767578124998], [-116.58457031250003, -74.05556640625005], [-116.60864257812496, -74.06855468750004], [-116.53417968749999, -74.08330078125002], [-116.51411132812498, -74.09550781250002], [-116.5708984375, -74.12568359375004], [-116.73862304687498, -74.16503906249997]]], [[[-119.54892578124999, -74.11025390625], [-119.75834960937493, -74.12207031250001], [-119.82099609375, -74.11962890624996], [-119.88720703124999, -74.09726562500002], [-119.90512695312499, -74.08154296875001], [-119.79667968750002, -74.02919921875001], [-119.69375, -74.00615234375002], [-119.66157226562503, -73.98935546874998], [-119.80258789062498, -73.8146484375], [-119.66904296875003, -73.80927734374997], [-119.51635742187501, -73.77490234374999], [-119.21621093749998, -73.77763671875002], [-118.95927734374995, -73.80947265625001], [-118.909814453125, -73.83427734375], [-118.87734374999995, -73.87802734375003], [-118.98979492187495, -73.96699218750004], [-119.05859375000001, -73.99765624999998], [-119.44853515624996, -74.07617187499999], [-119.54892578124999, -74.11025390625]]], [[[-120.55625, -73.75605468750005], [-120.37812, -73.85585937500005], [-120.31230468749999, -73.92197265625], [-120.27246093749996, -73.98916015625002], [-120.98950195312501, -74.15703125000003], [-121.01904296875, -74.1734375], [-121.05410156249995, -74.25996093750004], [-121.03642578124999, -74.27929687499997], [-121.0046875, -74.29287109375], [-121.00244140624999, -74.32636718749998], [-121.06240234374995, -74.3373046875], [-122.28662109374996, -74.40312], [-122.85908203124997, -74.34267578125002], [-122.93842773437497, -74.30205078124999], [-122.9560546875, -74.24033203125003], [-122.890625, -74.22705078125], [-122.76474609375002, -74.21865234375005], [-122.79418945312497, -74.1904296875], [-122.87524414062497, -74.1412109375], [-122.88076171874994, -74.09902343750002], [-122.71000976562497, -73.99365234374997], [-122.62470703125, -73.96552734375001], [-122.95117187499999, -73.86660156250002], [-122.99155273437495, -73.84414062500005], [-123.03466796875003, -73.83759765624997], [-123.19082031249995, -73.84931640625004], [-123.34619140624999, -73.84306640625002], [-123.29179687500002, -73.80302734375003], [-123.24907226562502, -73.73867187500007], [-123.112158203125, -73.68222656250002], [-123.0125, -73.67294921875], [-122.91044921874995, -73.67968750000003], [-122.43569335937495, -73.681640625], [-121.96669921874997, -73.71181640625001], [-121.497314453125, -73.73281250000002], [-120.72221679687502, -73.75195312500001], [-120.55625, -73.75605468750005]]], [[[-20.607421875, -73.88662109375001], [-20.654248046874926, -74.10498046875], [-20.641259765624966, -74.15058593750004], [-20.60034179687497, -74.19687], [-20.42333984374997, -74.31738281250001], [-20.411425781249932, -74.40849609375002], [-20.416650390624937, -74.443359375], [-20.48901367187503, -74.49267578125003], [-20.737011718749926, -74.48095703125003], [-20.817675781250017, -74.45478515625003], [-20.845654296874926, -74.43779296875003], [-20.97675781250001, -74.22509765625004], [-21.051220703124983, -74.17607421875], [-21.166552734374932, -74.13261718750003], [-21.60986328125003, -74.09179687499997], [-22.035351562499926, -74.10654296875005], [-21.930371093749955, -74.056640625], [-21.288281249999955, -73.98935546874998], [-21.126367187500023, -73.93984375000002], [-21.02451171874995, -73.88007812500001], [-20.979199218749955, -73.79042968750004], [-20.86704101562495, -73.67666015625005], [-20.690136718749955, -73.62519531250004], [-20.580224609374966, -73.61923828124998], [-20.520703124999983, -73.71181640625001], [-20.520703124999983, -73.79785156250004], [-20.607421875, -73.88662109375001]]], [[[169.84365234375, -73.60498046875], [169.70917968750004, -73.62529296875006], [169.52236328125, -73.56152343750003], [169.47949218749997, -73.53945312499998], [169.659375, -73.41806640625003], [169.64541015625005, -73.3791015625], [169.671875, -73.34609375000002], [169.74003906250002, -73.32041015625003], [169.78320312499997, -73.32421875], [169.88652343750002, -73.45869140625004], [169.9603515625, -73.51435546875001], [169.8587890625, -73.56806640625004], [169.84365234375, -73.60498046875]]], [[[-126.32988281249997, -73.28623046874999], [-126.06528320312499, -73.31484375000005], [-125.97587890624997, -73.3568359375], [-125.85664062500003, -73.38828125], [-125.73579101562501, -73.4056640625], [-125.626806640625, -73.45322265625], [-125.56132812499999, -73.53642578124999], [-125.50390625000001, -73.5625], [-125.32617187499996, -73.61787109374997], [-125.26396484374999, -73.66640625], [-125.27607421874997, -73.69052734375003], [-125.61240234375, -73.71074218750006], [-125.72319335937502, -73.70273437500003], [-125.82841796874996, -73.718359375], [-125.85991210937497, -73.74863281249996], [-125.85703125000002, -73.78017578125], [-125.79858398437501, -73.80195312499998], [-125.67441406250002, -73.82216796875002], [-125.55239257812495, -73.82011718750005], [-125.32685546875001, -73.7955078125], [-125.2244140625, -73.80078125000001], [-125.1087890625, -73.82597656249999], [-124.99340820312501, -73.82978515624998], [-124.69438476562495, -73.74960937499998], [-124.61748046874999, -73.73525390625], [-124.53999023437501, -73.73974609375001], [-124.12851562500003, -73.83398437500003], [-124.042041015625, -73.88037109374997], [-124.10053710937501, -73.90683593750003], [-124.15180664062498, -73.94423828125002], [-124.12934570312503, -73.97109375], [-123.93232421874994, -74.00800781250004], [-123.85117187500002, -74.05703125], [-123.80043945312498, -74.07626953125], [-123.81103515625001, -74.11738281250004], [-123.83876953124998, -74.16826171875002], [-123.83671875, -74.22568359374998], [-123.93740234375, -74.25615234374997], [-123.98247070312495, -74.25605468750004], [-124.1994140625, -74.22558593749997], [-124.872998046875, -74.20830078124999], [-125.08955078124998, -74.18242187500005], [-125.42080078124997, -74.06992187500005], [-125.54931640625003, -74.0626953125], [-125.68271484375003, -74.03544921875005], [-125.88686523437497, -73.95458984375], [-126.244091796875, -73.89091796874999], [-126.4716796875, -73.812109375], [-126.465576171875, -73.74628906250001], [-126.49609375, -73.70019531250004], [-126.53837890625, -73.68017578124996], [-126.58266601562497, -73.669921875], [-126.71093749999999, -73.65361328125005], [-126.83823242187498, -73.65732421875], [-126.90166015625003, -73.67675781249997], [-127.00639648437496, -73.72578125000001], [-127.12207031249999, -73.73417968750005], [-127.21162109375003, -73.7244140625], [-127.23164062500001, -73.71347656249999], [-127.23291015625001, -73.58554687500003], [-127.33203124999996, -73.56748046875], [-127.41435546875003, -73.51630859374997], [-127.429052734375, -73.446875], [-127.39433593749995, -73.38222656250001], [-127.26762695312497, -73.30400390624997], [-127.12353515625001, -73.29433593750005], [-126.97783203125, -73.3080078125], [-126.82998046875, -73.29082031250005], [-126.596875, -73.27890625], [-126.32988281249997, -73.28623046874999]]], [[[-73.87841796874997, -73.3568359375], [-73.97480468749998, -73.37607421875], [-74.03828124999995, -73.36552734374999], [-74.146630859375, -73.3154296875], [-74.134423828125, -73.27666015624999], [-74.08447265625003, -73.24931640625002], [-74.04873046874994, -73.22021484374996], [-73.83212890624995, -73.11328125000003], [-73.67421874999994, -73.10039062500006], [-73.54243164062501, -73.12382812500005], [-73.682275390625, -73.225], [-73.72138671874995, -73.2962890625], [-73.87841796874997, -73.3568359375]]], [[[-104.53793945312493, -73.16630859374999], [-104.65957031250002, -73.21210937499998], [-104.88095703125, -73.20058593750005], [-105.05292968749995, -73.12597656250003], [-105.12343750000002, -73.02636718749999], [-105.13178710937495, -72.99150390624999], [-105.0845703125, -72.96591796875002], [-104.97241210937499, -72.941015625], [-104.53793945312493, -73.16630859374999]]], [[[-74.35444335937495, -73.09843750000002], [-74.49892578125, -73.22919921875001], [-74.5224609375, -73.24394531249999], [-74.66767578125001, -73.27529296875], [-74.61538085937502, -73.31142578125007], [-74.57548828124996, -73.327734375], [-74.55063476562498, -73.369140625], [-74.467138671875, -73.42714843750002], [-74.36611328124994, -73.46425781250002], [-74.45209960937495, -73.56542968750003], [-74.57465820312498, -73.61132812499997], [-75.90083007812495, -73.33261718750003], [-76.00322265624996, -73.28798828125], [-76.053125, -73.25468750000005], [-76.09042968749995, -73.20283203124997], [-76.09638671874993, -73.15048828124996], [-76.06240234375002, -73.1087890625], [-76.01767578124998, -73.08544921875003], [-75.89765624999995, -73.05634765624997], [-75.77465820312503, -73.054296875], [-75.50585937499997, -73.10888671875001], [-75.46757812499999, -73.10107421875003], [-75.41723632812494, -73.05156250000006], [-75.276220703125, -73.050390625], [-75.24384765624998, -73.009375], [-75.43945312500003, -72.99423828125], [-75.60029296874993, -72.95263671874997], [-75.7017578125, -72.91103515625002], [-75.7310546875, -72.87929687500005], [-75.37685546874997, -72.82041015625003], [-74.47387695312497, -72.89375], [-74.33554687500003, -72.91894531250004], [-74.27578125000002, -72.95126953124996], [-74.223876953125, -72.99707031249997], [-74.35444335937495, -73.09843750000002]]], [[[-93.79560546874998, -72.91972656250002], [-93.96552734374998, -72.92021484375003], [-94.078125, -72.88388671875], [-94.11318359374994, -72.86005859375004], [-94.04697265624995, -72.82304687500005], [-94.00424804687495, -72.8197265625], [-93.799560546875, -72.88203124999998], [-93.75581054687498, -72.90761718750005], [-93.79560546874998, -72.91972656250002]]], [[[-91.16069335937502, -73.18222656250003], [-91.34418945312501, -73.20712890625003], [-91.51083984375003, -73.19550781249998], [-91.45039062499995, -72.96787109374998], [-91.35688476562501, -72.90947265624997], [-91.38212890624999, -72.86787109375003], [-91.55146484374995, -72.75361328125001], [-91.67001953125003, -72.62373046875003], [-91.61240234375, -72.59384765624998], [-91.30351562499996, -72.54736328125001], [-90.947412109375, -72.55634765624998], [-90.80712890625, -72.61064453125002], [-90.76333007812497, -72.68105468749998], [-90.78017578125002, -72.73173828125], [-90.89536132812495, -72.8236328125], [-90.776220703125, -72.85400390624996], [-90.75097656250003, -72.9166015625], [-90.77558593749998, -72.99296875000002], [-90.89306640625003, -73.083984375], [-90.9984375, -73.13652343750005], [-91.16069335937502, -73.18222656250003]]], [[[-95.02705078124995, -72.6650390625], [-95.21943359374998, -72.66982421875], [-95.27294921874997, -72.646875], [-95.215625, -72.59941406250005], [-94.75302734375, -72.5171875], [-94.56611328124993, -72.46806640625002], [-94.53837890624996, -72.47578125], [-94.51386718749995, -72.49169921875004], [-94.433935546875, -72.58916015625], [-94.426025390625, -72.61259765624999], [-95.02705078124995, -72.6650390625]]], [[[-16.10449218750003, -72.67910156250002], [-16.174804687499943, -72.70283203124998], [-16.31757812500001, -72.70214843750001], [-16.453027343749966, -72.65234375], [-16.50976562499997, -72.58222656250001], [-16.516552734374955, -72.53085937500003], [-16.455371093750017, -72.47353515624998], [-16.355859375, -72.45859375000005], [-16.302880859374937, -72.47802734375], [-16.172509765624937, -72.6], [-16.10449218750003, -72.67910156250002]]], [[[68.46171875000002, -72.30009765624999], [68.4088867187501, -72.30019531250002], [68.43613281250006, -72.26044921875001], [68.56630859375005, -72.19013671874998], [68.66708984375006, -72.103125], [68.72929687500002, -72.08916015625002], [68.8404296875, -72.16542968750001], [68.81718750000007, -72.22871093750001], [68.66953125, -72.27597656249998], [68.46171875000002, -72.30009765624999]]], [[[-12.508886718749977, -72.17333984375003], [-12.588427734374932, -72.19609375000005], [-12.720166015624955, -72.18769531250001], [-12.888427734374943, -72.137109375], [-12.94370117187492, -72.09892578125005], [-12.96328125, -72.06445312500004], [-12.914794921874972, -72.01464843750003], [-12.875488281249972, -72.00068359375001], [-12.788867187499989, -72.00654296874997], [-12.636621093749966, -72.07128906250001], [-12.53476562499992, -72.1400390625], [-12.508886718749977, -72.17333984375003]]], [[[69.91835937500005, -71.9177734375], [69.79199218749997, -72.04667968749997], [69.74355468750005, -72.04414062499998], [69.69257812500004, -71.96826171874999], [69.73710937500007, -71.92197265624998], [69.7960937500001, -71.89394531250002], [69.89521484375004, -71.9078125], [69.91835937500005, -71.9177734375]]], [[[-98.09111328124999, -71.9125], [-98.17592773437494, -72.01845703125], [-98.16796875, -72.12304687499999], [-97.92314453124996, -72.11660156250001], [-97.81601562499998, -71.91884765625005], [-97.58476562499993, -71.88261718750003], [-97.473486328125, -72.00029296875002], [-97.58198242187501, -72.09511718749998], [-97.52563476562497, -72.14921874999999], [-97.46025390624999, -72.18828125000005], [-97.34521484375, -72.18906250000003], [-97.24199218750002, -72.1318359375], [-97.19550781249995, -72.09101562500004], [-97.15478515625, -72.04541015624997], [-97.08872070312495, -71.94404296875003], [-96.86943359374996, -71.85097656249998], [-96.38334960937496, -71.83632812500002], [-96.125, -71.8955078125], [-96.29819335937503, -72.04511718750001], [-96.71494140625, -72.13164062500005], [-96.97890624999997, -72.221875], [-96.89013671875, -72.24697265625001], [-96.79873046874994, -72.25947265624998], [-96.71757812499993, -72.25546874999996], [-96.48232421874997, -72.20761718749998], [-95.90634765624995, -72.12197265625004], [-95.68540039062498, -72.05664062499996], [-95.609375, -72.06845703124998], [-95.60952148437497, -72.175], [-95.53105468749996, -72.24873046875001], [-95.57539062499995, -72.40996093749999], [-95.82568359374994, -72.43896484374996], [-96.07817382812496, -72.45380859375004], [-96.01430664062502, -72.52470703125002], [-96.02988281249998, -72.554296875], [-96.0517578125, -72.57724609374998], [-96.69267578125002, -72.54765624999999], [-96.80390624999993, -72.55800781250005], [-96.91479492187497, -72.57832031250001], [-97.02763671874996, -72.57382812499998], [-97.25029296875002, -72.52089843750004], [-97.36552734374996, -72.52177734375005], [-97.59560546875002, -72.54765624999999], [-97.82832031250001, -72.55703125000002], [-98.16342773437498, -72.55605468750001], [-98.40781250000003, -72.54765624999999], [-98.64067382812493, -72.48974609375], [-98.88154296874998, -72.4732421875], [-99.148828125, -72.47197265625002], [-99.43432617187499, -72.40664062500002], [-99.67236328124999, -72.3798828125], [-100.0142578125, -72.31240234375002], [-100.104052734375, -72.28701171875], [-100.19521484375001, -72.27265625000001], [-100.35742187500001, -72.278125], [-101.60195312499998, -72.17568359375005], [-101.78476562500002, -72.17773437500003], [-101.90332031250001, -72.19033203125002], [-102.02211914062497, -72.1849609375], [-102.26479492187502, -72.13525390624999], [-102.31362304687502, -72.08105468749996], [-102.28828125000001, -72.03212890625002], [-102.23652343749994, -72.00927734375], [-102.12812, -71.98544921875002], [-100.400927734375, -71.86572265624997], [-100.21865234375, -71.83291015625002], [-100.08461914062495, -71.83691406249996], [-99.98515624999993, -71.93945312499997], [-99.83320312499998, -72.04609375000004], [-99.78398437499999, -72.04433593750002], [-99.73491210937493, -72.03300781250003], [-99.56308593750002, -71.94492187500003], [-99.25410156249995, -71.97216796874997], [-99.08212890624999, -71.93251953125], [-98.96455078125003, -71.85429687500005], [-98.61542968749995, -71.76376953124998], [-98.39428710937503, -71.78154296875005], [-98.18916015624998, -71.82001953124998], [-98.09111328124999, -71.9125]]], [[[-2.954980468749937, -71.21376953125002], [-3.06059570312496, -71.23662109375005], [-3.201464843749989, -71.2302734375], [-3.30937, -71.20087890624997], [-3.385644531249937, -71.14296875], [-3.403857421874989, -71.11982421874998], [-3.39169921874992, -71.08115234375], [-3.398974609374989, -71.06210937500003], [-3.26303710937492, -71.05175781249997], [-3.212792968749966, -71.07597656250002], [-3.191357421874955, -71.09482421875003], [-2.954980468749937, -71.21376953125002]]], [[[-60.55224609374997, -71.05292968750003], [-60.65214843749999, -71.05869140625003], [-60.789746093749955, -71.04111328125], [-60.90634765624998, -71.007421875], [-60.94648437499998, -70.9673828125], [-60.88906250000002, -70.934375], [-60.78281249999995, -70.91406249999997], [-60.613134765625034, -70.92011718749997], [-60.533300781250006, -70.9625], [-60.516308593749926, -70.99951171874997], [-60.53593749999993, -71.04091796875007], [-60.55224609374997, -71.05292968750003]]], [[[-2.5328125, -70.76777343750001], [-2.4234375, -70.800390625], [-2.255566406249926, -70.79609375000001], [-2.092285156249972, -70.8208984375], [-2.119042968749994, -70.85537109375001], [-2.212695312499989, -70.90156250000001], [-2.293164062499955, -70.99794921875002], [-2.368945312499932, -71.04443359374997], [-2.60673828124996, -71.14111328124996], [-2.783496093750017, -71.16748046875], [-2.825146484374955, -71.11269531250002], [-2.821875, -71.05673828125], [-2.805175781249972, -71.01474609374998], [-2.800537109375, -70.98222656250002], [-2.963134765625, -70.94033203125], [-2.975, -70.88330078125001], [-3.006982421874966, -70.85146484375002], [-3.488964843749926, -70.7359375], [-3.574658203124983, -70.703125], [-3.537060546874955, -70.68330078125004], [-3.040039062499943, -70.6744140625], [-2.749804687499989, -70.69414062500002], [-2.5328125, -70.76777343750001]]], [[[-73.70664062499998, -70.63515625], [-73.55034179687502, -70.72343750000005], [-73.69453124999998, -70.79433593750001], [-74.20502929687498, -70.92412109374999], [-74.50473632812503, -70.97343749999999], [-74.805810546875, -71.0123046875], [-76.17631835937496, -71.13242187499996], [-76.27128906249993, -71.13281249999996], [-76.36396484374998, -71.11679687499998], [-76.42148437499998, -71.09042968750003], [-76.51152343749996, -70.99082031249998], [-76.50024414062497, -70.94140625000004], [-76.37763671874993, -70.894140625], [-76.248876953125, -70.86376953125003], [-76.03457031249994, -70.83593749999996], [-75.21000976562502, -70.77255859375], [-75.12695312499997, -70.75175781250005], [-75.05991210937498, -70.70556640624996], [-75.03754882812495, -70.65058593750004], [-75.00747070312497, -70.60888671874997], [-74.95361328125, -70.590234375], [-74.89848632812496, -70.59052734374997], [-74.79047851562498, -70.63095703125003], [-74.589697265625, -70.79199218749997], [-74.52714843749999, -70.76972656249997], [-74.46865234374997, -70.72666015624999], [-74.45615234374998, -70.58671874999999], [-74.40097656250003, -70.57587890625001], [-74.225, -70.6146484375], [-74.11455078124993, -70.65537109375003], [-74.112646484375, -70.5767578125], [-74.03833007812494, -70.55292968750004], [-73.95781249999999, -70.5609375], [-73.8794921875, -70.578125], [-73.70664062499998, -70.63515625]]], [[[-60.74062, -70.710546875], [-60.826074218749966, -70.710546875], [-60.89648437500003, -70.6896484375], [-60.95800781249994, -70.62900390624999], [-60.975537109374955, -70.59912109375003], [-60.94179687500002, -70.53251953125005], [-60.883886718750034, -70.51757812500003], [-60.55366210937498, -70.50878906250001], [-60.45249023437498, -70.54423828125005], [-60.44897460937497, -70.60332031249999], [-60.487695312499966, -70.64667968750004], [-60.74062, -70.710546875]]], [[[-5.894091796874989, -70.55224609374999], [-6.15610351562492, -70.61152343749998], [-6.180859374999983, -70.58554687500002], [-6.266113281249943, -70.55019531250001], [-6.437988281249972, -70.45263671875003], [-6.243652343749972, -70.44570312500004], [-6.068261718749966, -70.40468750000002], [-5.971630859374983, -70.421484375], [-5.949511718749932, -70.43222656250005], [-5.894091796874989, -70.55224609374999]]], [[[3.036914062500045, -70.59736328125003], [2.697753906250057, -70.62353515625003], [2.62275390625004, -70.593359375], [2.584667968750011, -70.53457031250002], [2.631445312500034, -70.500390625], [3.072167968750051, -70.38164062500005], [3.192773437499994, -70.39267578124998], [3.230566406250063, -70.40263671875006], [3.259863281250006, -70.44882812499996], [3.221289062500034, -70.519140625], [3.17109375000004, -70.55390624999997], [3.036914062500045, -70.59736328125003]]], [[[-3.280224609374955, -70.53378906250003], [-3.441894531249943, -70.53544921875002], [-3.490234375, -70.50800781250004], [-3.496826171874943, -70.48837890625003], [-3.28745117187492, -70.34404296875002], [-3.173242187499994, -70.30732421875001], [-2.949902343749983, -70.27968750000005], [-2.805126953124983, -70.28847656249998], [-2.713525390624966, -70.32021484375005], [-2.684375, -70.376171875], [-2.682714843749977, -70.46220703125002], [-2.738037109374972, -70.50703125000001], [-3.280224609374955, -70.53378906250003]]], [[[-71.69501953124995, -70.26513671875003], [-71.64775390625002, -70.29541015624997], [-71.43159179687493, -70.26728515625001], [-71.35488281249994, -70.29785156250003], [-71.34028320312498, -70.31748046875003], [-71.43774414062494, -70.39150390625001], [-71.55122070312498, -70.43886718749998], [-71.68466796874998, -70.44228515625005], [-71.781982421875, -70.31884765625004], [-71.79526367187495, -70.28837890625005], [-71.69501953124995, -70.26513671875003]]], [[[72.00224609375002, -70.63261718750002], [71.92900390625002, -70.63300781250001], [71.8412109375, -70.62197265624998], [71.72578125000004, -70.54912109375006], [71.659375, -70.49746093750002], [71.637109375, -70.44355468750004], [71.64658203125006, -70.33632812500005], [71.70507812499997, -70.284375], [71.79658203125004, -70.26425781250002], [71.83798828125006, -70.31220703125001], [71.851171875, -70.36767578125004], [71.87998046875, -70.40556640625003], [72, -70.45683593749999], [72.05566406250003, -70.50097656250003], [72.0734375000001, -70.52451171875002], [72.09736328125004, -70.574609375], [72.07812, -70.60908203125001], [72.00224609375002, -70.63261718750002]]], [[[4.52587890625, -70.47871093750001], [4.365234375000028, -70.50263671875001], [4.179687499999972, -70.45126953125002], [4.129589843749983, -70.41699218749997], [4.076171875000028, -70.32529296875002], [4.069726562500051, -70.29023437499998], [4.11171875000008, -70.26679687500001], [4.256054687500011, -70.24082031250003], [4.495019531250023, -70.25136718750005], [4.586230468750017, -70.29423828125], [4.617578125000023, -70.36865234374997], [4.589941406249977, -70.43251953125002], [4.52587890625, -70.47871093750001]]], [[[26.857226562500045, -70.38115234375003], [26.79296875000003, -70.4193359375], [26.60878906250008, -70.41240234375], [26.47021484375, -70.44794921875005], [26.357617187500068, -70.43427734375001], [26.005371093750057, -70.37294921875005], [25.964257812500023, -70.29453124999998], [25.9541015625, -70.26142578124998], [25.982519531250034, -70.19990234374997], [26.30107421874999, -70.07246093750003], [26.425585937500045, -70.060546875], [26.604785156250045, -70.07822265625005], [26.68623046875004, -70.11445312499997], [26.737402343750063, -70.18603515624999], [26.87480468749999, -70.32998046875], [26.857226562500045, -70.38115234375003]]], [[[1.29931640625, -70.25517578125005], [1.211523437500063, -70.38134765624999], [1.156347656250006, -70.378125], [1.104589843750034, -70.30419921874999], [0.990332031250006, -70.22431640624997], [0.952539062500051, -70.16894531249997], [0.94960937500008, -70.09404296874999], [1.02675781250008, -70.04980468750003], [1.314843750000051, -70.02275390625002], [1.412207031249977, -70.04072265625004], [1.460937500000057, -70.13564453125002], [1.29931640625, -70.25517578125005]]], [[[-61.158447265625, -69.97578125000004], [-61.30864257812496, -69.97792968750005], [-61.37846679687499, -69.9498046875], [-61.40434570312502, -69.93251953125002], [-61.38647460937503, -69.89326171875003], [-61.3271484375, -69.85634765625005], [-61.15185546875, -69.88310546874999], [-61.10791015625003, -69.95527343750004], [-61.158447265625, -69.97578125000004]]], [[[-74.98710937499999, -69.72783203124999], [-74.81015624999998, -69.75244140625003], [-74.54970703124997, -69.8609375], [-74.4654296875, -69.91689453125005], [-74.43798828125003, -69.94960937500005], [-74.46005859374998, -69.97167968750001], [-74.57841796874993, -69.99804687499997], [-74.67177734374997, -70.13173828125002], [-74.84882812499995, -70.17929687500003], [-75.268408203125, -70.14941406249999], [-75.72675781249995, -70.09609375000005], [-75.76445312499999, -70.08505859375002], [-75.80415039062498, -70.03818359374998], [-75.81293945312501, -69.98398437500003], [-75.75952148437494, -69.91611328124998], [-75.68134765624993, -69.88164062500005], [-75.33994140625, -69.84023437500005], [-75.31391601562495, -69.816796875], [-75.26455078125002, -69.74931640625002], [-75.17895507812497, -69.73515625000005], [-75.13637695312502, -69.740625], [-74.98710937499999, -69.72783203124999]]], [[[16.222656250000057, -70.00761718750005], [16.159277343750006, -70.07197265625001], [15.844921875000011, -69.98203125], [15.66347656250008, -69.955078125], [15.613867187500006, -69.93906250000003], [15.570996093750068, -69.88476562499997], [15.562597656250034, -69.86279296875003], [15.596875, -69.82802734375005], [15.699023437500045, -69.77324218749999], [15.909570312500023, -69.72841796875002], [16.246875, -69.70498046875004], [16.57343750000001, -69.72324218750003], [16.625488281250057, -69.75029296875003], [16.31542968750003, -69.84443359375003], [16.222656250000057, -70.00761718750005]]], [[[-71.98535156249994, -69.69843750000004], [-72.20205078124997, -69.74013671875], [-72.34458007812495, -69.70703125], [-72.77675781249997, -69.64501953124999], [-72.95732421874999, -69.52910156249999], [-72.93676757812497, -69.46884765624998], [-72.85732421874997, -69.43310546874997], [-72.72617187499998, -69.41308593749999], [-72.46430664062501, -69.45185546874998], [-72.33115234374998, -69.49179687500003], [-71.98535156249994, -69.69843750000004]]], [[[-61.99760742187499, -69.721875], [-62.08515624999998, -69.72949218749997], [-62.17192382812499, -69.63662109375005], [-62.21601562499998, -69.49492187500005], [-62.496240234374966, -69.28818359375003], [-62.56767578124996, -69.18046875000002], [-62.51586914062497, -69.15458984374999], [-62.44213867187497, -69.14599609375003], [-62.238964843749955, -69.17578124999996], [-62.117919921875, -69.21474609375], [-61.97836914062498, -69.30039062500003], [-61.81596679687493, -69.37617187500001], [-61.78369140625003, -69.44189453125], [-61.80717773437502, -69.51464843749999], [-61.91132812500001, -69.53339843749998], [-61.9078125, -69.58759765625001], [-61.970117187499994, -69.69140625000003], [-61.99760742187499, -69.721875]]], [[[-70.05112304687498, -69.1890625], [-70.07934570312497, -69.31093750000005], [-69.91328124999995, -69.26728515625004], [-69.85498046875, -69.27656249999998], [-69.70756835937499, -69.32089843750003], [-69.41694335937501, -69.58320312500001], [-69.35297851562495, -69.66630859374997], [-69.2337890625, -69.90908203125005], [-69.09125976562501, -70.09033203125003], [-68.73056640624998, -70.40810546875002], [-68.55351562499996, -70.58144531249998], [-68.45947265625, -70.68291015625005], [-68.45078125, -70.81787109375], [-68.33598632812496, -70.85605468749998], [-68.31401367187493, -70.91171875000003], [-68.27792968749995, -71.09707031250005], [-68.25244140625, -71.3134765625], [-68.22783203124996, -71.72519531250003], [-68.24101562499999, -71.82216796875007], [-68.39389648437495, -71.97519531249998], [-68.46074218749999, -72.08535156250004], [-68.54257812499995, -72.15761718750002], [-68.64003906250002, -72.20976562499999], [-69.149267578125, -72.4265625], [-69.209326171875, -72.5341796875], [-70.06308593750003, -72.62617187499998], [-70.54345703125, -72.66445312500007], [-70.73134765625, -72.62294921875005], [-70.92294921874995, -72.61308593749999], [-71.15859375, -72.62695312499997], [-71.84614257812501, -72.63935546875001], [-72.36748046874999, -72.66972656249999], [-72.43330078124998, -72.65830078124996], [-72.4798828125, -72.61728515625005], [-72.53081054687496, -72.58955078124998], [-72.67021484374993, -72.59589843750004], [-72.78037109375, -72.58056640625003], [-72.88764648437501, -72.54667968750005], [-73.00703124999998, -72.48408203125], [-73.05742187499996, -72.44755859375002], [-73.08637695312498, -72.4078125], [-72.85483398437498, -72.30419921875003], [-72.7375, -72.28056640625002], [-72.61821289062502, -72.27509765624997], [-72.37607421874998, -72.29628906250002], [-72.13496093749995, -72.33134765625006], [-71.60532226562498, -72.358984375], [-70.87260742187502, -72.36640625000001], [-70.671142578125, -72.35634765625], [-70.42768554687495, -72.32255859375005], [-70.20600585937501, -72.227734375], [-70.31420898437503, -72.19101562499998], [-70.42416992187495, -72.16777343750005], [-70.53320312499997, -72.16337890625003], [-70.64140624999999, -72.16962890624998], [-70.94516601562495, -72.2291015625], [-71.177734375, -72.26406250000002], [-71.41254882812495, -72.28447265625002], [-71.66147460937495, -72.24980468750005], [-71.89218749999998, -72.15283203125001], [-71.89755859375, -72.12080078124998], [-71.10664062499998, -72.04707031250005], [-71.034375, -72.0345703125], [-70.89111328124997, -71.98740234374998], [-70.84462890625, -71.94580078125003], [-70.82099609374998, -71.90654296875002], [-71.35498046874997, -71.83642578125003], [-71.46464843750002, -71.83789062499997], [-71.57441406249998, -71.8505859375], [-71.81616210937494, -71.821875], [-72.04594726562496, -71.73964843750004], [-72.25908203124993, -71.64121093749998], [-72.33662109374993, -71.6322265625], [-72.41220703124995, -71.66230468750001], [-72.92763671875, -71.92167968749999], [-72.97207031249997, -71.92363281250005], [-73.16669921874993, -71.90458984374999], [-73.40996093750002, -71.85312], [-73.63291015624995, -71.8349609375], [-73.77597656249998, -71.84892578125002], [-73.82988281249993, -71.87021484374999], [-73.690576171875, -71.92939453124997], [-73.57231445312496, -71.98095703125], [-73.53710937499997, -72.02236328125], [-73.89926757812495, -72.15234375], [-73.99560546874994, -72.16982421875002], [-74.15297851562497, -72.15878906249998], [-74.20893554687498, -72.14228515625], [-74.32177734374997, -72.07265625000002], [-74.42929687500003, -72.05556640625001], [-74.663232421875, -72.069921875], [-74.78583984375001, -72.06357421875003], [-74.90825195312499, -72.03330078125], [-75.02412109374998, -71.98847656250001], [-75.129736328125, -71.96396484375], [-75.25888671875, -71.91396484375002], [-75.35307617187502, -71.87841796874997], [-75.38271484375002, -71.82792968749999], [-75.37324218749995, -71.78027343749997], [-75.330810546875, -71.75234375000005], [-75.32490234374995, -71.72558593750001], [-75.353125, -71.6796875], [-75.33544921874997, -71.64521484374998], [-75.29257812499995, -71.61494140625004], [-75.09965820312499, -71.55537109374998], [-74.86313476562503, -71.54335937500002], [-74.63637695312502, -71.61748046875002], [-74.48745117187497, -71.64150390625002], [-74.41865234374998, -71.64326171875004], [-74.39179687499993, -71.63818359374997], [-74.37333984374999, -71.61796875000003], [-74.38007812499995, -71.57939453124999], [-74.42031249999997, -71.50722656250002], [-74.42539062500003, -71.45693359375], [-74.375, -71.41494140625005], [-74.30791015624999, -71.39990234375001], [-74.236083984375, -71.38837890624998], [-74.18720703125001, -71.38300781250004], [-74.04096679687495, -71.41044921875003], [-73.93710937500003, -71.43818359375], [-73.72426757812502, -71.51699218750007], [-73.54536132812498, -71.57304687500002], [-73.47900390624997, -71.57871093750003], [-73.42714843749997, -71.55888671874999], [-73.38017578124999, -71.52792968749998], [-73.59218750000002, -71.44804687500005], [-73.61708984375002, -71.39658203125005], [-73.60449218749994, -71.35078125000004], [-73.473974609375, -71.32490234375001], [-73.39741210937495, -71.32119140625005], [-73.01972656250001, -71.36865234375004], [-72.82104492187503, -71.38359374999997], [-72.62158203124997, -71.38837890624998], [-72.21166992187497, -71.33505859375003], [-72.43007812499997, -71.275], [-72.90546875000001, -71.22314453124997], [-72.99453125000002, -71.18652343749997], [-73.06040039062503, -71.126953125], [-72.71044921874997, -71.07294921875001], [-72.35634765624994, -71.07480468750003], [-71.71850585937494, -71.14511718749998], [-71.50449218749995, -71.11152343749997], [-71.30751953124997, -71.01083984374998], [-71.19404296874995, -70.984765625], [-70.74111328124997, -70.992578125], [-70.38066406249996, -70.94638671874999], [-70.32290039062502, -70.95117187499999], [-70.26767578124995, -70.96474609375], [-69.91645507812498, -71.13378906249997], [-69.869775390625, -71.12568359375001], [-69.83510742187494, -71.09257812500002], [-69.8228515625, -71.03369140625001], [-69.82250976562494, -70.97343749999999], [-69.83041992187495, -70.91367187499998], [-69.87578125, -70.87597656250003], [-69.93320312500003, -70.88037109375004], [-69.99301757812495, -70.89707031249998], [-70.093994140625, -70.88261718750005], [-70.19624023437498, -70.85058593750001], [-70.29868164062498, -70.8361328125], [-70.66064453125, -70.81787109375], [-70.91694335937498, -70.78583984374997], [-71.04941406249998, -70.76210937500002], [-71.17265624999993, -70.71298828125005], [-71.1900390625, -70.6595703125], [-71.06108398437496, -70.537109375], [-70.56210937499998, -70.4041015625], [-70.32807617187501, -70.36123046875005], [-70.0904296875, -70.35068359375003], [-69.97529296874998, -70.36015625000002], [-69.70205078125002, -70.41474609375004], [-69.65986328124995, -70.41230468749998], [-69.61835937500001, -70.398046875], [-69.88300781249993, -70.30517578125], [-70.11787109374998, -70.23417968750002], [-70.23408203124995, -70.18046875], [-70.32763671875, -70.15966796875003], [-70.71953124999999, -70.13945312499999], [-70.92622070312501, -70.19238281250003], [-71.02373046874999, -70.2013671875], [-71.12050781249997, -70.19648437499998], [-71.69609374999999, -70.06777343750005], [-71.72851562500003, -70.05371093750003], [-71.80996093750002, -70.00517578124999], [-71.85361328125003, -69.96933593749998], [-71.879248046875, -69.90898437500003], [-71.86767578124997, -69.84716796874996], [-71.85200195312495, -69.80703125000005], [-71.76650390624997, -69.6494140625], [-71.71821289062498, -69.52402343750003], [-71.74291992187494, -69.42275390625], [-71.83359375000003, -69.36679687499998], [-71.96323242187498, -69.32871093750003], [-72.0806640625, -69.26718750000002], [-72.11435546875003, -69.22539062500003], [-72.13515625, -69.17656250000003], [-72.13789062499995, -69.11455078125002], [-72.10864257812503, -69.06005859375], [-72.05786132812497, -69.00097656249997], [-71.99013671874994, -68.97080078125003], [-71.86899414062495, -68.941015625], [-71.39155273437495, -68.87353515625003], [-70.4169921875, -68.78896484375002], [-70.3119140625, -68.83222656250004], [-70.15429687499994, -68.92294921874996], [-70.10546874999994, -68.959375], [-70.05273437499994, -69.13955078125004], [-70.05112304687498, -69.1890625]]], [[[-90.53618164062496, -68.79775390625004], [-90.54716796874999, -68.79833984374997], [-90.56665039062494, -68.79814453125003], [-90.58085937500002, -68.79863281250005], [-90.59521484375, -68.8001953125], [-90.609130859375, -68.80185546874998], [-90.61738281249998, -68.80322265625], [-90.62036132812497, -68.80322265625], [-90.6236328125, -68.80136718749998], [-90.62836914062501, -68.79697265624998], [-90.63837890625001, -68.78828124999998], [-90.6470703125, -68.7796875], [-90.65205078124995, -68.7708984375], [-90.648046875, -68.75957031249999], [-90.63720703125003, -68.75449218750002], [-90.63671875000003, -68.74726562499997], [-90.63671875000003, -68.737890625], [-90.6314453125, -68.72978515625005], [-90.62836914062501, -68.72138671875003], [-90.629150390625, -68.71640624999998], [-90.62568359374998, -68.7138671875], [-90.61674804687496, -68.712109375], [-90.60009765625003, -68.71230468750004], [-90.58964843749993, -68.71298828125], [-90.57060546874996, -68.71396484375002], [-90.561669921875, -68.71503906249998], [-90.548486328125, -68.71835937500003], [-90.53544921874999, -68.72841796875004], [-90.52514648437503, -68.73847656250004], [-90.52514648437503, -68.74296874999999], [-90.52290039062501, -68.74882812500002], [-90.52119140624993, -68.75585937500003], [-90.51918945312497, -68.76425781249996], [-90.51469726562493, -68.77128906249997], [-90.51816406250003, -68.783203125], [-90.52592773437502, -68.794921875], [-90.53295898437503, -68.79726562500002], [-90.53618164062496, -68.79775390625004]]], [[[-60.65590820312494, -68.76757812500003], [-60.69335937500003, -68.79501953125], [-60.820068359375, -68.77841796875], [-60.89404296874997, -68.75888671875003], [-61.01494140624999, -68.70976562500005], [-60.947167968749966, -68.68066406249999], [-60.813574218750006, -68.6876953125], [-60.70483398437497, -68.7220703125], [-60.65590820312494, -68.76757812500003]]], [[[-67.34892578124996, -67.76621093750003], [-67.54453125000003, -67.78525390625], [-67.69335937499997, -67.7634765625], [-67.68969726562503, -67.68769531250001], [-67.73066406249993, -67.67949218750005], [-67.74326171875, -67.66123046875005], [-67.55673828125003, -67.60449218750003], [-67.41767578124993, -67.590625], [-67.24672851562502, -67.59873046875], [-67.17490234374995, -67.62451171875003], [-67.1494140625, -67.65019531250002], [-67.2796875, -67.71191406249997], [-67.29970703124997, -67.73720703124998], [-67.34892578124996, -67.76621093750003]]], [[[164.83359375000012, -67.54042968750004], [164.7462890625001, -67.56884765624997], [164.69208984375004, -67.56005859375004], [164.63896484375007, -67.50009765624999], [164.69628906250003, -67.40781250000002], [164.6751953125, -67.28886718750005], [164.683984375, -67.25937], [164.825, -67.32607421874998], [164.85009765625003, -67.363671875], [164.90722656250003, -67.41855468749999], [164.91865234375004, -67.44746093750001], [164.86044921875006, -67.50390624999997], [164.83359375000012, -67.54042968750004]]], [[[-67.36240234374995, -66.89453125], [-67.40922851562499, -66.901953125], [-67.52080078124999, -66.89726562500002], [-67.59326171875, -66.87558593750003], [-67.49951171875, -66.80361328125002], [-67.51083984375, -66.75625], [-67.42597656249995, -66.73691406250003], [-67.331689453125, -66.75351562500003], [-67.26875, -66.815234375], [-67.25698242187497, -66.84091796874999], [-67.36240234374995, -66.89453125]]], [[[85.82236328125006, -66.95332031249998], [85.65009765625004, -66.97968750000001], [85.62226562500004, -66.96533203125003], [85.61738281250004, -66.95087890625001], [85.3587890625, -66.85429687500005], [85.31445312499997, -66.7759765625], [85.34033203124997, -66.72333984375001], [85.55283203125012, -66.728515625], [85.80625, -66.77460937499998], [85.9376953125001, -66.894140625], [85.82236328125006, -66.95332031249998]]], [[[48.54599609375006, -66.78417968749997], [48.37792968749997, -66.80732421874998], [48.304492187500074, -66.79785156250001], [48.295996093750006, -66.773828125], [48.29394531250003, -66.75009765624996], [48.30078125000003, -66.72421875000002], [48.357714843750074, -66.70380859375004], [48.637792968750006, -66.70097656249999], [48.751074218750006, -66.71962890625007], [48.7824218750001, -66.73115234375001], [48.785546875, -66.76757812499997], [48.77470703125002, -66.77832031250003], [48.54599609375006, -66.78417968749997]]], [[[163.3019531250001, -66.82119140625005], [163.28359375, -66.88193359375], [163.23457031250004, -66.86796874999999], [163.16386718750002, -66.81914062499999], [163.08964843750002, -66.7005859375], [163.15615234375005, -66.68847656250003], [163.23789062500012, -66.70878906249999], [163.27109375000012, -66.76757812499997], [163.29912109375007, -66.79843750000003], [163.3019531250001, -66.82119140625005]]], [[[86.54179687500007, -66.76748046875005], [86.42666015625005, -66.79199218749997], [86.33701171875006, -66.78759765624997], [86.23222656250007, -66.73291015625001], [86.277734375, -66.69667968750001], [86.38330078125003, -66.6748046875], [86.52060546875012, -66.68691406250005], [86.55673828125006, -66.70576171874998], [86.65195312500012, -66.71816406250002], [86.54179687500007, -66.76748046875005]]], [[[-67.98847656249995, -67.4744140625], [-68.09252929687503, -67.53867187500003], [-68.17509765624996, -67.55820312500002], [-68.25039062499994, -67.53964843749998], [-68.32509765624997, -67.53242187500001], [-68.38129882812495, -67.55537109374998], [-68.43940429687498, -67.65625], [-68.50673828124994, -67.70712890624998], [-68.58041992187503, -67.73281250000007], [-68.62236328124996, -67.72255859375002], [-68.66406250000003, -67.72285156249998], [-68.73369140624999, -67.74570312500003], [-68.81831054687501, -67.75341796875], [-68.90136718749997, -67.74423828124999], [-68.98232421875002, -67.67998046875005], [-69.09755859374997, -67.60273437500004], [-69.120361328125, -67.57792968750005], [-69.13803710937503, -67.51523437499998], [-69.132666015625, -67.45263671875], [-69.082421875, -67.403125], [-68.81992187499998, -67.23359374999997], [-68.73359374999998, -67.15722656250004], [-68.65634765624995, -67.07041015625003], [-68.574609375, -66.99257812499998], [-68.416845703125, -66.85332031250003], [-68.33593749999997, -66.80205078124999], [-67.937646484375, -66.65683593749998], [-67.83051757812493, -66.62431640625002], [-67.71113281249995, -66.63300781250001], [-67.68115234374997, -66.70898437500003], [-67.74082031249995, -66.74619140624998], [-67.932373046875, -66.84453125000002], [-67.96918945312495, -66.98212890624998], [-67.96840820312497, -67.03222656249997], [-67.94892578124998, -67.04482421875005], [-67.87607421874998, -67.06240234375], [-67.827783203125, -67.08193359374998], [-67.76118164062493, -67.12294921875], [-67.687841796875, -67.14736328125], [-67.84804687499997, -67.21914062500005], [-67.95634765624999, -67.25537109374997], [-68.03007812499999, -67.3], [-68.17514648437498, -67.34414062500002], [-68.23510742187503, -67.37197265625], [-68.14443359374994, -67.382421875], [-68.006982421875, -67.41796874999996], [-67.969482421875, -67.45029296874998], [-67.98847656249995, -67.4744140625]]], [[[85.328515625, -66.61191406249998], [85.22246093750002, -66.64345703125], [85.13613281250005, -66.63710937500004], [85.07958984374997, -66.60429687500002], [85.06875, -66.58378906250002], [85.12109374999997, -66.51855468749996], [85.1647460937501, -66.52158203125003], [85.19394531250012, -66.55605468750005], [85.328515625, -66.61191406249998]]], [[[98.84609375, -66.46982421874998], [98.75175781250002, -66.48164062499998], [98.65507812500007, -66.45332031249998], [98.60517578125004, -66.39990234375003], [98.59648437500002, -66.38261718749997], [98.74863281250012, -66.36923828125], [98.94980468750006, -66.42050781249996], [98.84609375, -66.46982421874998]]], [[[162.61142578125012, -66.47734374999999], [162.55712890624997, -66.52509765625004], [162.51132812500006, -66.5201171875], [162.30273437500003, -66.39970703124999], [162.32626953125012, -66.3474609375], [162.29726562500005, -66.30371093749997], [162.30205078125007, -66.2646484375], [162.31054687500003, -66.25126953125005], [162.56328125000007, -66.43261718750003], [162.61142578125012, -66.47734374999999]]], [[[100.26474609375006, -66.21660156249999], [100.133203125, -66.22949218750004], [100.08203124999997, -66.202734375], [100.07626953125006, -66.18808593750003], [100.17441406250006, -66.13105468749997], [100.29052734375003, -66.11240234374999], [100.28154296875002, -66.17998046874999], [100.26474609375006, -66.21660156249999]]], [[[-66.5953125, -66.20068359375003], [-66.81865234374993, -66.31269531250003], [-66.85, -66.30546874999997], [-66.86752929687503, -66.29384765625001], [-66.86699218750002, -66.27480468750004], [-66.79150390625, -66.23359374999998], [-66.77900390624995, -66.11083984375003], [-66.63134765624997, -66.06679687500002], [-66.5751953125, -66.082421875], [-66.62285156250002, -66.13388671875], [-66.59262695312498, -66.17861328124998], [-66.5953125, -66.20068359375003]]], [[[96.6126953125, -66.03583984375003], [96.72734375000007, -66.06083984375005], [96.93164062499997, -66.0583984375], [97.0055664062501, -66.09677734375], [97.01884765625007, -66.13945312499999], [97.015625, -66.16396484375002], [96.933984375, -66.20078124999996], [96.39453124999997, -66.225], [96.30703125, -66.18583984375003], [96.39882812500005, -66.08017578125], [96.49980468750002, -66.04589843750003], [96.6126953125, -66.03583984375003]]], [[[92.60136718750007, -65.80830078125004], [92.47050781250007, -65.8216796875], [92.33300781250003, -65.80722656249999], [92.26279296875012, -65.76005859374997], [92.24814453125006, -65.73994140625004], [92.3014648437501, -65.70673828125004], [92.49638671875002, -65.70214843749999], [92.63378906250003, -65.73066406250003], [92.66455078124997, -65.76044921875005], [92.66962890625004, -65.77480468750005], [92.60136718750007, -65.80830078125004]]], [[[-65.84526367187496, -65.84248046874998], [-66.06391601562501, -65.88085937499997], [-66.17529296874997, -65.86650390624999], [-66.18144531249996, -65.82636718749998], [-66.15346679687497, -65.77373046875], [-66.04960937499993, -65.74472656250005], [-66.06694335937502, -65.66611328125002], [-65.99970703124998, -65.63281249999999], [-65.96831054687499, -65.57099609375001], [-65.83359374999998, -65.52724609375005], [-65.63691406249998, -65.54775390625007], [-65.66796875, -65.62617187500005], [-65.66967773437497, -65.6529296875], [-65.78374023437496, -65.67431640625], [-65.81386718749997, -65.68662109375002], [-65.84082031249994, -65.73847656250001], [-65.83574218749999, -65.81376953124999], [-65.84526367187496, -65.84248046874998]]], [[[100.98144531249997, -65.67753906250005], [100.546875, -65.70126953124998], [100.51230468750006, -65.67539062500003], [100.35058593749997, -65.67294921874999], [100.29257812500006, -65.65126953125002], [100.27031250000007, -65.60332031250002], [100.32412109375, -65.52070312499997], [100.409375, -65.465625], [100.5451171875001, -65.40898437500005], [100.60693359374997, -65.39638671875005], [100.88339843750006, -65.37812], [101.07871093750006, -65.40253906249997], [101.22060546875005, -65.47226562499996], [101.25898437500004, -65.52763671875005], [101.23837890625012, -65.56455078125002], [100.98144531249997, -65.67753906250005]]], [[[103.39726562500002, -65.44531249999997], [103.33720703125002, -65.4685546875], [103.17597656250004, -65.45468750000002], [103.13847656250007, -65.43505859375003], [103.1242187500001, -65.33837890625004], [103.11279296874997, -65.31201171875], [103.05439453125004, -65.28535156249998], [102.78876953125004, -65.23593750000003], [102.75957031250002, -65.16787109375002], [102.7960937500001, -65.136328125], [102.89287109375002, -65.12968749999999], [103.13681640625006, -65.190625], [103.19082031250005, -65.23710937500002], [103.18173828125006, -65.30771484375], [103.18613281250006, -65.33056640624996], [103.26103515625007, -65.37734375], [103.37890625000003, -65.42646484375004], [103.39726562500002, -65.44531249999997]]], [[[-63.31621093749996, -64.86113281249999], [-63.47441406249996, -64.90654296874999], [-63.558349609375, -64.90595703125005], [-63.45927734374996, -64.7962890625], [-63.36689453124998, -64.79208984375003], [-63.21938476562494, -64.72978515625005], [-63.17724609374997, -64.73876953125], [-63.25693359374995, -64.79082031250005], [-63.31621093749996, -64.86113281249999]]], [[[-57.24047851562503, -64.56679687500005], [-57.326269531250006, -64.57070312500005], [-57.43339843749999, -64.54023437499998], [-57.447900390624994, -64.4884765625], [-57.44589843749995, -64.45986328125002], [-57.36562, -64.43876953124999], [-57.314550781250006, -64.43535156250002], [-57.022558593750034, -64.35234374999997], [-56.894726562499926, -64.33300781250003], [-56.95170898437499, -64.38173828125002], [-56.94526367187501, -64.42724609374996], [-56.99101562500002, -64.46796875], [-57.24047851562503, -64.56679687500005]]], [[[-63.18056640624994, -64.46953125000005], [-63.27695312499995, -64.57333984374998], [-63.130517578124966, -64.57236328125003], [-63.03208007812498, -64.53496093750005], [-62.92822265624997, -64.51933593749999], [-62.836523437500034, -64.571875], [-63.02558593749998, -64.6109375], [-63.20258789062498, -64.68027343749999], [-63.27543945312499, -64.7173828125], [-63.35488281250002, -64.73388671875], [-63.45781249999993, -64.72734374999999], [-63.558447265625006, -64.73417968750005], [-63.646875, -64.80302734375005], [-63.73950195312494, -64.83427734375002], [-63.76992187500002, -64.80839843749999], [-63.804394531249926, -64.79150390625], [-64.00708007812503, -64.76855468750003], [-64.09916992187496, -64.73271484375002], [-64.18374023437494, -64.7095703125], [-64.2720703125, -64.69755859375005], [-64.226220703125, -64.63535156249999], [-64.17109374999995, -64.58193359375002], [-63.867138671874926, -64.50976562499999], [-63.896923828124955, -64.48710937499999], [-63.916162109374966, -64.45722656250003], [-63.674414062500006, -64.42138671875], [-63.668310546875006, -64.38398437500003], [-63.68310546875, -64.34277343749997], [-63.605566406250034, -64.31416015625001], [-63.53417968749994, -64.27294921874997], [-63.485595703125, -64.26054687500002], [-63.333593750000034, -64.2662109375], [-63.229638671874994, -64.3236328125], [-63.27070312500001, -64.38066406249997], [-63.18056640624994, -64.46953125000005]]], [[[-62.32578124999998, -64.4244140625], [-62.395898437499966, -64.46464843750003], [-62.45517578124995, -64.47167968750004], [-62.50810546874999, -64.45410156250001], [-62.5796875, -64.5142578125], [-62.72700195312501, -64.49599609375002], [-62.78178710937496, -64.47900390625003], [-62.74682617187494, -64.47167968750004], [-62.72089843750001, -64.44453125000001], [-62.643017578124955, -64.39160156249997], [-62.50400390624995, -64.25341796874999], [-62.479736328125, -64.21064453124998], [-62.590283203124955, -64.13964843749999], [-62.61074218749994, -64.11630859375003], [-62.585693359375, -64.0755859375], [-62.54497070312496, -64.04570312500003], [-62.451416015625, -64.01240234375], [-62.328759765624966, -64.01347656250005], [-62.26762695312493, -64.03994140625002], [-62.26875, -64.09003906250001], [-62.058496093749966, -64.13808593750002], [-62.09384765624998, -64.23457031250005], [-62.174267578124926, -64.29599609375003], [-62.18569335937494, -64.36884765625005], [-62.3037109375, -64.40136718750001], [-62.32578124999998, -64.4244140625]]], [[[-61.95244140624993, -64.07714843749996], [-62.04389648437501, -64.08037109374999], [-62.020751953125, -64.02734375000003], [-61.93627929687503, -63.990234375000014], [-61.798242187499966, -63.966601562499996], [-61.88623046874994, -64.02695312500003], [-61.91113281249997, -64.05449218750005], [-61.95244140624993, -64.07714843749996]]], [[[-57.84599609375002, -64.05390625000001], [-57.808544921874926, -64.06757812500004], [-57.77368164062503, -64.06152343749997], [-57.74116210937498, -64.04785156250003], [-57.710058593750034, -64.01513671875003], [-57.592919921874966, -63.96708984375], [-57.479736328125, -63.96162109375005], [-57.51708984374997, -64.01064453125], [-57.24946289062498, -64.09707031250002], [-57.272802734375034, -64.16621093749998], [-57.22226562499995, -64.22138671875004], [-57.32763671875003, -64.23779296875], [-57.41396484375002, -64.29589843750003], [-57.33837890624997, -64.31826171875005], [-57.29467773437497, -64.36699218750003], [-57.387890624999955, -64.37890624999997], [-57.58076171874998, -64.35039062500002], [-57.68320312499998, -64.35722656249999], [-57.670751953125006, -64.3109375], [-57.70332031249998, -64.29326171875002], [-57.822851562500006, -64.30205078125003], [-57.871484374999966, -64.40097656250003], [-57.90976562499995, -64.41005859375001], [-57.95224609374998, -64.39404296875003], [-57.92070312499996, -64.33125], [-57.97109375000002, -64.32041015625003], [-58.021582031250006, -64.32158203125002], [-58.16948242187502, -64.3685546875], [-58.214062499999955, -64.36972656249996], [-58.30444335937497, -64.31455078125], [-58.019970703124926, -64.24199218750005], [-58.13769531250003, -64.20615234375003], [-58.16220703124995, -64.16074218750002], [-58.14707031249998, -64.09736328124998], [-58.25043945312498, -64.10683593750005], [-58.35200195312498, -64.13066406250002], [-58.39760742187494, -64.13476562499997], [-58.438085937500034, -64.11347656249998], [-58.42495117187502, -64.0677734375], [-58.34189453124998, -63.99433593750005], [-58.274804687499966, -63.91621093750003], [-58.145654296874966, -63.87763671874999], [-58.07036132812499, -63.84746093750006], [-57.97070312500003, -63.834667968750026], [-57.925683593749994, -63.80605468750006], [-57.83134765624996, -63.80380859375005], [-57.779492187499955, -63.868261718750034], [-57.78066406249994, -63.906835937499984], [-57.82695312499996, -63.94921875], [-57.84599609375002, -64.05390625000001]]], [[[-57.374169921874994, -63.807226562500034], [-57.36020507812498, -63.82480468749997], [-57.160839843749955, -63.81572265624999], [-57.10400390625003, -63.84121093750003], [-57.21801757812497, -63.87558593750001], [-57.24775390624998, -63.868359375000054], [-57.34375, -63.878515625], [-57.61635742187494, -63.85361328124998], [-57.683251953124994, -63.81269531249999], [-57.43935546874994, -63.79140625], [-57.374169921874994, -63.807226562500034]]], [[[-60.653125, -63.86660156250005], [-60.77768554687498, -63.90214843750001], [-60.85244140625002, -63.89101562500005], [-60.97216796875, -63.84902343750002], [-60.81005859375, -63.83662109374998], [-60.79667968749993, -63.716699218750065], [-60.71484374999997, -63.668847656249994], [-60.56235351562498, -63.6958984375], [-60.65590820312494, -63.758984374999976], [-60.688867187499994, -63.807910156249996], [-60.654980468749926, -63.85009765624997], [-60.653125, -63.86660156250005]]], [[[-55.87255859374997, -63.535644531250036], [-55.95673828124998, -63.57998046875001], [-56.178369140624994, -63.51328125000001], [-56.235205078125034, -63.46884765625002], [-56.20986328125002, -63.436914062499994], [-55.85791015625, -63.407324218750006], [-55.76181640624998, -63.42207031249999], [-55.71918945312498, -63.49208984374996], [-55.87255859374997, -63.535644531250036]]], [[[-57.020654296874994, -63.3728515625], [-56.92734375, -63.50556640625004], [-56.781835937500034, -63.57167968750001], [-56.83476562499996, -63.63125], [-56.97368164062493, -63.62460937500004], [-57.11918945312502, -63.63779296874998], [-57.152246093749994, -63.57167968750001], [-57.09770507812499, -63.52353515624997], [-57.152246093749994, -63.47910156249998], [-57.28388671874998, -63.490625], [-57.460644531249926, -63.51357421874998], [-57.581494140624955, -63.54658203125005], [-57.736914062500006, -63.61660156250001], [-57.85673828124999, -63.656835937500034], [-58.26298828124996, -63.76337890624998], [-58.53188476562494, -63.91542968750005], [-58.722851562499955, -64.07744140625002], [-58.83896484374998, -64.18681640625], [-59.005322265624955, -64.19492187499998], [-59.04731445312498, -64.23447265625003], [-58.97724609375001, -64.26591796875005], [-58.922998046874966, -64.27929687500001], [-58.79931640625, -64.29267578124998], [-58.81914062499993, -64.33896484375], [-58.90512695312495, -64.35214843750003], [-58.895458984374955, -64.38886718750004], [-58.805908203125, -64.44482421874999], [-58.786083984374955, -64.52421874999999], [-58.89189453125002, -64.53740234375002], [-59.05068359374994, -64.45136718749998], [-59.22939453124994, -64.4435546875], [-59.36967773437502, -64.40351562500001], [-59.46074218749999, -64.34560546875002], [-59.54677734374994, -64.35878906250005], [-59.612158203125034, -64.44013671875001], [-59.57319335937498, -64.53076171875], [-59.64599609375, -64.58369140625004], [-59.73437, -64.55888671875005], [-59.765039062499994, -64.45136718749998], [-59.850195312500034, -64.43359375], [-59.963085937499926, -64.43134765625], [-60.24248046875002, -64.546875], [-60.34052734375001, -64.55058593750005], [-60.39365234374998, -64.609375], [-60.55595703125002, -64.67656250000005], [-60.65996093749999, -64.72919921875001], [-60.91538085937498, -64.90683593749996], [-61.05986328124999, -64.98125], [-61.33183593749999, -65.023828125], [-61.43945312499997, -65.01767578124998], [-61.50302734374995, -64.99970703124997], [-61.603222656249955, -64.98779296875003], [-61.70312, -64.98720703125], [-61.736181640625034, -65.03349609375002], [-61.57744140625002, -65.18564453125], [-61.66342773437495, -65.23857421875005], [-61.85561523437502, -65.23535156250001], [-61.94785156249998, -65.19228515625002], [-62.02451171874998, -65.23251953124998], [-62.08466796874998, -65.2732421875], [-62.14531249999999, -65.33173828125001], [-62.053662109374955, -65.45683593750002], [-61.90336914062499, -65.51347656250002], [-61.79570312499999, -65.52294921874999], [-61.756005859374994, -65.56923828125], [-61.99140624999998, -65.58916015624997], [-62.15058593749998, -65.69882812500002], [-62.22241210937497, -65.775], [-62.305029296875006, -65.8404296875], [-62.29326171875002, -65.91640625000002], [-62.169140624999955, -66.03134765625], [-62.005029296874994, -66.112890625], [-61.839062499999926, -66.11953125000002], [-61.62480468749999, -66.09472656250003], [-61.57470703125, -66.07148437500001], [-61.35913085937494, -66.05878906249998], [-61.26611328125, -65.97998046875001], [-61.19814453125002, -65.97451171875005], [-61.13759765624994, -65.988671875], [-61.03925781249998, -65.99199218749997], [-60.98813476562495, -65.94023437499999], [-60.91279296874998, -65.92089843749997], [-60.81298828124997, -65.93408203124999], [-60.61831054687502, -65.93310546874997], [-60.56538085937498, -65.97939453124998], [-60.62490234374994, -66.03232421875002], [-60.74399414062495, -66.105078125], [-60.85644531249994, -66.06533203125], [-60.955664062500006, -66.07197265625001], [-61.00927734375, -66.11054687499997], [-60.902734374999966, -66.19101562500002], [-60.94243164062496, -66.26376953125], [-61.02841796874998, -66.3365234375], [-61.13427734374997, -66.29023437499998], [-61.149755859375006, -66.21171874999997], [-61.29296874999997, -66.16455078124996], [-61.43193359374996, -66.14472656250001], [-61.52612304687494, -66.22568359374998], [-61.67563476562495, -66.24951171875003], [-61.696484374999926, -66.34316406250002], [-61.756005859374994, -66.42919921874996], [-61.84199218750001, -66.402734375], [-61.87543945312498, -66.29609375000001], [-62.11650390624996, -66.20898437500003], [-62.24125976562499, -66.19707031250002], [-62.494140625, -66.2193359375], [-62.58281249999993, -66.21748046874998], [-62.68203125, -66.23730468750003], [-62.75483398437498, -66.31015625000003], [-62.650292968749994, -66.36367187500002], [-62.615380859374994, -66.43574218750004], [-62.61791992187497, -66.48964843750002], [-62.63754882812498, -66.51113281250005], [-62.65507812500002, -66.55605468750005], [-62.543164062499955, -66.62099609375005], [-62.53652343750002, -66.70703124999999], [-62.62890625, -66.70615234374998], [-62.70478515625001, -66.680078125], [-62.996728515624966, -66.45283203124998], [-63.179541015625006, -66.35253906249997], [-63.25751953124998, -66.26376953125], [-63.44853515625002, -66.24375], [-63.58662109374998, -66.24169921875004], [-63.752539062500034, -66.277734375], [-63.68754882812493, -66.31982421874997], [-63.654394531250034, -66.38291015625003], [-63.75566406249996, -66.40898437500002], [-63.88041992187496, -66.50595703124996], [-63.96435546875003, -66.58876953125005], [-64.01503906249997, -66.60664062500004], [-64.07773437500003, -66.65410156250005], [-63.808789062499955, -66.76093750000004], [-63.76904296875003, -66.80322265625004], [-63.754736328125034, -66.87294921875004], [-63.839599609375, -66.91201171875], [-64.04257812499998, -66.92724609375], [-64.40097656249998, -66.85332031250003], [-64.55400390624999, -66.85175781249998], [-64.60693359375, -66.79960937500002], [-64.686279296875, -66.80625], [-64.73544921875, -66.894140625], [-64.79335937499997, -66.97197265625005], [-64.87812, -67.02451171875], [-64.8541015625, -67.10478515625002], [-64.78549804687498, -67.12373046874997], [-64.83872070312498, -67.15605468749999], [-64.95087890625001, -67.183203125], [-65.02690429687496, -67.21406249999998], [-64.85825195312498, -67.24277343749998], [-64.82646484374996, -67.269140625], [-64.81928710937493, -67.30732421874998], [-65.07958984375003, -67.3353515625], [-65.24853515624997, -67.34199218750003], [-65.35009765624997, -67.3109375], [-65.443115234375, -67.326171875], [-65.50312, -67.37724609375002], [-65.52343749999994, -67.44462890624997], [-65.50390624999997, -67.52822265625004], [-65.47080078124998, -67.58789062500003], [-65.44677734374997, -67.61015625000003], [-65.41806640624998, -67.65957031250007], [-65.57402343749996, -67.78837890625002], [-65.58925781249994, -67.81630859375002], [-65.60004882812501, -67.87568359375004], [-65.52783203124994, -67.92998046874999], [-65.46943359374995, -68.00947265625003], [-65.551171875, -68.04833984375004], [-65.63950195312498, -68.13056640625001], [-65.54624023437498, -68.14667968750001], [-65.3875, -68.15039062499996], [-65.21801757812497, -68.14003906249998], [-64.95883789062503, -68.06757812500005], [-64.88471679687493, -68.05634765624998], [-64.85346679687495, -68.08310546875002], [-64.82949218749997, -68.12744140625], [-64.89594726562501, -68.16835937499998], [-65.36518554687495, -68.2875], [-65.45200195312495, -68.33671874999999], [-65.33139648437498, -68.36416015625], [-65.08974609374997, -68.37021484374998], [-64.99648437499997, -68.4078125], [-65.05454101562498, -68.44931640625002], [-65.14008789062501, -68.48925781249999], [-65.2416015625, -68.58320312500003], [-65.158349609375, -68.61796875], [-64.89829101562495, -68.67333984375], [-64.42890624999998, -68.74609375], [-64.078466796875, -68.77119140625004], [-64.15683593749998, -68.68691406250002], [-64.16923828125002, -68.58251953124997], [-63.924462890624966, -68.49765625], [-63.796484375, -68.4697265625], [-63.21660156250002, -68.41884765625002], [-63.056542968749994, -68.42070312500005], [-62.933300781249926, -68.44257812499998], [-62.979687499999955, -68.486328125], [-63.11474609374994, -68.47060546875], [-63.347509765625034, -68.49941406250001], [-63.70732421874996, -68.5921875], [-63.77343750000003, -68.63183593749999], [-63.74702148437498, -68.70458984374997], [-63.44272460937498, -68.76416015625003], [-63.343505859375, -68.81044921875005], [-63.47822265625001, -68.95117187500003], [-63.455957031249994, -69.04189453125004], [-63.30146484374998, -69.14101562499998], [-63.094384765624966, -69.25302734374998], [-62.99409179687498, -69.32890624999999], [-62.839746093749966, -69.371875], [-62.586816406249966, -69.47724609375001], [-62.45053710937498, -69.584375], [-62.40712890624994, -69.82724609374998], [-62.20244140624999, -70.0279296875], [-61.96108398437502, -70.12011718749997], [-61.93461914062496, -70.19951171874997], [-62.01396484374996, -70.27890624999998], [-62.217871093750006, -70.233203125], [-62.33149414062498, -70.27890624999998], [-62.377783203125006, -70.36484375], [-62.232275390625034, -70.42441406249996], [-62.00078124999993, -70.49716796875003], [-61.50468749999993, -70.49052734375002], [-61.49140624999998, -70.56992187500003], [-61.605322265625006, -70.61669921874997], [-61.696484374999926, -70.67578125000001], [-61.808935546875006, -70.70878906249999], [-61.994140625, -70.72861328125003], [-62.04042968750002, -70.80136718750002], [-61.96108398437502, -70.90058593749998], [-61.70214843750003, -70.85673828125002], [-61.513378906249926, -70.85117187500003], [-61.312841796875034, -70.867578125], [-61.25166015624998, -71.00224609375], [-61.01723632812502, -71.16689453125005], [-60.962255859375006, -71.24462890625], [-61.003076171874966, -71.31933593750003], [-61.14843750000003, -71.34189453125], [-61.2373046875, -71.40058593749998], [-61.369287109374966, -71.45234375000004], [-61.51591796875002, -71.47910156249998], [-61.78955078124997, -71.61601562499999], [-61.909570312499994, -71.630859375], [-61.95878906249999, -71.65781249999998], [-61.72543945312498, -71.67255859375004], [-61.56279296874996, -71.67529296874999], [-61.213574218749955, -71.56406249999998], [-61.08134765624993, -71.58857421874998], [-60.99531249999998, -71.66132812499998], [-60.94902343749999, -71.74726562499998], [-61.03505859375002, -71.82001953124998], [-61.64453125, -71.862890625], [-61.938916015624955, -71.90361328125005], [-62.25664062500002, -72.017578125], [-61.89404296874994, -72.07099609375004], [-61.628027343750034, -72.05273437499997], [-61.49267578124997, -72.07265625000002], [-61.310253906249955, -72.11269531250001], [-61.10747070312502, -72.09150390625004], [-60.951757812500006, -72.05019531249998], [-60.83320312500001, -72.05156249999999], [-60.71943359375001, -72.07265625000002], [-60.704296874999955, -72.14414062500002], [-60.691064453124994, -72.26982421875005], [-60.66459960937493, -72.3625], [-60.730322265625006, -72.42597656249998], [-61.047509765624966, -72.47050781249999], [-61.27978515624994, -72.46826171874997], [-61.2861328125, -72.60078124999997], [-60.93916015625001, -72.69970703124997], [-60.72412109375, -72.646875], [-60.532324218750006, -72.67333984375], [-60.532324218750006, -72.83212890625003], [-60.38466796875002, -73.00732421875001], [-60.25449218749998, -73.01728515625001], [-60.148681640625, -72.937890625], [-60.00976562500003, -72.937890625], [-59.95683593749999, -73.03056640625005], [-60.01640625, -73.18925781250005], [-60.12221679687502, -73.27529296875], [-60.40375976562501, -73.24023437500003], [-60.560693359374994, -73.21142578125003], [-60.68662109374998, -73.27099609375], [-60.89584960937498, -73.32041015625003], [-61.08134765624993, -73.32822265625002], [-61.242089843749994, -73.25029296875005], [-61.428417968749955, -73.19140625000003], [-61.726416015625006, -73.1607421875], [-62.00830078124994, -73.14765625000001], [-61.91474609374998, -73.21572265625002], [-61.78759765625003, -73.2548828125], [-61.737695312499994, -73.37548828124997], [-61.63696289062497, -73.50019531249998], [-61.40546874999998, -73.46708984374999], [-61.07978515624998, -73.538671875], [-60.87885742187498, -73.61201171875001], [-60.79028320312497, -73.71181640625001], [-60.902734374999966, -73.87060546875003], [-61.08828125000002, -73.92949218750005], [-61.20341796874993, -73.95664062499998], [-61.40405273437494, -73.89599609374997], [-61.54541015624997, -73.89599609374997], [-61.69169921874993, -73.92382812500003], [-61.741601562499966, -73.99619140625003], [-61.838232421875034, -74.03203125000005], [-61.319433593750034, -74.03593750000005], [-61.16069335937493, -74.05576171875], [-61.04165039062502, -74.12197265625], [-61.22685546875002, -74.20791015625], [-61.57080078125, -74.19472656249998], [-61.71826171875003, -74.228125], [-61.84277343749997, -74.28964843750005], [-61.33178710937497, -74.32861328125], [-61.12060546875003, -74.30693359375002], [-60.78369140624997, -74.24101562499999], [-60.704296874999955, -74.30712890624997], [-60.838476562500006, -74.37294921875005], [-61.01079101562496, -74.47832031250002], [-61.37016601562499, -74.51181640625], [-61.63999023437498, -74.51357421875002], [-61.99453125, -74.47578125000004], [-62.08886718750003, -74.45283203124998], [-62.235302734374926, -74.44130859375004], [-62.225683593750006, -74.50556640624998], [-62.132714843749994, -74.55], [-61.89443359374994, -74.71308593749998], [-61.85522460937494, -74.7767578125], [-61.92802734374993, -74.86279296875001], [-62.13779296874995, -74.9263671875], [-62.372460937499994, -74.95214843750001], [-62.566796874999966, -74.89580078124999], [-62.70849609374997, -74.73710937499999], [-62.88710937500002, -74.69082031250007], [-63.07231445312502, -74.67753906250002], [-63.178125, -74.68417968750003], [-63.167919921874955, -74.76455078125], [-63.12524414062494, -74.84951171875007], [-63.19799804687494, -74.90908203125002], [-63.35703125, -74.87832031249998], [-63.55878906249998, -74.90566406250005], [-63.750878906249966, -74.95234375000005], [-63.92470703125002, -75.00449218750002], [-63.57099609374998, -75.03027343750003], [-63.3369140625, -75.03476562499998], [-63.17319335937495, -75.11474609375], [-63.231054687500006, -75.15380859374997], [-63.551416015624994, -75.17148437500002], [-63.857519531250006, -75.20615234374998], [-64.27954101562503, -75.29287109375005], [-63.97246093749999, -75.32939453125005], [-63.678417968749955, -75.32792968750002], [-63.47485351562494, -75.33632812500002], [-63.303808593750006, -75.35224609374998], [-63.25751953124998, -75.39853515625], [-63.36337890624998, -75.45146484375005], [-64.05263671874997, -75.57958984375003], [-64.77827148437501, -75.73818359375001], [-65.04438476562495, -75.7875], [-65.32172851562498, -75.81513671874997], [-65.96567382812498, -75.95166015624997], [-66.37041015625002, -76.01337890625004], [-67.518212890625, -76.10976562500004], [-69.30439453125001, -76.35078125000003], [-69.91528320312503, -76.52197265625], [-70.09550781249996, -76.65449218749998], [-70.21015624999995, -76.67412109374999], [-70.55078125, -76.71806640624997], [-70.89501953124994, -76.73935546874996], [-71.79868164062503, -76.75273437500002], [-72.722314453125, -76.68906250000002], [-73.47177734375, -76.67548828125001], [-73.87978515625, -76.69677734375], [-75.26835937499999, -76.58144531250002], [-75.44350585937497, -76.58671875000005], [-75.65927734374995, -76.60820312499997], [-75.83134765624993, -76.60820312499997], [-75.96284179687498, -76.59208984374999], [-76.24418945312502, -76.58535156250002], [-77.19003906249998, -76.62978515625002], [-77.28706054687493, -76.70166015625], [-77.16796875, -76.83388671875004], [-76.823583984375, -76.99345703125005], [-76.24858398437493, -77.27490234375], [-75.93725585937503, -77.33447265624997], [-75.74814453125003, -77.39843750000003], [-75.38691406249998, -77.47421875], [-74.58061523437493, -77.47802734375], [-73.47822265624998, -77.535546875], [-72.85195312500002, -77.59023437500002], [-72.87514648437494, -77.69384765625], [-73.25156249999998, -77.89423828125005], [-73.48500976562494, -77.97080078125002], [-74.04213867187502, -78.109375], [-74.81206054687493, -78.17783203125], [-75.39843750000003, -78.1578125], [-76.43784179687503, -78.04414062500004], [-77.74213867187501, -77.94033203125002], [-79.67900390624999, -77.84257812500002], [-80.1041015625, -77.79658203125005], [-80.6015625, -77.75195312500003], [-80.888525390625, -77.79765625], [-81.10312, -77.84179687500003], [-81.58095703124997, -77.84609375000002], [-81.44101562499995, -77.88564453125], [-79.50966796874994, -78.154296875], [-77.85810546875001, -78.35097656250002], [-77.66479492187497, -78.40146484375], [-77.43256835937501, -78.43466796875002], [-77.45244140624996, -78.56035156250005], [-77.54501953125, -78.65957031250001], [-77.86914062499994, -78.74550781250002], [-78.71162109374998, -78.75205078125002], [-79.76655273437498, -78.82070312500005], [-80.29228515624996, -78.82275390625003], [-80.81630859374997, -78.75429687500002], [-81.92929687499995, -78.55908203124997], [-82.60844726562493, -78.41240234375002], [-83.08251953124997, -78.2466796875], [-83.41206054687495, -78.11464843750002], [-83.77900390624993, -77.98359375000004], [-83.75209960937497, -78.06630859375002], [-83.687744140625, -78.14804687499998], [-83.50825195312493, -78.24804687500001], [-83.24589843749996, -78.35703125], [-83.226953125, -78.40156250000003], [-83.35498046874997, -78.40761718750002], [-83.54443359375003, -78.35527343750002], [-83.70590820312498, -78.40410156250002], [-83.76274414062499, -78.46113281249998], [-83.69663085937503, -78.53730468749997], [-83.59516601562495, -78.61103515624998], [-83.26000976562497, -78.77421875], [-82.97075195312493, -78.81669921875005], [-82.589208984375, -78.91630859374999], [-81.66088867187497, -79.09980468749998], [-81.50292968749994, -79.16289062500005], [-81.22216796874994, -79.29785156250001], [-81.16318359375, -79.40039062500003], [-80.89199218750002, -79.50185546875001], [-80.70478515624998, -79.51718750000002], [-80.534814453125, -79.51279296875], [-80.47875976562503, -79.42617187500005], [-80.48852539062497, -79.32099609375001], [-80.41577148437497, -79.29453125000005], [-80.15117187499999, -79.26806640624999], [-79.45566406249995, -79.30439453125001], [-76.49912109375, -79.32568359375], [-76.21767578124994, -79.38720703125], [-76.10512695312502, -79.46513671874999], [-76.03159179687495, -79.62705078125002], [-76.34394531250001, -79.82089843749999], [-76.55786132812497, -79.90351562500004], [-76.90400390624998, -79.95527343750001], [-77.22226562499998, -79.99414062500003], [-77.70185546874998, -80.00957031250006], [-78.69223632812495, -79.99541015625002], [-79.66040039062503, -79.996875], [-78.90712890624994, -80.08964843750003], [-78.17607421874996, -80.16679687500002], [-77.16044921874999, -80.15292968750003], [-76.75712890624999, -80.13125], [-76.40732421875003, -80.09492187500004], [-76.25961914062498, -80.16005859375], [-75.98564453125002, -80.29501953125003], [-75.82241210937497, -80.33818359375005], [-75.70903320312496, -80.38271484375005], [-75.55502929687495, -80.53085937500003], [-75.49453124999997, -80.61748046875], [-75.34458007812498, -80.71894531249998], [-75.23652343749998, -80.80263671874998], [-75.07558593749997, -80.86005859375004], [-74.80659179687498, -80.88652343750002], [-74.5111328125, -80.83798828124998], [-73.937841796875, -80.81591796875001], [-73.38334960937502, -80.89365234375005], [-73.02949218749995, -80.91728515624997], [-72.55322265625, -80.85312], [-72.17358398437503, -80.76386718749998], [-71.380029296875, -80.68222656249996], [-71.23066406249995, -80.64677734375002], [-71.01767578124998, -80.61904296875005], [-70.68789062499994, -80.62626953125002], [-70.56005859375003, -80.64658203124998], [-70.39243164062498, -80.73544921874996], [-70.239111328125, -80.85664062499997], [-70.012451171875, -80.91777343749999], [-69.77226562500002, -80.96152343750002], [-69.63398437500001, -80.9658203125], [-69.18159179687493, -81.00488281249997], [-68.58984375, -80.96796875], [-68.3265625, -81.00410156249998], [-68.28461914062498, -81.07382812499998], [-68.14375, -81.13037109374996], [-67.96542968749998, -81.14824218750005], [-65.57368164062495, -81.46054687499998], [-64.75014648437497, -81.52167968750001], [-63.47773437500001, -81.55322265625003], [-62.490234375, -81.55673828125003], [-62.35371093749998, -81.57666015625001], [-62.16538085937498, -81.63613281250005], [-62.541845703125034, -81.67832031250003], [-62.945898437500006, -81.68398437500002], [-63.553955078125, -81.66718749999998], [-63.768652343750034, -81.67607421875002], [-64.23266601562497, -81.65976562499998], [-64.47568359375, -81.67167968750002], [-64.69609375, -81.65234374999997], [-65.02158203125003, -81.696484375], [-65.61972656250003, -81.72929687500002], [-65.48662109374999, -81.775], [-65.26376953124998, -81.78564453124996], [-64.81054687500003, -81.80273437499997], [-64.19018554687503, -81.79482421875005], [-64.13710937499997, -81.86933593750004], [-64.70615234374998, -81.8875], [-65.91621093749993, -81.90224609375], [-66.04228515624996, -81.91386718750006], [-66.13383789062496, -81.95341796875003], [-65.95302734374997, -81.97099609374997], [-65.84384765625003, -81.99326171874998], [-65.78662109375, -82.04550781249996], [-65.91318359375003, -82.18320312500003], [-65.71396484375003, -82.27919921875005], [-65.57192382812497, -82.29433593750002], [-65.42441406250003, -82.28037109375003], [-65.17011718749998, -82.31826171875002], [-64.91958007812502, -82.37050781250001], [-64.39658203124998, -82.3744140625], [-63.772851562499994, -82.30429687500002], [-63.46630859374997, -82.3068359375], [-62.6453125, -82.26308593750005], [-61.90166015624999, -82.27109375], [-60.859082031249955, -82.18671875000004], [-60.687109375, -82.18857421874998], [-60.52773437499994, -82.19990234374998], [-60.81718749999993, -82.27578125], [-62.09453124999993, -82.46660156250005], [-62.55302734374999, -82.50332031250007], [-62.73564453124999, -82.52734374999999], [-62.63090820312496, -82.620703125], [-62.46557617187494, -82.71816406250005], [-62.128613281249955, -82.82236328125005], [-61.9169921875, -82.97666015625003], [-61.70893554687498, -83.00996093749998], [-61.312841796875034, -82.93916015625004], [-61.218408203124966, -82.991796875], [-61.200390624999955, -83.09794921875006], [-61.30322265625003, -83.18417968750003], [-61.43632812499996, -83.232421875], [-61.53056640624996, -83.27939453124998], [-61.58984374999997, -83.34121093750005], [-61.42529296875003, -83.39560546875003], [-60.98320312500002, -83.42753906250006], [-60.39702148437496, -83.44072265624999], [-59.85380859374996, -83.44238281249997], [-59.516015625, -83.45839843750004], [-58.289941406249966, -83.12070312499998], [-57.797753906249966, -82.95859375], [-57.55712890624997, -82.89023437500002], [-57.35361328124998, -82.84023437500005], [-56.31787109375, -82.6333984375], [-56.075048828125006, -82.57021484375001], [-55.800683593749966, -82.47841796875005], [-55.294677734375, -82.46484375000004], [-54.60112304687502, -82.31621093750005], [-53.98608398437494, -82.20058593750002], [-53.739599609375006, -82.17841796875004], [-53.557568359374955, -82.16943359374999], [-53.339062499999955, -82.14453124999997], [-52.79887695312493, -82.15361328125005], [-52.414941406249966, -82.13486328124996], [-51.73066406250001, -82.06152343750003], [-51.20966796875001, -82.015234375], [-50.653027343749926, -81.97548828125], [-50.029248046874955, -81.96767578125001], [-48.360791015624955, -81.89228515625001], [-47.886816406250034, -81.92519531250005], [-47.36025390624994, -82.00400390625003], [-47.01987304687498, -82.00322265625005], [-46.56669921875002, -81.97919921875004], [-46.25805664062503, -81.94697265625005], [-46.11914062499997, -82.03955078125], [-46.04638671874997, -82.15869140625001], [-46.19853515624999, -82.27109375], [-46.44833984374998, -82.33984374999997], [-46.516748046874966, -82.45458984375], [-46.17529296874994, -82.51162109374998], [-45.78857421875003, -82.49492187500005], [-45.04375, -82.43798828124999], [-44.45488281250002, -82.36591796875004], [-44.29179687500002, -82.31777343750001], [-44.064208984375, -82.33144531250004], [-43.66933593749994, -82.27011718749998], [-43.18037109374998, -82.01718749999996], [-42.564550781250034, -81.76162109375004], [-42.046289062499966, -81.59785156249998], [-41.711572265624966, -81.40771484374997], [-41.43383789062497, -81.29775390625004], [-41.12587890625002, -81.21484375000003], [-40.91455078124997, -81.17236328124999], [-40.440820312499994, -81.16513671875002], [-39.76230468749995, -81.03203124999999], [-38.77172851562494, -80.88232421874996], [-38.010937499999955, -80.95429687499997], [-37.20927734374996, -81.0638671875], [-36.81240234375002, -80.97470703125003], [-36.49951171874994, -80.95957031249998], [-36.233984375000034, -80.9205078125], [-35.965771484374926, -80.89091796875002], [-35.77587890624997, -80.81269531249998], [-35.52055664062499, -80.745703125], [-35.327001953125006, -80.65068359375002], [-34.349951171875006, -80.60341796874998], [-33.328710937500034, -80.54042968750002], [-33.19130859375002, -80.51865234375003], [-33.05722656249998, -80.53164062500002], [-32.706201171874966, -80.51386718750004], [-32.255712890625034, -80.46074218750005], [-31.634228515624983, -80.44462890625005], [-31.312109374999977, -80.45009765625001], [-31.015429687499932, -80.30810546875003], [-30.42529296874997, -80.27968750000002], [-29.79736328125003, -80.22333984375], [-29.53149414062497, -80.18183593749998], [-29.32910156250003, -80.17207031250004], [-24.24028320312499, -80.06191406250007], [-24.019824218750017, -80.00898437500003], [-23.57446289062497, -79.96484375], [-23.40683593749992, -79.85898437500002], [-24.088281250000023, -79.81484375], [-24.29985351562496, -79.77080078124999], [-24.533886718749926, -79.75791015625003], [-24.670410156249943, -79.77460937499998], [-25.258642578124977, -79.7625], [-29.949316406250006, -79.5990234375], [-30.04907226562497, -79.58535156250005], [-30.21123046874996, -79.48525390625], [-30.177929687499926, -79.304296875], [-30.31591796874997, -79.1630859375], [-30.64526367187503, -79.12412109374998], [-30.98515624999999, -79.12792968750003], [-31.412792968749983, -79.14521484375001], [-32.54184570312495, -79.22216796874996], [-32.994238281250034, -79.22880859374999], [-34.197363281250006, -79.11025390625], [-34.99492187499993, -78.97753906250003], [-35.51596679687495, -78.93300781250002], [-35.890087890624955, -78.84355468750002], [-36.23916015625002, -78.77421875], [-36.265625, -78.61552734375], [-36.180859374999955, -78.46835937500003], [-35.50927734375, -78.04121093749998], [-35.08759765624998, -77.83710937500004], [-34.80834960937503, -77.82060546874997], [-34.55146484375001, -77.72851562500004], [-34.290185546874994, -77.521875], [-34.07578125, -77.425390625], [-33.591162109375034, -77.31123046875003], [-33.37675781249996, -77.28164062500004], [-32.61406250000002, -77.14082031250004], [-32.40527343750003, -77.13623046875], [-32.063378906249994, -77.15986328125001], [-31.67578125, -77.03310546875002], [-30.489208984374926, -76.76230468750002], [-30.221972656249932, -76.66035156250004], [-29.891552734374955, -76.59794921875002], [-28.933642578125017, -76.37031250000001], [-28.07939453124999, -76.2578125], [-27.653076171875, -76.22636718749999], [-27.134521484374943, -76.15732421875005], [-26.56005859374997, -76.0546875], [-26.05932617187503, -75.95722656250004], [-24.26958007812499, -75.76699218750002], [-23.197265624999943, -75.71767578125001], [-22.465478515624994, -75.66103515625002], [-21.94809570312492, -75.69414062500002], [-21.433789062499955, -75.68310546874997], [-20.989013671875, -75.634375], [-20.78330078124995, -75.59394531250003], [-20.4875, -75.49199218750005], [-19.493017578124977, -75.53994140625004], [-18.850927734374977, -75.47021484375004], [-18.585156249999926, -75.46259765625], [-18.304589843749966, -75.43134765625003], [-18.41513671874995, -75.39648437500003], [-18.516943359374977, -75.38994140625003], [-18.617285156250006, -75.34238281250002], [-18.749218749999955, -75.24208984375002], [-18.617285156250006, -75.11533203125003], [-18.516943359374977, -75.05195312500001], [-18.221191406249943, -74.97451171875004], [-18.068261718749966, -74.86298828124997], [-17.922753906249994, -74.69921875], [-17.43583984374999, -74.37910156249998], [-17.299023437499926, -74.33388671875], [-16.98925781249997, -74.31982421874997], [-16.727099609374932, -74.32763671874997], [-16.429541015624977, -74.32392578125001], [-15.672509765624937, -74.40732421875003], [-15.53125, -74.37558593749998], [-15.289746093749955, -74.28085937500003], [-15.089160156249932, -74.16328124999997], [-14.658935546874943, -73.98886718749996], [-14.57382812499992, -73.9375], [-14.611425781249949, -73.85175781250001], [-15.259619140624949, -73.88886718750001], [-15.74882812499996, -73.94560546875003], [-16.220117187499937, -73.91572265624998], [-16.281884765625023, -73.8669921875], [-16.180859374999955, -73.83027343749998], [-16.00312, -73.81591796875], [-15.935644531250006, -73.75761718750002], [-16.097460937500017, -73.70908203124998], [-16.38774414062499, -73.68134765625001], [-16.51884765624996, -73.64404296874997], [-16.507031249999955, -73.55595703125005], [-16.435205078124994, -73.42568359374998], [-16.27910156249999, -73.38847656250005], [-16.14902343749995, -73.33447265624997], [-15.802832031249949, -73.15214843750003], [-15.595996093749989, -73.09677734375003], [-15.007031249999983, -73.04746093750002], [-14.320996093749926, -73.12304687499997], [-14.164697265624994, -73.10244140625002], [-14.00009765624992, -73.00058593749998], [-14.16831054687492, -72.84326171874999], [-14.298242187500023, -72.78457031250002], [-14.297753906249994, -72.7330078125], [-13.93896484375, -72.75625], [-13.602832031249989, -72.79208984375003], [-13.208593749999977, -72.78505859375002], [-12.746923828124977, -72.62890625000001], [-12.094726562499972, -72.49814453125002], [-11.777343749999972, -72.44404296875001], [-11.496972656249966, -72.41289062499997], [-11.34648437499996, -72.28164062500005], [-11.121386718749932, -72.03154296874999], [-10.958105468749977, -71.90195312499998], [-10.961035156249949, -71.82236328125], [-11.009228515624983, -71.75791015625003], [-11.179345703125023, -71.77685546874997], [-11.33305664062496, -71.78554687500007], [-11.696875, -71.71933593749998], [-12.148193359374943, -71.61367187500005], [-12.28452148437492, -71.49511718749996], [-12.351318359374943, -71.38974609374998], [-12.207812499999932, -71.33222656249998], [-12.073681640624955, -71.29687], [-11.92612304687492, -71.288671875], [-11.663037109374955, -71.33125], [-11.328076171874926, -71.43974609375005], [-11.16015625, -71.48115234375004], [-10.969824218749949, -71.56005859374996], [-10.825439453124943, -71.5533203125], [-10.65947265624996, -71.44267578125002], [-10.520068359374989, -71.29550781249998], [-10.406640624999966, -71.25029296874999], [-10.230566406249977, -71.20097656249999], [-10.033496093749989, -71.13066406250005], [-10.122314453124972, -71.06093750000005], [-10.331005859374926, -71.0240234375], [-10.359960937499977, -70.98242187499996], [-10.270605468749977, -70.93574218750004], [-10.098730468749949, -70.9263671875], [-9.887988281250017, -71.02734374999997], [-9.599365234375, -71.09531250000003], [-9.40234375, -71.11757812500005], [-9.230664062499926, -71.17402343750001], [-8.96591796874992, -71.36132812499997], [-8.646484374999943, -71.67275390625], [-8.497705078124994, -71.67480468749997], [-8.216455078124994, -71.6470703125], [-7.915820312499932, -71.63535156250002], [-7.713720703124977, -71.54648437500003], [-7.668994140624932, -71.32431640624998], [-7.590136718749932, -71.22373046875], [-7.617968749999932, -71.12148437500005], [-7.756884765624989, -71.01718750000003], [-7.873486328124926, -70.94033203125], [-7.854931640624983, -70.88457031250002], [-7.752734374999932, -70.84277343750003], [-7.619775390624937, -70.82900390625005], [-7.388134765625011, -70.78691406250002], [-7.03159179687492, -70.83515624999998], [-6.83818359374996, -70.84453125000002], [-6.547509765624994, -70.81689453124999], [-6.245214843749949, -70.75576171875005], [-5.936328124999989, -70.71269531249999], [-5.694726562499966, -70.74531249999997], [-5.587890624999972, -70.85673828125002], [-5.708691406249983, -70.96826171875], [-5.903808593749943, -71.05185546874998], [-6.080273437499926, -71.15410156250003], [-6.12675781249996, -71.265625], [-6.11748046874996, -71.32597656250005], [-5.950048828124949, -71.34160156250005], [-4.450146484374983, -71.32773437499996], [-4.253222656249932, -71.33847656250002], [-3.994824218749955, -71.33886718750001], [-3.71318359374996, -71.374609375], [-3.239648437499937, -71.36044921874998], [-2.812011718749943, -71.32099609375001], [-2.610253906249966, -71.32080078124997], [-2.261328124999949, -71.35712890625001], [-2.014599609374955, -71.43339843749999], [-1.500634765624966, -71.41230468750005], [-1.354248046874972, -71.38681640625], [-1.21635742187496, -71.28417968749997], [-1.067773437499966, -71.265625], [-0.89584960937492, -71.34921875], [-0.840087890624943, -71.53974609374998], [-0.759863281249949, -71.63027343750005], [-0.543164062499926, -71.71269531250005], [-0.326953124999932, -71.64189453125002], [-0.184570312499972, -71.55888671874999], [0.154199218750023, -71.39794921874997], [0.53847656250008, -71.27421874999999], [0.834960937499972, -71.20234375], [1.55224609375, -71.0802734375], [1.908691406250057, -71.00361328125001], [2.609472656250006, -70.90009765624998], [3.506933593750063, -70.84443359375001], [5.113085937500074, -70.6556640625], [5.643945312500051, -70.63632812499998], [6.50800781250004, -70.58642578125003], [6.950976562500045, -70.53525390624998], [7.401171875000017, -70.49443359375002], [7.676757812500028, -70.35634765625005], [8.306738281250034, -70.46162109375], [8.523046875000034, -70.473828125], [8.817480468750063, -70.39082031250004], [9.141601562500028, -70.18369140625003], [9.613476562500068, -70.26904296875003], [9.885546875000074, -70.40292968750003], [10.217675781250051, -70.50791015625], [10.968847656250034, -70.68769531250004], [11.20351562500008, -70.72871093750005], [11.701269531250034, -70.76660156249996], [11.83359375, -70.73652343750004], [12.067968750000063, -70.61650390625002], [12.308789062500011, -70.44326171875], [12.46162109375004, -70.3701171875], [12.681933593750074, -70.30869140625], [12.92939453125004, -70.21337890624996], [12.864550781250074, -70.16230468750004], [12.723437500000017, -70.14365234374996], [12.59511718750008, -70.11738281250004], [12.626269531250017, -70.06562], [13.065625, -70.05361328125001], [13.297949218750006, -70.22958984374998], [13.532617187500023, -70.2875], [13.822656250000051, -70.34316406250002], [14.491796875000034, -70.29960937500003], [15.063867187500051, -70.29472656250002], [15.562890625000023, -70.33076171874998], [15.806933593750074, -70.32402343750003], [16.025195312500045, -70.19345703124998], [16.381054687500068, -70.1451171875], [16.584863281250023, -70.20380859375005], [16.70917968750004, -70.39726562500003], [17.166699218749983, -70.45087890625003], [18.124609375, -70.54033203125005], [18.232031250000034, -70.51826171874998], [18.351367187500017, -70.41552734375003], [18.432617187500057, -70.28994140625002], [18.627343750000023, -70.26943359375001], [18.877246093750045, -70.2013671875], [19.009375, -70.21210937499997], [19.196386718750034, -70.29316406250004], [19.132324218750057, -70.49189453125004], [19.02656250000001, -70.67402343750001], [19.152929687499977, -70.8208984375], [19.26513671875003, -70.90234374999999], [19.409277343749977, -70.91699218750004], [19.65185546875003, -70.92060546874998], [19.94423828125008, -70.91015624999997], [20.128125, -70.91757812499998], [21.07080078125, -70.84345703124998], [21.18603515625003, -70.68056640625002], [21.337304687500023, -70.49511718749997], [21.70498046875005, -70.25849609375001], [21.848925781250074, -70.2767578125], [21.96230468750008, -70.300390625], [22.21582031250003, -70.41728515625002], [22.366015625000074, -70.47509765624999], [22.39648437499997, -70.56132812500006], [22.233691406250045, -70.64267578125002], [22.277832031250057, -70.69560546875006], [22.445410156250006, -70.73974609375], [22.97900390625, -70.81035156249999], [23.14990234375, -70.79628906250005], [23.406835937500034, -70.7232421875], [23.664843750000017, -70.575], [23.803613281250023, -70.40458984375002], [24.02412109375001, -70.41337890625002], [24.23574218750005, -70.44863281250002], [24.385742187500057, -70.53691406250006], [24.385742187500057, -70.70439453124999], [24.58837890625003, -70.82041015624999], [24.75673828125005, -70.89208984375003], [25.18740234375005, -70.97099609375003], [25.65019531249999, -70.990625], [25.97412109375, -71.03740234375006], [26.498828125000045, -71.01953124999997], [26.75439453124997, -70.96728515624999], [26.91796875, -70.95371093749998], [27.206835937500045, -70.91093750000005], [27.508593750000074, -70.81328125000005], [27.697753906250057, -70.7724609375], [28.38642578125001, -70.68203125000005], [28.91152343750005, -70.58310546874996], [29.46386718749997, -70.40625], [30.003320312499994, -70.3], [30.834082031250063, -70.24628906250001], [31.06289062500005, -70.22470703125005], [31.378808593749994, -70.22578125], [32.159570312499994, -70.09980468750001], [32.45654296875003, -70.02597656249998], [32.6212890625001, -70.00058593750003], [32.80976562500004, -69.909375], [32.911523437499994, -69.73369140625002], [32.989355468750006, -69.62421875000001], [32.97597656250005, -69.51699218750002], [32.903125, -69.3787109375], [32.73798828125004, -69.2548828125], [32.5675781250001, -69.07421874999997], [32.64160156249997, -68.86894531249997], [32.77617187500002, -68.78310546875], [33.12148437500005, -68.68916015625004], [33.465625, -68.670703125], [33.85351562499997, -68.68300781250002], [34.19287109374997, -68.70244140624999], [34.21933593750006, -68.790625], [34.07421874999997, -68.88535156250003], [33.884863281250006, -68.97929687499999], [33.77207031250006, -69.02001953125003], [33.8136718750001, -69.09931640625001], [34.05859374999997, -69.11054687499998], [34.59589843750004, -69.09453125000002], [34.74951171874997, -69.16767578125], [35.13134765624997, -69.48691406250002], [35.2248046875001, -69.6373046875], [35.35703125, -69.68134765625001], [35.56767578125002, -69.66005859375002], [36.01777343750004, -69.66181640625004], [36.33115234375006, -69.63935546874998], [36.58593749999997, -69.63789062500004], [36.71875, -69.65224609375004], [36.855761718750074, -69.72558593749997], [37.11484375, -69.81044921875002], [37.37451171874997, -69.74785156249997], [37.55976562500004, -69.718359375], [37.78710937500003, -69.72568359374999], [38.144335937500074, -69.82421875], [38.499414062499994, -70.05615234375], [38.885546875000074, -70.171875], [38.91171875000006, -70.09785156250004], [38.85927734375005, -70.0060546875], [39.01875, -69.92421875000002], [39.211328125, -69.78593750000002], [39.48701171875004, -69.6080078125], [39.70507812499997, -69.42558593750005], [39.76230468750006, -69.17333984375], [39.86386718750006, -68.96699218749997], [40.04169921875004, -68.8677734375], [40.215625, -68.80488281249998], [40.48388671874997, -68.73886718750003], [40.81708984375004, -68.72363281250003], [41.132714843749994, -68.57509765625007], [41.356347656249994, -68.51494140624997], [41.824609375, -68.4326171875], [42.408789062500006, -68.35185546875006], [42.81953125000004, -68.12324218750003], [42.96093749999997, -68.09531250000002], [43.17089843750003, -68.05976562499997], [43.55410156250005, -68.04560546875001], [44.17753906250002, -67.97246093750005], [44.37285156250002, -67.961328125], [44.699804687500006, -67.904296875], [44.989550781250074, -67.76923828125003], [45.19697265625004, -67.73115234374998], [45.56933593749997, -67.73642578125], [45.88769531249997, -67.659765625], [46.15390625000006, -67.65703124999999], [46.399023437500006, -67.61757812500004], [46.43652343749997, -67.53339843750003], [46.319726562499994, -67.4765625], [46.31728515625005, -67.40195312499998], [46.45410156250003, -67.30361328125002], [46.559667968750006, -67.26816406249999], [46.883886718750006, -67.27480468750002], [47.15439453125006, -67.35722656250002], [47.35156249999997, -67.3619140625], [47.40292968750006, -67.40917968750003], [47.231347656249994, -67.46826171875], [47.11718750000003, -67.57265625000002], [47.3141601562501, -67.66494140625], [47.48984375, -67.72792968750005], [47.703515625, -67.71621093750005], [47.95859375, -67.66005859375], [48.20996093749997, -67.69931640624999], [48.321679687499994, -67.78525390625], [48.321679687499994, -67.91748046875003], [48.37451171875003, -67.98808593750002], [48.5509765625001, -67.92636718749998], [48.64804687500006, -67.79404296875], [48.62001953125005, -67.62519531249998], [48.63037109375003, -67.52060546875], [49.05292968750004, -67.35244140625002], [49.219335937500006, -67.22685546875002], [48.92304687500004, -67.19970703125], [48.71367187500002, -67.21689453125003], [48.598437500000074, -67.17128906250007], [48.465234375, -67.04345703124996], [48.83027343750004, -66.93828125000002], [49.24707031249997, -66.94160156249998], [49.488671875, -67.03095703124998], [50.006152343750074, -67.17519531250005], [50.29296874999997, -67.17216796874997], [50.55302734375002, -67.19433593749997], [50.60595703124997, -67.15019531250003], [50.508886718750006, -66.93857421874999], [50.52089843750005, -66.82001953125], [50.30605468750005, -66.7533203125], [50.2443359375001, -66.60341796875002], [50.332421875, -66.44462890624999], [50.58828125, -66.35644531249997], [50.93691406250005, -66.31542968749997], [51.6875, -66.07216796875005], [51.88457031250002, -66.02001953125], [52.378222656250074, -65.96914062500002], [52.95527343750004, -65.94550781250001], [53.671777343749994, -65.85869140624999], [54.94785156250006, -65.91630859375002], [55.29042968750005, -65.95419921875], [55.50449218750006, -66.00263671875001], [55.710351562499994, -66.07998046875005], [55.97402343750005, -66.209375], [56.36152343750004, -66.37275390625001], [56.859375, -66.42343750000003], [57.000292968750074, -66.47480468750001], [57.18544921875005, -66.61328124999997], [56.9865234375001, -66.70439453124999], [56.82363281250005, -66.71269531249999], [56.51005859375002, -66.65927734375003], [56.29453125000006, -66.60341796875002], [56.145898437499994, -66.62607421875], [56.291894531249994, -66.72109375], [56.45322265625006, -66.77978515624997], [56.47968750000004, -66.85917968749999], [56.39140625000002, -66.97382812499998], [55.80273437499997, -67.19931640625], [56.15488281250006, -67.26455078125005], [56.36591796875004, -67.2125], [56.56210937500006, -67.11591796874998], [56.760058593750074, -67.07333984375], [56.89160156250003, -67.05625], [57.36113281250002, -67.05263671875005], [57.62744140625003, -67.0140625], [57.82812, -67.04130859375005], [58.026757812499994, -67.10341796875], [58.317480468750006, -67.1630859375], [58.737402343750006, -67.22958984375003], [59.250781250000074, -67.48496093750002], [59.650195312500074, -67.45859374999998], [59.86757812500005, -67.403125], [60.48203125, -67.38515625000002], [61.012109375, -67.49951171874997], [61.30908203124997, -67.540234375], [62.17392578125006, -67.57548828124999], [62.68789062500005, -67.64755859375], [63.017675781250006, -67.56181640625005], [63.23759765625002, -67.52685546875003], [63.699023437500074, -67.50830078124997], [63.93125, -67.52607421875004], [64.5736328125, -67.62041015624999], [65.70751953124997, -67.71640625], [66.48837890625, -67.76552734374998], [67.17480468749997, -67.76796875000002], [67.50244140625003, -67.81015625], [68.09853515625005, -67.85410156249999], [68.32792968750002, -67.88955078125002], [68.89951171875006, -67.86210937500002], [69.16718750000004, -67.82480468749998], [69.41640625, -67.74296875], [69.55917968750006, -67.76318359375003], [69.65595703125004, -67.86455078124999], [69.60302734375003, -68.04101562499997], [69.7044921875, -68.16083984375004], [69.788671875, -68.27949218749997], [69.90742187500004, -68.3794921875], [69.98222656250002, -68.46425781250005], [69.92792968750004, -68.53535156250004], [69.76191406250004, -68.59853515625005], [69.53417968750003, -68.73691406249999], [69.54687, -68.85664062500004], [69.64560546875, -68.93222656249999], [69.53076171874997, -69.02402343750003], [69.6146484375, -69.1537109375], [69.6294921875, -69.23164062499997], [69.5494140625, -69.29375], [69.371875, -69.33144531250005], [69.06494140625003, -69.33740234375003], [68.90625, -69.37275390625004], [68.87978515625005, -69.46972656249997], [68.95917968750004, -69.54023437500004], [69.13554687500002, -69.57792968749999], [69.18847656250003, -69.65488281250003], [69.16201171875005, -69.76962890624998], [69.08261718750006, -69.86660156250001], [68.92050781250006, -69.91181640624998], [68.74375, -69.92138671874997], [68.41523437500004, -69.90214843750006], [68.178125, -69.8373046875], [68.02714843750007, -69.89443359375], [67.91699218749997, -69.95273437499998], [67.57539062500004, -70.08789062499997], [67.4166015625, -70.17714843750004], [67.26796875, -70.27314453124997], [67.65898437500002, -70.32597656249999], [67.94082031250005, -70.4228515625], [68.559375, -70.4125], [68.75742187500006, -70.36992187500005], [69.0208984375, -70.3251953125], [69.16201171875005, -70.33398437500001], [69.2501953125001, -70.4310546875], [69.1966796875, -70.58525390625005], [69.18837890625, -70.70458984375003], [68.8727539062501, -71.03515624999996], [68.76796875, -71.09072265625], [68.6237304687501, -71.1814453125], [68.44755859375007, -71.2515625], [68.31054687499997, -71.28652343750001], [68.03740234375002, -71.39101562499998], [67.87333984375007, -71.57978515624998], [67.69355468750004, -71.73671875000007], [67.4322265625, -72.00292968750003], [67.28105468750002, -72.290625], [67.21484375000003, -72.46142578125], [67.11337890625006, -72.64111328125001], [66.89208984375003, -72.94863281250005], [66.746484375, -72.99980468749999], [66.49765625, -73.12548828125003], [66.56914062500002, -73.20917968750001], [66.76474609375, -73.21689453124999], [67.003125, -73.23642578124998], [67.32207031250002, -73.30029296875001], [67.74863281250006, -73.16816406250001], [67.97138671875004, -73.08564453124998], [68.01552734375, -72.91816406249997], [67.97138671875004, -72.75058593750003], [68.10683593750005, -72.65068359375002], [68.41982421875005, -72.5150390625], [69.15703125000002, -72.41865234374998], [69.30947265625, -72.40878906250003], [69.55468750000003, -72.37451171874997], [69.76972656250004, -72.25361328125004], [69.9621093750001, -72.13291015625003], [70.2943359375, -72.05537109374997], [70.57285156250006, -71.93095703125002], [70.61621093750003, -71.84208984375005], [70.7316406250001, -71.822265625], [71.07880859375004, -71.73671875000007], [71.16787109375005, -71.67158203125003], [71.27675781250005, -71.62392578125], [71.34921875000006, -71.51386718750004], [71.37880859375005, -71.3091796875], [71.46484374999997, -71.15458984375005], [71.63388671875006, -70.94921875000003], [71.77138671875, -70.80126953125], [71.9048828125, -70.706640625], [72.26259765625005, -70.65673828124996], [72.41796875000003, -70.59863281250003], [72.62236328125007, -70.4720703125], [72.76035156250006, -70.39570312499998], [72.74433593750004, -70.23916015625005], [72.82207031250002, -70.09589843750001], [73.04140625, -70.00966796875002], [73.3248046875, -69.84892578125005], [73.67607421875007, -69.82578125000003], [73.94218750000002, -69.7431640625], [74.2267578125001, -69.80039062500002], [74.57109375000007, -69.87958984374998], [75.1478515625, -69.85546874999997], [75.42382812499997, -69.89306640624999], [75.63554687500002, -69.84892578125005], [75.820703125, -69.72548828125004], [75.8912109375, -69.57558593750005], [76.11171875000005, -69.48740234375003], [76.35976562500005, -69.49023437499999], [76.77011718750006, -69.33964843750005], [77.19199218750006, -69.20595703124998], [77.54091796875, -69.17441406250003], [77.81748046875012, -69.06894531250003], [78.01513671874997, -68.89189453125003], [78.22851562500003, -68.75615234375], [78.48896484375004, -68.62578124999999], [78.56347656250003, -68.39375], [78.7262695312501, -68.27783203124999], [79.03515625000003, -68.175390625], [79.2877929687501, -68.11933593750003], [80.36308593750002, -67.94687], [81.18740234375, -67.83125], [82.0169921875, -67.69003906249996], [82.27324218750007, -67.69169921875005], [82.60703125000012, -67.61308593750002], [83.15781250000006, -67.61054687500003], [83.30429687500006, -67.60302734375], [83.49365234375003, -67.44121093749999], [83.90371093750005, -67.29199218749997], [84.16074218750012, -67.24414062499999], [84.48515625000002, -67.11445312500004], [84.74833984375002, -67.10224609375004], [85.11679687500012, -67.12558593749999], [85.42900390625002, -67.16093749999999], [85.71074218750002, -67.16132812499998], [86.11835937500004, -67.05498046874999], [86.75019531250004, -67.037109375], [86.94658203125002, -66.98554687499997], [87.08486328125005, -66.94013671875004], [87.98027343750002, -66.78847656250005], [88.3141601562501, -66.81748046875], [88.78945312500005, -66.79199218749997], [89.0765625, -66.79941406249998], [89.3517578125001, -66.81816406249997], [89.69843750000004, -66.82304687499999], [90.29296875000003, -66.76962890625003], [90.54726562500005, -66.73427734375002], [91.02167968750004, -66.60283203124999], [91.54609375000004, -66.57207031250002], [91.7770507812501, -66.5375], [92.0734375000001, -66.50791015625], [92.31230468750007, -66.55859375000003], [92.48583984374997, -66.60429687500002], [92.59199218750004, -66.61445312500004], [92.73056640625012, -66.62441406250002], [93.0749023437501, -66.57109375], [93.35800781250006, -66.58544921875], [93.72167968749997, -66.64296875], [93.9642578125, -66.6896484375], [94.08876953125005, -66.68886718750002], [94.31347656250003, -66.64716796875004], [94.58681640625, -66.54355468749998], [94.83984374999997, -66.50136718750001], [95.08398437499997, -66.52744140624999], [95.24794921875005, -66.57119140625002], [95.54101562499997, -66.63095703125003], [95.9914062500001, -66.62119140624999], [96.42373046875005, -66.59960937500003], [96.78886718750002, -66.55058593749999], [97.10058593750003, -66.49941406250005], [97.38847656250002, -66.57861328125003], [97.71982421875012, -66.60732421875001], [98.25761718750002, -66.46748046875004], [98.46171875000002, -66.49853515624997], [98.603125, -66.53476562499998], [98.7201171875, -66.553125], [98.85888671875003, -66.67080078125007], [99.37011718749997, -66.64824218749999], [99.82431640625006, -66.54863281250005], [100.21171875000002, -66.47392578125002], [100.5912109375, -66.42519531250002], [100.8890625, -66.35800781250002], [101.32714843749997, -66.10048828125005], [101.32089843750012, -66.0208984375], [101.38134765625003, -65.97304687500002], [101.47441406250007, -65.951171875], [102.17412109375007, -65.95419921875], [102.39218750000006, -65.93261718749996], [102.67421875000005, -65.86513671875007], [103.16660156250012, -65.91689453125004], [103.63876953125012, -65.99892578125005], [103.76347656250002, -65.98974609374996], [103.95117187499997, -65.98808593749997], [104.28906249999997, -66.03916015624999], [104.66699218749997, -66.13681640624999], [105.00039062500005, -66.16406250000003], [106.38691406250004, -66.41064453125], [107.17089843749997, -66.47041015625001], [107.56552734375012, -66.55234375], [107.66728515625007, -66.58037109375002], [107.78505859375005, -66.66406250000003], [107.99169921874997, -66.67207031249997], [108.1579101562501, -66.6390625], [108.37617187500004, -66.76582031249997], [108.91005859375, -66.8619140625], [109.46279296875, -66.90869140625003], [109.82373046874997, -66.83369140625004], [110.43701171874997, -66.62109374999997], [110.62226562500004, -66.5240234375], [110.58701171875006, -66.31230468750005], [110.90673828125003, -66.07666015625], [111.453125, -65.96093750000004], [112.13027343750005, -65.90009765624998], [112.54785156250003, -65.84794921875002], [113.09941406250007, -65.79990234375], [113.36796875000007, -65.84873046875], [113.50214843750004, -65.88632812500003], [113.70976562500007, -65.92958984375005], [113.9544921875, -66.06044921875007], [114.33691406250003, -66.36015625000002], [114.6185546875, -66.46796875000004], [114.86953125, -66.476953125], [115.082421875, -66.49296874999999], [115.31035156250007, -66.56083984375005], [115.63535156250012, -66.77119140625], [115.44189453124997, -66.95800781249996], [115.27373046875007, -67.02792968749999], [114.57060546875002, -67.10849609374998], [114.25976562500003, -67.172265625], [113.99121093750003, -67.2119140625], [113.9125, -67.36767578125001], [114.0265625000001, -67.44121093749999], [114.3190429687501, -67.40566406250002], [114.65791015625004, -67.38789062500004], [114.92578124999997, -67.35654296874998], [115.171875, -67.30781249999998], [115.3841796875, -67.23808593749999], [115.88525390624997, -67.201953125], [116.21464843750002, -67.14277343750003], [116.50908203125002, -67.10791015625003], [116.71347656250012, -67.04716796875], [116.92363281250002, -67.05546875], [117.13193359375012, -67.11435546875], [117.29785156249997, -67.10927734375005], [117.74472656250006, -67.12851562499996], [117.95195312500002, -67.08535156250005], [118.13867187500003, -67.082421875], [118.32578125000006, -67.11503906249997], [118.51894531250005, -67.16093749999999], [118.71386718749997, -67.17167968750005], [118.96464843750002, -67.14482421875], [119.31826171875, -67.07080078125003], [119.76796875000005, -66.99150390625003], [120.18730468750002, -66.96621093750002], [120.28925781250004, -66.96660156250002], [120.37480468750002, -66.98378906250005], [119.95371093750006, -67.07587890624998], [119.2806640625, -67.19921874999997], [118.92167968750002, -67.31972656250002], [119.1330078125001, -67.370703125], [120.40039062500003, -67.23603515625001], [120.97871093750004, -67.13574218750001], [121.48759765625002, -67.09072265625], [121.61318359375, -67.05703125000005], [122.03310546875, -66.90175781250005], [122.18281250000004, -66.85947265625003], [122.63300781250004, -66.80488281250003], [123.22167968749997, -66.74511718750001], [123.66660156250012, -66.67685546874996], [123.96933593750006, -66.60810546874998], [124.19619140625, -66.60078125000001], [124.3705078125, -66.65224609375002], [124.5978515625001, -66.70820312500004], [124.82158203125002, -66.69453125000001], [125.0951171875, -66.64111328124997], [125.28632812500004, -66.51582031250001], [125.39794921875003, -66.42441406249996], [125.60302734374997, -66.39335937500003], [125.865625, -66.36445312500001], [126.07714843750003, -66.39550781250003], [126.42373046875005, -66.46240234374997], [126.6647460937501, -66.49755859375003], [126.87363281250012, -66.759375], [127.36542968750004, -66.98964843750001], [127.54121093750004, -67.05107421874999], [127.96806640625007, -67.02792968749999], [128.43056640625005, -67.119140625], [128.62783203125, -67.10712890625004], [128.81640624999997, -67.08037109375002], [128.98242187500003, -67.0982421875], [129.23691406250012, -67.04160156250002], [129.5, -66.7529296875], [129.74121093749997, -66.46855468749999], [129.9757812500001, -66.34482421875], [130.1205078125, -66.29150390624997], [130.30058593750007, -66.26845703125], [130.57851562500005, -66.20859375000005], [130.95175781250006, -66.19140625], [131.23203125000012, -66.21552734375004], [131.83085937500002, -66.23583984375], [132.32031249999997, -66.16542968750005], [132.87431640625002, -66.17802734375005], [133.14824218750007, -66.09482421874996], [133.44453125000004, -66.0814453125], [133.84277343749997, -66.15361328125005], [133.95751953124997, -66.20429687499997], [134.1789062500001, -66.27705078125004], [134.2318359375, -66.34765624999996], [134.28945312500005, -66.47675781249997], [134.39814453125004, -66.47988281249998], [134.7697265625001, -66.35332031250005], [134.97148437500007, -66.33017578125003], [135.35195312500005, -66.12714843749998], [135.55478515625006, -66.180078125], [136.009375, -66.26679687500001], [136.19394531250006, -66.29218750000003], [136.55332031250012, -66.43896484375], [136.73964843750005, -66.40771484375003], [136.88916015624997, -66.33964843750002], [137.33623046875002, -66.34648437499999], [137.75380859375, -66.40644531250004], [137.92578125000003, -66.45693359375002], [138.13994140625002, -66.54394531249997], [138.27099609375003, -66.56445312499997], [138.37646484374997, -66.54042968750005], [139.24160156250005, -66.57402343749997], [139.61318359375, -66.63759765625005], [139.9000976562501, -66.71513671875005], [140.9015625000001, -66.75195312499999], [141.28593750000007, -66.83183593750002], [141.51718750000012, -66.79404296875003], [141.97285156250004, -66.80673828125005], [142.15898437500002, -66.8736328125], [142.32666015624997, -66.94833984375003], [142.6875, -67.01279296875], [142.88837890625004, -67.00009765625], [143.16894531249997, -66.9486328125], [143.44824218749997, -66.87675781250002], [143.73037109375005, -66.87675781250002], [143.8626953125, -66.93857421874999], [143.91113281250003, -67.09072265625], [144.11767578124997, -67.08769531249999], [144.3478515625001, -67.01796875], [144.55058593750002, -67.03554687500002], [144.62119140625006, -67.14140625000002], [144.5153320312501, -67.28251953124999], [144.25966796875005, -67.47871093749998], [144.15371093750005, -67.64414062500003], [143.94199218750006, -67.79404296875], [143.97734375000002, -67.86455078124999], [144.18906250000006, -67.89980468749998], [144.40429687500003, -67.79423828125005], [144.87910156250004, -67.72089843750004], [145.12792968750003, -67.62597656249997], [145.55644531250002, -67.59091796875002], [145.97519531250006, -67.62421874999997], [146.27636718749997, -67.75087890625002], [146.82783203125004, -67.96464843750005], [146.85244140625, -68.04101562499997], [146.89658203125012, -68.12031250000004], [146.87822265625002, -68.19121093750002], [146.79765625000002, -68.27363281250001], [147.09365234375, -68.36865234375001], [147.35380859375007, -68.38427734375], [147.56855468750004, -68.37509765625], [148.45625, -68.46699218749998], [148.8805664062501, -68.43115234374996], [149.26269531250003, -68.43134765625], [149.71689453125012, -68.41777343749999], [150.06552734375006, -68.41992187499997], [150.34218750000005, -68.43574218750001], [150.67197265625006, -68.40292968749998], [150.93593750000005, -68.35849609374999], [151.06826171875, -68.38496093750005], [151.12109375000003, -68.62304687499997], [151.1388671875001, -68.76416015625003], [151.28876953125004, -68.81708984374998], [151.44755859375002, -68.76416015625003], [151.56210937500006, -68.69365234375006], [152.26523437500006, -68.7255859375], [152.54550781250012, -68.72958984375], [152.81416015625004, -68.76767578125003], [153.08183593750007, -68.8568359375], [153.33994140625006, -68.81796874999998], [153.49570312500006, -68.76435546874998], [153.70527343750004, -68.72890625000005], [153.7669921875, -68.640625], [153.79238281250005, -68.49335937500001], [153.78466796874997, -68.34960937499996], [153.90800781250007, -68.32314453124998], [154.03154296875002, -68.34960937499996], [154.19970703124997, -68.41787109375001], [154.57636718750004, -68.63427734375004], [154.86601562500002, -68.77431640625005], [154.9875, -68.84130859375003], [155.16396484375005, -68.89462890624998], [155.52031250000007, -69.02441406250003], [156.01093750000004, -69.07783203124998], [156.488671875, -69.18300781250001], [157.04638671875003, -69.17626953124997], [157.48134765625, -69.30869140625003], [157.77578125000005, -69.20468749999998], [157.93251953125, -69.18076171875], [158.15781250000006, -69.20888671875005], [158.43261718749997, -69.2994140625], [158.6471679687501, -69.32011718750005], [159.38632812500006, -69.46835937499998], [159.78398437500007, -69.521875], [159.93095703125007, -69.63056640624998], [160.12578125000007, -69.73427734375005], [160.12578125000007, -69.84013671875005], [160.2096679687501, -69.97490234375005], [160.65185546875003, -70.08056640625], [160.82675781250006, -70.18203125000005], [161.03701171875, -70.31718750000006], [161.42451171875004, -70.82675781250003], [161.62509765625006, -70.91611328125003], [161.91611328125012, -70.90732421875003], [162.18945312500003, -71.03955078124997], [162.277734375, -71.021875], [162.2865234375, -70.96904296874999], [162.03964843750006, -70.625], [162.02197265625003, -70.43984375], [162.2160156250001, -70.33398437500001], [162.67480468749997, -70.30458984374998], [163.02646484375012, -70.50136718750001], [163.34873046875012, -70.62089843750002], [163.56650390625006, -70.64228515625004], [163.99843750000005, -70.63652343750002], [164.40322265625, -70.51044921875], [164.71601562500004, -70.55654296875005], [165.209375, -70.57080078125003], [165.85390625000005, -70.64531250000002], [166.13203125000004, -70.63281249999997], [166.62695312499997, -70.66425781249998], [167.22880859375002, -70.77128906250002], [167.56943359375006, -70.81025390624997], [167.64003906250005, -70.85439453125], [167.79882812499997, -70.92490234374996], [167.878125, -71.0130859375], [167.96630859374997, -71.09248046875], [168.17265625000002, -71.183203125], [168.38281250000003, -71.19736328124996], [168.79785156250003, -71.27480468750002], [169.66376953125004, -71.51132812499998], [169.976953125, -71.58066406249998], [170.1623046875001, -71.63046875], [170.25048828125003, -71.56875], [170.27685546874997, -71.4439453125], [170.43574218750004, -71.41875], [170.60332031250007, -71.60400390625003], [170.7796875, -71.7451171875], [170.85908203125004, -71.86855468750001], [170.67539062500006, -71.96855468750005], [170.40927734375006, -71.94794921875001], [170.22402343750005, -71.94794921875001], [170.03007812500007, -72.11552734375005], [169.953515625, -72.40283203124997], [170.12714843750004, -72.39775390624999], [170.259375, -72.37128906250003], [170.28583984375004, -72.4771484375], [170.20644531250005, -72.56533203125002], [170.04775390625005, -72.60058593750003], [169.77490234374997, -72.5337890625], [169.44033203125, -72.48681640625003], [169.07236328125006, -72.46875], [168.71884765625012, -72.38447265625004], [168.57617187499997, -72.37910156250001], [168.4284179687501, -72.3833984375], [168.62167968750012, -72.47265624999997], [168.8200195312501, -72.55244140624998], [169.26953125000003, -72.62128906249998], [169.82861328124997, -72.72880859375003], [169.84482421875006, -72.79462890625003], [169.71210937500004, -72.87695312500001], [169.54501953125012, -73.050390625], [169.03339843750004, -73.20039062500001], [168.73593750000012, -73.09121093750005], [168.38134765624997, -73.06591796874997], [168.20449218750005, -73.12978515625001], [167.85302734375003, -73.12246093750002], [167.15566406250005, -73.14726562500002], [166.88281249999997, -73.01123046875001], [166.45283203125004, -72.93603515624997], [166.4669921875001, -72.99746093750005], [166.83398437499997, -73.22431640624998], [167.22558593749997, -73.27578125], [167.61582031250012, -73.33681640625], [167.70908203125006, -73.39423828124997], [167.53417968749997, -73.44726562500003], [167.29648437500006, -73.44003906249998], [166.99609374999997, -73.5443359375], [166.42880859375012, -73.526953125], [166.159375, -73.53378906249998], [166.00107421875012, -73.57666015625], [165.86015625000002, -73.59267578125], [165.97060546875005, -73.63076171875002], [166.10605468750006, -73.73515625000006], [165.9132812500001, -73.82285156249998], [165.73369140625007, -73.86669921875003], [165.54892578125012, -73.84609375], [165.34697265625007, -73.87939453124996], [165.24990234375, -73.78242187500001], [165.24453125, -73.57119140625005], [165.12949218750006, -73.3826171875], [165.00488281250003, -73.37451171875003], [164.81298828125003, -73.39677734375005], [164.74960937500006, -73.55878906250001], [164.88769531250003, -73.83769531249999], [164.9798828125, -73.92587890625], [164.90595703125004, -74.00292968749999], [164.77568359375002, -74.02851562500004], [165.03720703125012, -74.26347656250005], [165.26308593750005, -74.42617187500005], [165.3998046875, -74.47919921875003], [165.40859375, -74.55859375000003], [165.30283203125006, -74.59375], [165.00117187500004, -74.56269531249998], [164.85302734374997, -74.57832031249997], [164.68896484374997, -74.56835937499999], [164.41074218750012, -74.53339843749997], [164.17402343750004, -74.52324218750003], [163.93583984375002, -74.56738281249997], [163.73525390625, -74.56376953125002], [163.55654296875, -74.41738281250005], [163.3978515625, -74.38212890625006], [163.26552734375005, -74.42626953125], [163.16738281250005, -74.601953125], [162.96123046875007, -74.65605468749999], [162.75205078125006, -74.73613281250006], [162.60410156250012, -74.82314453125002], [162.53359375000005, -75.16708984375], [162.41005859375005, -75.23759765624999], [162.22558593750003, -75.2345703125], [162.08779296875, -75.26162109375], [161.9103515625001, -75.23388671875003], [161.67958984375, -75.21777343750003], [160.91074218750012, -75.33466796875004], [161.03291015625004, -75.3958984375], [161.22734375000002, -75.38613281250005], [161.90351562500004, -75.40419921875], [162.18964843750004, -75.46689453124998], [162.23906250000002, -75.62167968749999], [162.351953125, -75.68652343749997], [162.57763671874997, -75.75800781250005], [162.75400390625012, -75.79326171875005], [162.81572265625007, -75.84619140624999], [162.74511718749997, -75.95195312500005], [162.64824218750007, -76.04902343750001], [162.43652343749997, -76.15488281249999], [162.49824218750004, -76.20771484375001], [162.72753906249997, -76.22539062500006], [162.824609375, -76.46357421875], [162.67460937500002, -76.56933593749997], [162.74521484375012, -76.65751953124999], [162.76279296875012, -76.745703125], [162.6095703125001, -76.82871093750005], [162.48945312500004, -76.86923828125003], [162.45029296875006, -76.95566406249998], [162.67910156250005, -77.00673828125], [162.85019531250006, -77.02353515625003], [163.08691406249997, -77.03232421874996], [163.24990234375005, -77.12646484374996], [163.45849609375003, -77.26933593750002], [163.6076171875001, -77.38779296874999], [163.61914062499997, -77.58232421875002], [163.76621093750006, -77.69990234374998], [164.04521484375007, -77.77460937500001], [164.03642578125007, -77.85302734375], [164.23203125000012, -77.87705078125], [164.42089843749997, -77.88349609375], [164.49150390625007, -77.95400390625005], [164.42968749999997, -78.0421875], [164.10781250000005, -78.14677734374999], [163.97763671875006, -78.22382812500005], [164.29736328125003, -78.23623046875], [164.628125, -78.315625], [165.05058593750002, -78.22607421874997], [165.27402343750006, -78.12861328125001], [165.41757812500006, -78.0421875], [165.52402343750006, -78.06357421875], [165.53417968750003, -78.15380859375], [165.66298828125, -78.30566406250003], [166.20859375000012, -78.45166015625001], [166.51035156250012, -78.49736328125], [166.80117187500005, -78.52158203124996], [167.05800781250005, -78.51845703125004], [167.13027343750005, -78.60615234375004], [167.0490234375001, -78.68603515624997], [166.85, -78.67988281249997], [166.5246093750001, -78.694921875], [166.2865234375, -78.62783203125002], [166.11679687500006, -78.57109375000002], [164.63476562500003, -78.60322265624998], [164.30058593750007, -78.63007812500004], [163.9017578125, -78.71708984375], [163.503125, -78.75859375000002], [162.89511718750006, -78.84482421875], [162.63945312500002, -78.89775390625005], [161.97451171875, -78.69423828125005], [161.75742187500012, -78.544921875], [161.66923828125002, -78.5361328125], [161.5104492187501, -78.57138671874998], [161.50175781250007, -78.67724609374997], [161.81337890625005, -78.90742187500005], [161.95146484375002, -78.96826171875001], [161.95146484375002, -79.02998046874998], [161.86425781250003, -79.06093750000007], [161.73730468750003, -79.05996093750005], [161.54609375000004, -79.01503906250004], [161.19052734375006, -78.97871093750001], [160.87353515624997, -79.04970703125], [160.48271484375002, -79.20146484375], [160.56738281249997, -79.30234375000003], [160.67021484375002, -79.35888671875001], [160.64609375000012, -79.42685546875], [160.2091796875001, -79.55439453125005], [160.06796875000012, -79.56123046875003], [159.97587890625007, -79.58564453125003], [160.08359375000006, -79.63251953124998], [160.32275390624997, -79.63554687499997], [160.34628906250006, -79.69150390625], [160.26484375000004, -79.73662109375005], [159.871875, -79.78984375000006], [159.89648437499997, -79.85898437500002], [160.11142578125006, -79.89248046875001], [160.38730468750006, -79.87949218750003], [160.5580078125, -79.92958984375002], [160.5587890625001, -80.01054687499999], [160.38173828125, -80.05449218749997], [160.17939453125004, -80.08808593749998], [158.76748046875, -80.29335937500005], [158.56035156250002, -80.34892578125], [158.57363281250005, -80.4234375], [159.0651367187501, -80.44257812499998], [160.5421875000001, -80.425], [160.63730468750006, -80.44990234374997], [160.60332031250002, -80.5076171875], [160.52128906250007, -80.5833984375], [160.60136718750007, -80.63652343749997], [160.82324218749997, -80.67402343749998], [160.83027343750004, -80.7298828125], [160.72001953125007, -80.753125], [160.50253906250006, -80.77929687500001], [160.26015625, -80.78671875000002], [160.27578125, -80.84677734375], [160.60722656250002, -80.90117187499997], [160.71679687500003, -80.90742187500001], [160.7279296875, -81.11289062500003], [160.71669921875, -81.19960937500002], [160.54003906249997, -81.24169921874999], [160.47861328125006, -81.2701171875], [160.46982421875006, -81.34062], [160.90781250000006, -81.39023437499996], [161.58212890625012, -81.609765625], [161.7301757812501, -81.61044921874998], [161.99609374999997, -81.65302734375003], [162.42529296875003, -81.76494140625], [162.57666015625003, -81.83203125], [162.82119140625005, -81.86621093750003], [162.85439453125005, -81.92070312500003], [163.00429687500005, -81.9689453125], [163.60234375000002, -82.12060546874999], [163.68007812500005, -82.18730468749999], [162.42656250000002, -82.31445312499996], [161.16650390624997, -82.40781249999996], [161.28320312499997, -82.48994140625], [162.64375, -82.48154296874998], [163.01181640625006, -82.53496093750002], [163.17470703125, -82.51894531250005], [163.26855468749997, -82.46328125], [164.00136718750005, -82.39677734375003], [164.74716796875012, -82.35439453125001], [164.98007812500012, -82.38496093750001], [165.98164062500004, -82.62968750000005], [166.44589843750006, -82.72216796874997], [166.74218750000003, -82.75703124999997], [166.95673828125004, -82.76464843750001], [167.11630859375012, -82.80126953125001], [167.27128906250007, -82.87939453125003], [167.2326171875001, -82.95234374999997], [167.29746093750006, -82.98583984374996], [167.40449218750004, -82.99882812500002], [167.601953125, -83.04746093749998], [167.82753906250005, -83.03076171874996], [168.09179687499997, -82.97470703124999], [168.27597656250012, -82.98720703125005], [168.60732421875005, -83.06533203124998], [168.4816406250001, -83.12675781249997], [168.4083984375001, -83.15507812499997], [168.32001953125004, -83.21074218750003], [168.24023437500003, -83.22988281250002], [167.97304687500005, -83.24316406249997], [167.82539062500004, -83.24296875000002], [167.67441406250012, -83.23144531249999], [167.6576171875, -83.27216796875003], [167.84277343749997, -83.31621093750002], [168.11005859375004, -83.36201171875003], [169.83789062499997, -83.39902343750002], [170.33203125000003, -83.47880859375002], [170.81748046875006, -83.43574218750004], [171.03574218750006, -83.44843750000005], [171.22070312499997, -83.475], [171.2892578125001, -83.55546875], [171.53710937499997, -83.58134765625005], [171.91718750000004, -83.64404296875003], [172.45009765625, -83.675390625], [172.87392578125, -83.67314453125], [173.39726562500013, -83.75878906250004], [173.66181640624998, -83.76093750000004], [173.82236328125, -83.81015625000002], [175.01103515625007, -83.83906250000005], [175.18740234374994, -83.87744140624997], [175.32285156250018, -83.94003906250002], [175.60576171875007, -83.96757812500003], [175.91123046875018, -83.97314453125001], [177.58105468749997, -84.07490234375004], [178.20859375000012, -84.12988281249997], [178.35263671875018, -84.12666015625003], [178.49599609375005, -84.1357421875], [178.94443359375012, -84.18144531249999], [179.4030273437501, -84.20615234374996], [179.62031250000015, -84.26835937500002], [180, -84.35156250000001], [180, -89.99892578124998], [178.59375, -89.99892578124998], [177.1875, -89.99892578124998], [175.78125, -89.99892578124998], [174.375, -89.99892578124998], [172.96875, -89.99892578124998], [171.5625, -89.99892578124998], [170.15625, -89.99892578124998], [168.75, -89.99892578124998], [167.34375, -89.99892578124998], [165.9375, -89.99892578124998], [164.53115234375005, -89.99892578124998], [163.125, -89.99892578124998], [161.71875, -89.99892578124998], [160.3125, -89.99892578124998], [158.90625, -89.99892578124998], [157.5, -89.99892578124998], [156.09375, -89.99892578124998], [154.6875, -89.99892578124998], [153.28125, -89.99892578124998], [151.875, -89.99892578124998], [150.46875, -89.99892578124998], [149.0625, -89.99892578124998], [147.65625, -89.99892578124998], [146.25, -89.99892578124998], [144.84375, -89.99892578124998], [143.4375, -89.99892578124998], [142.03125, -89.99892578124998], [140.625, -89.99892578124998], [139.21875, -89.99892578124998], [137.8125, -89.99892578124998], [136.40625, -89.99892578124998], [135, -89.99892578124998], [133.59375, -89.99892578124998], [132.1875, -89.99892578124998], [130.78125, -89.99892578124998], [129.375, -89.99892578124998], [127.96875, -89.99892578124998], [126.56240234375005, -89.99892578124998], [125.15625, -89.99892578124998], [123.75, -89.99892578124998], [122.34375, -89.99892578124998], [120.9375, -89.99892578124998], [119.53125, -89.99892578124998], [118.125, -89.99892578124998], [116.71875, -89.99892578124998], [115.3125, -89.99892578124998], [113.90625, -89.99892578124998], [112.5, -89.99892578124998], [111.09384765625012, -89.99892578124998], [109.6875, -89.99892578124998], [108.28125, -89.99892578124998], [106.875, -89.99892578124998], [105.46875, -89.99892578124998], [104.0625, -89.99892578124998], [102.65625, -89.99892578124998], [101.25, -89.99892578124998], [99.84375, -89.99892578124998], [98.4375, -89.99892578124998], [97.03125, -89.99892578124998], [95.625, -89.99892578124998], [94.21875, -89.99892578124998], [92.8125, -89.99892578124998], [91.40625, -89.99892578124998], [90, -89.99892578124998], [88.59375, -89.99892578124998], [87.1875, -89.99892578124998], [85.78125, -89.99892578124998], [84.375, -89.99892578124998], [82.96875, -89.99892578124998], [81.5625, -89.99892578124998], [80.15625, -89.99892578124998], [78.75, -89.99892578124998], [77.34375, -89.99892578124998], [75.9375, -89.99892578124998], [74.53125, -89.99892578124998], [73.125, -89.99892578124998], [71.71875, -89.99892578124998], [70.3125, -89.99892578124998], [68.90625, -89.99892578124998], [67.5, -89.99892578124998], [66.09375, -89.99892578124998], [64.6875, -89.99892578124998], [63.28125, -89.99892578124998], [61.875, -89.99892578124998], [60.46875, -89.99892578124998], [59.0625, -89.99892578124998], [57.65625, -89.99892578124998], [56.25, -89.99892578124998], [54.84375, -89.99892578124998], [53.4375, -89.99892578124998], [52.03125, -89.99892578124998], [50.625, -89.99892578124998], [49.21875, -89.99892578124998], [47.8125, -89.99892578124998], [46.40625, -89.99892578124998], [45, -89.99892578124998], [43.59375, -89.99892578124998], [42.1875, -89.99892578124998], [40.78125, -89.99892578124998], [39.375, -89.99892578124998], [37.96875, -89.99892578124998], [36.5625, -89.99892578124998], [35.15625, -89.99892578124998], [33.75, -89.99892578124998], [32.34375, -89.99892578124998], [30.9375, -89.99892578124998], [29.53125, -89.99892578124998], [28.124902343750023, -89.99892578124998], [26.71875, -89.99892578124998], [25.3125, -89.99892578124998], [23.90615234375005, -89.99892578124998], [22.5, -89.99892578124998], [21.09375, -89.99892578124998], [19.6875, -89.99892578124998], [18.281152343750023, -89.99892578124998], [16.875, -89.99892578124998], [15.46875, -89.99892578124998], [14.0625, -89.99892578124998], [12.65625, -89.99892578124998], [11.25, -89.99892578124998], [9.84375, -89.99892578124998], [8.4375, -89.99892578124998], [7.03125, -89.99892578124998], [5.625, -89.99892578124998], [4.21875, -89.99892578124998], [2.8125, -89.99892578124998], [1.40625, -89.99892578124998], [0, -89.99892578124998], [-1.40625, -89.99892578124998], [-2.8125, -89.99892578124998], [-4.218798828124932, -89.99892578124998], [-5.625048828124989, -89.99892578124998], [-7.03125, -89.99892578124998], [-8.437548828125017, -89.99892578124998], [-9.84379882812496, -89.99892578124998], [-11.250048828124932, -89.99892578124998], [-12.65625, -89.99892578124998], [-14.0625, -89.99892578124998], [-15.46875, -89.99892578124998], [-16.875, -89.99892578124998], [-18.28125, -89.99892578124998], [-19.6875, -89.99892578124998], [-21.09375, -89.99892578124998], [-22.5, -89.99892578124998], [-23.90625, -89.99892578124998], [-25.312548828124932, -89.99892578124998], [-26.71875, -89.99892578124998], [-28.125, -89.99892578124998], [-29.53125, -89.99892578124998], [-30.9375, -89.99892578124998], [-32.34375, -89.99892578124998], [-33.75, -89.99892578124998], [-35.15625, -89.99892578124998], [-36.5625, -89.99892578124998], [-37.96875, -89.99892578124998], [-39.375, -89.99892578124998], [-40.78125, -89.99892578124998], [-42.1875, -89.99892578124998], [-43.59379882812502, -89.99892578124998], [-45, -89.99892578124998], [-46.40625, -89.99892578124998], [-47.8125, -89.99892578124998], [-49.21875, -89.99892578124998], [-50.625, -89.99892578124998], [-52.03125, -89.99892578124998], [-53.43754882812493, -89.99892578124998], [-54.84375, -89.99892578124998], [-56.25, -89.99892578124998], [-57.65625, -89.99892578124998], [-59.0625, -89.99892578124998], [-60.46875, -89.99892578124998], [-61.875, -89.99892578124998], [-63.28125, -89.99892578124998], [-64.6875, -89.99892578124998], [-66.09375, -89.99892578124998], [-67.5, -89.99892578124998], [-68.90625, -89.99892578124998], [-70.3125, -89.99892578124998], [-71.71875, -89.99892578124998], [-73.125, -89.99892578124998], [-74.53125, -89.99892578124998], [-75.9375, -89.99892578124998], [-77.34375, -89.99892578124998], [-78.75, -89.99892578124998], [-80.15625, -89.99892578124998], [-81.5625, -89.99892578124998], [-82.96875, -89.99892578124998], [-84.375, -89.99892578124998], [-85.78125, -89.99892578124998], [-87.1875, -89.99892578124998], [-88.59375, -89.99892578124998], [-90, -89.99892578124998], [-91.40625, -89.99892578124998], [-92.8125, -89.99892578124998], [-94.21875, -89.99892578124998], [-95.625, -89.99892578124998], [-97.03125, -89.99892578124998], [-98.4375, -89.99892578124998], [-99.84375, -89.99892578124998], [-101.25, -89.99892578124998], [-102.65625, -89.99892578124998], [-104.0625, -89.99892578124998], [-105.46875, -89.99892578124998], [-106.875, -89.99892578124998], [-108.28125, -89.99892578124998], [-109.6875, -89.99892578124998], [-111.09375, -89.99892578124998], [-112.5, -89.99892578124998], [-113.90625, -89.99892578124998], [-115.3125, -89.99892578124998], [-116.71875, -89.99892578124998], [-118.125, -89.99892578124998], [-119.53125, -89.99892578124998], [-120.9375, -89.99892578124998], [-122.34375, -89.99892578124998], [-123.75, -89.99892578124998], [-125.15625, -89.99892578124998], [-126.5625, -89.99892578124998], [-127.96875, -89.99892578124998], [-129.375, -89.99892578124998], [-130.78125, -89.99892578124998], [-132.1875, -89.99892578124998], [-133.59375, -89.99892578124998], [-135, -89.99892578124998], [-136.40625, -89.99892578124998], [-137.8125, -89.99892578124998], [-139.21875, -89.99892578124998], [-140.625, -89.99892578124998], [-142.03125, -89.99892578124998], [-143.4375, -89.99892578124998], [-144.84375, -89.99892578124998], [-146.25, -89.99892578124998], [-147.65625, -89.99892578124998], [-149.0625, -89.99892578124998], [-150.46875, -89.99892578124998], [-151.875, -89.99892578124998], [-153.28125, -89.99892578124998], [-154.68754882812493, -89.99892578124998], [-156.09375, -89.99892578124998], [-157.5, -89.99892578124998], [-158.90625, -89.99892578124998], [-160.3125, -89.99892578124998], [-161.71879882812493, -89.99892578124998], [-163.125, -89.99892578124998], [-164.53125, -89.99892578124998], [-165.93754882812502, -89.99892578124998], [-167.343798828125, -89.99892578124998], [-168.75004882812496, -89.99892578124998], [-170.156298828125, -89.99892578124998], [-171.5625, -89.99892578124998], [-172.96875, -89.99892578124998], [-174.375, -89.99892578124998], [-175.78125, -89.99892578124998], [-177.1875, -89.99892578124998], [-178.59375, -89.99892578124998], [-180, -89.99892578124998], [-180, -89.58291015625005], [-180, -89.29296874999996], [-180, -88.58701171875002], [-180, -87.8810546875], [-180, -87.1751953125], [-180, -86.46933593749998], [-180, -85.76337890625004], [-180, -85.05751953125004], [-180, -84.35156250000001], [-178.389501953125, -84.3375], [-178.06904296875, -84.35234374999999], [-177.730419921875, -84.39521484375003], [-176.98554687499998, -84.39931640625005], [-176.289013671875, -84.41835937500002], [-176.10737304687504, -84.47529296875], [-175.87460937500003, -84.51035156250003], [-175.38100585937502, -84.47978515625002], [-174.98671875, -84.46542968750003], [-174.66318359374998, -84.4626953125], [-171.70366210937493, -84.54238281249998], [-168.6677734375, -84.68359374999997], [-168.04858398437494, -84.72861328125], [-167.49218750000003, -84.83369140625], [-166.911083984375, -84.81923828125], [-163.46372070312498, -84.90087890625001], [-162.93339843749996, -84.90117187499999], [-160.82089843749998, -84.98662109374999], [-157.127490234375, -85.18564453125003], [-156.81030273437494, -85.19218750000003], [-156.45913085937502, -85.18603515625001], [-156.6427734375, -85.07939453125005], [-156.98828125, -84.98222656249997], [-157.45390625, -84.91240234375005], [-157.14960937499998, -84.89130859375001], [-156.48964843750002, -84.88925781250003], [-156.62099609375002, -84.83964843749997], [-156.98632812500003, -84.81113281250002], [-158.30341796875004, -84.77802734375003], [-163.56850585937502, -84.52871093750004], [-163.68544921874997, -84.51308593750005], [-163.758984375, -84.4927734375], [-163.897021484375, -84.47041015624998], [-164.11416015625, -84.44541015625003], [-164.916845703125, -84.43134765625001], [-165.13535156250003, -84.40986328124998], [-165.2404296875, -84.38125], [-165.18481445312497, -84.36953125000002], [-165.12514648437497, -84.374609375], [-163.89916992187497, -84.35263671874996], [-163.76518554687493, -84.32421875000003], [-163.7576171875, -84.30546875000003], [-163.82138671875003, -84.29052734375001], [-164.03212890624997, -84.27402343750002], [-164.5283203125, -84.191015625], [-164.68505859375003, -84.15458984375003], [-164.60283203125, -84.09667968749996], [-164.50253906249998, -84.07158203124999], [-164.12392578125002, -84.05351562500005], [-164.011328125, -84.01562], [-164.08291015625002, -83.94609375], [-164.95087890625, -83.80585937500004], [-165.536328125, -83.75664062500005], [-165.92177734375002, -83.79023437500005], [-166.64946289062502, -83.79199218749997], [-167.55288085937497, -83.81083984374999], [-167.801220703125, -83.79082031249999], [-168.052734375, -83.73544921874999], [-168.34736328124998, -83.63681640624998], [-168.49726562499995, -83.61132812500001], [-168.78500976562498, -83.529296875], [-169.16767578125004, -83.44980468749998], [-171.187841796875, -83.25644531250002], [-171.53940429687498, -83.20371093750002], [-174.065966796875, -82.90009765624998], [-174.17202148437502, -82.84775390624998], [-174.23593749999998, -82.79345703125001], [-173.071142578125, -82.91582031249999], [-172.851513671875, -82.91679687500002], [-172.59291992187502, -82.88417968750002], [-172.392041015625, -82.89306640624997], [-172.12436523437503, -82.86240234375003], [-171.8212890625, -82.8474609375], [-171.03129882812502, -82.94296875], [-169.44077148437498, -83.09599609375002], [-169.01606445312495, -83.15029296875007], [-168.79013671875003, -83.187890625], [-168.603759765625, -83.20156250000002], [-168.41767578125, -83.22880859374999], [-168.191015625, -83.21328125000002], [-168.05473632812496, -83.22656249999997], [-167.72426757812497, -83.21738281249996], [-166.21689453125, -83.20078125000005], [-165.619189453125, -83.21552734375003], [-164.915625, -83.29003906250003], [-164.6443359375, -83.4125], [-164.445556640625, -83.46767578125007], [-164.0583984375, -83.42470703125001], [-163.73339843749994, -83.37304687499997], [-163.111083984375, -83.32910156249999], [-162.91206054687504, -83.34707031250001], [-162.57416992187504, -83.41064453124999], [-162.197265625, -83.51894531250002], [-160.5947265625, -83.48955078124999], [-159.92353515625007, -83.49472656249998], [-159.44438476562496, -83.54316406249998], [-157.69926757812496, -83.38125], [-157.42846679687494, -83.34638671875004], [-157.02778320312504, -83.23437], [-157.35581054687498, -83.19843750000001], [-157.58920898437503, -83.18740234374998], [-157.67949218750002, -83.1294921875], [-157.52187, -83.10664062500005], [-157.01826171875007, -83.07519531250004], [-156.03701171874997, -83.02685546874996], [-155.459423828125, -82.98076171874999], [-155.15024414062498, -82.85839843750001], [-153.82226562499997, -82.66933593750005], [-153.3986328125, -82.58623046874999], [-153.00986328125003, -82.44960937500005], [-153.88261718750002, -82.17656250000002], [-154.717431640625, -81.94072265625002], [-154.45146484375, -81.86757812500004], [-154.18847656249997, -81.81054687499997], [-154.06137695312503, -81.76542968750002], [-153.95664062499998, -81.70019531249996], [-154.23208007812497, -81.6232421875], [-154.48515625000002, -81.56621093750002], [-154.90781249999998, -81.5103515625], [-156.49257812499997, -81.376953125], [-157.03251953125002, -81.31914062500005], [-156.81508789062497, -81.23095703125001], [-156.52822265624997, -81.16230468749998], [-155.921142578125, -81.13339843750003], [-152.03476562499998, -81.02900390625], [-148.12275390625004, -80.90078125], [-148.02343749999994, -80.83574218749997], [-148.54296875000003, -80.76005859375], [-148.98417968750005, -80.74150390625005], [-149.14716796875, -80.71865234375001], [-149.20742187500002, -80.67041015625004], [-149.21406249999995, -80.60419921875005], [-149.264404296875, -80.59306640625], [-149.42861328124997, -80.58623046875003], [-150.13276367187498, -80.51044921875004], [-150.28168945312504, -80.48046874999997], [-150.51611328125, -80.40947265624999], [-150.575390625, -80.35371093750001], [-150.43544921875002, -80.21103515624998], [-150.22070312499994, -80.15], [-149.84536132812497, -80.11767578124997], [-149.57763671874994, -80.10595703124997], [-148.766064453125, -80.10810546874997], [-148.44799804687506, -80.09052734375004], [-148.31713867187503, -80.07099609375004], [-148.339794921875, -80.00273437499999], [-148.43027343749998, -79.97128906249998], [-148.43349609375002, -79.92949218749999], [-148.296435546875, -79.90654296875003], [-148.12929687499997, -79.90771484375], [-148.082958984375, -79.85673828125002], [-148.17651367187497, -79.77587890624997], [-148.41748046875006, -79.73144531249997], [-149.05141601562497, -79.65693359374998], [-150.49062, -79.54560546875004], [-151.04843750000003, -79.45966796875003], [-151.36826171874998, -79.39335937500002], [-151.63613281250002, -79.31767578125005], [-151.90356445312497, -79.28056640625005], [-152.09140624999998, -79.24160156250001], [-152.05341796875004, -79.19277343750001], [-152.13769531249997, -79.11591796874998], [-152.24350585937503, -79.10273437500005], [-152.70136718749995, -79.13486328125003], [-153.517578125, -79.11728515625], [-154.517724609375, -79.04658203124998], [-155.20991210937495, -78.96484375000003], [-156.11455078125, -78.74462890625001], [-156.46933593750003, -78.63535156250005], [-156.20791015624997, -78.55869140624998], [-155.91977539062498, -78.51035156249998], [-154.71640624999998, -78.39814453125004], [-154.53764648437496, -78.35888671875003], [-154.29301757812496, -78.25908203125005], [-154.69506835937497, -78.21699218749998], [-155.03662109375, -78.22080078124998], [-155.34150390625004, -78.19199218749996], [-156.56923828124997, -78.1861328125], [-157.26679687499995, -78.19980468750003], [-157.848046875, -78.07392578124998], [-158.285888671875, -77.95078125000003], [-158.40693359374998, -77.88779296874998], [-158.50039062500002, -77.77832031249997], [-158.35141601562503, -77.61484374999998], [-158.22998046875, -77.49765625], [-158.24648437499997, -77.35429687500002], [-158.21357421875, -77.15712890625], [-158.00307617187497, -77.09121093750005], [-157.842041015625, -77.07919921875], [-157.46538085937502, -77.23125], [-157.13930664062502, -77.24208984375007], [-156.66767578125004, -77.21298828125], [-156.36821289062496, -77.13476562499996], [-156.21123046874993, -77.10566406249998], [-155.91958007812497, -77.09804687500002], [-155.358837890625, -77.13330078125001], [-155.10175781250007, -77.11953125000005], [-154.81494140624997, -77.12695312499997], [-153.9099609375, -77.226953125], [-153.71259765625, -77.27421875000005], [-153.606103515625, -77.31015624999998], [-153.573046875, -77.36308593750002], [-153.46059570312502, -77.41601562499997], [-153.07695312500002, -77.44248046875003], [-151.99838867187503, -77.41259765624999], [-151.71899414062503, -77.42587890625003], [-150.956396484375, -77.57353515624999], [-150.30556640625002, -77.73144531250001], [-150.08432617187498, -77.77099609375], [-149.71772460937498, -77.79746093749996], [-149.58847656250003, -77.77421875000002], [-149.4740234375, -77.71484375], [-149.12597656249994, -77.64267578124996], [-148.33994140624998, -77.55117187500005], [-148.155712890625, -77.4623046875], [-148.259814453125, -77.41259765624999], [-148.55927734374995, -77.36132812500003], [-148.74438476562503, -77.34326171874997], [-148.84360351562498, -77.28369140625001], [-148.83901367187502, -77.20234375000004], [-148.77749023437502, -77.125], [-148.57241210937497, -77.10507812500003], [-148.19633789062502, -77.21132812500002], [-147.730224609375, -77.309765625], [-147.56640625000003, -77.32529296874996], [-147.44228515624997, -77.320703125], [-147.20722656250004, -77.28583984375001], [-146.92758789062498, -77.25986328125003], [-146.390625, -77.47246093750002], [-146.07363281250002, -77.48671875], [-145.67714843749997, -77.48808593749999], [-145.60063476562502, -77.45527343749998], [-145.64965820312497, -77.39833984375001], [-145.71381835937498, -77.33837890624997], [-145.79428710937503, -77.32998046875002], [-145.80795898437498, -77.27324218750002], [-145.6345703125, -77.2212890625], [-145.51572265625003, -77.19921875000003], [-145.56318359375, -77.16171875000003], [-145.753125, -77.10332031250005], [-145.864306640625, -77.09414062500002], [-145.96699218749995, -77.06875], [-145.93393554687498, -77.02900390625], [-145.80634765625, -77.01210937500002], [-145.62924804687498, -76.95371093750002], [-145.68569335937502, -76.88447265625004], [-145.67568359374997, -76.7966796875], [-145.75048828125, -76.74902343749997], [-146.166455078125, -76.65761718750001], [-146.77666015625, -76.50703124999997], [-147.34042968749998, -76.43837890625002], [-148.60107421874994, -76.49326171875], [-149.04584960937498, -76.45800781250003], [-149.3396484375, -76.41894531249997], [-149.654248046875, -76.36533203124998], [-149.28496093750002, -76.31123046875004], [-148.89482421874993, -76.27177734375], [-148.78037109374998, -76.23828125000003], [-148.631787109375, -76.16796875], [-148.45898437499997, -76.11796875000002], [-148.32031249999994, -76.10449218750003], [-147.86020507812503, -76.13085937499999], [-146.817333984375, -76.31806640625001], [-146.59741210937497, -76.33779296875005], [-145.8857421875, -76.42431640625], [-145.686865234375, -76.42880859375002], [-145.44208984374995, -76.40917968750003], [-145.642333984375, -76.32568359374997], [-145.860400390625, -76.26660156250001], [-146.38300781249998, -76.09970703125003], [-146.32348632812503, -76.02031250000002], [-145.987744140625, -75.88876953125005], [-145.10551757812496, -75.87890625], [-144.72128906250003, -75.83212890624996], [-144.22060546874997, -75.73144531249997], [-143.57426757812502, -75.56357421874996], [-143.02216796874998, -75.54345703125004], [-142.329833984375, -75.49091796875], [-142.094189453125, -75.52978515625], [-141.50571289062503, -75.69042968749997], [-141.13461914062503, -75.74599609375], [-141.008984375, -75.75078125], [-140.87431640625002, -75.74589843749999], [-141.22333984374998, -75.5458984375], [-140.99873046874995, -75.52001953124997], [-140.70927734375, -75.49765625000003], [-140.47099609375, -75.44726562499999], [-140.29379882812498, -75.40585937499998], [-139.69116210937503, -75.21279296875], [-139.14882812500002, -75.16015625000003], [-137.61816406250003, -75.07558593750002], [-137.09013671875002, -75.15263671875], [-136.649853515625, -75.16171874999998], [-136.54951171875, -75.13945312499999], [-136.4619140625, -75.03583984375001], [-136.22783203125005, -74.83603515624998], [-136.030078125, -74.76533203124997], [-135.36206054687506, -74.69042968749999], [-134.840380859375, -74.69414062500003], [-134.465087890625, -74.77617187500005], [-134.11713867187498, -74.82968750000002], [-133.796337890625, -74.85458984375003], [-133.47485351562497, -74.85185546875002], [-132.991650390625, -74.80615234375003], [-132.35126953125004, -74.78935546874997], [-132.049365234375, -74.76572265625005], [-131.70654296874994, -74.81093750000002], [-130.857470703125, -74.82597656249997], [-130.19560546875, -74.890625], [-129.79082031249993, -74.89140624999999], [-129.23828125, -74.82890625000005], [-128.940625, -74.82021484375005], [-127.86337890625002, -74.71923828125], [-127.02021484375003, -74.69785156249998], [-126.38398437499998, -74.74257812500004], [-125.35341796875, -74.71464843750003], [-124.31245117187503, -74.73574218749998], [-123.889453125, -74.77304687500003], [-121.5439453125, -74.75], [-119.67700195312497, -74.65458984375005], [-119.42221679687502, -74.62158203125], [-119.02241210937501, -74.51787109375], [-118.80292968749998, -74.42226562500007], [-118.65576171875001, -74.39277343750001], [-118.34204101562496, -74.38154296875003], [-117.80620117187496, -74.40292968750003], [-117.068310546875, -74.47324218749998], [-116.43300781249998, -74.44707031250005], [-115.22260742187494, -74.48740234375], [-115.10517578125, -74.455078125], [-114.99101562500002, -74.275], [-114.79101562499994, -73.98857421874999], [-114.62373046874997, -73.90292968750003], [-114.34594726562496, -73.925], [-113.50849609374997, -74.0888671875], [-113.48940429687498, -74.15839843750004], [-113.57465820312494, -74.20791015625], [-113.71357421875, -74.22773437500004], [-113.753271484375, -74.36669921875003], [-113.64082031250001, -74.40634765625002], [-113.45424804687501, -74.39423828125004], [-113.332958984375, -74.45419921875], [-113.59731445312494, -74.55878906249998], [-113.78310546874995, -74.6181640625], [-113.90346679687497, -74.64443359375002], [-113.984765625, -74.84296874999998], [-114.097216796875, -74.90908203125002], [-114.11044921874993, -74.98183593750002], [-113.93183593749997, -74.98183593750002], [-113.75253906249995, -74.95214843750001], [-113.59340820312494, -74.94365234375006], [-113.09150390625001, -74.89169921875003], [-112.17001953124995, -74.83222656250001], [-111.86821289062502, -74.801171875], [-111.69624023437497, -74.79218750000001], [-111.58442382812503, -74.75087890625005], [-111.73872070312501, -74.65341796874999], [-111.78872070312498, -74.57167968750004], [-111.69589843749999, -74.50410156250004], [-111.72226562499995, -74.38662109375], [-111.80634765625003, -74.26972656249998], [-111.62998046874998, -74.18144531250003], [-111.46679687499994, -74.20078124999998], [-111.18017578125, -74.18808593749996], [-111.01982421875002, -74.23046874999997], [-110.77041015625001, -74.2689453125], [-110.53393554687497, -74.28886718749997], [-110.30708007812503, -74.36669921875003], [-110.22978515625, -74.53632812500004], [-110.30043945312501, -74.71064453125001], [-110.53193359375001, -74.83632812500005], [-110.96757812500003, -74.95126953125], [-111.463134765625, -75.13339843749999], [-111.35878906249997, -75.21992187500004], [-111.10419921874997, -75.19082031250005], [-109.989990234375, -75.19912109375005], [-109.27216796874995, -75.18505859375003], [-108.82226562499996, -75.206640625], [-108.25449218750002, -75.2525390625], [-107.80473632812496, -75.32158203125005], [-107.26679687499997, -75.33447265625], [-106.93212890625, -75.309375], [-106.61884765624994, -75.34394531249998], [-105.39936523437501, -75.19765625000002], [-104.90185546875, -75.11513671875], [-104.61782226562495, -75.15625], [-104.15966796874997, -75.12070312499998], [-103.901318359375, -75.15253906249998], [-103.42490234375002, -75.10126953125001], [-103.12104492187503, -75.09521484375003], [-102.771337890625, -75.11699218750002], [-101.70810546874993, -75.12734375], [-101.62783203125002, -75.22177734374996], [-101.30371093749997, -75.3658203125], [-101.03935546874995, -75.42187], [-100.70634765624996, -75.39814453125001], [-100.46342773437495, -75.35341796875005], [-100.08281249999993, -75.37041015625005], [-99.53134765624995, -75.30898437500005], [-98.98022460937501, -75.32744140624999], [-98.75234374999997, -75.31708984375001], [-98.64570312499998, -75.27714843750005], [-98.55786132812494, -75.18974609375002], [-98.72724609374998, -75.14082031249998], [-99.20815429687501, -75.078515625], [-99.65190429687499, -74.94882812500005], [-99.848583984375, -74.92167968750002], [-100.16406249999997, -74.93789062500004], [-100.31298828125003, -74.91435546875005], [-100.47333984375001, -74.87236328125002], [-100.264892578125, -74.82294921874998], [-100.01269531249996, -74.66210937499999], [-100.11860351562494, -74.51503906250005], [-100.23813476562496, -74.48417968749997], [-100.530859375, -74.48886718750003], [-100.8818359375, -74.54111328125003], [-101.02314453125001, -74.50498046875003], [-101.25170898437496, -74.48574218750002], [-101.34277343750003, -74.35009765625001], [-101.58671874999999, -74.09638671875001], [-101.7154296875, -74.02373046875005], [-102.105126953125, -73.95771484375001], [-102.4408203125, -73.92578125], [-102.76645507812499, -73.88378906249997], [-102.86274414062498, -73.78359375], [-102.79951171874998, -73.64570312500004], [-102.41064453124999, -73.61640625000003], [-102.03662109374999, -73.63056640624998], [-101.82836914062501, -73.65546874999998], [-101.58740234374996, -73.66679687499999], [-101.31074218749998, -73.69521484375], [-101.13022460937498, -73.73486328125], [-100.98544921874998, -73.75722656250002], [-100.71777343749997, -73.75781249999997], [-99.78110351562502, -73.72011718750002], [-99.65615234374997, -73.69414062500005], [-99.54101562499996, -73.6451171875], [-99.34335937500002, -73.6341796875], [-99.1619140625, -73.64082031250003], [-98.89614257812494, -73.61113281250002], [-99.20034179687501, -73.57099609375001], [-99.52792968749996, -73.4951171875], [-100.02080078125, -73.40253906249998], [-100.43637695312493, -73.353125], [-101.18945312499997, -73.31787109374996], [-101.57373046875001, -73.32958984375003], [-101.81596679687497, -73.31123046875003], [-102.67504882812503, -73.32089843750003], [-102.90878906249995, -73.28515625000004], [-103.07617187500003, -73.18457031249997], [-103.30771484374995, -72.9453125], [-103.375, -72.81884765624999], [-103.21660156249995, -72.77207031249996], [-103.11010742187501, -72.72119140624999], [-102.855859375, -72.71621093750004], [-102.48476562499998, -72.73564453125], [-102.36289062500002, -72.76015625000002], [-102.27202148437499, -72.83496093749999], [-102.36293945312494, -72.91142578125002], [-102.48203124999996, -72.95117187500003], [-102.40927734374996, -72.98740234375003], [-102.028857421875, -72.99814453125], [-101.84150390625003, -73.02089843750002], [-101.68120117187496, -73.02988281249999], [-101.33183593749993, -72.99541015624999], [-100.82050781249994, -72.98115234375001], [-100.56357421875, -73.01552734375], [-100.2587890625, -73.04130859375002], [-99.81074218750003, -72.99990234375002], [-98.20859375000003, -73.02226562500005], [-98.01240234374993, -73.03320312499996], [-97.81850585937497, -73.10175781249998], [-97.65102539062494, -73.14443359375005], [-97.47646484375, -73.12626953125], [-96.95576171874995, -73.2064453125], [-96.67583007812496, -73.26855468750003], [-96.39423828124995, -73.30117187500002], [-96.15214843749993, -73.30927734374998], [-95.88056640624995, -73.29384765625004], [-95.52924804687495, -73.24140625000001], [-95.23662109374993, -73.22011718750002], [-95.02958984374996, -73.23896484375004], [-94.58647460937499, -73.24951171874997], [-94.24619140624995, -73.31298828125003], [-93.98466796874996, -73.28671875], [-93.70595703124994, -73.21503906249997], [-92.82836914062503, -73.1646484375], [-92.24101562500002, -73.17841796874997], [-91.16865234374995, -73.30703125000005], [-90.92094726562502, -73.31914062500005], [-90.430908203125, -73.24326171875003], [-90.27377929687498, -73.11865234374996], [-90.29541015625003, -72.97792968749998], [-90.15244140625003, -72.94453125000001], [-90.03520507812496, -72.96015625], [-89.81767578124996, -72.86259765625002], [-89.52236328125002, -72.87089843750002], [-89.34125976562498, -72.88955078125], [-89.22939453125002, -72.82578124999998], [-89.12714843749995, -72.69316406250005], [-88.77998046874993, -72.68300781250002], [-88.52690429687499, -72.70234374999997], [-88.19409179687494, -72.7875], [-88.19453124999995, -72.85859375000001], [-88.33173828125001, -72.93437], [-88.56074218749995, -73.12070312500002], [-88.41938476562493, -73.22900390624997], [-88.20498046874994, -73.21953124999999], [-87.93632812500002, -73.24091796875], [-87.60844726562502, -73.19453125000005], [-87.40102539062494, -73.19199218749998], [-87.03793945312495, -73.35390625000002], [-86.791015625, -73.36367187500005], [-86.60214843749998, -73.35371093749998], [-85.98076171874996, -73.20849609374997], [-85.80141601562502, -73.19208984375], [-85.58217773437494, -73.25898437500004], [-85.26059570312498, -73.41328125000004], [-84.98120117187497, -73.50205078125], [-84.57128906249997, -73.55673828125003], [-84.21416015624996, -73.57275390625001], [-83.7962890625, -73.6451171875], [-83.56484375, -73.70595703125005], [-83.04189453124997, -73.70722656250005], [-82.81523437499996, -73.73232421875002], [-82.18349609374997, -73.85683593749998], [-81.60610351562502, -73.79570312500005], [-81.308740234375, -73.73828124999999], [-81.16318359375, -73.632421875], [-81.23598632812502, -73.47373046875], [-81.26240234374998, -73.31494140624997], [-81.17641601562497, -73.24882812500002], [-81.02431640624997, -73.23554687499997], [-80.33637695312498, -73.41416015625003], [-80.37983398437495, -73.30810546875], [-80.43876953124996, -73.225], [-80.61420898437501, -73.08339843750005], [-80.58774414062503, -72.97763671875], [-80.44223632812495, -72.94453125000001], [-80.15175781250002, -73.00009765624996], [-79.80800781249997, -73.02812], [-79.521728515625, -73.08955078124998], [-78.963720703125, -73.31240234375], [-78.78623046875, -73.50673828125007], [-78.40786132812502, -73.55576171875], [-78.14414062500003, -73.54707031250001], [-77.84560546874997, -73.51503906249998], [-77.44404296874995, -73.48798828124998], [-77.13554687499999, -73.49580078124997], [-76.85048828125, -73.46044921874996], [-76.76450195312498, -73.56630859375002], [-77.03300781249996, -73.71845703125004], [-77.13491210937494, -73.81767578124999], [-77.04892578125, -73.84414062500005], [-76.8875, -73.82050781250004], [-76.75498046874998, -73.78945312500002], [-76.29121093750001, -73.80537109374998], [-75.91621093749998, -73.73642578124996], [-75.59501953125002, -73.71123046874999], [-75.29306640624995, -73.63876953124996], [-75.04355468750003, -73.6451171875], [-74.85546874999997, -73.65800781249997], [-74.59404296875002, -73.715234375], [-74.34526367187496, -73.68388671875], [-74.19731445312502, -73.69550781249998], [-73.99604492187495, -73.69980468749996], [-72.92919921874994, -73.44794921874998], [-72.68740234375, -73.45234375], [-72.38081054687495, -73.43837890625], [-71.99418945312499, -73.37919921875002], [-71.69755859374993, -73.35302734375001], [-71.45273437499998, -73.35449218749996], [-71.01718749999998, -73.26279296875], [-70.32265624999997, -73.27402343749999], [-69.96860351562495, -73.22646484375], [-69.2822265625, -73.16962890625004], [-68.820947265625, -73.10546875000003], [-68.00034179687498, -72.93554687499996], [-67.66708984375003, -72.83457031249999], [-67.30673828124998, -72.61113281250005], [-67.07954101562498, -72.38759765625005], [-66.827734375, -72.0904296875], [-66.95166015624994, -71.89726562499999], [-67.08413085937502, -71.81220703124998], [-67.19575195312493, -71.7189453125], [-67.46035156250002, -71.52675781250001], [-67.529931640625, -71.28457031250005], [-67.50458984374998, -71.05781250000004], [-67.59838867187497, -70.84462890625005], [-67.69218749999999, -70.68613281249999], [-67.88847656250002, -70.42167968750003], [-68.12568359374993, -70.24990234375002], [-68.4033203125, -70.01972656250004], [-68.403662109375, -69.80917968750003], [-68.46982421874998, -69.64384765625002], [-68.63754882812503, -69.52636718749997], [-68.70795898437498, -69.43222656249998], [-68.58002929687495, -69.4126953125], [-68.46152343749998, -69.38398437500001], [-68.140869140625, -69.34755859375005], [-67.37177734375001, -69.41230468750001], [-67.30434570312494, -69.31757812499998], [-67.11044921874998, -69.24804687500003], [-66.97490234374996, -69.16103515625007], [-67.021240234375, -69.02871093750002], [-67.18759765624995, -68.97441406250006], [-67.39052734375, -68.86123046875], [-67.29902343750001, -68.77070312500004], [-67.13369140625, -68.77070312500004], [-67.05429687499998, -68.67148437499998], [-67.11689453124995, -68.5748046875], [-67.04101562500003, -68.453125], [-66.89350585937501, -68.29765625000003], [-66.79335937500002, -68.24042968750001], [-66.97758789062499, -68.14677734375002], [-67.14985351562501, -68.02460937500001], [-67.106689453125, -67.93007812500002], [-67.02128906250002, -67.8314453125], [-66.915380859375, -67.69257812500004], [-66.76987304687503, -67.59335937499998], [-66.67724609375, -67.56025390624998], [-66.70498046874997, -67.52714843749999], [-66.92314453124999, -67.49160156250004], [-67.12431640624996, -67.48505859375004], [-67.4869140625, -67.54697265625003], [-67.54453125000003, -67.53466796875003], [-67.56474609374996, -67.50292968750003], [-67.585791015625, -67.43515625], [-67.55039062499998, -67.26923828125004], [-67.49335937499998, -67.11279296874996], [-67.44047851562496, -67.09072265625], [-67.29902343750001, -67.07080078125003], [-67.16015624999997, -66.9517578125], [-67.03447265624993, -66.94511718749999], [-66.95507812500003, -66.984765625], [-66.92861328124997, -67.1435546875], [-66.8861328125, -67.17998046875006], [-66.90214843749999, -67.25595703124999], [-66.83603515625, -67.28242187499997], [-66.75732421874997, -67.23251953125], [-66.61000976562497, -67.20859375000003], [-66.5515625, -67.26259765625002], [-66.49868164062494, -67.28906249999999], [-66.47221679687496, -67.24277343749998], [-66.49096679687497, -67.1142578125], [-66.51513671875, -67.0625], [-66.53330078124998, -66.97929687500003], [-66.50209960937502, -66.94013671875004], [-66.46469726562503, -66.87519531250004], [-66.52680664062498, -66.74072265625], [-66.50361328124998, -66.68984375000004], [-66.37089843749993, -66.60888671874997], [-66.30654296874997, -66.5919921875], [-66.18188476562497, -66.59248046875001], [-65.95375976562494, -66.64560546874999], [-65.84746093749996, -66.64980468750005], [-65.76640625, -66.62490234375004], [-65.71796874999995, -66.5732421875], [-65.678466796875, -66.402734375], [-65.77578125000002, -66.34257812499999], [-65.77451171875003, -66.28798828125005], [-65.71748046874995, -66.25449218749998], [-65.61728515624998, -66.13525390625003], [-65.46508789062497, -66.12929687500005], [-65.31635742187495, -66.13984374999998], [-65.17202148437494, -66.116796875], [-65.22207031250002, -66.06845703125], [-65.26748046875002, -65.99423828124998], [-65.10507812499998, -65.95791015625005], [-64.99873046874998, -65.94628906249999], [-64.72167968750003, -65.99277343750003], [-64.61352539062503, -66.01904296874997], [-64.51430664062497, -65.95957031250003], [-64.54736328124994, -65.9], [-64.65322265624994, -65.86689453124998], [-64.67304687499998, -65.81406249999996], [-64.64658203125, -65.74785156249997], [-64.47460937499997, -65.78095703124997], [-64.43535156249996, -65.76835937499997], [-64.39003906249997, -65.70849609375003], [-64.41679687499999, -65.67988281249998], [-64.43891601562498, -65.64062], [-64.21347656249998, -65.63291015625], [-64.17998046874999, -65.61738281250004], [-64.13222656250002, -65.57050781249998], [-64.06591796875003, -65.55371093750003], [-63.862207031249994, -65.55595703125005], [-63.81811523437497, -65.53154296875005], [-63.79794921874995, -65.48037109375002], [-63.90800781249999, -65.46738281250003], [-64.05126953124997, -65.41718750000001], [-64.07109375000002, -65.27822265625005], [-64.03803710937493, -65.17900390624999], [-63.91240234375002, -65.09306640624999], [-63.76025390625, -65.03349609375002], [-63.48212890625001, -65.08496093750001], [-63.26416015625, -65.07314453125001], [-63.178125, -65.12607421875003], [-63.05908203124997, -65.13935546875], [-63.032617187499994, -65.07978515625003], [-63.08569335937497, -65.02792968750003], [-63.11987304687503, -64.94248046875003], [-62.77465820312503, -64.84169921875002], [-62.66450195312498, -64.85751953125003], [-62.527539062499955, -64.83339843750002], [-62.57622070312502, -64.75566406249999], [-62.50346679687493, -64.65644531250003], [-62.40424804687498, -64.64326171875001], [-62.33808593749998, -64.72919921875001], [-62.243310546874966, -64.74687], [-62.13964843749997, -64.72675781250004], [-61.88251953125001, -64.625390625], [-61.75639648437496, -64.60986328125003], [-61.63178710937498, -64.60468750000004], [-61.50048828124997, -64.54560546875001], [-61.47001953124999, -64.47558593750003], [-61.39594726562498, -64.42714843750002], [-61.173583984375, -64.3625], [-61.082128906250006, -64.31474609375005], [-60.886621093749966, -64.14970703124999], [-60.92207031249998, -64.10791015625], [-60.86416015625002, -64.0734375], [-60.277246093749994, -63.923925781250006], [-59.98984374999998, -63.90957031250001], [-59.51015624999994, -63.82070312500002], [-59.21757812499993, -63.71386718750002], [-59.03642578124999, -63.67031250000003], [-58.87207031249997, -63.55185546874996], [-58.673535156249955, -63.534375], [-58.215576171875, -63.45126953124999], [-57.868066406249994, -63.31875], [-57.38964843749994, -63.22626953124998], [-57.16826171874996, -63.23476562500002], [-57.07670898437496, -63.2625], [-57.020654296874994, -63.3728515625]]], [[[-55.528027343749955, -63.17353515624998], [-55.46625976562498, -63.199609374999966], [-55.215527343749955, -63.19863281250004], [-55.15625, -63.20478515625005], [-55.10644531250003, -63.24931640625006], [-55.07519531249997, -63.32431640624997], [-55.15678710937499, -63.35312], [-55.593652343749994, -63.33583984375001], [-55.75019531249998, -63.296679687500024], [-55.83046875, -63.29843750000003], [-56.00913085937498, -63.34150390625001], [-56.08300781250003, -63.38261718750004], [-56.378515625, -63.43730468749999], [-56.462841796874955, -63.41806640624998], [-56.49902343749997, -63.357617187500004], [-56.50532226562501, -63.334277343750045], [-56.47534179687503, -63.31826171874998], [-56.460546875000034, -63.30195312500003], [-56.465966796874966, -63.28349609375], [-56.385107421875034, -63.234082031249976], [-56.04218749999998, -63.157128906250016], [-55.58964843749996, -63.12832031250001], [-55.528710937499994, -63.15683593750005], [-55.528027343749955, -63.17353515624998]]], [[[-56.059960937499966, -63.07851562499999], [-56.25898437499998, -63.173144531249996], [-56.354101562500006, -63.16884765625001], [-56.54584960937498, -63.09833984375003], [-56.600537109374955, -63.06162109375001], [-56.614160156249966, -63.045117187500026], [-56.48857421874996, -62.9822265625], [-56.140380859375, -63.00527343749999], [-56.06176757812497, -63.01269531249999], [-56.058447265625006, -63.01855468750003], [-56.051025390625, -63.05468750000002], [-56.059960937499966, -63.07851562499999]]], [[[-60.5048828125, -62.9673828125], [-60.55468750000003, -62.97753906250002], [-60.61972656249995, -62.96904296874998], [-60.61772460937499, -62.98662109375001], [-60.56367187499998, -63.00898437500003], [-60.621679687500006, -63.01796875], [-60.69291992187493, -62.995703125], [-60.740429687499926, -62.948632812499994], [-60.70585937499999, -62.90556640625002], [-60.63740234375001, -62.89521484375004], [-60.5048828125, -62.9673828125]]], [[[-62.615087890625034, -63.069335937499986], [-62.65527343749994, -63.07382812500001], [-62.63886718749998, -63.031933593750004], [-62.527050781249955, -62.923828125], [-62.31743164062496, -62.874121093750006], [-62.34404296874996, -62.91777343750002], [-62.411474609375034, -62.971582031249966], [-62.615087890625034, -63.069335937499986]]], [[[-60.625, -62.56005859374997], [-60.576318359374994, -62.57265624999996], [-60.13989257812497, -62.54873046874997], [-60.00273437500002, -62.61845703125005], [-59.84956054687498, -62.61494140625005], [-60.22094726562497, -62.74541015624998], [-60.32158203124996, -62.70751953124999], [-60.35380859374996, -62.67919921874999], [-60.378027343750006, -62.61650390625001], [-60.61962890625003, -62.63339843749999], [-60.696923828124966, -62.62070312499998], [-60.79589843749997, -62.66230468750002], [-60.995068359374955, -62.67910156249997], [-61.063330078125006, -62.678906250000026], [-61.14980468749994, -62.63417968749997], [-61.15239257812493, -62.58906250000002], [-60.97470703124998, -62.59169921875002], [-60.83774414062495, -62.533691406250014], [-60.799267578124926, -62.4751953125], [-60.731835937499966, -62.491015625000024], [-60.625, -62.56005859374997]]], [[[-59.38901367187495, -62.44433593750002], [-59.525244140625006, -62.45146484375005], [-59.61943359374999, -62.39501953125001], [-59.66069335937496, -62.354296874999974], [-59.47851562499997, -62.35214843749998], [-59.395849609375006, -62.36728515625004], [-59.35336914062498, -62.41289062500001], [-59.38901367187495, -62.44433593750002]]], [[[-58.83793945312496, -62.302539062499996], [-59.05942382812495, -62.34775390624997], [-59.17456054687497, -62.301757812500014], [-59.20244140624996, -62.283105468749945], [-59.06381835937495, -62.23906250000003], [-58.99062, -62.24921874999997], [-58.962109374999926, -62.263867187500026], [-58.878662109375, -62.26787109375004], [-58.83793945312496, -62.302539062499996]]], [[[-57.978417968749994, -61.911914062499996], [-57.84931640624998, -61.93994140625002], [-57.737988281249955, -61.921191406250024], [-57.6765625, -61.94208984375002], [-57.63652343749996, -61.9982421875], [-57.639550781249966, -62.02041015624999], [-57.80668945312499, -62.01191406250003], [-57.962744140625006, -62.07753906249999], [-58.14755859374998, -62.063476562499964], [-58.17221679687495, -62.11777343750001], [-58.13310546874999, -62.14580078125004], [-58.18300781250002, -62.17001953125], [-58.341455078124966, -62.119433593749996], [-58.46665039062498, -62.13720703124998], [-58.50732421875, -62.22568359374997], [-58.561962890624955, -62.24394531250005], [-58.59404296874999, -62.247753906250026], [-58.643994140624955, -62.22519531249996], [-58.74570312499998, -62.21787109374998], [-58.75532226562498, -62.20605468749997], [-58.81904296875001, -62.171289062499994], [-59.00371093749996, -62.20976562500002], [-58.955224609374966, -62.16425781249998], [-58.70952148437499, -62.04472656250005], [-58.68359374999994, -62.00820312499999], [-58.39946289062496, -61.93828125000004], [-58.26518554687496, -61.9533203125], [-57.978417968749994, -61.911914062499996]]], [[[-54.070703124999966, -61.29912109375003], [-54.11542968750001, -61.30849609374999], [-54.18388671875002, -61.2697265625], [-54.192236328125034, -61.246582031249986], [-54.12197265625002, -61.201757812500006], [-54.04990234374998, -61.142089843750014], [-54.02431640625002, -61.13525390624996], [-54.04130859375002, -61.25537109375], [-54.070703124999966, -61.29912109375003]]], [[[-55.165429687499966, -61.22041015624998], [-55.297021484374966, -61.24853515625003], [-55.346923828125, -61.21162109374997], [-55.369140625, -61.14638671875], [-55.44023437499999, -61.106152343749976], [-55.38701171874999, -61.07265625], [-54.67099609374995, -61.11699218750005], [-54.7099609375, -61.139746093749984], [-55.05761718750003, -61.16865234375001], [-55.165429687499966, -61.22041015624998]]], [[[-45.7177734375, -60.52089843750003], [-45.49970703124998, -60.546484375], [-45.38627929687496, -60.58271484375001], [-45.35742187499994, -60.62382812500004], [-45.22812, -60.63974609374999], [-45.21098632812496, -60.64814453125002], [-45.186376953125006, -60.67187], [-45.1728515625, -60.69873046875002], [-45.173681640625006, -60.733007812499984], [-45.39804687499998, -60.64970703124998], [-45.709179687499926, -60.645410156249994], [-45.78002929687497, -60.58603515624998], [-45.93730468749996, -60.61992187500004], [-45.954785156249955, -60.597460937499996], [-45.956298828125, -60.568359375000014], [-45.93481445312497, -60.526562500000026], [-45.83417968750001, -60.54345703125001], [-45.7177734375, -60.52089843750003]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Ant.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;ATA&quot;, &quot;adm0_a3_is&quot;: &quot;ATA&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;ATA&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Antarctica&quot;, &quot;brk_a3&quot;: &quot;ATA&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Antarctica&quot;, &quot;continent&quot;: &quot;Antarctica&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: null, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 760.4, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Antarctica&quot;, &quot;gu_a3&quot;: &quot;ATA&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;2. High income: nonOECD&quot;, &quot;iso_a2&quot;: &quot;AQ&quot;, &quot;iso_a3&quot;: &quot;ATA&quot;, &quot;iso_n3&quot;: &quot;010&quot;, &quot;labelrank&quot;: 4, &quot;lastcensus&quot;: -99, &quot;level&quot;: 2, &quot;long_len&quot;: 10, &quot;mapcolor13&quot;: -99, &quot;mapcolor7&quot;: 4, &quot;mapcolor8&quot;: 5, &quot;mapcolor9&quot;: 1, &quot;name&quot;: &quot;Antarctica&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 10, &quot;name_long&quot;: &quot;Antarctica&quot;, &quot;name_sort&quot;: &quot;Antarctica&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: &quot;Multiple claims held in abeyance&quot;, &quot;pop_est&quot;: 3802, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AQ&quot;, &quot;region_un&quot;: &quot;Antarctica&quot;, &quot;region_wb&quot;: &quot;Antarctica&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;ATA&quot;, &quot;sovereignt&quot;: &quot;Antarctica&quot;, &quot;su_a3&quot;: &quot;ATA&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Antarctica&quot;, &quot;subunit&quot;: &quot;Antarctica&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Indeterminate&quot;, &quot;un_a3&quot;: &quot;-099&quot;, &quot;wb_a2&quot;: &quot;-99&quot;, &quot;wb_a3&quot;: &quot;-99&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[123.59453124999999, -12.425683593750009], [123.59521484375, -12.4359375], [123.57314453125002, -12.434179687500006], [123.57246093750001, -12.423925781250006], [123.59453124999999, -12.425683593750009]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;A.C.Is.&quot;, &quot;abbrev_len&quot;: 7, &quot;adm0_a3&quot;: &quot;ATC&quot;, &quot;adm0_a3_is&quot;: &quot;AUS&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;ATC&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 1, &quot;admin&quot;: &quot;Ashmore and Cartier Islands&quot;, &quot;brk_a3&quot;: &quot;ATC&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Ashmore and Cartier Is.&quot;, &quot;continent&quot;: &quot;Oceania&quot;, &quot;economy&quot;: &quot;7. Least developed region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Territory of Ashmore and Cartier Islands&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: -99, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Ashmore and Cartier Islands&quot;, &quot;gu_a3&quot;: &quot;ATC&quot;, &quot;homepart&quot;: -99, &quot;income_grp&quot;: &quot;5. Low income&quot;, &quot;iso_a2&quot;: &quot;-99&quot;, &quot;iso_a3&quot;: &quot;-99&quot;, &quot;iso_n3&quot;: &quot;036&quot;, &quot;labelrank&quot;: 5, &quot;lastcensus&quot;: -99, &quot;level&quot;: 2, &quot;long_len&quot;: 27, &quot;mapcolor13&quot;: 7, &quot;mapcolor7&quot;: 1, &quot;mapcolor8&quot;: 2, &quot;mapcolor9&quot;: 2, &quot;name&quot;: &quot;Ashmore and Cartier Is.&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 23, &quot;name_long&quot;: &quot;Ashmore and Cartier Islands&quot;, &quot;name_sort&quot;: &quot;Ashmore and Cartier Islands&quot;, &quot;note_adm0&quot;: &quot;Auz.&quot;, &quot;note_brk&quot;: null, &quot;pop_est&quot;: -99, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AU&quot;, &quot;region_un&quot;: &quot;Oceania&quot;, &quot;region_wb&quot;: &quot;East Asia \\u0026 Pacific&quot;, &quot;scalerank&quot;: 5, &quot;sov_a3&quot;: &quot;AU1&quot;, &quot;sovereignt&quot;: &quot;Australia&quot;, &quot;su_a3&quot;: &quot;ATC&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Australia and New Zealand&quot;, &quot;subunit&quot;: &quot;Ashmore and Cartier Islands&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Dependency&quot;, &quot;un_a3&quot;: &quot;-099&quot;, &quot;wb_a2&quot;: &quot;-99&quot;, &quot;wb_a3&quot;: &quot;-99&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[69.2824218750001, -49.05888671875002], [69.22060546875, -49.06679687500003], [69.20156250000005, -49.03427734374998], [69.20390625000007, -48.9912109375], [69.16953125, -48.957031249999964], [69.15009765625004, -48.91904296875004], [69.16718750000004, -48.88291015624996], [69.26640625000002, -48.878808593750016], [69.36875, -48.89042968749998], [69.39472656250004, -48.951171875000014], [69.32119140625, -49.03427734374998], [69.2824218750001, -49.05888671875002]]], [[[69.18486328125002, -49.10957031250004], [69.26513671875003, -49.11542968749999], [69.31425781250007, -49.10625], [69.53496093750002, -48.97431640625002], [69.59277343749997, -48.97099609375005], [69.5873046875, -49.07197265625002], [69.64404296875003, -49.11738281250003], [69.57226562499997, -49.129003906250006], [69.43623046875004, -49.124023437499964], [69.40507812500002, -49.18173828125], [69.5423828125, -49.25566406250005], [69.6107421875, -49.26582031249999], [69.6666015625, -49.26494140624999], [69.7707031250001, -49.24814453125003], [69.85439453125, -49.221582031249945], [69.983984375, -49.15986328124998], [70.06132812500002, -49.13603515625002], [70.2083984375, -49.134960937499976], [70.28496093750002, -49.076464843750045], [70.32021484375005, -49.05859374999996], [70.40625, -49.061132812500034], [70.48427734375005, -49.08388671874996], [70.53085937500006, -49.13691406250002], [70.55546875000007, -49.201464843750024], [70.5368164062501, -49.265527343750016], [70.48505859375004, -49.32763671874997], [70.3898437500001, -49.365625], [70.41142578125007, -49.410937499999974], [70.38613281250005, -49.433984374999966], [70.33837890624997, -49.43525390625005], [70.29765625000007, -49.42480468749996], [70.23779296875003, -49.37158203124995], [70.16582031250002, -49.34296874999998], [69.99316406250003, -49.344921875000026], [69.915625, -49.348535156249966], [69.90214843750002, -49.3892578125], [69.86113281250002, -49.42050781249997], [69.81835937500003, -49.43769531250001], [69.75996093750004, -49.430175781249986], [69.74921875000004, -49.447558593749974], [69.78027343749997, -49.490136718749945], [69.85595703125003, -49.544042968750006], [69.98642578125006, -49.58164062500003], [70.062890625, -49.58935546875], [70.07343750000004, -49.51777343749998], [70.16582031250002, -49.50937], [70.2477539062501, -49.53066406250003], [70.30712890625003, -49.58349609374996], [70.25878906250003, -49.60078125000002], [70.2162109375, -49.62880859374995], [70.20742187500005, -49.665039062499964], [70.12431640625002, -49.70439453124999], [70.07509765625, -49.70859375000004], [69.91894531249997, -49.68935546875003], [69.82607421875, -49.64492187499995], [69.8039062500001, -49.613574218750045], [69.74667968750006, -49.60175781250004], [69.68203125000005, -49.64218750000001], [69.612890625, -49.65097656250003], [69.47763671875006, -49.617382812500026], [69.3527343750001, -49.56318359375], [69.2746093750001, -49.54277343750001], [69.153125, -49.5296875], [69.08593750000003, -49.652929687499984], [68.99296875000007, -49.704980468750016], [68.87265625, -49.709863281249945], [68.81474609375002, -49.69960937499999], [68.7828125, -49.65126953125], [68.7912109375001, -49.59960937499996], [68.81054687499997, -49.550195312500016], [68.8483398437501, -49.49960937500001], [68.87207031249997, -49.44433593750003], [68.8619140625, -49.39218749999998], [68.81845703125006, -49.35390625], [68.84140625, -49.28535156249997], [68.79882812499997, -49.23164062500004], [68.81357421875006, -49.192089843749976], [68.88339843750006, -49.16494140624995], [68.85380859375007, -49.141308593750026], [68.81669921875007, -49.135058593749996], [68.79013671875006, -49.103710937500004], [68.76953125000003, -49.06591796875003], [68.79658203125004, -48.994726562500006], [68.83691406249997, -48.92617187499998], [68.83203124999997, -48.84873046875001], [68.90029296875005, -48.77558593750003], [68.95869140625004, -48.69384765624999], [69.00244140624997, -48.661230468750006], [69.0572265625, -48.65644531250001], [69.08125, -48.679296874999956], [69.09306640625007, -48.72392578124999], [69.07158203125002, -48.752832031250016], [69.12275390625004, -48.76601562499995], [69.13613281250005, -48.86103515625003], [69.1041015625, -48.89990234374996], [69.09941406250002, -48.93759765625], [69.03271484375003, -49.01757812499995], [69.05214843750005, -49.08193359375001], [69.18486328125002, -49.10957031250004]]], [[[51.83457031250006, -46.43994140625], [51.76171874999997, -46.448730468750014], [51.69658203125002, -46.428125], [51.65927734375006, -46.37363281249999], [51.7418945312501, -46.32685546874997], [51.78417968750003, -46.35888671875], [51.81542968749997, -46.394726562500026], [51.83457031250006, -46.43994140625]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Fr. S.A.L.&quot;, &quot;abbrev_len&quot;: 10, &quot;adm0_a3&quot;: &quot;ATF&quot;, &quot;adm0_a3_is&quot;: &quot;ATF&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;ATF&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 1, &quot;admin&quot;: &quot;French Southern and Antarctic Lands&quot;, &quot;brk_a3&quot;: &quot;ATF&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Fr. S. and Antarctic Lands&quot;, &quot;continent&quot;: &quot;Seven seas (open ocean)&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Territory of the French Southern and Antarctic Lands&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 16, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;French Southern and Antarctic Lands&quot;, &quot;gu_a3&quot;: &quot;ATF&quot;, &quot;homepart&quot;: -99, &quot;income_grp&quot;: &quot;2. High income: nonOECD&quot;, &quot;iso_a2&quot;: &quot;TF&quot;, &quot;iso_a3&quot;: &quot;ATF&quot;, &quot;iso_n3&quot;: &quot;260&quot;, &quot;labelrank&quot;: 6, &quot;lastcensus&quot;: -99, &quot;level&quot;: 2, &quot;long_len&quot;: 35, &quot;mapcolor13&quot;: 11, &quot;mapcolor7&quot;: 7, &quot;mapcolor8&quot;: 5, &quot;mapcolor9&quot;: 9, &quot;name&quot;: &quot;Fr. S. Antarctic Lands&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 22, &quot;name_long&quot;: &quot;French Southern and Antarctic Lands&quot;, &quot;name_sort&quot;: &quot;French Southern and Antarctic Lands&quot;, &quot;note_adm0&quot;: &quot;Fr.&quot;, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 140, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;TF&quot;, &quot;region_un&quot;: &quot;Seven seas (open ocean)&quot;, &quot;region_wb&quot;: &quot;Sub-Saharan Africa&quot;, &quot;scalerank&quot;: 3, &quot;sov_a3&quot;: &quot;FR1&quot;, &quot;sovereignt&quot;: &quot;France&quot;, &quot;su_a3&quot;: &quot;ATF&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Seven seas (open ocean)&quot;, &quot;subunit&quot;: &quot;French Southern and Antarctic Lands&quot;, &quot;tiny&quot;: 2, &quot;type&quot;: &quot;Dependency&quot;, &quot;un_a3&quot;: &quot;-099&quot;, &quot;wb_a2&quot;: &quot;-99&quot;, &quot;wb_a3&quot;: &quot;-99&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-61.71606445312503, 17.037011718749994], [-61.74814453124998, 16.997167968750034], [-61.85966796874996, 17.013330078124966], [-61.88203124999998, 17.063134765624994], [-61.887109374999966, 17.09814453125], [-61.81728515624994, 17.168945312500057], [-61.73857421874999, 17.138476562500045], [-61.70820312500001, 17.105078125], [-61.68603515625003, 17.098437500000074], [-61.686474609374926, 17.06982421875003], [-61.694970703124994, 17.048925781250034], [-61.71606445312503, 17.037011718749994]]], [[[-61.74711914062496, 17.57495117187497], [-61.76201171874996, 17.548681640625063], [-61.84379882812502, 17.59614257812504], [-61.86875, 17.685449218750023], [-61.866162109374955, 17.704296874999955], [-61.852441406249994, 17.714062499999983], [-61.819921875000034, 17.696875], [-61.77675781249994, 17.690478515625074], [-61.749609375, 17.661328124999983], [-61.74711914062496, 17.57495117187497]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Ant.B.&quot;, &quot;abbrev_len&quot;: 6, &quot;adm0_a3&quot;: &quot;ATG&quot;, &quot;adm0_a3_is&quot;: &quot;ATG&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;ATG&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Antigua and Barbuda&quot;, &quot;brk_a3&quot;: &quot;ATG&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Antigua and Barb.&quot;, &quot;continent&quot;: &quot;North America&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Antigua and Barbuda&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 1657, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Antigua and Barbuda&quot;, &quot;gu_a3&quot;: &quot;ATG&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;3. Upper middle income&quot;, &quot;iso_a2&quot;: &quot;AG&quot;, &quot;iso_a3&quot;: &quot;ATG&quot;, &quot;iso_n3&quot;: &quot;028&quot;, &quot;labelrank&quot;: 6, &quot;lastcensus&quot;: 2011, &quot;level&quot;: 2, &quot;long_len&quot;: 19, &quot;mapcolor13&quot;: 5, &quot;mapcolor7&quot;: 2, &quot;mapcolor8&quot;: 2, &quot;mapcolor9&quot;: 5, &quot;name&quot;: &quot;Antigua and Barb.&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 17, &quot;name_long&quot;: &quot;Antigua and Barbuda&quot;, &quot;name_sort&quot;: &quot;Antigua and Barbuda&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 85632, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AG&quot;, &quot;region_un&quot;: &quot;Americas&quot;, &quot;region_wb&quot;: &quot;Latin America \\u0026 Caribbean&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;ATG&quot;, &quot;sovereignt&quot;: &quot;Antigua and Barbuda&quot;, &quot;su_a3&quot;: &quot;ATG&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Caribbean&quot;, &quot;subunit&quot;: &quot;Antigua and Barbuda&quot;, &quot;tiny&quot;: 4, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;028&quot;, &quot;wb_a2&quot;: &quot;AG&quot;, &quot;wb_a3&quot;: &quot;ATG&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[158.87880859375005, -54.709765625], [158.84521484375003, -54.74921875000004], [158.83593750000003, -54.70400390624998], [158.89697265625003, -54.506054687499976], [158.95888671875, -54.47236328125004], [158.94560546875007, -54.575], [158.87880859375005, -54.709765625]]], [[[147.35605468750006, -43.396972656250014], [147.30888671875007, -43.50078125000002], [147.23144531250003, -43.48310546874997], [147.15380859375003, -43.5001953125], [147.10498046875003, -43.43115234374996], [147.10468750000004, -43.412890624999974], [147.16308593750003, -43.43027343749996], [147.18466796875006, -43.4078125], [147.19843750000004, -43.37919921875003], [147.21972656250003, -43.371386718750045], [147.23398437500006, -43.330468749999966], [147.28388671875004, -43.278906250000034], [147.3125, -43.28027343749996], [147.3424804687501, -43.34628906249999], [147.35605468750006, -43.396972656250014]]], [[[147.43457031250003, -43.24072265624997], [147.371875, -43.24082031249999], [147.34882812500004, -43.23242187499997], [147.33759765625004, -43.18330078125], [147.29609375000004, -43.16171874999996], [147.31914062500002, -43.14531249999999], [147.3273437500001, -43.114648437499966], [147.35253906249997, -43.08027343749997], [147.39726562500007, -43.11826171874999], [147.43457031250003, -43.24072265624997]]], [[[148.10429687500002, -42.71044921875004], [148.04814453125002, -42.71923828124996], [148.0296875, -42.71484374999996], [148.03085937500006, -42.663378906250045], [148.02275390625002, -42.64042968749999], [148.07255859375002, -42.59316406249995], [148.14277343750004, -42.61591796874997], [148.16953125000006, -42.65175781249998], [148.10058593749997, -42.680566406249994], [148.10429687500002, -42.71044921875004]]], [[[145.04296875000003, -40.78671875], [145.15869140624997, -40.79062], [145.22431640625004, -40.76513671875003], [145.28300781250002, -40.76992187500002], [145.34941406250002, -40.82636718749998], [145.42939453125004, -40.85820312499999], [145.48515625000007, -40.85234375000003], [145.53349609375002, -40.86396484375], [145.57646484375002, -40.9041015625], [145.68603515625003, -40.93906250000002], [145.7337890625, -40.96201171874999], [145.77539062500003, -40.99716796874996], [145.8214843750001, -41.02460937500004], [146.11113281250002, -41.118066406249994], [146.31748046875006, -41.16347656250001], [146.5744140625001, -41.142382812499974], [146.6505859375001, -41.11621093749997], [146.72343750000002, -41.07802734375001], [146.78603515625005, -41.11367187499998], [146.84814453124997, -41.16806640624996], [146.83603515625012, -41.109375], [146.85664062500004, -41.05830078124998], [146.91943359374997, -41.01777343749998], [146.98984375000006, -40.99238281249997], [147.10576171875007, -40.99423828124999], [147.21884765625012, -40.9833984375], [147.2689453125, -40.959765624999974], [147.32050781250004, -40.95644531250001], [147.38769531249997, -40.985546875], [147.45478515625004, -41.00166015624998], [147.50078125000002, -40.96416015624999], [147.5792968750001, -40.87558593749998], [147.62167968750012, -40.844726562499986], [147.81767578125007, -40.87167968749998], [147.87294921875005, -40.87255859374997], [147.96875, -40.779589843750045], [148.03281250000012, -40.78095703124997], [148.215234375, -40.85488281250002], [148.29287109375, -40.947070312499974], [148.28544921875007, -41.11533203124996], [148.29160156250006, -41.174609375000045], [148.30625, -41.23310546874998], [148.31220703125004, -41.34970703125002], [148.28984375000007, -41.46503906249998], [148.28691406250002, -41.55498046875], [148.29658203125004, -41.646191406250026], [148.28759765624997, -41.81572265625002], [148.31572265625002, -41.927734375], [148.30166015625, -42.004199218750045], [148.30146484375004, -42.03994140624995], [148.32802734375005, -42.07373046875], [148.34082031249997, -42.111132812499974], [148.33105468749997, -42.1591796875], [148.34257812500007, -42.21533203124997], [148.33125, -42.261621093749994], [148.29033203125002, -42.25498046874998], [148.27695312500012, -42.21943359375001], [148.2845703125, -42.17343749999996], [148.27714843750007, -42.13642578124998], [148.25576171875, -42.10263671875002], [148.18310546875003, -42.06474609375003], [148.20439453125007, -42.041992187500014], [148.2416015625, -42.021875], [148.21367187500002, -41.97001953125], [148.16718750000004, -42.012304687500006], [148.14121093750006, -42.06982421875], [148.15625, -42.08828125000002], [148.12753906250006, -42.10371093749997], [148.0666015625001, -42.17031249999995], [148.02275390625002, -42.25947265625], [148.00488281250003, -42.34511718749995], [148.009375, -42.4359375], [147.97353515625005, -42.505859375000014], [147.92441406250006, -42.5724609375], [147.91210937499997, -42.65849609375002], [147.91503906250003, -42.81640624999996], [147.9577148437501, -42.960449218749986], [147.980859375, -43.157031249999974], [147.94541015625006, -43.18183593749997], [147.8385742187501, -43.19511718750002], [147.7858398437501, -43.22001953125002], [147.69892578125004, -43.12255859374997], [147.64794921874997, -43.02060546874999], [147.68730468750007, -42.97988281249995], [147.77392578124997, -43.00341796875004], [147.80039062500012, -42.98027343750003], [147.80742187500002, -42.95410156250003], [147.8, -42.928125], [147.69345703125006, -42.871972656249994], [147.57382812500006, -42.84570312499997], [147.53583984375004, -42.87802734374998], [147.54902343750004, -42.97451171875001], [147.53671875000012, -42.99648437499995], [147.4523437500001, -43.03339843750001], [147.40800781250002, -42.89384765625], [147.29794921875006, -42.790917968749994], [147.3019531250001, -42.84052734374998], [147.34765624999997, -42.92656250000002], [147.34267578125005, -42.964453125], [147.325, -43.013476562500045], [147.28076171875003, -43.03173828125003], [147.25976562500003, -43.071093749999974], [147.25976562500003, -43.12646484374997], [147.24501953125005, -43.21591796874999], [147.17285156249997, -43.25585937499996], [146.99697265625005, -43.15634765625002], [146.98486328124997, -43.18984375], [146.9875, -43.21875], [147.07734375000004, -43.27587890625003], [147.03593750000007, -43.31904296875004], [147.00468750000002, -43.36962890625004], [146.95468750000012, -43.50244140625], [146.87392578125, -43.6125], [146.83427734375002, -43.61933593750001], [146.69921875000003, -43.60195312500002], [146.54853515625004, -43.50888671874999], [146.41318359375012, -43.51953125000003], [146.1867187500001, -43.51279296874998], [146.04316406250004, -43.547167968749974], [146.01308593750005, -43.444824218749986], [145.98173828125007, -43.408398437500026], [145.99443359375007, -43.37607421875002], [146.1087890625, -43.35439453124995], [146.22636718750007, -43.355273437500045], [146.20800781249997, -43.31621093749999], [146.17646484375004, -43.30175781249997], [146.12509765625006, -43.31123046875004], [145.9752929687501, -43.27714843750003], [145.8732421875001, -43.29238281250002], [145.80273437500003, -43.24404296875004], [145.68154296875, -43.07597656249999], [145.60996093750006, -42.998242187500054], [145.56738281250003, -42.96796875000001], [145.51757812499997, -42.9513671875], [145.48759765625002, -42.92666015625004], [145.26816406250006, -42.54433593749995], [145.23710937500007, -42.455566406249986], [145.19882812500006, -42.23085937500004], [145.37294921875, -42.33847656250002], [145.43486328125002, -42.40654296875003], [145.46826171874997, -42.492871093750026], [145.52724609375, -42.388183593750014], [145.51660156249997, -42.3544921875], [145.36035156250003, -42.22753906249997], [145.33964843750007, -42.19072265625003], [145.33105468750003, -42.14707031250002], [145.29443359375003, -42.191015625], [145.23486328124997, -42.19697265624997], [145.2589843750001, -42.107324218749994], [145.23818359375, -42.01962890624999], [145.0553710937501, -41.826757812500034], [144.91552734375003, -41.64404296875003], [144.77792968750012, -41.41884765624998], [144.76611328125003, -41.39003906249998], [144.76435546875004, -41.34150390625004], [144.69775390624997, -41.190722656250045], [144.66240234375002, -41.07890625], [144.64609375000006, -40.980859375], [144.7096679687501, -40.78291015625001], [144.71855468750002, -40.67226562500002], [144.81855468750004, -40.72167968749997], [145.04296875000003, -40.78671875]]], [[[148.23691406250006, -40.515136718749986], [148.18779296875007, -40.592578125000045], [148.12695312500003, -40.5439453125], [148.11728515625012, -40.52148437499996], [148.19316406250002, -40.503125], [148.21835937500006, -40.50507812499998], [148.23691406250006, -40.515136718749986]]], [[[144.784375, -40.506738281249966], [144.74804687499997, -40.589453125000034], [144.7101562500001, -40.48525390625004], [144.7511718750001, -40.470214843749986], [144.7833984375001, -40.434863281249974], [144.79082031250002, -40.44033203125002], [144.784375, -40.506738281249966]]], [[[148.32626953125006, -40.30693359375003], [148.42070312500002, -40.36718749999996], [148.47421875000006, -40.43242187500002], [148.40400390625004, -40.486523437500026], [148.3527343750001, -40.497265625], [148.31943359375006, -40.434570312500014], [148.2140625000001, -40.45751953124997], [148.10253906250003, -40.45166015625003], [148.02011718750012, -40.40419921874995], [148.0104492187501, -40.380566406250026], [148.0587890625001, -40.35683593749998], [148.19814453125005, -40.35791015625003], [148.32626953125006, -40.30693359375003]]], [[[148.000390625, -39.75761718750003], [148.17792968750004, -39.938476562500014], [148.27001953124997, -39.966699218749994], [148.29736328125003, -39.985742187499966], [148.28984375000007, -40.06542968750003], [148.25078125000002, -40.099511718749966], [148.32324218749997, -40.144433593749966], [148.31357421875012, -40.173535156250026], [148.29941406250006, -40.17246093749999], [148.21035156250005, -40.23369140625003], [148.10566406250004, -40.26210937499995], [148.0736328125, -40.24082031249998], [148.04687, -40.21279296874995], [148.0248046875, -40.17197265624998], [147.89052734375, -40.014550781249966], [147.90595703125004, -39.97138671874997], [147.87626953125002, -39.90546875000004], [147.81230468750007, -39.91044921874999], [147.76718750000012, -39.87031249999998], [147.83916015625002, -39.831542968749986], [147.93300781250005, -39.72597656249998], [148.000390625, -39.75761718750003]]], [[[143.92792968750004, -40.116113281249966], [143.89873046875007, -40.120214843750006], [143.87578125000002, -40.06396484375], [143.88759765625, -39.98359374999997], [143.83857421875004, -39.90410156250003], [143.86523437499997, -39.824218750000014], [143.86181640625003, -39.737988281250026], [143.87939453125003, -39.7], [143.93935546875, -39.65810546875001], [143.94882812500006, -39.58369140625004], [144.00078125000007, -39.580175781250034], [144.09130859374997, -39.63808593750001], [144.12089843750002, -39.78525390624998], [144.10605468750012, -39.87402343750003], [144.14101562500005, -39.953808593750026], [144.11191406250006, -40.02207031249999], [144.03505859375005, -40.07822265624998], [143.92792968750004, -40.116113281249966]]], [[[145.31445312500003, -38.49082031249996], [145.34921875000006, -38.53818359375002], [145.35507812500012, -38.55703124999995], [145.2708984375, -38.5197265625], [145.12841796875003, -38.52763671875], [145.21777343750003, -38.45859374999998], [145.28789062500002, -38.472167968749986], [145.31445312500003, -38.49082031249996]]], [[[145.48652343750004, -38.35488281249998], [145.33583984375, -38.420996093750034], [145.28027343749997, -38.39062], [145.28583984375004, -38.341015625], [145.2953125, -38.318945312500034], [145.42656250000002, -38.31416015625004], [145.48652343750004, -38.35488281249998]]], [[[137.59648437500007, -35.73867187499998], [137.83593750000003, -35.762109374999966], [137.92890625000004, -35.72607421875], [138.04658203125004, -35.755175781249974], [138.12343750000005, -35.85234375], [138.06650390625006, -35.900585937500026], [138.0119140625001, -35.90761718750004], [137.83554687500012, -35.86777343749999], [137.67089843749997, -35.897949218750014], [137.6222656250001, -35.93808593750002], [137.59023437500005, -36.02714843749996], [137.44843750000004, -36.07480468749999], [137.38222656250005, -36.02089843750002], [137.20957031250012, -35.982421875], [137.14775390625007, -36.039062499999986], [137.02587890625003, -36.023925781250014], [136.91269531250006, -36.04667968750003], [136.7550781250001, -36.03310546875002], [136.58925781250005, -35.9353515625], [136.540625, -35.89013671875003], [136.57910156250003, -35.808691406250034], [136.63867187499997, -35.74882812500002], [137.09179687500003, -35.66386718750002], [137.33408203125006, -35.59248046875004], [137.53046875000004, -35.605078125000034], [137.58496093749997, -35.620214843750006], [137.63544921875004, -35.656445312500026], [137.59814453124997, -35.72226562500002], [137.59648437500007, -35.73867187499998]]], [[[153.53876953125004, -27.436425781250037], [153.45273437500012, -27.71171874999999], [153.42656250000002, -27.70644531249998], [153.39580078125007, -27.665039062499986], [153.40087890625003, -27.50566406250003], [153.43544921875, -27.40537109375002], [153.521875, -27.422460937500034], [153.53876953125004, -27.436425781250037]]], [[[153.44248046875006, -27.31601562500002], [153.42089843750003, -27.330957031249966], [153.37656250000006, -27.23535156250003], [153.36503906250002, -27.138867187499997], [153.37988281250003, -27.049414062499977], [153.43232421875004, -27.02988281249999], [153.46679687499997, -27.038085937499986], [153.42636718750006, -27.20146484374996], [153.44248046875006, -27.31601562500002]]], [[[113.18300781250005, -26.053125], [113.15644531250004, -26.09453125], [112.96425781250005, -25.78310546875001], [112.90820312499997, -25.56982421875], [112.94707031250002, -25.531542968750017], [112.98242187500003, -25.52021484375001], [113.09628906250012, -25.815039062500034], [113.13154296875004, -25.88261718750003], [113.13183593749997, -25.951953125000045], [113.14833984375, -25.97382812499997], [113.18300781250005, -26.053125]]], [[[153.07744140625002, -25.75078125], [153.0519531250001, -25.778320312500014], [153.00693359375006, -25.72890625], [152.97666015625012, -25.551367187499963], [152.99902343749997, -25.44843750000004], [153.05156250000002, -25.35429687499996], [153.06074218750004, -25.302246093750014], [153.03808593750003, -25.193164062500003], [153.18925781250002, -25.07050781249997], [153.22753906249997, -25.00576171875001], [153.24199218750002, -24.922558593750026], [153.18632812500002, -24.83261718749999], [153.14375, -24.814843750000023], [153.18095703125002, -24.76484375000004], [153.22314453124997, -24.73955078124996], [153.25693359375012, -24.72890625], [153.28212890625, -24.738281249999957], [153.29794921875012, -24.91523437500004], [153.35927734375, -24.977734374999983], [153.35019531250012, -25.063085937499963], [153.14140625000002, -25.512792968750006], [153.08378906250002, -25.682519531250037], [153.07744140625002, -25.75078125]]], [[[151.14658203125006, -23.49082031250002], [151.18076171875006, -23.516210937500034], [151.21201171875006, -23.513085937500023], [151.24013671875, -23.529687500000037], [151.22880859375002, -23.594921875], [151.27431640625005, -23.66845703124997], [151.29580078125, -23.720312499999963], [151.26152343750002, -23.76230468749999], [151.23828124999997, -23.77578125], [151.18417968750006, -23.740722656250043], [151.03330078125006, -23.530175781250037], [151.0599609375, -23.460546874999977], [151.14658203125006, -23.49082031250002]]], [[[150.51669921875006, -22.32255859374996], [150.4884765625001, -22.324707031250043], [150.46240234375003, -22.307714843750034], [150.48466796875002, -22.267871093750003], [150.4884765625001, -22.210742187500003], [150.52148437499997, -22.22832031250003], [150.54882812499997, -22.306933593749974], [150.51669921875006, -22.32255859374996]]], [[[149.92832031250012, -22.19306640625004], [149.89365234375006, -22.223242187499977], [149.86953125000005, -22.150390624999957], [149.875390625, -22.07402343750003], [149.91230468750004, -22.048730468750037], [149.92792968750004, -22.14931640625001], [149.92832031250012, -22.19306640625004]]], [[[115.44619140625005, -20.78779296875001], [115.3880859375, -20.86601562499996], [115.31806640625004, -20.850585937500014], [115.30859374999997, -20.811132812499963], [115.35429687500007, -20.746289062499997], [115.43457031249997, -20.66796875000003], [115.45761718750006, -20.716308593750014], [115.44619140625005, -20.78779296875001]]], [[[149.04375, -20.29150390624997], [149.01992187500005, -20.302539062500003], [148.98740234375006, -20.30175781250003], [148.93886718750005, -20.283691406249986], [148.98105468750012, -20.153515625000026], [149.00439453124997, -20.221484375000017], [149.0453125, -20.27753906249997], [149.04375, -20.29150390624997]]], [[[148.93554687499997, -20.14990234375], [148.91347656250005, -20.154296875], [148.88691406250004, -20.14355468750003], [148.90644531250004, -20.101953125], [148.93164062500003, -20.06894531250002], [148.96787109375012, -20.04433593749998], [148.95625, -20.134667968749994], [148.93554687499997, -20.14990234375]]], [[[146.27832031249997, -18.23125], [146.29882812499997, -18.32607421875005], [146.3419921875001, -18.400097656250026], [146.32705078125, -18.448632812499966], [146.29882812499997, -18.48476562500005], [146.23564453125002, -18.450781249999963], [146.19130859375005, -18.362890625], [146.11621093750003, -18.292382812500023], [146.09882812500004, -18.251757812500003], [146.1867187500001, -18.25517578124999], [146.230859375, -18.241406250000026], [146.24912109375006, -18.225878906249974], [146.27832031249997, -18.23125]]], [[[139.45917968750004, -17.11455078124996], [139.42167968750002, -17.131640624999974], [139.40820312499997, -17.09062], [139.45917968750004, -17.04912109374996], [139.49277343750006, -16.990429687499983], [139.56005859374997, -17.041992187500014], [139.57089843750006, -17.09443359375004], [139.45917968750004, -17.11455078124996]]], [[[139.50781250000003, -16.57304687499996], [139.43056640625, -16.661035156250023], [139.39150390625, -16.648632812499983], [139.35429687500007, -16.69658203124999], [139.28300781250002, -16.719433593750026], [139.23906250000007, -16.718652343750037], [139.1595703125, -16.74169921875003], [139.1476562500001, -16.713867187499957], [139.16269531250012, -16.625878906249966], [139.2287109375001, -16.52753906250001], [139.29296875000003, -16.467285156249986], [139.45888671875, -16.438476562499986], [139.58789062499997, -16.39521484374997], [139.60449218749997, -16.403222656249994], [139.69775390624997, -16.514941406250017], [139.55966796875006, -16.52949218749997], [139.50781250000003, -16.57304687499996]]], [[[137.09365234375005, -15.778125], [137.05087890625012, -15.824414062500026], [136.99648437500005, -15.77578125], [136.98505859375004, -15.725976562500051], [136.94267578125002, -15.711718749999989], [136.96337890624997, -15.665722656250026], [136.9857421875, -15.652441406249991], [137.00957031250007, -15.594824218749977], [137.06455078125006, -15.662890624999989], [137.07109375000007, -15.738085937500031], [137.09365234375005, -15.778125]]], [[[136.59101562500004, -15.628222656250031], [136.53115234375005, -15.632421875], [136.51425781250006, -15.627343750000023], [136.50273437500002, -15.583105468749977], [136.52255859375006, -15.543164062500011], [136.58603515625012, -15.533691406249957], [136.61230468749997, -15.54414062500004], [136.59101562500004, -15.628222656250031]]], [[[136.8626953125, -15.619921875000017], [136.84677734375012, -15.627343750000023], [136.84560546875005, -15.54404296875002], [136.87685546875, -15.502539062500006], [136.89023437500006, -15.5888671875], [136.8626953125, -15.619921875000017]]], [[[124.59726562500006, -15.40195312500002], [124.55957031250003, -15.43017578125], [124.52421875000002, -15.421484375], [124.52373046875002, -15.382421875000048], [124.48281250000005, -15.34033203125], [124.5041015625001, -15.292480468750014], [124.51933593750002, -15.26748046874998], [124.55087890625012, -15.270312500000031], [124.56455078125006, -15.310839843750031], [124.60507812500006, -15.356542968750006], [124.59726562500006, -15.40195312500002]]], [[[125.19882812500006, -14.57949218749998], [125.13476562499997, -14.641699218750034], [125.0912109375, -14.59169921874998], [125.1173828125001, -14.491992187500003], [125.15996093750002, -14.456054687499972], [125.19814453125, -14.474804687499969], [125.19355468750004, -14.552636718750009], [125.19882812500006, -14.57949218749998]]], [[[136.71464843750002, -13.803906249999983], [136.75800781250004, -13.845410156249997], [136.80449218750002, -13.842480468750026], [136.84531250000006, -13.750976562500028], [136.87070312500012, -13.763671874999957], [136.89082031250004, -13.786621093750014], [136.90556640625002, -13.82695312499996], [136.84296875000004, -13.896582031250034], [136.81494140625003, -13.907324218749991], [136.78818359375006, -13.945800781250014], [136.74531250000004, -14.072656250000023], [136.74990234375, -14.115234374999986], [136.78701171875, -14.157812499999963], [136.8854492187501, -14.197265625], [136.93388671875002, -14.179003906250017], [136.95078125000006, -14.184277343750026], [136.93134765625004, -14.24599609374998], [136.89433593750002, -14.293066406249977], [136.76318359374997, -14.273437499999972], [136.64970703125002, -14.280468749999983], [136.46054687500012, -14.234570312499969], [136.36328125000003, -14.228906249999966], [136.33544921875003, -14.211816406250037], [136.39218750000006, -14.175488281250011], [136.42773437500003, -14.126464843749972], [136.41113281249997, -14.011132812500009], [136.42470703125, -13.864843749999963], [136.53378906250012, -13.79375], [136.58281250000007, -13.72109375], [136.6556640625, -13.675878906250006], [136.70195312500002, -13.681640625000028], [136.69599609375004, -13.726171875000034], [136.71464843750002, -13.803906249999983]]], [[[136.23740234375006, -13.824511718750003], [136.21367187500002, -13.835937500000014], [136.12265625000012, -13.816601562499983], [136.12226562500004, -13.780566406250017], [136.13437500000012, -13.753125], [136.1595703125, -13.736718749999966], [136.21542968750012, -13.664746093750054], [136.25742187500012, -13.706640624999963], [136.27539062499997, -13.791113281250034], [136.23740234375006, -13.824511718750003]]], [[[136.33867187500007, -11.602343749999989], [136.18027343750006, -11.676757812499957], [136.26738281250002, -11.57646484374996], [136.44921875000003, -11.48710937499996], [136.47929687500002, -11.465917968749991], [136.47050781250002, -11.509277343749943], [136.37939453125003, -11.583203125], [136.33867187500007, -11.602343749999989]]], [[[130.45927734375007, -11.679296875000034], [130.54179687500002, -11.703125], [130.57988281250002, -11.737109375], [130.6027343750001, -11.773242187499989], [130.60625, -11.816601562500026], [130.50253906250012, -11.835644531249997], [130.31748046875006, -11.77177734374996], [130.13125, -11.82451171874996], [130.0765625, -11.825488281249974], [130.04326171875007, -11.787304687500011], [130.07207031250007, -11.680761718749977], [130.13906250000005, -11.697070312500017], [130.19755859375007, -11.658203125], [130.18710937500006, -11.541210937499969], [130.15283203124997, -11.477539062499972], [130.25117187500004, -11.360546875000026], [130.29492187499997, -11.33681640624998], [130.33925781250005, -11.33701171875002], [130.37675781250007, -11.420117187499997], [130.38564453125, -11.509863281249977], [130.4328125000001, -11.592187499999966], [130.45927734375007, -11.679296875000034]]], [[[130.6188476562501, -11.376074218749991], [130.75224609375007, -11.384375], [130.9127929687501, -11.309277343749969], [130.98740234375012, -11.339843749999986], [131.02304687500006, -11.334375], [131.14062, -11.26308593749998], [131.21718750000005, -11.242578124999966], [131.26826171875004, -11.18984375], [131.32050781250004, -11.246875], [131.43691406250005, -11.313183593749969], [131.4733398437501, -11.382519531249969], [131.52226562500002, -11.415234374999969], [131.53857421874997, -11.436914062500037], [131.46787109375012, -11.509570312500003], [131.45859375000012, -11.587890624999972], [131.38281250000003, -11.582519531249943], [131.29208984375012, -11.7109375], [130.95097656250007, -11.926464843750026], [130.644921875, -11.742382812500011], [130.51191406250004, -11.617871093749955], [130.42275390625, -11.445800781249986], [130.40478515624997, -11.304980468749989], [130.3685546875, -11.21494140625002], [130.38457031250002, -11.1921875], [130.40292968750006, -11.180468750000017], [130.42666015625, -11.183105468750028], [130.51914062500012, -11.279492187500026], [130.55976562500004, -11.305957031250003], [130.6188476562501, -11.376074218749991]]], [[[136.59853515625, -11.378906249999943], [136.52656250000004, -11.438867187499994], [136.52167968750004, -11.393847656249974], [136.5597656250001, -11.357910156250014], [136.64902343750006, -11.211621093749969], [136.68798828125003, -11.17763671874998], [136.71054687500006, -11.158398437499969], [136.72734375000002, -11.10478515624996], [136.73173828125002, -11.024609374999969], [136.78027343749997, -11.0125], [136.74140625000004, -11.194628906249974], [136.59853515625, -11.378906249999943]]], [[[132.59335937500006, -11.302832031249991], [132.5736328125, -11.318359374999957], [132.49375, -11.163671874999977], [132.51630859375004, -11.116015625000031], [132.48378906250005, -11.037304687499983], [132.53779296875004, -11.028417968749949], [132.57880859375004, -10.968847656249977], [132.59326171874997, -10.99765625], [132.596875, -11.106445312499943], [132.6291015625001, -11.169140625000026], [132.59335937500006, -11.302832031249991]]], [[[143.17890625000004, -11.954492187499966], [143.15292968750012, -12.075878906250011], [143.10468750000004, -12.169628906250011], [143.09902343750005, -12.225976562500037], [143.11025390625, -12.303515625000017], [143.190625, -12.361230468749966], [143.2541015625001, -12.397656250000011], [143.28964843750006, -12.498828125000017], [143.40156250000004, -12.639941406249989], [143.39755859375012, -12.73613281249996], [143.4577148437501, -12.855761718749989], [143.51201171875007, -13.09453125], [143.5294921875001, -13.303808593749963], [143.5866210937501, -13.443652343750031], [143.54843750000012, -13.74101562499996], [143.5892578125, -13.862792968749986], [143.64335937500002, -13.963671875000017], [143.70722656250004, -14.16455078125], [143.75634765625003, -14.348828124999969], [143.82236328125006, -14.40107421875004], [143.96181640625005, -14.462890625000028], [144.105859375, -14.394531249999957], [144.20986328125005, -14.301953125000011], [144.3216796875, -14.279394531250034], [144.473046875, -14.231835937500023], [144.58642578125003, -14.354687500000011], [144.64804687500006, -14.492480468750017], [144.91572265625004, -14.674316406250028], [145.06445312499997, -14.791015625], [145.17998046875007, -14.856933593750014], [145.28769531250006, -14.943164062499989], [145.27695312500012, -15.029394531249977], [145.2516601562501, -15.097460937499989], [145.27617187500002, -15.20390625], [145.29306640625006, -15.327246093749991], [145.27158203125006, -15.476660156249963], [145.34951171875005, -15.701562500000051], [145.375390625, -15.881054687500026], [145.45800781250003, -16.05644531249996], [145.45185546875004, -16.23691406250005], [145.43642578125, -16.30498046874996], [145.42607421875002, -16.406152343749966], [145.49042968750004, -16.532128906249966], [145.54990234375012, -16.62509765624999], [145.63828125000006, -16.726074218749957], [145.75478515625, -16.879492187500034], [145.83789062499997, -16.91035156250001], [145.91210937499997, -16.9125], [145.90195312500006, -17.070214843749994], [146.04980468749997, -17.381054687499983], [146.12587890625005, -17.63525390625], [146.07402343750002, -17.97734375], [146.0228515625, -18.175781249999986], [146.03222656249997, -18.272851562500037], [146.223046875, -18.509863281250006], [146.3332031250001, -18.55371093749997], [146.31171875000004, -18.666699218749983], [146.29687, -18.84121093750001], [146.38339843750006, -18.97705078124997], [146.48115234375004, -19.07871093749999], [146.5873046875, -19.139453125000017], [146.69199218750006, -19.187402343750023], [146.82900390625, -19.23574218750001], [147.00263671875004, -19.25605468749997], [147.09277343750003, -19.33261718750002], [147.13876953125006, -19.39316406250002], [147.278125, -19.414160156250034], [147.34150390625004, -19.402929687499963], [147.41855468750012, -19.37812], [147.47089843750004, -19.419335937500023], [147.50976562499997, -19.474121093749986], [147.58603515625006, -19.622753906249983], [147.7423828125001, -19.770117187499977], [147.85322265625004, -19.794726562500017], [147.915625, -19.86923828125002], [148.00449218750012, -19.88955078124998], [148.08105468749997, -19.89863281249997], [148.1896484375001, -19.95585937499999], [148.36689453125004, -20.0875], [148.52675781250005, -20.108886718749986], [148.60048828125005, -20.14521484375001], [148.759375, -20.28955078125003], [148.82099609375004, -20.366406250000054], [148.88476562499997, -20.480859375], [148.805078125, -20.49169921875], [148.72998046874997, -20.4677734375], [148.68369140625012, -20.58017578124999], [148.789453125, -20.73564453124996], [148.91240234375007, -20.845214843749986], [149.06054687499997, -20.96113281249997], [149.20488281250007, -21.125097656249977], [149.24140625000004, -21.250195312499983], [149.28027343749997, -21.299511718749983], [149.3292968750001, -21.476074218749986], [149.45410156249997, -21.57871093750002], [149.46005859375012, -21.76542968749996], [149.52402343750006, -22.023632812499983], [149.59570312500003, -22.25761718749996], [149.64531250000002, -22.32832031249997], [149.70390625000002, -22.440527343750006], [149.77158203125006, -22.42626953125003], [149.82246093750004, -22.389843749999983], [149.9203125, -22.501367187499966], [149.97441406250007, -22.55068359374998], [150.00556640625004, -22.521582031250006], [149.94189453125003, -22.30810546875003], [149.98125, -22.184277343750026], [150.02060546875006, -22.16835937499998], [150.07617187500003, -22.16445312499998], [150.14296875000005, -22.265429687500045], [150.23486328125003, -22.37294921875001], [150.40507812500007, -22.468945312500026], [150.54130859375002, -22.55908203125], [150.57958984375003, -22.555761718750034], [150.56435546875, -22.486132812499974], [150.56855468750004, -22.38398437500004], [150.62285156250002, -22.367285156250006], [150.67246093750012, -22.418164062499983], [150.76386718750004, -22.576171875000014], [150.78281250000012, -22.902929687499977], [150.78300781250007, -23.17656250000003], [150.84316406250005, -23.4580078125], [150.9310546875, -23.53193359375004], [150.98876953124997, -23.60175781249997], [151.08769531250002, -23.69609375], [151.15380859375003, -23.784082031249994], [151.23632812499997, -23.825], [151.50078125000002, -24.01240234374997], [151.5753906250001, -24.033593750000023], [151.69091796875003, -24.038378906250017], [151.83164062500006, -24.12294921875001], [151.902734375, -24.200976562500017], [152.0553710937501, -24.494433593750017], [152.12988281250003, -24.59755859374998], [152.28203125000002, -24.69931640625002], [152.35312500000012, -24.732519531250034], [152.45634765625007, -24.802441406249983], [152.49316406250003, -24.90400390624997], [152.50205078125006, -24.96396484375002], [152.56328125000002, -25.072070312500017], [152.65429687499997, -25.201953125000017], [152.78916015625012, -25.27412109374997], [152.91347656250005, -25.432128906250014], [152.92050781250006, -25.688574218750034], [152.98496093750012, -25.816210937500003], [153.02822265625005, -25.87031250000001], [153.12548828124997, -25.922656250000017], [153.16494140625, -25.964160156250045], [153.0841796875001, -26.303808593749963], [153.16210937499997, -26.982714843749974], [153.11679687500006, -27.194433593750034], [153.1979492187501, -27.404687499999966], [153.38574218749997, -27.76855468750003], [153.42841796875004, -27.89765625000004], [153.45488281250002, -28.04833984375], [153.57568359375003, -28.24052734374999], [153.56914062500002, -28.53339843749997], [153.6168945312501, -28.673046875], [153.60458984375006, -28.854492187500014], [153.46220703125002, -29.05019531250001], [153.348046875, -29.29042968750001], [153.34697265625007, -29.49658203125], [153.27236328125005, -29.89248046875001], [153.22382812500004, -29.998632812499963], [153.18818359375004, -30.16386718749996], [153.03056640625002, -30.563378906249994], [153.02373046875002, -30.720117187500037], [153.04785156249997, -30.907128906250037], [153.02158203125012, -31.08662109375001], [152.98222656250002, -31.20878906250003], [152.94394531250012, -31.43486328124999], [152.78583984375004, -31.78632812500001], [152.5592773437501, -32.045703125], [152.5453125, -32.24306640624998], [152.51660156250003, -32.33017578124996], [152.4704101562501, -32.439062500000034], [152.33125, -32.55751953125001], [152.2474609375, -32.60869140625003], [152.21572265625, -32.67812], [152.13652343750002, -32.67812], [152.13457031250007, -32.69990234374997], [152.18808593750006, -32.72167968749996], [152.1642578125001, -32.75742187499996], [151.95429687500004, -32.820312499999986], [151.812890625, -32.90107421875001], [151.66835937500005, -33.098632812500014], [151.60771484375002, -33.20185546875], [151.53007812500002, -33.300976562500026], [151.4837890625, -33.3474609375], [151.46337890625003, -33.39736328125004], [151.43203125000005, -33.521582031250034], [151.35751953125012, -33.54394531249997], [151.29208984375012, -33.580957031249966], [151.32275390624997, -33.699316406250006], [151.28837890625007, -33.834863281249994], [151.28027343750003, -33.92666015625005], [151.24462890624997, -33.98505859375004], [151.20166015624997, -33.964062500000026], [151.16787109375005, -33.97343749999999], [151.12480468750007, -34.00527343749998], [151.19121093750002, -34.01523437499998], [151.23154296875006, -34.0296875], [151.08994140625006, -34.1625], [150.96035156250005, -34.29707031250001], [150.9274414062501, -34.386621093749966], [150.8712890625001, -34.49912109374996], [150.821875, -34.749218750000026], [150.78105468750002, -34.89218750000002], [150.80917968750006, -34.99384765625004], [150.80458984375, -35.01289062500001], [150.77460937500004, -35.02041015625002], [150.7560546875001, -35.00712890624999], [150.69736328125012, -35.041894531249966], [150.68095703125007, -35.07666015625003], [150.70566406250012, -35.119726562500006], [150.72216796875003, -35.13457031250002], [150.71464843750007, -35.15517578125004], [150.69033203125, -35.177734375000014], [150.6344726562501, -35.177636718749994], [150.56748046875012, -35.214257812499994], [150.37412109375006, -35.58417968750004], [150.2921875000001, -35.68232421874997], [150.19531249999997, -35.83359374999996], [150.15849609375002, -35.97060546874998], [150.12890625000003, -36.120410156250045], [150.09531250000012, -36.37265625], [150.06279296875007, -36.55039062499998], [149.98818359375005, -36.722753906250006], [149.96025390625002, -36.845507812499974], [149.9505859375, -37.08027343750001], [149.98632812500003, -37.25839843749998], [149.96289062499997, -37.353027343749986], [149.9623046875, -37.443847656250014], [149.93271484375012, -37.528515625000026], [149.809375, -37.54785156249997], [149.70898437500003, -37.61699218750002], [149.56542968749997, -37.72998046875004], [149.480859375, -37.77119140625], [149.29843750000012, -37.802148437499994], [148.94394531250012, -37.788476562499966], [148.2625, -37.830664062500034], [148.13066406250007, -37.85605468749996], [147.87675781250002, -37.93417968749998], [147.63144531250006, -38.05566406249996], [147.39560546875006, -38.21914062499995], [146.8568359375, -38.663476562499966], [146.4357421875001, -38.71181640624995], [146.35625, -38.71181640624995], [146.29257812500006, -38.69980468749999], [146.21748046875004, -38.72744140625004], [146.21621093750005, -38.782714843750014], [146.28554687500005, -38.840234375], [146.33662109375004, -38.89423828125], [146.4269531250001, -38.81962890624999], [146.46660156250007, -38.84033203125003], [146.48164062500004, -38.977929687499994], [146.4837890625, -39.06503906249998], [146.45664062500006, -39.112304687500014], [146.40000000000012, -39.14550781250003], [146.34003906250004, -39.123828125000045], [146.33203125000003, -39.07666015625003], [146.254296875, -38.964453125], [146.1583984375001, -38.86572265624996], [146.06992187500006, -38.83408203124999], [146.01816406250012, -38.867089843749966], [145.93535156250002, -38.90175781250002], [145.86552734375002, -38.77597656249998], [145.79082031250007, -38.66699218749997], [145.69189453124997, -38.65566406249998], [145.60634765625005, -38.656835937500034], [145.53535156250004, -38.60966796875002], [145.39726562500002, -38.53535156249998], [145.42421875, -38.477343749999974], [145.46279296875005, -38.416308593749974], [145.54218750000004, -38.39384765625002], [145.51835937500007, -38.31142578125001], [145.4757812500001, -38.24375], [145.36640625000004, -38.225683593750034], [145.29277343750002, -38.237597656249974], [145.24892578125, -38.29121093749998], [145.19121093750002, -38.383593749999974], [144.95957031250012, -38.500781250000045], [144.84726562500006, -38.43632812500006], [144.71777343749997, -38.34033203125004], [144.78027343749997, -38.347363281250054], [144.91142578125007, -38.34404296874999], [145.02011718750006, -38.25839843750005], [145.06699218750006, -38.204882812499974], [145.11992187500007, -38.091308593750014], [145.04960937500007, -38.01093749999998], [144.98486328125003, -37.95224609375002], [144.89130859375004, -37.899804687499994], [144.5384765625, -38.07714843749997], [144.46533203125003, -38.1025390625], [144.39550781250003, -38.13691406249998], [144.51777343750004, -38.16640624999995], [144.58945312500012, -38.15761718750002], [144.6652343750001, -38.20996093750003], [144.5436523437501, -38.28408203124995], [144.44785156250012, -38.30371093750004], [144.32871093750006, -38.34824218749996], [144.10156249999997, -38.46230468750002], [143.8117187500001, -38.69882812499998], [143.68671875000004, -38.76689453124999], [143.53896484375005, -38.82089843749998], [143.33847656250006, -38.7578125], [143.22646484375, -38.74316406250004], [143.08261718750006, -38.64589843750002], [142.840234375, -38.58085937500002], [142.61210937500007, -38.451660156249986], [142.45585937500002, -38.386328125], [142.34453125000007, -38.372167968750034], [142.1876953125001, -38.3994140625], [141.92470703125, -38.28378906249998], [141.725, -38.27138671875002], [141.5939453125001, -38.38779296875002], [141.49179687500006, -38.379785156249994], [141.42421875, -38.36347656250004], [141.21386718750003, -38.17197265625002], [141.0109375000001, -38.07695312500003], [140.62724609375007, -38.02841796874999], [140.39042968750007, -37.89667968749998], [140.21210937500004, -37.6421875], [139.87480468750007, -37.35205078124996], [139.78427734375012, -37.24580078124998], [139.74228515625006, -37.141699218750006], [139.7384765625001, -37.05957031249997], [139.78388671875004, -36.902636718749974], [139.84658203125, -36.748046875000014], [139.85732421875, -36.662109375], [139.72900390625003, -36.37138671875002], [139.54873046875, -36.0966796875], [139.46591796875006, -36.010351562500006], [139.24492187500002, -35.827343750000026], [139.03769531250006, -35.68925781249996], [138.9850585937501, -35.617578125], [138.9689453125001, -35.58076171874997], [139.06689453124997, -35.59843750000002], [139.1125, -35.54228515625003], [139.17802734375007, -35.52304687500002], [139.23056640625012, -35.59765625000003], [139.289453125, -35.61132812499997], [139.29208984375012, -35.4859375], [139.32509765625, -35.42666015625001], [139.30253906250002, -35.39941406249997], [139.28251953125002, -35.375390624999966], [139.19277343750005, -35.347265625], [139.09375, -35.38955078125001], [139.01767578125006, -35.44326171875002], [138.9152343750001, -35.48886718749999], [138.87529296875002, -35.53681640624998], [138.77099609374997, -35.53837890625003], [138.72968750000004, -35.550781249999986], [138.521875, -35.6423828125], [138.38925781250012, -35.644726562500026], [138.184375, -35.612695312499994], [138.2521484375001, -35.48652343750004], [138.33291015625, -35.41171875], [138.39980468750005, -35.32578124999998], [138.5111328125, -35.02441406249996], [138.48994140625004, -34.76357421875002], [138.4362304687501, -34.65625], [138.2643554687501, -34.44033203124998], [138.18623046875004, -34.307226562500034], [138.0892578125, -34.16982421875002], [138.04130859375002, -34.249804687499974], [138.01230468750006, -34.334082031250006], [137.91923828125002, -34.456054687499986], [137.87412109375006, -34.72744140625002], [137.69169921875002, -35.14296875000004], [137.56640624999997, -35.148046875], [137.45957031250006, -35.131347656249986], [137.27236328125005, -35.17871093750004], [137.14443359375, -35.23642578124998], [137.02988281250012, -35.2365234375], [136.96660156250002, -35.254882812500014], [136.88359375000007, -35.23974609375004], [137.01425781250012, -34.91582031250003], [137.12841796875003, -34.92470703124998], [137.25205078125006, -34.911523437499966], [137.30839843750002, -34.916992187500014], [137.39101562500005, -34.91328124999997], [137.45429687500004, -34.76445312500002], [137.49296875000002, -34.59775390624999], [137.46855468750002, -34.490234375000014], [137.45898437499997, -34.378906249999986], [137.4835937500001, -34.25214843750001], [137.49384765625004, -34.16113281250003], [137.65039062499997, -33.85908203125004], [137.78085937500006, -33.70312], [137.9318359375001, -33.57910156250003], [137.91396484375, -33.461328125], [137.86601562500002, -33.314062500000034], [137.85234375000007, -33.20078124999996], [137.92431640624997, -33.16513671874998], [137.99257812500005, -33.094238281250014], [137.91318359375012, -32.770703125], [137.86308593750002, -32.673730468749966], [137.78320312500003, -32.578125], [137.78183593750012, -32.70195312500003], [137.79091796875, -32.82324218749996], [137.68017578124997, -32.97802734374996], [137.53623046875006, -33.08916015624996], [137.44228515625, -33.1935546875], [137.3541992187501, -33.43017578124997], [137.23730468750003, -33.62949218749999], [137.13027343750005, -33.703027343749966], [137.03447265625007, -33.71953125000003], [136.93652343750003, -33.75019531249998], [136.78349609375002, -33.8296875], [136.63554687500007, -33.89658203124996], [136.52587890625003, -33.984179687500045], [136.43066406249997, -34.02998046875004], [136.12109374999997, -34.428710937500014], [135.97968750000004, -34.561914062499966], [135.95058593750005, -34.61572265625], [135.891015625, -34.660937499999974], [135.90263671875007, -34.723828125], [135.95058593750005, -34.76679687499997], [135.99853515624997, -34.94375], [135.96972656249997, -34.98183593749998], [135.91914062500004, -34.961914062500014], [135.7923828125, -34.863281249999986], [135.7125, -34.89921875000003], [135.64755859375006, -34.93964843750001], [135.480859375, -34.758203125], [135.41171875000006, -34.71552734375], [135.32421874999997, -34.64267578124999], [135.23066406250004, -34.57978515624997], [135.1908203125, -34.57265625000002], [135.12304687499997, -34.58574218750003], [135.12958984375004, -34.53652343750004], [135.1759765625001, -34.496582031249986], [135.21679687499997, -34.48730468749996], [135.29248046875003, -34.545605468750026], [135.37871093750007, -34.59765624999997], [135.42734375000012, -34.60195312500004], [135.45, -34.58105468749996], [135.36796875000002, -34.37558593750002], [135.31201171874997, -34.19550781250001], [135.2863281250001, -34.14228515625001], [135.21894531250004, -33.959765625000045], [135.18544921875005, -33.906738281249986], [135.04208984375006, -33.777734375], [134.88876953125012, -33.62636718749998], [134.84667968749997, -33.44462890624999], [134.79101562499997, -33.32832031250001], [134.71904296875007, -33.25517578125003], [134.60771484375002, -33.19013671875001], [134.30126953124997, -33.16503906249996], [134.17353515625004, -32.979101562500006], [134.10039062500007, -32.748632812500034], [134.15839843750004, -32.73339843749996], [134.22714843750006, -32.73056640624999], [134.2492187500001, -32.658691406250014], [134.23417968750007, -32.54853515625004], [133.93017578125003, -32.41171874999996], [133.78671875000012, -32.26884765624999], [133.66533203125007, -32.207226562500054], [133.55136718750012, -32.182910156249974], [133.40058593750004, -32.18847656249996], [133.21210937500004, -32.18378906249998], [132.75742187500012, -31.95625], [132.64863281250004, -31.94931640624999], [132.3236328125, -32.020019531250014], [132.21464843750002, -32.00712890624996], [131.72119140625003, -31.696289062499957], [131.39316406250006, -31.54853515624997], [131.28496093750007, -31.520996093749957], [131.14365234375006, -31.49570312500005], [131.02929687500003, -31.531835937500034], [130.94814453125, -31.565820312500023], [130.78300781250002, -31.604003906249986], [130.12978515625, -31.579101562499986], [129.56884765624997, -31.627246093750017], [129.1876953125001, -31.659960937500017], [128.94619140625, -31.702636718750014], [128.54609375000004, -31.88769531249997], [128.06767578125002, -32.06650390624998], [127.67802734375002, -32.15126953125002], [127.31982421874997, -32.2640625], [127.08408203125006, -32.296875], [126.77929687499997, -32.31093750000004], [126.13652343750002, -32.25683593750003], [125.91718750000004, -32.296972656250034], [125.56748046875012, -32.50585937499996], [125.46367187500002, -32.55654296874998], [125.26660156250003, -32.61445312499997], [124.75878906250003, -32.882714843749994], [124.5246093750001, -32.94013671874997], [124.3732421875001, -32.958398437499966], [124.24375, -33.015234375], [124.12607421875006, -33.129394531249986], [123.96718750000005, -33.44628906249997], [123.8683593750001, -33.59638671875], [123.65039062499997, -33.83632812500002], [123.50683593749997, -33.916210937500054], [123.36542968750004, -33.90537109374998], [123.20761718750012, -33.988281249999986], [123.0675781250001, -33.90058593749997], [122.95566406250012, -33.883789062500014], [122.7775390625001, -33.890820312500026], [122.15097656250006, -33.991796875], [122.06113281250006, -33.874414062499966], [121.94638671875012, -33.85673828125002], [121.72968750000004, -33.8625], [121.40507812500007, -33.826757812500034], [120.81455078125012, -33.87128906250004], [120.53056640625007, -33.91972656249996], [120.41835937500005, -33.96308593750001], [120.209375, -33.935449218749966], [119.85410156250012, -33.97470703124998], [119.72910156250012, -34.04150390625], [119.63515625, -34.10117187499998], [119.45058593750005, -34.368261718750034], [119.24765625000012, -34.45644531249998], [119.08134765625007, -34.459375], [118.89531250000007, -34.47988281250004], [118.52011718750012, -34.73710937499996], [118.13554687500002, -34.98662109374999], [118.00644531250012, -35.01328125], [117.86308593750002, -35.05498046874996], [117.67539062500006, -35.074902343750026], [117.58193359375005, -35.09775390624998], [117.1439453125, -35.033691406249986], [116.8654296875001, -35.02656250000004], [116.51718750000012, -34.98789062499998], [116.21708984375007, -34.86582031249998], [115.98671875000005, -34.795019531250034], [115.7262695312501, -34.52607421875004], [115.56503906250012, -34.42578125000003], [115.27763671875007, -34.30390624999998], [115.19482421874997, -34.30849609375004], [115.12792968749997, -34.34179687499997], [115.00878906250003, -34.25585937499997], [115.00566406250002, -34.14511718749996], [114.97343750000002, -34.051171875], [114.97568359375012, -33.80419921874997], [114.9938476562501, -33.51533203125], [115.09892578125007, -33.5802734375], [115.18164062499997, -33.643457031249994], [115.3587890625, -33.63994140624999], [115.5153320312501, -33.53134765624998], [115.60449218749997, -33.37226562499998], [115.68300781250005, -33.19287109375003], [115.67089843749997, -33.0021484375], [115.6185546875, -32.666992187500014], [115.65429687499997, -32.596582031249966], [115.70791015625, -32.56796875], [115.72539062500007, -32.40107421875001], [115.73808593750002, -31.88789062500001], [115.6984375000001, -31.694531250000054], [115.45458984374997, -31.30253906250003], [115.2943359375, -30.961816406249994], [115.17685546875006, -30.80800781250001], [115.07792968750007, -30.560449218750023], [114.99453125000005, -30.216210937499966], [114.96884765625006, -30.042285156249974], [114.9420898437501, -29.72158203125001], [114.97138671875004, -29.539746093749997], [114.95898437499997, -29.433593749999957], [114.85683593750005, -29.14296875], [114.62841796874997, -28.871777343749983], [114.590625, -28.771679687500026], [114.59179687499997, -28.666210937500026], [114.53740234375007, -28.542871093750037], [114.35351562500003, -28.29492187499997], [114.16513671875012, -28.08066406250002], [114.13349609375004, -27.976464843750023], [114.09843750000002, -27.544238281249974], [114.028125, -27.347265625], [113.709375, -26.84775390625002], [113.33300781250003, -26.41738281250001], [113.23105468750006, -26.24140625000004], [113.18476562500004, -26.182226562499963], [113.21074218750007, -26.174218750000023], [113.253125, -26.197265625000014], [113.30009765625007, -26.24023437499997], [113.32324218749997, -26.243847656249997], [113.34531250000006, -26.208300781250045], [113.34287109375006, -26.12607421874999], [113.35605468750012, -26.080468750000023], [113.38896484375007, -26.105566406249977], [113.4274414062501, -26.19804687499999], [113.54658203125004, -26.43671875000004], [113.58164062500006, -26.558105468749986], [113.73369140625002, -26.59511718749998], [113.78037109375006, -26.563281249999974], [113.83642578125003, -26.50058593749999], [113.85283203125007, -26.33212890625005], [113.77578125, -26.255957031249977], [113.7064453125, -26.22363281249997], [113.58906250000004, -26.098632812499986], [113.5133789062501, -25.898339843750037], [113.39531250000002, -25.71328125], [113.39736328125, -25.647167968750026], [113.4513671875001, -25.599121093750014], [113.539453125, -25.625195312499997], [113.62119140625012, -25.73164062500001], [113.7130859375001, -25.83076171875004], [113.69785156250012, -26.00419921875003], [113.68359374999997, -26.05166015625001], [113.69169921875002, -26.091699218749994], [113.72373046875006, -26.129785156250037], [113.7658203125001, -26.159765625], [113.81181640625007, -26.115820312500034], [113.85390625, -26.01445312499999], [113.87988281249997, -26.027636718750003], [113.94238281250003, -26.25869140625001], [113.99199218750007, -26.32148437500001], [114.09033203124997, -26.393652343749963], [114.1759765625001, -26.3375], [114.21572265625, -26.289453124999966], [114.20332031250004, -26.12636718750005], [114.22851562500003, -25.96875], [114.2142578125, -25.851562500000014], [113.99277343750006, -25.544824218749966], [113.7923828125, -25.165722656249997], [113.67080078125, -24.97705078125003], [113.56923828125, -24.692968749999963], [113.50351562500012, -24.59462890625001], [113.41767578125004, -24.435644531250034], [113.41298828125, -24.254003906249977], [113.4212890625, -24.13232421874997], [113.48984375000012, -23.869628906250014], [113.5529296875001, -23.732812500000023], [113.7570312500001, -23.418164062500054], [113.7669921875, -23.28251953125003], [113.7648437500001, -23.18046875000003], [113.79492187499997, -23.02363281249997], [113.79511718750004, -22.91455078125003], [113.76787109375007, -22.812890625000023], [113.68281250000004, -22.637792968749963], [113.79501953125012, -22.332128906250034], [113.9583984375, -21.93916015625001], [114.02285156250005, -21.881445312499977], [114.12392578125005, -21.828613281249957], [114.14257812500003, -21.909765624999963], [114.09277343750003, -22.18134765624997], [114.16386718750002, -22.32333984375002], [114.14160156250003, -22.483105468749983], [114.20517578125006, -22.455859375000017], [114.30351562500002, -22.425390625000034], [114.37773437500007, -22.341503906249997], [114.41699218749997, -22.26103515625003], [114.60283203125002, -21.9421875], [114.70927734375002, -21.82343749999997], [114.85908203125004, -21.7359375], [115.16171875000006, -21.630566406250026], [115.45615234375012, -21.49169921874997], [115.59609375000005, -21.358105468750026], [115.77148437499997, -21.242285156249963], [115.89355468749997, -21.116699218749957], [116.0109375000001, -21.030371093749963], [116.60585937500005, -20.713378906250043], [116.7067382812501, -20.653808593749986], [116.836328125, -20.647070312500034], [116.99531250000004, -20.65761718750005], [117.13906250000005, -20.640917968750017], [117.29277343750002, -20.713085937499983], [117.40625, -20.72119140625003], [117.68388671875002, -20.64277343750004], [117.83232421875007, -20.57255859375003], [118.08730468750005, -20.41904296875002], [118.19921875000003, -20.37519531249997], [118.45830078125002, -20.32666015625003], [118.75146484374997, -20.261914062499983], [119.10449218749997, -19.995312500000026], [119.3587890625, -20.012304687500034], [119.58593750000003, -20.03828125], [119.7677734375001, -19.958398437499966], [120.19628906250003, -19.909472656250045], [120.43369140625006, -19.84199218749997], [120.87841796874997, -19.665039062499986], [120.99794921875, -19.604394531249966], [121.17978515625006, -19.477929687499966], [121.33769531250002, -19.31992187500002], [121.49355468750005, -19.106445312499957], [121.58945312500006, -18.915136718749977], [121.63066406250002, -18.81660156249997], [121.72197265625007, -18.65996093750003], [121.7848632812501, -18.53593749999999], [121.83378906250002, -18.477050781249986], [122.00625, -18.393652343749963], [122.26210937500005, -18.159082031250037], [122.34541015625004, -18.11191406250002], [122.36093750000012, -18.036914062500017], [122.30576171875006, -17.99492187499999], [122.23740234375006, -17.968554687500045], [122.19130859375, -17.7203125], [122.14746093749997, -17.54902343750001], [122.14316406250006, -17.42841796875004], [122.16025390625006, -17.313671875000026], [122.2609375000001, -17.135742187500014], [122.33271484375004, -17.059375], [122.43203125000005, -16.970410156249997], [122.52255859375006, -16.942871093749986], [122.59794921875007, -16.864941406249997], [122.72041015625004, -16.78769531249999], [122.77207031250012, -16.71015625], [122.84804687500005, -16.552441406250026], [122.91679687500002, -16.43261718750003], [122.97070312499997, -16.436816406250003], [123.07441406250004, -16.715332031249986], [123.14208984374997, -16.863085937499974], [123.26591796875002, -17.036816406250026], [123.383203125, -17.29277343750003], [123.47880859375002, -17.409960937500017], [123.52519531250007, -17.485742187499994], [123.56308593750006, -17.520898437499966], [123.5714843750001, -17.472265625], [123.56181640625007, -17.41542968749998], [123.60791015624997, -17.219921875000026], [123.586328125, -17.082714843750054], [123.59355468750007, -17.03037109375005], [123.61767578124997, -17.008300781249986], [123.66406250000003, -17.023242187500017], [123.75380859375, -17.099804687499983], [123.7990234375001, -17.12714843750004], [123.83105468750003, -17.120800781249997], [123.8294921875, -16.99687], [123.8744140625, -16.918652343750026], [123.85634765625005, -16.864746093749957], [123.778125, -16.867773437499963], [123.74501953125, -16.800976562500026], [123.68046875000007, -16.723632812499986], [123.60712890625004, -16.668066406250034], [123.51796875, -16.540722656250026], [123.4904296875001, -16.49072265624997], [123.52509765625004, -16.46757812499996], [123.58134765625007, -16.47089843750001], [123.62597656249997, -16.416308593750003], [123.64648437499997, -16.343066406250003], [123.60703125000006, -16.224023437499994], [123.64746093750003, -16.17988281249997], [123.72890625, -16.192480468749963], [123.85917968750007, -16.38232421875], [123.91523437500004, -16.363574218750003], [123.961328125, -16.286914062500017], [124.04443359374997, -16.264941406249974], [124.12978515625005, -16.278808593749957], [124.18603515624997, -16.33359375000002], [124.30039062500006, -16.388281249999977], [124.45273437500012, -16.382031250000026], [124.52998046875004, -16.39521484374997], [124.69238281249997, -16.38613281249998], [124.77197265624997, -16.40263671874996], [124.75703125000004, -16.37333984375003], [124.66923828125007, -16.33876953125001], [124.57031249999997, -16.331835937500017], [124.45449218750005, -16.335253906250003], [124.40488281250006, -16.298925781249977], [124.38828125000006, -16.20302734374998], [124.41640625, -16.133496093750026], [124.43457031249997, -16.103808593750017], [124.50996093750004, -16.11630859374999], [124.5768554687501, -16.11367187499998], [124.58505859375006, -16.02011718750002], [124.6085937500001, -15.9375], [124.64853515625012, -15.870214843750034], [124.64833984375, -15.805468749999989], [124.60664062500004, -15.822656250000023], [124.50429687500005, -15.972460937499989], [124.4552734375001, -15.850585937500028], [124.38164062500002, -15.758203125000037], [124.39658203125006, -15.625878906249994], [124.43955078125012, -15.493554687500037], [124.50566406250007, -15.475390624999974], [124.56162109375012, -15.496289062499969], [124.64433593750007, -15.418847656250009], [124.69091796874997, -15.359667968750031], [124.68017578124997, -15.311035156249972], [124.69257812500004, -15.273632812499997], [124.75048828125003, -15.285253906249963], [124.97207031250005, -15.404296874999972], [125.01640625000002, -15.466503906250026], [125.06298828125003, -15.44228515624998], [125.07792968750002, -15.374511718750028], [125.0729492187501, -15.306738281249991], [125.02402343750006, -15.316992187500034], [124.90917968750003, -15.310058593749957], [124.88271484375005, -15.271972656250014], [124.89267578125012, -15.240527343750003], [124.83906250000004, -15.160742187500006], [124.91416015625006, -15.109960937499963], [124.97871093750004, -15.106640625], [125.02333984375, -15.071875], [125.02402343750006, -15.024414062500028], [125.03818359375012, -15.004101562499969], [125.0729492187501, -15.032324218750034], [125.18867187500004, -15.045410156249957], [125.30234375000012, -15.106835937500037], [125.35566406250004, -15.119824218750011], [125.37558593750012, -15.086816406250037], [125.38378906249997, -15.015625], [125.24326171875006, -14.944531250000011], [125.2394531250001, -14.874609374999977], [125.18037109375004, -14.794042968749991], [125.17871093749997, -14.714746093749994], [125.26650390625, -14.648437499999986], [125.28457031250005, -14.58408203125002], [125.33544921875003, -14.557910156250017], [125.43593750000005, -14.556835937499983], [125.50371093750002, -14.50224609374996], [125.57978515625004, -14.483203124999989], [125.5983398437501, -14.361621093750003], [125.5970703125, -14.278125], [125.62773437500002, -14.256640625000017], [125.70458984374997, -14.29140625], [125.68125000000012, -14.38798828124996], [125.68095703125007, -14.480175781249997], [125.66162109375003, -14.529492187500011], [125.69052734375006, -14.525390624999972], [125.70839843750005, -14.504882812499972], [125.73847656250004, -14.444335937499972], [125.81953125000004, -14.469140624999966], [125.83955078125004, -14.533886718750011], [125.85009765624997, -14.597265624999963], [125.89062, -14.61796875], [125.94609375000007, -14.520410156250023], [126.0207031250001, -14.49453125], [126.01660156249997, -14.371289062500011], [126.04482421875, -14.283007812499974], [126.05361328125005, -14.216699218749966], [126.10087890625007, -14.184375], [126.11132812499997, -14.114062500000017], [126.0734375000001, -14.065527343749991], [126.0539062500001, -13.977246093750026], [126.11904296875005, -13.957714843750054], [126.1842773437501, -14.00205078125002], [126.2282226562501, -14.113378906249963], [126.25849609375004, -14.163574218749972], [126.29882812499997, -14.13623046875], [126.32304687500002, -14.062109375], [126.403125, -14.018945312499994], [126.48242187499997, -14.07890625], [126.5697265625, -14.160937499999974], [126.6791015625, -14.089355468749957], [126.7806640625, -13.955175781249977], [126.76445312500007, -13.873046875000028], [126.77558593750004, -13.788476562500037], [126.90322265625, -13.744140624999972], [127.0060546875001, -13.776757812500037], [127.09921875000006, -13.867382812500026], [127.29306640625012, -13.934765625], [127.45761718750006, -14.031445312499969], [127.53105468750002, -14.094628906249966], [127.67285156249997, -14.195117187500003], [127.76347656250002, -14.299414062500034], [127.88759765625, -14.485156250000031], [128.18046875000007, -14.711621093749983], [128.19941406250004, -14.751757812499989], [128.15986328125004, -14.827343750000026], [128.1244140625, -14.924121093750017], [128.08046875000005, -15.087988281250006], [128.06943359375012, -15.329296874999969], [128.11171875, -15.31201171875], [128.15546875000004, -15.225585937499972], [128.20175781250006, -15.24335937500004], [128.25468750000002, -15.298535156250011], [128.2589843750001, -15.245605468749972], [128.2272460937501, -15.213574218750011], [128.17294921875006, -15.102246093749983], [128.175, -15.043164062500026], [128.21835937500006, -14.995703125000034], [128.28515624999997, -14.938867187500009], [128.35820312500002, -14.901660156249974], [128.40322265625, -14.869140625000014], [128.4098632812501, -14.828906249999989], [128.47744140625, -14.787988281249994], [128.57578125000006, -14.774511718750006], [128.63554687500007, -14.780957031249983], [129.05820312500012, -14.884375], [129.16513671875012, -14.987597656249989], [129.17519531250005, -15.115039062500017], [129.21582031249997, -15.160253906249991], [129.23789062500012, -15.08017578125002], [129.23359375000004, -14.906054687499989], [129.26757812500003, -14.871484375000051], [129.38125, -14.898437500000028], [129.45898437499997, -14.933203125], [129.56708984375004, -15.04736328125], [129.58769531250007, -15.103320312500031], [129.63476562499997, -15.139746093749991], [129.65029296875, -15.086816406250037], [129.62822265625007, -15.011816406250034], [129.6126953125, -14.92587890625002], [129.637109375, -14.850976562500037], [129.76347656250007, -14.845019531249989], [129.84873046875012, -14.828906249999989], [129.80839843750007, -14.799707031249994], [129.75351562500006, -14.789550781249957], [129.66298828125005, -14.720898437500011], [129.60468750000004, -14.647070312499977], [129.6986328125, -14.575292968750006], [129.69794921875004, -14.557421875000017], [129.60791015625003, -14.55966796875002], [129.48388671874997, -14.489746093749986], [129.37871093750002, -14.39248046874998], [129.4591796875001, -14.21347656250002], [129.61962890624997, -14.03837890624996], [129.70986328125, -13.979980468749972], [129.71835937500012, -13.920898437500014], [129.76171874999997, -13.811914062500009], [129.7892578125001, -13.719921875000011], [129.79716796875002, -13.648437500000014], [129.83886718749997, -13.572949218749997], [129.937890625, -13.50166015625004], [130.07265625, -13.476171875], [130.13593750000004, -13.44833984375002], [130.19931640625006, -13.382617187500031], [130.25976562500003, -13.30224609375], [130.1349609375001, -13.145507812499957], [130.14531250000007, -13.059179687499963], [130.1681640625001, -12.957421875], [130.31796875000006, -12.88291015625002], [130.39990234374997, -12.687890625], [130.45419921875012, -12.658593749999966], [130.57187500000012, -12.664355468749989], [130.61748046875007, -12.646875], [130.60957031250004, -12.491308593749991], [130.62265625000006, -12.43105468749998], [130.67236328124997, -12.40693359375004], [130.73613281250007, -12.427734375000014], [130.77656250000004, -12.495312500000011], [130.8673828125001, -12.557812499999955], [130.89824218750007, -12.523632812500011], [130.88291015625006, -12.455078124999986], [130.87382812500007, -12.367187500000028], [130.95664062500006, -12.348242187499977], [131.02343749999997, -12.342871093749949], [131.03007812500002, -12.27109375], [131.01953124999997, -12.213867187499957], [131.04570312500002, -12.189648437499997], [131.21992187500004, -12.177929687500011], [131.26542968750002, -12.119042968750009], [131.29160156250006, -12.067871093749972], [131.31376953125007, -12.095898437499997], [131.34208984375007, -12.210058593749991], [131.43828125000002, -12.27695312500002], [131.7262695312501, -12.278125], [131.88798828125002, -12.23193359375], [131.95673828125004, -12.259277343749972], [132.06406250000006, -12.28076171875], [132.1823242187501, -12.226953124999966], [132.25322265625007, -12.186035156249972], [132.37207031250003, -12.239160156249966], [132.41103515625, -12.295117187499997], [132.4416015625001, -12.176367187499963], [132.51054687500002, -12.134863281250034], [132.58378906250002, -12.110253906249994], [132.67636718750012, -12.13007812500004], [132.71279296875, -12.1234375], [132.63046875000012, -12.035156249999972], [132.63525390625003, -11.9546875], [132.62988281249997, -11.835839843749952], [132.64472656250004, -11.72714843750002], [132.67421875000005, -11.649023437499991], [132.47519531250006, -11.491503906249974], [132.27792968750012, -11.467675781249994], [132.13359375000002, -11.500683593749969], [132.07285156250006, -11.474707031250006], [131.94462890625007, -11.34853515624998], [131.82246093750004, -11.302441406249997], [131.81181640625002, -11.27138671874998], [131.96152343750006, -11.180859375000011], [132.01855468749997, -11.196386718749977], [132.10576171875002, -11.281152343750009], [132.15546875000004, -11.311132812499991], [132.19775390624997, -11.304980468749989], [132.225, -11.23876953125], [132.26269531249997, -11.204003906250023], [132.33398437499997, -11.223535156249994], [132.55732421875004, -11.366894531249983], [132.6828125000001, -11.505566406249997], [132.74707031249997, -11.468945312499997], [132.8571289062501, -11.391113281249943], [132.96103515625012, -11.407324218749963], [133.02490234374997, -11.452832031249997], [133.11435546875006, -11.62177734375004], [133.18525390625004, -11.705664062499991], [133.35615234375004, -11.728222656249969], [133.44316406250002, -11.760351562500034], [133.53320312499997, -11.816210937499946], [133.6544921875001, -11.811328125000017], [133.90419921875, -11.832031249999972], [134.13945312500002, -11.940136718749969], [134.23710937500002, -12.00771484374998], [134.35107421874997, -12.02578125], [134.4173828125, -12.052734375], [134.53808593749997, -12.06083984374996], [134.73027343750002, -11.984375], [134.81640625000003, -12.054687499999957], [134.8546875000001, -12.102539062500014], [135.02968750000005, -12.19375], [135.2179687500001, -12.221679687499957], [135.35234375000002, -12.129199218750031], [135.54873046875, -12.060644531250006], [135.68554687499997, -11.956152343749949], [135.7884765625, -11.907031249999974], [135.88525390624997, -11.821679687499994], [135.92246093750012, -11.825781250000034], [135.84355468750002, -11.905468750000011], [135.83398437500003, -11.950683593749986], [135.89580078125002, -11.969531250000017], [135.88945312500002, -11.992773437499949], [135.80429687500012, -12.054785156249977], [135.70253906250005, -12.151562499999969], [135.70439453125007, -12.209863281250037], [135.74394531250007, -12.241699218749943], [135.79082031250002, -12.2275390625], [135.85742187499997, -12.17851562499996], [135.93779296875002, -12.152148437500003], [136.00849609375004, -12.19140625], [136.0314453125001, -12.330859374999989], [136.08183593750007, -12.422460937500006], [136.19267578125007, -12.43515625000002], [136.26064453125, -12.433789062499997], [136.32851562500005, -12.305566406249994], [136.29189453125005, -12.196386718749949], [136.24990234375, -12.173046875], [136.27011718750006, -12.131640625], [136.44335937499997, -11.951464843749974], [136.5402343750001, -11.957617187499977], [136.60976562500005, -12.133593749999946], [136.7194335937501, -12.226464843749952], [136.83642578124997, -12.219140624999966], [136.89746093749997, -12.243554687499966], [136.94746093750004, -12.34990234374996], [136.53701171875, -12.784277343749991], [136.51777343750004, -12.832812500000031], [136.57304687500002, -12.91162109375], [136.59433593750012, -13.003808593750051], [136.46103515625006, -13.225195312500034], [136.41191406250007, -13.236132812500031], [136.36455078125002, -13.176367187500034], [136.29414062500004, -13.137988281250031], [136.23232421875, -13.164941406250009], [136.16611328125006, -13.181054687500009], [135.92734375000012, -13.304296874999977], [135.92919921874997, -13.621582031249957], [135.98955078125002, -13.81015625], [135.95449218750005, -13.934863281250017], [135.88339843750006, -14.15312], [135.80634765625004, -14.234179687499974], [135.74453125, -14.28662109375], [135.53886718750002, -14.584960937500028], [135.47324218750006, -14.65664062499998], [135.40517578125005, -14.758203124999966], [135.42802734375002, -14.855664062500026], [135.4533203125001, -14.923144531250003], [135.53076171874997, -15.000390625000023], [135.83261718750006, -15.160156249999972], [135.96953125000002, -15.270214843750011], [136.20537109375002, -15.403417968749963], [136.25927734374997, -15.49521484375002], [136.29140625000005, -15.570117187500003], [136.46191406249997, -15.655273437500028], [136.58359375000006, -15.70654296875], [136.61875000000012, -15.693359374999972], [136.64414062500006, -15.675585937499989], [136.67460937500002, -15.675390625000048], [136.70488281250007, -15.685253906250011], [136.70009765625, -15.751953125000014], [136.6867187500001, -15.788476562499994], [136.69814453125005, -15.834960937499957], [136.78466796874997, -15.89423828125004], [136.92265625000002, -15.892382812500017], [137.00214843750004, -15.878320312499994], [137.08984374999997, -15.941308593750037], [137.16894531250003, -15.982128906250011], [137.29931640625003, -16.06630859375001], [137.52636718750003, -16.167089843750034], [137.70371093750006, -16.233007812499963], [137.91289062500007, -16.476562500000014], [138.07158203125007, -16.61699218750003], [138.24501953125005, -16.718359374999977], [138.50566406250002, -16.789550781250014], [138.62568359375004, -16.777832031250014], [138.82031250000003, -16.860644531250017], [139.00986328125006, -16.899316406249994], [139.11035156250003, -17.0140625], [139.14453124999997, -17.10107421874997], [139.15410156250007, -17.167773437499974], [139.2484375, -17.328613281249957], [139.44052734375006, -17.380566406249983], [139.6896484375001, -17.54072265625001], [139.89453125000003, -17.611328125], [139.9459960937501, -17.653613281250003], [140.03583984375004, -17.702636718749957], [140.2096679687501, -17.70439453124996], [140.51113281250005, -17.62451171875003], [140.64843750000003, -17.54375], [140.83046875, -17.414453125000037], [140.91582031250007, -17.192578125000054], [140.9660156250001, -17.014550781250023], [141.21914062500005, -16.646191406250026], [141.29140625, -16.46347656250002], [141.35566406250004, -16.221093750000023], [141.41191406250007, -16.069531250000054], [141.39316406250006, -15.904687500000037], [141.45156250000005, -15.605273437499974], [141.58144531250005, -15.195410156249963], [141.62548828124997, -15.056640625000014], [141.60351562500003, -14.85273437500004], [141.52294921875003, -14.470117187499994], [141.558984375, -14.337890624999957], [141.59433593750006, -14.152832031250014], [141.53544921875002, -14.018652343750034], [141.48066406250004, -13.926757812499957], [141.47255859375, -13.797558593750011], [141.53417968750003, -13.553808593750006], [141.58876953125, -13.425097656249989], [141.64541015625, -13.259082031250003], [141.61357421875002, -12.943457031250006], [141.73457031250004, -12.833496093749986], [141.78222656249997, -12.778710937500023], [141.87578125000007, -12.778222656250009], [141.9203125, -12.802929687499983], [141.92978515625006, -12.73984375], [141.89287109375007, -12.681347656249983], [141.87832031250005, -12.613281249999972], [141.85214843750012, -12.578710937500034], [141.79453125000012, -12.566601562499969], [141.74667968750006, -12.529394531250034], [141.67773437500003, -12.491406250000011], [141.68857421875012, -12.351074218750028], [141.80576171875006, -12.080078124999972], [141.87050781250005, -11.9755859375], [141.91298828125, -12.019238281250011], [141.96113281250004, -12.054296874999963], [141.96777343749997, -11.976269531249969], [141.95156250000005, -11.896191406249997], [142.04052734374997, -11.631738281250023], [142.13896484375002, -11.273242187500003], [142.168359375, -10.946582031249974], [142.32646484375002, -10.884179687499966], [142.40683593750006, -10.802246093749972], [142.45644531250005, -10.707324218749989], [142.54482421875, -10.707324218749989], [142.60507812500012, -10.748242187499983], [142.56542968749997, -10.819433593750006], [142.55273437500003, -10.874414062500023], [142.723046875, -11.010449218750026], [142.7796875, -11.115332031249977], [142.80332031250012, -11.213964843750006], [142.83681640625, -11.306933593750031], [142.8529296875, -11.432226562499977], [142.85058593749997, -11.632324218749972], [142.87255859374997, -11.821386718750034], [142.933984375, -11.880761718749952], [142.9884765625001, -11.919042968750034], [143.06640624999997, -11.924121093750003], [143.17890625000004, -11.954492187499966]]], [[[142.2748046875, -10.704785156250011], [142.19140624999997, -10.762011718750031], [142.13720703125003, -10.731933593749943], [142.12548828125003, -10.668457031249986], [142.1310546875001, -10.640625], [142.19794921875004, -10.59199218750004], [142.2748046875, -10.704785156250011]]], [[[142.33896484375006, -10.192187500000031], [142.27939453125012, -10.25419921874996], [142.21621093750005, -10.235644531250003], [142.19511718750002, -10.199316406249977], [142.21875, -10.149414062500014], [142.29873046875, -10.14042968749996], [142.33896484375006, -10.192187500000031]]], [[[142.16757812500006, -10.154101562500003], [142.1419921875, -10.18125], [142.09765624999997, -10.121777343749983], [142.148828125, -10.051757812500014], [142.19199218750006, -10.085253906250003], [142.16757812500006, -10.154101562500003]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Auz.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;AUS&quot;, &quot;adm0_a3_is&quot;: &quot;AUS&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;AUS&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 1, &quot;admin&quot;: &quot;Australia&quot;, &quot;brk_a3&quot;: &quot;AUS&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Australia&quot;, &quot;continent&quot;: &quot;Oceania&quot;, &quot;economy&quot;: &quot;2. Developed region: nonG7&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Commonwealth of Australia&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 800200, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Australia&quot;, &quot;gu_a3&quot;: &quot;AUS&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;1. High income: OECD&quot;, &quot;iso_a2&quot;: &quot;AU&quot;, &quot;iso_a3&quot;: &quot;AUS&quot;, &quot;iso_n3&quot;: &quot;036&quot;, &quot;labelrank&quot;: 2, &quot;lastcensus&quot;: 2006, &quot;level&quot;: 2, &quot;long_len&quot;: 9, &quot;mapcolor13&quot;: 7, &quot;mapcolor7&quot;: 1, &quot;mapcolor8&quot;: 2, &quot;mapcolor9&quot;: 2, &quot;name&quot;: &quot;Australia&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 9, &quot;name_long&quot;: &quot;Australia&quot;, &quot;name_sort&quot;: &quot;Australia&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 21262641, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AU&quot;, &quot;region_un&quot;: &quot;Oceania&quot;, &quot;region_wb&quot;: &quot;East Asia \\u0026 Pacific&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;AU1&quot;, &quot;sovereignt&quot;: &quot;Australia&quot;, &quot;su_a3&quot;: &quot;AUS&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Australia and New Zealand&quot;, &quot;subunit&quot;: &quot;Australia&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Country&quot;, &quot;un_a3&quot;: &quot;036&quot;, &quot;wb_a2&quot;: &quot;AU&quot;, &quot;wb_a3&quot;: &quot;AUS&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[16.953125, 48.598828125], [16.948828125, 48.58857421875], [16.943359375, 48.550927734374994], [16.90449218750001, 48.503515625], [16.862695312500023, 48.44140625], [16.86542968750001, 48.3869140625], [16.97265625, 48.198095703125], [17.06787109375, 48.083251953125], [17.0859375, 48.03955078125], [17.147363281250023, 48.00595703125], [17.08906250000001, 47.963623046875], [17.077734375, 47.90087890625], [17.039941406250023, 47.872949218749994], [17.030078125000017, 47.837109375], [17.0458984375, 47.804541015625], [17.04560546875001, 47.76376953125], [17.06660156250001, 47.707568359374996], [16.973437500000017, 47.6953125], [16.862695312500023, 47.697265625], [16.823046875000017, 47.693994140624994], [16.785937500000017, 47.678662109375], [16.74755859375, 47.686279296875], [16.6474609375, 47.739013671875], [16.590917968750006, 47.750537109374996], [16.55097656250001, 47.747363281249996], [16.52109375, 47.724462890625], [16.469628906250023, 47.695068359375], [16.421289062500023, 47.674462890624994], [16.43212890625, 47.656298828124996], [16.639746093750006, 47.60888671875], [16.676562500000017, 47.536035156249994], [16.636621093750023, 47.476611328124996], [16.623046875, 47.447558593749996], [16.57441406250001, 47.424658203125], [16.514746093750006, 47.404541015625], [16.44287109375, 47.39951171875], [16.434375, 47.367431640625], [16.46259765625001, 47.27314453125], [16.439746093750017, 47.252734375], [16.416894531250023, 47.2234375], [16.438378906250023, 47.145898437499994], [16.482812500000023, 47.140380859375], [16.49267578125, 47.12265625], [16.484765625000023, 47.091259765625], [16.476953125000023, 47.057861328125], [16.461230468750017, 47.0224609375], [16.453417968750017, 47.006787109375], [16.423925781250006, 46.996972656249994], [16.331835937500017, 47.002197265625], [16.252539062500006, 46.971923828125], [16.093066406250017, 46.86328125], [16.037207031250006, 46.84482421875], [15.976855468750017, 46.8013671875], [15.98046875, 46.705859375], [15.972265625, 46.697216796875], [15.957617187500006, 46.677636718749994], [15.766894531250017, 46.711279296875], [15.76025390625, 46.710742187499996], [15.632617187500017, 46.6984375], [15.545312500000023, 46.654638671875], [15.439257812500017, 46.629638671875], [15.216992187500011, 46.64296875], [15.000683593750011, 46.6259765625], [14.949414062500011, 46.613232421875], [14.893261718750011, 46.605908203125], [14.840625, 46.58046875], [14.810546875, 46.544580078124994], [14.756738281250023, 46.49912109375], [14.68017578125, 46.463427734374996], [14.596972656250017, 46.436083984374996], [14.5771484375, 46.412939453125], [14.5498046875, 46.399707031249996], [14.503515625, 46.417041015624996], [14.465917968750006, 46.41611328125], [14.419921875, 46.4279296875], [14.267285156250011, 46.440722656249996], [14.099511718750023, 46.4619140625], [14.019628906250006, 46.482177734375], [13.928808593750006, 46.498193359374994], [13.831347656250017, 46.51123046875], [13.743945312500017, 46.514306640624994], [13.7, 46.520263671875], [13.490039062500017, 46.555566406249994], [13.3515625, 46.557910156249996], [13.16875, 46.57265625], [12.805566406250023, 46.625878906249994], [12.699804687500006, 46.6474609375], [12.5986328125, 46.654101562499996], [12.479199218750011, 46.672509765624994], [12.38828125, 46.70263671875], [12.330078125, 46.759814453124996], [12.267968750000023, 46.835888671875], [12.154101562500017, 46.93525390625], [12.130761718750023, 46.984765625], [12.16552734375, 47.028173828125], [12.201269531250006, 47.060888671875], [12.197167968750023, 47.075], [12.16943359375, 47.08212890625], [11.969531250000017, 47.039697265624994], [11.775683593750017, 46.986083984375], [11.699414062500011, 46.984667968749996], [11.62548828125, 46.99658203125], [11.527539062500011, 46.997412109375], [11.433203125, 46.983056640624994], [11.244433593750017, 46.97568359375], [11.133886718750006, 46.936181640624994], [11.0634765625, 46.859130859375], [11.025097656250011, 46.79697265625], [10.993261718750006, 46.777001953124994], [10.92734375, 46.769482421875], [10.828906250000017, 46.775244140625], [10.759765625, 46.793310546875], [10.689257812500017, 46.84638671875], [10.579785156250011, 46.8537109375], [10.479394531250023, 46.855126953124994], [10.452832031250011, 46.86494140625], [10.45458984375, 46.8994140625], [10.414941406250023, 46.964404296874996], [10.349414062500017, 46.984765625], [10.179785156250006, 46.862353515624996], [10.133496093750011, 46.851513671875], [9.996875, 46.8853515625], [9.877734375000017, 46.9376953125], [9.864648437500023, 46.975976562499994], [9.8453125, 47.007373046874996], [9.745019531250023, 47.037109375], [9.619921875000017, 47.057470703125], [9.580273437500011, 47.057373046875], [9.595703125, 47.075830078124994], [9.610546875000011, 47.10712890625], [9.601171875, 47.132080078125], [9.571875, 47.15791015625], [9.555761718750006, 47.185498046875], [9.551074218750017, 47.212255859375], [9.542187500000011, 47.234130859375], [9.536816406250011, 47.254638671875], [9.527539062500011, 47.270751953125], [9.609082031250011, 47.391796875], [9.625878906250023, 47.467041015625], [9.554394531250011, 47.511132812499994], [9.524023437500006, 47.52421875], [9.548925781250006, 47.534033203125], [9.650585937500011, 47.52587890625], [9.715136718750017, 47.55078125], [9.748925781250023, 47.575537109375], [9.839160156250017, 47.552294921874996], [9.971582031250023, 47.505322265625], [10.034082031250023, 47.473583984375], [10.059863281250017, 47.449072265625], [10.07421875, 47.428515625], [10.066308593750023, 47.393359375], [10.096484375000017, 47.37958984375], [10.158789062500006, 47.374267578125], [10.200292968750006, 47.363427734374994], [10.185742187500011, 47.3171875], [10.183007812500023, 47.27880859375], [10.240625, 47.284130859375], [10.312792968750017, 47.313427734375], [10.369140625, 47.366064453125], [10.40390625, 47.4169921875], [10.430371093750011, 47.541064453124996], [10.439453125, 47.5515625], [10.482812500000023, 47.541796875], [10.65869140625, 47.547216796875], [10.741601562500023, 47.52412109375], [10.873046875, 47.52021484375], [10.87060546875, 47.50078125], [10.893945312500023, 47.470458984375], [10.9521484375, 47.426708984375], [10.980859375000023, 47.39814453125], [11.0419921875, 47.393115234374996], [11.136035156250017, 47.40888671875], [11.191210937500017, 47.425195312499994], [11.2119140625, 47.413623046874996], [11.297949218750006, 47.42490234375], [11.374121093750006, 47.460253906249996], [11.392968750000023, 47.487158203125], [11.469921875000011, 47.506103515625], [11.573925781250011, 47.549755859375], [11.716796875, 47.58349609375], [12.185644531250006, 47.61953125], [12.203808593750011, 47.646728515625], [12.196875, 47.70908203125], [12.209277343750017, 47.71826171875], [12.268359375000017, 47.702734375], [12.363183593750023, 47.68818359375], [12.435742187500011, 47.66611328125], [12.48291015625, 47.6373046875], [12.526562500000011, 47.636132812499994], [12.59423828125, 47.656298828124996], [12.685839843750017, 47.669335937499994], [12.771386718750023, 47.639404296875], [12.796191406250017, 47.60703125], [12.781152343750023, 47.5904296875], [12.7828125, 47.56416015625], [12.809375, 47.5421875], [12.87890625, 47.5064453125], [12.968066406250017, 47.47568359375], [13.014355468750011, 47.478076171874996], [13.031542968750017, 47.5080078125], [13.047949218750006, 47.579150390624996], [13.054101562500023, 47.655126953125], [13.033593750000023, 47.69873046875], [12.985546875000011, 47.709423828125], [12.928125, 47.712841796875], [12.897656250000011, 47.721875], [12.908300781250006, 47.74580078125], [12.954199218750006, 47.807763671874994], [12.953515625000023, 47.890625], [12.849902343750017, 47.984814453125], [12.760058593750017, 48.075976562499996], [12.760351562500006, 48.106982421874996], [12.814257812500017, 48.16083984375], [12.8974609375, 48.2037109375], [13.082128906250006, 48.27509765625], [13.140429687500017, 48.289941406249994], [13.215234375000023, 48.301904296874994], [13.322851562500006, 48.33125], [13.374609375, 48.361376953124996], [13.409375, 48.394140625], [13.459863281250023, 48.56455078125], [13.4716796875, 48.571826171874996], [13.486621093750017, 48.581835937499996], [13.675195312500023, 48.523046875], [13.692187500000017, 48.532763671874996], [13.723925781250017, 48.542382812499994], [13.785351562500011, 48.587451171874996], [13.798828125, 48.6216796875], [13.797460937500006, 48.686425781249994], [13.802929687500011, 48.747509765625], [13.814746093750017, 48.766943359375], [13.843164062500023, 48.75986328125], [13.92431640625, 48.72802734375], [13.98876953125, 48.692431640624996], [14.049121093750017, 48.602490234375], [14.189843750000023, 48.578564453125], [14.367578125000023, 48.576220703124996], [14.431054687500023, 48.616259765624996], [14.488671875000023, 48.625537109374996], [14.553906250000011, 48.613330078124996], [14.691308593750023, 48.59921875], [14.706640625, 48.671923828124996], [14.785937500000017, 48.747363281249996], [14.821875, 48.7740234375], [14.922558593750011, 48.771386718749994], [14.947363281250006, 48.827734375], [14.97216796875, 48.983935546874996], [14.993457031250017, 49.001123046874994], [15.066796875000023, 48.997851562499996], [15.139746093750006, 48.9693359375], [15.16171875, 48.9462890625], [15.199609375000023, 48.948144531249994], [15.252734375000017, 48.9638671875], [15.310937500000023, 48.974023437499994], [15.402929687500006, 48.957373046875], [15.599414062500017, 48.886376953124994], [15.70078125, 48.86044921875], [15.765039062500023, 48.8654296875], [15.8251953125, 48.864453125], [16.057226562500006, 48.754785156249994], [16.219335937500006, 48.739404296874994], [16.367285156250006, 48.73896484375], [16.414843750000017, 48.7720703125], [16.477929687500023, 48.800097656249996], [16.543554687500006, 48.796240234375], [16.600976562500023, 48.781884765624994], [16.712695312500017, 48.734228515625], [16.764453125000017, 48.722021484375], [16.83320312500001, 48.714306640625], [16.883691406250023, 48.7037109375], [16.928320312500006, 48.620898437499996], [16.953125, 48.598828125]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Aust.&quot;, &quot;abbrev_len&quot;: 5, &quot;adm0_a3&quot;: &quot;AUT&quot;, &quot;adm0_a3_is&quot;: &quot;AUT&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;AUT&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Austria&quot;, &quot;brk_a3&quot;: &quot;AUT&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Austria&quot;, &quot;continent&quot;: &quot;Europe&quot;, &quot;economy&quot;: &quot;2. Developed region: nonG7&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Republic of Austria&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 329500, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Austria&quot;, &quot;gu_a3&quot;: &quot;AUT&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;1. High income: OECD&quot;, &quot;iso_a2&quot;: &quot;AT&quot;, &quot;iso_a3&quot;: &quot;AUT&quot;, &quot;iso_n3&quot;: &quot;040&quot;, &quot;labelrank&quot;: 4, &quot;lastcensus&quot;: 2011, &quot;level&quot;: 2, &quot;long_len&quot;: 7, &quot;mapcolor13&quot;: 4, &quot;mapcolor7&quot;: 3, &quot;mapcolor8&quot;: 1, &quot;mapcolor9&quot;: 3, &quot;name&quot;: &quot;Austria&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 7, &quot;name_long&quot;: &quot;Austria&quot;, &quot;name_sort&quot;: &quot;Austria&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 8210281, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;A&quot;, &quot;region_un&quot;: &quot;Europe&quot;, &quot;region_wb&quot;: &quot;Europe \\u0026 Central Asia&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;AUT&quot;, &quot;sovereignt&quot;: &quot;Austria&quot;, &quot;su_a3&quot;: &quot;AUT&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Western Europe&quot;, &quot;subunit&quot;: &quot;Austria&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;040&quot;, &quot;wb_a2&quot;: &quot;AT&quot;, &quot;wb_a3&quot;: &quot;AUT&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[45.15283203125003, 39.58266601562502], [45.17255859375004, 39.57060546874996], [45.252539062500006, 39.59545898437506], [45.2882812500001, 39.565576171874994], [45.34990234375002, 39.529882812500006], [45.456835937500074, 39.494482421875006], [45.610742187499994, 39.5498046875], [45.68740234375005, 39.56406250000006], [45.75048828125003, 39.56293945312501], [45.78447265625002, 39.54560546875001], [45.79648437500006, 39.488134765625034], [45.78417968749997, 39.41723632812497], [45.76630859375004, 39.37846679687499], [45.798632812500074, 39.350195312500006], [45.925, 39.28193359375004], [45.977441406249994, 39.24389648437503], [45.9518554687501, 39.178125], [46.04589843749997, 39.01752929687498], [46.07744140625002, 38.95488281250002], [46.1144531250001, 38.877783203125034], [45.921875, 38.907910156249955], [45.575, 38.97280273437502], [45.4796875000001, 39.00625], [45.38925781250006, 39.09589843749998], [45.33554687500006, 39.13916015625], [45.255957031250006, 39.194677734375034], [45.190625, 39.215625], [45.14121093750006, 39.254296875], [45.11308593750002, 39.311572265625045], [45.071679687499994, 39.362890625], [45.00019531250004, 39.42353515625001], [44.838183593750074, 39.62910156249998], [44.81718750000002, 39.65043945312496], [44.7833984375001, 39.684667968750006], [44.76826171875004, 39.70351562500005], [44.86718750000003, 39.71914062500002], [45.03164062500005, 39.76513671874997], [45.07646484375002, 39.742822265624966], [45.12460937500006, 39.69633789062499], [45.14863281250004, 39.65659179687498], [45.15283203125003, 39.58266601562502]]], [[[45.0236328125001, 41.027246093749966], [45.00205078125006, 41.015820312499955], [44.969042968750074, 41.027246093749966], [44.95888671875005, 41.052636718749994], [44.96142578125003, 41.079248046874994], [44.9943359375001, 41.085595703124966], [45.02109375, 41.077978515625006], [45.02871093750005, 41.053857421874994], [45.0236328125001, 41.027246093749966]]], [[[46.552148437499994, 41.812304687500045], [46.57128906249997, 41.800097656250045], [46.616015625000074, 41.80693359375002], [46.690332031249994, 41.83134765625002], [46.74931640625002, 41.812597656250006], [46.82558593750005, 41.74340820312503], [46.93085937500004, 41.67041015625], [46.98779296875003, 41.62138671874996], [47.01015625000005, 41.5875], [47.06396484375003, 41.55468750000006], [47.14257812500003, 41.51606445312501], [47.2052734375001, 41.45561523437502], [47.26113281250005, 41.315087890624994], [47.31767578125002, 41.28242187500001], [47.52060546875006, 41.22905273437496], [47.59179687499997, 41.21811523437506], [47.79101562499997, 41.19926757812502], [47.861132812500074, 41.212744140625034], [47.963671875000074, 41.33398437500003], [48.05605468750005, 41.45869140625004], [48.14228515625004, 41.48476562500002], [48.29814453125002, 41.545019531250034], [48.391406250000074, 41.60190429687498], [48.43066406249997, 41.66333007812497], [48.51865234375006, 41.77934570312499], [48.572851562500006, 41.84448242187503], [48.66464843750006, 41.78662109375006], [48.8239257812501, 41.62958984375004], [49.05087890625006, 41.37397460937501], [49.10664062500004, 41.30170898437504], [49.14326171875004, 41.21777343749997], [49.17470703125005, 41.116113281249966], [49.22646484375005, 41.026220703125034], [49.45673828125004, 40.79985351562502], [49.55615234374997, 40.71630859375006], [49.71835937500006, 40.60810546875004], [49.77597656250006, 40.583984375], [49.85175781250004, 40.577197265625045], [49.990625, 40.57680664062505], [50.11914062499997, 40.53452148437506], [50.18251953125005, 40.50478515625002], [50.24804687499997, 40.46176757812506], [50.30683593750004, 40.412207031250006], [50.3659179687501, 40.279492187499955], [50.143164062500006, 40.3232421875], [49.91884765625005, 40.31640625000003], [49.79199218749997, 40.28789062499999], [49.66904296875006, 40.24902343749997], [49.551171875, 40.19414062499999], [49.477343750000074, 40.08725585937506], [49.415136718750006, 39.83984375], [49.3244140625001, 39.60834960937501], [49.327539062499994, 39.50122070312503], [49.36738281250004, 39.398388671874955], [49.36279296875003, 39.349560546874955], [49.32119140625005, 39.32890625000002], [49.269335937500074, 39.28515624999997], [49.199804687500006, 39.07265625000002], [49.16533203125002, 39.03027343750003], [49.12099609375005, 39.00390624999997], [49.10869140625002, 39.02905273437503], [49.11132812500003, 39.084716796875], [49.013476562500074, 39.13398437500001], [48.96171875000002, 39.07875976562502], [48.92617187500005, 38.961767578125006], [48.85449218750003, 38.83881835937501], [48.850878906250074, 38.81533203125002], [48.86875, 38.43549804687498], [48.84033203124997, 38.437255859375], [48.635546875000074, 38.39873046874996], [48.59267578125005, 38.41108398437498], [48.41738281250005, 38.58623046874996], [48.38125, 38.60561523437502], [48.305566406249994, 38.61347656250001], [48.26132812500006, 38.64228515625001], [48.22519531250006, 38.689208984375], [48.20468750000006, 38.72412109375], [48.02324218750002, 38.81904296874998], [47.996484375, 38.85375976562503], [47.99267578125003, 38.88427734375003], [48.01933593750002, 38.911816406249955], [48.05009765625002, 38.93500976562498], [48.138574218749994, 38.958642578124994], [48.24199218750002, 38.978955078124955], [48.2750976562501, 38.99360351562501], [48.292089843750006, 39.01884765624999], [48.29101562499997, 39.05927734374998], [48.2741210937501, 39.09912109375], [48.12548828124997, 39.17163085937503], [48.109179687500074, 39.20283203125001], [48.10439453125005, 39.241113281249994], [48.112890625, 39.281103515625034], [48.13603515625002, 39.312353515625006], [48.257226562499994, 39.35498046875], [48.322167968749994, 39.39907226562502], [48.28173828125003, 39.448339843750006], [48.15107421875004, 39.56054687500006], [47.995898437500074, 39.683935546875034], [47.8922851562501, 39.68505859375], [47.772851562499994, 39.64858398437505], [47.581835937500074, 39.543359375], [47.47617187500006, 39.49833984374999], [47.33847656250006, 39.42387695312499], [47.18837890625005, 39.340966796874994], [47.06542968750003, 39.25288085937498], [46.98886718750006, 39.18017578125], [46.85253906250003, 39.14843750000003], [46.78320312500003, 39.08740234375003], [46.554785156250006, 38.904394531250034], [46.490625, 38.90668945312498], [46.48671875, 38.997460937499994], [46.48984375, 39.069433593750006], [46.47539062500002, 39.11088867187502], [46.40146484375006, 39.16767578125004], [46.400292968749994, 39.1921875], [46.42031250000005, 39.207373046875034], [46.477148437500006, 39.19819335937504], [46.55, 39.20141601562497], [46.584765625000074, 39.22368164062499], [46.506640625000074, 39.298535156249955], [46.437304687500074, 39.34853515625002], [46.37841796874997, 39.382275390624955], [46.36523437500003, 39.402490234374994], [46.365136718749994, 39.41679687499999], [46.3776367187501, 39.43388671874999], [46.478125, 39.47509765625006], [46.48808593750002, 39.512841796874994], [46.48144531249997, 39.55517578125003], [46.32167968750005, 39.617431640625], [46.202050781249994, 39.59448242187503], [46.094824218750006, 39.664453125], [46.02587890624997, 39.71855468749999], [45.93994140624997, 39.77656250000001], [45.863183593749994, 39.808349609375], [45.789648437500006, 39.88110351562497], [45.6618164062501, 39.956201171874994], [45.57978515625004, 39.9775390625], [45.58095703125005, 39.98901367187503], [45.595996093750074, 40.002832031249994], [45.63017578125002, 40.01420898437502], [45.8581054687501, 40.011279296875045], [45.8859375000001, 40.024853515624955], [45.90009765625004, 40.05708007812504], [45.93125, 40.104687499999955], [45.96757812500002, 40.17480468750003], [45.96464843750002, 40.233789062499966], [45.73574218750005, 40.32910156250003], [45.5695312500001, 40.41684570312506], [45.45439453125002, 40.532373046874966], [45.37617187500004, 40.63808593750002], [45.37890624999997, 40.67358398437506], [45.40136718749997, 40.707128906250034], [45.579394531250074, 40.80449218749999], [45.59140625, 40.829736328124966], [45.5875, 40.846923828125], [45.52402343750006, 40.89672851562503], [45.444238281249994, 40.947998046875], [45.41914062500004, 40.985693359375034], [45.36894531250002, 41.00488281250003], [45.27343750000003, 41.00625], [45.106054687500006, 41.06933593750003], [45.07050781250004, 41.075585937499966], [45.06259765625006, 41.08813476562503], [45.070703125, 41.10083007812506], [45.19023437500002, 41.12636718750002], [45.188574218750006, 41.14741210937504], [45.15234375000003, 41.175146484375006], [45.08476562500002, 41.195458984374966], [45.02294921874997, 41.24570312499998], [45.001367187499994, 41.29096679687498], [45.2171875, 41.423193359375006], [45.28095703125004, 41.449560546875034], [45.42226562500005, 41.42529296874997], [45.715625, 41.33764648437497], [45.69570312500005, 41.28901367187501], [45.725488281249994, 41.26162109375002], [45.79277343750002, 41.22441406249999], [45.92197265625006, 41.186718749999955], [46.03125, 41.16728515624999], [46.086523437500006, 41.183837890625], [46.17070312500002, 41.197851562500006], [46.2799804687501, 41.15444335937505], [46.380761718749994, 41.09931640625001], [46.43095703125002, 41.077050781249994], [46.457910156249994, 41.07021484375002], [46.534375, 41.08857421875004], [46.62636718750005, 41.15966796875006], [46.66240234375002, 41.24550781250002], [46.67255859375004, 41.28681640625001], [46.61894531250002, 41.34375], [46.50878906249997, 41.40556640624996], [46.38496093750004, 41.459863281249994], [46.30546875000002, 41.507714843749994], [46.254687500000074, 41.602148437500034], [46.20351562500005, 41.612597656250045], [46.19052734375006, 41.624853515625034], [46.18212890625003, 41.657080078125034], [46.18427734375004, 41.70214843749997], [46.20185546875004, 41.736865234375045], [46.25185546875005, 41.75175781249996], [46.302539062500074, 41.75708007812497], [46.348242187500006, 41.790185546874966], [46.40546875000004, 41.85507812500006], [46.42988281250004, 41.890966796875006], [46.537695312500006, 41.87041015624999], [46.552148437499994, 41.812304687500045]], [[45.47880859375002, 40.60698242187499], [45.51435546875004, 40.59956054687498], [45.55234375000006, 40.61606445312506], [45.562304687500074, 40.64916992187506], [45.53417968750003, 40.664013671874955], [45.504492187500006, 40.664843750000045], [45.47880859375002, 40.648339843749966], [45.47880859375002, 40.60698242187499]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Aze.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;AZE&quot;, &quot;adm0_a3_is&quot;: &quot;AZE&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;AZE&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Azerbaijan&quot;, &quot;brk_a3&quot;: &quot;AZE&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Azerbaijan&quot;, &quot;continent&quot;: &quot;Asia&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Republic of Azerbaijan&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 77610, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Azerbaijan&quot;, &quot;gu_a3&quot;: &quot;AZE&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;3. Upper middle income&quot;, &quot;iso_a2&quot;: &quot;AZ&quot;, &quot;iso_a3&quot;: &quot;AZE&quot;, &quot;iso_n3&quot;: &quot;031&quot;, &quot;labelrank&quot;: 5, &quot;lastcensus&quot;: 2009, &quot;level&quot;: 2, &quot;long_len&quot;: 10, &quot;mapcolor13&quot;: 8, &quot;mapcolor7&quot;: 1, &quot;mapcolor8&quot;: 6, &quot;mapcolor9&quot;: 5, &quot;name&quot;: &quot;Azerbaijan&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 10, &quot;name_long&quot;: &quot;Azerbaijan&quot;, &quot;name_sort&quot;: &quot;Azerbaijan&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 8238672, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;AZ&quot;, &quot;region_un&quot;: &quot;Asia&quot;, &quot;region_wb&quot;: &quot;Europe \\u0026 Central Asia&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;AZE&quot;, &quot;sovereignt&quot;: &quot;Azerbaijan&quot;, &quot;su_a3&quot;: &quot;AZE&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Western Asia&quot;, &quot;subunit&quot;: &quot;Azerbaijan&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;031&quot;, &quot;wb_a2&quot;: &quot;AZ&quot;, &quot;wb_a3&quot;: &quot;AZE&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[30.553613281250023, -2.400097656250011], [30.53369140625, -2.42626953125], [30.441992187500006, -2.613476562500011], [30.424218750000023, -2.6416015625], [30.434375, -2.658886718750011], [30.47333984375001, -2.6943359375], [30.450488281250017, -2.753222656250003], [30.441308593750023, -2.76904296875], [30.42402343750001, -2.824023437500003], [30.433496093750023, -2.87451171875], [30.45556640625, -2.893164062500006], [30.515039062500023, -2.917578125], [30.604296875000017, -2.935253906250011], [30.70947265625, -2.977246093750011], [30.7802734375, -2.98486328125], [30.796875, -3.01513671875], [30.793554687500006, -3.0693359375], [30.811132812500006, -3.116406250000011], [30.811425781250023, -3.200585937500009], [30.79023437500001, -3.274609375000011], [30.68183593750001, -3.309375], [30.626074218750006, -3.347363281250011], [30.6109375, -3.366406250000011], [30.624609375, -3.388671875], [30.631933593750006, -3.418652343750011], [30.529882812500006, -3.492480468750003], [30.425, -3.5888671875], [30.4, -3.65390625], [30.37910156250001, -3.730761718750003], [30.348437500000017, -3.77978515625], [30.2685546875, -3.850488281250009], [30.187109375, -3.992871093750011], [30.14716796875001, -4.085351562500009], [29.947265625, -4.307324218750011], [29.76953125, -4.418066406250006], [29.7177734375, -4.455859375], [29.403222656250023, -4.449316406250006], [29.379199218750017, -4.299707031250009], [29.331347656250017, -4.095410156250011], [29.223242187500006, -3.910839843750011], [29.211816406250023, -3.833789062500003], [29.216796875, -3.684960937500009], [29.217187500000023, -3.475683593750006], [29.210058593750006, -3.36328125], [29.212304687500023, -3.28125], [29.22607421875, -3.138671875], [29.224414062500017, -3.053515625], [29.153222656250023, -2.955273437500011], [29.064746093750017, -2.850781250000011], [29.0166015625, -2.799609375], [29.01416015625, -2.75830078125], [29.01435546875001, -2.72021484375], [29.028613281250017, -2.66455078125], [29.06318359375001, -2.6025390625], [29.10205078125, -2.595703125], [29.197558593750017, -2.620312500000011], [29.29707031250001, -2.673046875000011], [29.34980468750001, -2.79150390625], [29.390234375, -2.80859375], [29.463671875000017, -2.808398437500003], [29.6513671875, -2.792773437500003], [29.698046875000017, -2.794726562500003], [29.78339843750001, -2.76640625], [29.8681640625, -2.71640625], [29.892578125, -2.664648437500006], [29.912402343750017, -2.548632812500003], [29.93017578125, -2.339550781250011], [29.973437500000017, -2.337109375000011], [30.091894531250006, -2.411523437500009], [30.117285156250006, -2.416601562500006], [30.14228515625001, -2.413964843750009], [30.18330078125001, -2.377050781250006], [30.233789062500023, -2.347070312500009], [30.27099609375, -2.347851562500011], [30.408496093750017, -2.31298828125], [30.482226562500017, -2.376074218750006], [30.52890625, -2.395605468750006], [30.553613281250023, -2.400097656250011]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Bur.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;BDI&quot;, &quot;adm0_a3_is&quot;: &quot;BDI&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BDI&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Burundi&quot;, &quot;brk_a3&quot;: &quot;BDI&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Burundi&quot;, &quot;continent&quot;: &quot;Africa&quot;, &quot;economy&quot;: &quot;7. Least developed region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Republic of Burundi&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 3102, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Burundi&quot;, &quot;gu_a3&quot;: &quot;BDI&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;5. Low income&quot;, &quot;iso_a2&quot;: &quot;BI&quot;, &quot;iso_a3&quot;: &quot;BDI&quot;, &quot;iso_n3&quot;: &quot;108&quot;, &quot;labelrank&quot;: 6, &quot;lastcensus&quot;: 2008, &quot;level&quot;: 2, &quot;long_len&quot;: 7, &quot;mapcolor13&quot;: 8, &quot;mapcolor7&quot;: 2, &quot;mapcolor8&quot;: 2, &quot;mapcolor9&quot;: 5, &quot;name&quot;: &quot;Burundi&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 7, &quot;name_long&quot;: &quot;Burundi&quot;, &quot;name_sort&quot;: &quot;Burundi&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 8988091, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BI&quot;, &quot;region_un&quot;: &quot;Africa&quot;, &quot;region_wb&quot;: &quot;Sub-Saharan Africa&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BDI&quot;, &quot;sovereignt&quot;: &quot;Burundi&quot;, &quot;su_a3&quot;: &quot;BDI&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Eastern Africa&quot;, &quot;subunit&quot;: &quot;Burundi&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;108&quot;, &quot;wb_a2&quot;: &quot;BI&quot;, &quot;wb_a3&quot;: &quot;BDI&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[4.816015625000034, 51.432812499999955], [4.820703125000023, 51.41206054687501], [4.84804687500008, 51.40327148437498], [4.943945312499977, 51.40776367187502], [4.992578125000023, 51.445361328125045], [5.03095703125004, 51.46909179687498], [5.05947265625008, 51.453125], [5.073437500000068, 51.406835937500006], [5.099902343750045, 51.34648437499996], [5.214160156250045, 51.278955078124966], [5.310839843750045, 51.259716796874955], [5.429785156250034, 51.27299804687502], [5.476855468750017, 51.285058593749966], [5.508789062500028, 51.275], [5.540429687499994, 51.23930664062499], [5.60878906250008, 51.19843750000001], [5.752343750000023, 51.16948242187496], [5.796484375000034, 51.153076171875], [5.827148437500057, 51.125634765624994], [5.818261718750023, 51.08642578125], [5.749804687500017, 50.98876953125], [5.740820312500063, 50.95991210937498], [5.75, 50.95024414062499], [5.736621093750017, 50.93212890625003], [5.647558593750063, 50.86665039062501], [5.639453125000017, 50.843603515625006], [5.669140625000011, 50.80595703124999], [5.693554687500011, 50.774755859375006], [5.69453125000004, 50.78105468749996], [5.830957031250051, 50.80913085937502], [5.89246112249532, 50.75255685798351], [5.993945312500017, 50.75043945312504], [6.005957031249977, 50.73222656249996], [6.119433593750017, 50.67924804687502], [6.15449218750004, 50.63725585937499], [6.235937500000034, 50.59667968749997], [6.168457031250057, 50.54536132812501], [6.1787109375, 50.52250976562496], [6.20302734375008, 50.499121093750006], [6.294921875000057, 50.485498046874966], [6.340917968750006, 50.451757812500034], [6.343652343750051, 50.400244140625006], [6.364453125000011, 50.31616210937503], [6.175097656250074, 50.23266601562497], [6.12128906250004, 50.13935546874998], [6.116503906250045, 50.120996093749966], [6.110058593750068, 50.123779296875], [6.08906250000004, 50.15458984374996], [6.054785156249977, 50.154296875], [5.976269531250068, 50.167187499999955], [5.866894531250068, 50.08281250000002], [5.817382812500028, 50.01269531250003], [5.7880859375, 49.96123046875002], [5.744042968749994, 49.91962890624998], [5.73525390625008, 49.875634765624994], [5.740820312500063, 49.85717773437506], [5.725781250000011, 49.83334960937498], [5.725, 49.80830078125004], [5.78798828125008, 49.758886718750006], [5.8037109375, 49.73217773437497], [5.880371093749972, 49.64477539062503], [5.856542968750006, 49.61284179687502], [5.837597656250068, 49.57832031249998], [5.815429687499972, 49.55380859375006], [5.789746093749983, 49.53828125000001], [5.71044921875, 49.53920898437502], [5.610058593750068, 49.528222656249994], [5.542382812500051, 49.51103515624996], [5.50732421875, 49.51088867187502], [5.434667968750034, 49.55449218750002], [5.353515625000028, 49.61982421875001], [5.301953125000011, 49.650976562500034], [5.27880859375, 49.67792968750004], [5.215039062500068, 49.68925781250002], [5.124121093750006, 49.72148437500002], [5.061035156250028, 49.75654296874998], [5.006933593750034, 49.77836914062499], [4.930566406250023, 49.78925781249998], [4.867578125000051, 49.78813476562502], [4.849121093750028, 49.84711914062504], [4.841503906250068, 49.91450195312501], [4.790039062499972, 49.959570312500034], [4.86054687500004, 50.135888671874994], [4.818652343750045, 50.153173828125034], [4.772851562500023, 50.1390625], [4.706640625000034, 50.097070312499966], [4.675097656250017, 50.046875], [4.656152343750051, 50.00244140624997], [4.545019531250063, 49.96025390624999], [4.36875, 49.944970703124994], [4.176074218750045, 49.96025390624999], [4.149316406250023, 49.971582031249994], [4.137011718750074, 49.984472656250034], [4.136816406250034, 50], [4.150292968750023, 50.02387695312498], [4.183886718750045, 50.052832031250034], [4.192187500000045, 50.094140625], [4.157714843750028, 50.1298828125], [4.13525390625, 50.143798828125], [4.144140625000034, 50.17841796875004], [4.169628906250068, 50.22177734374998], [4.174609375000017, 50.24648437500005], [4.044140624999983, 50.32133789062502], [3.949707031250028, 50.33593749999997], [3.858105468750011, 50.33857421874998], [3.788574218750057, 50.34697265624999], [3.748046875000057, 50.343505859375], [3.718847656250063, 50.321679687499994], [3.689355468750023, 50.30605468750002], [3.667285156250045, 50.324804687500006], [3.626757812500045, 50.45732421875002], [3.595410156250068, 50.47734374999999], [3.47695312500008, 50.49946289062498], [3.316210937500017, 50.50737304687499], [3.27333984375008, 50.53154296875002], [3.249804687500074, 50.591162109375006], [3.234960937499977, 50.66293945312498], [3.182031250000051, 50.73168945312503], [3.154882812500006, 50.748925781249994], [3.10683593750008, 50.779443359374994], [3.022851562500023, 50.76689453125002], [2.921972656250006, 50.72705078124997], [2.862402343750034, 50.716015624999955], [2.839746093750023, 50.71176757812498], [2.759375, 50.750634765624994], [2.669140625000011, 50.81142578125002], [2.596777343750006, 50.87592773437501], [2.579296874999983, 50.91176757812505], [2.60146484375008, 50.95527343750001], [2.574804687500063, 50.98857421874996], [2.536035156250051, 51.04951171875004], [2.52490234375, 51.097119140624955], [2.96015625000004, 51.26542968749996], [3.225195312500034, 51.351611328125045], [3.35009765625, 51.37768554687503], [3.380078125000068, 51.29111328125006], [3.40283203125, 51.263623046874955], [3.43251953125008, 51.24575195312505], [3.471972656250045, 51.242236328125045], [3.51708984375, 51.263623046874955], [3.580273437499983, 51.28618164062502], [3.681835937500068, 51.27568359375002], [3.755664062500017, 51.25483398437504], [3.78193359375004, 51.23320312499999], [3.83076171875004, 51.212597656249955], [3.902050781250011, 51.20766601562502], [4.040039062500057, 51.24707031250006], [4.17255859375004, 51.30708007812501], [4.211425781250057, 51.34873046874998], [4.226171875000034, 51.38647460937503], [4.304492187500017, 51.36152343750001], [4.373730468749983, 51.356005859375045], [4.40400390625004, 51.367089843749994], [4.384765625000028, 51.42758789062506], [4.44091796875, 51.45981445312506], [4.503417968750028, 51.47470703124998], [4.531640625000023, 51.44858398437498], [4.588769531250023, 51.42192382812496], [4.633984375000068, 51.421728515625006], [4.755664062499989, 51.49111328125002], [4.784179687500028, 51.47739257812498], [4.810546875, 51.452734375000034], [4.816015625000034, 51.432812499999955]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Belg.&quot;, &quot;abbrev_len&quot;: 5, &quot;adm0_a3&quot;: &quot;BEL&quot;, &quot;adm0_a3_is&quot;: &quot;BEL&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BEL&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Belgium&quot;, &quot;brk_a3&quot;: &quot;BEL&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Belgium&quot;, &quot;continent&quot;: &quot;Europe&quot;, &quot;economy&quot;: &quot;2. Developed region: nonG7&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Kingdom of Belgium&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 389300, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Belgium&quot;, &quot;gu_a3&quot;: &quot;BEL&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;1. High income: OECD&quot;, &quot;iso_a2&quot;: &quot;BE&quot;, &quot;iso_a3&quot;: &quot;BEL&quot;, &quot;iso_n3&quot;: &quot;056&quot;, &quot;labelrank&quot;: 2, &quot;lastcensus&quot;: 2011, &quot;level&quot;: 2, &quot;long_len&quot;: 7, &quot;mapcolor13&quot;: 8, &quot;mapcolor7&quot;: 3, &quot;mapcolor8&quot;: 2, &quot;mapcolor9&quot;: 1, &quot;name&quot;: &quot;Belgium&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 7, &quot;name_long&quot;: &quot;Belgium&quot;, &quot;name_sort&quot;: &quot;Belgium&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 10414336, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;B&quot;, &quot;region_un&quot;: &quot;Europe&quot;, &quot;region_wb&quot;: &quot;Europe \\u0026 Central Asia&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BEL&quot;, &quot;sovereignt&quot;: &quot;Belgium&quot;, &quot;su_a3&quot;: &quot;BEL&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Western Europe&quot;, &quot;subunit&quot;: &quot;Belgium&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;056&quot;, &quot;wb_a2&quot;: &quot;BE&quot;, &quot;wb_a3&quot;: &quot;BEL&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[3.595410156250011, 11.6962890625], [3.553906250000011, 11.631884765624989], [3.490527343750017, 11.49921875], [3.48779296875, 11.395410156249994], [3.638867187500011, 11.176855468749991], [3.65625, 11.154589843749989], [3.6953125, 11.1203125], [3.71640625, 11.07958984375], [3.734179687500017, 10.971923828125], [3.744921875000017, 10.850439453124991], [3.7568359375, 10.76875], [3.8296875, 10.653759765624997], [3.83447265625, 10.607421875], [3.783789062500006, 10.435888671874991], [3.771777343750017, 10.417626953124994], [3.758496093750011, 10.412695312499991], [3.680273437500006, 10.427783203124989], [3.646582031250006, 10.408984374999989], [3.604101562500006, 10.350683593749991], [3.577929687500017, 10.29248046875], [3.576562500000023, 10.268359374999989], [3.645898437500023, 10.16015625], [3.60205078125, 10.004541015624994], [3.557226562500006, 9.907324218749991], [3.476757812500011, 9.851904296874991], [3.40478515625, 9.838623046875], [3.3544921875, 9.812792968749989], [3.3251953125, 9.778466796874994], [3.329492187500023, 9.667041015624989], [3.223437500000017, 9.565625], [3.164648437500006, 9.494677734374989], [3.136132812500023, 9.451611328124997], [3.148046875, 9.320605468749989], [3.110449218750006, 9.188281249999989], [3.044921875, 9.083837890624991], [2.898046875, 9.061376953124991], [2.774804687500023, 9.048535156249997], [2.73291015625, 8.782519531249989], [2.734667968750017, 8.614013671875], [2.7236328125, 8.44189453125], [2.703125, 8.371826171875], [2.711523437500006, 8.272998046874989], [2.702343750000011, 8.0498046875], [2.68603515625, 7.873730468749997], [2.707714843750011, 7.826611328124997], [2.720410156250011, 7.723095703124997], [2.719335937500006, 7.616259765624989], [2.7509765625, 7.541894531249994], [2.78515625, 7.476855468749989], [2.783984375000017, 7.443408203124989], [2.765820312500011, 7.422509765624994], [2.75048828125, 7.395068359374989], [2.750585937500006, 7.143212890624994], [2.756738281250023, 7.067919921874989], [2.747753906250011, 7.019824218749989], [2.721386718750011, 6.980273437499989], [2.731738281250017, 6.852832031249989], [2.7529296875, 6.771630859374994], [2.774609375000011, 6.711718749999989], [2.753710937500017, 6.661767578124994], [2.735644531250017, 6.595703125], [2.7080078125, 6.427685546874997], [2.706445312500023, 6.369238281249991], [2.286914062500017, 6.328076171874997], [1.818164062500017, 6.260644531249994], [1.62265625, 6.216796875], [1.6109375, 6.250830078124991], [1.777929687500006, 6.294628906249997], [1.7431640625, 6.42626953125], [1.639257812500006, 6.58154296875], [1.598535156250023, 6.610205078124991], [1.577539062500023, 6.687402343749994], [1.602929687500023, 6.738085937499989], [1.5908203125, 6.772265624999989], [1.58203125, 6.877001953124989], [1.530957031250011, 6.992431640625], [1.624707031250011, 6.997314453125], [1.624707031250011, 7.369189453124989], [1.624609375, 7.725878906249989], [1.624609375, 8.030224609374997], [1.624609375, 8.27099609375], [1.606640625000011, 8.559277343749997], [1.603808593750017, 8.77099609375], [1.600195312500006, 9.050048828125], [1.566308593750023, 9.137255859374989], [1.42431640625, 9.285009765624991], [1.3857421875, 9.361669921874991], [1.37890625, 9.462988281249991], [1.347070312500023, 9.567529296874994], [1.345117187500023, 9.750195312499997], [1.342871093750006, 9.962939453124989], [1.330078125, 9.996972656249994], [1.176171875000023, 10.098388671875], [0.958300781250017, 10.242041015624991], [0.792187500000011, 10.3515625], [0.779980468750011, 10.359570312499997], [0.763378906250011, 10.386669921874997], [0.7875, 10.710253906249989], [0.821875, 10.752587890624994], [0.874804687500017, 10.8857421875], [0.900488281250006, 10.993261718749991], [0.924609375000017, 10.992822265624994], [0.9580078125, 11.027783203124997], [0.985058593750011, 11.079003906249994], [1.013867187500011, 11.068115234375], [1.062304687500017, 11.058203125], [1.084570312500006, 11.076367187499997], [1.08154296875, 11.116015624999989], [1.097558593750023, 11.156347656249991], [1.135546875000017, 11.174365234374989], [1.1455078125, 11.210400390624997], [1.145800781250017, 11.251904296874997], [1.1787109375, 11.262744140624989], [1.234667968750017, 11.261035156249989], [1.280468750000011, 11.273974609374989], [1.3173828125, 11.295263671874991], [1.36484375, 11.37890625], [1.391503906250023, 11.408007812499989], [1.399707031250017, 11.4287109375], [1.4267578125, 11.447119140624991], [1.501367187500023, 11.45556640625], [1.561425781250023, 11.449121093749994], [1.6, 11.400634765625], [1.857617187500011, 11.443359375], [1.980371093750023, 11.418408203124997], [2.230859375000023, 11.629150390625], [2.287207031250006, 11.691259765624991], [2.36328125, 11.840087890625], [2.38916015625, 11.897070312499991], [2.412695312500006, 11.999316406249989], [2.36328125, 12.188427734374997], [2.366015625000017, 12.221923828125], [2.469335937500006, 12.262792968749991], [2.598437500000017, 12.294335937499994], [2.6484375, 12.296777343749994], [2.681347656250011, 12.312792968749989], [2.728515625, 12.353613281249991], [2.805273437500006, 12.383837890624989], [2.850195312500006, 12.373681640624994], [2.878125, 12.367724609374989], [3.149609375000011, 12.118066406249994], [3.267382812500017, 11.991894531249997], [3.299121093750017, 11.927148437499994], [3.359960937500006, 11.88046875], [3.449804687500006, 11.851953125], [3.53173828125, 11.787451171874991], [3.595410156250011, 11.6962890625]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Benin&quot;, &quot;abbrev_len&quot;: 5, &quot;adm0_a3&quot;: &quot;BEN&quot;, &quot;adm0_a3_is&quot;: &quot;BEN&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BEN&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Benin&quot;, &quot;brk_a3&quot;: &quot;BEN&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Benin&quot;, &quot;continent&quot;: &quot;Africa&quot;, &quot;economy&quot;: &quot;7. Least developed region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Republic of Benin&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 12830, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Benin&quot;, &quot;gu_a3&quot;: &quot;BEN&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;5. Low income&quot;, &quot;iso_a2&quot;: &quot;BJ&quot;, &quot;iso_a3&quot;: &quot;BEN&quot;, &quot;iso_n3&quot;: &quot;204&quot;, &quot;labelrank&quot;: 5, &quot;lastcensus&quot;: 2002, &quot;level&quot;: 2, &quot;long_len&quot;: 5, &quot;mapcolor13&quot;: 12, &quot;mapcolor7&quot;: 1, &quot;mapcolor8&quot;: 2, &quot;mapcolor9&quot;: 2, &quot;name&quot;: &quot;Benin&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 5, &quot;name_long&quot;: &quot;Benin&quot;, &quot;name_sort&quot;: &quot;Benin&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 8791832, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BJ&quot;, &quot;region_un&quot;: &quot;Africa&quot;, &quot;region_wb&quot;: &quot;Sub-Saharan Africa&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BEN&quot;, &quot;sovereignt&quot;: &quot;Benin&quot;, &quot;su_a3&quot;: &quot;BEN&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Western Africa&quot;, &quot;subunit&quot;: &quot;Benin&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;204&quot;, &quot;wb_a2&quot;: &quot;BJ&quot;, &quot;wb_a3&quot;: &quot;BEN&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[0.217480468750011, 14.911474609374991], [0.203808593750011, 14.865039062500003], [0.202734375, 14.7828125], [0.18505859375, 14.652929687499991], [0.163867187500017, 14.497216796874994], [0.250585937500006, 14.396435546874997], [0.354589843750006, 14.288037109374997], [0.382519531250011, 14.245800781249997], [0.354882812500023, 14.139013671874991], [0.3740234375, 14.076367187499997], [0.42919921875, 13.972119140624997], [0.522363281250023, 13.839746093749994], [0.6181640625, 13.703417968750003], [0.6845703125, 13.685400390624991], [0.747753906250011, 13.674511718749997], [0.786035156250023, 13.650048828124994], [0.84228515625, 13.626416015624997], [0.89794921875, 13.6109375], [0.946582031250017, 13.581152343749991], [0.977734375000011, 13.551953125], [1.017871093750017, 13.467871093749991], [1.1259765625, 13.412353515625], [1.201171875, 13.357519531249991], [1.1708984375, 13.32958984375], [1.076855468750011, 13.340771484374997], [0.988476562500011, 13.36484375], [0.976757812500011, 13.324511718750003], [0.973046875000023, 13.170361328124997], [0.9873046875, 13.041894531249994], [1.007910156250006, 13.024804687499994], [1.096777343750006, 13.001123046874994], [1.308691406250006, 12.834277343749989], [1.50048828125, 12.676464843749997], [1.56494140625, 12.635400390624994], [1.671093750000011, 12.619824218749997], [1.789843750000017, 12.61328125], [1.840917968750006, 12.627880859374997], [1.956152343750006, 12.707421875], [2.017382812500017, 12.716210937499994], [2.073828125, 12.713964843749991], [2.104589843750006, 12.701269531249991], [2.159765625, 12.636425781249997], [2.211523437500006, 12.538427734374991], [2.226269531250011, 12.466064453125], [2.221386718750011, 12.42724609375], [2.203808593750011, 12.41259765625], [2.109375, 12.393847656249989], [2.068554687500011, 12.379150390625], [2.058398437500017, 12.357958984374989], [2.072949218750011, 12.30937], [2.09140625, 12.277978515624994], [2.194433593750006, 12.136474609375], [2.343359375, 11.945996093749997], [2.38916015625, 11.897070312499991], [2.36328125, 11.840087890625], [2.287207031250006, 11.691259765624991], [2.230859375000023, 11.629150390625], [1.980371093750023, 11.418408203124997], [1.857617187500011, 11.443359375], [1.6, 11.400634765625], [1.561425781250023, 11.449121093749994], [1.501367187500023, 11.45556640625], [1.4267578125, 11.447119140624991], [1.399707031250017, 11.4287109375], [1.391503906250023, 11.408007812499989], [1.36484375, 11.37890625], [1.3173828125, 11.295263671874991], [1.280468750000011, 11.273974609374989], [1.234667968750017, 11.261035156249989], [1.1787109375, 11.262744140624989], [1.145800781250017, 11.251904296874997], [1.1455078125, 11.210400390624997], [1.135546875000017, 11.174365234374989], [1.097558593750023, 11.156347656249991], [1.08154296875, 11.116015624999989], [1.084570312500006, 11.076367187499997], [1.062304687500017, 11.058203125], [1.013867187500011, 11.068115234375], [0.985058593750011, 11.079003906249994], [0.9580078125, 11.027783203124997], [0.924609375000017, 10.992822265624994], [0.900488281250006, 10.993261718749991], [0.642968750000023, 10.983056640624994], [0.549121093750017, 10.955419921874991], [0.49267578125, 10.954980468749994], [0.49072265625, 10.978173828124994], [0.484179687500017, 10.991992187499989], [0.159277343750006, 11.069628906249989], [-0.068603515625, 11.115625], [-0.299462890624994, 11.166894531249994], [-0.312548828124989, 11.118896484375], [-0.345751953124989, 11.087939453124989], [-0.395605468749977, 11.085693359375], [-0.430322265624994, 11.09326171875], [-0.453515625, 11.056298828124994], [-0.49169921875, 11.007617187499989], [-0.545214843749989, 10.983691406249989], [-0.59765625, 10.953662109374989], [-0.627148437499983, 10.927392578124994], [-0.648535156249977, 10.9267578125], [-0.701416015625, 10.988964843749997], [-0.771582031249977, 10.995263671874994], [-0.902929687499977, 10.984716796874991], [-0.961816406249994, 11.001708984375], [-1.04248046875, 11.010058593749989], [-1.232617187499983, 10.997216796874994], [-1.536767578124994, 11.02265625], [-1.586474609374989, 11.008886718749991], [-1.599658203124989, 10.99765625], [-1.900634765625, 10.994677734374989], [-2.23193359375, 10.99140625], [-2.509179687499994, 10.988720703124997], [-2.751660156249983, 10.986376953124989], [-2.752099609374994, 10.996972656249994], [-2.829931640624977, 10.998388671874991], [-2.838574218749983, 10.977490234374997], [-2.907324218749977, 10.727978515624997], [-2.914892578124977, 10.592333984374989], [-2.87841796875, 10.507958984374994], [-2.837207031249989, 10.454638671874989], [-2.791162109374994, 10.432421874999989], [-2.78662109375, 10.401904296874989], [-2.823437499999983, 10.362939453124994], [-2.8203125, 10.322851562499991], [-2.777099609375, 10.281591796874991], [-2.766503906249994, 10.238183593749994], [-2.788476562499994, 10.192578125], [-2.783203125, 10.083105468749991], [-2.750732421875, 9.90966796875], [-2.749804687499989, 9.797216796874991], [-2.780517578125, 9.745849609375], [-2.765966796874977, 9.658056640624991], [-2.706201171874994, 9.533935546875], [-2.695849609374989, 9.481347656249994], [-2.7171875, 9.457128906249991], [-2.7666015625, 9.424707031249994], [-2.816748046874977, 9.425830078124989], [-2.875146484374994, 9.500927734374997], [-2.90087890625, 9.534619140624997], [-2.948144531249994, 9.610742187499994], [-2.98828125, 9.687353515624991], [-3.042626953124994, 9.720898437499997], [-3.095800781249977, 9.752099609374994], [-3.160693359374989, 9.849169921874989], [-3.223535156249994, 9.895458984374997], [-3.289697265624994, 9.882226562499994], [-3.386279296874989, 9.900292968749994], [-3.581152343749977, 9.92431640625], [-3.79062, 9.9171875], [-3.877636718749983, 9.894921875], [-3.963476562499977, 9.859619140625], [-4.18115234375, 9.78173828125], [-4.267187499999977, 9.743261718749991], [-4.332226562499983, 9.645703125], [-4.406201171874983, 9.647998046874989], [-4.480273437499989, 9.679248046874989], [-4.526611328125, 9.723486328124991], [-4.625830078124977, 9.713574218749997], [-4.721777343749977, 9.756542968749997], [-4.814453125, 9.841162109374991], [-4.882714843749994, 9.868945312499989], [-4.969921874999983, 9.930078125], [-4.994042968749994, 10.046484375], [-5.04931640625, 10.128320312499994], [-5.099853515625, 10.241601562499994], [-5.17529296875, 10.292626953124994], [-5.262304687499977, 10.319677734374991], [-5.382275390624983, 10.314013671874989], [-5.461279296874977, 10.359570312499997], [-5.523535156249977, 10.426025390625], [-5.507031249999983, 10.483447265624989], [-5.47900390625, 10.565087890624994], [-5.475683593749977, 10.643945312499994], [-5.457080078124989, 10.771386718749994], [-5.468554687499989, 10.931054687499994], [-5.490478515625, 11.042382812499994], [-5.42421875, 11.088720703124991], [-5.347412109375, 11.130273437499994], [-5.299853515624989, 11.205957031249994], [-5.250244140625, 11.375781249999989], [-5.229394531249994, 11.5224609375], [-5.244775390624994, 11.576757812499991], [-5.270312499999989, 11.619873046875], [-5.29052734375, 11.683300781249997], [-5.302001953125, 11.760449218749997], [-5.288134765624989, 11.827929687499989], [-5.230175781249983, 11.890283203124994], [-5.157519531249989, 11.9423828125], [-5.105908203124983, 11.967529296875], [-4.968994140625, 11.993310546874994], [-4.797949218749977, 12.032128906249994], [-4.699316406249977, 12.076171875], [-4.627246093749989, 12.120214843749991], [-4.5869140625, 12.155029296875], [-4.546044921874994, 12.226464843749994], [-4.479882812499994, 12.281787109374989], [-4.4287109375, 12.337597656249997], [-4.421582031249983, 12.493066406249994], [-4.421923828124989, 12.581591796874989], [-4.459863281249994, 12.63037109375], [-4.480615234374994, 12.672216796874991], [-4.227099609374989, 12.793701171875], [-4.225244140624994, 12.879492187499991], [-4.260644531249994, 12.975341796875], [-4.310253906249983, 13.052490234375], [-4.328710937499977, 13.119042968749994], [-4.258691406249994, 13.197314453124989], [-4.196191406249994, 13.256152343750003], [-4.151025390624994, 13.306201171875003], [-4.051171875, 13.382421875], [-3.947314453124989, 13.402197265624991], [-3.853466796874983, 13.37353515625], [-3.575781249999977, 13.194189453124991], [-3.527636718749989, 13.182714843749991], [-3.469921874999983, 13.196386718749991], [-3.396728515625, 13.243701171875003], [-3.3017578125, 13.28076171875], [-3.266748046874994, 13.40078125], [-3.270166015624994, 13.577441406250003], [-3.248632812499977, 13.658349609374994], [-3.198437499999983, 13.6728515625], [-3.038671874999977, 13.639111328124997], [-2.997216796874994, 13.637109375], [-2.950830078124994, 13.6484375], [-2.917089843749977, 13.679492187500003], [-2.918505859374989, 13.736376953125003], [-2.925878906249977, 13.786767578124994], [-2.873925781249994, 13.950732421875003], [-2.778857421874989, 14.07373046875], [-2.586718749999989, 14.227587890625003], [-2.526904296874989, 14.25830078125], [-2.457226562499983, 14.274121093749997], [-2.113232421874983, 14.16845703125], [-2.05712890625, 14.194628906250003], [-1.973046875, 14.45654296875], [-1.879785156249994, 14.481494140625003], [-1.767773437499983, 14.486035156249997], [-1.695068359375, 14.508496093749997], [-1.657324218749977, 14.526806640624997], [-1.49365234375, 14.626074218749991], [-1.204980468749994, 14.761523437500003], [-1.049560546875, 14.81953125], [-1.019189453124994, 14.841357421875003], [-0.907958984375, 14.937402343749994], [-0.760449218749983, 15.047753906249994], [-0.666455078124983, 15.069775390624997], [-0.536523437499994, 15.077880859375], [-0.454492187499994, 15.059667968749991], [-0.432275390624994, 15.028515625], [-0.405419921874994, 15.0125], [-0.235888671874989, 15.059423828124991], [0.00732421875, 14.984814453124997], [0.217480468750011, 14.911474609374991]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;B.F.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;BFA&quot;, &quot;adm0_a3_is&quot;: &quot;BFA&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BFA&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Burkina Faso&quot;, &quot;brk_a3&quot;: &quot;BFA&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Burkina Faso&quot;, &quot;continent&quot;: &quot;Africa&quot;, &quot;economy&quot;: &quot;7. Least developed region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Burkina Faso&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 17820, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Burkina Faso&quot;, &quot;gu_a3&quot;: &quot;BFA&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;5. Low income&quot;, &quot;iso_a2&quot;: &quot;BF&quot;, &quot;iso_a3&quot;: &quot;BFA&quot;, &quot;iso_n3&quot;: &quot;854&quot;, &quot;labelrank&quot;: 3, &quot;lastcensus&quot;: 2006, &quot;level&quot;: 2, &quot;long_len&quot;: 12, &quot;mapcolor13&quot;: 11, &quot;mapcolor7&quot;: 2, &quot;mapcolor8&quot;: 1, &quot;mapcolor9&quot;: 5, &quot;name&quot;: &quot;Burkina Faso&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 12, &quot;name_long&quot;: &quot;Burkina Faso&quot;, &quot;name_sort&quot;: &quot;Burkina Faso&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 15746232, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BF&quot;, &quot;region_un&quot;: &quot;Africa&quot;, &quot;region_wb&quot;: &quot;Sub-Saharan Africa&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BFA&quot;, &quot;sovereignt&quot;: &quot;Burkina Faso&quot;, &quot;su_a3&quot;: &quot;BFA&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Western Africa&quot;, &quot;subunit&quot;: &quot;Burkina Faso&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;854&quot;, &quot;wb_a2&quot;: &quot;BF&quot;, &quot;wb_a3&quot;: &quot;BFA&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[91.94921875000003, 21.50805664062503], [91.88886718750004, 21.50332031250005], [91.85947265625012, 21.532958984375057], [91.8732421875001, 21.574414062499955], [91.85703125000006, 21.70878906249999], [91.90771484374997, 21.722949218750017], [91.933984375, 21.722167968750057], [91.9486328125, 21.682568359374983], [91.96191406250003, 21.609765624999966], [91.94921875000003, 21.50805664062503]]], [[[91.87382812500002, 21.832128906249977], [91.8375976562501, 21.750244140625], [91.8197265625, 21.809814453125057], [91.83515625000004, 21.885351562499977], [91.85068359375012, 21.927050781250045], [91.86132812499997, 21.926660156249966], [91.8825195312501, 21.883642578125006], [91.87382812500002, 21.832128906249977]]], [[[91.15078125000005, 22.175195312499966], [91.04472656250002, 22.10517578125001], [91.0794921875, 22.519726562499983], [91.15830078125006, 22.36542968750001], [91.17822265624997, 22.28300781249999], [91.15078125000005, 22.175195312499966]]], [[[91.55673828125006, 22.38222656250005], [91.51044921875004, 22.352783203125], [91.46689453125006, 22.37841796874997], [91.41132812500004, 22.475683593750006], [91.43886718750005, 22.59882812500004], [91.45605468749997, 22.61650390624999], [91.48398437500006, 22.576562500000023], [91.52304687500006, 22.49072265625003], [91.54833984374997, 22.425390625000063], [91.55673828125006, 22.38222656250005]]], [[[90.77763671875007, 22.089306640624983], [90.60361328125006, 22.05419921875], [90.51503906250005, 22.06513671875001], [90.68046875000007, 22.327490234375006], [90.67490234375012, 22.44497070312505], [90.64921875000002, 22.540673828124994], [90.56494140624997, 22.617626953124955], [90.56035156250002, 22.672558593749955], [90.52255859375006, 22.74750976562504], [90.50292968749997, 22.835351562499994], [90.59648437500002, 22.863525390625057], [90.672265625, 22.81318359375001], [90.68300781250005, 22.785302734375023], [90.69921874999997, 22.71352539062505], [90.73691406250012, 22.63872070312499], [90.86816406250003, 22.48486328125], [90.86582031250006, 22.390576171874983], [90.82988281250007, 22.159960937500074], [90.77763671875007, 22.089306640624983]]], [[[90.6417968750001, 22.962988281250063], [90.6595703125, 22.920019531250006], [90.60390625, 22.94555664062497], [90.56230468750007, 22.975439453125034], [90.53632812500004, 23.01489257812497], [90.57988281250002, 23.03544921874999], [90.6417968750001, 22.962988281250063]]], [[[88.7619140625001, 26.279394531249977], [88.82802734375, 26.25219726562503], [88.89648437499997, 26.26049804687503], [88.94072265625002, 26.24536132812497], [88.97041015625004, 26.250878906250023], [88.98154296875006, 26.28613281250003], [88.94824218749997, 26.337988281250006], [88.92412109375002, 26.375097656250034], [88.95195312500002, 26.412109375], [88.98339843750003, 26.41953125], [89.01865234375012, 26.410253906249977], [89.06679687500005, 26.37690429687504], [89.101953125, 26.308349609375], [89.10830078125005, 26.202246093749977], [89.18642578125, 26.10595703125], [89.28925781250004, 26.03759765625], [89.36972656250012, 26.006103515625], [89.46689453125012, 25.983544921875023], [89.54990234375006, 26.005273437499994], [89.59140625000006, 26.072412109374994], [89.57275390625003, 26.13232421875003], [89.58574218750007, 26.186035156250057], [89.61904296875, 26.215673828125063], [89.67089843750003, 26.21381835937504], [89.70986328125005, 26.171240234375063], [89.8229492187501, 25.94140625000003], [89.79960937500002, 25.839599609375], [89.82490234375004, 25.56015625], [89.7962890625, 25.375830078125006], [89.80087890625012, 25.33613281250001], [89.81406250000006, 25.305371093749955], [89.83330078125007, 25.292773437500045], [89.86630859375012, 25.293164062499955], [90.00380859375, 25.258349609375074], [90.11962890625003, 25.21997070312497], [90.25039062500005, 25.184960937500023], [90.43935546875, 25.15771484375], [90.55527343750006, 25.166601562500034], [90.61308593750002, 25.16772460937497], [90.7301757812501, 25.15947265624999], [91.03828125000004, 25.17407226562503], [91.29316406250004, 25.17797851562503], [91.39667968750004, 25.151611328125], [91.4796875000001, 25.142138671875017], [91.76347656250002, 25.160644531250057], [92.04970703125005, 25.16948242187499], [92.20468750000012, 25.110937500000063], [92.3734375, 25.01513671874997], [92.46835937500006, 24.94414062499999], [92.48544921875012, 24.90332031250003], [92.475, 24.868505859375034], [92.44316406250002, 24.849414062500074], [92.38496093750004, 24.848779296875023], [92.25126953125007, 24.895068359375045], [92.22832031250002, 24.88134765625], [92.23056640625012, 24.786230468749977], [92.22666015625012, 24.77099609374997], [92.19804687500007, 24.68574218750001], [92.11748046875002, 24.493945312500017], [92.10195312500005, 24.408056640625034], [92.08505859375006, 24.38618164062501], [92.06416015625004, 24.374365234375006], [92.00107421875006, 24.370898437500017], [91.95166015624997, 24.356738281250045], [91.93105468750005, 24.325537109375006], [91.89902343750006, 24.26069335937504], [91.87695312500003, 24.19531250000003], [91.84619140624997, 24.17529296875003], [91.77246093749997, 24.210644531249955], [91.72656250000003, 24.20507812499997], [91.66875, 24.190087890625023], [91.61113281250007, 24.15283203125], [91.57138671875012, 24.106591796874994], [91.52636718750003, 24.090771484374955], [91.39267578125006, 24.10009765625], [91.36708984375, 24.09350585937497], [91.35019531250012, 24.06049804687501], [91.33642578124997, 24.01879882812503], [91.23203125000006, 23.92045898437499], [91.19248046875012, 23.762890624999955], [91.16044921875007, 23.66064453125], [91.16552734374997, 23.58105468750003], [91.25380859375, 23.373632812500063], [91.31523437500007, 23.104394531249994], [91.33886718750003, 23.077001953125006], [91.359375, 23.06835937500003], [91.36865234375003, 23.074560546875063], [91.36679687500012, 23.130468749999977], [91.37060546874997, 23.19799804687497], [91.39941406249997, 23.2138671875], [91.43623046875004, 23.19990234375001], [91.4713867187501, 23.141259765624966], [91.51123046875003, 23.03369140625], [91.55351562500002, 22.991552734375006], [91.61953125, 22.97968750000001], [91.69492187500006, 23.004833984374983], [91.75097656250003, 23.053515625000017], [91.773828125, 23.106103515624994], [91.75791015625012, 23.209814453124977], [91.75419921875007, 23.287304687499955], [91.79003906249997, 23.361035156249983], [91.9191406250001, 23.471044921875006], [91.937890625, 23.504687500000017], [91.92949218750007, 23.598242187499977], [91.92958984375, 23.68598632812501], [91.97851562500003, 23.691992187499977], [92.04404296875006, 23.677783203125017], [92.12705078125006, 23.720996093750045], [92.15234374999997, 23.721875], [92.18710937500006, 23.675537109375], [92.24609375000003, 23.683593750000057], [92.28935546875002, 23.492480468750017], [92.3341796875001, 23.323828125000034], [92.33378906250002, 23.242382812499955], [92.3412109375, 23.06982421874997], [92.36162109375002, 22.929003906250074], [92.39316406250012, 22.897021484375045], [92.43046875000007, 22.82182617187499], [92.46445312500006, 22.734423828125045], [92.49140625000004, 22.685400390625006], [92.50957031250002, 22.525683593750045], [92.53183593750012, 22.410302734374994], [92.5612304687501, 22.04804687500001], [92.57490234375004, 21.978076171875045], [92.58281250000002, 21.940332031249994], [92.58427734375007, 21.609033203124994], [92.5934570312501, 21.46733398437499], [92.62529296875007, 21.35073242187505], [92.63164062500002, 21.306201171875045], [92.59980468750004, 21.270166015624966], [92.56855468750004, 21.263330078124994], [92.53916015625012, 21.31982421874997], [92.471875, 21.362988281249983], [92.37265625000012, 21.409033203125034], [92.33056640624997, 21.439794921874977], [92.2796875, 21.427587890624977], [92.2082031250001, 21.357861328124983], [92.17958984375005, 21.293115234375023], [92.19199218750006, 21.202246093750006], [92.21474609375, 21.11269531250005], [92.26445312500002, 21.06147460937501], [92.26845703125005, 21.004687500000074], [92.28623046875012, 20.93159179687501], [92.3119140625, 20.86445312500001], [92.32412109375, 20.791845703125063], [92.30781250000004, 20.790429687500023], [92.24814453125006, 20.883593750000017], [92.19462890625002, 20.984277343749994], [92.0560546875, 21.1748046875], [92.01093750000004, 21.516259765625023], [92.0080078125001, 21.684765624999983], [91.91318359375012, 21.883056640625057], [91.85, 22.157373046874994], [91.82480468750006, 22.228662109375023], [91.85781250000005, 22.317333984374983], [91.86337890625012, 22.350488281249966], [91.8454101562501, 22.343115234374977], [91.7970703125001, 22.297460937500006], [91.73408203125004, 22.406689453124983], [91.69296875000012, 22.504785156249966], [91.5296875, 22.707666015624994], [91.48212890625004, 22.79741210937499], [91.48007812500006, 22.884814453125045], [91.4095703125, 22.797021484374994], [91.31376953125002, 22.735156250000017], [91.2162109375, 22.642236328124994], [91.15136718749997, 22.614062500000017], [90.94560546875002, 22.597021484375034], [90.82675781250012, 22.721386718749955], [90.65625, 23.025488281250006], [90.63359375000002, 23.09423828124997], [90.65605468750007, 23.273046874999977], [90.615625, 23.44233398437501], [90.61611328125, 23.531640625], [90.60400390624997, 23.59135742187499], [90.57343750000004, 23.57812], [90.56162109375012, 23.537109375000057], [90.5680664062501, 23.47426757812505], [90.55566406249997, 23.42153320312505], [90.40800781250007, 23.43188476562503], [90.26914062500012, 23.455859375000017], [90.39150390625, 23.36694335937503], [90.52275390625002, 23.346142578124955], [90.59091796875012, 23.266406250000045], [90.59921875000006, 23.20415039062499], [90.5951171875, 23.133935546874994], [90.52773437500005, 23.08496093750003], [90.4660156250001, 23.05390625000001], [90.47753906250003, 22.98676757812501], [90.55224609374997, 22.904882812500034], [90.4616210937501, 22.88178710937504], [90.4369140625, 22.828173828125045], [90.43505859374997, 22.751904296874955], [90.48066406250004, 22.684667968750034], [90.49843750000005, 22.63481445312499], [90.48740234375006, 22.588720703125006], [90.53173828124997, 22.539306640625], [90.59550781250002, 22.435839843750045], [90.61611328125, 22.362158203125034], [90.58945312500012, 22.258447265624966], [90.55283203125012, 22.218164062500023], [90.49414062499997, 22.17890625000001], [90.35576171875002, 22.04824218750005], [90.28818359375012, 21.8994140625], [90.23056640625006, 21.82978515625004], [90.15878906250012, 21.816845703124983], [90.13076171875, 21.84741210937497], [90.07119140625005, 21.887255859375017], [90.07001953125004, 21.959912109374983], [90.08789062499997, 22.017480468749994], [90.20957031250006, 22.156591796875006], [90.14345703125, 22.13789062500001], [90.06855468750004, 22.098193359375017], [89.95419921875006, 22.022851562500023], [89.91806640625012, 22.11616210937501], [89.89404296874997, 22.202587890624955], [89.89384765625007, 22.308398437500017], [89.98515625000002, 22.466406250000063], [89.88183593749997, 22.387597656249994], [89.85322265625004, 22.288964843749966], [89.86582031250012, 22.173046874999983], [89.85253906249997, 22.090917968750034], [89.81191406250005, 21.983496093750006], [89.75683593750003, 21.919042968750006], [89.66777343750002, 21.87768554687503], [89.628125, 21.814160156249955], [89.56855468750004, 21.767431640625034], [89.5666015625001, 21.860595703125], [89.54746093750006, 21.983691406250045], [89.48320312500007, 22.275537109374994], [89.46933593750006, 22.212939453125017], [89.50253906250006, 22.031884765624994], [89.50058593750006, 21.914355468750045], [89.45195312500007, 21.821093750000045], [89.35371093750004, 21.72109375], [89.27861328125002, 21.706982421874983], [89.23427734375005, 21.72236328125001], [89.16708984375006, 21.784277343750006], [89.09394531250004, 21.872753906249983], [89.08164062500006, 22.014941406250017], [89.05146484375004, 22.09316406250005], [89.05585937500004, 22.18623046875001], [89.05, 22.274609374999983], [88.97148437500007, 22.510937499999983], [88.92070312500002, 22.632031249999955], [88.92695312500004, 22.67114257812503], [88.92343750000006, 22.68754882812499], [88.89970703125002, 22.843505859375057], [88.86699218750002, 22.938867187500023], [88.85058593749997, 23.040527343750057], [88.928125, 23.186621093750063], [88.89707031250012, 23.21040039062501], [88.80761718749997, 23.22968750000004], [88.72441406250002, 23.254980468750034], [88.70400390625005, 23.292822265625034], [88.74082031250006, 23.436621093750006], [88.69765625, 23.493017578125034], [88.63574218749997, 23.55], [88.61640625000004, 23.57275390625003], [88.59599609375007, 23.602197265624994], [88.56738281249997, 23.674414062500034], [88.62255859374997, 23.82636718750001], [88.69980468750006, 24.002539062500006], [88.71376953125, 24.069628906250017], [88.72656250000003, 24.186230468749955], [88.7335937500001, 24.23090820312501], [88.72353515625, 24.27490234375], [88.64228515625004, 24.325976562500017], [88.49853515625003, 24.34663085937504], [88.39697265625003, 24.389257812500006], [88.3375, 24.45385742187503], [88.28710937500003, 24.47973632812497], [88.225, 24.460644531249983], [88.14550781250003, 24.485791015624955], [88.07910156249997, 24.549902343750063], [88.02343750000003, 24.62783203125005], [88.03027343749997, 24.66445312500005], [88.0451171875001, 24.713037109374994], [88.1498046875, 24.914648437500034], [88.1888671875, 24.92060546875001], [88.27949218750004, 24.881933593750034], [88.31337890625005, 24.8818359375], [88.37294921875, 24.961523437499977], [88.45625, 25.18842773437504], [88.57382812500006, 25.187890625], [88.67753906250007, 25.180468750000017], [88.74755859375003, 25.168945312500057], [88.81728515625, 25.17622070312504], [88.89013671875003, 25.19438476562499], [88.92978515625012, 25.222998046875063], [88.95166015625003, 25.25927734374997], [88.94414062500002, 25.290771484375], [88.85478515625002, 25.333544921875017], [88.82031250000003, 25.365527343750045], [88.79541015624997, 25.45625], [88.76914062500006, 25.490478515625], [88.59345703125004, 25.49531250000001], [88.50244140624997, 25.537011718749994], [88.4523437500001, 25.574414062499983], [88.36308593750002, 25.698193359374955], [88.25292968749997, 25.78979492187497], [88.14746093749997, 25.811425781250023], [88.1066406250001, 25.841113281250045], [88.08457031250006, 25.888232421875045], [88.0973632812501, 25.956347656250074], [88.12900390625012, 26.018212890624966], [88.15078125000005, 26.08715820312497], [88.23515625000007, 26.178076171875034], [88.33398437499997, 26.257519531249955], [88.37802734375006, 26.312011718750057], [88.44042968749997, 26.369482421875034], [88.44785156250006, 26.401025390624966], [88.43671875000004, 26.437109375000034], [88.38623046875003, 26.471533203125034], [88.35146484375005, 26.482568359374966], [88.3458984375001, 26.504785156249966], [88.36992187500002, 26.564111328124994], [88.41816406250004, 26.57153320312497], [88.51826171875004, 26.517773437499955], [88.62011718749997, 26.43066406249997], [88.68066406249997, 26.352978515624955], [88.68281250000004, 26.291699218749983], [88.72216796874997, 26.281835937500034], [88.7619140625001, 26.279394531249977]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Bang.&quot;, &quot;abbrev_len&quot;: 5, &quot;adm0_a3&quot;: &quot;BGD&quot;, &quot;adm0_a3_is&quot;: &quot;BGD&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BGD&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Bangladesh&quot;, &quot;brk_a3&quot;: &quot;BGD&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Bangladesh&quot;, &quot;continent&quot;: &quot;Asia&quot;, &quot;economy&quot;: &quot;7. Least developed region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;People\\u0027s Republic of Bangladesh&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 224000, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Bangladesh&quot;, &quot;gu_a3&quot;: &quot;BGD&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;5. Low income&quot;, &quot;iso_a2&quot;: &quot;BD&quot;, &quot;iso_a3&quot;: &quot;BGD&quot;, &quot;iso_n3&quot;: &quot;050&quot;, &quot;labelrank&quot;: 3, &quot;lastcensus&quot;: 2011, &quot;level&quot;: 2, &quot;long_len&quot;: 10, &quot;mapcolor13&quot;: 7, &quot;mapcolor7&quot;: 3, &quot;mapcolor8&quot;: 4, &quot;mapcolor9&quot;: 7, &quot;name&quot;: &quot;Bangladesh&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 10, &quot;name_long&quot;: &quot;Bangladesh&quot;, &quot;name_sort&quot;: &quot;Bangladesh&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 156050883, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BD&quot;, &quot;region_un&quot;: &quot;Asia&quot;, &quot;region_wb&quot;: &quot;South Asia&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BGD&quot;, &quot;sovereignt&quot;: &quot;Bangladesh&quot;, &quot;su_a3&quot;: &quot;BGD&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Southern Asia&quot;, &quot;subunit&quot;: &quot;Bangladesh&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;050&quot;, &quot;wb_a2&quot;: &quot;BD&quot;, &quot;wb_a3&quot;: &quot;BGD&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[28.585351562500023, 43.742236328124996], [28.561816406250017, 43.501318359375], [28.465429687500006, 43.389306640624994], [28.319628906250017, 43.42685546875], [28.133691406250023, 43.39560546875], [28.03515625, 43.26826171875], [27.979296875000017, 43.230517578124996], [27.92890625000001, 43.1861328125], [27.896484375, 43.020703125], [27.88886718750001, 42.74970703125], [27.818359375, 42.716650390625], [27.753710937500017, 42.70654296875], [27.484765625000023, 42.468066406249996], [27.639550781250023, 42.4009765625], [27.70820312500001, 42.349951171875], [27.821386718750006, 42.2080078125], [27.982714843750017, 42.047412109374996], [28.014453125000017, 41.969042968749996], [27.879199218750017, 41.986621093749996], [27.831933593750023, 41.981298828125], [27.801660156250023, 41.95654296875], [27.738867187500006, 41.9615234375], [27.6611328125, 41.961328125], [27.579882812500017, 41.932910156249996], [27.53486328125001, 41.920800781249994], [27.47480468750001, 41.946875], [27.362890625, 42.025048828124994], [27.294921875, 42.079541015625], [27.24433593750001, 42.09326171875], [27.193359375, 42.077099609375], [27.01171875, 42.058642578124996], [26.96875, 42.02685546875], [26.884863281250006, 41.991845703124994], [26.800390625, 41.975146484374996], [26.67919921875, 41.963330078125], [26.615332031250006, 41.964892578124996], [26.5796875, 41.94794921875], [26.549707031250023, 41.896728515625], [26.529296875, 41.8466796875], [26.51142578125001, 41.8263671875], [26.3603515625, 41.8015625], [26.327246093750006, 41.772802734375], [26.31796875, 41.744677734374996], [26.320898437500006, 41.716552734375], [26.200585937500023, 41.743798828124994], [26.107421875, 41.72568359375], [26.085546875, 41.704150390624996], [26.066015625, 41.673242187499994], [26.076953125000017, 41.640185546874996], [26.111230468750023, 41.608203125], [26.1435546875, 41.521533203124996], [26.155175781250023, 41.434863281249996], [26.135351562500006, 41.3857421875], [26.06640625, 41.35068359375], [25.92333984375, 41.311914062499994], [25.784960937500017, 41.330419921875], [25.723925781250017, 41.3150390625], [25.621484375000023, 41.310107421874996], [25.52705078125001, 41.2998046875], [25.381933593750006, 41.26435546875], [25.25117187500001, 41.243554687499994], [25.133398437500006, 41.315771484375], [24.993554687500023, 41.364990234375], [24.846875, 41.39423828125], [24.795800781250023, 41.372900390625], [24.773730468750017, 41.356103515624994], [24.65107421875001, 41.419970703124996], [24.595996093750017, 41.442724609375], [24.5693359375, 41.4673828125], [24.51826171875001, 41.552539062499996], [24.487890625, 41.555224609374996], [24.38671875, 41.52353515625], [24.289453125000023, 41.525048828124994], [24.230371093750023, 41.530810546874996], [24.056054687500023, 41.527246093749994], [24.03291015625001, 41.469091796875], [24.011328125, 41.46005859375], [23.973535156250023, 41.452294921874994], [23.880859375, 41.455957031249994], [23.762304687500006, 41.412988281249994], [23.635156250000023, 41.386767578124996], [23.53583984375001, 41.386035156249996], [23.433398437500017, 41.398730468749996], [23.3720703125, 41.3896484375], [23.23984375, 41.3849609375], [23.15595703125001, 41.322070312499996], [23.02558593750001, 41.325634765625], [22.916015625, 41.336279296875], [22.9296875, 41.356103515624994], [22.951464843750017, 41.605615234374994], [23.005664062500017, 41.716943359374994], [23.00361328125001, 41.73984375], [22.991992187500017, 41.757177734375], [22.943945312500006, 41.77509765625], [22.9091796875, 41.835205078125], [22.836816406250023, 41.993603515625], [22.79609375000001, 42.025683593749996], [22.68232421875001, 42.059130859374996], [22.58271484375001, 42.104833984375], [22.49824218750001, 42.165087890624996], [22.344042968750017, 42.31396484375], [22.42207031250001, 42.328857421875], [22.445703125000023, 42.359130859375], [22.523535156250006, 42.440966796874996], [22.53242187500001, 42.481201171875], [22.524218750000017, 42.50390625], [22.472070312500023, 42.543310546875], [22.43623046875001, 42.6291015625], [22.463281250000023, 42.70947265625], [22.465625, 42.75078125], [22.439257812500017, 42.791650390624994], [22.466796875, 42.84248046875], [22.522753906250017, 42.8703125], [22.55810546875, 42.878466796874996], [22.706152343750006, 42.883935546874994], [22.799902343750006, 42.985742187499994], [22.856835937500023, 43.01826171875], [22.91523437500001, 43.075976562499996], [22.942285156250023, 43.097070312499994], [22.96796875000001, 43.142041015625], [22.976855468750017, 43.18798828125], [22.85957031250001, 43.25234375], [22.819726562500023, 43.300732421875], [22.767578125, 43.354150390624994], [22.69697265625001, 43.391064453125], [22.554589843750023, 43.454492187499994], [22.499121093750006, 43.518847656249996], [22.47412109375, 43.60224609375], [22.436328125000017, 43.665478515625], [22.394824218750017, 43.706640625], [22.38691406250001, 43.740136718749994], [22.36962890625, 43.781298828124996], [22.36542968750001, 43.862109375], [22.399023437500006, 43.96953125], [22.420800781250023, 44.007421875], [22.469042968750017, 44.018017578125], [22.597460937500017, 44.07529296875], [22.603417968750023, 44.148583984374994], [22.6265625, 44.194091796875], [22.66748046875, 44.22021484375], [22.705078125, 44.23779296875], [22.775195312500017, 44.195214843749994], [22.945410156250006, 44.127294921875], [23.02851562500001, 44.077978515625], [23.0244140625, 44.047216796875], [22.9853515625, 44.016992187499994], [22.91132812500001, 43.987207031249994], [22.868261718750006, 43.947900390624994], [22.8564453125, 43.8990234375], [22.86767578125, 43.864550781249996], [22.919042968750006, 43.83447265625], [23.224609375, 43.873876953125], [23.534570312500023, 43.853564453124996], [23.95078125, 43.786669921874996], [24.22675781250001, 43.763476562499996], [24.430566406250023, 43.794384765625], [24.808203125, 43.738427734374994], [25.15966796875, 43.686328125], [25.4970703125, 43.670800781249994], [25.686132812500006, 43.711767578125], [25.81884765625, 43.766845703125], [25.933398437500017, 43.870556640625], [26.2158203125, 44.007275390625], [26.4892578125, 44.083984375], [26.847753906250006, 44.14619140625], [27.0869140625, 44.167382812499994], [27.120703125, 44.146142578124994], [27.425390625, 44.0205078125], [27.56103515625, 44.020068359374996], [27.6708984375, 43.997802734375], [27.710742187500017, 43.964599609375], [27.738574218750017, 43.956298828125], [27.88427734375, 43.987353515624996], [27.94892578125001, 43.918603515624994], [28.05, 43.822412109374994], [28.221972656250017, 43.772851562499994], [28.37519531250001, 43.744775390624994], [28.4234375, 43.740478515625], [28.585351562500023, 43.742236328124996]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Bulg.&quot;, &quot;abbrev_len&quot;: 5, &quot;adm0_a3&quot;: &quot;BGR&quot;, &quot;adm0_a3_is&quot;: &quot;BGR&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BGR&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Bulgaria&quot;, &quot;brk_a3&quot;: &quot;BGR&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Bulgaria&quot;, &quot;continent&quot;: &quot;Europe&quot;, &quot;economy&quot;: &quot;2. Developed region: nonG7&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Republic of Bulgaria&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 93750, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Bulgaria&quot;, &quot;gu_a3&quot;: &quot;BGR&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;3. Upper middle income&quot;, &quot;iso_a2&quot;: &quot;BG&quot;, &quot;iso_a3&quot;: &quot;BGR&quot;, &quot;iso_n3&quot;: &quot;100&quot;, &quot;labelrank&quot;: 4, &quot;lastcensus&quot;: 2011, &quot;level&quot;: 2, &quot;long_len&quot;: 8, &quot;mapcolor13&quot;: 8, &quot;mapcolor7&quot;: 4, &quot;mapcolor8&quot;: 5, &quot;mapcolor9&quot;: 1, &quot;name&quot;: &quot;Bulgaria&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 8, &quot;name_long&quot;: &quot;Bulgaria&quot;, &quot;name_sort&quot;: &quot;Bulgaria&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 7204687, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BG&quot;, &quot;region_un&quot;: &quot;Europe&quot;, &quot;region_wb&quot;: &quot;Europe \\u0026 Central Asia&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BGR&quot;, &quot;sovereignt&quot;: &quot;Bulgaria&quot;, &quot;su_a3&quot;: &quot;BGR&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Eastern Europe&quot;, &quot;subunit&quot;: &quot;Bulgaria&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;100&quot;, &quot;wb_a2&quot;: &quot;BG&quot;, &quot;wb_a3&quot;: &quot;BGR&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[50.60722656250002, 25.883105468750003], [50.57490234375001, 25.806787109374994], [50.544042968750006, 25.83349609375], [50.465917968750006, 25.965527343749997], [50.48945312500001, 26.058447265625], [50.45244140625002, 26.190820312499994], [50.46992187500001, 26.228955078124997], [50.5640625, 26.246435546875], [50.5859375, 26.24072265625], [50.55781250000001, 26.198291015624996], [50.60976562500002, 26.124462890624997], [50.61748046875002, 26.00234375], [50.60722656250002, 25.883105468750003]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Bahr.&quot;, &quot;abbrev_len&quot;: 5, &quot;adm0_a3&quot;: &quot;BHR&quot;, &quot;adm0_a3_is&quot;: &quot;BHR&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BHR&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Bahrain&quot;, &quot;brk_a3&quot;: &quot;BHR&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Bahrain&quot;, &quot;continent&quot;: &quot;Asia&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Kingdom of Bahrain&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 26820, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Bahrain&quot;, &quot;gu_a3&quot;: &quot;BHR&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;2. High income: nonOECD&quot;, &quot;iso_a2&quot;: &quot;BH&quot;, &quot;iso_a3&quot;: &quot;BHR&quot;, &quot;iso_n3&quot;: &quot;048&quot;, &quot;labelrank&quot;: 4, &quot;lastcensus&quot;: 2010, &quot;level&quot;: 2, &quot;long_len&quot;: 7, &quot;mapcolor13&quot;: 9, &quot;mapcolor7&quot;: 1, &quot;mapcolor8&quot;: 1, &quot;mapcolor9&quot;: 1, &quot;name&quot;: &quot;Bahrain&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 7, &quot;name_long&quot;: &quot;Bahrain&quot;, &quot;name_sort&quot;: &quot;Bahrain&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 727785, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BH&quot;, &quot;region_un&quot;: &quot;Asia&quot;, &quot;region_wb&quot;: &quot;Middle East \\u0026 North Africa&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BHR&quot;, &quot;sovereignt&quot;: &quot;Bahrain&quot;, &quot;su_a3&quot;: &quot;BHR&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Western Asia&quot;, &quot;subunit&quot;: &quot;Bahrain&quot;, &quot;tiny&quot;: 2, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;048&quot;, &quot;wb_a2&quot;: &quot;BH&quot;, &quot;wb_a3&quot;: &quot;BHR&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-73.02685546874994, 21.19238281250003], [-73.05874023437497, 21.119042968750023], [-73.16455078125003, 20.979150390625023], [-73.40078125000002, 20.943896484375045], [-73.66103515625, 20.93740234375005], [-73.68115234375003, 20.9755859375], [-73.68681640625002, 21.009130859375006], [-73.66782226562498, 21.061572265625017], [-73.66958007812497, 21.082226562499983], [-73.68037109374995, 21.103320312500017], [-73.58505859374998, 21.125927734374983], [-73.52309570312497, 21.190820312499966], [-73.42451171874995, 21.201757812499977], [-73.3015625, 21.156152343750023], [-73.23535156249997, 21.15449218750004], [-73.13730468749998, 21.204785156249983], [-73.05849609375, 21.313378906249994], [-73.01166992187495, 21.29951171875001], [-73.02685546874994, 21.19238281250003]]], [[[-72.91611328125003, 21.506689453125034], [-73.04931640625, 21.457617187499977], [-73.06269531249995, 21.51533203125001], [-72.994775390625, 21.561621093750034], [-72.91611328125003, 21.506689453125034]]], [[[-73.041015625, 22.429052734375006], [-72.97895507812495, 22.414599609375074], [-72.94521484375002, 22.415625], [-72.83076171874995, 22.385595703125034], [-72.76259765625002, 22.344384765624966], [-72.74726562500001, 22.32739257812497], [-72.78388671875001, 22.290625], [-72.88916015624997, 22.360253906250023], [-72.98105468750003, 22.369238281249977], [-73.11020507812498, 22.367578125], [-73.16191406250002, 22.380712890625006], [-73.12739257812501, 22.45532226562503], [-73.041015625, 22.429052734375006]]], [[[-74.20673828124998, 22.213769531250023], [-74.27690429687499, 22.183691406250006], [-74.261328125, 22.23554687500001], [-74.12675781249993, 22.323388671874966], [-74.05234374999998, 22.40063476562497], [-74.01005859374996, 22.427978515625057], [-73.994970703125, 22.44921875000003], [-73.93598632812498, 22.477734374999955], [-73.906396484375, 22.527441406250063], [-73.91455078124997, 22.568017578124966], [-73.97636718749993, 22.635058593750045], [-73.97548828124994, 22.682275390624994], [-73.95419921874995, 22.71552734375001], [-73.84995117187503, 22.731054687500063], [-73.87749023437496, 22.680761718750034], [-73.83652343749998, 22.538427734374977], [-73.97460937500003, 22.361181640625034], [-74.09291992187497, 22.30625], [-74.20673828124998, 22.213769531250023]]], [[[-74.05751953124997, 22.723486328125034], [-74.03476562500003, 22.70556640625003], [-74.09858398437498, 22.665429687500023], [-74.24223632812502, 22.715087890625], [-74.27460937499995, 22.71166992187503], [-74.303125, 22.764453125000017], [-74.31396484374997, 22.803564453125006], [-74.30703125, 22.83959960937497], [-74.22148437499996, 22.811572265625045], [-74.17539062499998, 22.759912109374994], [-74.05751953124997, 22.723486328125034]]], [[[-74.84047851562494, 22.894335937500017], [-74.846875, 22.868701171875045], [-74.97333984374993, 23.068554687499983], [-75.13212890624996, 23.117089843750023], [-75.22333984374995, 23.165332031250074], [-75.20439453125002, 23.192724609375063], [-75.14111328125, 23.20463867187499], [-75.13056640624998, 23.267919921875006], [-75.15756835937498, 23.33637695312501], [-75.24125976562499, 23.47460937500003], [-75.28823242187497, 23.568261718749994], [-75.309814453125, 23.589843750000057], [-75.31596679687502, 23.668359374999966], [-75.21660156250002, 23.546777343749966], [-75.17529296874994, 23.438671874999983], [-75.1087890625, 23.33281249999999], [-75.06420898437497, 23.150195312500017], [-74.937109375, 23.08813476562497], [-74.84560546875002, 22.999902343750023], [-74.84047851562494, 22.894335937500017]]], [[[-75.66455078124997, 23.45014648437501], [-75.70634765624996, 23.44423828125005], [-75.78100585937497, 23.47065429687501], [-75.95595703125, 23.59228515625], [-76.03710937500003, 23.60278320312503], [-76.01044921875001, 23.671386718750057], [-75.94863281250002, 23.647412109374955], [-75.80751953124997, 23.54252929687499], [-75.75424804687503, 23.489990234375057], [-75.66455078124997, 23.45014648437501]]], [[[-74.42944335937497, 24.068066406249955], [-74.50869140624994, 23.959716796875], [-74.55092773437502, 23.96894531250001], [-74.52690429687502, 24.105078125000034], [-74.47202148437503, 24.126660156249983], [-74.45048828124999, 24.12548828125003], [-74.42944335937497, 24.068066406249955]]], [[[-77.65771484374994, 24.249462890624955], [-77.65615234375, 24.2265625], [-77.75527343750002, 24.163476562500023], [-77.683251953125, 24.118457031250017], [-77.61538085937494, 24.216357421875045], [-77.5615234375, 24.136816406250006], [-77.53203125000002, 23.987646484375006], [-77.53681640624993, 23.96166992187503], [-77.531884765625, 23.93940429687504], [-77.52133789062498, 23.910839843749983], [-77.51875, 23.86943359374999], [-77.57373046875, 23.739160156249994], [-77.77128906249999, 23.752539062499977], [-77.77578124999994, 23.862353515625045], [-77.80629882812494, 23.88354492187503], [-77.85224609374998, 24.040380859375006], [-77.91406249999994, 24.090917968749977], [-77.99990234374994, 24.219824218750063], [-77.950048828125, 24.253076171874994], [-77.88359375, 24.241992187500045], [-77.84956054687495, 24.25751953125001], [-77.757421875, 24.26992187500005], [-77.70146484374999, 24.287548828124983], [-77.65771484374994, 24.249462890624955]]], [[[-75.30839843749999, 24.2], [-75.30175781249994, 24.149169921875057], [-75.36875, 24.159472656250017], [-75.467626953125, 24.139599609374955], [-75.50322265624996, 24.139062500000023], [-75.48105468749998, 24.173876953125017], [-75.41240234374993, 24.220947265625], [-75.40893554687503, 24.265771484374994], [-75.49389648437503, 24.330419921875034], [-75.5927734375, 24.491259765625017], [-75.63906250000002, 24.529394531250063], [-75.66103515624997, 24.58984375000003], [-75.74399414062498, 24.6546875], [-75.72666015625, 24.68935546875005], [-75.709619140625, 24.69750976562503], [-75.65351562499995, 24.68085937500001], [-75.52646484375, 24.449511718750045], [-75.51816406249998, 24.427343750000063], [-75.30839843749999, 24.2]]], [[[-77.34755859375, 25.013867187499983], [-77.46049804687502, 24.99311523437504], [-77.54121093749993, 25.013574218750023], [-77.56191406249997, 25.030029296875], [-77.52734374999994, 25.057666015625045], [-77.45126953125, 25.080712890625023], [-77.32910156249997, 25.083007812500057], [-77.27558593750001, 25.055761718750006], [-77.269140625, 25.043847656249966], [-77.34755859375, 25.013867187499983]]], [[[-77.74384765625001, 24.707421875], [-77.74604492187501, 24.586328125000023], [-77.735107421875, 24.49575195312505], [-77.74521484375, 24.463476562500034], [-77.85341796874994, 24.402929687500063], [-77.881201171875, 24.369091796874983], [-77.98320312500002, 24.33496093749997], [-78.04492187499997, 24.287451171875063], [-78.07583007812497, 24.364648437499966], [-78.1357421875, 24.41235351562503], [-78.14580078125002, 24.493457031250017], [-78.19160156250001, 24.46606445312503], [-78.25761718749996, 24.482763671875063], [-78.36650390624993, 24.544189453125057], [-78.435302734375, 24.627587890624994], [-78.33891601562499, 24.64204101562501], [-78.31899414062494, 24.590234375000023], [-78.24272460937493, 24.65380859375], [-78.26005859375002, 24.68730468749999], [-78.27382812499997, 24.691601562499983], [-78.298828125, 24.753906250000057], [-78.18408203125, 24.917089843750006], [-78.159326171875, 25.022363281250023], [-78.21137695312495, 25.191259765624977], [-78.16279296875001, 25.20234375000001], [-78.03330078125, 25.143115234375045], [-77.97529296874998, 25.084814453125063], [-77.97338867187497, 25.004785156249994], [-77.91894531249997, 24.942822265624983], [-77.84013671874999, 24.794384765624955], [-77.74384765625001, 24.707421875]]], [[[-76.64882812499994, 25.487402343750006], [-76.48422851562498, 25.374609375000034], [-76.34379882812496, 25.33203124999997], [-76.19199218749995, 25.190820312499994], [-76.12661132812497, 25.14052734375005], [-76.11494140624998, 25.09472656250003], [-76.14052734374994, 24.885644531249994], [-76.17465820312498, 24.759765625], [-76.16953125, 24.6494140625], [-76.20517578124998, 24.682080078124983], [-76.24121093749994, 24.754345703124955], [-76.30029296875, 24.7958984375], [-76.319970703125, 24.81767578124999], [-76.21376953124994, 24.822460937499983], [-76.20434570312497, 24.936230468749983], [-76.15253906250001, 25.025976562500063], [-76.160400390625, 25.119335937499983], [-76.28432617187502, 25.222119140624955], [-76.36928710937502, 25.312597656250006], [-76.49990234374997, 25.341552734375057], [-76.62070312499998, 25.43164062500003], [-76.69277343750002, 25.442724609375063], [-76.78066406249997, 25.426855468750006], [-76.74892578125, 25.480566406250034], [-76.72695312499997, 25.551611328125034], [-76.71083984374997, 25.564892578124983], [-76.64882812499994, 25.487402343750006]]], [[[-78.49287109375001, 26.729052734375017], [-78.37172851562502, 26.697949218749983], [-78.30683593749995, 26.70219726562496], [-78.267919921875, 26.72265625000003], [-78.08867187499999, 26.71430664062504], [-77.9439453125, 26.744238281250006], [-77.92246093749998, 26.69111328125001], [-77.926123046875, 26.663378906250045], [-78.23388671875, 26.637353515624994], [-78.51621093749998, 26.55937], [-78.67094726562496, 26.506542968749983], [-78.74365234374994, 26.50068359375004], [-78.79921875, 26.528466796874994], [-78.98564453124996, 26.689501953125045], [-78.935791015625, 26.673437500000063], [-78.79804687500001, 26.582421875], [-78.7125, 26.599023437499994], [-78.63325195312501, 26.6591796875], [-78.62114257812493, 26.704638671875017], [-78.63295898437497, 26.726171875000034], [-78.59711914062493, 26.797949218750006], [-78.49287109375001, 26.729052734375017]]], [[[-77.22563476562496, 25.904199218750023], [-77.246435546875, 25.89545898437501], [-77.33325195312503, 25.99560546874997], [-77.40317382812498, 26.02470703124996], [-77.2939453125, 26.09550781249999], [-77.24677734374998, 26.156347656250034], [-77.24775390625001, 26.2890625], [-77.22109375, 26.361767578124983], [-77.23012695312497, 26.424707031249994], [-77.20605468749994, 26.48896484375004], [-77.238623046875, 26.561132812500006], [-77.32993164062498, 26.61835937500001], [-77.510595703125, 26.845996093750045], [-77.79599609374998, 26.901269531250023], [-77.94375, 26.90356445312503], [-77.86254882812503, 26.940087890625023], [-77.78754882812493, 26.935644531250006], [-77.67211914062497, 26.913916015625006], [-77.53388671874995, 26.903417968750006], [-77.44941406249998, 26.83642578125003], [-77.36875, 26.74760742187496], [-77.29589843749997, 26.71166992187503], [-77.26591796874999, 26.688818359374977], [-77.26928710937497, 26.663037109374983], [-77.25717773437498, 26.638818359375023], [-77.16210937499997, 26.597265624999977], [-77.06635742187501, 26.530175781249994], [-77.03828124999998, 26.333447265624983], [-77.16728515624996, 26.240332031250006], [-77.191015625, 25.955468749999966], [-77.22563476562496, 25.904199218750023]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Bhs.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;BHS&quot;, &quot;adm0_a3_is&quot;: &quot;BHS&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BHS&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;The Bahamas&quot;, &quot;brk_a3&quot;: &quot;BHS&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Bahamas&quot;, &quot;continent&quot;: &quot;North America&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Commonwealth of the Bahamas&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 9093, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;The Bahamas&quot;, &quot;gu_a3&quot;: &quot;BHS&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;2. High income: nonOECD&quot;, &quot;iso_a2&quot;: &quot;BS&quot;, &quot;iso_a3&quot;: &quot;BHS&quot;, &quot;iso_n3&quot;: &quot;044&quot;, &quot;labelrank&quot;: 4, &quot;lastcensus&quot;: 2010, &quot;level&quot;: 2, &quot;long_len&quot;: 7, &quot;mapcolor13&quot;: 5, &quot;mapcolor7&quot;: 1, &quot;mapcolor8&quot;: 1, &quot;mapcolor9&quot;: 2, &quot;name&quot;: &quot;Bahamas&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 7, &quot;name_long&quot;: &quot;Bahamas&quot;, &quot;name_sort&quot;: &quot;Bahamas, The&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 309156, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BS&quot;, &quot;region_un&quot;: &quot;Americas&quot;, &quot;region_wb&quot;: &quot;Latin America \\u0026 Caribbean&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BHS&quot;, &quot;sovereignt&quot;: &quot;The Bahamas&quot;, &quot;su_a3&quot;: &quot;BHS&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Caribbean&quot;, &quot;subunit&quot;: &quot;The Bahamas&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;044&quot;, &quot;wb_a2&quot;: &quot;BS&quot;, &quot;wb_a3&quot;: &quot;BHS&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[16.918652343749983, 45.27656249999998], [17.125390625000023, 45.17177734375002], [17.210644531250068, 45.15605468750002], [17.25869140625008, 45.17055664062505], [17.32412109375008, 45.16396484375002], [17.46914062500005, 45.13330078125], [17.50263671875004, 45.12036132812503], [17.54628906250005, 45.12255859375003], [17.65351562500004, 45.16347656250002], [17.69013671875004, 45.158398437499955], [17.812792968750074, 45.078125], [17.874414062500023, 45.077246093750034], [17.94863281250005, 45.11186523437499], [17.996289062500068, 45.141796874999955], [18.13720703125, 45.119384765625], [18.21796875000001, 45.132910156250006], [18.284960937500074, 45.13427734375003], [18.35761718750004, 45.12055664062498], [18.423925781250063, 45.10200195312501], [18.48828125000003, 45.08583984375002], [18.66259765625, 45.07744140624999], [18.746093750000057, 45.02651367187502], [18.779394531250006, 44.97724609375001], [18.78017578125008, 44.94721679687501], [18.788378906250045, 44.914892578125006], [18.83642578125, 44.883251953124955], [18.94130859375005, 44.86518554687501], [19.007128906250045, 44.86918945312502], [19.042089843750063, 44.87133789062503], [19.131542968750068, 44.89960937500001], [19.23681640625003, 44.914257812499955], [19.31269531250004, 44.8974609375], [19.348632812500057, 44.88090820312502], [19.35683593750005, 44.858544921874994], [19.33447265625003, 44.78066406250002], [19.29189453125005, 44.69677734374997], [19.22314453125, 44.60957031249998], [19.15136718750003, 44.52734375], [19.132421875000063, 44.48378906250002], [19.127343750000023, 44.41455078125003], [19.118457031250074, 44.359960937500006], [19.128320312500023, 44.33027343750001], [19.15185546875003, 44.302539062500045], [19.231542968750006, 44.28056640625002], [19.33886718750003, 44.22583007812506], [19.43017578124997, 44.15449218749998], [19.547167968750017, 44.073486328125], [19.583789062500017, 44.04345703125003], [19.583691406249983, 44.011083984375006], [19.54951171875004, 43.98710937499999], [19.449414062499983, 43.97802734375], [19.34521484375, 43.98510742187503], [19.305273437500034, 43.99335937500004], [19.26806640625, 43.98344726562496], [19.245019531249994, 43.96503906250004], [19.257226562499994, 43.943310546874955], [19.364062500000017, 43.844775390625045], [19.48818359375008, 43.703564453124955], [19.495117187500057, 43.642871093750045], [19.47998046875, 43.59516601562498], [19.451269531250006, 43.56206054687499], [19.399609375000068, 43.56757812499998], [19.360351562500057, 43.59345703125001], [19.30078125, 43.59179687500003], [19.254492187500063, 43.584375], [19.19433593749997, 43.533300781250006], [19.164355468750017, 43.53544921874999], [19.11279296874997, 43.52773437500002], [19.080078125000057, 43.51772460937502], [19.0283203125, 43.53251953125002], [18.97421875, 43.54233398437498], [18.95068359375, 43.52666015624999], [18.94023437499999, 43.49672851562502], [18.97382812500001, 43.44238281250006], [19.036718750000034, 43.35732421875002], [19.026660156250017, 43.292431640624955], [18.97871093750001, 43.28540039062503], [18.934667968750006, 43.339453125000034], [18.895605468750063, 43.348193359375045], [18.85107421875003, 43.34633789062502], [18.749218750000068, 43.283544921875006], [18.67421875000008, 43.230810546875006], [18.656835937500006, 43.19394531250006], [18.629980468750034, 43.153662109375034], [18.621875, 43.12460937500006], [18.623632812500063, 43.027685546875034], [18.488476562500068, 43.01215820312498], [18.460156250000068, 42.997900390625006], [18.44384765625003, 42.96845703125004], [18.455078125, 42.844091796875006], [18.46601562500001, 42.777246093749994], [18.543261718750045, 42.674169921875034], [18.54589843750003, 42.64160156249997], [18.534960937500045, 42.62011718750003], [18.480078125000034, 42.57919921875006], [18.453906250000045, 42.56450195312499], [18.436328125000017, 42.559716796874994], [18.346582031250023, 42.58666992187497], [18.304003906250045, 42.59941406249999], [18.12392578125005, 42.690576171874994], [18.044531250000034, 42.74125976562502], [17.918847656250023, 42.80742187500002], [17.84130859375003, 42.845068359375034], [17.80195312500001, 42.90224609375005], [17.74023437500003, 42.91547851562498], [17.667578125000063, 42.897119140624994], [17.585156250000068, 42.93837890625005], [17.64345703125005, 42.959765625000045], [17.657812500000034, 42.980078125], [17.650488281250063, 43.006591796875], [17.624804687500074, 43.04277343749999], [17.402246093750023, 43.19892578125001], [17.293066406250063, 43.30561523437498], [17.27529296875008, 43.343847656250034], [17.27382812500005, 43.44575195312501], [17.248046875000057, 43.47021484375003], [17.084570312500034, 43.516552734374955], [16.90185546875003, 43.649023437500034], [16.713476562500034, 43.77880859375003], [16.68769531250001, 43.815039062500034], [16.59052734375004, 43.913183593750034], [16.47207031250005, 44.00258789062505], [16.377539062500063, 44.05961914062502], [16.300097656250017, 44.12451171875], [16.214257812500023, 44.21513671874999], [16.169824218750023, 44.35200195312498], [16.13027343750005, 44.473730468750006], [16.10341796875008, 44.52099609375006], [16.04902343750001, 44.53759765624997], [15.880078125000068, 44.68193359374999], [15.736621093750045, 44.76582031250001], [15.737988281250068, 44.85639648437498], [15.761523437500074, 45.007519531249955], [15.788085937500057, 45.17895507812497], [15.822851562500034, 45.20278320312505], [15.888281250000034, 45.21572265625002], [15.963183593750017, 45.21079101562498], [16.028320312500057, 45.18959960937502], [16.157324218750063, 45.07221679687498], [16.231054687500063, 45.02661132812503], [16.29335937500005, 45.00883789062496], [16.365039062500017, 45.058349609375], [16.453515625, 45.162011718749994], [16.53066406250008, 45.21669921875002], [16.790820312500074, 45.19687], [16.918652343749983, 45.27656249999998]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;B.H.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;BIH&quot;, &quot;adm0_a3_is&quot;: &quot;BIH&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BIH&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Bosnia and Herzegovina&quot;, &quot;brk_a3&quot;: &quot;BIH&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Bosnia and Herz.&quot;, &quot;continent&quot;: &quot;Europe&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Bosnia and Herzegovina&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 29700, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Bosnia and Herzegovina&quot;, &quot;gu_a3&quot;: &quot;BIH&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;3. Upper middle income&quot;, &quot;iso_a2&quot;: &quot;BA&quot;, &quot;iso_a3&quot;: &quot;BIH&quot;, &quot;iso_n3&quot;: &quot;070&quot;, &quot;labelrank&quot;: 5, &quot;lastcensus&quot;: 1991, &quot;level&quot;: 2, &quot;long_len&quot;: 22, &quot;mapcolor13&quot;: 2, &quot;mapcolor7&quot;: 1, &quot;mapcolor8&quot;: 1, &quot;mapcolor9&quot;: 1, &quot;name&quot;: &quot;Bosnia and Herz.&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 16, &quot;name_long&quot;: &quot;Bosnia and Herzegovina&quot;, &quot;name_sort&quot;: &quot;Bosnia and Herzegovina&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 4613414, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BiH&quot;, &quot;region_un&quot;: &quot;Europe&quot;, &quot;region_wb&quot;: &quot;Europe \\u0026 Central Asia&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BIH&quot;, &quot;sovereignt&quot;: &quot;Bosnia and Herzegovina&quot;, &quot;su_a3&quot;: &quot;BIH&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Southern Europe&quot;, &quot;subunit&quot;: &quot;Bosnia and Herzegovina&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;070&quot;, &quot;wb_a2&quot;: &quot;BA&quot;, &quot;wb_a3&quot;: &quot;BIH&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-62.831933593749994, 17.87646484375], [-62.846923828125, 17.875195312499997], [-62.85893554687499, 17.88364257812499], [-62.869384765625, 17.898583984374994], [-62.875439453125, 17.91357421875], [-62.87421875, 17.922265625], [-62.8654296875, 17.918261718750003], [-62.799707031249994, 17.90869140625], [-62.80703125, 17.89765625], [-62.81816406249999, 17.885449218749997], [-62.831933593749994, 17.87646484375]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;St. B.&quot;, &quot;abbrev_len&quot;: 6, &quot;adm0_a3&quot;: &quot;BLM&quot;, &quot;adm0_a3_is&quot;: &quot;BLM&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BLM&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 1, &quot;admin&quot;: &quot;Saint Barthelemy&quot;, &quot;brk_a3&quot;: &quot;BLM&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;St-Barth\\u00e9lemy&quot;, &quot;continent&quot;: &quot;North America&quot;, &quot;economy&quot;: &quot;2. Developed region: nonG7&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Saint-Barth\\u00e9lemy&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 255, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Saint Barthelemy&quot;, &quot;gu_a3&quot;: &quot;BLM&quot;, &quot;homepart&quot;: -99, &quot;income_grp&quot;: &quot;1. High income: OECD&quot;, &quot;iso_a2&quot;: &quot;BL&quot;, &quot;iso_a3&quot;: &quot;BLM&quot;, &quot;iso_n3&quot;: &quot;652&quot;, &quot;labelrank&quot;: 6, &quot;lastcensus&quot;: -99, &quot;level&quot;: 2, &quot;long_len&quot;: 16, &quot;mapcolor13&quot;: 11, &quot;mapcolor7&quot;: 7, &quot;mapcolor8&quot;: 5, &quot;mapcolor9&quot;: 9, &quot;name&quot;: &quot;St-Barth\\u00e9lemy&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 13, &quot;name_long&quot;: &quot;Saint-Barth\\u00e9lemy&quot;, &quot;name_sort&quot;: &quot;St-Barth\\u00e9lemy&quot;, &quot;note_adm0&quot;: &quot;Fr.&quot;, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 7448, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BL&quot;, &quot;region_un&quot;: &quot;Americas&quot;, &quot;region_wb&quot;: &quot;Latin America \\u0026 Caribbean&quot;, &quot;scalerank&quot;: 3, &quot;sov_a3&quot;: &quot;FR1&quot;, &quot;sovereignt&quot;: &quot;France&quot;, &quot;su_a3&quot;: &quot;BLM&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Caribbean&quot;, &quot;subunit&quot;: &quot;Saint Barthelemy&quot;, &quot;tiny&quot;: 4, &quot;type&quot;: &quot;Dependency&quot;, &quot;un_a3&quot;: &quot;652&quot;, &quot;wb_a2&quot;: &quot;-99&quot;, &quot;wb_a3&quot;: &quot;-99&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[28.14794921875, 56.142919921875], [28.284277343750006, 56.055908203125], [28.316308593750023, 56.052539062499996], [28.39208984375, 56.08671875], [28.407031250000017, 56.089013671875], [28.56396484375, 56.0919921875], [28.63691406250001, 56.061767578125], [28.690820312500023, 56.00263671875], [28.740820312500006, 55.955371093749996], [28.794726562500017, 55.942578125], [28.94746093750001, 56.002099609375], [29.03173828125, 56.021777343749996], [29.08740234375, 56.021142578125], [29.283007812500017, 55.96787109375], [29.375, 55.938720703125], [29.39609375, 55.91220703125], [29.39794921875, 55.8810546875], [29.373144531250006, 55.834716796875], [29.353417968750023, 55.784375], [29.412988281250023, 55.724853515625], [29.482226562500017, 55.6845703125], [29.63007812500001, 55.751171875], [29.6845703125, 55.7697265625], [29.744140625, 55.77041015625], [29.82392578125001, 55.7951171875], [29.881640625000017, 55.832324218749996], [29.93701171875, 55.845263671874996], [30.04267578125001, 55.83642578125], [30.23359375000001, 55.84521484375], [30.45625, 55.78681640625], [30.475390625000017, 55.768798828125], [30.586718750000017, 55.70029296875], [30.625585937500006, 55.666259765625], [30.66230468750001, 55.65546875], [30.7216796875, 55.622119140624996], [30.80078125, 55.601123046874996], [30.85595703125, 55.60751953125], [30.882226562500023, 55.59638671875], [30.906835937500006, 55.57001953125], [30.908789062500006, 55.525341796875], [30.90058593750001, 55.397412109375], [30.86181640625, 55.360400390624996], [30.82099609375001, 55.3302734375], [30.810546875, 55.306982421875], [30.814453125, 55.2787109375], [30.87744140625, 55.2234375], [30.958886718750023, 55.13759765625], [30.97773437500001, 55.08779296875], [30.97773437500001, 55.05048828125], [30.866796875, 54.940722656249996], [30.829882812500017, 54.914990234375], [30.804492187500017, 54.8609375], [30.791015625, 54.806005859375], [30.798828125, 54.783251953124996], [30.984179687500017, 54.6958984375], [31.12128906250001, 54.648486328124996], [31.152148437500017, 54.625341796875], [31.154882812500006, 54.6109375], [31.081933593750023, 54.51708984375], [31.074804687500006, 54.491796875], [31.18476562500001, 54.452978515625], [31.245507812500023, 54.391650390624996], [31.299121093750017, 54.29169921875], [31.403613281250017, 54.195947265625], [31.62841796875, 54.111181640625], [31.7919921875, 54.055908203125], [31.825976562500017, 54.030712890625], [31.837792968750023, 54.00078125], [31.825292968750006, 53.935009765625], [31.783007812500017, 53.85498046875], [31.754199218750017, 53.81044921875], [31.82080078125, 53.791943359375], [31.9921875, 53.796875], [32.20039062500001, 53.78125], [32.4501953125, 53.692919921874996], [32.45097656250002, 53.6533203125], [32.42519531250002, 53.61728515625], [32.4423828125, 53.579248046875], [32.46962890625002, 53.54697265625], [32.68574218750001, 53.44814453125], [32.70644531250002, 53.41943359375], [32.71025390625002, 53.371435546875], [32.70429687500001, 53.336328125], [32.64443359375002, 53.32890625], [32.57802734375002, 53.31240234375], [32.469335937500006, 53.2703125], [32.42626953125, 53.210595703125], [32.25068359375001, 53.128369140625], [32.14199218750002, 53.091162109375], [32.05546875000002, 53.089453125], [31.849707031250006, 53.106201171875], [31.777441406250006, 53.146875], [31.747460937500023, 53.1841796875], [31.668261718750017, 53.200927734375], [31.56298828125, 53.202490234375], [31.417871093750023, 53.196044921875], [31.38837890625001, 53.184814453125], [31.364550781250017, 53.138964843749996], [31.30292968750001, 53.060888671875], [31.2587890625, 53.01669921875], [31.29511718750001, 52.989794921874996], [31.35302734375, 52.933447265625], [31.442773437500023, 52.86181640625], [31.53515625, 52.7982421875], [31.564843750000023, 52.759228515625], [31.5634765625, 52.7314453125], [31.519433593750023, 52.69873046875], [31.526171875000017, 52.6330078125], [31.61591796875001, 52.546191406249996], [31.585546875, 52.532470703125], [31.576562500000023, 52.426025390625], [31.57734375000001, 52.312304687499996], [31.6015625, 52.284814453125], [31.64990234375, 52.26220703125], [31.690625, 52.220654296875], [31.758593750000017, 52.125830078125], [31.76337890625001, 52.10107421875], [31.57373046875, 52.10810546875], [31.345996093750017, 52.10537109375], [31.21796875000001, 52.050244140625], [31.16845703125, 52.062939453125], [31.07929687500001, 52.076953125], [30.98066406250001, 52.046191406249996], [30.845703125, 51.953076171875], [30.755273437500023, 51.895166015625], [30.667285156250017, 51.814111328125], [30.639453125000017, 51.770068359374996], [30.583886718750023, 51.68896484375], [30.533007812500017, 51.596337890624994], [30.56074218750001, 51.531494140625], [30.602343750000017, 51.471240234374996], [30.611718750000023, 51.40634765625], [30.63251953125001, 51.355419921875], [30.576953125000017, 51.318359375], [30.54453125, 51.265039062499994], [30.449511718750017, 51.274316406249994], [30.333398437500023, 51.325537109375], [30.308984375000023, 51.399609375], [30.219531250000017, 51.451220703124996], [30.160742187500006, 51.477880859375], [30.063769531250017, 51.48203125], [29.908789062500006, 51.4580078125], [29.7060546875, 51.43955078125], [29.553125, 51.4345703125], [29.469628906250023, 51.408349609374994], [29.346484375000017, 51.382568359375], [29.298828125, 51.413037109375], [29.23046875, 51.497021484375], [29.174218750000023, 51.580615234374996], [29.135644531250023, 51.61728515625], [29.10205078125, 51.6275390625], [29.06074218750001, 51.625439453125], [29.013085937500023, 51.598925781249996], [28.97773437500001, 51.57177734375], [28.927539062500017, 51.562158203124994], [28.849511718750023, 51.540185546874994], [28.793261718750017, 51.5103515625], [28.73125, 51.433398437499996], [28.690234375000017, 51.438867187499994], [28.647753906250017, 51.45654296875], [28.599023437500023, 51.542626953124994], [28.532031250000017, 51.562451171875], [28.424609375000017, 51.563623046874994], [28.291601562500006, 51.581835937499996], [28.18378906250001, 51.607861328125], [28.144433593750023, 51.60166015625], [28.08027343750001, 51.5650390625], [28.0107421875, 51.559765625], [27.85859375000001, 51.5923828125], [27.82880859375001, 51.577441406249996], [27.788867187500017, 51.529150390625], [27.741308593750006, 51.482568359374994], [27.7, 51.477978515625], [27.6767578125, 51.48994140625], [27.689746093750017, 51.572412109374994], [27.601367187500017, 51.601611328124996], [27.45234375000001, 51.606103515625], [27.34765625, 51.594140625], [27.296289062500023, 51.597412109375], [27.270117187500006, 51.613574218749996], [27.141992187500023, 51.75205078125], [27.074121093750023, 51.76083984375], [26.95283203125001, 51.75400390625], [26.7734375, 51.770703125], [26.56689453125, 51.801904296875], [26.453417968750017, 51.813427734375], [26.394335937500017, 51.84443359375], [26.26708984375, 51.855029296874996], [25.92529296875, 51.913525390625], [25.785742187500006, 51.923828125], [25.58027343750001, 51.924755859375], [25.2671875, 51.937744140625], [25.066699218750017, 51.930517578125], [24.97382812500001, 51.9111328125], [24.86640625000001, 51.89912109375], [24.68515625, 51.88828125], [24.611328125, 51.889501953125], [24.495214843750006, 51.883056640625], [24.361914062500006, 51.867529296875], [24.32373046875, 51.838427734374996], [24.280078125000017, 51.774707031249996], [24.126855468750023, 51.6646484375], [23.978320312500017, 51.59130859375], [23.951171875, 51.58505859375], [23.8642578125, 51.623974609375], [23.79169921875001, 51.637109375], [23.706835937500017, 51.64130859375], [23.64667968750001, 51.628857421875], [23.60859375000001, 51.610498046875], [23.61376953125, 51.525390625], [23.605273437500017, 51.517919921875], [23.539648437500006, 51.618896484375], [23.544824218750023, 51.710253906249996], [23.581347656250017, 51.76240234375], [23.62568359375001, 51.809326171875], [23.607421875, 51.87978515625], [23.65107421875001, 51.972998046875], [23.652441406250006, 52.040380859375], [23.63330078125, 52.069580078125], [23.597949218750017, 52.103076171874996], [23.50117187500001, 52.140380859375], [23.458398437500023, 52.16953125], [23.3271484375, 52.208447265625], [23.19697265625001, 52.25693359375], [23.175097656250017, 52.28662109375], [23.18125, 52.306982421875], [23.2041015625, 52.337890625], [23.303320312500006, 52.428369140625], [23.410937500000017, 52.5162109375], [23.479589843750006, 52.5515625], [23.8447265625, 52.664208984375], [23.901269531250023, 52.70361328125], [23.915429687500023, 52.770263671875], [23.916308593750017, 52.81875], [23.909375, 52.9048828125], [23.887109375000023, 53.0275390625], [23.859179687500017, 53.112109375], [23.78925781250001, 53.270947265625], [23.598925781250017, 53.59921875], [23.484667968750017, 53.939794921875], [23.55908203125, 53.91982421875], [23.733691406250017, 53.912255859375], [23.87255859375, 53.935693359375], [23.944433593750006, 53.93896484375], [24.00849609375001, 53.931640625], [24.103906250000023, 53.94501953125], [24.191308593750023, 53.950439453125], [24.236621093750017, 53.919970703124996], [24.31796875, 53.89296875], [24.478515625, 53.9318359375], [24.620703125, 53.979833984375], [24.768164062500006, 53.974658203124996], [24.78925781250001, 53.9982421875], [24.82568359375, 54.118994140625], [24.869531250000023, 54.145166015625], [25.04609375000001, 54.133056640625], [25.111425781250006, 54.154931640625], [25.179492187500017, 54.2142578125], [25.28369140625, 54.251269531249996], [25.37060546875, 54.251220703125], [25.46113281250001, 54.292773437499996], [25.505664062500017, 54.264941406249996], [25.52734375, 54.215136718749996], [25.497363281250017, 54.175244140625], [25.510351562500006, 54.159619140625], [25.573046875000017, 54.139892578125], [25.680566406250023, 54.140478515625], [25.74921875000001, 54.156982421875], [25.765234375, 54.17978515625], [25.765039062500023, 54.22119140625], [25.748144531250006, 54.25966796875], [25.702539062500023, 54.29296875], [25.61689453125001, 54.310107421874996], [25.557519531250023, 54.310693359375], [25.54736328125, 54.331835937499996], [25.56757812500001, 54.37705078125], [25.62031250000001, 54.460400390625], [25.68515625, 54.535791015625], [25.72480468750001, 54.564257812499996], [25.73164062500001, 54.590380859374996], [25.723925781250017, 54.636035156249996], [25.722460937500017, 54.71787109375], [25.780859375, 54.833251953125], [25.859277343750023, 54.919287109375], [25.964453125, 54.94716796875], [26.09296875000001, 54.9623046875], [26.175195312500023, 55.003271484375], [26.2158203125, 55.050390625], [26.23125, 55.090136718749996], [26.250781250000017, 55.12451171875], [26.291796875000017, 55.139599609375], [26.601171875, 55.130175781249996], [26.6484375, 55.20419921875], [26.675, 55.224902343749996], [26.734375, 55.24677734375], [26.775683593750017, 55.273095703125], [26.760156250000023, 55.293359375], [26.68125, 55.306445312499996], [26.49531250000001, 55.318017578125], [26.457617187500006, 55.34248046875], [26.469531250000017, 55.371923828125], [26.51923828125001, 55.44814453125], [26.56660156250001, 55.546484375], [26.5908203125, 55.62265625], [26.593554687500017, 55.667529296874996], [26.620214843750006, 55.679638671875], [26.771875, 55.693994140625], [26.82246093750001, 55.709228515625], [26.953027343750023, 55.812939453125], [27.052539062500017, 55.83056640625], [27.309179687500006, 55.80390625], [27.427148437500023, 55.805957031249996], [27.45917968750001, 55.803515625], [27.576757812500006, 55.798779296875], [27.589453125, 55.8091796875], [27.64228515625001, 55.91171875], [27.694238281250023, 55.941552734375], [27.896289062500017, 56.076171875], [28.032031250000017, 56.13330078125], [28.11787109375001, 56.145800781249996], [28.14794921875, 56.142919921875]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Bela.&quot;, &quot;abbrev_len&quot;: 5, &quot;adm0_a3&quot;: &quot;BLR&quot;, &quot;adm0_a3_is&quot;: &quot;BLR&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BLR&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Belarus&quot;, &quot;brk_a3&quot;: &quot;BLR&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Belarus&quot;, &quot;continent&quot;: &quot;Europe&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Republic of Belarus&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 114100, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Belarus&quot;, &quot;gu_a3&quot;: &quot;BLR&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;3. Upper middle income&quot;, &quot;iso_a2&quot;: &quot;BY&quot;, &quot;iso_a3&quot;: &quot;BLR&quot;, &quot;iso_n3&quot;: &quot;112&quot;, &quot;labelrank&quot;: 4, &quot;lastcensus&quot;: 2009, &quot;level&quot;: 2, &quot;long_len&quot;: 7, &quot;mapcolor13&quot;: 11, &quot;mapcolor7&quot;: 1, &quot;mapcolor8&quot;: 1, &quot;mapcolor9&quot;: 5, &quot;name&quot;: &quot;Belarus&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 7, &quot;name_long&quot;: &quot;Belarus&quot;, &quot;name_sort&quot;: &quot;Belarus&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 9648533, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BY&quot;, &quot;region_un&quot;: &quot;Europe&quot;, &quot;region_wb&quot;: &quot;Europe \\u0026 Central Asia&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BLR&quot;, &quot;sovereignt&quot;: &quot;Belarus&quot;, &quot;su_a3&quot;: &quot;BLR&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Eastern Europe&quot;, &quot;subunit&quot;: &quot;Belarus&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;112&quot;, &quot;wb_a2&quot;: &quot;BY&quot;, &quot;wb_a3&quot;: &quot;BLR&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-87.8529296875, 17.4228515625], [-87.92998046874996, 17.283007812500017], [-87.93486328124999, 17.322949218749983], [-87.90283203125003, 17.42646484375001], [-87.85942382812499, 17.46279296875005], [-87.83251953125, 17.501074218750034], [-87.826416015625, 17.546289062499994], [-87.78862304687493, 17.524218750000045], [-87.79814453125002, 17.479589843750006], [-87.8529296875, 17.4228515625]]], [[[-87.9505859375, 17.924951171874966], [-87.99809570312499, 17.906347656250006], [-87.95903320312493, 17.964013671875023], [-87.95332031250001, 18.001074218750034], [-87.89833984375, 18.154931640625023], [-87.85893554687496, 18.154052734375], [-87.84853515625, 18.14038085937497], [-87.9505859375, 17.924951171874966]]], [[[-88.34926757812494, 18.358837890624983], [-88.29565429687494, 18.344091796875006], [-88.24726562499995, 18.35468750000004], [-88.1302734375, 18.350732421875023], [-88.08525390624999, 18.226123046875045], [-88.09721679687502, 18.121630859375074], [-88.20747070312501, 17.846093749999966], [-88.221435546875, 17.75136718750005], [-88.27172851562494, 17.60986328125], [-88.203466796875, 17.5166015625], [-88.2671875, 17.392578125000057], [-88.28881835937497, 17.31269531250001], [-88.29399414062496, 17.19213867187497], [-88.26181640624998, 16.963037109375023], [-88.31342773437501, 16.632763671874983], [-88.404541015625, 16.488623046875006], [-88.46113281249998, 16.43378906250001], [-88.56230468749999, 16.29042968750005], [-88.69516601562498, 16.247656250000034], [-88.87910156249998, 16.016650390625045], [-88.91171874999995, 15.95600585937504], [-88.89404296875, 15.890625], [-88.937158203125, 15.889843749999955], [-89.11357421874996, 15.900683593750045], [-89.2328125, 15.888671875], [-89.2375, 15.894433593750023], [-89.22763671875, 16.142822265625], [-89.21245117187493, 16.527148437500045], [-89.20126953124998, 16.808984375], [-89.19038085937498, 17.08466796875001], [-89.18217773437499, 17.29121093750001], [-89.17109374999995, 17.57226562499997], [-89.16147460937503, 17.81484375], [-89.16235351562494, 17.901953124999977], [-89.13354492187503, 17.970800781249977], [-89.05043945312497, 17.99970703125001], [-88.94262695312494, 17.93964843750004], [-88.89780273437495, 17.91455078124997], [-88.85737304687498, 17.928808593750034], [-88.80634765624998, 17.965527343749983], [-88.74360351562498, 18.071630859375006], [-88.58618164062497, 18.29052734375003], [-88.52299804687499, 18.445898437500063], [-88.46127929687503, 18.47675781250004], [-88.37241210937495, 18.482324218750023], [-88.29565429687494, 18.47241210937503], [-88.34926757812494, 18.358837890624983]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Belize&quot;, &quot;abbrev_len&quot;: 6, &quot;adm0_a3&quot;: &quot;BLZ&quot;, &quot;adm0_a3_is&quot;: &quot;BLZ&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BLZ&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Belize&quot;, &quot;brk_a3&quot;: &quot;BLZ&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Belize&quot;, &quot;continent&quot;: &quot;North America&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Belize&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 2536, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Belize&quot;, &quot;gu_a3&quot;: &quot;BLZ&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;4. Lower middle income&quot;, &quot;iso_a2&quot;: &quot;BZ&quot;, &quot;iso_a3&quot;: &quot;BLZ&quot;, &quot;iso_n3&quot;: &quot;084&quot;, &quot;labelrank&quot;: 6, &quot;lastcensus&quot;: 2010, &quot;level&quot;: 2, &quot;long_len&quot;: 6, &quot;mapcolor13&quot;: 7, &quot;mapcolor7&quot;: 1, &quot;mapcolor8&quot;: 4, &quot;mapcolor9&quot;: 5, &quot;name&quot;: &quot;Belize&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 6, &quot;name_long&quot;: &quot;Belize&quot;, &quot;name_sort&quot;: &quot;Belize&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 307899, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BZ&quot;, &quot;region_un&quot;: &quot;Americas&quot;, &quot;region_wb&quot;: &quot;Latin America \\u0026 Caribbean&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BLZ&quot;, &quot;sovereignt&quot;: &quot;Belize&quot;, &quot;su_a3&quot;: &quot;BLZ&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Central America&quot;, &quot;subunit&quot;: &quot;Belize&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;084&quot;, &quot;wb_a2&quot;: &quot;BZ&quot;, &quot;wb_a3&quot;: &quot;BLZ&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-64.73027343749999, 32.29345703125], [-64.82011718749999, 32.259619140625], [-64.84506835937499, 32.2623046875], [-64.86284179687499, 32.273876953125], [-64.77119140625, 32.30771484375], [-64.69462890624999, 32.3869140625], [-64.66831054687499, 32.38193359375], [-64.73027343749999, 32.29345703125]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Berm.&quot;, &quot;abbrev_len&quot;: 5, &quot;adm0_a3&quot;: &quot;BMU&quot;, &quot;adm0_a3_is&quot;: &quot;BMU&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BMU&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 1, &quot;admin&quot;: &quot;Bermuda&quot;, &quot;brk_a3&quot;: &quot;BMU&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Bermuda&quot;, &quot;continent&quot;: &quot;North America&quot;, &quot;economy&quot;: &quot;2. Developed region: nonG7&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;The Bermudas or Somers Isles&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 4500, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Bermuda&quot;, &quot;gu_a3&quot;: &quot;BMU&quot;, &quot;homepart&quot;: -99, &quot;income_grp&quot;: &quot;2. High income: nonOECD&quot;, &quot;iso_a2&quot;: &quot;BM&quot;, &quot;iso_a3&quot;: &quot;BMU&quot;, &quot;iso_n3&quot;: &quot;060&quot;, &quot;labelrank&quot;: 6, &quot;lastcensus&quot;: 2010, &quot;level&quot;: 2, &quot;long_len&quot;: 7, &quot;mapcolor13&quot;: 3, &quot;mapcolor7&quot;: 6, &quot;mapcolor8&quot;: 6, &quot;mapcolor9&quot;: 6, &quot;name&quot;: &quot;Bermuda&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 7, &quot;name_long&quot;: &quot;Bermuda&quot;, &quot;name_sort&quot;: &quot;Bermuda&quot;, &quot;note_adm0&quot;: &quot;U.K.&quot;, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 67837, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BM&quot;, &quot;region_un&quot;: &quot;Americas&quot;, &quot;region_wb&quot;: &quot;North America&quot;, &quot;scalerank&quot;: 3, &quot;sov_a3&quot;: &quot;GB1&quot;, &quot;sovereignt&quot;: &quot;United Kingdom&quot;, &quot;su_a3&quot;: &quot;BMU&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Northern America&quot;, &quot;subunit&quot;: &quot;Bermuda&quot;, &quot;tiny&quot;: 4, &quot;type&quot;: &quot;Dependency&quot;, &quot;un_a3&quot;: &quot;060&quot;, &quot;wb_a2&quot;: &quot;BM&quot;, &quot;wb_a3&quot;: &quot;BMU&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-58.159765625, -20.164648437500006], [-58.13994140624999, -19.998828125], [-58.160058593749994, -19.85488281250001], [-58.18017578125, -19.81787109375], [-58.47421875, -19.64609375], [-58.741113281249994, -19.490234375], [-59.09052734375, -19.286230468750006], [-59.54086914062499, -19.291796875], [-60.00737304687499, -19.29755859375001], [-60.451611328125, -19.388769531250006], [-60.88876953124999, -19.478515625], [-61.09599609374999, -19.52099609375], [-61.51181640624999, -19.6064453125], [-61.7568359375, -19.6453125], [-61.82089843749999, -19.80947265625001], [-61.916943359375, -20.05537109375001], [-62.01181640624999, -20.199023437500003], [-62.12163085937499, -20.349902343750003], [-62.276318359375, -20.5625], [-62.276513671874994, -20.82080078125], [-62.27666015624999, -21.066015625], [-62.38544921875, -21.41171875], [-62.47783203124999, -21.70527343750001], [-62.56694335937499, -21.988671875], [-62.628515625, -22.183984375], [-62.65097656249999, -22.233691406250003], [-62.665283203125, -22.21796875000001], [-62.744580078125, -22.15986328125001], [-62.815087890624994, -22.049609375], [-62.83427734374999, -21.999121093750006], [-62.843359375, -21.99726562500001], [-63.2671875, -22.000585937500006], [-63.67534179687499, -22.004296875], [-63.716943359374994, -22.02753906250001], [-63.7755859375, -22.02724609375001], [-63.81865234374999, -22.00546875], [-63.86103515625, -22.00722656250001], [-63.92167968749999, -22.028613281250003], [-63.97612304687499, -22.072558593750003], [-64.1318359375, -22.365820312500006], [-64.20908203124999, -22.491308593750006], [-64.26640624999999, -22.603320312500003], [-64.30791015624999, -22.7953125], [-64.32529296874999, -22.82763671875], [-64.373974609375, -22.761035156250003], [-64.4455078125, -22.58535156250001], [-64.477734375, -22.4853515625], [-64.5236328125, -22.37158203125], [-64.60551757812499, -22.228808593750003], [-64.70009765625, -22.185546875], [-64.75864257812499, -22.17128906250001], [-64.84306640624999, -22.14394531250001], [-64.992626953125, -22.109667968750003], [-65.0578125, -22.10273437500001], [-65.48486328125, -22.09814453125], [-65.518798828125, -22.09453125], [-65.686181640625, -22.11025390625001], [-65.77104492187499, -22.099609375], [-65.86015624999999, -22.01972656250001], [-66.05859375, -21.879492187500006], [-66.098583984375, -21.835058593750006], [-66.17465820312499, -21.8056640625], [-66.220166015625, -21.802539062500003], [-66.24760742187499, -21.83046875], [-66.28212890625, -21.94746093750001], [-66.3224609375, -22.053125], [-66.365185546875, -22.11376953125], [-66.506982421875, -22.15839843750001], [-66.63901367187499, -22.205371093750003], [-66.71171874999999, -22.21630859375], [-66.750634765625, -22.269335937500003], [-66.76748046875, -22.343066406250003], [-66.80029296875, -22.40966796875], [-66.99111328125, -22.509863281250006], [-67.03354492187499, -22.55224609375], [-67.055419921875, -22.65087890625], [-67.16191406249999, -22.773828125], [-67.19487304687499, -22.82167968750001], [-67.362255859375, -22.85517578125001], [-67.57993164062499, -22.891699218750006], [-67.70732421874999, -22.88916015625], [-67.79443359375, -22.879492187500006], [-67.8205078125, -22.857714843750003], [-67.87944335937499, -22.82294921875001], [-67.88916015625, -22.7841796875], [-67.88999023437499, -22.72919921875001], [-67.87373046875, -22.63056640625001], [-67.88173828125, -22.49335937500001], [-67.950390625, -22.33369140625001], [-67.944921875, -22.2822265625], [-67.95390624999999, -22.20400390625001], [-67.98837890624999, -22.05712890625], [-68.07675781249999, -21.9828125], [-68.101806640625, -21.860644531250003], [-68.11215820312499, -21.753027343750006], [-68.18642578125, -21.61855468750001], [-68.19853515624999, -21.447265625], [-68.197021484375, -21.30029296875], [-68.3138671875, -21.1296875], [-68.435498046875, -20.9482421875], [-68.533837890625, -20.923632812500003], [-68.558251953125, -20.901953125], [-68.56894531249999, -20.84980468750001], [-68.571044921875, -20.769140625], [-68.56318359375, -20.72011718750001], [-68.48740234374999, -20.640722656250006], [-68.484326171875, -20.62841796875], [-68.49985351562499, -20.61201171875001], [-68.69580078125, -20.49296875], [-68.74516601562499, -20.45859375], [-68.76054687499999, -20.41621093750001], [-68.759228515625, -20.378027343750006], [-68.7123046875, -20.338964843750006], [-68.68857421874999, -20.31005859375], [-68.7345703125, -20.225195312500006], [-68.73002929687499, -20.1484375], [-68.75932617187499, -20.115527343750003], [-68.755810546875, -20.0908203125], [-68.727490234375, -20.069628906250003], [-68.60019531249999, -20.044921875], [-68.560693359375, -19.967089843750003], [-68.55937, -19.90234375], [-68.578271484375, -19.856542968750006], [-68.69619140625, -19.74072265625], [-68.69829101562499, -19.72109375], [-68.57529296874999, -19.56015625], [-68.48701171875, -19.454394531250003], [-68.462890625, -19.43281250000001], [-68.470166015625, -19.409960937500003], [-68.49199218749999, -19.381933593750006], [-68.5478515625, -19.341113281250003], [-68.620556640625, -19.296679687500003], [-68.6806640625, -19.24238281250001], [-68.75908203124999, -19.162207031250006], [-68.85795898437499, -19.093359375], [-68.93100585937499, -19.025195312500003], [-68.96831054687499, -18.96796875000001], [-68.96909179687499, -18.90966796875], [-68.97885742187499, -18.81298828125], [-69.026806640625, -18.65625], [-69.03940429687499, -18.550097656250003], [-69.06015625, -18.43300781250001], [-69.08095703125, -18.35664062500001], [-69.09228515625, -18.28242187500001], [-69.1263671875, -18.202441406250003], [-69.145458984375, -18.14404296875], [-69.11806640625, -18.10273437500001], [-69.09042968749999, -18.070703125], [-69.0939453125, -18.05048828125001], [-69.28232421874999, -17.96484375], [-69.31337890625, -17.943164062500003], [-69.35800781249999, -17.77167968750001], [-69.49501953125, -17.61953125], [-69.5109375, -17.50605468750001], [-69.51108398437499, -17.5048828125], [-69.510986328125, -17.46035156250001], [-69.521923828125, -17.388964843750003], [-69.56381835937499, -17.33291015625001], [-69.62587890625, -17.29443359375], [-69.645703125, -17.24853515625], [-69.62485351562499, -17.2001953125], [-69.5033203125, -17.104785156250003], [-69.43833007812499, -17.08837890625], [-69.42109375, -17.0400390625], [-69.38154296875, -17.00136718750001], [-69.267236328125, -16.8609375], [-69.19980468749999, -16.76845703125001], [-69.13251953125, -16.71308593750001], [-69.05454101562499, -16.67431640625], [-69.020703125, -16.6421875], [-69.03837890624999, -16.54267578125001], [-69.03291015625, -16.47597656250001], [-69.00625, -16.433691406250006], [-68.92802734374999, -16.3890625], [-68.8578125, -16.354785156250003], [-68.8427734375, -16.337890625], [-68.848828125, -16.312792968750003], [-68.9134765625, -16.26191406250001], [-69.04624023437499, -16.21767578125001], [-69.1341796875, -16.221972656250003], [-69.18798828125, -16.18281250000001], [-69.21757812499999, -16.14912109375001], [-69.39189453124999, -15.736914062500006], [-69.4208984375, -15.640625], [-69.41850585937499, -15.603417968750009], [-69.301904296875, -15.3994140625], [-69.254296875, -15.332910156250009], [-69.17246093749999, -15.236621093750003], [-69.187109375, -15.19873046875], [-69.330712890625, -15.038964843750009], [-69.37470703125, -14.962988281250006], [-69.37373046875, -14.8875], [-69.35947265624999, -14.7953125], [-69.276025390625, -14.745898437500003], [-69.25234375, -14.671093750000011], [-69.23491210937499, -14.597070312500009], [-69.19926757812499, -14.572558593750003], [-69.16269531249999, -14.530957031250011], [-69.11972656249999, -14.4703125], [-69.05278320312499, -14.417578125], [-69.013134765625, -14.377246093750003], [-69.00449218749999, -14.265039062500009], [-68.97177734374999, -14.234375], [-68.880322265625, -14.198828125], [-68.87089843749999, -14.169726562500003], [-68.89169921874999, -14.094335937500006], [-68.937451171875, -14.0146484375], [-68.974267578125, -13.975976562500009], [-69.023046875, -13.7802734375], [-69.07412109375, -13.682812500000011], [-69.05283203124999, -13.643945312500009], [-69.017529296875, -13.594433593750011], [-68.98344726562499, -13.496386718750003], [-68.972265625, -13.38232421875], [-68.98051757812499, -12.962597656250011], [-68.97861328124999, -12.880078125000011], [-68.933740234375, -12.822070312500003], [-68.86767578125, -12.755175781250003], [-68.81181640624999, -12.729589843750006], [-68.75908203124999, -12.687207031250011], [-68.762890625, -12.607714843750003], [-68.728125, -12.560742187500011], [-68.68525390625, -12.501953125], [-68.81870117187499, -12.270410156250009], [-68.93603515625, -12.066796875], [-69.04619140624999, -11.875683593750011], [-69.17373046875, -11.654296875], [-69.25771484375, -11.50859375], [-69.36201171875, -11.327539062500009], [-69.45361328125, -11.16875], [-69.57861328125, -10.951757812500006], [-69.462548828125, -10.948144531250009], [-69.228515625, -10.955664062500006], [-69.00166015625, -10.994335937500011], [-68.84833984375, -11.011132812500009], [-68.78408203125, -11.044628906250011], [-68.769921875, -11.09765625], [-68.727490234375, -11.122460937500009], [-68.678369140625, -11.11279296875], [-68.62265625, -11.109179687500003], [-68.49833984374999, -11.054785156250006], [-68.39799804687499, -11.01875], [-68.31113281249999, -10.975195312500006], [-68.2666015625, -10.93310546875], [-68.158642578125, -10.785058593750009], [-68.0716796875, -10.703125], [-67.99169921875, -10.674414062500006], [-67.83500976562499, -10.662792968750011], [-67.78569335937499, -10.68603515625], [-67.72177734374999, -10.68310546875], [-67.666650390625, -10.598925781250003], [-67.582421875, -10.505957031250006], [-67.416943359375, -10.389843750000011], [-67.33271484375, -10.35791015625], [-67.28046875, -10.317285156250009], [-67.19047851562499, -10.311425781250009], [-67.1115234375, -10.268945312500009], [-66.72998046875, -9.975488281250009], [-66.575341796875, -9.89990234375], [-66.47890625, -9.886132812500009], [-66.39921874999999, -9.8681640625], [-66.26357421875, -9.826074218750009], [-65.92470703125, -9.785449218750003], [-65.706787109375, -9.768457031250009], [-65.637109375, -9.80908203125], [-65.55869140624999, -9.797460937500006], [-65.49199218749999, -9.731738281250003], [-65.436767578125, -9.71044921875], [-65.396142578125, -9.71240234375], [-65.337890625, -9.790234375000011], [-65.309326171875, -9.87265625], [-65.328125, -9.935546875], [-65.32456054687499, -10.026953125], [-65.298583984375, -10.146777343750003], [-65.31308593749999, -10.253027343750006], [-65.395458984375, -10.392285156250011], [-65.4369140625, -10.449023437500003], [-65.44711914062499, -10.507421875], [-65.43999023437499, -10.586230468750003], [-65.402294921875, -10.714746093750009], [-65.33403320312499, -10.892773437500011], [-65.32377929687499, -11.024804687500009], [-65.37158203125, -11.1103515625], [-65.39360351562499, -11.184277343750011], [-65.389892578125, -11.246289062500011], [-65.37285156249999, -11.289941406250009], [-65.34238281249999, -11.315039062500006], [-65.32548828124999, -11.36474609375], [-65.322021484375, -11.439160156250011], [-65.28227539062499, -11.511035156250003], [-65.206201171875, -11.58056640625], [-65.175390625, -11.646875], [-65.18974609374999, -11.710058593750006], [-65.1857421875, -11.74951171875], [-65.16337890624999, -11.76513671875], [-65.14267578124999, -11.75234375], [-65.11513671875, -11.735058593750011], [-65.090283203125, -11.7412109375], [-65.037109375, -11.829394531250003], [-65.0302734375, -11.847363281250011], [-65.001220703125, -11.920019531250006], [-64.99252929687499, -11.975195312500006], [-64.91435546874999, -12.005957031250006], [-64.82988281249999, -12.0302734375], [-64.783447265625, -12.059375], [-64.69003906249999, -12.146484375], [-64.61166992187499, -12.20390625], [-64.513427734375, -12.2509765625], [-64.48076171874999, -12.326171875], [-64.42050781249999, -12.439746093750003], [-64.255029296875, -12.483300781250009], [-64.06162109374999, -12.505078125000011], [-63.93857421874999, -12.5296875], [-63.7880859375, -12.469433593750011], [-63.68857421874999, -12.47802734375], [-63.58564453125, -12.518945312500009], [-63.541894531249994, -12.546679687500003], [-63.465234375, -12.605175781250011], [-63.3466796875, -12.680078125], [-63.249755859375, -12.707910156250009], [-63.1806640625, -12.666210937500011], [-63.116796875, -12.651660156250003], [-63.06748046874999, -12.669140625000011], [-63.04135742187499, -12.750390625], [-63.01518554687499, -12.805566406250009], [-62.957910156249994, -12.847070312500009], [-62.83515625, -12.953710937500006], [-62.76547851562499, -12.997265625000011], [-62.68706054687499, -12.994335937500011], [-62.525537109374994, -13.064257812500003], [-62.35283203124999, -13.132421875], [-62.263916015625, -13.143652343750006], [-62.17607421874999, -13.133691406250009], [-62.11801757812499, -13.159765625], [-62.09477539062499, -13.241992187500003], [-61.944726562499994, -13.40625], [-61.87412109374999, -13.470410156250011], [-61.789941406249994, -13.525585937500011], [-61.57568359375, -13.524804687500009], [-61.51157226562499, -13.541210937500011], [-61.41606445312499, -13.526562500000011], [-61.129150390625, -13.49853515625], [-61.07700195312499, -13.48974609375], [-60.914501953125, -13.561425781250009], [-60.72236328125, -13.664355468750003], [-60.5953125, -13.745312500000011], [-60.506591796875, -13.78984375], [-60.46015625, -13.862402343750006], [-60.42236328125, -13.93798828125], [-60.40498046875, -14.019238281250011], [-60.42807617187499, -14.1], [-60.46298828124999, -14.132421875], [-60.47465820312499, -14.184765625000011], [-60.46015625, -14.263085937500009], [-60.396240234375, -14.3328125], [-60.372705078124994, -14.41875], [-60.338037109374994, -14.570507812500011], [-60.29887695312499, -14.618554687500009], [-60.273339843749994, -15.088769531250009], [-60.402001953124994, -15.0927734375], [-60.583203125, -15.098339843750011], [-60.53046875, -15.143164062500006], [-60.38046875, -15.318261718750009], [-60.242333984374994, -15.479589843750006], [-60.22041015625, -15.738671875], [-60.206640625, -15.901953125], [-60.18720703125, -16.132128906250003], [-60.17558593749999, -16.269335937500003], [-59.83115234374999, -16.28173828125], [-59.43427734375, -16.295996093750006], [-58.957275390625, -16.31318359375001], [-58.53793945312499, -16.328222656250006], [-58.49658203125, -16.32666015625], [-58.42368164062499, -16.307910156250003], [-58.375390625, -16.28359375], [-58.345605468749994, -16.284375], [-58.340576171875, -16.339941406250006], [-58.35078125, -16.410253906250006], [-58.35039062499999, -16.490820312500006], [-58.470605468749994, -16.650195312500003], [-58.478125, -16.70068359375], [-58.45981445312499, -16.910742187500006], [-58.417382812499994, -17.08056640625], [-58.39599609375, -17.23427734375001], [-58.34775390624999, -17.28212890625001], [-58.20556640625, -17.363085937500003], [-57.99091796875, -17.51289062500001], [-57.905029296875, -17.532324218750006], [-57.832470703125, -17.512109375], [-57.78886718749999, -17.573046875], [-57.780175781249994, -17.67177734375001], [-57.66166992187499, -17.947363281250006], [-57.58647460937499, -18.12226562500001], [-57.55205078124999, -18.18310546875], [-57.49565429687499, -18.214648437500003], [-57.50615234374999, -18.2373046875], [-57.553125, -18.246484375], [-57.57402343749999, -18.279296875], [-57.63916015625, -18.475], [-57.725, -18.733203125], [-57.783105468749994, -18.91425781250001], [-57.730859375, -18.91718750000001], [-57.72861328124999, -18.967382812500006], [-57.716796875, -19.044042968750006], [-57.7814453125, -19.053515625], [-57.800390625, -19.08095703125001], [-57.87451171875, -19.2294921875], [-57.9716796875, -19.42421875], [-58.072021484375, -19.625292968750003], [-58.131494140624994, -19.74453125], [-58.029931640624994, -19.83271484375001], [-57.860742187499994, -19.979589843750006], [-57.887597656249994, -20.02041015625001], [-57.96015625, -20.04072265625001], [-58.021142578124994, -20.05517578125], [-58.067626953125, -20.1103515625], [-58.09375, -20.15107421875001], [-58.159765625, -20.164648437500006]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Bolivia&quot;, &quot;abbrev_len&quot;: 7, &quot;adm0_a3&quot;: &quot;BOL&quot;, &quot;adm0_a3_is&quot;: &quot;BOL&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BOL&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Bolivia&quot;, &quot;brk_a3&quot;: &quot;BOL&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Bolivia&quot;, &quot;continent&quot;: &quot;South America&quot;, &quot;economy&quot;: &quot;5. Emerging region: G20&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Plurinational State of Bolivia&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 43270, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Bolivia&quot;, &quot;gu_a3&quot;: &quot;BOL&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;4. Lower middle income&quot;, &quot;iso_a2&quot;: &quot;BO&quot;, &quot;iso_a3&quot;: &quot;BOL&quot;, &quot;iso_n3&quot;: &quot;068&quot;, &quot;labelrank&quot;: 3, &quot;lastcensus&quot;: 2001, &quot;level&quot;: 2, &quot;long_len&quot;: 7, &quot;mapcolor13&quot;: 3, &quot;mapcolor7&quot;: 1, &quot;mapcolor8&quot;: 5, &quot;mapcolor9&quot;: 2, &quot;name&quot;: &quot;Bolivia&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 7, &quot;name_long&quot;: &quot;Bolivia&quot;, &quot;name_sort&quot;: &quot;Bolivia&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 9775246, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BO&quot;, &quot;region_un&quot;: &quot;Americas&quot;, &quot;region_wb&quot;: &quot;Latin America \\u0026 Caribbean&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BOL&quot;, &quot;sovereignt&quot;: &quot;Bolivia&quot;, &quot;su_a3&quot;: &quot;BOL&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;South America&quot;, &quot;subunit&quot;: &quot;Bolivia&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;068&quot;, &quot;wb_a2&quot;: &quot;BO&quot;, &quot;wb_a3&quot;: &quot;BOL&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-48.48588867187493, -27.76699218749998], [-48.554589843749994, -27.81220703125004], [-48.542187499999955, -27.57480468749999], [-48.50517578124996, -27.495507812499994], [-48.464746093749994, -27.436328125000017], [-48.41489257812495, -27.399609375], [-48.37792968749997, -27.451464843750003], [-48.40957031250002, -27.566308593750037], [-48.496777343749955, -27.707031250000014], [-48.48588867187493, -27.76699218749998]]], [[[-48.584423828124955, -26.401562499999983], [-48.60307617187502, -26.413769531249983], [-48.665771484375, -26.289648437500006], [-48.53974609374998, -26.170312500000023], [-48.49760742187502, -26.21875], [-48.531103515625006, -26.313183593749997], [-48.56806640624998, -26.3796875], [-48.584423828124955, -26.401562499999983]]], [[[-45.26025390624997, -23.889160156249986], [-45.260888671874994, -23.94130859375005], [-45.30253906249996, -23.91474609374997], [-45.41284179687497, -23.934960937499994], [-45.451416015625, -23.895605468749977], [-45.30234375, -23.727539062500014], [-45.27226562500002, -23.751953125000014], [-45.24907226562499, -23.78261718750005], [-45.233105468749926, -23.82539062499997], [-45.25029296874996, -23.85302734375], [-45.26025390624997, -23.889160156249986]]], [[[-44.12929687499994, -23.14189453124999], [-44.098046874999966, -23.16933593749998], [-44.15576171875, -23.166601562499963], [-44.22050781249996, -23.19082031250001], [-44.320068359375, -23.212304687500037], [-44.36015624999999, -23.17207031250001], [-44.274121093749955, -23.1162109375], [-44.24287109374998, -23.074121093750037], [-44.220410156249955, -23.082910156249966], [-44.191601562499926, -23.113281250000014], [-44.12929687499994, -23.14189453124999]]], [[[-38.90356445312497, -13.473437499999974], [-38.937890624999966, -13.532324218749977], [-38.97758789062496, -13.523535156249963], [-38.99321289062496, -13.484082031250011], [-39.02216796874998, -13.445605468749989], [-39.006591796875, -13.415527343749986], [-38.98012695312494, -13.398437499999972], [-38.907128906249994, -13.401074218749983], [-38.90356445312497, -13.473437499999974]]], [[[-38.743847656249955, -13.097070312500037], [-38.78300781249993, -13.11865234375], [-38.786962890625034, -13.055078125], [-38.68486328125002, -12.974902343750017], [-38.668115234374966, -12.880175781249989], [-38.61455078124999, -12.92402343750004], [-38.60029296875001, -12.97246093749996], [-38.601171875, -12.99257812499998], [-38.743847656249955, -13.097070312500037]]], [[[-44.49931640625002, -2.939648437499983], [-44.597753906250006, -3.037597656249943], [-44.565332031249966, -2.923925781249977], [-44.58188476562495, -2.845605468750009], [-44.56909179687503, -2.784960937499989], [-44.50195312500003, -2.726269531250026], [-44.4814453125, -2.717578125000031], [-44.48730468749997, -2.789746093749997], [-44.482568359374966, -2.81191406249998], [-44.49931640625002, -2.939648437499983]]], [[[-44.88310546874996, -1.317871093749986], [-44.947119140625034, -1.366015625000017], [-44.96787109374998, -1.390820312500011], [-45.020849609375034, -1.372363281249974], [-45.01123046875003, -1.344726562499943], [-44.99560546874994, -1.347558593749994], [-44.978662109374966, -1.267285156249983], [-44.888281250000034, -1.276855468749972], [-44.88310546874996, -1.317871093749986]]], [[[-51.83251953124997, -1.433789062499969], [-51.938378906249966, -1.452636718749986], [-51.80205078124999, -1.202539062500023], [-51.680029296875006, -1.086132812500026], [-51.67827148437499, -0.85507812500002], [-51.546044921874966, -0.649609375], [-51.424462890624966, -0.56591796875], [-51.25400390624998, -0.54140625], [-51.16074218749998, -0.666699218750011], [-51.27631835937498, -1.02177734374996], [-51.31010742187496, -1.023828125000023], [-51.46513671875002, -1.211132812499997], [-51.6376953125, -1.341894531249991], [-51.83251953124997, -1.433789062499969]]], [[[-49.62866210937497, -0.229199218749969], [-49.53520507812502, -0.233593749999969], [-49.40288085937499, -0.214648437500017], [-49.31425781249996, -0.167871093749994], [-49.215087890625, -0.158691406249986], [-49.11699218749999, -0.163574218750014], [-48.78657226562501, -0.215527343750026], [-48.588037109374966, -0.231640625000026], [-48.51542968750002, -0.248242187500026], [-48.44448242187494, -0.27187], [-48.39267578124995, -0.29736328125], [-48.37968749999999, -0.352832031250017], [-48.42802734374996, -0.441503906249963], [-48.463964843750006, -0.534765624999963], [-48.497460937499994, -0.664941406250009], [-48.52333984375002, -0.691406249999986], [-48.56665039062497, -0.684472656249994], [-48.539697265624994, -0.800976562500011], [-48.549511718749926, -0.847558593749994], [-48.570947265624966, -0.892871093749989], [-48.62407226562493, -0.986914062499963], [-48.70458984375, -1.106640625000026], [-48.728515625, -1.13173828124998], [-48.78984375, -1.173339843750028], [-48.839697265625006, -1.226562500000028], [-48.82900390624994, -1.2765625], [-48.804052734375006, -1.32695312499996], [-48.83359375, -1.390039062500023], [-48.928906249999955, -1.482324218749994], [-48.985937500000034, -1.504687500000031], [-49.038476562499994, -1.5140625], [-49.08686523437498, -1.505078125000011], [-49.17270507812498, -1.41259765625], [-49.18168945312493, -1.484960937500006], [-49.204785156249955, -1.55898437499998], [-49.233984375000034, -1.59951171874998], [-49.34482421874995, -1.59521484375], [-49.406591796875034, -1.555566406249994], [-49.50664062499999, -1.511621093750023], [-49.52568359374996, -1.630468749999977], [-49.587890625, -1.712402343749972], [-49.65058593749998, -1.738085937499974], [-49.748779296875, -1.755371093750028], [-49.805126953124955, -1.790234375000026], [-49.91132812500001, -1.762988281249974], [-50.009960937499926, -1.708496093749986], [-50.06572265625002, -1.703808593749997], [-50.109277343749994, -1.747851562500003], [-50.33842773437496, -1.755957031249963], [-50.44345703124995, -1.800683593750023], [-50.50761718749999, -1.787988281250009], [-50.60205078125003, -1.697753906250014], [-50.6171875, -1.637695312499943], [-50.67338867187499, -1.516015625000023], [-50.72382812499998, -1.37148437499998], [-50.759765625, -1.240234374999972], [-50.72949218749997, -1.126757812499946], [-50.668310546875034, -1.130566406250011], [-50.595898437499926, -1.147460937499986], [-50.58051757812498, -1.13945312499996], [-50.57695312499999, -1.103125], [-50.59291992187494, -1.072949218749997], [-50.709619140624994, -1.077734375], [-50.783300781250006, -1.010351562500034], [-50.796093749999955, -0.90625], [-50.78095703124998, -0.689843750000023], [-50.771386718749966, -0.645410156250023], [-50.71992187499998, -0.583398437500009], [-50.70307617187501, -0.528515625000011], [-50.71582031250003, -0.470214843749957], [-50.69370117187495, -0.364453124999983], [-50.6455078125, -0.27285156249998], [-50.46157226562502, -0.157421875], [-50.24824218749998, -0.11640625], [-49.62866210937497, -0.229199218749969]]], [[[-50.65288085937499, -0.131640624999989], [-50.926367187500034, -0.327343749999983], [-51.01899414062498, -0.263085937500037], [-51.03808593749994, -0.225878906250003], [-51.02236328124994, -0.188378906249994], [-51.025732421875006, -0.172363281250028], [-50.99506835937498, -0.105273437500031], [-50.84218750000002, -0.050195312500009], [-50.765283203124966, -0.040869140624963], [-50.66699218750003, -0.058007812499994], [-50.65058593749998, -0.10585937499998], [-50.65288085937499, -0.131640624999989]]], [[[-49.44389648437499, -0.112402343749977], [-49.70883789062495, -0.14375], [-49.83007812499997, -0.093896484375023], [-49.80268554687498, -0.051855468749991], [-49.712304687499966, 0.015136718749986], [-49.602197265624994, 0.062695312499997], [-49.50346679687496, 0.083691406250011], [-49.400488281250034, 0.057226562500034], [-49.37231445312497, 0.001074218749963], [-49.38085937500003, -0.055468750000017], [-49.44389648437499, -0.112402343749977]]], [[[-49.73823242187498, 0.26816406250002], [-49.697265625, 0.215966796875037], [-49.838964843750006, 0.006884765624989], [-49.917089843750006, -0.023193359375014], [-50.00249023437502, -0.029296875000014], [-50.11313476562498, 0.033007812499989], [-50.285595703124955, 0.028564453125057], [-50.339453125, 0.043359375000051], [-50.345117187499994, 0.134472656250054], [-50.27265624999998, 0.231738281249974], [-50.12797851562499, 0.226513671874969], [-49.87900390624998, 0.304541015624963], [-49.73823242187498, 0.26816406250002]]], [[[-50.42612304687498, 0.139257812500048], [-50.44394531249998, -0.007666015624949], [-50.623925781249966, 0.054394531249983], [-50.61044921874998, 0.204785156249983], [-50.526220703125034, 0.246923828125048], [-50.45156250000002, 0.326904296875], [-50.42607421874996, 0.42495117187498], [-50.42456054687503, 0.558251953124966], [-50.39687, 0.581396484374977], [-50.372753906249955, 0.590869140625031], [-50.35097656249994, 0.58173828125004], [-50.342529296875, 0.381591796875028], [-50.33227539062497, 0.259033203125028], [-50.42612304687498, 0.139257812500048]]], [[[-50.152929687500006, 0.393017578125054], [-50.26132812499998, 0.359179687500003], [-50.28154296875002, 0.390820312500054], [-50.281689453124955, 0.51650390624998], [-50.251171874999955, 0.58544921875], [-50.11279296875, 0.604736328125014], [-50.09863281249997, 0.625], [-50.05883789062503, 0.638037109374963], [-50.03681640624998, 0.594824218750048], [-50.04003906250003, 0.52280273437502], [-50.152929687500006, 0.393017578125054]]], [[[-50.29897460937502, 1.93852539062496], [-50.398779296875006, 1.892871093749989], [-50.45610351562496, 1.910498046875034], [-50.50898437499998, 2.029541015625028], [-50.49101562499996, 2.128613281249969], [-50.41875, 2.161474609375006], [-50.362646484375006, 2.154443359374994], [-50.34199218749998, 2.14174804687498], [-50.292089843750034, 1.979589843749977], [-50.29897460937502, 1.93852539062496]]], [[[-60.241650390624926, 5.257958984374966], [-60.18173828124998, 5.238818359374974], [-60.14204101562498, 5.238818359374974], [-60.10595703125, 5.194238281250037], [-60.07807617187501, 5.143994140625011], [-59.990673828124955, 5.082861328124991], [-59.99936523437495, 4.989843749999963], [-60.01547851562495, 4.907519531249974], [-60.02675781249994, 4.812695312500026], [-60.03178710937499, 4.740527343749974], [-60.068945312500006, 4.666650390625023], [-60.12456054687496, 4.59765625], [-60.14091796875002, 4.569628906249974], [-60.14863281249998, 4.533251953125031], [-60.11113281249999, 4.511181640624969], [-60.045019531250006, 4.504589843750054], [-59.962353515624955, 4.501708984375], [-59.90610351562495, 4.480322265624991], [-59.83334960937498, 4.475927734374977], [-59.74580078124998, 4.41665039062498], [-59.70327148437494, 4.381103515625028], [-59.69970703125, 4.353515625], [-59.72749023437498, 4.287646484374989], [-59.73857421874993, 4.226757812500026], [-59.71689453124995, 4.188183593749983], [-59.69121093749996, 4.160400390625], [-59.62021484374998, 4.023144531250026], [-59.58642578125003, 3.975390624999974], [-59.557763671874966, 3.960009765625031], [-59.551123046875034, 3.933544921874969], [-59.57539062500001, 3.88344726562498], [-59.604443359374955, 3.819677734375048], [-59.67021484374996, 3.752734375], [-59.67900390624996, 3.699804687499963], [-59.731640624999955, 3.666552734375031], [-59.854394531249994, 3.5875], [-59.83305664062499, 3.462158203125043], [-59.828808593749926, 3.398583984374966], [-59.83115234374998, 3.349218750000034], [-59.87304687499997, 3.28310546874998], [-59.945654296875034, 3.087841796874983], [-59.97231445312494, 2.990478515625043], [-59.99589843749996, 2.765429687500031], [-59.99433593749998, 2.689990234375031], [-59.960791015625006, 2.588378906250014], [-59.88964843749997, 2.362939453125009], [-59.84912109375, 2.32705078124998], [-59.75522460937495, 2.27412109375004], [-59.74350585937498, 2.12163085937496], [-59.75175781249996, 1.962402343750028], [-59.75620117187498, 1.900634765624972], [-59.74072265625003, 1.874169921874994], [-59.69853515624996, 1.861474609374994], [-59.66850585937496, 1.842333984375003], [-59.66376953124998, 1.795214843749989], [-59.666601562500006, 1.746289062499969], [-59.59663085937498, 1.718017578124986], [-59.53569335937499, 1.7], [-59.47944335937498, 1.632421875000048], [-59.37768554687494, 1.527343750000043], [-59.33725585937498, 1.508203125000051], [-59.316992187500034, 1.464599609375043], [-59.23120117187494, 1.376025390625031], [-59.10039062499996, 1.343652343750009], [-58.968505859375, 1.304589843750051], [-58.91660156249998, 1.248876953124977], [-58.8625, 1.203613281249986], [-58.82177734374994, 1.201220703125031], [-58.787207031250006, 1.208496093750014], [-58.73032226562498, 1.247509765625054], [-58.68461914062499, 1.28105468749996], [-58.605078125000034, 1.27915039062502], [-58.511865234374966, 1.284667968749986], [-58.49570312499995, 1.312255859375014], [-58.48686523437502, 1.347753906250048], [-58.506054687499926, 1.438671875000011], [-58.47294921874993, 1.466259765625026], [-58.39580078124993, 1.481738281249989], [-58.38037109375, 1.530224609375011], [-58.36269531249994, 1.556689453124974], [-58.34067382812498, 1.587548828125051], [-58.314208984375, 1.591943359374966], [-58.28115234374994, 1.57431640625002], [-58.23041992187498, 1.563281249999989], [-58.17309570312494, 1.547851562500043], [-58.142236328124966, 1.51699218749998], [-58.09130859375, 1.514355468749969], [-58.03466796875, 1.520263671875014], [-58.01176757812496, 1.539941406250037], [-57.99511718750003, 1.57431640625002], [-57.9828125, 1.648437500000014], [-57.94633789062493, 1.650585937500011], [-57.87343750000002, 1.667285156250045], [-57.79565429687497, 1.7], [-57.691748046875034, 1.70478515625004], [-57.59443359375001, 1.704101562499986], [-57.54575195312495, 1.726074218750028], [-57.500439453124955, 1.77382812499998], [-57.412695312500034, 1.908935546874972], [-57.366796875, 1.940136718750026], [-57.31748046874998, 1.963476562499991], [-57.27558593749998, 1.959228515625014], [-57.189599609374966, 1.981591796875037], [-57.11889648437494, 2.013964843749974], [-57.09267578125002, 2.005810546874997], [-57.03759765625, 1.936474609374997], [-57.01005859374999, 1.921240234374991], [-56.96953124999999, 1.91640625], [-56.83671875000002, 1.88125], [-56.766259765624966, 1.892187500000034], [-56.68984375000002, 1.914306640625], [-56.616455078125, 1.922656250000017], [-56.56357421874998, 1.907226562499986], [-56.525488281250034, 1.927246093749972], [-56.48281249999994, 1.942138671874986], [-56.452832031249955, 1.93232421875004], [-56.385839843750006, 1.923876953125003], [-56.227148437500006, 1.885351562499963], [-56.019921874999966, 1.842236328124983], [-55.96333007812498, 1.85708007812498], [-55.929638671874955, 1.8875], [-55.92163085937503, 1.976660156250006], [-55.91533203124999, 2.039550781250028], [-55.96196289062496, 2.09511718749998], [-56.02006835937499, 2.15815429687504], [-56.073632812499994, 2.236767578124969], [-56.13769531249997, 2.259033203124986], [-56.12939453124997, 2.299511718749969], [-56.08779296875002, 2.341308593750043], [-56.045117187499955, 2.364404296875037], [-56.02036132812498, 2.392773437500054], [-55.993505859375006, 2.497509765624983], [-55.9755859375, 2.515966796875006], [-55.957470703124955, 2.52045898437504], [-55.9359375, 2.516601562500057], [-55.89375, 2.489501953125043], [-55.730566406250006, 2.406152343750023], [-55.65893554687497, 2.41875], [-55.385351562500006, 2.440625], [-55.34399414062503, 2.488769531249972], [-55.28603515625002, 2.49965820312498], [-55.18769531249998, 2.547509765625037], [-55.148828124999966, 2.55078125], [-55.114111328125006, 2.539208984375037], [-55.07031249999994, 2.548339843750028], [-55.005810546874955, 2.592968749999983], [-54.97866210937502, 2.597656250000043], [-54.968408203124966, 2.548339843750028], [-54.92656249999999, 2.497363281250045], [-54.876074218750006, 2.450390624999969], [-54.851660156250006, 2.439550781249991], [-54.76684570312503, 2.454736328124966], [-54.72221679687499, 2.441650390624972], [-54.70292968749999, 2.397949218750043], [-54.69741210937502, 2.359814453124997], [-54.66186523437497, 2.327539062499994], [-54.61625976562499, 2.326757812500006], [-54.59194335937502, 2.313769531250031], [-54.55048828125001, 2.293066406249991], [-54.51508789062498, 2.245458984374963], [-54.43310546875, 2.207519531250057], [-54.29306640624998, 2.15424804687504], [-54.227978515624955, 2.153320312500028], [-54.16738281249994, 2.137060546875006], [-54.13007812499998, 2.121044921875026], [-54.08974609375002, 2.150488281249977], [-53.946435546874966, 2.232568359375009], [-53.87661132812494, 2.278271484374997], [-53.829541015624955, 2.31293945312504], [-53.79423828124996, 2.345996093750017], [-53.76777343749998, 2.354833984375048], [-53.75014648437502, 2.335009765625003], [-53.734716796875006, 2.308544921875026], [-53.68369140624998, 2.29291992187504], [-53.56396484375003, 2.26191406250004], [-53.50898437500001, 2.253125], [-53.43183593750001, 2.279443359374966], [-53.36601562500002, 2.324218750000028], [-53.33442382812498, 2.339746093749994], [-53.28549804687495, 2.295214843749974], [-53.252197265625, 2.232275390625034], [-53.22978515624999, 2.20488281249996], [-53.180078124999966, 2.211328125000037], [-53.08227539062503, 2.201708984375031], [-53.00971679687498, 2.181738281250048], [-52.96484375, 2.183544921874969], [-52.90346679687502, 2.211523437499977], [-52.87041015624996, 2.266650390625017], [-52.78339843749998, 2.317187500000017], [-52.70063476562501, 2.36367187499998], [-52.653173828125006, 2.425732421875011], [-52.58300781250003, 2.528906249999977], [-52.55947265625002, 2.573144531250023], [-52.55468750000003, 2.647656250000011], [-52.45585937499996, 2.86416015624998], [-52.418408203124955, 2.903857421874989], [-52.39638671875002, 2.972216796874974], [-52.35664062499998, 3.051562499999974], [-52.35664062499998, 3.117724609375031], [-52.327880859375, 3.18173828125002], [-52.271240234375, 3.237109375000017], [-52.22944335937501, 3.271679687500054], [-52.16259765625, 3.364697265624997], [-52.11611328125002, 3.45229492187498], [-51.99951171874997, 3.646875], [-51.99062, 3.702001953124963], [-51.94433593750003, 3.735107421875043], [-51.92890624999998, 3.776953125000048], [-51.87949218749995, 3.828564453124997], [-51.827490234375006, 3.869580078124997], [-51.805273437500034, 3.929931640625043], [-51.76708984374997, 3.992675781250028], [-51.68344726562498, 4.039697265625023], [-51.65253906249998, 4.061279296874972], [-51.557812499999955, 4.233789062500037], [-51.54707031250001, 4.31088867187502], [-51.46152343749998, 4.313769531249989], [-51.327099609374955, 4.224755859374966], [-51.219921874999955, 4.093603515624991], [-51.076269531250006, 3.671679687500003], [-51.05239257812502, 3.281835937499991], [-50.99414062499997, 3.077539062500023], [-50.82719726562499, 2.651855468749986], [-50.816503906250034, 2.573046875], [-50.789697265624966, 2.477783203125043], [-50.736962890624994, 2.376757812499989], [-50.67875976562493, 2.210351562500009], [-50.67656250000002, 2.179443359375014], [-50.71440429687502, 2.134033203125], [-50.65893554687497, 2.130957031250006], [-50.60869140624996, 2.104101562500034], [-50.575878906249926, 1.998583984375031], [-50.53442382812503, 1.927246093749972], [-50.458886718749994, 1.829589843749972], [-50.304296875000034, 1.797656250000045], [-50.18759765624998, 1.785986328124977], [-50.05468749999997, 1.730712890625], [-49.957128906250006, 1.65986328125004], [-49.88159179687497, 1.419921875], [-49.90625, 1.26904296875], [-49.898876953124955, 1.16298828124998], [-49.93793945312501, 1.121435546875034], [-50.04721679687498, 1.051953125], [-50.070996093749926, 1.01508789062504], [-50.29443359374997, 0.835742187500003], [-50.34326171874997, 0.751025390624974], [-50.462988281250034, 0.637304687499991], [-50.58154296875003, 0.420507812499963], [-50.755078124999955, 0.222558593749966], [-50.81635742187498, 0.172558593749997], [-50.91015625, 0.160986328125034], [-50.96708984374996, 0.130273437499994], [-51.101953125, -0.03125], [-51.28291015625001, -0.085205078125028], [-51.29956054687503, -0.178808593750006], [-51.404150390625006, -0.392675781249963], [-51.496289062499955, -0.509472656249955], [-51.555029296875034, -0.549121093749946], [-51.70263671874997, -0.762304687499949], [-51.721533203125006, -0.855468750000014], [-51.720605468749994, -1.018457031249994], [-51.81914062500002, -1.117773437499977], [-51.921630859375, -1.180859374999955], [-51.934472656249966, -1.320312499999943], [-51.98081054687498, -1.367968749999974], [-52.02045898437498, -1.399023437499991], [-52.22924804687497, -1.3625], [-52.553417968749926, -1.5140625], [-52.664160156250034, -1.551757812500028], [-52.31030273437497, -1.559570312500014], [-52.196679687499994, -1.64013671875], [-51.94755859374996, -1.586718749999946], [-51.64628906249996, -1.394335937500017], [-51.531201171874955, -1.354101562499991], [-51.29736328125003, -1.223535156250037], [-51.202343749999926, -1.136523437499989], [-51.028955078124966, -1.032128906250037], [-50.99204101562498, -0.986328125000028], [-50.89492187500002, -0.937597656249963], [-50.84228515625003, -0.999609374999977], [-50.83818359374999, -1.038867187499989], [-50.917871093749966, -1.115234375], [-50.897167968749926, -1.164453125], [-50.84458007812498, -1.226269531249969], [-50.825537109375006, -1.311425781249994], [-50.81865234375002, -1.376269531249974], [-50.78613281249997, -1.48994140625004], [-50.67895507812497, -1.64384765624996], [-50.67529296875003, -1.694726562500023], [-50.690039062500006, -1.761718749999986], [-50.63876953124995, -1.817089843749983], [-50.585595703124966, -1.849902343750017], [-50.40322265625002, -2.015527343750009], [-50.26044921874998, -1.922949218749977], [-50.17270507812495, -1.896191406250026], [-50.116601562499994, -1.857519531249963], [-49.999218749999955, -1.831835937499974], [-49.902978515624994, -1.870605468749972], [-49.71953125000002, -1.926367187499963], [-49.58535156250002, -1.867187499999986], [-49.31367187500001, -1.731738281250003], [-49.39863281250001, -1.971582031250023], [-49.46015625000001, -2.191503906249977], [-49.506982421874966, -2.280273437500028], [-49.553369140624994, -2.519921875], [-49.599316406249926, -2.58388671874998], [-49.63652343749996, -2.656933593750026], [-49.575878906249955, -2.631445312499977], [-49.52392578125003, -2.59687], [-49.45751953125, -2.504589843749983], [-49.40766601562498, -2.34433593750002], [-49.21103515624998, -1.916503906249986], [-49.15478515624997, -1.878515624999977], [-48.99130859374998, -1.829785156249997], [-48.71000976562496, -1.487695312500023], [-48.6, -1.488769531249986], [-48.52958984374996, -1.567480468750034], [-48.46293945312499, -1.613964843749997], [-48.44584960937496, -1.520410156250037], [-48.349804687499926, -1.482128906249955], [-48.45146484374996, -1.435839843750031], [-48.46806640624996, -1.393847656250003], [-48.47773437499998, -1.323828124999949], [-48.40859375, -1.22919921875004], [-48.44980468749998, -1.145507812499943], [-48.30649414062498, -1.03984375], [-48.317578124999926, -0.96054687500002], [-48.266455078125006, -0.895117187500006], [-48.20175781249998, -0.827929687500003], [-48.12846679687496, -0.795214843749989], [-48.11508789062498, -0.7375], [-48.06884765624997, -0.713671874999989], [-48.03256835937495, -0.705078125000014], [-47.96093750000003, -0.76962890625002], [-47.883398437500034, -0.693359375000028], [-47.80766601562496, -0.66347656249998], [-47.77373046874999, -0.676757812500014], [-47.73149414062499, -0.710449218749957], [-47.687109375, -0.72480468750004], [-47.651074218749955, -0.71875], [-47.557324218749955, -0.669921874999957], [-47.47070312499997, -0.748535156249986], [-47.418652343749955, -0.765917968749974], [-47.43291015625002, -0.72187], [-47.460351562499994, -0.680957031249989], [-47.4390625, -0.64765625000004], [-47.39809570312502, -0.626660156250026], [-47.26860351562502, -0.645410156250023], [-47.200537109375006, -0.680468749999974], [-47.12690429687501, -0.745410156249974], [-47.024609374999955, -0.750195312499969], [-46.94433593749994, -0.743359375], [-46.893652343750006, -0.779882812499977], [-46.81123046875001, -0.779687500000023], [-46.76992187499994, -0.836523437499977], [-46.644433593749966, -0.91640625], [-46.61723632812502, -0.970605468750023], [-46.516308593749955, -0.996875], [-46.42172851562498, -1.030078124999974], [-46.32084960937493, -1.039160156249949], [-46.219140625, -1.03125], [-46.214990234374966, -1.099804687499969], [-46.14038085937503, -1.118359375000011], [-46.04462890624998, -1.10302734375], [-45.97226562499998, -1.187402343749952], [-45.77880859375, -1.250781249999989], [-45.64477539062497, -1.347851562499955], [-45.55693359375002, -1.330664062500006], [-45.45859374999995, -1.35625], [-45.35302734375003, -1.567382812500014], [-45.32915039062496, -1.71728515625], [-45.282128906249966, -1.696582031249946], [-45.23857421874999, -1.629492187499963], [-45.182080078124926, -1.507031249999969], [-45.07636718749998, -1.466406249999949], [-45.025781249999966, -1.513476562499946], [-44.91977539062495, -1.588867187499943], [-44.828369140625, -1.671679687500031], [-44.78984375, -1.724804687500011], [-44.72114257812498, -1.733496093750006], [-44.778515624999955, -1.798828125], [-44.72094726562494, -1.792285156250003], [-44.651269531249966, -1.745800781250026], [-44.591650390625006, -1.841796874999957], [-44.546777343749994, -1.946289062500014], [-44.537792968749955, -2.052734374999943], [-44.580029296874926, -2.113867187499963], [-44.61728515624998, -2.152148437499946], [-44.658642578124955, -2.227539062500028], [-44.70751953124997, -2.241113281249952], [-44.75634765624997, -2.265527343749952], [-44.70063476562498, -2.320410156250034], [-44.66240234375002, -2.373242187499955], [-44.579003906249994, -2.23046875], [-44.520361328125034, -2.190332031249994], [-44.435449218749966, -2.168066406249991], [-44.391308593749955, -2.269628906249991], [-44.38183593749997, -2.365527343749989], [-44.52011718749998, -2.40546875000004], [-44.520654296874994, -2.48125], [-44.56201171875, -2.524218749999989], [-44.589013671874994, -2.573437499999983], [-44.61079101562498, -2.676855468749991], [-44.63896484374996, -2.7625], [-44.721386718749955, -3.142285156249955], [-44.72304687500002, -3.204785156249997], [-44.62265625, -3.13789062500004], [-44.43754882812496, -2.944433593749977], [-44.38115234375002, -2.738378906250006], [-44.30815429687496, -2.53515625], [-44.228613281250006, -2.471289062499949], [-44.179394531249926, -2.471191406250014], [-44.105566406250006, -2.493457031250031], [-44.10136718749993, -2.56005859375], [-44.112646484375006, -2.598535156250023], [-44.191601562499926, -2.699609375], [-44.225195312500034, -2.75498046875002], [-44.19267578124999, -2.809570312499943], [-44.01323242187502, -2.642187499999949], [-43.93291015624999, -2.583496093749986], [-43.86445312499998, -2.595410156250011], [-43.728613281250034, -2.518164062499991], [-43.45512695312499, -2.502050781250006], [-43.43461914062499, -2.41367187500002], [-43.38007812499998, -2.376074218750006], [-43.22968749999998, -2.386035156249989], [-42.93671874999998, -2.465039062500011], [-42.83227539062503, -2.529589843750017], [-42.67587890624998, -2.589648437499989], [-42.59355468749999, -2.661035156249966], [-42.24960937499998, -2.7919921875], [-41.999853515625006, -2.806054687500023], [-41.876171874999926, -2.746582031249986], [-41.72187, -2.808886718749989], [-41.64013671875, -2.878613281249983], [-41.479931640624955, -2.916503906249972], [-41.318212890625034, -2.936230468749997], [-41.19453124999998, -2.886132812499994], [-40.875585937500006, -2.869628906250014], [-40.474560546874926, -2.795605468750026], [-40.23535156249997, -2.813183593749969], [-39.96469726562498, -2.861523437499955], [-39.771826171875034, -2.985839843749972], [-39.60942382812499, -3.05625], [-39.511181640624955, -3.12558593750002], [-39.352685546874994, -3.197363281249991], [-39.01435546874998, -3.39023437500002], [-38.89599609374994, -3.501757812500003], [-38.686230468749926, -3.653710937499966], [-38.475781249999955, -3.717480468749997], [-38.361914062500034, -3.876464843749957], [-38.271875, -3.948046874999974], [-38.04882812500003, -4.216406250000034], [-37.79565429687497, -4.404296875000028], [-37.626318359375006, -4.592089843750003], [-37.30146484375001, -4.713085937499969], [-37.174658203125006, -4.912402343749974], [-36.95488281249999, -4.936718749999955], [-36.86113281249999, -4.966601562500003], [-36.74736328124999, -5.050683593749994], [-36.590722656249966, -5.097558593749952], [-36.38671874999997, -5.084277343750003], [-36.161767578124994, -5.09375], [-35.979882812499966, -5.05439453125004], [-35.549414062500006, -5.129394531249957], [-35.481689453125, -5.166015624999957], [-35.39257812499994, -5.250878906250009], [-35.235449218750006, -5.56669921874996], [-35.14174804687502, -5.917187499999955], [-35.095458984375, -6.18535156249996], [-34.988183593749994, -6.39375], [-34.929589843749966, -6.785058593750023], [-34.87988281249994, -6.908203124999972], [-34.87597656249994, -7.0029296875], [-34.833886718749994, -7.024414062500014], [-34.80546874999999, -7.288378906249974], [-34.816601562499926, -7.394824218749989], [-34.85776367187498, -7.533300781249949], [-34.86083984374997, -7.595019531250003], [-34.85478515624999, -7.634277343750014], [-34.87299804687498, -7.692089843749969], [-34.878613281249955, -7.74746093749998], [-34.8369140625, -7.871777343749983], [-34.83466796874998, -7.97148437499996], [-34.890527343749994, -8.092187500000037], [-34.96665039062495, -8.407617187499994], [-35.15776367187499, -8.930566406249952], [-35.34086914062499, -9.230664062499983], [-35.597070312499966, -9.54062], [-35.76396484374993, -9.702539062500023], [-35.83012695312502, -9.719042968750003], [-35.890820312499926, -9.687011718749957], [-35.84775390624995, -9.772460937499957], [-35.88544921875001, -9.84765625], [-36.05498046874999, -10.075781250000034], [-36.223535156249966, -10.225097656249986], [-36.39833984374994, -10.484082031249983], [-36.41162109375, -10.489941406250026], [-36.6357421875, -10.589941406249977], [-36.768310546875, -10.671679687500017], [-36.93779296874999, -10.820410156250034], [-37.09335937499998, -11.054785156249991], [-37.12548828125003, -11.084960937500014], [-37.18281249999998, -11.06845703125002], [-37.18120117187502, -11.1875], [-37.315136718749955, -11.375976562499972], [-37.35600585937502, -11.403906249999977], [-37.354882812499966, -11.350488281250023], [-37.331640625, -11.309863281250003], [-37.32080078125003, -11.266601562499986], [-37.32177734374997, -11.215136718749974], [-37.35922851562495, -11.252539062499963], [-37.43847656250003, -11.39375], [-37.41181640625001, -11.497265624999983], [-37.469335937500006, -11.65361328124996], [-37.68872070312503, -12.1], [-37.95732421874993, -12.475488281249966], [-38.019238281249955, -12.591308593750028], [-38.23974609375003, -12.844238281249957], [-38.401757812499994, -12.966210937500023], [-38.44731445312493, -12.967089843750031], [-38.498925781249966, -12.956640625000034], [-38.52490234375003, -12.762304687499963], [-38.654003906249955, -12.644628906249963], [-38.69096679687502, -12.623925781250009], [-38.74389648437497, -12.74853515625], [-38.787988281249966, -12.782714843750028], [-38.85175781250001, -12.790136718750034], [-38.783593749999966, -12.844433593749997], [-38.76372070312502, -12.9072265625], [-38.83315429687502, -13.032910156250026], [-38.835302734375034, -13.147167968750026], [-38.959179687499955, -13.273046875], [-39.030908203124994, -13.365136718750023], [-39.06738281249997, -13.480468749999986], [-39.08935546875, -13.588183593749989], [-39.034912109375, -13.55878906250004], [-39.00908203124999, -13.581445312500037], [-38.988623046875006, -13.61503906249996], [-39.00122070312497, -13.664550781250014], [-39.041113281250034, -13.758105468749974], [-39.034912109375, -13.991015624999989], [-39.04814453124996, -14.043945312500028], [-39.008496093749955, -14.101171874999963], [-38.96650390625001, -14.003417968750028], [-38.94233398437498, -14.030664062499994], [-39.05957031249997, -14.654785156249957], [-39.01337890624998, -14.935644531249977], [-38.996191406250034, -15.253808593750037], [-38.94321289062498, -15.56435546874998], [-38.88525390624997, -15.841992187499969], [-38.88061523437503, -15.864257812499972], [-38.960791015625006, -16.186523437499986], [-39.063232421875, -16.50439453125], [-39.12504882812499, -16.76357421875005], [-39.16396484375002, -17.043554687499977], [-39.20288085937503, -17.178125], [-39.215234374999966, -17.315820312500023], [-39.170605468749955, -17.64208984374997], [-39.154003906249926, -17.70390625000003], [-39.27836914062496, -17.849414062500017], [-39.41259765624994, -17.920019531250006], [-39.486767578124955, -17.990136718749994], [-39.650781249999966, -18.252343750000037], [-39.73979492187499, -18.639843750000026], [-39.741943359375, -18.845996093750003], [-39.69985351562502, -19.27783203124997], [-39.73144531249997, -19.45390625], [-39.78330078124998, -19.571777343749986], [-39.84472656249997, -19.649121093750026], [-40.001367187499994, -19.74199218750003], [-40.14169921874998, -19.96826171875003], [-40.20273437499998, -20.20605468749997], [-40.29887695312493, -20.29267578125004], [-40.318554687499955, -20.42578124999997], [-40.39594726562501, -20.56943359375002], [-40.59658203125002, -20.78378906249999], [-40.72705078124994, -20.84619140625], [-40.78925781250001, -20.90605468750003], [-40.828759765624966, -21.031347656249977], [-40.954541015624926, -21.237890624999963], [-41.047265625, -21.505664062499974], [-41.023144531249955, -21.596875], [-41.021582031250006, -21.61083984375], [-40.98784179687496, -21.9203125], [-41.00029296875002, -21.99902343750003], [-41.122509765624955, -22.084375], [-41.582910156249966, -22.243652343749957], [-41.70551757812498, -22.30966796874999], [-41.980419921874955, -22.580664062499963], [-41.99755859374997, -22.64462890625002], [-41.98613281249996, -22.735839843749957], [-41.94091796874997, -22.788281249999983], [-41.9875, -22.84511718750001], [-42.042382812499966, -22.947070312500003], [-42.12246093750002, -22.940820312499966], [-42.5810546875, -22.941015625], [-42.829296874999955, -22.973339843750026], [-42.95830078124996, -22.96708984374999], [-43.016210937500034, -22.94257812499997], [-43.081152343750006, -22.902539062499983], [-43.100683593750006, -22.850097656249957], [-43.0654296875, -22.77070312500004], [-43.086279296875006, -22.723339843749983], [-43.154296875, -22.725195312500006], [-43.22900390625003, -22.747656249999963], [-43.241943359375, -22.79511718750004], [-43.23662109374999, -22.82880859374997], [-43.208837890625006, -22.87812], [-43.193603515625, -22.93857421875005], [-43.22416992187502, -22.991210937500014], [-43.36948242187495, -22.998046874999986], [-43.5328125, -23.046386718749986], [-43.736523437499955, -23.06660156250001], [-43.898828124999966, -23.10146484375001], [-43.97382812499998, -23.057324218749983], [-43.898828124999966, -23.03525390625002], [-43.79140624999994, -23.04599609374999], [-43.675976562499955, -23.00947265625001], [-43.70292968749996, -22.966308593750014], [-43.86616210937498, -22.910546875000023], [-44.04746093749998, -22.944726562499966], [-44.14799804687493, -23.011035156249974], [-44.36791992187497, -23.004980468749977], [-44.63725585937496, -23.05546875], [-44.68115234375003, -23.10693359374997], [-44.67382812499994, -23.206640625000034], [-44.62109374999994, -23.228515624999957], [-44.56967773437495, -23.27402343749999], [-44.61909179687498, -23.316406250000014], [-44.66718750000001, -23.33515625000001], [-44.95166015624997, -23.381445312500034], [-45.21542968749998, -23.575585937499966], [-45.32539062499998, -23.59970703124999], [-45.423291015624955, -23.68535156250003], [-45.43339843749996, -23.75849609375001], [-45.464306640624955, -23.802539062500017], [-45.52709960937497, -23.804785156250034], [-45.664648437500006, -23.764843749999983], [-45.843164062499966, -23.763671875], [-45.97207031250002, -23.795507812500006], [-46.63076171875002, -24.11035156250003], [-46.86728515624998, -24.236328125000014], [-47.13720703124997, -24.49316406250003], [-47.59218749999994, -24.781054687499974], [-47.83115234374995, -24.95292968749999], [-47.87656249999998, -24.99746093750001], [-47.91430664062503, -24.999902343749966], [-47.989160156249994, -25.03574218749999], [-47.95937, -25.0654296875], [-47.908349609374966, -25.068164062500017], [-47.92939453124998, -25.16826171874999], [-48.02436523437498, -25.23671875], [-48.20273437499998, -25.41650390625003], [-48.242431640625, -25.4033203125], [-48.18593749999994, -25.309863281249974], [-48.27348632812502, -25.30634765624997], [-48.402490234374994, -25.27207031249999], [-48.45849609374997, -25.31074218749997], [-48.427636718749966, -25.4033203125], [-48.47612304687499, -25.44296875], [-48.56416015624998, -25.447460937500026], [-48.64399414062501, -25.436523437500014], [-48.73173828124993, -25.36875], [-48.6921875, -25.49150390625003], [-48.50703124999998, -25.52128906249996], [-48.42988281249998, -25.550195312499994], [-48.40117187500002, -25.59736328125001], [-48.54516601562503, -25.815917968750043], [-48.665771484375, -25.844335937499963], [-48.67900390624993, -25.87519531250004], [-48.61284179687496, -25.875], [-48.576318359374994, -25.935449218749966], [-48.61943359374996, -26.17939453125001], [-48.67900390624993, -26.225781250000054], [-48.713769531249994, -26.226953125000023], [-48.74829101562503, -26.26865234374999], [-48.70068359375, -26.34833984374997], [-48.65161132812494, -26.406445312499997], [-48.658154296874955, -26.519140625000034], [-48.67651367187497, -26.612402343750034], [-48.67773437499994, -26.702929687500003], [-48.61567382812501, -26.87812], [-48.593408203124994, -27.058007812500037], [-48.56835937499997, -27.123437499999966], [-48.55415039062498, -27.195996093749997], [-48.59550781249999, -27.26386718749997], [-48.57197265624998, -27.37275390625004], [-48.64257812499997, -27.557910156250017], [-48.60566406250001, -27.825195312500014], [-48.62080078124998, -28.075585937499966], [-48.64843750000003, -28.20722656250004], [-48.693212890625006, -28.310156249999963], [-48.797265624999966, -28.44267578124996], [-48.799658203125006, -28.575292968749977], [-49.023583984374966, -28.698632812499966], [-49.27128906249999, -28.87119140625005], [-49.49990234375002, -29.075390624999983], [-49.745996093749966, -29.363183593749994], [-50.033349609374994, -29.80097656250001], [-50.299511718749955, -30.42578125000003], [-50.619970703125034, -30.89765624999997], [-50.748144531250034, -31.06806640624997], [-50.92138671874997, -31.25839843750002], [-51.15175781250002, -31.480371093750023], [-51.46040039062501, -31.702441406249974], [-51.79814453124999, -31.90029296875005], [-51.92021484374999, -31.989550781250017], [-52.039208984374994, -32.11484374999996], [-52.068945312500006, -32.06308593749999], [-52.04316406249998, -31.97753906249997], [-52.05957031249997, -31.91347656249998], [-52.063232421875, -31.830371093750017], [-51.99511718749997, -31.81503906249999], [-51.89316406249998, -31.86777343749999], [-51.841210937499966, -31.83203125], [-51.80341796875001, -31.79667968749999], [-51.68066406249994, -31.774609375000026], [-51.446191406249966, -31.557324218749983], [-51.272167968749955, -31.476953125000037], [-51.17431640625, -31.33974609374998], [-51.15751953124996, -31.26679687500004], [-51.16142578124996, -31.11884765625001], [-51.10595703125003, -31.081347656250003], [-50.980078125000034, -31.09423828124997], [-50.95439453124996, -31.05214843750001], [-50.96533203124997, -31.00546875], [-50.94082031249994, -30.903710937499966], [-50.770166015624994, -30.813378906250037], [-50.68930664062495, -30.70419921874999], [-50.71630859374994, -30.425976562499983], [-50.68505859374997, -30.41347656250001], [-50.61484374999998, -30.45683593749996], [-50.58193359375002, -30.438867187500037], [-50.546533203124994, -30.316894531249957], [-50.56352539062499, -30.25361328125004], [-50.646191406249955, -30.236816406249986], [-50.931884765625, -30.37431640625003], [-51.02495117187493, -30.36865234375003], [-51.04038085937498, -30.260644531249966], [-51.179296875000034, -30.211035156249977], [-51.23359374999998, -30.121386718750017], [-51.249853515625034, -30.059960937500023], [-51.29804687499998, -30.03486328124997], [-51.29501953124998, -30.141015625], [-51.28178710937496, -30.24414062499997], [-51.15727539062499, -30.364257812500014], [-51.18754882812493, -30.41191406249996], [-51.24658203124997, -30.467578125000017], [-51.287695312500006, -30.59121093749998], [-51.283056640625034, -30.751562499999963], [-51.31640625, -30.702734374999963], [-51.35908203124998, -30.674511718749983], [-51.37646484374997, -30.846875], [-51.45913085937502, -30.91279296875004], [-51.48525390625002, -30.9775390625], [-51.46367187499996, -31.052636718750023], [-51.506298828124955, -31.104492187500014], [-51.71689453124995, -31.24375], [-51.92680664062499, -31.33886718749997], [-51.97246093749999, -31.383789062499986], [-51.994873046875, -31.489941406250026], [-52.02695312499998, -31.599023437500037], [-52.11982421874998, -31.694921875000034], [-52.19355468749998, -31.885546874999974], [-52.19155273437502, -31.96757812499999], [-52.167089843750006, -32.08847656250002], [-52.12739257812501, -32.1677734375], [-52.190185546875, -32.22080078124998], [-52.27460937499998, -32.323730468749986], [-52.34165039062495, -32.43974609374999], [-52.508496093749926, -32.87529296874999], [-52.652246093749994, -33.137792968750006], [-52.76289062499998, -33.26640625], [-52.92084960937501, -33.401953125], [-53.37060546874997, -33.74218750000003], [-53.39755859374995, -33.737304687500014], [-53.46357421875001, -33.70986328125002], [-53.51884765624999, -33.67724609375004], [-53.531347656250034, -33.65546875000004], [-53.53764648437499, -33.622851562499974], [-53.530371093750006, -33.50029296874996], [-53.531347656250034, -33.1708984375], [-53.511865234374966, -33.10869140625003], [-53.482861328124926, -33.068554687500026], [-53.39521484375001, -33.01035156249998], [-53.31010742187499, -32.927050781249974], [-53.21406249999998, -32.82109375], [-53.12558593749998, -32.73671875], [-53.15727539062496, -32.680078125], [-53.23125, -32.62539062499998], [-53.36274414062498, -32.58115234375002], [-53.48940429687502, -32.50322265624996], [-53.601708984374994, -32.40302734374997], [-53.65361328124999, -32.29873046875004], [-53.70112304687498, -32.18632812499996], [-53.74658203125, -32.097460937499974], [-53.76171875, -32.05683593749997], [-53.80610351562498, -32.03994140624998], [-53.87651367187502, -31.994531249999966], [-53.920605468749926, -31.95234375], [-53.98515624999993, -31.928125], [-54.10043945312498, -31.90156250000004], [-54.220556640625034, -31.855175781249997], [-54.36992187499999, -31.745019531250037], [-54.47768554687502, -31.622753906249997], [-54.53090820312502, -31.54199218749997], [-54.58764648437503, -31.48515625000003], [-54.89599609374997, -31.391210937499977], [-55.036035156249994, -31.27900390625004], [-55.091162109375034, -31.31396484374997], [-55.173535156249926, -31.279589843749974], [-55.25463867187503, -31.225585937499986], [-55.278955078124994, -31.18417968749999], [-55.31328124999999, -31.14169921875005], [-55.34550781249996, -31.09296874999997], [-55.36606445312498, -31.04619140625003], [-55.449560546875034, -30.964453125], [-55.557324218749955, -30.8759765625], [-55.60302734375003, -30.85078125000001], [-55.62714843749998, -30.858105468749997], [-55.650488281250034, -30.89208984375], [-55.66523437500001, -30.92490234375002], [-55.705957031249966, -30.94658203124999], [-55.75634765625, -30.98710937499999], [-55.807763671874994, -31.036718749999977], [-55.87368164062502, -31.069628906250017], [-55.95200195312498, -31.08085937499999], [-56.0046875, -31.079199218750006], [-56.015527343749966, -31.059667968750034], [-56.01845703125002, -30.991894531249983], [-55.998974609374955, -30.837207031250003], [-56.044824218749966, -30.77763671875003], [-56.105859374999966, -30.713769531249994], [-56.176171875, -30.628417968750014], [-56.4072265625, -30.44746093750001], [-56.72167968750003, -30.186914062500037], [-56.83271484374998, -30.107226562499974], [-56.93725585937497, -30.101074218749957], [-57.03271484374997, -30.10996093749999], [-57.120507812499994, -30.144433593749994], [-57.18691406249994, -30.26484375000001], [-57.21445312499995, -30.283398437499983], [-57.38383789062502, -30.280664062500037], [-57.55229492187496, -30.261230468749986], [-57.60888671875003, -30.187792968750045], [-57.563867187499994, -30.139941406249974], [-57.40522460937501, -30.03388671875004], [-57.31748046874998, -29.939453124999986], [-57.30068359374994, -29.856542968749963], [-57.22465820312499, -29.782128906249994], [-57.08935546874997, -29.71621093749998], [-56.938623046874994, -29.594824218750034], [-56.77246093749997, -29.417871093750037], [-56.67153320312502, -29.287304687499997], [-56.635839843750034, -29.203027343749966], [-56.570703125, -29.138085937499966], [-56.475976562499966, -29.09248046875001], [-56.39326171874998, -28.99726562499997], [-56.322363281250034, -28.852441406250037], [-56.225537109374926, -28.73720703125001], [-56.102880859375006, -28.65175781250001], [-56.03422851562496, -28.58085937499996], [-56.019628906250006, -28.52460937500004], [-55.98491210937493, -28.48857421874999], [-55.93017578124997, -28.472851562499983], [-55.903662109375006, -28.443261718749994], [-55.905419921874994, -28.399609374999983], [-55.890527343749994, -28.370019531249994], [-55.85888671875003, -28.35419921874997], [-55.806054687499994, -28.359765625000037], [-55.73198242187502, -28.386621093749994], [-55.68725585937497, -28.38164062499996], [-55.67197265624995, -28.344921875000026], [-55.691503906250034, -28.302832031249977], [-55.74599609375002, -28.25546875000002], [-55.72548828125002, -28.20410156250003], [-55.582373046875006, -28.12099609374998], [-55.47666015624995, -28.089355468750014], [-55.40981445312502, -28.037792968749983], [-55.34648437499999, -27.95595703125001], [-55.24375, -27.898828125], [-55.10151367187501, -27.866796874999963], [-55.063867187499966, -27.835937499999986], [-55.06899414062494, -27.796289062499994], [-55.039941406249994, -27.76777343750004], [-54.955908203125006, -27.74716796875002], [-54.91020507812502, -27.708593749999977], [-54.90278320312501, -27.651953125], [-54.875732421875, -27.59921875], [-54.82910156250003, -27.55058593750003], [-54.777099609375, -27.53251953124999], [-54.71972656250003, -27.54492187500003], [-54.66586914062498, -27.526562500000026], [-54.61542968750001, -27.47714843749999], [-54.55493164062503, -27.4541015625], [-54.484326171874955, -27.45732421875003], [-54.44814453124994, -27.446484375000054], [-54.32700195312495, -27.423535156249997], [-54.26015625000002, -27.38203124999997], [-54.20522460937502, -27.289648437499977], [-54.156445312499926, -27.253808593749966], [-54.11381835937496, -27.27470703124996], [-54.04013671874995, -27.24375], [-53.93535156250002, -27.1611328125], [-53.91562, -27.159570312500037], [-53.83818359375002, -27.121093750000014], [-53.758496093749955, -26.978320312499974], [-53.71728515625, -26.88281249999997], [-53.72714843749995, -26.804687500000043], [-53.753320312499966, -26.74863281249999], [-53.744580078124955, -26.666503906249957], [-53.718164062499994, -26.443164062500017], [-53.71093750000003, -26.351855468749974], [-53.668554687500006, -26.288183593749977], [-53.67128906249994, -26.22509765625], [-53.746923828125006, -26.08369140624997], [-53.8232421875, -25.95957031249999], [-53.86420898437498, -25.74882812499996], [-53.89116210937499, -25.66884765625001], [-53.95478515624998, -25.64765625000004], [-54.01230468749998, -25.57792968749996], [-54.08500976562496, -25.57187], [-54.119238281250006, -25.54521484374996], [-54.15458984374999, -25.523046874999963], [-54.206152343750034, -25.529589843749974], [-54.250097656250006, -25.57041015625002], [-54.33188476562498, -25.57187], [-54.38334960937499, -25.588671875000017], [-54.44394531249998, -25.625], [-54.50151367187499, -25.608300781250023], [-54.537841796875, -25.576464843750017], [-54.615869140624994, -25.576074218750023], [-54.61054687499998, -25.432714843750034], [-54.47314453124997, -25.22021484375], [-54.43623046875001, -25.12128906250001], [-54.4541015625, -25.06523437499996], [-54.412988281249966, -24.86748046874999], [-54.312939453124926, -24.528125], [-54.281005859375, -24.30605468750001], [-54.31728515625002, -24.201269531249977], [-54.31826171874994, -24.128125], [-54.26689453124996, -24.06582031250001], [-54.241796875, -24.047265624999966], [-54.37080078124998, -23.97119140625], [-54.44023437500002, -23.90175781249998], [-54.52958984375002, -23.852148437500006], [-54.62548828125, -23.8125], [-54.67177734375002, -23.829003906249994], [-54.72138671875001, -23.852148437500006], [-54.817285156249994, -23.88847656250003], [-54.926464843749955, -23.95136718749997], [-54.98266601562494, -23.974511718749966], [-55.081884765625006, -23.997656249999977], [-55.1943359375, -24.017480468750023], [-55.28691406249993, -24.004296875], [-55.366308593750034, -23.99101562499996], [-55.41591796875002, -23.95136718749997], [-55.4423828125, -23.86533203125002], [-55.4423828125, -23.792578125000034], [-55.458886718749966, -23.686718750000054], [-55.51845703124994, -23.627246093750017], [-55.53828124999998, -23.580957031249994], [-55.54160156249995, -23.52470703124999], [-55.53496093750002, -23.461914062499986], [-55.51845703124994, -23.41562], [-55.52836914062502, -23.35937], [-55.554833984374994, -23.31962890624996], [-55.54819335937498, -23.250195312500026], [-55.561425781249994, -23.15429687500003], [-55.60112304687499, -23.09472656249997], [-55.620996093749966, -23.025292968750037], [-55.620996093749966, -22.955859375000017], [-55.65073242187498, -22.886425781249983], [-55.65405273437494, -22.81035156250003], [-55.627587890624966, -22.74091796875001], [-55.61767578125, -22.671484375], [-55.64741210937501, -22.621875], [-55.70366210937502, -22.592089843749974], [-55.74663085937499, -22.51269531249997], [-55.753271484375006, -22.410156250000043], [-55.79956054687503, -22.353906250000037], [-55.84916992187499, -22.307617187500014], [-55.90537109374998, -22.307617187500014], [-55.991406249999926, -22.28115234375005], [-56.06748046874998, -22.284472656250017], [-56.18984374999994, -22.28115234375005], [-56.246044921874926, -22.26464843749997], [-56.275781249999966, -22.22822265625001], [-56.35185546874999, -22.178613281250023], [-56.39487304687498, -22.092675781250023], [-56.44780273437502, -22.07617187500003], [-56.52382812499994, -22.102539062499986], [-56.55029296875, -22.13564453124998], [-56.58007812499994, -22.18193359374999], [-56.63300781249998, -22.23486328125003], [-56.70244140625002, -22.231542968749977], [-56.77519531249999, -22.261328125], [-56.844677734374955, -22.26464843749997], [-56.93725585937497, -22.27128906249999], [-57.029882812500006, -22.24482421875001], [-57.142333984375, -22.215039062499983], [-57.23823242187501, -22.195214843750037], [-57.33085937499996, -22.215039062499983], [-57.39365234374998, -22.198437499999983], [-57.47636718749993, -22.18857421875002], [-57.56894531249998, -22.18193359374999], [-57.64169921874995, -22.129003906249963], [-57.721093749999966, -22.09921875000002], [-57.76406250000002, -22.109179687500003], [-57.82031250000003, -22.142285156249997], [-57.87983398437498, -22.13564453124998], [-57.955908203125034, -22.109179687500003], [-57.98569335937498, -22.04638671875], [-57.97905273437493, -22.00664062499999], [-57.9625, -21.966992187499997], [-57.93276367187502, -21.91074218749999], [-57.949316406250006, -21.85117187500002], [-57.94267578124999, -21.79833984375], [-57.92944335937497, -21.75195312499997], [-57.916210937499926, -21.699121093750037], [-57.926171875, -21.649511718749977], [-57.92944335937497, -21.596582031250023], [-57.93608398437499, -21.54697265625005], [-57.945996093749955, -21.49404296875001], [-57.90629882812496, -21.417968749999957], [-57.87324218749998, -21.355078125000034], [-57.89306640625, -21.302246093750014], [-57.886474609375, -21.26582031249997], [-57.86000976562494, -21.20625], [-57.82695312499996, -21.13359375000003], [-57.830224609374994, -20.99794921875001], [-57.86000976562494, -20.918554687500006], [-57.89223632812502, -20.897070312499977], [-57.900488281250006, -20.87304687499997], [-57.88481445312502, -20.84169921874998], [-57.90190429687496, -20.809375], [-57.90849609374996, -20.776367187499986], [-57.89140624999993, -20.747460937499966], [-57.91513671874998, -20.690332031249966], [-57.9625, -20.67382812499997], [-57.97905273437493, -20.65732421874999], [-57.99560546875003, -20.59443359374997], [-58.00883789062496, -20.52167968749997], [-58.00224609374996, -20.465429687499977], [-58.02539062499997, -20.41582031249999], [-58.05844726562495, -20.38613281249998], [-58.091503906249926, -20.33320312500004], [-58.124609375000034, -20.293457031250014], [-58.13779296874995, -20.237304687500043], [-58.15976562499998, -20.164648437499977], [-58.09375, -20.15107421874997], [-58.06762695312497, -20.110351562500014], [-58.021142578124994, -20.05517578124997], [-57.96015625000001, -20.04072265625004], [-57.887597656249966, -20.020410156249994], [-57.860742187499994, -19.97958984375002], [-58.029931640624994, -19.83271484375004], [-58.131494140624994, -19.74453125], [-58.07202148437497, -19.62529296874996], [-57.97167968749994, -19.424218750000037], [-57.87451171874997, -19.22949218749997], [-57.80039062499995, -19.08095703125001], [-57.78144531250001, -19.053515625], [-57.71679687499997, -19.044042968750034], [-57.728613281250006, -18.967382812499963], [-57.730859375, -18.91718750000004], [-57.783105468749994, -18.91425781249997], [-57.725, -18.73320312500003], [-57.63916015624997, -18.475], [-57.57402343749993, -18.279296875000014], [-57.55312, -18.246484375], [-57.50615234374996, -18.237304687499986], [-57.49565429687496, -18.21464843749999], [-57.55205078124999, -18.183105468749957], [-57.58647460937499, -18.122265625], [-57.66166992187493, -17.94736328124999], [-57.78017578125002, -17.67177734374998], [-57.78886718750002, -17.573046875000017], [-57.83247070312501, -17.512109375000037], [-57.90502929687497, -17.53232421874999], [-57.990917968749955, -17.512890625000026], [-58.20556640625, -17.363085937499974], [-58.347753906250006, -17.282128906249994], [-58.39599609374997, -17.234277343750023], [-58.417382812499994, -17.08056640624997], [-58.459814453125006, -16.910742187500006], [-58.478125, -16.70068359375003], [-58.470605468749994, -16.650195312500045], [-58.35039062500002, -16.49082031249999], [-58.35078125000001, -16.410253906250006], [-58.34057617187497, -16.339941406249977], [-58.34560546875002, -16.284375], [-58.375390624999966, -16.283593749999966], [-58.423681640625034, -16.30791015625003], [-58.49658203124994, -16.32666015625003], [-58.537939453125034, -16.32822265624999], [-58.95727539062503, -16.31318359375004], [-59.434277343749926, -16.295996093750006], [-59.83115234374998, -16.28173828125003], [-60.17558593749996, -16.26933593749999], [-60.187207031249955, -16.132128906250017], [-60.206640625, -15.90195312500002], [-60.220410156249955, -15.738671874999966], [-60.242333984374994, -15.479589843750034], [-60.38046874999998, -15.318261718750023], [-60.53046874999998, -15.143164062499977], [-60.58320312499998, -15.098339843749983], [-60.402001953124994, -15.092773437500014], [-60.273339843749994, -15.088769531249994], [-60.29887695312496, -14.618554687500037], [-60.33803710937494, -14.570507812500011], [-60.372705078124994, -14.41875], [-60.39624023437497, -14.332812499999989], [-60.460156249999955, -14.263085937499994], [-60.47465820312496, -14.184765625000026], [-60.462988281250006, -14.13242187500002], [-60.42807617187498, -14.1], [-60.40498046874998, -14.019238281249969], [-60.42236328124997, -13.937988281250028], [-60.460156249999955, -13.862402343749991], [-60.506591796875, -13.78984375], [-60.59531249999995, -13.745312500000026], [-60.72236328124998, -13.664355468749974], [-60.914501953124955, -13.561425781249966], [-61.077001953125034, -13.489746093750014], [-61.129150390625, -13.498535156250028], [-61.41606445312502, -13.526562499999969], [-61.511572265625006, -13.541210937500011], [-61.57568359375003, -13.524804687499966], [-61.789941406249966, -13.525585937500026], [-61.87412109374998, -13.470410156249983], [-61.944726562499966, -13.40625], [-62.09477539062499, -13.241992187499989], [-62.118017578125006, -13.15976562500002], [-62.17607421874993, -13.133691406250037], [-62.26391601562497, -13.14365234375002], [-62.35283203124999, -13.132421874999963], [-62.525537109374994, -13.064257812500017], [-62.68706054687496, -12.994335937499983], [-62.765478515625034, -12.99726562500004], [-62.83515625000001, -12.953710937499963], [-62.957910156249966, -12.847070312499994], [-63.01518554687502, -12.80556640624998], [-63.041357421875006, -12.750390625000023], [-63.067480468750006, -12.669140624999983], [-63.116796875, -12.651660156249974], [-63.18066406249997, -12.666210937500011], [-63.249755859375, -12.70791015624998], [-63.34667968749994, -12.680078125], [-63.46523437499994, -12.605175781250011], [-63.54189453125002, -12.546679687500003], [-63.585644531249955, -12.518945312500037], [-63.68857421874998, -12.478027343749957], [-63.7880859375, -12.469433593749983], [-63.938574218750006, -12.5296875], [-64.06162109375003, -12.505078124999955], [-64.255029296875, -12.483300781249966], [-64.42050781249995, -12.439746093749974], [-64.48076171874999, -12.326171875000014], [-64.51342773437497, -12.250976562499972], [-64.611669921875, -12.203906249999974], [-64.69003906249998, -12.146484375], [-64.783447265625, -12.059375], [-64.82988281249996, -12.030273437499957], [-64.91435546874993, -12.005957031249977], [-64.99252929687498, -11.975195312500006], [-65.00122070312497, -11.920019531249963], [-65.03027343750003, -11.847363281249997], [-65.037109375, -11.829394531249974], [-65.09028320312498, -11.741210937499943], [-65.11513671875, -11.735058593750026], [-65.14267578125, -11.75234375], [-65.16337890624996, -11.765136718750028], [-65.18574218749998, -11.749511718749957], [-65.18974609374999, -11.710058593749991], [-65.175390625, -11.646875], [-65.20620117187497, -11.58056640625], [-65.28227539062502, -11.511035156249946], [-65.32202148437494, -11.439160156249969], [-65.32548828124993, -11.364746093749986], [-65.3423828125, -11.315039062499991], [-65.37285156249999, -11.289941406250023], [-65.389892578125, -11.246289062500011], [-65.39360351562496, -11.184277343749997], [-65.37158203125, -11.110351562499943], [-65.32377929687496, -11.024804687500009], [-65.33403320312499, -10.892773437500026], [-65.40229492187495, -10.714746093749994], [-65.43999023437499, -10.586230468750017], [-65.44711914062503, -10.507421875000034], [-65.4369140625, -10.449023437499946], [-65.39545898437498, -10.392285156250026], [-65.31308593749998, -10.253027343749991], [-65.29858398437497, -10.146777343750017], [-65.324560546875, -10.026953125000034], [-65.32812, -9.935546874999972], [-65.30932617187503, -9.872656250000034], [-65.33789062499997, -9.790234375000026], [-65.39614257812494, -9.712402343749986], [-65.43676757812497, -9.710449218750028], [-65.49199218749993, -9.731738281250017], [-65.55869140625003, -9.797460937499991], [-65.63710937500002, -9.809082031249957], [-65.706787109375, -9.768457031250037], [-65.92470703125, -9.785449218750031], [-66.26357421875, -9.826074218749966], [-66.39921875000002, -9.868164062500014], [-66.47890625, -9.886132812500023], [-66.57534179687502, -9.899902343749986], [-66.72998046875, -9.975488281250023], [-67.11152343750001, -10.268945312500037], [-67.19047851562502, -10.31142578124998], [-67.28046874999995, -10.317285156250023], [-67.33271484374995, -10.357910156249957], [-67.41694335937495, -10.389843749999969], [-67.58242187500002, -10.505957031250006], [-67.66665039062494, -10.598925781250031], [-67.72177734374998, -10.683105468749943], [-67.78569335937496, -10.686035156250014], [-67.83500976562496, -10.662792968749983], [-67.99169921875, -10.674414062499949], [-68.07167968749994, -10.703125], [-68.15864257812498, -10.785058593750023], [-68.26660156249997, -10.933105468749986], [-68.31113281249998, -10.975195312500034], [-68.39799804687499, -11.01875], [-68.49833984375002, -11.054785156249991], [-68.62265625000003, -11.109179687499974], [-68.678369140625, -11.11279296875], [-68.72749023437498, -11.122460937500009], [-68.769921875, -11.097656250000028], [-68.78408203124997, -11.044628906249969], [-68.84833984374998, -11.01113281249998], [-69.00166015624995, -10.994335937500026], [-69.228515625, -10.955664062499963], [-69.46254882812497, -10.948144531250023], [-69.57861328125, -10.951757812499963], [-69.67402343749998, -10.9541015625], [-69.83979492187501, -10.93339843749996], [-69.96035156249997, -10.92988281250004], [-70.06630859374997, -10.982421875], [-70.22006835937503, -11.04765625], [-70.29038085937498, -11.064257812499974], [-70.34199218750001, -11.066699218750017], [-70.39228515624995, -11.058593749999972], [-70.45087890624998, -11.024804687500009], [-70.53325195312496, -10.946875], [-70.59653320312498, -10.976855468750017], [-70.642333984375, -11.010253906249986], [-70.64155273437501, -10.840820312500014], [-70.64033203124993, -10.586035156249977], [-70.63935546875001, -10.361328125000028], [-70.638525390625, -10.181542968749994], [-70.63759765625, -9.971777343749977], [-70.63691406249995, -9.823730468750014], [-70.59379882812496, -9.767480468750009], [-70.56723632812498, -9.704589843749986], [-70.59916992187499, -9.620507812500009], [-70.59223632812501, -9.543457031250028], [-70.57016601562503, -9.489843750000034], [-70.54111328124998, -9.4375], [-70.60791015625, -9.463671875000031], [-70.63691406249995, -9.478222656249969], [-70.6724609375, -9.51796875], [-70.75849609374995, -9.571679687500009], [-70.81625976562498, -9.625292968750003], [-70.88452148437494, -9.669042968750034], [-70.97075195312502, -9.765722656250006], [-71.041748046875, -9.81875], [-71.11528320312499, -9.852441406250009], [-71.237939453125, -9.966015624999955], [-71.33940429687499, -9.988574218750031], [-71.6080078125, -10.00605468750004], [-71.887451171875, -10.005566406250026], [-72.14296875, -10.005175781250031], [-72.18159179687495, -10.003710937500003], [-72.1791015625, -9.910156249999943], [-72.17285156249997, -9.844042968749974], [-72.25996093749995, -9.77431640624998], [-72.26582031249998, -9.6884765625], [-72.28901367187501, -9.629199218750003], [-72.31806640624995, -9.556640624999957], [-72.37905273437497, -9.51015625], [-72.46474609375, -9.492187499999972], [-72.60546875, -9.452050781249966], [-72.81425781249999, -9.410351562499997], [-73.01376953125003, -9.407421875000026], [-73.20942382812493, -9.411425781249946], [-73.08984375, -9.26572265625002], [-72.970361328125, -9.120117187500028], [-72.97402343750002, -8.9931640625], [-73.07050781249995, -8.8828125], [-73.12255859375, -8.81406250000002], [-73.20312, -8.719335937499991], [-73.30244140624995, -8.654003906250011], [-73.35673828125002, -8.566992187499963], [-73.35170898437497, -8.514160156250028], [-73.36040039062496, -8.479296875000031], [-73.39814453125001, -8.458984374999986], [-73.43588867187498, -8.42705078124996], [-73.48813476562495, -8.392187499999963], [-73.54912109374993, -8.34580078125002], [-73.54912109374993, -8.299316406249957], [-73.57236328124998, -8.249902343750023], [-73.61010742187503, -8.191894531250014], [-73.61010742187503, -8.145410156249952], [-73.64492187500002, -8.072851562500006], [-73.68266601562496, -8.02060546875002], [-73.72041015624993, -7.985742187500023], [-73.77558593749998, -7.936425781250009], [-73.77270507812503, -7.895703124999983], [-73.73203125, -7.875390625], [-73.714599609375, -7.82900390624998], [-73.72041015624993, -7.782519531250017], [-73.76689453124999, -7.753515624999963], [-73.82207031249996, -7.738964843750026], [-73.89462890624998, -7.654785156250014], [-73.94687, -7.611230468750023], [-73.98173828124996, -7.58505859375002], [-74.00205078125003, -7.556054687499966], [-73.98173828124996, -7.535742187500006], [-73.95849609374994, -7.506640625000031], [-73.95268554687502, -7.460253906249989], [-73.96430664062498, -7.416699218749997], [-73.96430664062498, -7.378906250000028], [-73.92944335937497, -7.367285156249977], [-73.89174804687502, -7.373144531250006], [-73.85400390624997, -7.349902343749989], [-73.80463867187495, -7.341210937499994], [-73.74946289062498, -7.335351562500037], [-73.72041015624993, -7.309277343749969], [-73.72333984375001, -7.262792968750006], [-73.758203125, -7.172753906249952], [-73.79301757812499, -7.135058593750003], [-73.80463867187495, -7.079882812499946], [-73.77626953124994, -6.973535156249952], [-73.75810546874999, -6.90576171875], [-73.69453124999998, -6.833789062500003], [-73.49990234374997, -6.679492187500003], [-73.32548828124996, -6.574707031249972], [-73.24033203125, -6.56406250000002], [-73.17744140624998, -6.525195312500017], [-73.137353515625, -6.4658203125], [-73.12631835937495, -6.40087890625], [-73.13535156250003, -6.34433593750002], [-73.16772460937497, -6.260644531250023], [-73.20649414062495, -6.156445312500026], [-73.23554687500001, -6.098437500000017], [-73.209375, -6.028710937500023], [-73.16289062499996, -5.933398437499974], [-73.06806640624998, -5.789550781249972], [-72.97988281249997, -5.634863281249991], [-72.97021484374994, -5.589648437500017], [-72.95893554687495, -5.495214843749963], [-72.91826171874993, -5.302539062499974], [-72.89580078124999, -5.198242187499943], [-72.90747070312497, -5.157714843749957], [-72.88706054687498, -5.122753906250026], [-72.83193359374994, -5.09375], [-72.69873046874997, -5.067187499999989], [-72.60834960937495, -5.009570312499974], [-72.46899414062497, -4.901269531250023], [-72.35283203124993, -4.786035156249994], [-72.25678710937501, -4.74892578124998], [-72.08251953125003, -4.642285156250011], [-71.98242187499997, -4.574609375], [-71.94316406249996, -4.553320312500006], [-71.8447265625, -4.504394531249986], [-71.66835937499994, -4.487304687499972], [-71.521337890625, -4.469726562499943], [-71.43828125, -4.437597656249977], [-71.316796875, -4.424316406250014], [-71.23500976562494, -4.388183593750028], [-71.14423828125001, -4.387207031250014], [-70.97368164062499, -4.350488281249994], [-70.91562, -4.295312500000023], [-70.86601562499999, -4.229589843749963], [-70.79951171874995, -4.173339843749957], [-70.72158203124997, -4.15888671875004], [-70.63457031250002, -4.168652343749983], [-70.53066406249997, -4.167578125000034], [-70.40463867187498, -4.150097656250026], [-70.34365234375, -4.193652343750017], [-70.31689453124994, -4.246972656250037], [-70.23916015625002, -4.30117187499998], [-70.18398437499997, -4.298144531249989], [-70.12880859375, -4.286621093749943], [-70.05332031249998, -4.333105468750006], [-70.00395507812496, -4.327246093749963], [-69.97202148437503, -4.30117187499998], [-69.96591796875003, -4.2359375], [-69.94819335937498, -4.200585937500009], [-69.91103515624997, -3.996582031250014], [-69.849755859375, -3.659863281249983], [-69.79414062499995, -3.354589843749963], [-69.73261718749993, -3.016699218749949], [-69.66904296875003, -2.667675781249997], [-69.60468749999998, -2.314257812500017], [-69.55185546874998, -2.02421875], [-69.50644531249995, -1.774902343750014], [-69.47861328124998, -1.621972656250023], [-69.43491210937503, -1.421679687499989], [-69.41787109375002, -1.24570312500002], [-69.40024414062498, -1.194921874999977], [-69.41142578124996, -1.152246093749994], [-69.44912109375, -1.091601562499974], [-69.44873046875, -1.064941406249972], [-69.4443359375, -1.02958984374996], [-69.44873046875, -0.998730468749983], [-69.48842773437502, -0.965722656250009], [-69.519287109375, -0.945800781250028], [-69.54355468749995, -0.917187499999969], [-69.55458984375, -0.877441406249957], [-69.57441406249995, -0.837792968749966], [-69.58325195312497, -0.795898437499957], [-69.61191406250003, -0.762792968749963], [-69.62070312499995, -0.72089843750004], [-69.60087890625002, -0.68125], [-69.59204101562497, -0.63935546875004], [-69.60087890625002, -0.599609375000028], [-69.61191406250003, -0.553320312500006], [-69.63398437500001, -0.50927734375], [-69.66748046874997, -0.482421874999957], [-69.74746093750002, -0.452539062499994], [-69.82792968749999, -0.381347656249972], [-69.92275390624994, -0.317480468750006], [-70.04404296874995, -0.196191406249994], [-70.07050781249993, -0.13886718750004], [-70.07094726562502, 0.018554687499972], [-70.06572265624993, 0.189355468750037], [-70.05791015624993, 0.44736328125002], [-70.05390624999993, 0.578613281250028], [-69.98544921875, 0.585839843749994], [-69.92509765624999, 0.589404296875003], [-69.862060546875, 0.598486328124991], [-69.80712890625, 0.607470703125045], [-69.75673828124997, 0.62636718749998], [-69.71889648437497, 0.649804687499966], [-69.67382812499994, 0.665087890624974], [-69.63872070312499, 0.659667968750014], [-69.60361328125003, 0.680371093749969], [-69.56484374999994, 0.700195312500014], [-69.52705078124998, 0.716406250000034], [-69.47211914062498, 0.72993164062504], [-69.42080078125, 0.698388671875009], [-69.3919921875, 0.66689453124998], [-69.35864257812494, 0.651562499999969], [-69.32714843750003, 0.655175781249994], [-69.30551757812495, 0.652441406249963], [-69.28300781249999, 0.627246093749989], [-69.25419921874999, 0.625439453124969], [-69.21279296875, 0.629931640625003], [-69.174072265625, 0.635351562500034], [-69.15605468749999, 0.642529296874997], [-69.15332031249994, 0.65878906250002], [-69.16323242187502, 0.686669921875009], [-69.17675781250003, 0.712841796875011], [-69.16596679687495, 0.753320312500009], [-69.16503906250003, 0.801953125000054], [-69.16323242187502, 0.8640625], [-69.19384765624994, 0.898291015624963], [-69.22446289062498, 0.963134765625028], [-69.25869140625002, 1.015380859375014], [-69.31181640624999, 1.050488281249969], [-69.36137695312496, 1.064013671874974], [-69.40278320312498, 1.042382812500009], [-69.44150390624995, 1.038818359374986], [-69.47031249999995, 1.058593750000028], [-69.51713867187499, 1.059472656250023], [-69.56757812499998, 1.065771484374977], [-69.62089843749999, 1.073242187499986], [-69.71699218749995, 1.059082031250028], [-69.751318359375, 1.076611328125054], [-69.79814453124996, 1.078417968749974], [-69.85214843750003, 1.05952148437504], [-69.85078124999993, 1.308789062500011], [-69.84946289062503, 1.54389648437504], [-69.84858398437493, 1.708740234375043], [-69.79995117187497, 1.705175781250034], [-69.73959960937503, 1.734863281250043], [-69.650048828125, 1.739453125], [-69.58125, 1.770751953124986], [-69.54291992187501, 1.773242187500045], [-69.47016601562493, 1.757910156250034], [-69.39433593749993, 1.725781249999969], [-69.31972656250002, 1.721240234375017], [-69.12426757812497, 1.721289062500034], [-68.91318359374998, 1.721386718750054], [-68.67846679687503, 1.721484374999974], [-68.44345703125, 1.721582031249994], [-68.23955078124996, 1.721679687500014], [-68.17656249999999, 1.719824218749991], [-68.21328125000002, 1.774560546875051], [-68.25595703125, 1.845507812500017], [-68.23945312499993, 1.901367187500028], [-68.21835937499998, 1.957617187500034], [-68.19379882812495, 1.987011718749983], [-68.1302734375, 1.955761718750011], [-68.07705078124997, 1.860107421874972], [-68.03286132812494, 1.78803710937504], [-67.98974609374994, 1.752539062500006], [-67.93623046874998, 1.748486328124969], [-67.87553710937496, 1.760595703125048], [-67.815087890625, 1.790087890625017], [-67.71186523437501, 1.922119140625], [-67.60922851562498, 2.035058593750009], [-67.55605468749997, 2.072998046875], [-67.49965820312494, 2.107910156250014], [-67.45776367187503, 2.121142578125045], [-67.40043945312499, 2.116699218750028], [-67.35195312499997, 2.085839843750051], [-67.32060546874996, 2.03208007812502], [-67.20581054687503, 1.844824218749977], [-67.11923828124998, 1.703613281249986], [-67.09013671874999, 1.615576171874991], [-67.08828124999997, 1.400585937499969], [-67.09365234375, 1.21000976562496], [-67.082275390625, 1.185400390625006], [-67.06523437499999, 1.178369140624994], [-66.87602539062499, 1.223046875000037], [-66.61904296874994, 0.992138671874983], [-66.42924804687502, 0.82167968749998], [-66.34711914062498, 0.7671875], [-66.30166015624994, 0.751953124999986], [-66.19121093750002, 0.76328125], [-66.06005859375003, 0.78535156250004], [-65.996337890625, 0.80976562500004], [-65.92587890624995, 0.863134765624991], [-65.81132812499999, 0.937255859375], [-65.718115234375, 0.978027343750043], [-65.68144531249999, 0.983447265624989], [-65.64467773437497, 0.970361328124994], [-65.566015625, 0.926074218750031], [-65.52299804687493, 0.843408203124966], [-65.56269531249995, 0.747509765624969], [-65.55605468750002, 0.687988281250014], [-65.47338867187497, 0.691259765624977], [-65.40722656249997, 0.790478515625026], [-65.36083984374994, 0.868652343750057], [-65.26396484375002, 0.931884765625057], [-65.16962890624998, 1.022216796874986], [-65.10375976562497, 1.108105468749983], [-65.02656249999998, 1.158447265625028], [-64.91010742187495, 1.219726562499986], [-64.81796875, 1.257128906249974], [-64.73154296875, 1.253320312499994], [-64.66743164062498, 1.293847656249994], [-64.58437, 1.369873046875028], [-64.52626953125002, 1.431005859375048], [-64.48603515624998, 1.452783203125037], [-64.40512695312503, 1.446875], [-64.30419921874997, 1.455273437500011], [-64.20502929687493, 1.52949218750004], [-64.11484375000003, 1.619287109375037], [-64.06704101562497, 1.770507812500014], [-64.03544921874993, 1.904443359375037], [-64.00849609374995, 1.931591796874969], [-63.975781249999955, 1.953027343749994], [-63.937158203124994, 1.966992187499997], [-63.84448242187503, 1.976708984375023], [-63.68212890625, 2.048144531250003], [-63.570263671874926, 2.120507812500009], [-63.46391601562493, 2.136035156249974], [-63.43251953124994, 2.155566406250045], [-63.393945312499994, 2.222509765625006], [-63.374853515625006, 2.340429687500048], [-63.389257812500006, 2.411914062500045], [-63.58461914062502, 2.433935546874991], [-63.712548828124966, 2.434033203125011], [-63.924169921875006, 2.452441406250031], [-64.02490234375, 2.481884765624997], [-64.04658203124998, 2.502392578124997], [-64.048828125, 2.525097656250011], [-64.0287109375, 2.576074218749994], [-64.00903320312497, 2.67187], [-64.03779296874998, 2.801513671875014], [-64.14355468750003, 3.004882812500057], [-64.21884765625, 3.2046875], [-64.22875976562497, 3.343994140625043], [-64.22705078124997, 3.491210937500014], [-64.22109375000002, 3.587402343749972], [-64.27529296874994, 3.662695312500034], [-64.56791992187496, 3.899804687500023], [-64.66899414062496, 4.01181640625002], [-64.70258789062495, 4.089306640624997], [-64.81787109375, 4.232275390624991], [-64.788671875, 4.276025390625023], [-64.72226562499998, 4.274414062500057], [-64.66552734374997, 4.237109375], [-64.61367187499997, 4.157714843749986], [-64.57636718750001, 4.139892578125], [-64.52553710937494, 4.13999023437502], [-64.25566406249996, 4.140332031249997], [-64.19248046874995, 4.126855468750009], [-64.154296875, 4.100146484374989], [-64.12172851562502, 4.066992187499977], [-64.07338867187494, 3.974414062500045], [-64.02148437500003, 3.929101562500051], [-63.914648437500006, 3.930664062500014], [-63.746972656249966, 3.93256835937504], [-63.65292968749998, 3.940820312500037], [-63.59663085937498, 3.915039062500028], [-63.526806640624955, 3.893701171875023], [-63.37978515624994, 3.942871093750014], [-63.33867187500002, 3.943896484375045], [-63.29472656249993, 3.92226562499998], [-63.13623046874997, 3.756445312500048], [-63.04531250000002, 3.686474609374997], [-62.96865234374994, 3.593945312499983], [-62.85698242187502, 3.593457031249969], [-62.764599609374926, 3.672949218749991], [-62.73994140624998, 3.940332031250023], [-62.71210937499998, 4.01791992187502], [-62.66533203124996, 4.039648437500006], [-62.60976562500002, 4.042285156250017], [-62.5439453125, 4.084326171874963], [-62.47255859374994, 4.138525390624991], [-62.41064453124994, 4.156738281249972], [-62.153125, 4.098388671874986], [-62.08159179687496, 4.126318359374991], [-61.82084960937496, 4.197021484375], [-61.55424804687499, 4.287792968750026], [-61.47939453124994, 4.40224609374998], [-61.36752929687498, 4.433007812500037], [-61.28007812500002, 4.516894531249974], [-61.20942382812501, 4.508056640625043], [-61.102441406249966, 4.504687499999974], [-61.036279296874994, 4.519335937500031], [-61.00283203125002, 4.535253906249991], [-60.96640624999998, 4.574707031250028], [-60.90625, 4.68681640624996], [-60.833398437499966, 4.729199218749983], [-60.74174804687493, 4.774121093749983], [-60.67915039062498, 4.827099609375026], [-60.627587890624966, 4.89252929687504], [-60.603857421875006, 4.94936523437498], [-60.60449218749994, 4.99458007812504], [-60.63500976562494, 5.081982421874997], [-60.671972656250034, 5.164355468749989], [-60.71196289062499, 5.191552734375023], [-60.742138671874926, 5.202050781250037], [-60.6513671875, 5.221142578125011], [-60.576416015625, 5.192480468750034], [-60.45952148437499, 5.188085937500034], [-60.40878906249998, 5.21015625], [-60.33520507812497, 5.199316406250006], [-60.241650390624926, 5.257958984374966]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Brazil&quot;, &quot;abbrev_len&quot;: 6, &quot;adm0_a3&quot;: &quot;BRA&quot;, &quot;adm0_a3_is&quot;: &quot;BRA&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BRA&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Brazil&quot;, &quot;brk_a3&quot;: &quot;BRA&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Brazil&quot;, &quot;continent&quot;: &quot;South America&quot;, &quot;economy&quot;: &quot;3. Emerging region: BRIC&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Federative Republic of Brazil&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 1993000, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Brazil&quot;, &quot;gu_a3&quot;: &quot;BRA&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;3. Upper middle income&quot;, &quot;iso_a2&quot;: &quot;BR&quot;, &quot;iso_a3&quot;: &quot;BRA&quot;, &quot;iso_n3&quot;: &quot;076&quot;, &quot;labelrank&quot;: 2, &quot;lastcensus&quot;: 2010, &quot;level&quot;: 2, &quot;long_len&quot;: 6, &quot;mapcolor13&quot;: 7, &quot;mapcolor7&quot;: 5, &quot;mapcolor8&quot;: 6, &quot;mapcolor9&quot;: 5, &quot;name&quot;: &quot;Brazil&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 6, &quot;name_long&quot;: &quot;Brazil&quot;, &quot;name_sort&quot;: &quot;Brazil&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 198739269, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BR&quot;, &quot;region_un&quot;: &quot;Americas&quot;, &quot;region_wb&quot;: &quot;Latin America \\u0026 Caribbean&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BRA&quot;, &quot;sovereignt&quot;: &quot;Brazil&quot;, &quot;su_a3&quot;: &quot;BRA&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;South America&quot;, &quot;subunit&quot;: &quot;Brazil&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;076&quot;, &quot;wb_a2&quot;: &quot;BR&quot;, &quot;wb_a3&quot;: &quot;BRA&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[-59.493310546874994, 13.081982421874997], [-59.521875, 13.062207031249997], [-59.611328125, 13.102099609374989], [-59.6427734375, 13.150292968749994], [-59.6466796875, 13.303125], [-59.59160156249999, 13.317675781250003], [-59.487890625, 13.196826171874989], [-59.427636718749994, 13.152783203124997], [-59.493310546874994, 13.081982421874997]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Barb.&quot;, &quot;abbrev_len&quot;: 5, &quot;adm0_a3&quot;: &quot;BRB&quot;, &quot;adm0_a3_is&quot;: &quot;BRB&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BRB&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Barbados&quot;, &quot;brk_a3&quot;: &quot;BRB&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Barbados&quot;, &quot;continent&quot;: &quot;North America&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Barbados&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 5425, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Barbados&quot;, &quot;gu_a3&quot;: &quot;BRB&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;2. High income: nonOECD&quot;, &quot;iso_a2&quot;: &quot;BB&quot;, &quot;iso_a3&quot;: &quot;BRB&quot;, &quot;iso_n3&quot;: &quot;052&quot;, &quot;labelrank&quot;: 5, &quot;lastcensus&quot;: 2010, &quot;level&quot;: 2, &quot;long_len&quot;: 8, &quot;mapcolor13&quot;: 3, &quot;mapcolor7&quot;: 4, &quot;mapcolor8&quot;: 1, &quot;mapcolor9&quot;: 5, &quot;name&quot;: &quot;Barbados&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 8, &quot;name_long&quot;: &quot;Barbados&quot;, &quot;name_sort&quot;: &quot;Barbados&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 284589, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BB&quot;, &quot;region_un&quot;: &quot;Americas&quot;, &quot;region_wb&quot;: &quot;Latin America \\u0026 Caribbean&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BRB&quot;, &quot;sovereignt&quot;: &quot;Barbados&quot;, &quot;su_a3&quot;: &quot;BRB&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Caribbean&quot;, &quot;subunit&quot;: &quot;Barbados&quot;, &quot;tiny&quot;: 3, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;052&quot;, &quot;wb_a2&quot;: &quot;BB&quot;, &quot;wb_a3&quot;: &quot;BRB&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[115.02675781250005, 4.899707031249989], [115.1400390625, 4.899755859374991], [115.16845703125003, 4.866699218750014], [115.2279296875, 4.750585937499977], [115.26669921875006, 4.633984375000026], [115.27929687499997, 4.456347656249989], [115.32675781250006, 4.380761718750051], [115.31923828125, 4.365283203125003], [115.290625, 4.352587890624989], [115.24667968750006, 4.34721679687496], [115.17060546875004, 4.364208984375054], [115.10703125000006, 4.390429687499974], [115.05156250000002, 4.582666015624966], [115.02675781250005, 4.691357421874997], [115.02880859375003, 4.821142578124963], [115.02675781250005, 4.899707031249989]]], [[[115.02675781250005, 4.899707031249989], [114.9447265625, 4.85625], [114.86455078125002, 4.801757812500014], [114.78417968749997, 4.754833984375054], [114.74667968750006, 4.718066406250017], [114.75996093750004, 4.66650390625], [114.77929687499997, 4.553027343749974], [114.79013671875006, 4.463916015625017], [114.81826171875, 4.42875976562496], [114.84023437500005, 4.393212890625009], [114.83105468749997, 4.354492187500028], [114.78349609375002, 4.280761718750014], [114.81044921875, 4.266503906250037], [114.77617187500007, 4.168798828125034], [114.725, 4.096533203124963], [114.65410156250007, 4.037646484375045], [114.60830078125005, 4.023974609375017], [114.57177734374997, 4.049072265624972], [114.51220703125003, 4.113574218749974], [114.44707031250007, 4.203564453125011], [114.41660156250006, 4.255859375], [114.3229492187501, 4.262792968749991], [114.28964843750006, 4.304199218749986], [114.28759765624997, 4.354736328124986], [114.26103515625002, 4.414257812500026], [114.22412109375003, 4.47788085937502], [114.16884765625005, 4.526953125], [114.09511718750005, 4.565234374999974], [114.0638671875, 4.592675781249966], [114.17792968750004, 4.590966796874966], [114.29941406250012, 4.607177734374986], [114.42441406250006, 4.660400390625], [114.54472656250007, 4.724560546875011], [114.6458984375, 4.798144531249989], [114.74082031250006, 4.881005859374994], [114.840625, 4.946386718749991], [114.99541015625002, 5.022363281250023], [115.04765625000002, 5.016357421875043], [115.0470703125001, 4.962451171874974], [115.02675781250005, 4.899707031249989]]]], &quot;type&quot;: &quot;MultiPolygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Brunei&quot;, &quot;abbrev_len&quot;: 6, &quot;adm0_a3&quot;: &quot;BRN&quot;, &quot;adm0_a3_is&quot;: &quot;BRN&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BRN&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Brunei&quot;, &quot;brk_a3&quot;: &quot;BRN&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Brunei&quot;, &quot;continent&quot;: &quot;Asia&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Negara Brunei Darussalam&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 20250, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Brunei&quot;, &quot;gu_a3&quot;: &quot;BRN&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;2. High income: nonOECD&quot;, &quot;iso_a2&quot;: &quot;BN&quot;, &quot;iso_a3&quot;: &quot;BRN&quot;, &quot;iso_n3&quot;: &quot;096&quot;, &quot;labelrank&quot;: 6, &quot;lastcensus&quot;: 2001, &quot;level&quot;: 2, &quot;long_len&quot;: 17, &quot;mapcolor13&quot;: 12, &quot;mapcolor7&quot;: 4, &quot;mapcolor8&quot;: 6, &quot;mapcolor9&quot;: 6, &quot;name&quot;: &quot;Brunei&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 6, &quot;name_long&quot;: &quot;Brunei Darussalam&quot;, &quot;name_sort&quot;: &quot;Brunei&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 388190, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BN&quot;, &quot;region_un&quot;: &quot;Asia&quot;, &quot;region_wb&quot;: &quot;East Asia \\u0026 Pacific&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BRN&quot;, &quot;sovereignt&quot;: &quot;Brunei&quot;, &quot;su_a3&quot;: &quot;BRN&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;South-Eastern Asia&quot;, &quot;subunit&quot;: &quot;Brunei&quot;, &quot;tiny&quot;: 2, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;096&quot;, &quot;wb_a2&quot;: &quot;BN&quot;, &quot;wb_a3&quot;: &quot;BRN&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[91.63193359375003, 27.759960937499997], [91.62587890625002, 27.7373046875], [91.59765625, 27.677001953125], [91.57929687500001, 27.61142578125], [91.5947265625, 27.557666015624996], [91.65810546875002, 27.493603515624997], [91.74306640625002, 27.442529296874994], [91.85126953125001, 27.438623046874994], [91.95097656249999, 27.458300781249996], [91.99082031250003, 27.4501953125], [92.044921875, 27.364697265624997], [92.08339843750002, 27.290625], [92.03115234375002, 27.214306640624997], [92.00253906250003, 27.147363281249994], [91.99228515625003, 27.099902343749996], [91.99863281250003, 27.079296875], [92.03085937500003, 27.040820312499996], [92.06816406249999, 26.9751953125], [92.07343750000001, 26.91484375], [92.04970703125002, 26.874853515625], [91.99833984374999, 26.85498046875], [91.94375, 26.86083984375], [91.89863281250001, 26.860058593749997], [91.84208984374999, 26.852978515624997], [91.75371093749999, 26.830761718749997], [91.67158203125001, 26.802001953125], [91.517578125, 26.807324218749997], [91.45585937499999, 26.866894531249997], [91.4267578125, 26.867089843749994], [91.28652343750002, 26.789941406249994], [91.13388671875003, 26.803417968749997], [90.85576171874999, 26.777734375], [90.73964843750002, 26.771679687499997], [90.62031250000001, 26.780224609374997], [90.55986328124999, 26.796582031249997], [90.44765625000002, 26.85078125], [90.34589843750001, 26.890332031249997], [90.24238281250001, 26.854150390624994], [90.2060546875, 26.847509765625], [90.12294921875002, 26.754589843749997], [89.94316406249999, 26.723925781249996], [89.76386718750001, 26.7015625], [89.7109375, 26.713916015624996], [89.60996093750003, 26.719433593749997], [89.60615234375001, 26.741113281249994], [89.60917968749999, 26.76220703125], [89.58613281250001, 26.778955078124994], [89.54511718750001, 26.796240234375], [89.474609375, 26.803417968749997], [89.38417968750002, 26.8265625], [89.33212890625003, 26.8486328125], [89.14824218749999, 26.816162109375], [89.04091796875002, 26.865039062499996], [88.91914062500001, 26.9322265625], [88.85761718750001, 26.961474609374996], [88.83515625000001, 27.065576171874994], [88.81357421875003, 27.099023437499994], [88.765625, 27.134228515624997], [88.73876953125, 27.175585937499996], [88.76035156250003, 27.218115234375], [88.88164062499999, 27.2974609375], [88.89140624999999, 27.316064453124994], [88.94755859374999, 27.464013671874994], [89.02548828125003, 27.517871093749996], [89.10234374999999, 27.592578125], [89.16044921874999, 27.711279296875], [89.27265625000001, 27.833154296874994], [89.39589843750002, 27.958154296874994], [89.48066406250001, 28.059960937499994], [89.53691406249999, 28.107421875], [89.65273437500002, 28.15830078125], [89.74980468749999, 28.188183593749997], [89.81689453125, 28.256298828124997], [89.89785156250002, 28.294140625], [89.98105468750003, 28.311181640624994], [90.1044921875, 28.302050781249996], [90.22080078125003, 28.277734375], [90.34824218750003, 28.243945312499996], [90.36298828125001, 28.216503906249997], [90.35214843750003, 28.168164062499997], [90.33378906249999, 28.119140625], [90.33310546875003, 28.093994140625], [90.35273437500001, 28.080224609374994], [90.47734374999999, 28.070849609374996], [90.63007812500001, 28.078564453124997], [90.71572265625002, 28.071728515624997], [90.90664062500002, 28.026513671874994], [90.9625, 27.994580078124997], [91.02080078124999, 27.970068359375], [91.07773437500003, 27.974462890625], [91.14990234375, 28.026757812499994], [91.22587890624999, 28.071240234374997], [91.27304687500003, 28.078369140625], [91.30683593750001, 28.064013671874996], [91.36757812500002, 28.021630859374994], [91.49335937500001, 27.981787109375], [91.60556640625003, 27.951708984374996], [91.64189453124999, 27.923242187499994], [91.62939453125, 27.80087890625], [91.63193359375003, 27.759960937499997]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Bhutan&quot;, &quot;abbrev_len&quot;: 6, &quot;adm0_a3&quot;: &quot;BTN&quot;, &quot;adm0_a3_is&quot;: &quot;BTN&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BTN&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Bhutan&quot;, &quot;brk_a3&quot;: &quot;BTN&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Bhutan&quot;, &quot;continent&quot;: &quot;Asia&quot;, &quot;economy&quot;: &quot;7. Least developed region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Kingdom of Bhutan&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 3524, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Bhutan&quot;, &quot;gu_a3&quot;: &quot;BTN&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;4. Lower middle income&quot;, &quot;iso_a2&quot;: &quot;BT&quot;, &quot;iso_a3&quot;: &quot;BTN&quot;, &quot;iso_n3&quot;: &quot;064&quot;, &quot;labelrank&quot;: 5, &quot;lastcensus&quot;: 2005, &quot;level&quot;: 2, &quot;long_len&quot;: 6, &quot;mapcolor13&quot;: 8, &quot;mapcolor7&quot;: 5, &quot;mapcolor8&quot;: 6, &quot;mapcolor9&quot;: 1, &quot;name&quot;: &quot;Bhutan&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 6, &quot;name_long&quot;: &quot;Bhutan&quot;, &quot;name_sort&quot;: &quot;Bhutan&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 691141, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BT&quot;, &quot;region_un&quot;: &quot;Asia&quot;, &quot;region_wb&quot;: &quot;South Asia&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BTN&quot;, &quot;sovereignt&quot;: &quot;Bhutan&quot;, &quot;su_a3&quot;: &quot;BTN&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Southern Asia&quot;, &quot;subunit&quot;: &quot;Bhutan&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;064&quot;, &quot;wb_a2&quot;: &quot;BT&quot;, &quot;wb_a3&quot;: &quot;BTN&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[25.2587890625, -17.793554687500006], [25.239062500000017, -17.843066406250003], [25.224023437500023, -17.91523437500001], [25.242285156250006, -17.969042968750003], [25.28242187500001, -18.04121093750001], [25.340234375000023, -18.1044921875], [25.384375, -18.14199218750001], [25.43671875000001, -18.234960937500006], [25.4892578125, -18.35126953125001], [25.55830078125001, -18.441796875], [25.76123046875, -18.64921875], [25.78369140625, -18.72353515625001], [25.811914062500023, -18.79707031250001], [25.939355468750023, -18.93867187500001], [25.95917968750001, -18.985644531250003], [25.95068359375, -19.08173828125001], [26.081933593750023, -19.369921875], [26.168066406250006, -19.53828125000001], [26.241015625000017, -19.5693359375], [26.474609375, -19.748632812500006], [26.67822265625, -19.89277343750001], [26.91669921875001, -19.99013671875001], [27.091796875, -20.05419921875], [27.17822265625, -20.10097656250001], [27.221484375000017, -20.145800781250003], [27.256738281250023, -20.23203125], [27.27460937500001, -20.3818359375], [27.28076171875, -20.47871093750001], [27.46894531250001, -20.47480468750001], [27.624609375, -20.48359375000001], [27.679296875, -20.503027343750006], [27.699609375000023, -20.53066406250001], [27.69482421875, -20.59453125], [27.69697265625001, -20.689746093750003], [27.70429687500001, -20.76640625], [27.688085937500006, -20.84833984375001], [27.67695312500001, -20.94482421875], [27.66943359375, -21.064257812500003], [27.693457031250006, -21.11103515625001], [27.844140625000023, -21.261523437500003], [27.90742187500001, -21.35908203125001], [27.974609375, -21.50673828125001], [28.014062500000023, -21.55419921875], [28.04560546875001, -21.573046875], [28.181640625, -21.58935546875], [28.532031250000017, -21.65126953125001], [28.74775390625001, -21.707617187500006], [28.919335937500023, -21.766015625], [28.99072265625, -21.78144531250001], [29.02558593750001, -21.796875], [29.03730468750001, -21.811328125], [29.01582031250001, -21.93994140625], [29.023339843750023, -21.98125], [29.042382812500023, -22.018359375], [29.07148437500001, -22.047460937500006], [29.106835937500023, -22.065722656250003], [29.237207031250023, -22.07949218750001], [29.315234375000017, -22.15771484375], [29.36484375, -22.193945312500006], [29.1298828125, -22.21328125], [29.013476562500017, -22.278417968750006], [28.94580078125, -22.395117187500006], [28.83984375, -22.480859375], [28.69550781250001, -22.535449218750003], [28.542871093750023, -22.57294921875001], [28.381738281250023, -22.593359375], [28.21015625000001, -22.693652343750003], [28.027929687500006, -22.87373046875001], [27.93505859375, -22.98701171875001], [27.93134765625001, -23.03359375], [27.890527343750023, -23.07392578125001], [27.812597656250006, -23.108007812500006], [27.7685546875, -23.14892578125], [27.75830078125, -23.19677734375], [27.716796875, -23.21962890625001], [27.643847656250017, -23.21767578125001], [27.592675781250023, -23.25263671875001], [27.56318359375001, -23.324609375], [27.49873046875001, -23.36835937500001], [27.399218750000017, -23.38359375], [27.313378906250023, -23.42421875], [27.2412109375, -23.490039062500003], [27.185546875, -23.5234375], [27.146386718750023, -23.5244140625], [27.085546875, -23.577929687500003], [26.98701171875001, -23.70458984375], [26.970605468750023, -23.763476562500003], [26.835058593750006, -24.240820312500006], [26.761132812500023, -24.297167968750003], [26.617773437500006, -24.3955078125], [26.5015625, -24.51328125], [26.451757812500006, -24.58271484375001], [26.39716796875001, -24.613574218750003], [26.130859375, -24.671484375], [26.031835937500006, -24.702441406250003], [25.912109375, -24.74746093750001], [25.8818359375, -24.78798828125001], [25.852441406250023, -24.93525390625001], [25.769921875000023, -25.146484375], [25.70263671875, -25.30234375], [25.6591796875, -25.437890625], [25.583789062500017, -25.60625], [25.518164062500006, -25.66279296875001], [25.443652343750017, -25.714453125], [25.34619140625, -25.73994140625001], [25.21337890625, -25.75625], [25.09248046875001, -25.75146484375], [24.998925781250023, -25.754003906250006], [24.869238281250006, -25.8134765625], [24.748144531250006, -25.8173828125], [24.55585937500001, -25.78310546875001], [24.400195312500017, -25.749804687500003], [24.33056640625, -25.74287109375001], [24.19296875, -25.632910156250006], [24.1044921875, -25.634863281250006], [23.969531250000017, -25.626074218750006], [23.89375, -25.600878906250003], [23.82343750000001, -25.54462890625001], [23.670703125000017, -25.433984375], [23.521484375, -25.34443359375001], [23.389257812500006, -25.29140625], [23.266015625000023, -25.2666015625], [23.148730468750017, -25.288671875], [23.057519531250023, -25.312304687500003], [23.022070312500006, -25.32412109375001], [22.951269531250006, -25.37031250000001], [22.878808593750023, -25.45791015625001], [22.818945312500006, -25.59511718750001], [22.79609375000001, -25.67910156250001], [22.72900390625, -25.85732421875001], [22.640234375, -26.07119140625001], [22.59765625, -26.13271484375001], [22.548632812500017, -26.17841796875001], [22.47089843750001, -26.219042968750003], [22.217578125000017, -26.38886718750001], [22.090917968750006, -26.580175781250006], [22.01093750000001, -26.635839843750006], [21.91455078125, -26.661914062500003], [21.83320312500001, -26.678320312500006], [21.78828125000001, -26.710058593750006], [21.738085937500017, -26.80683593750001], [21.694726562500023, -26.840917968750006], [21.646289062500017, -26.85419921875001], [21.501367187500023, -26.84267578125001], [21.454980468750023, -26.8328125], [21.07099609375001, -26.85175781250001], [20.953906250000017, -26.82109375], [20.870898437500017, -26.80878906250001], [20.73984375, -26.84882812500001], [20.68505859375, -26.82246093750001], [20.641406250000017, -26.7421875], [20.619921875000017, -26.580859375], [20.626757812500017, -26.44384765625], [20.697851562500006, -26.340136718750003], [20.75703125000001, -26.26416015625], [20.815039062500006, -26.16494140625001], [20.822656250000023, -26.12060546875], [20.81103515625, -26.08056640625], [20.799414062500006, -25.9990234375], [20.79316406250001, -25.915625], [20.710742187500017, -25.733203125], [20.609277343750023, -25.4912109375], [20.47314453125, -25.221289062500006], [20.4306640625, -25.147070312500006], [20.34521484375, -25.029882812500006], [20.028613281250017, -24.80703125], [19.98046875, -24.77675781250001], [19.98046875, -24.751953125], [19.98017578125001, -24.535742187500006], [19.979882812500023, -24.2490234375], [19.979589843750006, -23.96240234375], [19.979296875000017, -23.67578125], [19.978906250000023, -23.38916015625], [19.978515625, -23.1025390625], [19.97822265625001, -22.81591796875], [19.977929687500023, -22.529296875], [19.977636718750006, -22.242578125], [19.977343750000017, -22.00019531250001], [20.205371093750017, -22.00019531250001], [20.4875, -22.00019531250001], [20.82275390625, -22.00019531250001], [20.970996093750017, -22.00019531250001], [20.9794921875, -21.9619140625], [20.979296875000017, -21.78408203125001], [20.97871093750001, -21.376074218750006], [20.978125, -20.96816406250001], [20.977441406250023, -20.56025390625001], [20.976855468750017, -20.15234375], [20.976171875, -19.74433593750001], [20.9755859375, -19.33642578125], [20.975, -18.928515625], [20.97431640625001, -18.5205078125], [20.97412109375, -18.31884765625], [21.232519531250006, -18.30683593750001], [21.529687500000023, -18.265625], [22.01142578125001, -18.19863281250001], [22.460058593750006, -18.11572265625], [22.752734375000017, -18.0671875], [23.099902343750017, -18.009570312500003], [23.219335937500006, -17.99970703125001], [23.2515625, -18.00751953125001], [23.298632812500017, -18.02734375], [23.459765625000017, -18.231054687500006], [23.56015625, -18.38642578125001], [23.58056640625, -18.452929687500003], [23.599707031250006, -18.4599609375], [23.64716796875001, -18.44941406250001], [23.700488281250017, -18.42431640625], [23.8642578125, -18.26953125], [23.898339843750023, -18.22919921875001], [24.00263671875001, -18.154101562500003], [24.129296875000023, -18.07753906250001], [24.243945312500017, -18.0234375], [24.358984375, -17.97822265625001], [24.412207031250006, -17.98945312500001], [24.474902343750017, -18.02851562500001], [24.530566406250017, -18.052734375], [24.79218750000001, -17.86464843750001], [24.909082031250023, -17.821386718750006], [25.21601562500001, -17.78759765625], [25.2587890625, -17.793554687500006]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;Bwa.&quot;, &quot;abbrev_len&quot;: 4, &quot;adm0_a3&quot;: &quot;BWA&quot;, &quot;adm0_a3_is&quot;: &quot;BWA&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;BWA&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Botswana&quot;, &quot;brk_a3&quot;: &quot;BWA&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Botswana&quot;, &quot;continent&quot;: &quot;Africa&quot;, &quot;economy&quot;: &quot;6. Developing region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Republic of Botswana&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 27060, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Botswana&quot;, &quot;gu_a3&quot;: &quot;BWA&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;3. Upper middle income&quot;, &quot;iso_a2&quot;: &quot;BW&quot;, &quot;iso_a3&quot;: &quot;BWA&quot;, &quot;iso_n3&quot;: &quot;072&quot;, &quot;labelrank&quot;: 4, &quot;lastcensus&quot;: 2011, &quot;level&quot;: 2, &quot;long_len&quot;: 8, &quot;mapcolor13&quot;: 3, &quot;mapcolor7&quot;: 6, &quot;mapcolor8&quot;: 5, &quot;mapcolor9&quot;: 7, &quot;name&quot;: &quot;Botswana&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 8, &quot;name_long&quot;: &quot;Botswana&quot;, &quot;name_sort&quot;: &quot;Botswana&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 1990876, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;BW&quot;, &quot;region_un&quot;: &quot;Africa&quot;, &quot;region_wb&quot;: &quot;Sub-Saharan Africa&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;BWA&quot;, &quot;sovereignt&quot;: &quot;Botswana&quot;, &quot;su_a3&quot;: &quot;BWA&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Southern Africa&quot;, &quot;subunit&quot;: &quot;Botswana&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;072&quot;, &quot;wb_a2&quot;: &quot;BW&quot;, &quot;wb_a3&quot;: &quot;BWA&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[22.86005859375001, 10.919677734375], [22.930761718750006, 10.7953125], [22.96435546875, 10.751806640624991], [23.255859375, 10.457812499999989], [23.312304687500017, 10.387939453125], [23.456640625, 10.174267578124997], [23.545019531250006, 10.030078124999989], [23.646289062500017, 9.822900390624994], [23.65625, 9.710351562499994], [23.64277343750001, 9.613916015624994], [23.62265625, 9.34062], [23.596093750000023, 9.261914062499997], [23.46826171875, 9.11474609375], [23.462792968750023, 9.048486328124994], [23.489062500000017, 8.993310546874994], [23.52802734375001, 8.970605468749994], [23.551855468750006, 8.943212890624991], [23.53730468750001, 8.815820312499994], [23.58320312500001, 8.765820312499997], [23.679296875, 8.732470703124989], [23.921972656250006, 8.709716796875], [24.048144531250017, 8.691308593749994], [24.147363281250023, 8.665625], [24.19482421875, 8.653369140624989], [24.22089843750001, 8.608251953124991], [24.179980468750017, 8.461132812499997], [24.208398437500023, 8.369140625], [24.291406250000023, 8.29140625], [24.37548828125, 8.258447265624994], [24.4560546875, 8.239453125], [24.736718750000023, 8.191552734374994], [24.853320312500017, 8.137548828124991], [25.007226562500023, 7.96484375], [25.20039062500001, 7.807910156249989], [25.247363281250017, 7.724560546874997], [25.238671875000023, 7.648974609374989], [25.18134765625001, 7.557226562499991], [25.19013671875001, 7.519335937499989], [25.27890625, 7.427490234375], [25.380664062500017, 7.333398437499994], [25.56660156250001, 7.228710937499997], [25.888964843750017, 7.06494140625], [26.036523437500023, 6.955224609374994], [26.0869140625, 6.872119140624989], [26.169335937500023, 6.78173828125], [26.284570312500023, 6.699023437499989], [26.36181640625, 6.635302734374989], [26.30859375, 6.455322265625], [26.324609375000023, 6.396240234375], [26.353320312500017, 6.344921875], [26.420507812500006, 6.274169921875], [26.44746093750001, 6.183007812499994], [26.514257812500006, 6.069238281249994], [26.593652343750023, 6.017529296874997], [26.726367187500017, 5.998242187499997], [26.796484375, 5.945507812499997], [26.942285156250023, 5.854931640624997], [27.083398437500023, 5.77685546875], [27.143945312500023, 5.722949218749989], [27.18125, 5.675146484374991], [27.21337890625, 5.618798828124994], [27.229101562500006, 5.5625], [27.232519531250006, 5.440771484374991], [27.256738281250023, 5.289648437499991], [27.332421875000023, 5.186328124999989], [27.4033203125, 5.109179687499989], [27.11494140625001, 5.197851562499991], [27.071875, 5.199755859374989], [27.020605468750006, 5.18437], [26.8701171875, 5.07568359375], [26.822070312500017, 5.062402343749994], [26.767578125, 5.071923828124994], [26.632617187500017, 5.085205078125], [26.17353515625001, 5.171142578125], [25.819921875, 5.253710937499989], [25.7138671875, 5.28369140625], [25.52509765625001, 5.312109375], [25.400195312500017, 5.255908203124989], [25.283105468750023, 5.062695312499997], [25.249316406250017, 5.024560546874994], [25.065234375000017, 4.967431640624994], [24.978417968750023, 4.982958984374989], [24.765527343750023, 4.930078125], [24.437109375, 5.009960937499997], [24.31982421875, 4.994140625], [24.22773437500001, 4.953857421875], [23.99169921875, 4.866259765624989], [23.848437500000017, 4.816357421874997], [23.68183593750001, 4.770800781249989], [23.52363281250001, 4.701269531249991], [23.41718750000001, 4.663134765624989], [23.312890625000023, 4.663525390624997], [23.218847656250006, 4.702978515624991], [23.11591796875001, 4.736914062499991], [22.99287109375001, 4.743847656249997], [22.864550781250017, 4.723876953125], [22.755761718750023, 4.646679687499997], [22.711718750000017, 4.591748046874997], [22.6171875, 4.445556640625], [22.505664062500017, 4.207666015624994], [22.461816406250023, 4.159765625], [22.44970703125, 4.155126953124991], [22.422167968750017, 4.134960937499997], [21.908203125, 4.25390625], [21.68701171875, 4.281396484374994], [21.53759765625, 4.244824218749997], [21.350195312500006, 4.311376953124991], [21.268359375000017, 4.323095703124991], [21.229785156250017, 4.302197265624997], [21.125585937500006, 4.332177734374994], [20.95576171875001, 4.413134765624989], [20.79296875, 4.447314453124989], [20.6474609375, 4.435644531249991], [20.55810546875, 4.462695312499989], [20.48652343750001, 4.541552734374989], [20.3935546875, 4.686181640624994], [20.226367187500017, 4.829638671874989], [20.002343750000023, 4.944726562499994], [19.8625, 5.031298828124989], [19.806542968750023, 5.089306640624997], [19.68603515625, 5.121386718749989], [19.5009765625, 5.127490234374989], [19.32343750000001, 5.070751953124997], [19.06855468750001, 4.891406249999989], [18.83173828125001, 4.5234375], [18.69990234375001, 4.382617187499989], [18.594140625000023, 4.346240234374989], [18.567480468750006, 4.257568359375], [18.619921875000017, 4.116601562499994], [18.633691406250023, 3.954296875], [18.5966796875, 3.6787109375], [18.6103515625, 3.478417968749994], [18.553808593750006, 3.510205078124997], [18.499804687500017, 3.604101562499991], [18.474414062500017, 3.622998046874997], [18.318164062500017, 3.580810546875], [18.237109375000017, 3.542675781249997], [18.193945312500006, 3.505419921874989], [18.160937500000017, 3.499804687499989], [18.111328125, 3.551074218749989], [18.072265625, 3.560302734375], [18.0107421875, 3.550830078124989], [17.94794921875001, 3.5517578125], [17.907128906250023, 3.558398437499989], [17.88037109375, 3.553857421874994], [17.806640625, 3.584179687499997], [17.537695312500006, 3.66162109375], [17.491601562500023, 3.687304687499989], [17.43798828125, 3.684619140624989], [17.2984375, 3.6171875], [17.224707031250006, 3.598437499999989], [17.002539062500006, 3.556689453124989], [16.76435546875001, 3.536279296874994], [16.67333984375, 3.535205078124989], [16.610742187500023, 3.50537109375], [16.570410156250006, 3.463085937499997], [16.543066406250006, 3.36953125], [16.49628906250001, 3.208837890624991], [16.47675781250001, 3.165136718749991], [16.480078125, 3.100976562499994], [16.466210937500023, 2.993212890624989], [16.459570312500006, 2.896533203124989], [16.468554687500017, 2.831738281249997], [16.401269531250023, 2.701025390624991], [16.319628906250017, 2.542773437499989], [16.251757812500017, 2.406787109374989], [16.183398437500017, 2.270068359374989], [16.136132812500023, 2.36376953125], [16.106738281250017, 2.473486328124991], [16.095507812500017, 2.59921875], [16.101855468750017, 2.632666015624991], [16.08349609375, 2.670019531249991], [16.082128906250006, 2.678173828124997], [16.05927734375001, 2.772998046874989], [16.082421875000023, 2.839111328125], [16.0634765625, 2.90859375], [16.008203125000023, 2.976660156249991], [15.9580078125, 3.028710937499994], [15.9287109375, 3.07578125], [15.904882812500006, 3.095849609374994], [15.849316406250011, 3.103076171874989], [15.775, 3.127197265625], [15.676562500000017, 3.2296875], [15.580859375000017, 3.329296875], [15.458398437500023, 3.456835937499989], [15.360156250000017, 3.567138671875], [15.23984375, 3.7021484375], [15.128710937500017, 3.826904296875], [15.062109375, 3.947216796874997], [15.034863281250011, 4.016357421875], [15.0673828125, 4.02294921875], [15.115429687500011, 4.024462890624989], [15.135839843750006, 4.036914062499989], [15.136914062500011, 4.069140624999989], [15.0875, 4.163964843749994], [15.063574218750006, 4.284863281249997], [15.022753906250017, 4.358544921874994], [14.8935546875, 4.471875], [14.770410156250023, 4.55810546875], [14.73125, 4.602392578124991], [14.708984375, 4.665576171874989], [14.66171875, 5.065527343749991], [14.640625, 5.179052734374991], [14.601757812500011, 5.228808593749989], [14.573535156250017, 5.251708984375], [14.56298828125, 5.279931640624994], [14.568066406250011, 5.35107421875], [14.584375, 5.414746093749997], [14.58359375, 5.439648437499997], [14.616894531250011, 5.495507812499994], [14.616894531250011, 5.865136718749994], [14.598828125000011, 5.883984375], [14.577246093750006, 5.916015625], [14.54248046875, 5.91357421875], [14.503125, 5.916894531249994], [14.4638671875, 5.970703125], [14.43115234375, 6.038720703124994], [14.440722656250017, 6.086718749999989], [14.475, 6.126806640624991], [14.512109375000023, 6.161914062499989], [14.559375, 6.191210937499989], [14.699511718750017, 6.250244140625], [14.7392578125, 6.27978515625], [14.764062500000023, 6.316357421874997], [14.780371093750006, 6.36572265625], [14.861914062500006, 6.555712890624989], [14.982714843750017, 6.7453125], [15.034570312500023, 6.784423828125], [15.086328125000023, 6.909912109375], [15.157128906250023, 7.063574218749991], [15.185839843750017, 7.134912109374994], [15.206738281250011, 7.206152343749991], [15.245898437500017, 7.263574218749994], [15.379101562500011, 7.358154296875], [15.480078125, 7.523779296874991], [15.589257812500023, 7.515039062499994], [15.701269531250006, 7.488427734374994], [15.845019531250017, 7.475292968749997], [15.957617187500006, 7.507568359375], [16.030664062500023, 7.572119140624991], [16.19111328125001, 7.6234375], [16.37890625, 7.683544921874997], [16.404394531250006, 7.772363281249994], [16.459375, 7.818994140624994], [16.523242187500017, 7.859960937499991], [16.545312500000023, 7.865478515625], [16.550195312500023, 7.835888671874997], [16.588964843750006, 7.743359375], [16.668359375000023, 7.651757812499994], [16.784765625, 7.550976562499997], [16.818164062500017, 7.557324218749997], [16.89033203125001, 7.633691406249994], [17.07197265625001, 7.680810546874994], [17.117968750000017, 7.701904296875], [17.246972656250023, 7.81298828125], [17.402148437500017, 7.884570312499989], [17.436425781250023, 7.890917968749989], [17.49267578125, 7.909814453124994], [17.6494140625, 7.98359375], [17.760839843750006, 7.973828125], [17.94013671875001, 7.985449218749991], [18.238867187500006, 8.020361328124991], [18.455078125, 8.032031249999989], [18.56416015625001, 8.0458984375], [18.591601562500017, 8.060791015625], [18.633593750000017, 8.167724609375], [18.66621093750001, 8.197705078124997], [18.747460937500023, 8.243798828124994], [18.90644531250001, 8.405078124999989], [19.010839843750006, 8.541210937499997], [19.039843750000017, 8.5869140625], [19.042382812500023, 8.590283203124997], [19.063867187500023, 8.598828125], [19.108691406250017, 8.656152343749994], [19.06416015625001, 8.715429687499991], [18.886035156250017, 8.836035156249991], [18.888574218750023, 8.852490234374997], [18.878320312500023, 8.873193359374994], [18.88828125, 8.889746093749991], [18.95625, 8.938867187499994], [19.0478515625, 8.995019531249994], [19.1455078125, 9.015966796874991], [19.400292968750023, 9.011621093749994], [19.617480468750017, 9.023583984374994], [19.668359375000023, 9.020898437499994], [19.837695312500017, 9.049365234374989], [19.953515625000023, 9.075146484374997], [20.072656250000023, 9.133203125], [20.342089843750017, 9.127099609374994], [20.56689453125, 9.274951171874989], [20.631445312500006, 9.301367187499991], [20.65966796875, 9.324511718749989], [20.66816406250001, 9.347119140624997], [20.773242187500017, 9.405664062499994], [20.891015625000023, 9.527148437499989], [20.984179687500017, 9.636279296874989], [21.00947265625001, 9.713232421874991], [21.26386718750001, 9.974609375], [21.352441406250023, 9.969140625], [21.39599609375, 10.001367187499994], [21.496875, 10.175683593749994], [21.52802734375001, 10.207812499999989], [21.57578125, 10.218554687499989], [21.632714843750023, 10.23828125], [21.682714843750006, 10.289843749999989], [21.72578125000001, 10.366552734374991], [21.726171875, 10.461621093749997], [21.70654296875, 10.537890624999989], [21.70654296875, 10.574804687499991], [21.73066406250001, 10.608691406249989], [21.771484375, 10.642822265625], [21.96484375, 10.736669921874991], [22.013769531250006, 10.782031249999989], [22.04316406250001, 10.822705078124997], [22.09716796875, 10.830078125], [22.15625, 10.826074218749994], [22.193652343750017, 10.851367187499989], [22.2359375, 10.894140625], [22.36982421875001, 10.951513671874991], [22.49384765625001, 10.996240234374994], [22.6240234375, 10.977343749999989], [22.73017578125001, 10.954052734374997], [22.8173828125, 10.927197265624997], [22.86005859375001, 10.919677734375]]], &quot;type&quot;: &quot;Polygon&quot;}, &quot;properties&quot;: {&quot;abbrev&quot;: &quot;C.A.R.&quot;, &quot;abbrev_len&quot;: 6, &quot;adm0_a3&quot;: &quot;CAF&quot;, &quot;adm0_a3_is&quot;: &quot;CAF&quot;, &quot;adm0_a3_un&quot;: -99, &quot;adm0_a3_us&quot;: &quot;CAF&quot;, &quot;adm0_a3_wb&quot;: -99, &quot;adm0_dif&quot;: 0, &quot;admin&quot;: &quot;Central African Republic&quot;, &quot;brk_a3&quot;: &quot;CAF&quot;, &quot;brk_diff&quot;: 0, &quot;brk_group&quot;: null, &quot;brk_name&quot;: &quot;Central African Rep.&quot;, &quot;continent&quot;: &quot;Africa&quot;, &quot;economy&quot;: &quot;7. Least developed region&quot;, &quot;featureclass&quot;: &quot;Admin-0 country&quot;, &quot;fips_10&quot;: null, &quot;formal_en&quot;: &quot;Central African Republic&quot;, &quot;formal_fr&quot;: null, &quot;gdp_md_est&quot;: 3198, &quot;gdp_year&quot;: -99, &quot;geou_dif&quot;: 0, &quot;geounit&quot;: &quot;Central African Republic&quot;, &quot;gu_a3&quot;: &quot;CAF&quot;, &quot;homepart&quot;: 1, &quot;income_grp&quot;: &quot;5. Low income&quot;, &quot;iso_a2&quot;: &quot;CF&quot;, &quot;iso_a3&quot;: &quot;CAF&quot;, &quot;iso_n3&quot;: &quot;140&quot;, &quot;labelrank&quot;: 4, &quot;lastcensus&quot;: 2003, &quot;level&quot;: 2, &quot;long_len&quot;: 24, &quot;mapcolor13&quot;: 9, &quot;mapcolor7&quot;: 5, &quot;mapcolor8&quot;: 6, &quot;mapcolor9&quot;: 6, &quot;name&quot;: &quot;Central African Rep.&quot;, &quot;name_alt&quot;: null, &quot;name_len&quot;: 20, &quot;name_long&quot;: &quot;Central African Republic&quot;, &quot;name_sort&quot;: &quot;Central African Republic&quot;, &quot;note_adm0&quot;: null, &quot;note_brk&quot;: null, &quot;pop_est&quot;: 4511488, &quot;pop_year&quot;: -99, &quot;postal&quot;: &quot;CF&quot;, &quot;region_un&quot;: &quot;Africa&quot;, &quot;region_wb&quot;: &quot;Sub-Saharan Africa&quot;, &quot;scalerank&quot;: 1, &quot;sov_a3&quot;: &quot;CAF&quot;, &quot;sovereignt&quot;: &quot;Central African Republic&quot;, &quot;su_a3&quot;: &quot;CAF&quot;, &quot;su_dif&quot;: 0, &quot;subregion&quot;: &quot;Middle Africa&quot;, &quot;subunit&quot;: &quot;Central African Republic&quot;, &quot;tiny&quot;: -99, &quot;type&quot;: &quot;Sovereign country&quot;, &quot;un_a3&quot;: &quot;140&quot;, &quot;wb_a2&quot;: &quot;CF&quot;, &quot;wb_a3&quot;: &quot;CAF&quot;, &quot;wikipedia&quot;: -99, &quot;woe_id&quot;: -99}, &quot;type&quot;: &quot;Feature&quot;}, {&quot;geometry&quot;: {&quot;coordinates&quot;: [[[[-59.78759765624997, 43.939599609374994], [-59.922265624999966, 43.90390625], [-60.037744140624966, 43.90664062500002], [-60.1142578125, 43.939111328124994], [-60.11748046874996, 43.95336914062506], [-59.93603515625003, 43.939599609374994], [-59.86635742187494, 43.94716796875002], [-59.727148437500006, 44.002832031249994], [-59.78759765624997, 43.939599609374994]]], [[[-66.27377929687495, 44.29228515624999], [-66.32412109375, 44.25732421874997], [-66.3119140625, 44.291601562500034], [-66.25048828125, 44.37900390624998], [-66.2103515625, 44.39204101562498], [-66.27377929687495, 44.29228515624999]]], [[[-66.7625, 44.68178710937502], [-66.8970703125, 44.62890625], [-66.8447265625, 44.76391601562497], [-66.80214843749994, 44.80537109374998], [-66.74541015624993, 44.79140625], [-66.75336914062495, 44.70981445312506], [-66.7625, 44.68178710937502]]], [[[-60.961572265624966, 45.48994140625001], [-61.002880859374926, 45.48173828125002], [-61.0125, 45.49604492187501], [-61.07617187499994, 45.53730468749998], [-61.081738281249926, 45.55781249999998], [-61.025976562500034, 45.577343749999955], [-60.91245117187498, 45.56728515625005], [-60.953027343749994, 45.515527343749994], [-60.961572265624966, 45.48994140625001]]], [[[-73.69531249999997, 45.58549804687502], [-73.81591796875003, 45.56489257812501], [-73.85771484375002, 45.573583984375006], [-73.72465820312499, 45.67182617187504], [-73.57236328124998, 45.69448242187502], [-73.69531249999997, 45.58549804687502]]], [[[-73.56650390625003, 45.469091796875034], [-73.6435546875, 45.44912109375005], [-73.77534179687493, 45.467626953125006], [-73.92021484374996, 45.44194335937499], [-73.960546875, 45.44140624999997], [-73.85292968750002, 45.515722656250034], [-73.68745117187498, 45.561425781249994], [-73.52246093750003, 45.70117187500006], [-73.47607421874997, 45.704736328124994], [-73.53886718749999, 45.54643554687496], [-73.55166015625002, 45.48984374999998], [-73.56650390625003, 45.469091796875034]]], [[[-71.02573242187503, 46.87294921875002], [-71.11665039062498, 46.86484374999998], [-71.094970703125, 46.89956054687505], [-70.97084960937494, 46.96142578125003], [-70.87963867187503, 46.99609375], [-70.82578124999998, 46.99536132812503], [-70.9134765625, 46.919531250000034], [-71.02573242187503, 46.87294921875002]]], [[[-61.10517578124998, 45.94472656250002], [-61.07133789062493, 45.93710937499998], [-60.93657226562502, 45.98554687499998], [-60.86523437499997, 45.983496093750006], [-60.868408203125, 45.94863281250002], [-60.984277343749966, 45.91069335937502], [-61.03754882812498, 45.882226562499994], [-60.97060546875002, 45.855810546875034], [-60.971533203125034, 45.837988281250034], [-61.05195312499998, 45.79501953124998], [-61.09208984374999, 45.748388671875006], [-61.05903320312501, 45.70336914062497], [-60.93037109375001, 45.74770507812502], [-60.877587890624994, 45.74809570312502], [-60.80610351562498, 45.73808593750002], [-60.73789062499995, 45.75141601562498], [-60.69907226562495, 45.77333984375002], [-60.472363281249955, 45.94653320312503], [-60.46059570312494, 45.96870117187501], [-60.70488281249999, 45.93291015625002], [-60.733300781249994, 45.956591796875045], [-60.57319335937498, 46.061425781249994], [-60.58574218749996, 46.116650390624955], [-60.50493164062502, 46.20385742187497], [-60.430859374999926, 46.25561523437503], [-60.37651367187496, 46.284570312499994], [-60.297949218750034, 46.31123046874998], [-60.243847656249926, 46.27011718750006], [-60.22646484374994, 46.19555664062506], [-60.09248046875001, 46.206005859374955], [-59.96142578124994, 46.19096679687502], [-59.86503906249993, 46.159521484375006], [-59.85, 46.141406250000045], [-59.848779296874994, 46.11293945312502], [-59.88090820312499, 46.061621093750034], [-59.934033203124955, 46.019433593749966], [-59.828027343749966, 45.96513671875002], [-59.8421875, 45.941552734374994], [-60.015820312499926, 45.88046874999998], [-60.114453124999955, 45.81889648437496], [-60.20507812500003, 45.74301757812506], [-60.38608398437495, 45.65463867187498], [-60.67294921874995, 45.59082031250006], [-60.76372070312499, 45.59082031250006], [-60.87158203125, 45.610693359375006], [-60.97861328124998, 45.60615234374998], [-61.08369140624998, 45.582373046875006], [-61.18642578124994, 45.58500976562502], [-61.23632812499997, 45.57250976562506], [-61.28369140624994, 45.573876953124966], [-61.323437499999955, 45.598486328125006], [-61.40834960937494, 45.669091796874994], [-61.44980468749995, 45.71621093750002], [-61.49531249999998, 45.94145507812499], [-61.48061523437502, 46.05976562500001], [-61.40864257812501, 46.17036132812498], [-61.30219726562498, 46.24384765625004], [-61.24052734374996, 46.30253906249999], [-60.98251953124998, 46.650488281250006], [-60.93198242187498, 46.72944335937501], [-60.87016601562499, 46.796777343749966], [-60.75966796874994, 46.863378906250034], [-60.616650390624955, 46.97578125000001], [-60.57104492187497, 46.99882812500002], [-60.48906249999999, 47.00971679687501], [-60.40820312500003, 47.00351562499998], [-60.431347656249955, 46.96293945312499], [-60.425439453124994, 46.92319335937506], [-60.33173828124998, 46.76782226562503], [-60.332910156249966, 46.737011718749955], [-60.38408203124999, 46.61333007812499], [-60.48242187499994, 46.413525390624955], [-60.507714843749966, 46.303369140624994], [-60.49453125000002, 46.270263671875], [-60.53442382812497, 46.21455078125001], [-60.57685546875001, 46.17216796874999], [-60.744824218749955, 46.092675781249966], [-60.83056640625, 46.074121093749994], [-60.912207031250034, 46.04458007812502], [-61.10517578124998, 45.94472656250002]]], [[[-63.811279296875, 46.46870117187501], [-63.78422851562502, 46.45463867187499], [-63.73701171874998, 46.48051757812502], [-63.68144531249993, 46.561914062499994], [-63.53437, 46.540625], [-63.456494140624926, 46.50390625], [-63.41313476562499, 46.512011718750045], [-63.36865234374997, 46.50825195312498], [-63.286083984374955, 46.46020507812497], [-63.12939453125, 46.422216796875034], [-62.964013671874966, 46.42773437500003], [-62.71201171874998, 46.450292968750006], [-62.68193359374996, 46.45942382812498], [-62.423095703125, 46.478271484375], [-62.16357421874997, 46.487207031249966], [-62.07426757812499, 46.46572265625002], [-62.040869140625006, 46.44570312500002], [-62.02373046874999, 46.42158203125001], [-62.171777343749966, 46.35537109375002], [-62.31997070312494, 46.27832031250003], [-62.52607421875001, 46.20288085937503], [-62.55200195312497, 46.165917968749966], [-62.53920898437502, 46.09794921874999], [-62.54326171874996, 46.02866210937498], [-62.50258789062502, 46.02294921874997], [-62.47807617187502, 45.99970703125004], [-62.531347656250034, 45.977294921875], [-62.7431640625, 45.966894531250006], [-62.80488281249998, 45.97319335937496], [-62.878369140624926, 46.00136718750002], [-62.90351562499998, 46.068261718749966], [-62.99462890625, 46.058447265625006], [-63.02207031249998, 46.06660156249998], [-62.89453125000003, 46.12358398437496], [-62.95263671874997, 46.19516601562498], [-63.015039062499966, 46.18994140624997], [-63.056347656249955, 46.22392578124996], [-63.052929687499955, 46.26982421874999], [-62.9951171875, 46.29213867187502], [-62.97846679687498, 46.31635742187498], [-63.05688476562497, 46.295361328124955], [-63.11699218749996, 46.252832031249994], [-63.194726562499994, 46.23671875], [-63.27080078124993, 46.2], [-63.15278320312498, 46.188330078125006], [-63.21347656249998, 46.15986328124998], [-63.27661132812497, 46.153271484374955], [-63.56889648437502, 46.209228515625], [-63.641015624999966, 46.23046874999997], [-63.73178710937498, 46.2890625], [-63.80053710937494, 46.367333984374966], [-63.76323242187499, 46.37036132812506], [-63.75053710937499, 46.38437], [-63.758642578125034, 46.397607421874994], [-63.86054687500001, 46.40815429687501], [-64.01972656249993, 46.40483398437496], [-64.11083984375003, 46.425439453124994], [-64.10654296875003, 46.562109375000034], [-64.13603515624999, 46.59970703125006], [-64.23564453124996, 46.631445312500034], [-64.388037109375, 46.640869140625], [-64.403125, 46.69160156250004], [-64.35458984375003, 46.769238281249955], [-64.27998046874993, 46.83574218750002], [-64.2232421875, 46.90126953125002], [-64.15693359374998, 46.95488281250002], [-63.99355468750002, 47.06157226562502], [-63.99726562499998, 46.98173828124999], [-63.98149414062496, 46.91298828125002], [-64.08789062499997, 46.77543945312499], [-63.903027343749955, 46.63911132812501], [-63.87929687500002, 46.608984375], [-63.863720703124955, 46.572363281250006], [-63.875634765624966, 46.53867187500006], [-63.90556640624993, 46.5087890625], [-63.833593750000034, 46.493896484375], [-63.811279296875, 46.46870117187501]]], [[[-61.91411132812496, 47.284521484375034], [-61.87871093749993, 47.265527343749994], [-61.81547851562502, 47.26757812500006], [-61.77255859374998, 47.25981445312499], [-61.833740234375, 47.22260742187504], [-61.950830078124966, 47.218994140625], [-62.00830078124994, 47.23427734375002], [-61.924707031249966, 47.425146484375006], [-61.82729492187494, 47.46909179687498], [-61.627832031249994, 47.593847656250006], [-61.54804687499998, 47.63178710937501], [-61.47407226562501, 47.646777343750045], [-61.3955078125, 47.63764648437504], [-61.475537109374955, 47.56396484375003], [-61.582226562499926, 47.56000976562504], [-61.68408203124997, 47.49873046874998], [-61.750878906249994, 47.430810546874994], [-61.83125, 47.39204101562501], [-61.88662109374994, 47.34462890625002], [-61.91411132812496, 47.284521484375034]]], [[[-54.227148437500034, 47.44135742187501], [-54.27607421874998, 47.40654296875002], [-54.32597656250002, 47.408105468749994], [-54.32011718749996, 47.43852539062496], [-54.258691406249994, 47.497656250000034], [-54.227392578125006, 47.53999023437504], [-54.226269531249955, 47.565527343750006], [-54.214941406250034, 47.585107421874994], [-54.168359374999966, 47.60708007812502], [-54.12817382812494, 47.646826171875034], [-54.14755859374998, 47.573095703125034], [-54.227148437500034, 47.44135742187501]]], [[[-64.50859375, 47.88671874999997], [-64.53388671874995, 47.813769531250045], [-64.62128906250001, 47.751904296874955], [-64.66464843749995, 47.74760742187496], [-64.68457031250003, 47.75361328125004], [-64.660498046875, 47.793554687500006], [-64.66328124999995, 47.86303710937503], [-64.59111328124999, 47.872460937499994], [-64.56484374999997, 47.86625976562499], [-64.50859375, 47.88671874999997]]], [[[-64.47607421875, 47.95888671875002], [-64.59130859375003, 47.90722656249997], [-64.54072265624993, 47.984960937500006], [-64.51958007812499, 48.00507812500001], [-64.50019531249993, 48.013769531250006], [-64.48125, 48.006933593750034], [-64.47607421875, 47.95888671875002]]], [[[-123.43540039062496, 48.75444335937502], [-123.47724609374995, 48.72875976562503], [-123.49960937499998, 48.732177734375], [-123.517529296875, 48.75014648437502], [-123.58232421874996, 48.92578125], [-123.55468750000001, 48.922070312499955], [-123.46787109375, 48.86738281250001], [-123.48754882812501, 48.84570312500003], [-123.42275390624995, 48.79335937500002], [-123.40678710937499, 48.75605468749998], [-123.43540039062496, 48.75444335937502]]], [[[-123.37236328124999, 48.88613281250002], [-123.38481445312496, 48.87519531250001], [-123.54101562499999, 48.94594726562502], [-123.64560546874998, 49.03862304687499], [-123.68925781249999, 49.09511718750005], [-123.48232421875001, 48.954687500000034], [-123.37792968749997, 48.90825195312499], [-123.37236328124999, 48.88613281250002]]], [[[-74.70888671874997, 45.0038574218751], [-74.56630859374997, 45.04160156249998], [-74.26904296874997, 45.18828125000002], [-74.04980468749997, 45.24140625000001], [-73.76464843749997, 45.39545898437504], [-73.55810546875, 45.425097656250045], [-73.51879882812497, 45.458984375], [-73.48417968749996, 45.586767578125006], [-73.46528320312501, 45.63232421874997], [-73.36884765624998, 45.75781250000006], [-73.25302734375, 45.86367187500002], [-73.1595703125, 46.01005859375002], [-72.98994140624998, 46.10361328124998], [-72.73344726562496, 46.18183593750001], [-72.49619140625, 46.352685546874994], [-72.36616210937498, 46.40478515625006], [-72.24013671875, 46.44208984375001], [-72.18720703124995, 46.511523437500045], [-72.10927734374997, 46.55122070312504], [-71.90092773437499, 46.63193359375006], [-71.6712890625, 46.653759765624955], [-71.43920898437497, 46.72075195312502], [-71.26118164062495, 46.75625], [-71.152001953125, 46.819091796875], [-70.99326171874998, 46.852197265624994], [-70.51948242187501, 47.032519531250045], [-70.38808593749997, 47.116943359375], [-70.2177734375, 47.28984375], [-70.069580078125, 47.377783203125034], [-70.01713867187499, 47.47143554687503], [-69.80224609375, 47.6234375], [-69.58105468749997, 47.82368164062501], [-69.47104492187503, 47.96728515625006], [-69.30634765624995, 48.04702148437505], [-68.987060546875, 48.275], [-68.815673828125, 48.36601562500002], [-68.74604492187493, 48.37641601562501], [-68.55200195312503, 48.45732421874996], [-68.43149414062498, 48.54169921875001], [-68.23818359374994, 48.62641601562504], [-67.88901367187495, 48.73090820312501], [-67.56088867187498, 48.85595703125], [-67.11748046874999, 48.96416015625002], [-66.59809570312495, 49.12636718750002], [-66.17817382812493, 49.21313476562503], [-65.88281249999997, 49.225683593750006], [-65.52338867187493, 49.26616210937499], [-65.39614257812494, 49.262060546875034], [-64.83632812499994, 49.191748046875006], [-64.567724609375, 49.10478515624996], [-64.26181640624995, 48.921875], [-64.2162109375, 48.873632812500034], [-64.20878906249999, 48.80620117187499], [-64.37075195312494, 48.838964843750006], [-64.51372070312493, 48.84111328124999], [-64.41455078125, 48.803613281249994], [-64.24609374999994, 48.69111328124998], [-64.253759765625, 48.550390625], [-64.34882812500001, 48.423193359375034], [-64.63315429687503, 48.36049804687505], [-64.70576171874998, 48.31059570312499], [-64.76450195312495, 48.22807617187499], [-64.82207031249996, 48.19648437500001], [-64.95991210937498, 48.15986328125001], [-65.03608398437495, 48.10625], [-65.259423828125, 48.02124023437503], [-65.36000976562497, 48.01113281250002], [-65.47587890624993, 48.03149414062497], [-65.75468749999999, 48.11166992187498], [-65.92670898437495, 48.188867187499994], [-66.01254882812503, 48.14667968750001], [-66.08310546875, 48.10268554687502], [-66.24863281249998, 48.117333984374966], [-66.32426757812493, 48.097900390625], [-66.44897460937503, 48.11962890625], [-66.70439453125002, 48.0224609375], [-66.63154296875001, 48.011083984375006], [-66.42880859375, 48.06694335937502], [-66.35961914062494, 48.06064453125006], [-66.21020507812497, 47.988574218750045], [-65.84941406250002, 47.91103515625005], [-65.755712890625, 47.859765625], [-65.66645507812495, 47.69614257812506], [-65.60722656249996, 47.67001953125006], [-65.48349609374998, 47.68701171874997], [-65.34394531249998, 47.767919921875034], [-65.22817382812502, 47.81127929687497], [-65.00166015624995, 47.84682617187502], [-65.04638671875, 47.79301757812499], [-64.87397460937498, 47.797216796875034], [-64.70322265625, 47.72485351562503], [-64.76630859374998, 47.673486328124966], [-64.85214843749998, 47.56987304687499], [-64.91220703125003, 47.36865234375003], [-65.08613281249993, 47.233789062499994], [-65.31889648437502, 47.101220703124994], [-65.26020507812495, 47.069238281249966], [-65.19208984374995, 47.04956054687506], [-65.0423828125, 47.088818359374955], [-64.94243164062496, 47.08618164062506], [-64.831396484375, 47.06079101562503], [-64.865869140625, 46.95781250000002], [-64.90576171874997, 46.88793945312497], [-64.88251953124993, 46.822851562500034], [-64.81669921874993, 46.69868164062498], [-64.72587890624999, 46.67143554687502], [-64.68950195312496, 46.512304687500006], [-64.641357421875, 46.42558593750002], [-64.6478515625, 46.35595703125006], [-64.55683593749993, 46.31142578125002], [-64.54150390625, 46.240332031250034], [-64.21181640625, 46.22021484375003], [-64.14501953124997, 46.19287109375003], [-63.91591796875002, 46.165820312500045], [-63.87265624999998, 46.14619140625004], [-63.831933593749966, 46.107177734375], [-64.05639648437503, 46.021337890625006], [-63.874707031249955, 45.95922851562506], [-63.70288085937494, 45.858007812500034], [-63.56767578124993, 45.8779296875], [-63.509228515624926, 45.87470703124998], [-63.358007812500034, 45.81127929687503], [-63.31591796875, 45.779882812500006], [-63.29277343749999, 45.751953125], [-63.21689453124998, 45.757958984374994], [-63.10791015624997, 45.78242187500001], [-62.910791015624966, 45.7763671875], [-62.70068359374997, 45.740576171875006], [-62.718359375, 45.68598632812498], [-62.750097656250006, 45.64824218750002], [-62.58564453124998, 45.66069335937499], [-62.483056640624966, 45.62182617187506], [-62.44726562499994, 45.64052734375005], [-62.421875, 45.66464843749998], [-62.21772460937498, 45.730859374999966], [-61.955517578124955, 45.86816406249997], [-61.92358398437503, 45.85117187500006], [-61.91162109374997, 45.79912109375002], [-61.87724609374999, 45.714208984375034], [-61.776513671874994, 45.655615234375006], [-61.65688476562494, 45.642187500000034], [-61.49228515624998, 45.68701171875], [-61.427636718749966, 45.648291015625034], [-61.350488281249966, 45.57368164062501], [-61.277050781249926, 45.47602539062501], [-61.28198242187494, 45.441064453124994], [-61.37612304687494, 45.41059570312501], [-61.46098632812502, 45.36669921875003], [-61.10673828124996, 45.3486328125], [-61.07080078125, 45.33017578125006], [-61.03154296875002, 45.29174804687506], [-61.06767578124999, 45.25283203125002], [-61.10107421874997, 45.23344726562499], [-61.16533203124999, 45.25610351562497], [-61.28378906249998, 45.23549804687505], [-61.38725585937499, 45.18505859374997], [-61.49790039062498, 45.157031250000045], [-61.56875, 45.15380859375], [-61.64741210937498, 45.130517578124966], [-61.71923828124994, 45.094482421875], [-61.79389648437498, 45.08442382812498], [-62.02680664062498, 44.99448242187506], [-62.264990234375034, 44.936474609374955], [-62.51401367187495, 44.843652343749966], [-62.76806640625003, 44.78510742187504], [-63.031835937500034, 44.71479492187501], [-63.08920898437498, 44.70854492187499], [-63.155712890624955, 44.71132812500002], [-63.306298828124994, 44.64257812500003], [-63.38081054687498, 44.65190429687499], [-63.45683593750002, 44.639941406250045], [-63.544335937499994, 44.65507812500002], [-63.60400390624997, 44.68320312500006], [-63.558251953124966, 44.610595703125], [-63.544824218749994, 44.54375], [-63.56767578124993, 44.51445312499996], [-63.609765625, 44.47998046875006], [-63.761132812499994, 44.486425781250034], [-63.82065429687498, 44.510644531249994], [-63.89130859374998, 44.54633789062498], [-63.923681640625006, 44.60385742187506], [-63.999707031249926, 44.644921875], [-64.044921875, 44.587890625], [-64.04462890624995, 44.54541015625006], [-64.10087890624993, 44.487451171874966], [-64.1669921875, 44.58666992187503], [-64.28608398437493, 44.55034179687499], [-64.33852539062497, 44.44487304687499], [-64.31225585937503, 44.41474609374998], [-64.27568359374993, 44.33408203124998], [-64.33457031250003, 44.29199218750003], [-64.37822265624996, 44.30356445312498], [-64.46879882812493, 44.185156250000034], [-64.57846679687498, 44.14204101562504], [-64.69160156249995, 44.021337890625034], [-64.82563476562498, 43.92934570312505], [-64.86235351562499, 43.867871093749955], [-65.08681640625, 43.727197265624994], [-65.17207031249995, 43.73139648437504], [-65.23491210937496, 43.72675781249998], [-65.32958984374997, 43.66811523437502], [-65.34428710937496, 43.549609375000045], [-65.38608398437503, 43.565283203125034], [-65.42851562499996, 43.56142578125005], [-65.450439453125, 43.52421875000002], [-65.48168945312497, 43.51806640625], [-65.56445312499994, 43.55327148437499], [-65.66191406249999, 43.53403320312498], [-65.73813476562498, 43.56074218750001], [-65.83530273437498, 43.734375], [-65.88691406250001, 43.79521484374999], [-65.97841796875, 43.81484375], [-66.00214843749995, 43.778125], [-66.03764648437499, 43.74218750000003], [-66.125732421875, 43.813818359375034], [-66.19252929687502, 44.079687500000034], [-66.19306640624995, 44.143847656250045], [-66.09956054687498, 44.367480468750045], [-65.86801757812498, 44.56879882812501], [-65.94194335937493, 44.57553710937506], [-66.14638671875002, 44.43593750000005], [-66.12529296874999, 44.4697265625], [-66.09062, 44.50493164062499], [-66.02167968749993, 44.56171875000001], [-65.91704101562502, 44.615087890625034], [-65.77768554687495, 44.64619140624998], [-65.68183593749998, 44.65092773437496], [-65.61577148437502, 44.68041992187503], [-65.52001953124997, 44.732666015625], [-65.50224609374999, 44.760400390624966], [-65.58715820312497, 44.72851562500006], [-65.72822265625001, 44.69711914062506], [-65.69204101562502, 44.73828125], [-65.65673828125, 44.760302734375045], [-64.9029296875, 45.12080078125004], [-64.75126953125002, 45.18022460937496], [-64.44882812499995, 45.256054687499955], [-64.40688476562502, 45.30571289062496], [-64.44814453125, 45.33745117187502], [-64.33076171874998, 45.30932617187497], [-64.34042968749998, 45.26821289062505], [-64.35883789062501, 45.23823242187498], [-64.36572265625, 45.18725585937497], [-64.35424804687497, 45.138232421875045], [-64.235009765625, 45.114306640625045], [-64.13549804687497, 45.023046875], [-64.18271484375, 45.14702148437496], [-64.09316406249997, 45.21708984375002], [-63.74833984374999, 45.310888671875034], [-63.46025390624999, 45.32109374999999], [-63.368017578125034, 45.36479492187502], [-63.614453124999955, 45.394140625000034], [-63.906445312499955, 45.37817382812497], [-64.087158203125, 45.41088867187497], [-64.33642578124997, 45.389550781249994], [-64.60019531249998, 45.410058593749994], [-64.68110351562493, 45.382958984374966], [-64.74667968749998, 45.32436523437502], [-64.83193359375002, 45.350244140624966], [-64.87314453124998, 45.35458984375006], [-64.91289062499999, 45.37480468749999], [-64.82739257812497, 45.47553710937501], [-64.56005859374997, 45.62548828125], [-64.39707031249998, 45.755859375], [-64.35112304687493, 45.78320312499997], [-64.31464843749998, 45.83569335937503], [-64.40405273437497, 45.826904296875], [-64.48222656250002, 45.80634765624998], [-64.53632812499993, 45.866601562499994], [-64.63271484375002, 45.94663085937506], [-64.64204101562498, 45.91333007812503], [-64.59365234374997, 45.81367187499998], [-64.77851562499998, 45.63842773437497], [-64.89790039062495, 45.6259765625], [-65.05727539062502, 45.54423828124996], [-65.28232421875003, 45.473095703124955], [-65.54501953124998, 45.337304687499994], [-65.88447265624995, 45.22290039062506], [-65.95561523437496, 45.22246093749996], [-66.10976562500002, 45.316601562499955], [-66.06665039062494, 45.35947265624998], [-66.02656249999995, 45.417578125], [-66.06489257812495, 45.40083007812498], [-66.08974609374994, 45.375634765624994], [-66.18271484374998, 45.33520507812503], [-66.10732421874997, 45.25693359375006], [-66.14375, 45.22758789062502], [-66.25156249999995, 45.18901367187499], [-66.351953125, 45.133203125], [-66.43984374999994, 45.09589843750001], [-66.51093749999995, 45.14335937500002], [-66.70717773437497, 45.083398437499966], [-66.87246093749997, 45.067285156249966], [-66.90820312499997, 45.09765625000003], [-66.91870117187497, 45.145605468750034], [-66.97656249999994, 45.15717773437498], [-67.08408203125, 45.14394531250005], [-67.12485351562498, 45.16943359375], [-67.17099609374995, 45.18198242187498], [-67.21323242187503, 45.192529296874994], [-67.24960937499998, 45.20078124999998], [-67.27070312499993, 45.186718749999955], [-67.290673828125, 45.167919921874955], [-67.31528320312495, 45.15380859375], [-67.366943359375, 45.17377929687498], [-67.39980468749994, 45.21015625000004], [-67.45258789062495, 45.247656250000034], [-67.47255859375002, 45.27587890625], [-67.46196289062499, 45.308691406250034], [-67.43852539062502, 45.34038085937502], [-67.42792968749998, 45.37792968750003], [-67.453759765625, 45.421240234375034], [-67.47724609374998, 45.445898437500006], [-67.49365234374997, 45.47407226562498], [-67.48779296875, 45.50102539062496], [-67.45493164062498, 45.51396484375002], [-67.42441406249998, 45.530419921874994], [-67.41386718749996, 45.565576171874966], [-67.43266601562496, 45.60312], [-67.48662109374996, 45.61840820312497], [-67.53120117187498, 45.61254882812503], [-67.59575195312499, 45.62075195312502], [-67.65791015624995, 45.644189453124994], [-67.69897460937497, 45.67119140624999], [-67.73066406249993, 45.68647460937498], [-67.75532226562498, 45.68647460937498], [-67.78466796875, 45.70170898437499], [-67.80224609374994, 45.7275390625], [-67.79990234375, 45.769775390625], [-67.79169921874993, 45.79555664062502], [-67.77529296874997, 45.81787109375003], [-67.77412109374998, 45.842529296875], [-67.78115234375, 45.86015625000002], [-67.78227539062496, 45.87416992187505], [-67.77763671874999, 45.89179687499998], [-67.76704101562498, 45.92700195312506], [-67.78466796875, 45.952783203124966], [-67.78647460937503, 46.042138671874966], [-67.78994140625002, 46.209326171875006], [-67.79252929687502, 46.33740234375], [-67.79580078124997, 46.498388671875034], [-67.797705078125, 46.615625], [-67.80034179687502, 46.779882812500006], [-67.80283203124998, 46.93574218750004], [-67.806787109375, 47.08281249999999], [-67.93486328124996, 47.16762695312502], [-68.09677734375, 47.27485351562501], [-68.23549804687502, 47.34594726562503], [-68.310888671875, 47.3544921875], [-68.3580078125, 47.34453125000002], [-68.37690429687495, 47.316162109375], [-68.48037109375, 47.28579101562502], [-68.66855468749995, 47.25346679687502], [-68.82871093749998, 47.20332031250001], [-68.88740234374995, 47.20283203125001], [-68.93720703124998, 47.21123046875002], [-69.00312, 47.236425781250006], [-69.04858398437503, 47.273632812499955], [-69.06425781250002, 47.33813476562503], [-69.0501953125, 47.426611328125034], [-69.14628906249993, 47.44477539062501], [-69.24287109374998, 47.46298828124998], [-69.3021484375, 47.402001953124994], [-69.35888671875, 47.35063476562502], [-69.47148437499993, 47.23867187500002], [-69.62978515624994, 47.081347656250045], [-69.71752929687497, 46.994873046875], [-69.87172851562494, 46.84291992187505], [-70.00771484375002, 46.70893554687501], [-70.03823242187502, 46.571435546874994], [-70.0671875, 46.441064453124966], [-70.17968749999997, 46.34184570312502], [-70.248291015625, 46.25087890625005], [-70.27890625000003, 46.15], [-70.30449218749999, 46.05737304687497], [-70.30644531249996, 45.97983398437498], [-70.28715820312502, 45.939160156249955], [-70.296240234375, 45.90610351562506], [-70.33344726562495, 45.86806640625005], [-70.407861328125, 45.801904296874966], [-70.42109374999995, 45.738232421874955], [-70.46660156249999, 45.70683593749996], [-70.59638671874995, 45.643994140624955], [-70.70224609375003, 45.551367187500006], [-70.70742187500002, 45.498925781249966], [-70.692138671875, 45.45537109374999], [-70.68979492187498, 45.42832031249998], [-70.71093750000003, 45.40947265624996], [-70.75332031249997, 45.41069335937502], [-70.79916992187498, 45.40478515624997], [-70.83779296875002, 45.36616210937501], [-70.83681640625, 45.310693359374994], [-70.86503906249999, 45.27070312500001], [-70.89799804687493, 45.26245117187503], [-70.92622070312501, 45.29072265625001], [-70.96015624999998, 45.333105468750034], [-70.99990234375, 45.33725585937498], [-71.06025390624995, 45.309130859375045], [-71.13466796875002, 45.26284179687502], [-71.20161132812498, 45.260351562500034], [-71.327294921875, 45.29008789062496], [-71.41904296874995, 45.200341796874994], [-71.51752929687495, 45.00756835937497], [-71.93364257812499, 45.00708007812506], [-72.34975585937494, 45.00659179687503], [-72.76591796874999, 45.00610351562503], [-73.18203124999994, 45.00561523437503], [-73.59814453124997, 45.00517578125002], [-74.01425781250003, 45.00468750000002], [-74.43037109374998, 45.00419921874999], [-74.663232421875, 45.00390625000003], [-74.70888671874997, 45.0038574218751]]], [[[-126.09208984374995, 49.35400390625003], [-126.06401367187499, 49.26362304687501], [-126.18681640624996, 49.278125], [-126.22963867187498, 49.29565429687506], [-126.2314453125, 49.33906250000001], [-126.20854492187495, 49.37978515625005], [-126.11528320312496, 49.36503906249996], [-126.09208984374995, 49.35400390625003]]], [[[-54.55439453125001, 49.5888671875], [-54.70869140625001, 49.53066406250005], [-54.743847656249955, 49.50776367187501], [-54.786523437499966, 49.496142578125045], [-54.818505859374994, 49.514453125000045], [-54.86357421875002, 49.576074218749966], [-54.855419921874955, 49.596582031249966], [-54.813085937500034, 49.599365234375], [-54.78876953124998, 49.59121093750005], [-54.782617187499966, 49.57207031249996], [-54.7640625, 49.562353515625034], [-54.73310546875001, 49.562158203124994], [-54.61875, 49.62207031250003], [-54.559179687500006, 49.631494140624994], [-54.53769531249998, 49.619970703125034], [-54.55439453125001, 49.5888671875]]], [[[-54.093701171874955, 49.74443359374999], [-54.01992187500002, 49.67949218749999], [-53.98066406250001, 49.66196289062498], [-54.238378906250006, 49.591650390625034], [-54.26923828125001, 49.58701171874998], [-54.28613281249997, 49.595361328124994], [-54.28876953124998, 49.66083984375001], [-54.27763671875002, 49.71147460937502], [-54.258984374999955, 49.71899414062506], [-54.199365234374966, 49.68852539062496], [-54.13769531250003, 49.75117187500004], [-54.093701171874955, 49.74443359374999]]], [[[-124.153662109375, 49.531152343749966], [-124.13979492187502, 49.510351562500006], [-124.36230468749997, 49.588183593750045], [-124.45722656249994, 49.63422851562501], [-124.49394531249996, 49.66748046875003], [-124.51782226562503, 49.68632812499996], [-124.63095703124999, 49.73569335937498], [-124.64985351562501, 49.75834960937499], [-124.62329101562503, 49.77509765625001], [-124.54716796874997, 49.76494140624999], [-124.42148437500003, 49.72778320312497], [-124.30913085937497, 49.66728515624999], [-124.153662109375, 49.531152343749966]]], [[[-126.64121093749999, 49.605810546875006], [-126.68041992187499, 49.60136718749999], [-126.74340820312503, 49.613476562499955], [-126.81420898437497, 49.64208984375], [-126.93857421874999, 49.71845703125004], [-126.95126953125, 49.73569335937498], [-126.94003906250003, 49.75048828124997], [-126.90488281249998, 49.762792968750006], [-126.896875, 49.78291015625001], [-126.92583007812497, 49.837744140625006], [-126.82607421875, 49.87236328125002], [-126.73813476562502, 49.84365234375005], [-126.69814453124995, 49.808496093749994], [-126.64990234374999, 49.74580078125001], [-126.628173828125, 49.675146484375006], [-126.62578125, 49.626806640625006], [-126.64121093749999, 49.605810546875006]]], [[[-61.801123046875034, 49.093896484374966], [-62.21953124999999, 49.07910156249997], [-62.552636718749994, 49.14086914062503], [-62.79960937499996, 49.17070312499999], [-63.04150390624994, 49.224951171875034], [-63.565869140624926, 49.39931640625002], [-63.625878906249994, 49.45991210937501], [-63.676220703124926, 49.534326171874994], [-63.77661132812497, 49.60200195312501], [-63.884912109374994, 49.65771484375], [-64.44003906250003, 49.827734375], [-64.485205078125, 49.88696289062497], [-64.37294921874994, 49.92592773437502], [-64.24375, 49.94438476562496], [-64.13144531249995, 49.94165039062503], [-63.76015625, 49.875244140625], [-63.2919921875, 49.81684570312501], [-63.08881835937498, 49.77270507812497], [-62.858544921874966, 49.70546875000005], [-62.63344726562494, 49.62392578125005], [-62.133007812499955, 49.407080078125006], [-62.043066406250034, 49.38979492187505], [-61.817138671875, 49.28354492187498], [-61.73583984374997, 49.203759765624966], [-61.69614257812495, 49.139013671875006], [-61.745507812499966, 49.10576171874999], [-61.801123046875034, 49.093896484374966]]], [[[-124.97773437500003, 50.02958984374999], [-125.0015625, 50.02075195312497], [-125.02597656249999, 50.13408203124996], [-124.99565429687495, 50.175195312499994], [-124.98701171874995, 50.19584960937502], [-124.99082031250002, 50.217138671875006], [-124.93784179687498, 50.165917968749966], [-124.91640624999997, 50.13154296874998], [-124.90747070312501, 50.08398437499997], [-124.90844726562503, 50.07128906250006], [-124.97773437500003, 50.02958984374999]]], [[[-125.18413085937497, 50.09711914062498], [-125.19511718749999, 50.044335937499994], [-125.25957031249997, 50.13002929687502], [-125.35844726562496, 50.31152343749997], [-125.34531250000003, 50.35395507812501], [-125.301171875, 50.4140625], [-125.26093749999998, 50.417822265625034], [-125.19599609375, 50.389746093750006], [-125.13950195312503, 50.339697265625034], [-125.12646484374994, 50.32026367187498], [-125.09140625, 50.26777343750004], [-125.07402343750002, 50.22065429687501], [-125.11298828124995, 50.163476562499994], [-125.18413085937497, 50.09711914062498]]], [[[-55.5361328125, 50.71967773437498], [-55.56967773437498, 50.70869140624998], [-55.600781249999926, 50.709033203125045], [-55.62934570312498, 50.720800781250034], [-55.633886718750006, 50.74018554687498], [-55.60449218749997, 50.78071289062498], [-55.527197265625034, 50.80122070312498], [-55.46928710937496, 50.79638671874997], [-55.47275390624995, 50.77592773437499], [-55.503808593749994, 50.74213867187504], [-55.5361328125, 50.71967773437498]]], [[[-127.19731445312495, 50.640380859375], [-126.70092773437499, 50.515527343749966], [-126.20385742187497, 50.453857421875], [-125.83916015625002, 50.380810546874955], [-125.61523437499996, 50.35854492187505], [-125.534326171875, 50.34248046874998], [-125.48208007812501, 50.316796874999966], [-125.42045898437497, 50.25463867187503], [-125.31396484374996, 50.10668945312497], [-125.23320312499993, 50.01220703125], [-125.06640624999997, 49.84819335937499], [-124.93466796874995, 49.731640624999955], [-124.90463867187496, 49.685351562500045], [-124.93242187499995, 49.67045898437502], [-124.93066406250003, 49.64316406250006], [-124.83061523437499, 49.53007812500002], [-124.64287109375002, 49.428662109374955], [-124.49594726562502, 49.380273437499966], [-124.18588867187499, 49.30058593749999], [-123.99580078125, 49.22402343750002], [-123.93715820312495, 49.17080078125002], [-123.85449218749999, 49.11918945312499], [-123.82001953124998, 49.08349609375], [-123.75229492187503, 48.951220703125045], [-123.6265625, 48.82402343749996], [-123.49702148437498, 48.58208007812499], [-123.47285156249995, 48.602294921875], [-123.45795898437503, 48.674414062500034], [-123.44306640625001, 48.690478515625045], [-123.41547851562498, 48.69819335937501], [-123.38989257812501, 48.67021484374999], [-123.36630859375, 48.60644531250006], [-123.28378906249998, 48.45517578125006], [-123.31064453125003, 48.41103515625002], [-123.33452148437502, 48.406494140625], [-123.44589843749996, 48.42724609375006], [-123.48457031250003, 48.40009765625004], [-123.53647460937503, 48.344970703125], [-123.57314453124995, 48.32280273437499], [-123.59462890624998, 48.33354492187496], [-123.91694335937501, 48.386572265625034], [-124.11523437499999, 48.436425781249966], [-124.37622070312496, 48.515234375000034], [-124.689404296875, 48.597314453124966], [-124.86826171875002, 48.65361328124999], [-125.017236328125, 48.71147460937496], [-125.12070312500002, 48.76079101562496], [-125.14028320312501, 48.802636718749966], [-125.13569335937497, 48.822412109374994], [-124.93476562499997, 48.95634765625002], [-124.84965820312496, 49.02827148437501], [-124.81704101562497, 49.083300781250045], [-124.80024414062501, 49.14155273437501], [-124.81264648437497, 49.212646484375], [-124.82075195312501, 49.207128906250034], [-124.83872070312503, 49.13906250000002], [-124.86831054687502, 49.07851562500005], [-124.90444335937501, 49.03100585937503], [-124.92734374999998, 49.01420898437499], [-125.16821289062501, 48.99101562499999], [-125.36274414062494, 48.99824218750004], [-125.46030273437502, 48.94106445312502], [-125.489453125, 48.933789062499955], [-125.54311523437501, 48.95283203125001], [-125.66049804687503, 49.029150390625006], [-125.82851562499998, 49.09184570312499], [-125.81196289062498, 49.10722656250002], [-125.70229492187502, 49.13920898437496], [-125.64423828125001, 49.18579101562506], [-125.65463867187499, 49.193212890625034], [-125.69370117187496, 49.19038085937501], [-125.72802734375003, 49.199853515624966], [-125.79638671875, 49.26020507812501], [-125.83544921874997, 49.27666015624999], [-125.91835937499998, 49.24951171874997], [-125.95166015625001, 49.24804687500003], [-125.983837890625, 49.28789062499996], [-125.93769531250001, 49.37978515625005], [-125.93540039062499, 49.401464843750006], [-126.02031249999997, 49.368017578125034], [-126.04833984375, 49.37900390625006], [-126.07490234375, 49.408789062500006], [-126.09985351562501, 49.421289062499966], [-126.16884765624995, 49.415185546874966], [-126.24360351562498, 49.44267578124999], [-126.26972656249998, 49.431884765625], [-126.27963867187496, 49.3921875], [-126.30449218749996, 49.382031249999955], [-126.41860351562502, 49.44902343750002], [-126.44453124999998, 49.45112304687501], [-126.49985351562496, 49.39995117187499], [-126.519140625, 49.396777343750045], [-126.54853515625003, 49.41894531250003], [-126.56372070312501, 49.543261718750045], [-126.55747070312498, 49.57861328125006], [-126.54189453125001, 49.590478515624966], [-126.44277343749998, 49.619287109374994], [-126.1578125, 49.65014648437506], [-126.13408203124997, 49.672314453124955], [-126.34755859374994, 49.66083984375001], [-126.40317382812499, 49.677734375], [-126.46279296874997, 49.72021484375003], [-126.52524414062499, 49.71958007812498], [-126.55825195312497, 49.73339843750006], [-126.59287109375, 49.76411132812501], [-126.68310546875, 49.87646484374997], [-126.74462890625001, 49.904931640624994], [-126.84936523437503, 49.92280273437501], [-126.90332031250001, 49.94414062499999], [-126.92607421875003, 49.93471679687502], [-126.94794921874995, 49.90268554687498], [-126.97709960937495, 49.88281250000003], [-127.04873046874997, 49.87153320312504], [-127.114306640625, 49.879736328125034], [-127.16552734374996, 49.91044921874996], [-127.19589843750002, 49.949169921874955], [-127.20751953124999, 49.99243164062497], [-127.17910156249997, 50.05029296875003], [-127.179638671875, 50.073144531249994], [-127.192333984375, 50.09990234375002], [-127.21567382812496, 50.121484374999966], [-127.24980468749999, 50.13798828124996], [-127.26840820312496, 50.12934570312498], [-127.27153320312497, 50.095556640625034], [-127.29003906250001, 50.07084960937496], [-127.34941406249995, 50.05195312500001], [-127.39790039062495, 50.08500976562502], [-127.42978515624998, 50.13085937500003], [-127.46713867187503, 50.163427734375006], [-127.67485351562499, 50.16333007812497], [-127.77045898437501, 50.12114257812499], [-127.81630859375002, 50.11772460937502], [-127.86391601562495, 50.12773437500002], [-127.87299804687503, 50.15009765625004], [-127.82817382812496, 50.21142578125], [-127.83916015624997, 50.29321289062497], [-127.85083007812496, 50.31372070312497], [-127.94667968750002, 50.326220703125045], [-127.96293945312496, 50.34599609374999], [-127.90585937499998, 50.44521484375002], [-127.87402343749997, 50.463964843750034], [-127.83154296875001, 50.47104492187506], [-127.64140625, 50.479101562500006], [-127.578125, 50.46494140625006], [-127.48652343749998, 50.404638671875034], [-127.48935546875003, 50.427343750000034], [-127.52402343749999, 50.49575195312502], [-127.52900390625003, 50.53676757812502], [-127.46591796874996, 50.58310546875006], [-127.52622070312499, 50.59667968749997], [-127.75146484374996, 50.60737304687501], [-127.74970703124995, 50.577734375000034], [-127.73115234375, 50.535742187500006], [-127.86469726562503, 50.498876953125034], [-127.96367187500003, 50.49262695312501], [-128.05834960937494, 50.498486328124955], [-128.13564453124997, 50.52055664062502], [-128.267431640625, 50.609277343749966], [-128.34990234375002, 50.69658203124999], [-128.34604492187503, 50.744238281250006], [-128.300830078125, 50.79414062499998], [-128.24155273437498, 50.82817382812499], [-128.101318359375, 50.85776367187506], [-127.91806640624998, 50.86054687500001], [-127.71303710937495, 50.82075195312498], [-127.19731445312495, 50.640380859375]]], [[[-55.45874023437494, 51.53652343750005], [-55.532421874999955, 51.43696289062501], [-55.58339843749994, 51.38857421875002], [-55.630761718749994, 51.372900390625006], [-55.73071289062503, 51.35869140624996], [-55.941162109375, 51.34301757812497], [-56.031103515625034, 51.328369140625], [-56.04394531249997, 51.26186523437505], [-56.03066406250002, 51.226904296875034], [-55.999902343749966, 51.19926757812499], [-55.96083984375002, 51.19140625], [-55.87353515625, 51.207910156249966], [-55.84111328124996, 51.20507812500003], [-55.815087890624994, 51.19116210937503], [-55.79550781249998, 51.166162109374994], [-55.785351562499955, 51.131445312500034], [-55.78471679687502, 51.08706054687505], [-55.8, 51.033300781250034], [-55.87138671874999, 50.90737304687502], [-55.96201171874998, 50.83769531249996], [-56.078125, 50.78095703125004], [-56.106542968750034, 50.75927734374997], [-56.121191406250006, 50.73378906250002], [-56.135644531249994, 50.650976562500034], [-56.19575195312498, 50.584765625000045], [-56.382421875, 50.41699218750006], [-56.454345703125, 50.380029296874994], [-56.45478515625001, 50.350488281249994], [-56.48393554687499, 50.270849609375034], [-56.53935546875002, 50.20673828125004], [-56.693994140624966, 50.059667968750006], [-56.732324218749966, 50.007714843749994], [-56.74956054687502, 49.96655273437503], [-56.74716796874998, 49.90849609375002], [-56.754101562499955, 49.882910156250034], [-56.78950195312498, 49.83374023437497], [-56.8388671875, 49.78774414062502], [-56.84863281249994, 49.76533203124998], [-56.82919921874998, 49.72460937500003], [-56.809228515624994, 49.71040039062498], [-56.80688476562497, 49.67333984374997], [-56.822167968749966, 49.613476562499955], [-56.75678710937498, 49.651611328125], [-56.61064453124996, 49.787695312500006], [-56.50092773437498, 49.86962890625], [-56.42758789062498, 49.89741210937498], [-56.376416015624926, 49.933691406250006], [-56.32182617187502, 50.01376953125006], [-56.24707031249997, 50.09008789062497], [-56.179394531249955, 50.114990234375], [-56.148388671874926, 50.10034179687503], [-56.122167968750006, 50.062841796875034], [-56.12744140625003, 50.01513671874997], [-56.16416015624995, 49.957275390625], [-56.161279296874994, 49.94013671874998], [-56.075, 49.98261718750001], [-55.92700195312494, 50.01777343749998], [-55.87333984374996, 50.01313476562501], [-55.764746093750034, 49.96044921875003], [-55.67446289062502, 49.96655273437503], [-55.530029296875, 49.99716796875006], [-55.50292968749997, 49.98315429687503], [-55.527001953124994, 49.936767578125], [-55.58369140625001, 49.89238281250002], [-55.717626953125034, 49.829003906249994], [-56.03999023437498, 49.70468749999998], [-56.14018554687496, 49.61914062500006], [-56.121191406250006, 49.62172851562505], [-56.051611328125034, 49.658398437499955], [-55.97851562499997, 49.678125], [-55.90185546874997, 49.68085937500001], [-55.869824218749955, 49.67016601562506], [-55.88232421875, 49.64594726562501], [-55.892041015624926, 49.58027343750004], [-56.08730468750002, 49.45195312499999], [-56.041210937499955, 49.45683593750002], [-55.81523437500002, 49.51528320312502], [-55.67812, 49.43461914062502], [-55.48974609374997, 49.4625], [-55.375927734374955, 49.48974609374997], [-55.379150390625, 49.472900390625], [-55.35449218750003, 49.43769531250004], [-55.35537109375002, 49.380859375], [-55.34384765624998, 49.37290039062506], [-55.28994140625002, 49.391943359375034], [-55.280175781249994, 49.412744140624994], [-55.28300781249993, 49.513818359374994], [-55.266357421875, 49.52392578125], [-55.22954101562496, 49.508154296875006], [-55.20703125, 49.48203125], [-55.20029296874998, 49.40849609375002], [-55.225, 49.33466796875001], [-55.25932617187499, 49.266992187499966], [-55.34248046874998, 49.168115234374994], [-55.331933593749966, 49.125585937500034], [-55.35317382812502, 49.07944335937506], [-55.33476562500002, 49.077880859375], [-55.25234375, 49.12089843749996], [-55.24736328124996, 49.13857421875002], [-55.25380859374994, 49.17963867187504], [-55.24453125, 49.19980468750006], [-55.176123046875006, 49.24443359374999], [-55.06318359375001, 49.29736328125003], [-55.02617187500002, 49.30537109374998], [-55.010400390624994, 49.293017578125045], [-55.01591796874996, 49.260351562500034], [-54.982617187499926, 49.26811523437502], [-54.910546875, 49.31625976562498], [-54.843652343749966, 49.345410156249955], [-54.781884765624994, 49.35546874999997], [-54.71762695312495, 49.388574218749966], [-54.65087890625003, 49.44453125000001], [-54.579052734374955, 49.490820312500006], [-54.50219726562503, 49.52734375], [-54.469189453124955, 49.52978515625006], [-54.480615234374994, 49.46933593749998], [-54.465429687500006, 49.400537109374994], [-54.46347656249995, 49.34174804687501], [-54.44824218749997, 49.329443359375006], [-54.3890625, 49.39213867187499], [-54.356152343749955, 49.41503906250003], [-54.316748046875006, 49.42412109375002], [-54.27080078124996, 49.419287109375006], [-53.957714843749955, 49.44184570312498], [-53.862451171874994, 49.42631835937502], [-53.754980468750034, 49.38530273437502], [-53.61943359374996, 49.321630859375006], [-53.569580078125, 49.26416015625003], [-53.56005859375003, 49.19169921875002], [-53.57343750000001, 49.141210937500034], [-53.671142578125, 49.07753906250002], [-53.75805664062494, 49.03540039062506], [-53.809326171875, 48.99340820312503], [-53.82490234374998, 48.95136718749998], [-53.84521484375003, 48.92543945312502], [-53.90322265624994, 48.88916015625], [-54.16127929687494, 48.787695312500034], [-54.099511718749966, 48.78476562500006], [-53.95068359375003, 48.80678710937502], [-53.852880859375006, 48.81132812499996], [-53.847753906250006, 48.79667968749999], [-53.88681640624998, 48.76782226562497], [-53.961523437500006, 48.738867187500034], [-53.96958007812498, 48.72490234375002], [-53.966015624999955, 48.70668945312505], [-53.88613281250002, 48.684667968750006], [-53.78408203125002, 48.69541015625006], [-53.69804687499999, 48.679833984374994], [-53.70634765624999, 48.65551757812503], [-53.774609374999955, 48.57631835937505], [-53.794628906249955, 48.5263671875], [-53.88554687499999, 48.48457031250001], [-54.067773437499994, 48.41884765625002], [-54.11445312499998, 48.393603515625045], [-54.10424804687497, 48.38837890625004], [-53.93701171875, 48.436621093750006], [-53.852734374999955, 48.448828125], [-53.79931640625, 48.44921875], [-53.738867187500034, 48.49580078124998], [-53.644433593749994, 48.51123046875003], [-53.55205078124999, 48.48178710937506], [-53.41132812500001, 48.562158203124994], [-53.361083984375, 48.572607421875006], [-53.27543945312496, 48.56333007812498], [-53.22026367187499, 48.577880859375], [-53.127343749999966, 48.63256835937506], [-53.057275390624994, 48.659033203125034], [-53.042675781249955, 48.656640624999966], [-53.027587890625, 48.634716796874955], [-53.02075195312503, 48.57163085937498], [-53.037304687499926, 48.515869140625], [-53.060205078124966, 48.480322265625034], [-53.1357421875, 48.40185546875003], [-53.18212890624994, 48.374365234375034], [-53.22509765625, 48.36401367187506], [-53.301171874999966, 48.3681640625], [-53.33432617187495, 48.35595703125], [-53.40551757812497, 48.294335937499966], [-53.53120117187501, 48.231884765624955], [-53.60976562500002, 48.20771484375001], [-53.560205078124966, 48.17382812500003], [-53.54184570312495, 48.10844726562502], [-53.56943359374998, 48.088085937499955], [-53.70429687500001, 48.067919921875045], [-53.710156249999955, 48.05683593749998], [-53.758203125, 48.042382812499994], [-53.869580078124926, 48.019677734374966], [-53.79355468749998, 48.00971679687498], [-53.653027343749955, 48.02573242187506], [-53.63823242187496, 48.01464843750003], [-53.657617187499994, 47.968652343749966], [-53.69501953124998, 47.92119140624999], [-53.861669921875006, 47.79926757812501], [-53.863671874999966, 47.787011718749994], [-53.837744140625034, 47.72724609374998], [-53.80537109375001, 47.68203125000002], [-53.76513671874997, 47.65009765625001], [-53.67236328125, 47.64824218749999], [-53.60375976562497, 47.66230468750001], [-53.503759765625006, 47.74384765625001], [-53.28271484375, 47.99785156249996], [-53.08544921874997, 48.068505859374966], [-52.920996093750034, 48.147070312500006], [-52.88330078125, 48.131152343750045], [-52.86601562499993, 48.11298828124998], [-52.87202148437501, 48.09394531250001], [-52.95498046874994, 48.02929687499997], [-52.998242187499955, 47.975927734375034], [-53.11083984375, 47.81191406250002], [-53.15385742187496, 47.73457031249998], [-53.17553710937503, 47.652978515624966], [-53.16982421875002, 47.51210937500005], [-53.157666015624926, 47.48779296874997], [-53.122460937499966, 47.45512695312499], [-53.05683593750001, 47.48310546874998], [-52.945019531249955, 47.55283203124998], [-52.873193359374994, 47.61943359374996], [-52.81694335937499, 47.727880859375034], [-52.782421874999955, 47.769433593749966], [-52.74492187499996, 47.768945312499966], [-52.71142578124997, 47.74531250000004], [-52.703271484374994, 47.69301757812505], [-52.67216796874996, 47.62177734375001], [-52.653662109375034, 47.549414062500006], [-52.66850585937493, 47.469824218750034], [-52.68364257812499, 47.42631835937496], [-52.91240234374999, 47.103222656249955], [-52.88813476562501, 47.04584960937501], [-52.88208007812503, 47.011083984375034], [-52.88920898437496, 46.97412109375003], [-52.96171874999999, 46.81943359375006], [-53.03193359374998, 46.72275390624998], [-53.06977539062498, 46.68125], [-53.11484375, 46.65581054687502], [-53.16699218749997, 46.646484375], [-53.21367187499999, 46.660498046875006], [-53.25488281250003, 46.69770507812504], [-53.29130859374999, 46.71704101562497], [-53.32304687499996, 46.71835937499998], [-53.38173828125002, 46.71142578125], [-53.53613281249994, 46.63251953124998], [-53.567773437499994, 46.628271484375006], [-53.589794921874955, 46.638867187499955], [-53.61635742187494, 46.680273437500034], [-53.59516601562498, 46.88847656249999], [-53.58134765625002, 46.95727539062497], [-53.61215820312498, 47.01035156250006], [-53.57963867187502, 47.09941406249999], [-53.57846679687495, 47.133251953124955], [-53.59736328124998, 47.14599609374997], [-53.63637695312494, 47.13769531249997], [-53.69536132812496, 47.092919921874994], [-53.774316406249966, 47.011816406250006], [-53.86000976562502, 46.939453125], [-54.00957031249993, 46.839599609375], [-54.07602539062498, 46.819970703124994], [-54.102392578125034, 46.82490234375001], [-54.1328125, 46.838574218749955], [-54.173730468749994, 46.88037109375003], [-54.17329101562498, 46.91718749999998], [-54.155224609374955, 46.96748046875001], [-54.092675781249994, 47.08623046874996], [-53.97050781249999, 47.26196289062497], [-53.86909179687501, 47.38701171874996], [-53.84951171875002, 47.440332031249994], [-53.877880859374926, 47.46357421875001], [-53.90083007812498, 47.50932617187502], [-53.93974609375002, 47.64467773437505], [-53.98901367187503, 47.756201171875034], [-54.047265625, 47.80561523437498], [-54.191845703124955, 47.85981445312501], [-54.21840820312494, 47.84672851562499], [-54.23388671875, 47.77167968749998], [-54.404687499999966, 47.555908203125], [-54.434472656249994, 47.46230468750002], [-54.455908203125006, 47.42758789062506], [-54.488134765625006, 47.40385742187502], [-54.56254882812499, 47.37519531250004], [-54.542382812499966, 47.42509765624999], [-54.463232421875006, 47.53623046874998], [-54.47392578124996, 47.54707031249998], [-54.57451171875002, 47.45776367187497], [-54.65117187500002, 47.408203125], [-54.74467773437496, 47.39545898437498], [-54.801513671875, 47.39863281250001], [-54.856640624999955, 47.385009765625], [-55.09042968749998, 47.17392578124998], [-55.09921874999998, 47.103564453125045], [-55.13964843749994, 47.04594726562502], [-55.25493164062499, 46.941748046875006], [-55.31572265624993, 46.905712890624955], [-55.401269531249966, 46.89926757812498], [-55.47929687499996, 46.91728515625002], [-55.530712890624955, 46.914013671874955], [-55.65234374999994, 46.88144531249998], [-55.78852539062498, 46.86723632812502], [-55.84472656249997, 46.873828125000045], [-55.880615234375, 46.88720703125], [-55.94990234375001, 46.92768554687498], [-55.95820312500001, 46.95639648437498], [-55.954492187499966, 46.973242187500034], [-55.91923828124996, 47.01689453124996], [-55.83837890625003, 47.071630859375006], [-55.77182617187495, 47.09208984375002], [-55.610058593749955, 47.11962890625003], [-55.49150390624996, 47.16064453125003], [-55.40122070312495, 47.22148437499999], [-55.36088867187499, 47.25859374999999], [-55.190820312499994, 47.44897460937497], [-54.97563476562493, 47.51616210937499], [-54.86953125, 47.570898437500034], [-54.79536132812498, 47.640332031249955], [-54.78461914062501, 47.664746093749955], [-54.89101562500002, 47.62949218749998], [-54.94594726562502, 47.620849609375], [-55.03500976562495, 47.63388671874998], [-55.074560546875006, 47.657568359375006], [-55.19658203125002, 47.650048828124994], [-55.366308593750034, 47.66108398437501], [-55.390771484374966, 47.642871093750045], [-55.41269531249998, 47.550390625000034], [-55.434667968750006, 47.50126953124996], [-55.46064453124998, 47.484765624999966], [-55.498632812500006, 47.475048828124955], [-55.57612304687498, 47.465234375], [-55.77470703125002, 47.49829101562497], [-55.811376953125034, 47.51635742187503], [-55.86206054687497, 47.53007812499996], [-56.08134765624996, 47.499951171874955], [-56.12724609374999, 47.50283203125002], [-56.08369140624998, 47.524511718750006], [-55.867089843749994, 47.592333984375045], [-55.844384765624994, 47.787841796875], [-55.85791015625, 47.81918945312498], [-55.91845703125, 47.79189453125002], [-56.020117187500006, 47.76372070312496], [-56.08964843749996, 47.771875], [-56.12143554687495, 47.789160156250006], [-56.150585937499926, 47.774511718750034], [-56.22128906249995, 47.67138671874997], [-56.26298828125002, 47.658447265625], [-56.32578125, 47.65449218750001], [-56.459570312500006, 47.616943359375], [-56.722314453124966, 47.59228515625003], [-56.774121093749955, 47.56499023437499], [-56.95249023437498, 47.57446289062506], [-57.4734375, 47.63110351562503], [-57.65981445312502, 47.62539062500002], [-57.88408203124996, 47.66000976562498], [-57.92553710937497, 47.67490234374998], [-58.23930664062493, 47.668847656249994], [-58.33320312499998, 47.676855468750034], [-58.32695312499993, 47.719873046874994], [-58.33686523437501, 47.73085937500002], [-58.42802734375002, 47.683398437500045], [-58.50888671874998, 47.65258789062497], [-58.61313476562498, 47.62622070312503], [-58.94116210937503, 47.58046875000002], [-59.11694335937494, 47.570703125], [-59.21928710937502, 47.6025390625], [-59.259765625, 47.63417968750005], [-59.32065429687498, 47.736914062500006], [-59.36240234374995, 47.865673828124955], [-59.36206054687497, 47.88896484374999], [-59.34086914062502, 47.933642578125045], [-59.272070312500034, 47.99555664062504], [-58.96083984374994, 48.159375], [-58.71059570312494, 48.325048828125006], [-58.60498046875, 48.41132812500001], [-58.502636718749955, 48.44204101562505], [-58.335546875, 48.51367187499997], [-58.330224609374994, 48.52211914062502], [-58.49223632812496, 48.513037109375034], [-58.60615234374998, 48.532861328124994], [-58.722558593749994, 48.54072265624998], [-58.943798828124926, 48.521777343750045], [-59.16679687499999, 48.521777343750045], [-59.16767578124998, 48.558496093749966], [-59.06342773437498, 48.62768554687503], [-58.84179687500003, 48.74643554687498], [-58.81918945312495, 48.74682617187506], [-58.88710937500002, 48.691552734374994], [-58.906445312499955, 48.65019531249999], [-58.87724609374996, 48.622705078124994], [-58.843408203124994, 48.605322265625006], [-58.716455078124994, 48.59804687500002], [-58.687353515625006, 48.62207031250003], [-58.6416015625, 48.74941406250005], [-58.54560546874998, 48.896875], [-58.49375, 49.00322265624999], [-58.403662109375034, 49.08432617187498], [-58.35869140625002, 49.09653320312498], [-58.31875, 49.08134765624999], [-58.186132812500034, 49.06191406250002], [-58.049658203125034, 48.98754882812497], [-58.005566406249926, 48.98125], [-57.99052734374996, 48.987939453124966], [-58.04057617187496, 49.00976562499997], [-58.08183593750002, 49.04472656249999], [-58.09892578124993, 49.07744140624999], [-58.049072265625, 49.17998046875002], [-57.99067382812501, 49.20947265624997], [-57.98007812499998, 49.229638671874994], [-58.09687, 49.230078125], [-58.19091796875003, 49.25874023437498], [-58.218896484374966, 49.30512695312501], [-58.21337890625, 49.38666992187501], [-58.18271484374995, 49.435400390625006], [-58.10742187499997, 49.499707031249955], [-58.01582031249998, 49.54248046874997], [-57.96123046874996, 49.53154296874996], [-57.856054687500034, 49.47382812500001], [-57.79130859374999, 49.48999023437503], [-57.798828125, 49.50854492187497], [-57.89746093750003, 49.600390625000045], [-57.92905273437498, 49.668408203124955], [-57.926171875, 49.700830078124994], [-57.7125, 50.02490234375003], [-57.60795898437502, 50.19877929687502], [-57.465527343749955, 50.46367187499996], [-57.4326171875, 50.50581054687504], [-57.36044921874995, 50.583935546874955], [-57.33056640625, 50.60517578125001], [-57.237402343750006, 50.605371093749966], [-57.179589843749966, 50.614843750000034], [-57.26416015624997, 50.649365234374955], [-57.29443359375, 50.67338867187496], [-57.29799804687502, 50.69873046874997], [-57.27490234375003, 50.72529296874998], [-57.24213867187501, 50.74492187499999], [-57.13164062499996, 50.78740234375002], [-57.05327148437499, 50.857324218749966], [-57.00566406249996, 50.93964843750004], [-57.01274414062499, 50.96772460937498], [-57.037304687499926, 50.99565429687499], [-57.03593750000002, 51.01083984374998], [-56.97636718749996, 51.027978515624994], [-56.825146484374955, 51.12573242187503], [-56.80546875, 51.14448242187501], [-56.75019531249998, 51.27490234375003], [-56.68242187500002, 51.332763671875], [-56.619042968749994, 51.36245117187502], [-56.51796875, 51.399316406249994], [-56.20737304687495, 51.48862304687506], [-56.025585937499955, 51.56835937500006], [-55.90209960937503, 51.56391601562504], [-55.865820312500006, 51.50830078124997], [-55.6904296875, 51.471337890624994], [-55.659570312499994, 51.51103515625002], [-55.700634765624926, 51.559423828125006], [-55.666406249999966, 51.57890624999999], [-55.521630859374966, 51.59638671874998], [-55.49643554687498, 51.58984374999997], [-55.45322265624998, 51.56230468749996], [-55.45874023437494, 51.53652343750005]]], [[[-127.92465820312498, 51.47387695312497], [-127.94125976562499, 51.45717773437505], [-127.98125, 51.457226562499955], [-128.04453124999998, 51.47402343750002], [-128.091796875, 51.51113281250002], [-128.14877929687498, 51.62670898437503], [-128.14238281250002, 51.646582031250006], [-128.12275390625, 51.66679687500002], [-128.03173828125006, 51.708398437499966], [-127.99868164062497, 51.70380859375001], [-127.98681640625003, 51.673583984375], [-127.93251953124998, 51.60546874999997], [-127.91635742187498, 51.58544921874997], [-127.91630859374997, 51.506201171875006], [-127.92465820312498, 51.47387695312497]]], [[[-55.361230468749966, 51.88964843750006], [-55.40888671875001, 51.888818359374966], [-55.41962890624998, 51.90004882812502], [-55.39980468750002, 51.93847656250006], [-55.34648437499999, 51.98286132812504], [-55.274072265624994, 51.99516601562496], [-55.29355468749995, 51.92998046874999], [-55.361230468749966, 51.88964843750006]]], [[[-79.38427734374997, 51.951953125000045], [-79.42558593749996, 51.94487304687502], [-79.52060546874995, 51.95292968749996], [-79.59687, 51.97802734375003], [-79.64375, 52.01005859374996], [-79.33486328124997, 52.09814453124997], [-79.27128906249996, 52.086816406249966], [-79.27021484374993, 52.07109375], [-79.31660156249995, 52.02392578125006], [-79.328955078125, 51.992285156250006], [-79.35151367187498, 51.96831054687499], [-79.38427734374997, 51.951953125000045]]], [[[-131.029296875, 51.961621093749955], [-131.04726562500002, 51.95971679687503], [-131.08051757812495, 51.98041992187498], [-131.10341796875002, 52.01386718750004], [-131.11733398437502, 52.10102539062504], [-131.10712890624995, 52.13657226562498], [-131.098095703125, 52.150634765625], [-131.01064453125002, 52.09526367187502], [-131.029296875, 51.961621093749955]]], [[[-128.36875, 52.40087890625], [-128.44541015625003, 52.3875], [-128.41987304687495, 52.44111328125004], [-128.4125, 52.47285156250001], [-128.42626953125003, 52.50273437499999], [-128.43593749999997, 52.56035156249999], [-128.43979492187503, 52.696386718750006], [-128.36489257812497, 52.781884765624994], [-128.24726562499998, 52.78437], [-128.24843749999997, 52.74121093749997], [-128.29814453124996, 52.54824218750002], [-128.32377929687505, 52.45898437500003], [-128.3435546875, 52.42607421874999], [-128.36875, 52.40087890625]]], [[[-128.93686523437498, 52.51000976562503], [-128.96870117187495, 52.46425781250005], [-129.10234375000002, 52.574365234374994], [-129.15102539062497, 52.605322265625006], [-129.25048828125, 52.72216796875], [-129.26777343749995, 52.77236328125002], [-129.26352539062498, 52.80078125000003], [-129.24594726562498, 52.81123046875004], [-129.21503906249995, 52.80385742187505], [-129.18618164062497, 52.79125976562506], [-128.99399414062498, 52.661718750000034], [-128.94033203124997, 52.60073242187505], [-128.93686523437498, 52.51000976562503]]], [[[-129.313720703125, 52.99218750000003], [-129.32871093750003, 52.984228515625006], [-129.37001953125002, 52.99760742187499], [-129.40971679687502, 53.02373046874999], [-129.47778320312503, 53.09775390625006], [-129.50014648437497, 53.12890625], [-129.51474609375, 53.17939453124998], [-129.50107421874998, 53.188330078125034], [-129.47143554687497, 53.18300781250002], [-129.45073242187502, 53.17470703125002], [-129.34350585937503, 53.052783203125045], [-129.313720703125, 52.99218750000003]]], [[[-80.73168945312494, 52.74726562499998], [-80.80234374999995, 52.733984375], [-81.00986328124995, 52.76064453125002], [-81.09658203124994, 52.779882812500034], [-81.35224609374998, 52.85200195312498], [-81.83906249999995, 52.957910156249994], [-82.00502929687502, 53.01049804687503], [-82.03925781249998, 53.04990234374998], [-81.95112304687495, 53.132226562499966], [-81.90136718749994, 53.16557617187502], [-81.84731445312494, 53.18627929687497], [-81.33535156250002, 53.224267578124994], [-81.135595703125, 53.20581054687503], [-80.90039062499994, 53.03715820312496], [-80.76533203124995, 52.92324218750002], [-80.71044921874997, 52.83159179687502], [-80.70952148437496, 52.78740234374999], [-80.73168945312494, 52.74726562499998]]], [[[-131.7537109375, 53.195556640625], [-131.65234375, 53.102978515624955], [-131.62216796875, 53.020068359375045], [-131.63466796874997, 52.92216796874999], [-131.795263671875, 52.88505859374999], [-131.8796875, 52.91464843750006], [-131.91635742187498, 52.90913085937498], [-131.97177734374998, 52.87983398437498], [-131.90439453125003, 52.86669921875006], [-131.81005859375, 52.818701171875034], [-131.727294921875, 52.75639648437496], [-131.61059570312494, 52.745214843750006], [-131.45522460937502, 52.70170898437502], [-131.572802734375, 52.623339843750045], [-131.59057617187494, 52.578222656250006], [-131.443896484375, 52.45332031250004], [-131.42998046875002, 52.422119140625], [-131.38300781250004, 52.41572265625001], [-131.27363281250007, 52.425830078125045], [-131.25971679687495, 52.415917968749966], [-131.2599609375, 52.39003906250002], [-131.32705078125002, 52.317529296874994], [-131.31992187499998, 52.30307617187498], [-131.25917968749997, 52.291650390624966], [-131.142626953125, 52.291113281250034], [-131.116162109375, 52.219091796875006], [-131.221533203125, 52.15361328124999], [-131.42187, 52.237988281249955], [-131.51113281250002, 52.322070312500045], [-131.56206054687502, 52.39995117187499], [-131.62368164062497, 52.443994140624994], [-131.80966796875, 52.54169921875001], [-132.092236328125, 52.752783203125034], [-132.16508789062493, 52.783300781250034], [-132.23857421875, 52.86679687499998], [-132.2599609375, 52.906982421875], [-132.25810546875, 52.93388671874999], [-132.22954101562502, 52.948095703125034], [-132.14492187500002, 52.95747070312498], [-132.14375, 52.99931640624999], [-132.46870117187498, 53.071875], [-132.50483398437495, 53.08671875000002], [-132.54677734374997, 53.1375], [-132.52421875, 53.144921875], [-132.34541015625, 53.136083984375034], [-132.15390624999998, 53.160498046875034], [-132.0359375, 53.17915039062504], [-131.98950195312494, 53.20195312499996], [-131.89311523437496, 53.23144531250003], [-131.85346679687507, 53.22973632812503], [-131.7537109375, 53.195556640625]]], [[[-128.55244140624998, 52.93974609375002], [-128.50654296875004, 52.620703125000034], [-128.50991210937502, 52.51860351562502], [-128.57680664062497, 52.451806640624994], [-128.6240234375, 52.33989257812502], [-128.678955078125, 52.289648437500006], [-128.730908203125, 52.356542968750034], [-128.73554687499998, 52.467724609374955], [-128.74941406249997, 52.556054687499994], [-128.76645507812498, 52.59838867187503], [-128.74633789062494, 52.763378906249955], [-128.76962890624998, 52.75122070312497], [-128.83120117187502, 52.67880859375006], [-128.89980468749997, 52.67382812500003], [-129.02285156249997, 52.75595703125006], [-129.08471679687497, 52.82246093750001], [-129.094873046875, 52.89184570312503], [-129.175927734375, 52.964941406250006], [-129.184326171875, 52.99067382812501], [-129.177685546875, 53.017919921875034], [-129.111083984375, 53.090673828125034], [-129.08408203125003, 53.13969726562499], [-129.0603515625, 53.240625], [-129.033251953125, 53.27993164062505], [-128.97021484375, 53.27436523437498], [-128.85771484375, 53.22856445312496], [-128.740380859375, 53.178857421874966], [-128.63266601562498, 53.1125], [-128.55244140624998, 52.93974609375002]]], [[[-129.167724609375, 53.11787109374998], [-129.17324218749997, 53.11074218750002], [-129.27685546875006, 53.11093749999998], [-129.30571289062496, 53.12114257812502], [-129.32387695312502, 53.142138671875045], [-129.33125, 53.17397460937505], [-129.31435546874997, 53.21230468750002], [-129.253076171875, 53.285498046875034], [-129.25117187500004, 53.31669921874999], [-129.23818359374997, 53.33007812500006], [-129.19521484375002, 53.293212890625], [-129.17700195312503, 53.25913085937498], [-129.167724609375, 53.11787109374998]]], [[[-79.93823242187494, 53.30415039062501], [-79.939306640625, 53.274267578125034], [-80.00410156249995, 53.28007812499999], [-80.03935546874996, 53.29716796874999], [-80.06787109374997, 53.32407226562498], [-80.07402343749999, 53.34428710937502], [-80.04970703125002, 53.36445312500004], [-79.97456054687498, 53.35224609375004], [-79.93823242187494, 53.30415039062501]]], [[[-129.84858398437498, 53.167919921874955], [-129.86855468749997, 53.16450195312498], [-129.934375, 53.176660156249966], [-130.15141601562493, 53.34570312500003], [-130.30566406250003, 53.407373046874994], [-130.41074218750003, 53.490820312500006], [-130.51757812500003, 53.54423828124999], [-130.45200195312498, 53.63115234375002], [-130.39482421875, 53.620410156250045], [-130.19501953125004, 53.549658203125006], [-130.03540039062503, 53.481103515624994], [-129.94472656250002, 53.436376953125034], [-129.75483398437498, 53.244775390624994], [-129.76894531250002, 53.21728515624997], [-129.84858398437498, 53.167919921874955]]], [[[-130.236279296875, 53.95854492187502], [-130.26723632812502, 53.92260742187506], [-130.33754882812497, 53.866259765625045], [-130.38422851562504, 53.84394531250001], [-130.4072265625, 53.85551757812499], [-130.470263671875, 53.86176757812501], [-130.5375, 53.917871093749966], [-130.58984375, 53.940283203125006], [-130.62460937499998, 53.94140624999997], [-130.64184570312503, 53.92114257812503], [-130.64628906249996, 53.89404296875], [-130.637890625, 53.860009765624994], [-130.64370117187497, 53.84453125], [-130.66357421875, 53.84755859375005], [-130.68344726562498, 53.86347656250001], [-130.703173828125, 53.892236328124994], [-130.70727539062494, 53.921484375], [-130.695703125, 53.951269531250034], [-130.646923828125, 53.99125976562502], [-130.49462890624997, 54.07416992187501], [-130.44799804687497, 54.08901367187502], [-130.39731445312503, 54.08569335937497], [-130.31586914062495, 54.04692382812499], [-130.29848632812497, 54.03564453125], [-130.236279296875, 53.95854492187502]]], [[[-132.65551757812503, 54.12749023437496], [-132.56406250000003, 54.06865234374996], [-132.34443359374995, 54.106054687500034], [-132.30336914062497, 54.098876953125], [-132.26162109374997, 54.07631835937502], [-132.21591796874998, 54.028417968750034], [-132.16611328124998, 53.95522460937505], [-132.15512695312503, 53.87519531249998], [-132.17509765625005, 53.846533203125006], [-132.21450195312497, 53.81474609375002], [-132.56489257812504, 53.687646484374966], [-132.57412109374997, 53.67539062500006], [-132.56713867187494, 53.66396484375002], [-132.53466796875, 53.651708984375034], [-132.464404296875, 53.6533203125], [-132.18696289062504, 53.68481445312503], [-132.17167968749993, 53.70683593749996], [-132.15224609375, 53.806982421875034], [-132.114013671875, 53.860156250000045], [-132.11059570312503, 53.90029296875005], [-132.13588867187502, 53.99584960937506], [-132.134423828125, 54.03427734374998], [-131.9408203125, 54.04199218750003], [-131.81962890625, 54.077343749999955], [-131.69594726562502, 54.143164062500034], [-131.66762695312502, 54.14135742187503], [-131.685400390625, 54.022802734375034], [-131.70253906250002, 53.98637695312499], [-131.82114257812503, 53.841503906249955], [-131.88916015625006, 53.713964843750006], [-131.92231445312504, 53.587890625], [-131.92807617187498, 53.37919921875002], [-131.957421875, 53.308691406250034], [-132.01132812499998, 53.26518554687496], [-132.34726562500003, 53.18920898437503], [-132.52045898437504, 53.194042968749955], [-132.67480468749994, 53.26318359375], [-132.747509765625, 53.310498046874955], [-132.692578125, 53.36787109375001], [-132.65478515624994, 53.37055664062504], [-132.54624023437498, 53.35927734375005], [-132.46240234375003, 53.33789062500003], [-132.425, 53.33696289062502], [-132.43134765625, 53.350439453125006], [-132.670166015625, 53.458593750000034], [-132.84501953125, 53.507714843749994], [-132.89799804687493, 53.56269531250001], [-132.89956054687502, 53.605371093749994], [-132.91337890625, 53.62919921874996], [-133.05224609375003, 53.778125], [-133.07949218749997, 53.837011718750034], [-133.09765625000006, 53.920263671875034], [-133.09794921875, 54.005615234375], [-133.0638671875, 54.14404296875006], [-133.04838867187493, 54.15893554687497], [-132.991455078125, 54.1578125], [-132.89306640625, 54.140771484374994], [-132.65551757812503, 54.12749023437496]]], [[[-130.92714843749997, 54.47905273437499], [-130.95029296874998, 54.477783203125], [-130.959033203125, 54.498681640624994], [-130.95346679687503, 54.541845703125006], [-130.92177734374997, 54.61489257812505], [-130.90683593750003, 54.63178710937504], [-130.77705078125004, 54.61889648437497], [-130.75800781249998, 54.61376953125], [-130.75341796875003, 54.59970703124998], [-130.76337890625, 54.57670898437499], [-130.805126953125, 54.543798828125034], [-130.92714843749997, 54.47905273437499]]], [[[-130.34941406249996, 54.814550781250034], [-130.53549804687503, 54.748730468749955], [-130.57534179687497, 54.769677734374966], [-130.49326171874998, 54.834179687499955], [-130.312548828125, 54.945947265624994], [-130.2140625, 55.02587890625003], [-130.20390625, 54.94702148437503], [-130.34941406249996, 54.814550781250034]]], [[[-60.994482421875006, 56.03930664062497], [-60.98271484375002, 56.01513671875003], [-61.13701171874999, 56.032568359375034], [-61.191308593749966, 56.04785156250003], [-61.19584960937499, 56.06391601562501], [-61.188183593749955, 56.08896484374998], [-61.157568359375006, 56.11835937500001], [-61.0869140625, 56.14082031249998], [-61.04853515625001, 56.129248046875006], [-60.96640624999998, 56.09882812500004], [-60.95537109374993, 56.080419921875006], [-60.994482421875006, 56.03930664062497]]], [[[-78.82651367187495, 56.14531249999999], [-78.877294921875, 56.131445312500006], [-78.91381835937497, 56.13281250000003], [-78.90703125000002, 56.166357421875034], [-78.85688476562501, 56.232080078124994], [-78.82841796874999, 56.289843750000045], [-78.82158203125002, 56.33964843749999], [-78.79941406250003, 56.38330078125], [-78.76186523437502, 56.42070312499996], [-78.72451171874997, 56.439208984375], [-78.66875, 56.438623046874966], [-78.65717773437501, 56.31738281249997], [-78.67280273437498, 56.26049804687503], [-78.71015624999995, 56.212890625], [-78.761376953125, 56.17451171874998], [-78.82651367187495, 56.14531249999999]]], [[[-79.97758789062499, 56.20703125000006], [-80.02861328124999, 56.19941406250001], [-80.0888671875, 56.21386718750003], [-80.057470703125, 56.28735351562497], [-80.00507812499998, 56.31791992187499], [-79.87446289062493, 56.34843749999999], [-79.8521484375, 56.3671875], [-79.81040039062503, 56.37651367187502], [-79.749169921875, 56.37651367187502], [-79.68100585937495, 56.40395507812502], [-79.605859375, 56.458837890625006], [-79.57973632812502, 56.466357421875045], [-79.63256835937503, 56.38652343750002], [-79.68793945312495, 56.32680664062502], [-79.97758789062499, 56.20703125000006]]], [[[-78.93559570312496, 56.26606445312498], [-79.01796874999997, 56.16499023437501], [-79.08388671875, 56.06787109375003], [-79.17548828124998, 55.88505859374999], [-79.22783203124999, 55.878515625], [-79.27363281250001, 55.92246093749998], [-79.14228515624998, 56.136425781249955], [-79.13608398437495, 56.160253906250034], [-79.14228515624998, 56.18071289062502], [-79.18212890625, 56.21215820312503], [-79.22182617187502, 56.17597656250004], [-79.40742187499998, 55.93486328125002], [-79.45532226562497, 55.896191406249955], [-79.4951171875, 55.87475585937503], [-79.52675781249997, 55.87065429687499], [-79.60571289062497, 55.875683593749955], [-79.76474609374995, 55.80678710937505], [-79.49746093749994, 56.09316406250002], [-79.49467773437502, 56.11499023437503], [-79.54472656249999, 56.12836914062501], [-79.56455078125003, 56.120947265625006], [-79.781103515625, 55.94057617187502], [-79.90458984374993, 55.87104492187498], [-79.9875, 55.89213867187502], [-80.00825195312501, 55.911035156249966], [-80.00078124999999, 55.93208007812498], [-79.79003906249997, 56.11416015625005], [-79.59633789062502, 56.244482421875034], [-79.51528320312494, 56.32651367187506], [-79.48237304687498, 56.40380859375], [-79.46791992187497, 56.460351562499966], [-79.46894531250001, 56.52260742187502], [-79.45888671875, 56.53974609374998], [-79.44765625000002, 56.53657226562504], [-79.435302734375, 56.513037109375034], [-79.43203124999994, 56.44746093750001], [-79.47626953124998, 56.312841796875034], [-79.51181640625003, 56.24658203125003], [-79.55419921874997, 56.191992187500006], [-79.53632812499995, 56.180078124999966], [-79.45830078124996, 56.211083984374994], [-79.39262695312499, 56.27646484374998], [-79.33935546874997, 56.37631835937498], [-79.30532226562497, 56.46308593749998], [-79.27241210937493, 56.600439453125006], [-79.26113281249994, 56.59565429687498], [-79.245751953125, 56.56826171875002], [-79.21044921875, 56.54892578124998], [-79.15517578124994, 56.53759765624997], [-79.12353515624997, 56.51997070312504], [-79.10024414062494, 56.47392578124999], [-79.07773437499998, 56.45361328125], [-78.99497070312498, 56.436425781249966], [-78.96318359374999, 56.421728515625006], [-78.94033203124997, 56.37143554687506], [-78.94243164062493, 56.34492187499998], [-78.93120117187496, 56.32792968749999], [-78.90664062500002, 56.32041015625006], [-78.93559570312496, 56.26606445312498]]], [[[-79.5181640625, 56.65668945312498], [-79.553466796875, 56.643847656250045], [-79.57739257812497, 56.644921875], [-79.55073242187495, 56.733496093750006], [-79.58173828124998, 56.76484375000001], [-79.58354492187499, 56.78095703125001], [-79.57011718750002, 56.79570312499999], [-79.55288085937497, 56.798730468749966], [-79.51123046875, 56.77143554687501], [-79.49106445312498, 56.74267578125003], [-79.48217773437494, 56.71440429687502], [-79.48457031249998, 56.68652343750003], [-79.49653320312493, 56.66728515625002], [-79.5181640625, 56.65668945312498]]], [[[-79.86699218750002, 56.77456054687502], [-79.89448242187501, 56.75712890625002], [-79.94365234374999, 56.77675781250002], [-79.94570312499997, 56.82690429687503], [-79.89814453124995, 56.865283203125045], [-79.86054687499993, 56.86352539062503], [-79.82666015624997, 56.84311523437506], [-79.83500976562496, 56.816015625000034], [-79.86699218750002, 56.77456054687502]]], [[[-61.743603515624955, 57.55458984375005], [-61.65952148437495, 57.52495117187496], [-61.6375, 57.41606445312499], [-61.79526367187498, 57.422460937500034], [-61.97548828125002, 57.49541015624999], [-62.01123046875003, 57.54848632812505], [-62.007226562499994, 57.55761718750003], [-61.98330078125002, 57.566748046875034], [-61.9375, 57.55410156250002], [-61.89306640625003, 57.573144531249994], [-61.848339843749955, 57.57934570312503], [-61.743603515624955, 57.55458984375005]]], [[[-79.71650390624998, 57.515527343749994], [-79.73222656249999, 57.507519531249955], [-79.77519531249996, 57.514453125000045], [-79.79204101562502, 57.448583984375034], [-79.80844726562498, 57.44243164062502], [-79.838232421875, 57.483007812500034], [-79.81591796875, 57.517724609374994], [-79.81914062499993, 57.54160156249998], [-79.81083984374993, 57.55927734375001], [-79.76787109374996, 57.59873046874998], [-79.74257812499997, 57.60795898437499], [-79.72670898437502, 57.604589843750006], [-79.7134765625, 57.555029296875034], [-79.71650390624998, 57.515527343749994]]], [[[-69.16005859375, 59.04023437500001], [-69.22084960937494, 58.967578125000045], [-69.30170898437498, 58.97661132812502], [-69.33081054687497, 58.96162109374998], [-69.35283203125002, 58.96074218749999], [-69.31630859374994, 59.02895507812502], [-69.31152343750003, 59.074804687500034], [-69.32998046874997, 59.121240234374994], [-69.30322265625003, 59.144873046875006], [-69.19516601562495, 59.14614257812502], [-69.19379882812493, 59.09277343749997], [-69.18066406250003, 59.07270507812498], [-69.15517578124997, 59.06357421874998], [-69.16005859375, 59.04023437500001]]], [[[-80.28525390624995, 59.624121093750034], [-80.31723632812498, 59.621044921874955], [-80.32465820312498, 59.63320312500002], [-80.298974609375, 59.674169921875034], [-80.25664062499999, 59.67915039062498], [-80.20996093749997, 59.724609375], [-80.16723632812497, 59.708886718749994], [-80.18305664062501, 59.683496093749966], [-80.24052734374999, 59.64492187500002], [-80.28525390624995, 59.624121093750034]]], [[[-80.06420898437494, 59.77080078124999], [-80.16708984375003, 59.76386718750001], [-80.12221679687497, 59.82319335937501], [-80.083642578125, 59.85185546874999], [-80.04116210937497, 59.87016601562499], [-79.95585937499999, 59.87695312500003], [-79.89863281249995, 59.85312], [-79.94960937499997, 59.80991210937506], [-80.06420898437494, 59.77080078124999]]], [[[-64.40703125, 60.367089843749966], [-64.44194335937496, 60.2978515625], [-64.55820312500003, 60.3232421875], [-64.73793945312497, 60.37563476562502], [-64.80898437499997, 60.410400390625], [-64.83378906249996, 60.44843750000001], [-64.83642578124997, 60.50102539062499], [-64.782568359375, 60.50961914062506], [-64.64628906249996, 60.51459960937501], [-64.53251953124996, 60.44140625], [-64.49980468749996, 60.430224609375045], [-64.40703125, 60.367089843749966]]], [[[-68.23378906250002, 60.24091796875001], [-68.32412109374997, 60.23291015625], [-68.36523437499997, 60.25405273437502], [-68.36787109374998, 60.314746093750045], [-68.33828125, 60.36059570312497], [-68.23476562499997, 60.45556640624997], [-68.14189453124996, 60.56201171874997], [-68.08759765624998, 60.58784179687501], [-67.97802734374997, 60.570410156250006], [-67.91420898437502, 60.53984374999999], [-67.84755859374994, 60.48881835937499], [-67.81884765624994, 60.449511718750074], [-67.84423828124997, 60.39165039062499], [-67.92231445312498, 60.33989257812502], [-68.01230468750003, 60.304638671874955], [-68.23378906250002, 60.24091796875001]]], [[[-78.531640625, 60.72856445312499], [-78.66889648437498, 60.716894531250006], [-78.66909179687494, 60.73134765625002], [-78.61201171874995, 60.772314453125006], [-78.39956054687502, 60.80810546875003], [-78.24169921875, 60.818652343750045], [-78.27885742187493, 60.78388671874998], [-78.3724609375, 60.756396484375045], [-78.531640625, 60.72856445312499]]], [[[-64.83261718749998, 61.366064453125006], [-64.85683593749994, 61.354443359374955], [-64.87978515625, 61.35708007812505], [-64.954248046875, 61.41040039062497], [-65.05439453124995, 61.43203125000002], [-65.09150390624995, 61.452978515625034], [-65.39389648437503, 61.562841796875034], [-65.42680664062499, 61.61103515625001], [-65.43212890625, 61.649511718750034], [-65.33164062499995, 61.66826171875002], [-65.12978515624994, 61.68569335937502], [-64.95444335937503, 61.68510742187499], [-64.78964843750003, 61.662207031250034], [-64.75634765625, 61.63764648437501], [-64.669580078125, 61.59301757812497], [-64.69096679687499, 61.539355468750045], [-64.69638671875003, 61.47148437499999], [-64.73232421874997, 61.43842773437501], [-64.78759765624997, 61.41328125000004], [-64.83261718749998, 61.366064453125006]]], [[[-93.04394531249997, 61.84409179687506], [-93.08481445312495, 61.841699218749994], [-93.17656249999999, 61.89272460937502], [-93.19667968750002, 61.918554687500034], [-93.07578124999998, 61.93500976562501], [-92.993017578125, 61.88969726562502], [-92.99995117187498, 61.86748046875002], [-93.04394531249997, 61.84409179687506]]], [[[-65.03056640624999, 61.879052734374966], [-65.00805664062503, 61.870263671874966], [-64.98105468750003, 61.88061523437503], [-64.96054687500003, 61.87167968749998], [-64.94667968749994, 61.84335937499998], [-64.92353515624995, 61.82373046875], [-64.86513671874994, 61.79814453125002], [-64.84550781249993, 61.779882812500034], [-64.8470703125, 61.76152343750002], [-64.89658203124995, 61.73330078125005], [-64.927734375, 61.73251953125006], [-65.16591796874994, 61.79765625000002], [-65.23027343749999, 61.86401367187503], [-65.23535156249997, 61.89770507812506], [-65.21054687499998, 61.928369140624994], [-65.17392578124998, 61.943212890625006], [-65.125634765625, 61.94223632812498], [-65.06835937499997, 61.92602539062506], [-65.03056640624999, 61.879052734374966]]], [[[-79.54531250000002, 62.41171875000006], [-79.46621093749997, 62.38452148437503], [-79.33603515625, 62.293701171875], [-79.28647460937495, 62.247656250000034], [-79.27202148437493, 62.18598632812498], [-79.30644531249993, 62.10351562499997], [-79.32392578124995, 62.02607421875001], [-79.37226562499993, 61.96777343750003], [-79.46215820312494, 61.89409179687502], [-79.54184570312503, 61.808007812499994], [-79.61132812499997, 61.70961914062502], [-79.66875, 61.644433593749966], [-79.71425781249997, 61.61254882812503], [-79.76333007812502, 61.59594726562503], [-79.81611328124995, 61.59462890625002], [-79.89633789062503, 61.63012695312497], [-80.00415039062497, 61.702539062499994], [-80.09199218750001, 61.74682617187503], [-80.204931640625, 61.77724609375002], [-80.26518554687496, 61.818212890625006], [-80.27617187499996, 61.85859374999998], [-80.27983398437499, 61.989501953125], [-80.27509765625001, 62.054638671874955], [-80.26005859374996, 62.10903320312502], [-80.23466796874996, 62.152685546875034], [-80.17856445312498, 62.21279296875002], [-80.02158203124998, 62.34296874999998], [-79.9267578125, 62.39287109375002], [-79.86806640624997, 62.404345703125045], [-79.712548828125, 62.39501953125003], [-79.64956054687494, 62.39829101562498], [-79.59765625000003, 62.413232421874994], [-79.54531250000002, 62.41171875000006]]], [[[-64.82382812499998, 62.558740234374994], [-64.63183593750003, 62.54799804687502], [-64.51533203125001, 62.55180664062499], [-64.46503906249998, 62.535937500000045], [-64.41806640625, 62.487402343750006], [-64.47832031250002, 62.417871093749966], [-64.54648437499995, 62.39140624999999], [-64.65742187499998, 62.38359375000002], [-64.83730468749997, 62.40625], [-64.901220703125, 62.421044921874994], [-64.95649414062498, 62.458349609375034], [-64.93076171875, 62.485009765624966], [-64.84194335937502, 62.49414062499997], [-64.82709960937501, 62.504980468750034], [-64.84985351562503, 62.525439453125045], [-64.848779296875, 62.543310546875034], [-64.82382812499998, 62.558740234374994]]], [[[-74.00043945312495, 62.61840820312497], [-74.05356445312495, 62.609667968750045], [-74.253515625, 62.621972656249994], [-74.49951171875003, 62.668798828125034], [-74.62646484374997, 62.712744140625006], [-74.61997070312498, 62.72631835937503], [-74.56420898437497, 62.73330078125002], [-74.50092773437495, 62.726513671874955], [-74.394775390625, 62.69580078125003], [-74.10893554687496, 62.680322265624966], [-74.01679687500001, 62.662695312500034], [-73.98818359374997, 62.636083984375006], [-74.00043945312495, 62.61840820312497]]], [[[-70.33706054687497, 62.548730468749994], [-70.40634765624998, 62.544824218749994], [-70.54150390624997, 62.55234375], [-70.68657226562493, 62.57319335937498], [-70.76606445312498, 62.596875], [-70.83754882812497, 62.648095703124966], [-70.85126953125001, 62.70434570312497], [-70.98613281249996, 62.78779296875001], [-71.13691406249995, 62.81591796874997], [-71.22011718750002, 62.873925781249966], [-71.13486328124998, 62.87797851562502], [-71.01367187499997, 62.865332031250006], [-70.834619140625, 62.840087890625], [-70.67431640625003, 62.80703125000002], [-70.44262695312497, 62.73378906250002], [-70.36679687499998, 62.665820312500045], [-70.29150390625003, 62.615966796875], [-70.26884765625002, 62.57807617187501], [-70.28857421874994, 62.56157226562502], [-70.33706054687497, 62.548730468749994]]], [[[-82.00048828124997, 62.95419921874998], [-81.960546875, 62.92622070312498], [-81.94858398437498, 62.884033203125], [-81.96440429687499, 62.82763671875006], [-81.99018554687501, 62.77631835937498], [-82.02583007812498, 62.73007812499998], [-82.11372070312495, 62.65224609375002], [-82.38803710937498, 62.519140625], [-82.49096679687497, 62.446582031250045], [-82.56826171875002, 62.403222656249994], [-83.01582031249998, 62.20991210937498], [-83.07138671875, 62.20039062499998], [-83.12968749999999, 62.20410156250003], [-83.25239257812495, 62.232958984375045], [-83.37680664062498, 62.238134765625034], [-83.69887695312497, 62.16025390624998], [-83.71440429687502, 62.17358398437503], [-83.72861328124998, 62.257177734375006], [-83.76093749999998, 62.303515625000045], [-83.90312, 62.40249023437502], [-83.91240234374993, 62.42553710937503], [-83.91049804687498, 62.45415039062499], [-83.899267578125, 62.476464843749994], [-83.7390625, 62.56884765625], [-83.37641601562498, 62.904931640624994], [-83.28945312499994, 62.92158203125001], [-83.11093749999998, 62.884130859375006], [-83.02626953124997, 62.87207031250006], [-82.96577148437498, 62.873925781249966], [-82.7064453125, 62.94453124999998], [-82.459716796875, 62.936181640624966], [-82.23476562500002, 62.97744140625002], [-82.129248046875, 62.977685546874966], [-82.047607421875, 62.970556640625034], [-82.00048828124997, 62.95419921874998]]], [[[-77.87670898437497, 63.470556640625034], [-77.79208984374998, 63.427832031250034], [-77.7037109375, 63.43085937500001], [-77.65478515624997, 63.39599609375003], [-77.5384765625, 63.28706054687504], [-77.52729492187495, 63.268945312499994], [-77.53271484374997, 63.233642578125], [-77.59389648437502, 63.18842773437501], [-77.65766601562495, 63.164599609375045], [-77.79145507812493, 63.12958984375001], [-77.94243164062496, 63.11440429687502], [-78.02441406249997, 63.138867187499955], [-78.25595703124998, 63.23984375], [-78.46875, 63.35791015625], [-78.536767578125, 63.423730468749994], [-78.50732421875003, 63.45112304687498], [-78.41728515624999, 63.469970703125], [-78.23491210937496, 63.48955078124999], [-77.933935546875, 63.478955078124955], [-77.87670898437497, 63.470556640625034]]], [[[-76.67758789062503, 63.393945312499966], [-76.78315429687495, 63.38403320312497], [-76.92187, 63.406347656250006], [-77.0572265625, 63.449755859375045], [-77.36474609374994, 63.588330078124955], [-77.13369140624997, 63.68203125000002], [-76.76362304687498, 63.57358398437506], [-76.65244140624998, 63.503564453124994], [-76.67758789062503, 63.393945312499966]]], [[[-77.64208984374997, 63.99189453125001], [-77.71406249999998, 63.94570312500002], [-77.92880859375003, 63.96201171875006], [-77.95791015625, 63.97602539062498], [-77.96596679687497, 63.99291992187503], [-77.93134765625001, 64.01479492187497], [-77.71079101562503, 64.03564453125003], [-77.61728515624998, 64.03720703125], [-77.56938476562499, 64.03041992187505], [-77.56362304687497, 64.02207031250003], [-77.64208984374997, 63.99189453125001]]], [[[-84.91962890624995, 65.26108398437503], [-84.88510742187503, 65.24897460937495], [-84.84208984374999, 65.25590820312505], [-84.77128906249993, 65.30527343749998], [-84.6125, 65.44731445312505], [-84.56791992187499, 65.46064453125001], [-84.50112304687497, 65.45844726562501], [-84.26640624999993, 65.36723632812499], [-84.17998046874999, 65.31630859375], [-84.13349609374995, 65.24545898437503], [-84.08486328125, 65.21782226562502], [-83.90009765625001, 65.18125], [-83.72255859375, 65.16899414062502], [-83.49077148437502, 65.13178710937498], [-83.40712890625002, 65.10390625], [-83.22226562500003, 64.96796875000001], [-83.20097656249996, 64.95966796874998], [-82.99057617187498, 64.90410156250005], [-82.667626953125, 64.78032226562505], [-82.58579101562503, 64.76191406250004], [-82.27167968749998, 64.72114257812498], [-82.15888671875001, 64.690673828125], [-82.05, 64.64428710937506], [-81.92890624999995, 64.55942382812498], [-81.78720703124995, 64.42597656249998], [-81.67612304687498, 64.21264648437503], [-81.66738281249997, 64.17050781249998], [-81.68090820312497, 64.14555664062505], [-81.72094726562497, 64.11889648437503], [-81.90263671874993, 64.03125], [-81.88710937499997, 64.01640625000002], [-81.71611328124996, 64.021875], [-81.33564453124998, 64.07578125000003], [-81.10405273437496, 64.03710937499997], [-81.023583984375, 64.03105468749999], [-81.00502929687494, 64.03330078125], [-80.921142578125, 64.10048828125002], [-80.82895507812495, 64.08994140625], [-80.69428710937498, 64.02475585937503], [-80.60756835937497, 63.972070312499966], [-80.56884765625, 63.931933593750045], [-80.57919921874998, 63.909228515625045], [-80.66826171874999, 63.90146484374998], [-80.45058593749997, 63.86293945312502], [-80.26132812499995, 63.801953124999955], [-80.30205078124999, 63.76220703125003], [-80.50405273437494, 63.673779296874955], [-80.71176757812498, 63.59638671874998], [-80.95351562500002, 63.480273437500045], [-81.01386718749998, 63.462548828124994], [-81.04638671875003, 63.461572265624966], [-81.1796875, 63.48320312500002], [-81.37172851562497, 63.53808593750003], [-81.96333007812495, 63.664453125], [-82.14599609374997, 63.69116210937503], [-82.378125, 63.706787109375], [-82.41171875, 63.73652343750004], [-82.46708984375002, 63.92695312500001], [-82.57148437499995, 63.96069335937506], [-82.9296875, 64.00043945312498], [-83.03388671875001, 64.02324218749999], [-83.038671875, 64.06142578124997], [-83.01616210937496, 64.12700195312499], [-83.06513671874998, 64.15903320312503], [-83.185546875, 64.15751953124999], [-83.30395507812497, 64.14379882812506], [-83.49433593749993, 64.09921875000003], [-83.58359375, 64.05810546875], [-83.61708984375, 64.01342773437506], [-83.63798828124999, 63.917822265625006], [-83.66162109375, 63.872607421875045], [-83.728271484375, 63.813378906249966], [-84.022119140625, 63.659863281249955], [-84.1416015625, 63.61372070312498], [-84.26044921874995, 63.60048828125002], [-84.30761718749997, 63.58579101562506], [-84.3875, 63.529101562500045], [-84.50620117187503, 63.390039062499966], [-84.55458984375002, 63.35], [-84.63291015625, 63.30922851562502], [-84.795556640625, 63.246923828125034], [-84.96152343749998, 63.19721679687504], [-85.238134765625, 63.13930664062505], [-85.39262695312496, 63.119677734375045], [-85.49550781249997, 63.13911132812501], [-85.56611328124995, 63.27089843750002], [-85.71416015625002, 63.657958984375], [-85.73872070312495, 63.68413085937502], [-85.76894531249997, 63.70034179687502], [-85.80468749999997, 63.70654296875006], [-86.3015625, 63.656787109375045], [-86.57568359375003, 63.66230468750001], [-86.84687, 63.575292968750034], [-86.91523437500001, 63.568994140624994], [-87.05292968749998, 63.57177734375003], [-87.15190429687499, 63.58564453125001], [-87.1771484375, 63.595117187499994], [-87.19384765625, 63.63281250000003], [-87.18891601562498, 63.672265625], [-87.15439453124998, 63.714892578125074], [-87.03193359374998, 63.83041992187498], [-86.93203124999997, 63.90166015625002], [-86.88603515625002, 63.923730468749966], [-86.421728515625, 64.05156249999999], [-86.30859374999997, 64.09365234375005], [-86.252099609375, 64.13686523437497], [-86.25219726562503, 64.18125], [-86.27416992187497, 64.23803710937497], [-86.35449218749997, 64.37651367187502], [-86.37490234374997, 64.50297851562505], [-86.37426757812503, 64.56582031249997], [-86.34384765625003, 64.662353515625], [-86.22763671874998, 64.89633789062498], [-86.18828125, 65.01030273437502], [-86.11420898437498, 65.41728515625005], [-86.074609375, 65.533837890625], [-86.01708984375, 65.64028320312502], [-85.96166992187497, 65.704248046875], [-85.81396484375, 65.83193359374997], [-85.69907226562495, 65.883154296875], [-85.55468750000003, 65.91865234374995], [-85.52304687499998, 65.91455078125003], [-85.49550781249997, 65.89970703125002], [-85.44243164062499, 65.845556640625], [-85.24111328125, 65.7955078125], [-85.17622070312501, 65.746875], [-85.13037109375, 65.69291992187499], [-85.10537109374997, 65.622705078125], [-85.13032226562498, 65.59208984375005], [-85.226318359375, 65.54575195312503], [-85.24277343749998, 65.52622070312503], [-85.23994140624993, 65.51030273437499], [-85.05605468749997, 65.43740234374997], [-84.91962890624995, 65.26108398437503]]], [[[-84.67475585937498, 65.575], [-84.72700195312498, 65.56372070312506], [-84.78291015625001, 65.570068359375], [-84.83027343749995, 65.59897460937503], [-84.86894531249993, 65.65053710937497], [-84.93115234375, 65.68916015625001], [-85.07197265625001, 65.73735351562507], [-85.096337890625, 65.756201171875], [-85.13627929687496, 65.82084960937502], [-85.14404296875003, 65.88535156250003], [-85.17416992187495, 65.94375], [-85.17568359375, 65.972412109375], [-85.14960937500001, 66.01538085937506], [-85.031396484375, 66.02548828124998], [-84.93857421875, 66.00854492187497], [-84.91982421875, 65.99702148437504], [-84.88945312499993, 65.97207031250002], [-84.86953124999997, 65.94150390625], [-84.75737304687496, 65.85893554687505], [-84.69174804687498, 65.79316406249998], [-84.60263671874995, 65.65737304687502], [-84.60224609374995, 65.631494140625], [-84.62626953124996, 65.60405273437499], [-84.67475585937498, 65.575]]], [[[-83.72597656249997, 65.796728515625], [-83.597509765625, 65.757470703125], [-83.46943359374993, 65.73520507812498], [-83.26318359375, 65.72329101562505], [-83.23374023437495, 65.71503906249995], [-83.23393554687499, 65.69658203125002], [-83.26367187500003, 65.66782226562503], [-83.332421875, 65.63105468749998], [-83.38144531250003, 65.62998046875003], [-83.49541015624999, 65.65595703125001], [-83.53710937499994, 65.66918945312503], [-83.58320312500001, 65.6986328125], [-83.60654296874998, 65.70136718750001], [-83.63637695312502, 65.69150390625006], [-83.64438476562495, 65.67851562499999], [-83.63066406249999, 65.66235351562497], [-83.64951171875003, 65.65776367187502], [-83.78754882812498, 65.66889648437498], [-83.80922851562497, 65.67832031250003], [-83.79819335937503, 65.71000976562502], [-83.70190429687494, 65.756201171875], [-83.78652343749997, 65.77041015624997], [-83.81357421874995, 65.7875], [-83.93896484375003, 65.75844726562502], [-84.00849609374998, 65.75151367187502], [-84.11826171874995, 65.77177734375007], [-84.12993164062502, 65.87744140625], [-84.14321289062497, 65.91596679687495], [-84.19321289062503, 65.94213867187506], [-84.22294921874996, 65.96977539062499], [-84.27089843749997, 65.99062], [-84.3701171875, 66.01181640625003], [-84.45058593749997, 66.06440429687498], [-84.46738281250003, 66.08828124999997], [-84.45634765624999, 66.10625], [-84.40717773437501, 66.13100585937497], [-84.12226562499995, 66.07783203124998], [-83.95039062499995, 66.02749023437502], [-83.78696289062495, 65.96577148437498], [-83.70136718749993, 65.92011718750001], [-83.69365234374996, 65.89038085937497], [-83.71489257812502, 65.8607421875], [-83.76513671874994, 65.83115234375], [-83.72597656249997, 65.796728515625]]], [[[-83.12348632812498, 66.2828125], [-83.02387695312493, 66.270654296875], [-82.94814453124997, 66.27192382812498], [-82.93134765624998, 66.25732421875003], [-83.01083984375003, 66.20844726562504], [-83.05986328124999, 66.19926757812502], [-83.14790039062498, 66.23422851562503], [-83.21391601562502, 66.27705078124998], [-83.232568359375, 66.30297851562503], [-83.23784179687499, 66.33154296874997], [-83.22226562500003, 66.33647460937499], [-83.12348632812498, 66.2828125]]], [[[-108.09272460937501, 67.00517578124999], [-107.96645507812495, 66.99726562499998], [-107.80551757812493, 66.99858398437507], [-107.83334960937502, 66.92133789062495], [-107.895166015625, 66.871875], [-107.94394531249999, 66.8578125], [-107.96513671874995, 66.88486328124998], [-108.05971679687495, 66.946875], [-108.09272460937501, 67.00517578124999]]], [[[-62.681542968749966, 67.05629882812502], [-62.805419921875, 67.02880859375], [-62.87163085937499, 67.06259765625006], [-62.825097656249994, 67.07211914062503], [-62.756982421874994, 67.112548828125], [-62.66440429687495, 67.14824218749999], [-62.62529296874999, 67.17695312499998], [-62.4697265625, 67.19003906249998], [-62.41679687499996, 67.18847656250003], [-62.39633789062495, 67.1783203125], [-62.484619140625, 67.13422851562498], [-62.681542968749966, 67.05629882812502]]], [[[-107.89985351562497, 67.40180664062495], [-107.95024414062503, 67.31821289062498], [-107.96953125, 67.32602539062498], [-108.00395507812496, 67.36591796875004], [-108.07333984374996, 67.38505859375002], [-108.15224609374997, 67.429443359375], [-108.151123046875, 67.52480468749997], [-108.12084960937497, 67.56816406250002], [-108.12753906249999, 67.62856445312497], [-108.04897460937498, 67.664892578125], [-107.99086914062495, 67.62211914062499], [-107.97490234374999, 67.54936523437502], [-107.98935546875, 67.51357421875], [-107.931787109375, 67.47646484375], [-107.90517578125, 67.46704101562503], [-107.89096679687493, 67.43720703124998], [-107.89985351562497, 67.40180664062495]]], [[[-109.16640625, 67.98237304687504], [-109.05390624999998, 67.971875], [-108.97050781249996, 67.97973632812503], [-108.90961914062498, 67.93940429687498], [-108.88603515624997, 67.89853515625], [-108.89384765624997, 67.88447265624998], [-108.920166015625, 67.87880859374997], [-109.09624023437499, 67.92402343749995], [-109.16152343749997, 67.95170898437499], [-109.18359375000003, 67.975], [-109.16640625, 67.98237304687504]]], [[[-73.621728515625, 67.783837890625], [-74.10908203124998, 67.78251953124999], [-74.37407226562496, 67.78959960937502], [-74.48071289062503, 67.80488281250001], [-74.573388671875, 67.82866210937507], [-74.67861328125002, 67.90556640625002], [-74.74599609374997, 67.98481445312498], [-74.74926757812503, 68.01845703125], [-74.73144531250003, 68.04877929687495], [-74.70654296875003, 68.06708984374995], [-74.37939453124997, 68.09345703125001], [-74.11137695312502, 68.06059570312507], [-73.880712890625, 68.02192382812501], [-73.58403320312496, 68.01533203124998], [-73.49375, 68.00063476562502], [-73.45922851562503, 67.98989257812497], [-73.43525390624993, 67.97001953124999], [-73.40156249999998, 67.87871093750005], [-73.39819335937503, 67.82993164062506], [-73.40717773437498, 67.79306640625], [-73.621728515625, 67.783837890625]]], [[[-109.32314453124995, 67.990869140625], [-109.36083984374999, 67.98759765625002], [-109.49794921874994, 68.04702148437497], [-109.46914062500002, 68.09799804687503], [-109.34169921875, 68.04584960937498], [-109.32353515625003, 68.01333007812502], [-109.32314453124995, 67.990869140625]]], [[[-86.59555664062498, 67.7359375], [-86.63818359374997, 67.73486328125006], [-86.70595703125, 67.75014648437497], [-86.86108398437497, 67.81049804687501], [-86.89252929687498, 67.836572265625], [-86.90830078125, 67.86704101562498], [-86.90844726562494, 67.90195312499998], [-86.89458007812496, 67.93808593749998], [-86.84707031249997, 68.01025390625003], [-86.93774414062497, 68.06757812499998], [-86.95981445312503, 68.10024414062497], [-86.94916992187498, 68.11870117187499], [-86.898681640625, 68.16289062500005], [-86.88486328125003, 68.19052734374998], [-86.83398437499997, 68.22968749999995], [-86.70209960937501, 68.30561523437498], [-86.569921875, 68.28769531250006], [-86.45195312499993, 68.22548828125], [-86.42114257812497, 68.18344726562503], [-86.43032226562497, 68.13872070312499], [-86.42001953125, 68.07392578125004], [-86.39033203125001, 67.98891601562502], [-86.38242187499998, 67.92729492187499], [-86.39643554687501, 67.88896484375002], [-86.446923828125, 67.8169921875], [-86.4896484375, 67.78359375000002], [-86.54604492187502, 67.75219726562503], [-86.59555664062498, 67.7359375]]], [[[-75.67587890624998, 68.32250976562506], [-75.15380859375, 68.23403320312497], [-75.10312, 68.201904296875], [-75.07812, 68.17314453124999], [-75.0634765625, 68.14121093750006], [-75.06235351562503, 68.07539062499998], [-75.07285156249995, 68.04902343750001], [-75.12387695312495, 67.98525390625], [-75.12734374999994, 67.965234375], [-75.08637695312495, 67.75141601562495], [-75.09052734375001, 67.634765625], [-75.12729492187503, 67.53730468749995], [-75.20195312499996, 67.45917968750001], [-75.31450195312499, 67.40043945312505], [-75.40009765625001, 67.36669921875], [-75.78007812499996, 67.28354492187503], [-76.04897460937494, 67.26201171874999], [-76.33276367187494, 67.25810546874999], [-76.69394531249998, 67.23583984375], [-76.85883789062501, 67.24047851562506], [-76.94418945312498, 67.25029296875002], [-77.0048828125, 67.26694335937503], [-77.075927734375, 67.31962890625002], [-77.157080078125, 67.40834960937497], [-77.22421875, 67.50820312499997], [-77.30439453125001, 67.68510742187505], [-77.30590820312497, 67.70610351562505], [-77.22856445312502, 67.85009765625], [-77.12587890624997, 67.94707031250002], [-76.9447265625, 68.09096679687502], [-76.740234375, 68.23125], [-76.68823242187497, 68.25439453125003], [-76.59580078124998, 68.27895507812497], [-76.36445312500001, 68.31870117187498], [-76.17280273437495, 68.30878906250001], [-76.08828124999997, 68.31381835937506], [-75.98276367187495, 68.33232421874999], [-75.86650390624999, 68.33681640625002], [-75.67587890624998, 68.32250976562506]]], [[[-78.98271484374999, 68.19282226562501], [-79.06406250000003, 68.18178710937497], [-79.17402343749995, 68.23496093749998], [-79.17475585937493, 68.26445312500002], [-79.15346679687494, 68.33525390625007], [-78.95258789062495, 68.35302734375006], [-78.86870117187502, 68.31030273437506], [-78.828515625, 68.26816406249998], [-78.98271484374999, 68.19282226562501]]], [[[-104.54067382812497, 68.405908203125], [-104.59599609374995, 68.40219726562503], [-104.69946289062499, 68.41826171875002], [-104.85112304687497, 68.453955078125], [-104.96523437499995, 68.49174804687507], [-105.04174804687499, 68.53154296874999], [-105.05136718749999, 68.55903320312501], [-104.99399414062495, 68.57421875], [-104.90727539062495, 68.58178710937503], [-104.700390625, 68.57670898437505], [-104.60200195312503, 68.56152343749997], [-104.47211914062503, 68.50351562499998], [-104.44453125, 68.47070312500003], [-104.44047851562497, 68.44951171874999], [-104.45712890624999, 68.43115234374997], [-104.54067382812497, 68.405908203125]]], [[[-74.880859375, 68.34868164062505], [-74.959326171875, 68.34223632812498], [-75.07250976562497, 68.40415039062498], [-75.31015624999998, 68.474462890625], [-75.40024414062503, 68.52548828125], [-75.40341796874998, 68.55014648437506], [-75.39619140625001, 68.58881835937504], [-75.37016601562496, 68.63608398437498], [-75.28740234374996, 68.68774414062503], [-75.19975585937496, 68.69609375000005], [-75.07470703124997, 68.68471679687502], [-74.98364257812497, 68.64760742187502], [-74.884765625, 68.54462890625001], [-74.8189453125, 68.49443359374999], [-74.79824218749997, 68.45795898437501], [-74.83095703124997, 68.44072265625005], [-74.82792968749996, 68.42377929687498], [-74.81289062500002, 68.41333007812497], [-74.81855468750001, 68.39409179687507], [-74.84497070312497, 68.36596679687503], [-74.880859375, 68.34868164062505]]], [[[-101.84589843749994, 68.58632812499997], [-101.88720703125001, 68.58496093750006], [-101.94462890624999, 68.60283203125005], [-102.26635742187499, 68.663671875], [-102.30815429687497, 68.681982421875], [-102.27050781250003, 68.70756835937507], [-102.15332031249996, 68.74047851562503], [-102.07436523437495, 68.7740234375], [-102.01337890624995, 68.82539062500001], [-101.82836914062501, 68.79897460937502], [-101.75932617187499, 68.77460937499995], [-101.73295898437495, 68.75341796875], [-101.72163085937494, 68.72412109374997], [-101.73203125000002, 68.65214843750005], [-101.794287109375, 68.63686523437497], [-101.84589843749994, 68.58632812499997]]], [[[-100.21723632812497, 68.80668945312502], [-100.248779296875, 68.77504882812505], [-100.28793945312498, 68.76606445312498], [-100.36572265625001, 68.72880859375005], [-100.39731445312498, 68.72382812500001], [-100.44257812499995, 68.74755859375003], [-100.48066406249998, 68.78618164062502], [-100.49692382812502, 68.792236328125], [-100.52104492187496, 68.79067382812502], [-100.57338867187497, 68.76606445312498], [-100.59653320312496, 68.76640625000007], [-100.61596679687501, 68.78291015624995], [-100.62539062499998, 68.81591796875003], [-100.62465820312501, 68.86528320312505], [-100.59990234374995, 68.94135742187501], [-100.59833984374998, 68.96909179687506], [-100.61157226562501, 68.99018554687501], [-100.600634765625, 69.00942382812502], [-100.56547851562495, 69.02680664062501], [-100.52031249999999, 69.03505859375], [-100.41396484375, 69.028076171875], [-100.329931640625, 68.99755859375], [-100.28896484375001, 68.95766601562502], [-100.20688476562499, 68.92617187500002], [-100.17846679687497, 68.90390625], [-100.21723632812497, 68.80668945312502]]], [[[-99.99467773437502, 69.01352539062503], [-100.01801757812497, 68.95400390625], [-100.14130859374995, 68.96992187499995], [-100.19570312500002, 68.991455078125], [-100.24199218749995, 69.040380859375], [-100.24736328124997, 69.05278320312505], [-100.23706054687501, 69.07148437499995], [-100.18696289062501, 69.114013671875], [-100.153125, 69.12949218750003], [-100.07280273437495, 69.11147460937502], [-100.03535156249995, 69.086572265625], [-100.00561523437501, 69.04711914062506], [-99.99467773437502, 69.01352539062503]]], [[[-90.49257812499997, 69.22109374999997], [-90.57441406249993, 69.20942382812498], [-90.62578125000002, 69.25092773437501], [-90.66743164062498, 69.25947265624998], [-90.685888671875, 69.28715820312502], [-90.77158203124995, 69.29257812500006], [-90.76567382812499, 69.33598632812502], [-90.74238281249995, 69.35732421875002], [-90.66279296875001, 69.37416992187497], [-90.59970703125003, 69.36782226562502], [-90.53984374999999, 69.324609375], [-90.51064453125, 69.29042968749997], [-90.4853515625, 69.24663085937502], [-90.49257812499997, 69.22109374999997]]], [[[-79.21064453124995, 68.845458984375], [-79.27973632812501, 68.83872070312506], [-79.36137695312493, 68.857666015625], [-79.390478515625, 68.89018554687505], [-79.40576171875, 68.92304687500001], [-79.39116210937496, 68.93994140624997], [-79.354736328125, 68.95590820312503], [-79.30522460937496, 68.992333984375], [-79.24267578125, 69.04926757812495], [-79.14497070312498, 69.08745117187502], [-78.93046874999999, 69.12290039062503], [-78.9, 69.135400390625], [-78.8041015625, 69.23510742187497], [-78.771826171875, 69.252197265625], [-78.66201171875002, 69.26235351562502], [-78.65019531249999, 69.27519531250007], [-78.6890625, 69.29975585937501], [-78.6890625, 69.32509765625002], [-78.65019531249999, 69.35122070312502], [-78.59667968750003, 69.37060546875006], [-78.45791015625, 69.389501953125], [-78.33256835937496, 69.38603515624999], [-78.30048828124998, 69.37871093750002], [-78.27246093749997, 69.36123046875], [-78.23408203124995, 69.31459960937502], [-78.22895507812498, 69.30400390624999], [-78.28701171875, 69.2626953125], [-78.43896484374994, 69.19916992187504], [-78.53291015625001, 69.14604492187505], [-78.55175781250003, 69.12866210937497], [-78.56030273437497, 69.10625], [-78.59565429687498, 69.07905273437498], [-78.70537109374996, 69.013671875], [-78.77919921875, 68.95048828124999], [-78.85268554687497, 68.915673828125], [-79.05361328124994, 68.88291015625], [-79.21064453124995, 68.845458984375]]], [[[-90.1998046875, 69.419091796875], [-90.17739257812497, 69.35708007812497], [-90.26728515624998, 69.27290039062495], [-90.29545898437496, 69.2578125], [-90.33027343749993, 69.252197265625], [-90.36406249999999, 69.26259765625], [-90.46469726562498, 69.32871093750003], [-90.49204101562503, 69.369873046875], [-90.45512695312496, 69.390478515625], [-90.37724609375002, 69.41621093750001], [-90.32207031249996, 69.4287109375], [-90.25283203124997, 69.41791992187501], [-90.22856445312499, 69.43603515624997], [-90.1998046875, 69.419091796875]]], [[[-76.99536132812503, 69.14375], [-77.12163085937499, 69.13212890625005], [-77.21503906250001, 69.13808593750002], [-77.27558593750001, 69.16166992187502], [-77.32192382812502, 69.19360351562506], [-77.37939453125, 69.2740234375], [-77.35805664062502, 69.3115234375], [-77.35151367187501, 69.378662109375], [-77.34091796874998, 69.40385742187499], [-77.31870117187498, 69.41630859375005], [-77.18754882812502, 69.440087890625], [-77.10917968749993, 69.43740234375], [-76.99409179687493, 69.411767578125], [-76.74570312499995, 69.40400390625001], [-76.68408203125003, 69.38041992187502], [-76.66884765625002, 69.36616210937504], [-76.67001953125, 69.34858398437501], [-76.68745117187498, 69.32768554687502], [-76.81030273437497, 69.26674804687502], [-76.86933593750001, 69.22485351562503], [-76.91123046875003, 69.174658203125], [-76.99536132812503, 69.14375]]], [[[-101.171728515625, 69.39707031250003], [-101.25351562499996, 69.38847656250005], [-101.268505859375, 69.39057617187504], [-101.2615234375, 69.41782226562498], [-101.267626953125, 69.43149414062503], [-101.28950195312501, 69.44125976562506], [-101.21777343749997, 69.46293945312505], [-101.20732421874997, 69.479833984375], [-101.230126953125, 69.492822265625], [-101.32846679687496, 69.51743164062503], [-101.35649414062499, 69.53969726562505], [-101.351318359375, 69.55922851562502], [-101.31289062499998, 69.57607421875], [-101.24487304687499, 69.57353515625002], [-101.09833984374997, 69.540771484375], [-101.03115234374997, 69.495458984375], [-101.00063476562497, 69.4619140625], [-101.04916992187499, 69.45693359374997], [-101.08686523437494, 69.44335937500003], [-101.12695312500003, 69.41469726562497], [-101.171728515625, 69.39707031250003]]], [[[-95.51367187499997, 69.57363281250002], [-95.38090820312493, 69.50659179687506], [-95.382080078125, 69.47407226562498], [-95.39941406249997, 69.41977539062503], [-95.43745117187498, 69.37846679687505], [-95.496240234375, 69.35009765625006], [-95.57851562499997, 69.33583984375], [-95.68437, 69.33569335937506], [-95.73012695312502, 69.34755859374997], [-95.69589843749998, 69.38955078125], [-95.67016601562497, 69.40200195312497], [-95.66582031249999, 69.43896484375003], [-95.68281249999998, 69.50029296875002], [-95.70410156249997, 69.53803710937495], [-95.76362304687501, 69.55961914062502], [-95.80620117187499, 69.56049804687501], [-95.81777343749994, 69.54057617187505], [-95.79833984374997, 69.49980468749999], [-95.81181640624996, 69.447021484375], [-95.85820312500002, 69.38222656250002], [-95.89345703125, 69.35175781250004], [-95.95605468749994, 69.36713867187495], [-95.9859375, 69.39189453125005], [-95.97792968749997, 69.43271484375], [-95.99477539062494, 69.46967773437498], [-95.97885742187498, 69.50883789062505], [-95.93623046875001, 69.56704101562502], [-95.87583007812495, 69.60600585937505], [-95.79775390624994, 69.62573242187497], [-95.70664062500003, 69.62431640625005], [-95.60249023437495, 69.601806640625], [-95.51367187499997, 69.57363281250002]]], [[[-139.043115234375, 69.57690429687497], [-139.12573242187503, 69.53930664062506], [-139.25698242187497, 69.57856445312495], [-139.29140624999997, 69.59785156249998], [-139.139599609375, 69.64960937499995], [-139.07265624999997, 69.64765625000001], [-138.93154296875, 69.61694335937497], [-138.878857421875, 69.589697265625], [-139.043115234375, 69.57690429687497]]], [[[-67.91469726562494, 69.54096679687504], [-67.940283203125, 69.53486328125004], [-68.20234375000001, 69.58041992187498], [-68.22138671874998, 69.61674804687502], [-68.09326171875, 69.65703125000005], [-67.989111328125, 69.67875976562505], [-67.908837890625, 69.68183593749995], [-67.8291015625, 69.675], [-67.75458984375001, 69.63144531249998], [-67.84492187499993, 69.59174804687498], [-67.91469726562494, 69.54096679687504]]], [[[-78.02910156249993, 69.71489257812502], [-77.97783203124999, 69.66489257812506], [-77.969140625, 69.63896484375002], [-78.03999023437495, 69.6083984375], [-78.30722656250003, 69.55180664062502], [-78.47006835937498, 69.5025390625], [-78.55239257812497, 69.491552734375], [-78.66206054687493, 69.50263671874995], [-78.7953125, 69.479736328125], [-78.84819335937502, 69.4828125], [-78.789306640625, 69.52314453124995], [-78.57856445312498, 69.638818359375], [-78.40185546874994, 69.650634765625], [-78.34418945312501, 69.67480468750003], [-78.29550781249995, 69.66713867187497], [-78.26733398437497, 69.68715820312497], [-78.26245117187497, 69.71684570312507], [-78.20073242187502, 69.73950195312497], [-78.14521484374998, 69.73920898437501], [-78.02910156249993, 69.71489257812502]]], [[[-79.43066406250003, 69.78779296874995], [-79.39028320312497, 69.73041992187498], [-79.36499023437497, 69.71235351562495], [-79.40244140624995, 69.68515625], [-79.55283203124995, 69.63085937500006], [-79.88168945312498, 69.60869140625007], [-80.04750976562502, 69.63432617187505], [-79.97114257812498, 69.55634765624995], [-79.95449218749997, 69.52348632812502], [-79.97783203124993, 69.50966796874997], [-80.04687, 69.51386718750001], [-80.16147460937495, 69.53593749999999], [-80.22734375, 69.56240234375005], [-80.244482421875, 69.5931640625], [-80.26865234375003, 69.6], [-80.29970703124997, 69.58286132812503], [-80.32958984375, 69.58676757812503], [-80.39785156249997, 69.63261718750005], [-80.44804687499999, 69.64970703125007], [-80.77822265625002, 69.67700195312503], [-80.794775390625, 69.68925781250005], [-80.77753906249995, 69.7103515625], [-80.72661132812499, 69.74042968749998], [-80.65253906249998, 69.7505859375], [-80.46591796874998, 69.73710937500002], [-80.45068359375, 69.744775390625], [-80.43833007812495, 69.78271484375], [-80.42421875000002, 69.797607421875], [-80.29492187499997, 69.79379882812503], [-80.21367187499993, 69.80195312500001], [-80.16884765624994, 69.78242187500001], [-80.124609375, 69.73725585937495], [-80.06176757812497, 69.74550781250005], [-79.97084960937502, 69.73896484374995], [-79.86958007812501, 69.75551757812505], [-79.71484375, 69.79570312500005], [-79.593994140625, 69.81049804687495], [-79.43066406250003, 69.78779296874995]]], [[[-97.439453125, 69.64267578125006], [-97.40864257812495, 69.63076171875002], [-97.35068359374995, 69.64086914062506], [-97.30576171875003, 69.67348632812502], [-97.278466796875, 69.67963867187495], [-97.23608398437497, 69.67348632812502], [-97.096337890625, 69.614990234375], [-96.98906249999999, 69.55361328125002], [-96.87519531249998, 69.51000976562503], [-96.69453124999995, 69.47109375], [-96.29995117187494, 69.34438476562505], [-96.18374023437497, 69.25869140625], [-96.06098632812493, 69.12543945312501], [-95.95136718749998, 69.02373046874999], [-95.85488281249994, 68.95356445312501], [-95.7513671875, 68.89765624999998], [-95.58549804687496, 68.83510742187502], [-95.43754882812502, 68.88061523437497], [-95.374169921875, 68.89213867187502], [-95.31953124999995, 68.87319335937497], [-95.26777343749998, 68.82607421874997], [-95.29516601562497, 68.80502929687503], [-95.35947265625, 68.77836914062502], [-95.46557617187494, 68.74726562499998], [-95.61420898437495, 68.74501953124997], [-95.68564453125003, 68.73583984375006], [-95.80214843749997, 68.68647460937504], [-95.89462890624998, 68.62724609375005], [-96.02402343750003, 68.60727539062498], [-96.26762695312502, 68.50791015624998], [-96.40156249999995, 68.47070312500003], [-96.59882812499998, 68.46083984375], [-97.00839843750003, 68.53867187500003], [-97.263671875, 68.52773437500002], [-97.47202148437498, 68.543701171875], [-97.70478515624998, 68.62592773437495], [-97.88535156249998, 68.6724609375], [-98.23505859375001, 68.73935546875006], [-98.25795898437497, 68.74926757812503], [-98.273046875, 68.771875], [-98.28017578124997, 68.80717773437502], [-98.296044921875, 68.83076171875004], [-98.320556640625, 68.84272460937498], [-98.37558593750003, 68.84169921875002], [-98.43183593749995, 68.818359375], [-98.53964843749998, 68.79824218749997], [-98.70380859374993, 68.80278320312502], [-98.775244140625, 68.816748046875], [-98.82963867187499, 68.83862304687503], [-98.85913085937496, 68.86435546875003], [-98.863720703125, 68.893798828125], [-98.87885742187497, 68.91645507812498], [-98.90449218749995, 68.93242187500005], [-98.96401367187501, 68.93286132812506], [-99.05737304687501, 68.91767578124998], [-99.09384765624999, 68.89887695312495], [-99.073388671875, 68.87656250000003], [-99.09062, 68.86333007812499], [-99.25400390625002, 68.86318359374997], [-99.31796875, 68.87626953125007], [-99.44086914062498, 68.91767578124998], [-99.49467773437493, 68.95957031249998], [-99.56406249999995, 69.03413085937498], [-99.557373046875, 69.054296875], [-99.51328125, 69.099609375], [-99.455712890625, 69.13120117187503], [-99.08544921874996, 69.149755859375], [-98.91220703125002, 69.16757812499998], [-98.72363281249997, 69.21914062500002], [-98.50351562499998, 69.30830078124998], [-98.45595703124997, 69.33466796875001], [-98.45039062499998, 69.35405273437505], [-98.46660156250002, 69.375], [-98.53535156249998, 69.42631835937505], [-98.55854492187501, 69.46142578125], [-98.53671875, 69.47802734375], [-98.44838867187494, 69.47954101562505], [-98.494873046875, 69.499365234375], [-98.53437, 69.52744140625003], [-98.54824218749994, 69.54497070312505], [-98.54599609375, 69.57290039062497], [-98.47583007812503, 69.57905273437498], [-98.38935546874998, 69.56503906250006], [-98.22231445312497, 69.484521484375], [-98.15576171875, 69.46884765625], [-98.04135742187498, 69.456640625], [-98.16298828124997, 69.51220703125003], [-98.28881835937503, 69.62900390625003], [-98.30449218749993, 69.66928710937498], [-98.30122070312498, 69.69169921875002], [-98.268212890625, 69.75444335937499], [-98.23867187500002, 69.78002929687497], [-98.20048828124996, 69.79697265625006], [-98.08076171875001, 69.83305664062502], [-97.88896484375002, 69.858251953125], [-97.79072265624998, 69.86162109374999], [-97.69121093749996, 69.84125976562501], [-97.60434570312503, 69.80219726562495], [-97.41137695312497, 69.73847656250004], [-97.38256835937497, 69.71240234375006], [-97.38569335937498, 69.70024414062507], [-97.46015624999995, 69.68271484375003], [-97.46943359374998, 69.66679687499999], [-97.439453125, 69.64267578125006]]], [[[-86.91303710937501, 70.11323242187501], [-86.79877929687498, 70.10527343750007], [-86.69121093750002, 70.11503906250002], [-86.61274414062493, 70.10571289062497], [-86.56337890625, 70.07724609375003], [-86.53090820312497, 70.04765625000005], [-86.51523437499995, 70.01704101562504], [-86.55766601562499, 69.99531249999995], [-86.73432617187501, 69.976318359375], [-86.85493164062498, 69.98574218749997], [-86.98398437499998, 70.0111328125], [-87.043798828125, 69.999853515625], [-87.19082031250002, 70.01855468749997], [-87.26391601562497, 70.0439453125], [-87.3232421875, 70.08012695312502], [-87.32314453124997, 70.10224609374998], [-87.168115234375, 70.12724609375002], [-87.10727539062495, 70.14667968749998], [-86.91303710937501, 70.11323242187501]]], [[[-100.30834960937497, 70.49580078124995], [-100.32124023437501, 70.4876953125], [-100.53725585937497, 70.525], [-100.620654296875, 70.54692382812507], [-100.64775390625002, 70.563134765625], [-100.66694335937501, 70.59624023437499], [-100.67832031250002, 70.64619140624995], [-100.63530273437496, 70.6703125], [-100.53793945312502, 70.668603515625], [-100.43393554687498, 70.6494140625], [-100.27612304687497, 70.59462890625002], [-100.32109374999999, 70.578369140625], [-100.32324218749999, 70.54243164062495], [-100.305517578125, 70.50839843750003], [-100.30834960937497, 70.49580078124995]]], [[[-74.70888671874997, 45.0038574218751], [-74.76245117187494, 44.99907226562502], [-74.85664062499995, 45.003906250000114], [-74.99614257812496, 44.970117187499966], [-75.17939453124998, 44.899365234375125], [-75.40126953124997, 44.77226562499999], [-75.79194335937498, 44.49707031250006], [-75.81933593749997, 44.468017578125], [-75.87592773437495, 44.416992187500085], [-76.02021484375004, 44.36259765625002], [-76.1511718749999, 44.30395507812497], [-76.18579101562503, 44.24223632812502], [-76.24853515624991, 44.21411132812497], [-76.46459960937497, 44.05761718750006], [-76.58613281249995, 43.924316406250085], [-76.69648437499998, 43.78481445312508], [-76.819970703125, 43.62880859375011], [-77.07333984375, 43.62685546875005], [-77.26669921874986, 43.62749023437502], [-77.59653320312492, 43.62861328125007], [-77.87924804687489, 43.62954101562508], [-78.21479492187493, 43.63066406249993], [-78.45825195312497, 43.63149414062511], [-78.72041015624993, 43.62495117187501], [-78.84555664062492, 43.58334960937506], [-79.00249023437493, 43.52714843749999], [-79.17187, 43.466552734375085], [-79.0830566406249, 43.33139648437509], [-79.05922851562494, 43.27807617187506], [-79.066064453125, 43.10610351562502], [-79.04799804687497, 43.08730468750008], [-79.02905273437491, 43.06176757812503], [-79.02617187499996, 43.01733398437506], [-79.01166992187493, 42.99702148437498], [-78.98076171874993, 42.98061523437502], [-78.94599609374995, 42.961328125], [-78.92084960937498, 42.93520507812502], [-78.91508789062496, 42.90913085937504], [-78.9392578124999, 42.86372070312501], [-79.03671874999986, 42.80234374999995], [-79.17373046875, 42.74853515625], [-79.4462402343749, 42.65146484374995], [-79.76201171874993, 42.53896484375011], [-80.03574218749992, 42.44145507812496], [-80.24755859374991, 42.366015625000045], [-80.68261718749991, 42.29975585937504], [-81.02822265624997, 42.247167968750006], [-81.27763671874987, 42.20917968750007], [-81.50732421874997, 42.10346679687504], [-81.76093749999993, 41.98681640625006], [-81.97416992187496, 41.88872070312499], [-82.2133300781249, 41.778710937500136], [-82.43906249999989, 41.6748535156251], [-82.69003906249995, 41.675195312499994], [-82.86621093749997, 41.753027343750034], [-83.02998046874993, 41.83295898437498], [-83.141943359375, 41.97587890624996], [-83.14965820312497, 42.14194335937506], [-83.10952148437497, 42.25068359375001], [-83.07314453124994, 42.30029296874997], [-83.0037109374999, 42.33173828124998], [-82.86777343749992, 42.38520507812504], [-82.74418945312496, 42.493457031250074], [-82.64511718749995, 42.5580566406251], [-82.54531249999997, 42.62470703124998], [-82.4883300781249, 42.739501953125114], [-82.41723632812497, 43.017382812500045], [-82.40820312499991, 43.072656250000136], [-82.30478515624989, 43.263232421875045], [-82.19038085937495, 43.47407226562501], [-82.137841796875, 43.570898437500034], [-82.19658203124996, 43.82221679687507], [-82.2407714843749, 44.01533203124998], [-82.28125, 44.19223632812495], [-82.32680664062494, 44.39155273437507], [-82.36826171874995, 44.572998046875085], [-82.40737304687491, 44.743945312500074], [-82.4465820312499, 44.91552734375006], [-82.48505859374993, 45.08374023437503], [-82.51523437499995, 45.2043945312501], [-82.55107421874987, 45.3473632812501], [-82.760400390625, 45.4477050781251], [-82.91933593749994, 45.51796875000002], [-83.17929687499989, 45.63276367187498], [-83.39731445312489, 45.729052734375045], [-83.59267578125, 45.81713867187506], [-83.46948242187503, 45.99467773437499], [-83.48012695312497, 46.023730468750045], [-83.524755859375, 46.05869140625006], [-83.61596679687503, 46.116845703124994], [-83.66928710937486, 46.122753906249955], [-83.76318359374991, 46.10908203125001], [-83.91303710937498, 46.07290039062511], [-83.97778320312494, 46.08491210937507], [-84.02919921874994, 46.1470214843751], [-84.08837890624991, 46.226513671874955], [-84.10776367187495, 46.28862304687502], [-84.11518554687504, 46.37080078125004], [-84.15048828124995, 46.44477539062501], [-84.12812, 46.483593750000125], [-84.12319335937497, 46.50292968749997], [-84.12519531249995, 46.527246093750136], [-84.1494628906249, 46.5427734375001], [-84.1921874999999, 46.54956054687506], [-84.33671875, 46.518505859375125], [-84.40170898437486, 46.515625], [-84.44047851562496, 46.49814453125006], [-84.50156249999989, 46.461865234375125], [-84.56176757812497, 46.45737304687509], [-84.66577148437503, 46.54326171875002], [-84.77939453124989, 46.63730468749998], [-84.82705078124994, 46.766845703125085], [-84.87597656249994, 46.89990234375003], [-85.07006835937497, 46.97993164062498], [-85.26411132812498, 47.05996093750011], [-85.4582031249999, 47.139941406250074], [-85.65224609375, 47.21997070312503], [-85.84633789062494, 47.3], [-86.04038085937495, 47.380029296875136], [-86.23447265624995, 47.46005859375009], [-86.42856445312489, 47.540087890625045], [-86.49555664062504, 47.566601562500125], [-86.67216796874996, 47.636425781249955], [-86.92182617187493, 47.735205078125006], [-87.20800781249997, 47.848486328125006], [-87.49423828124992, 47.96176757812498], [-87.74389648437497, 48.06054687500003], [-87.92050781249989, 48.13037109375006], [-87.98745117187494, 48.156884765625136], [-88.16064453124997, 48.225390625000045], [-88.37817382812497, 48.30307617187506], [-88.61176757812504, 48.26401367187509], [-88.89868164062497, 48.15571289062507], [-89.06259765624986, 48.093798828125074], [-89.18564453124989, 48.04741210937502], [-89.27319335937497, 48.019970703125125], [-89.45566406249992, 47.99624023437508], [-89.5505859374999, 47.99990234375011], [-89.77539062499997, 48.01533203125007], [-89.90102539062497, 47.99545898437509], [-89.99365234374991, 48.01533203125007], [-90.03994140624994, 48.078173828125074], [-90.09179687500003, 48.11811523437504], [-90.3201171874999, 48.0991699218751], [-90.60708007812494, 48.11259765624999], [-90.74438476562491, 48.10458984374995], [-90.79731445312495, 48.13105468750001], [-90.84033203125003, 48.20053710937495], [-90.9160644531249, 48.20913085937511], [-91.04345703124991, 48.19370117187498], [-91.22065429687495, 48.10458984374995], [-91.38720703124997, 48.05854492187498], [-91.51831054687494, 48.058300781250125], [-91.64731445312495, 48.10458984374995], [-91.85839843749994, 48.197558593750074], [-92.00517578125002, 48.301855468750006], [-92.17177734374994, 48.33837890624997], [-92.29868164062495, 48.32890624999999], [-92.3484375, 48.276611328125], [-92.41459960937493, 48.276611328125], [-92.46088867187504, 48.36586914062508], [-92.50058593749995, 48.43535156250002], [-92.58325195312491, 48.46508789062503], [-92.73266601562489, 48.53183593749995], [-92.83671875, 48.567773437499994], [-92.99624023437494, 48.611816406250085], [-93.05170898437495, 48.619873046875114], [-93.15522460937493, 48.625341796875006], [-93.25795898437497, 48.62885742187501], [-93.37788085937498, 48.61655273437498], [-93.46362304687494, 48.561279296875085], [-93.56425781249993, 48.5369140625001], [-93.70771484374995, 48.525439453125074], [-93.80356445312492, 48.54892578125006], [-93.85161132812496, 48.607275390625034], [-94.05517578125003, 48.65903320312492], [-94.41416015624989, 48.70410156250006], [-94.6208984374999, 48.7426269531251], [-94.6753417968749, 48.7744140625], [-94.70507812499991, 48.808496093749994], [-94.71254882812494, 48.8629882812501], [-94.71279296874997, 48.863427734374994], [-94.80346679687497, 49.0029296875], [-94.84257812499996, 49.119189453125074], [-94.86040039062493, 49.258593750000045], [-94.85434570312495, 49.304589843749994], [-94.87480468749993, 49.3190429687501], [-94.93935546874994, 49.349414062500074], [-95.15527343749997, 49.3696777343751], [-95.15825195312496, 49.2030761718751], [-95.16206054687493, 48.991748046875045], [-95.39790039062493, 48.99316406249997], [-95.82431640624995, 48.99316406249997], [-96.25068359374993, 48.99316406249997], [-96.67705078124993, 48.99316406249997], [-97.10346679687504, 48.99316406249997], [-97.52983398437493, 48.99316406249997], [-97.95620117187494, 48.99316406249997], [-98.38261718749996, 48.99316406249997], [-98.80898437499995, 48.99316406249997], [-99.23535156249994, 48.993115234375125], [-99.66171874999995, 48.993115234375125], [-100.08813476562496, 48.993115234375125], [-100.51450195312495, 48.993115234375125], [-100.94086914062504, 48.993115234375125], [-101.36728515624988, 48.993115234375125], [-101.79365234374995, 48.993115234375125], [-102.22001953124996, 48.993115234375125], [-102.64643554687497, 48.993115234375125], [-103.07280273437496, 48.993115234375125], [-103.49916992187505, 48.993115234375125], [-103.92558593749989, 48.993115234375125], [-104.35195312499997, 48.993115234375125], [-104.77832031249997, 48.993115234375125], [-105.20468749999988, 48.993115234375125], [-105.63110351562497, 48.993115234375125], [-106.05747070312489, 48.993115234375125], [-106.48383789062497, 48.993115234375125], [-106.91025390624989, 48.993115234375125], [-107.33662109374998, 48.993115234375125], [-107.76298828124989, 48.993115234375125], [-108.18940429687498, 48.993115234375125], [-108.6157714843749, 48.993115234375125], [-109.04213867187498, 48.993115234375125], [-109.4685546874999, 48.993066406250136], [-109.894921875, 48.993066406250136], [-110.3212890624999, 48.993066406250136], [-110.7476562499999, 48.993066406250136], [-111.17407226562491, 48.993066406250136], [-111.6004394531249, 48.993066406250136], [-112.02680664062491, 48.993066406250136], [-112.45322265625, 48.993066406250136], [-112.87958984374991, 48.993066406250136], [-113.30595703124992, 48.993066406250136], [-113.73237304687493, 48.993066406250136], [-114.15874023437492, 48.993066406250136], [-114.58510742187492, 48.993066406250136], [-115.01152343750002, 48.993066406250136], [-115.43789062499992, 48.993066406250136], [-115.86425781249993, 48.993066406250136], [-116.290625, 48.993066406250136], [-116.71704101562493, 48.993066406250136], [-117.14340820312493, 48.993066406250136], [-117.56977539062493, 48.993066406250136], [-117.99619140624993, 48.993066406250136], [-118.42255859374994, 48.993066406250136], [-118.84892578124993, 48.993066406250136], [-119.27534179687494, 48.993066406250136], [-119.70170898437495, 48.99301757812495], [-120.12807617187494, 48.99301757812495], [-120.55449218749995, 48.99301757812495], [-120.98085937499995, 48.99301757812495], [-121.40722656249994, 48.99301757812495], [-121.83359374999995, 48.99301757812495], [-122.26000976562496, 48.99301757812495], [-122.68637695312495, 48.99301757812495], [-122.78876953124994, 48.99301757812495], [-122.82670898437495, 49.028417968750034], [-122.9241699218749, 49.07465820312504], [-122.96269531249993, 49.07460937500005], [-123.002294921875, 49.06088867187509], [-123.02724609374994, 49.03852539062498], [-123.04921875, 48.993017578125034], [-123.06328125, 48.97773437500001], [-123.07729492187501, 48.980224609375], [-123.08642578124991, 48.993017578125034], [-123.11762695312497, 49.05634765625004], [-123.10932617187497, 49.084619140625136], [-123.07729492187492, 49.11835937500007], [-123.07954101562494, 49.130615234375085], [-123.15014648437493, 49.1210449218751], [-123.18188476562491, 49.129492187500034], [-123.19633789062502, 49.147705078125], [-123.19106445312492, 49.219531250000074], [-123.22944335937493, 49.260498046875085], [-123.18393554687489, 49.27773437500002], [-123.06728515624992, 49.29155273437502], [-122.94765625, 49.29326171874999], [-122.91298828124994, 49.32319335937507], [-122.87910156249995, 49.39892578125003], [-122.96445312499993, 49.32934570312506], [-123.01552734374995, 49.32216796875002], [-123.17426757812495, 49.34819335937499], [-123.27675781249997, 49.34394531250001], [-123.29052734374993, 49.35947265624998], [-123.28627929687495, 49.374951171875125], [-123.26406250000005, 49.39047851562509], [-123.247705078125, 49.443017578125136], [-123.22299804687493, 49.590478515624966], [-123.19067382812493, 49.644287109375114], [-123.17958984374998, 49.67353515625001], [-123.1875, 49.680322265624994], [-123.325, 49.577685546875045], [-123.33666992187491, 49.54511718749998], [-123.32241210937494, 49.51699218750011], [-123.33564453124997, 49.45917968750004], [-123.3989746093749, 49.441894531250085], [-123.43696289062493, 49.45131835937505], [-123.50820312500005, 49.402441406250034], [-123.53056640624989, 49.39731445312506], [-123.85893554687492, 49.48286132812507], [-123.89184570312496, 49.494726562500006], [-123.94838867187492, 49.53471679687499], [-124.02861328125002, 49.602880859375006], [-124.05380859375, 49.66171875000009], [-124.02402343749988, 49.71132812500008], [-123.99262695312497, 49.736181640625006], [-123.95952148437489, 49.736181640625006], [-123.92275390624995, 49.717529296875114], [-123.847119140625, 49.63666992187498], [-123.81718749999993, 49.58657226562508], [-123.73906249999992, 49.593554687500074], [-123.61274414062494, 49.65756835937498], [-123.58247070312498, 49.68125], [-123.70830078124996, 49.65693359375001], [-123.76269531250003, 49.65849609374999], [-123.81801757812492, 49.68515625000009], [-123.87441406250005, 49.736816406250114], [-123.9038085937499, 49.79545898437499], [-123.90424804687491, 49.98115234374998], [-123.88496093749997, 50.01704101562501], [-123.82382812499995, 50.043701171875114], [-123.78466796874997, 50.08798828125009], [-123.78769531249988, 50.10673828124999], [-123.82543945312493, 50.14423828124998], [-123.88012695312497, 50.17363281249993], [-123.93359375000003, 50.188281250000074], [-123.94589843749995, 50.18393554687509], [-123.86303710937494, 50.102587890625045], [-123.86572265624996, 50.072070312500045], [-123.957421875, 49.992773437500034], [-123.97138671874991, 49.9695312500001], [-123.97211914062497, 49.892041015625125], [-123.9849121093749, 49.87558593749998], [-124.05878906250004, 49.853662109375136], [-124.14160156249994, 49.792675781250125], [-124.28125, 49.77211914062502], [-124.41259765624991, 49.778125], [-124.483251953125, 49.80820312500009], [-124.70229492187495, 49.957666015624994], [-124.78237304687492, 50.02011718749992], [-124.78427734374996, 50.07280273437502], [-124.93417968749995, 50.258056640625085], [-124.93334960937496, 50.297900390625045], [-124.98559570312503, 50.35561523437508], [-125.04360351562494, 50.36376953124994], [-125.05668945312495, 50.418652343750125], [-124.93681640624995, 50.53740234374999], [-124.86264648437493, 50.63730468750009], [-124.85424804687491, 50.66865234375007], [-124.85751953124996, 50.717333984375045], [-124.87543945312497, 50.82563476562507], [-124.8598632812499, 50.872412109375006], [-124.93359374999991, 50.810595703125045], [-124.9492675781249, 50.7646972656251], [-124.93105468749992, 50.71840820312508], [-124.94252929687505, 50.665673828124994], [-124.9854003906249, 50.59194335937508], [-125.05878906249993, 50.51386718749998], [-125.20986328124998, 50.47631835937497], [-125.4763183593749, 50.49716796874995], [-125.50717773437488, 50.50727539062507], [-125.52597656249989, 50.53413085937501], [-125.53935546874996, 50.64902343749998], [-125.55556640624997, 50.63486328124995], [-125.58583984374992, 50.57363281250008], [-125.6101562499999, 50.48603515624998], [-125.64130859374994, 50.46621093750005], [-125.69755859374995, 50.46455078125007], [-125.74121093749996, 50.478564453125074], [-125.77241210937491, 50.50820312500008], [-125.83959960937493, 50.51064453125002], [-125.9650390625, 50.487353515625074], [-126.02412109375004, 50.49672851562505], [-126.09433593749995, 50.497607421875045], [-126.23657226562497, 50.52329101562495], [-126.4044921875, 50.529882812500034], [-126.44995117187493, 50.549707031249994], [-126.44746093750004, 50.58774414062492], [-126.41611328124988, 50.60698242187493], [-126.23891601562492, 50.62382812499999], [-126.06723632812493, 50.664306640625085], [-125.89760742187494, 50.684375], [-125.90410156250002, 50.704931640625006], [-125.9807128906249, 50.71137695312507], [-126.37031249999995, 50.66674804687503], [-126.4929687499999, 50.67211914062506], [-126.51435546875, 50.679394531250125], [-126.51733398437497, 50.72446289062506], [-126.47221679687493, 50.7672851562501], [-126.397119140625, 50.80708007812504], [-126.37460937499995, 50.83735351562498], [-126.41821289062494, 50.85019531249992], [-126.48818359375, 50.84184570312502], [-126.5217773437499, 50.86606445312498], [-126.48461914062497, 50.96049804687502], [-126.51733398437497, 51.0568359375001], [-126.56289062499994, 50.965478515625136], [-126.63178710937494, 50.915136718750006], [-126.96040039062491, 50.89370117187508], [-127.01406249999992, 50.86679687499995], [-127.057568359375, 50.86752929687509], [-127.26748046874995, 50.91606445312502], [-127.35693359374996, 50.945556640625], [-127.4412109374999, 50.98940429687505], [-127.59086914062502, 51.087548828125136], [-127.70810546875, 51.15117187499996], [-127.71430664062494, 51.26865234375009], [-127.68916015624997, 51.34345703125007], [-127.63271484374992, 51.427294921875074], [-127.41967773437496, 51.608056640625136], [-127.34658203124998, 51.64238281250002], [-127.28066406250005, 51.6541015625001], [-126.96811523437489, 51.66992187499994], [-126.7354003906249, 51.69262695312497], [-126.69145507812502, 51.70341796875002], [-127.03408203125001, 51.71669921875008], [-127.33872070312489, 51.70737304687495], [-127.44272460937495, 51.67895507812503], [-127.57573242187495, 51.56293945312501], [-127.60957031249991, 51.5140625], [-127.644873046875, 51.47846679687504], [-127.66870117187497, 51.47758789062502], [-127.71406249999998, 51.4901855468751], [-127.72871093749994, 51.50551757812502], [-127.74750976562504, 51.54355468749998], [-127.81894531249993, 51.60390625], [-127.85053710937498, 51.67319335937509], [-127.86914062499996, 51.77524414062509], [-127.863232421875, 51.82080078124997], [-127.82998046875005, 51.87900390625009], [-127.7276367187499, 51.9932128906251], [-127.85878906249998, 51.99028320312502], [-127.84331054687502, 52.086474609375074], [-127.79536132812493, 52.19101562500006], [-127.67333984375003, 52.25292968750006], [-127.54970703124998, 52.297607421875114], [-127.43793945312504, 52.356152343750125], [-127.24223632812496, 52.39511718750009], [-127.17573242187491, 52.31484375000008], [-127.00795898437492, 52.29067382812511], [-126.9594726562499, 52.25454101562505], [-126.9, 52.18833007812506], [-126.82631835937495, 52.125146484375136], [-126.73857421875002, 52.06494140624997], [-126.71396484374989, 52.060693359374994], [-126.75263671875004, 52.11235351562502], [-126.89521484375004, 52.225488281249994], [-126.90141601562489, 52.2653320312501], [-126.93818359374991, 52.30859375000003], [-127.12705078124993, 52.37094726562495], [-127.16059570312493, 52.394873046875034], [-127.19399414062498, 52.45766601562502], [-127.20825195312496, 52.498242187500125], [-127.187109375, 52.537695312500006], [-126.9952148437499, 52.65791015624998], [-126.95131835937492, 52.721240234375074], [-126.95136718749994, 52.7510253906251], [-126.96640624999989, 52.78466796875003], [-127.00825195312498, 52.8425781250001], [-127.01933593750002, 52.8424804687501], [-127.00639648437496, 52.754589843750125], [-127.01323242187502, 52.719970703125], [-127.03486328124998, 52.681738281250034], [-127.06621093749989, 52.65268554687498], [-127.10708007812495, 52.6328125], [-127.51923828124998, 52.35927734375005], [-127.56030273437491, 52.34321289062498], [-127.71337890624993, 52.31850585937511], [-127.79189453124994, 52.28935546875002], [-127.83432617187488, 52.25097656250003], [-127.90219726562493, 52.15087890625006], [-127.99541015624992, 51.95053710937509], [-128.10224609374993, 51.78842773437495], [-128.19355468749995, 51.99829101562506], [-128.3576171875, 52.1588867187501], [-128.0375, 52.318164062500045], [-128.02915039062495, 52.34248046875001], [-128.0603027343749, 52.4275390625001], [-128.0515624999999, 52.45332031250004], [-128.02128906249993, 52.49067382812501], [-127.94023437499996, 52.545166015625085], [-127.94335937499997, 52.55073242187498], [-128.03823242187494, 52.53115234375008], [-128.18398437500005, 52.40791015625001], [-128.24096679687503, 52.36826171874995], [-128.27153320312493, 52.3629882812501], [-128.27514648437497, 52.435498046875125], [-128.19677734374991, 52.62329101562503], [-128.13237304687502, 52.80581054687508], [-128.1087890624999, 52.85805664062508], [-128.05327148437487, 52.91069335937496], [-128.10595703124997, 52.90688476562508], [-128.3650390624999, 52.82578125000006], [-128.45195312500005, 52.87661132812511], [-128.52470703125002, 53.1406738281251], [-128.6523437499999, 53.24384765624998], [-128.8685546875, 53.328125], [-129.08090820312492, 53.36728515625006], [-129.12954101562505, 53.44228515625008], [-129.1715820312499, 53.53359375000002], [-129.114453125, 53.641113281250085], [-129.02143554687507, 53.692138671875], [-128.935595703125, 53.71518554687506], [-128.8545898437499, 53.70454101562504], [-128.85043945312492, 53.66518554687502], [-128.90561523437492, 53.559326171875114], [-128.83305664062493, 53.54941406250006], [-128.5421386718749, 53.420654296875114], [-128.47861328124995, 53.410302734375136], [-128.358056640625, 53.45981445312509], [-128.29106445312502, 53.45786132812506], [-128.13271484375002, 53.417773437500045], [-128.07919921874992, 53.36943359374999], [-127.92783203125, 53.274707031250045], [-127.950048828125, 53.329833984375085], [-128.11513671874997, 53.44594726562511], [-128.2072265624999, 53.483203125000074], [-128.36914062500003, 53.49038085937511], [-128.46962890624997, 53.47089843750004], [-128.51176757812496, 53.47656249999994], [-128.60034179687497, 53.506103515625114], [-128.67553710937494, 53.55458984375005], [-128.75078124999987, 53.66083984375001], [-128.7678710937499, 53.710205078125114], [-128.76367187500003, 53.746875], [-128.74594726562486, 53.780175781249994], [-128.7147460937499, 53.81000976562504], [-128.65288085937502, 53.831640625], [-128.5604492187499, 53.84506835937506], [-128.5321289062499, 53.85810546875007], [-128.65087890624994, 53.918847656249994], [-128.70478515624993, 53.918603515625136], [-128.89018554687496, 53.82978515624998], [-128.9278320312499, 53.82280273437496], [-128.943994140625, 53.8400390625001], [-128.95937, 53.84145507812505], [-129.01396484374993, 53.79746093749995], [-129.05639648437497, 53.77778320312504], [-129.2081054687499, 53.6416015625], [-129.2317382812499, 53.57641601562506], [-129.24033203124986, 53.4790527343751], [-129.2578613281249, 53.417968750000085], [-129.28427734374995, 53.393164062500006], [-129.46240234374991, 53.34658203125011], [-129.56372070312506, 53.251464843750114], [-129.68671875000007, 53.33354492187496], [-129.82177734375003, 53.41274414062511], [-129.91186523437491, 53.55136718750009], [-130.07436523437497, 53.57563476562507], [-130.26328125, 53.65415039062506], [-130.33525390625002, 53.723925781250074], [-130.23286132812495, 53.867431640625], [-130.08593750000003, 53.97578125000004], [-130.0635253906249, 54.10566406250004], [-130.04331054687495, 54.13354492187503], [-129.79077148437494, 54.16577148437503], [-129.62602539062493, 54.23027343750002], [-129.7949707031249, 54.23613281249999], [-129.89843749999994, 54.22636718749993], [-130.08422851562503, 54.18139648437503], [-130.29033203124993, 54.270361328125034], [-130.39677734375002, 54.35166015625006], [-130.4302734375, 54.42099609374998], [-130.39345703125005, 54.47963867187502], [-130.38862304687507, 54.5393554687501], [-130.37001953125, 54.62001953125002], [-130.3504882812499, 54.6553222656251], [-130.3072265624999, 54.700292968750034], [-130.21894531249995, 54.7302734375001], [-130.14086914062503, 54.822753906250114], [-130.10864257812503, 54.8872558593751], [-129.94853515624993, 55.08105468749997], [-129.89013671874994, 55.16464843749995], [-129.78076171875003, 55.2804687500001], [-129.56064453124995, 55.46254882812508], [-129.63012695312497, 55.45224609374992], [-129.66665039062505, 55.436669921875136], [-129.70131835937502, 55.43857421874998], [-129.73417968749993, 55.45800781250003], [-129.76547851562492, 55.49824218750007], [-129.79516601562503, 55.559570312500114], [-129.81191406249997, 55.532617187500136], [-129.81562, 55.41757812499998], [-129.83774414062492, 55.31909179687497], [-129.87714843749995, 55.25063476562508], [-129.98520507812492, 55.111474609375136], [-130.04848632812494, 55.05727539062511], [-130.09179687499997, 55.10776367187509], [-130.05839843749993, 55.19477539062507], [-129.99584960937497, 55.264062500000136], [-129.98515624999993, 55.3588378906251], [-130.04404296875003, 55.47192382812503], [-130.07998046875005, 55.56289062500008], [-130.09296875000004, 55.631835937500114], [-130.09467773437495, 55.694775390625125], [-130.08510742187494, 55.751708984375], [-130.06035156249996, 55.81372070312503], [-130.02031249999987, 55.88076171875002], [-130.02509765624995, 55.8882324218751], [-130.01406249999997, 55.950537109375006], [-130.02290039062495, 56.01450195312509], [-130.05595703124996, 56.0652343750001], [-130.09785156249995, 56.10927734375002], [-130.21469726562486, 56.0828125], [-130.41313476562487, 56.12250976562507], [-130.47709960937496, 56.230566406250034], [-130.649072265625, 56.26367187500003], [-130.74169921875006, 56.340820312500114], [-130.9302246093749, 56.37861328125001], [-131.0829101562499, 56.40483398437502], [-131.19941406249995, 56.44921875], [-131.335791015625, 56.501220703125114], [-131.47187, 56.55673828125006], [-131.57509765625002, 56.5988281250001], [-131.65151367187494, 56.59609375000008], [-131.82426757812496, 56.58999023437508], [-131.8331054687499, 56.68481445312503], [-131.88598632812494, 56.74213867187498], [-131.86616210937495, 56.792822265625006], [-131.96249999999986, 56.81870117187495], [-132.1042968749999, 56.85678710937509], [-132.062890625, 56.95336914062503], [-132.03154296874993, 57.02656250000004], [-132.1570312499999, 57.048193359375006], [-132.33798828124992, 57.07944335937498], [-132.27939453124998, 57.14536132812506], [-132.23217773437494, 57.198535156250074], [-132.30166015625005, 57.2763183593751], [-132.44248046874986, 57.40673828125003], [-132.55048828124995, 57.499902343749994], [-132.6915039062499, 57.64511718750009], [-132.81552734374992, 57.77270507812497], [-132.91684570312486, 57.8770019531251], [-133.00141601562495, 57.948974609375], [-133.12041015624996, 58.07773437499995], [-133.27529296875, 58.22285156250004], [-133.42255859374995, 58.33706054687502], [-133.40112304687494, 58.41088867187497], [-133.54638671874997, 58.50346679687499], [-133.67392578124992, 58.597167968750085], [-133.8207519531249, 58.70502929687504], [-133.96572265625005, 58.75786132812496], [-134.06918945312492, 58.79550781249998], [-134.21850585937503, 58.849902343750045], [-134.29697265624995, 58.89848632812502], [-134.32963867187505, 58.93969726562506], [-134.36352539062491, 58.968750000000114], [-134.39306640625, 59.009179687499994], [-134.41020507812493, 59.05625], [-134.44077148437492, 59.08535156250005], [-134.62197265624997, 59.1553222656251], [-134.67724609374997, 59.19926757812499], [-134.80239257812508, 59.25], [-134.90722656249994, 59.2711914062501], [-134.94375, 59.28828125000001], [-135.07128906249994, 59.44145507812496], [-135.05083007812496, 59.49604492187507], [-135.03666992187493, 59.550683593749994], [-135.05102539062491, 59.57866210937502], [-135.26079101562502, 59.6950195312501], [-135.36787109374998, 59.743310546874994], [-135.47592773437486, 59.793261718750045], [-135.70258789062504, 59.72875976562506], [-135.9346679687499, 59.662646484375074], [-136.09716796874994, 59.6383789062501], [-136.3218261718749, 59.604833984375034], [-136.24711914062496, 59.532910156250125], [-136.27797851562494, 59.48032226562506], [-136.34785156249995, 59.456054687500085], [-136.46635742187493, 59.459082031250006], [-136.46674804687495, 59.27993164062508], [-136.57875976562494, 59.15224609375002], [-136.81328125000002, 59.15004882812511], [-136.93930664062492, 59.10610351562502], [-137.12622070312491, 59.04096679687507], [-137.2775390624999, 58.988183593749994], [-137.43857421874995, 58.903125], [-137.52089843749994, 58.91538085937506], [-137.48417968749993, 58.99121093750006], [-137.54370117187494, 59.119433593750074], [-137.59331054687493, 59.22626953124998], [-137.69663085937495, 59.281152343749994], [-137.87055664062495, 59.37358398437499], [-138.00112304687497, 59.442919921875074], [-138.18745117187493, 59.54194335937501], [-138.317626953125, 59.611132812500074], [-138.45361328124997, 59.683398437500045], [-138.63227539062504, 59.77827148437501], [-138.70546874999997, 59.90131835937504], [-138.86875, 59.94575195312501], [-139.04345703124997, 59.99326171874992], [-139.18515624999986, 60.083593750000034], [-139.13696289062494, 60.17270507812506], [-139.07924804687497, 60.279443359375136], [-139.07924804687497, 60.3437011718751], [-139.23476562499997, 60.339746093749994], [-139.46796875000004, 60.33369140625001], [-139.67631835937505, 60.32832031249998], [-139.83066406249992, 60.25288085937507], [-139.97329101562497, 60.183154296875074], [-140.19692382812497, 60.237500000000125], [-140.45283203125004, 60.29970703125002], [-140.5254394531249, 60.21835937499995], [-140.76274414062505, 60.25913085937509], [-141.00214843750004, 60.300244140625125], [-141.00214843750004, 60.592431640625136], [-141.00214843750004, 60.884667968749994], [-141.00214843750004, 61.176855468750006], [-141.00214843750004, 61.46904296875002], [-141.00214843750004, 61.761279296875045], [-141.00214843750004, 62.053466796875085], [-141.00214843750004, 62.345703125000114], [-141.00214843750004, 62.637890625000125], [-141.00214843750004, 62.930078125000136], [-141.00214843750004, 63.22226562499998], [-141.00214843750004, 63.51445312499999], [-141.00214843750004, 63.80668945312502], [-141.00214843750004, 64.09887695312506], [-141.00214843750004, 64.39111328125009], [-141.00214843750004, 64.6833007812501], [-141.00214843750004, 64.97553710937513], [-141.00214843750004, 65.26772460937514], [-141.00214843750004, 65.55991210937498], [-141.00214843750004, 65.8521484375], [-141.00214843750004, 66.14433593750002], [-141.00214843750004, 66.43652343750006], [-141.00214843750004, 66.72875976562509], [-141.00214843750004, 67.0209472656251], [-141.00214843750004, 67.31313476562511], [-141.00214843750004, 67.60537109375014], [-141.00214843750004, 67.89755859374998], [-141.00214843750004, 68.18974609374999], [-141.00214843750004, 68.48198242187502], [-141.00214843750004, 68.77416992187506], [-141.00214843750004, 69.06635742187507], [-141.00214843750004, 69.3585937500001], [-141.00214843750004, 69.65078125000011], [-140.86000976562497, 69.63525390624997], [-140.405126953125, 69.60249023437504], [-139.97661132812493, 69.62172851562505], [-139.18154296874997, 69.51552734375008], [-138.68989257812495, 69.31679687500011], [-138.29101562499997, 69.21904296875007], [-138.12836914062495, 69.15195312500009], [-137.86943359374987, 69.09282226562496], [-137.25996093749998, 68.96411132812503], [-137.07041015624992, 68.95087890624998], [-136.71733398437493, 68.88916015625003], [-136.49868164062505, 68.89731445312509], [-136.12236328124993, 68.88222656250002], [-135.86665039062498, 68.83261718750006], [-135.36215820312486, 68.69643554687502], [-135.258837890625, 68.68432617187503], [-135.23120117187503, 68.69428710937513], [-135.40693359374995, 68.828955078125], [-135.43457031249997, 68.84199218750001], [-135.63798828124993, 68.89223632812511], [-135.876318359375, 68.9169921875], [-135.89472656249993, 68.92670898437504], [-135.93901367187487, 68.9741699218751], [-135.92475585937493, 68.99262695312495], [-135.87285156249993, 69.00102539062507], [-135.69521484375005, 69.000634765625], [-135.58999023437494, 69.00825195312513], [-135.575537109375, 69.02695312500003], [-135.65126953124997, 69.03129882812502], [-135.74262695312495, 69.04941406249998], [-135.84970703124992, 69.08139648437492], [-135.91020507812487, 69.11147460937502], [-135.6914550781249, 69.31118164062502], [-135.61494140625004, 69.291015625], [-135.49956054687487, 69.337158203125], [-135.29282226562486, 69.30786132812506], [-135.2549804687499, 69.32382812499995], [-135.22978515624993, 69.4251953125], [-135.19902343749993, 69.449609375], [-135.1408203124999, 69.46782226562496], [-134.85288085937495, 69.4858886718751], [-134.4938476562499, 69.467919921875], [-134.45683593749993, 69.47763671875], [-134.4912109374999, 69.54531250000011], [-134.49536132812506, 69.57192382812502], [-134.47368164062487, 69.6328125], [-134.45146484374987, 69.6654785156251], [-134.40893554687494, 69.68178710937502], [-134.24204101562495, 69.66884765625005], [-134.18989257812498, 69.638818359375], [-134.13403320312497, 69.58725585937495], [-134.07749023437492, 69.557861328125], [-133.89995117187487, 69.52822265625002], [-133.87978515624997, 69.50771484375011], [-133.94746093749995, 69.42949218749996], [-134.01840820312495, 69.38847656249996], [-134.16503906249997, 69.28056640625002], [-134.17431640624991, 69.25283203125005], [-133.94804687499993, 69.30131835937496], [-133.69404296875004, 69.36840820312497], [-133.475927734375, 69.40537109375003], [-133.2936523437499, 69.41215820312499], [-133.16313476562496, 69.43388671874999], [-133.0844238281249, 69.47065429687501], [-133.02827148437495, 69.50825195312504], [-132.91533203125002, 69.62963867187506], [-132.84033203124994, 69.6506835937501], [-132.5268066406249, 69.64326171875001], [-132.45234374999993, 69.64692382812504], [-132.40390625, 69.65874023437496], [-132.41274414062497, 69.67407226562506], [-132.47895507812495, 69.69287109374997], [-132.56835937500003, 69.69814453125], [-132.57060546874996, 69.70668945312514], [-132.53754882812495, 69.72656250000009], [-132.48847656249993, 69.73808593749996], [-132.33398437499997, 69.75180664062509], [-132.232421875, 69.70815429687508], [-132.16342773437498, 69.70498046875014], [-131.93413085937496, 69.75346679687507], [-131.58183593749996, 69.88212890624999], [-131.44091796875003, 69.91791992187501], [-131.31894531249995, 69.92416992187503], [-131.21586914062493, 69.90078125000005], [-131.13637695312497, 69.90688476562505], [-131.03183593749992, 69.97949218750011], [-130.99062, 70.01811523437499], [-130.92617187500005, 70.05161132812506], [-130.66547851562495, 70.12705078124998], [-130.49843749999997, 70.14316406250006], [-130.39638671874994, 70.12924804687506], [-130.27495117187487, 70.09799804687509], [-130.17495117187497, 70.08588867187513], [-130.04331054687495, 70.09506835937503], [-129.944970703125, 70.09091796875006], [-129.89804687499992, 70.10615234374998], [-129.730078125, 70.19208984375007], [-129.675634765625, 70.19296875000009], [-129.62299804687504, 70.16762695312508], [-129.53842773437495, 70.10517578125013], [-129.5381835937499, 70.07392578124998], [-129.64829101562495, 69.9977539062501], [-130.45883789062486, 69.77998046874995], [-130.70854492187493, 69.68598632812501], [-130.83208007812487, 69.65146484375006], [-130.96010742187497, 69.63203125000001], [-131.207958984375, 69.61577148437507], [-131.30634765624995, 69.5966308593751], [-131.47294921874987, 69.57949218749997], [-131.8627929687499, 69.54936523437505], [-131.9377929687499, 69.5347167968751], [-131.9887695312499, 69.51762695312499], [-132.128759765625, 69.40234375000011], [-132.19682617187502, 69.3646972656251], [-132.33076171874995, 69.30795898437509], [-132.48120117187506, 69.2731445312501], [-132.68671874999998, 69.25986328125006], [-132.8174804687499, 69.20576171875004], [-132.9679687499999, 69.10141601562509], [-133.08945312499986, 69.02875976562504], [-133.22822265625, 68.96713867187509], [-133.378955078125, 68.88666992187504], [-133.41831054687492, 68.84428710937493], [-133.37338867187492, 68.78847656250011], [-133.34838867187494, 68.76987304687506], [-133.1968261718749, 68.73984374999998], [-133.138037109375, 68.74658203125011], [-133.19218750000002, 68.776513671875], [-133.31953124999995, 68.81972656250008], [-133.33666992187497, 68.83525390625005], [-133.30400390624987, 68.84741210937506], [-132.7060058593749, 68.81489257812498], [-132.57763671874997, 68.84780273437514], [-132.53266601562504, 68.87563476562511], [-132.54223632812506, 68.88994140625002], [-132.70434570312503, 68.89589843749997], [-132.739111328125, 68.92246093750006], [-132.76469726562487, 68.97246093749993], [-132.7701171875, 69.01215820312504], [-132.75546874999998, 69.0416015625], [-132.71894531249998, 69.07919921875], [-132.54516601562494, 69.140625], [-132.358056640625, 69.16694335937513], [-132.21396484374995, 69.20166015625009], [-132.134375, 69.23447265625003], [-131.91962890624995, 69.29052734375009], [-131.83339843750005, 69.3359863281251], [-131.7869140624999, 69.37128906250001], [-131.78105468749993, 69.38886718750004], [-131.82016601562503, 69.40161132812497], [-131.78837890625002, 69.43198242187495], [-131.6317871093749, 69.45908203124995], [-131.56293945312493, 69.46137695312507], [-131.34291992187497, 69.43540039062492], [-131.3030273437499, 69.41508789062505], [-131.32470703124997, 69.36118164062509], [-131.2938964843749, 69.36372070312507], [-131.20903320312493, 69.43217773437499], [-131.1617187499999, 69.45498046875002], [-131.11284179687487, 69.45947265625003], [-131.06342773437504, 69.45068359375003], [-131.01342773437497, 69.4287109375], [-130.98627929687504, 69.36289062500009], [-130.98198242187496, 69.25327148437495], [-130.97065429687495, 69.20908203125], [-130.91430664062503, 69.28486328124998], [-130.87504882812505, 69.32001953125004], [-130.66069335937496, 69.48129882812503], [-130.51596679687486, 69.56967773437492], [-130.35361328124992, 69.65581054687507], [-130.1176269531249, 69.720068359375], [-129.57211914062486, 69.82670898437507], [-129.26484374999998, 69.85541992187507], [-129.10913085937497, 69.88193359374995], [-129.03291015624998, 69.90498046875004], [-128.98432617187504, 69.93344726562498], [-128.89892578124994, 69.96616210937506], [-128.88369140625005, 69.96347656250003], [-128.91679687499996, 69.89487304687509], [-128.93862304687505, 69.875], [-129.13833007812508, 69.83251953125], [-129.15791015624995, 69.80009765624999], [-129.1362304687499, 69.75004882812507], [-129.10170898437508, 69.71704101562511], [-129.05434570312502, 69.70107421875005], [-128.9714355468749, 69.71240234375006], [-128.85302734375003, 69.7510253906251], [-128.705517578125, 69.81015625000006], [-128.38671874999997, 69.96015625000007], [-128.35917968749996, 69.98759765624999], [-128.27861328124987, 70.10810546875001], [-128.09584960937497, 70.16132812500004], [-127.76494140624995, 70.221875], [-127.68378906249994, 70.26035156249995], [-127.97402343750001, 70.29291992187501], [-128.03417968749991, 70.31533203125014], [-128.04365234374998, 70.32875976562502], [-127.98891601562492, 70.36313476562492], [-128.12148437499994, 70.39736328124997], [-128.17011718749998, 70.41845703125], [-128.16806640625, 70.47978515625007], [-128.12729492187486, 70.523828125], [-128.04047851562504, 70.56640624999994], [-127.99101562499992, 70.57382812500003], [-127.86162109375002, 70.54907226562497], [-127.75283203125007, 70.51713867187505], [-127.37685546874994, 70.36875], [-127.22597656249992, 70.29614257812497], [-127.13847656249996, 70.23935546874995], [-126.9268066406249, 70.06171874999998], [-126.8334960937499, 69.95908203125003], [-126.75869140624994, 69.853369140625], [-126.68491210937492, 69.77709960937509], [-126.61215820312493, 69.73032226562498], [-126.25043945312495, 69.54526367187492], [-126.06381835937495, 69.46708984374999], [-125.90742187499998, 69.41855468750006], [-125.72778320312497, 69.37998046875], [-125.52495117187495, 69.35156250000009], [-125.38676757812496, 69.34921874999995], [-125.17187, 69.42797851562503], [-125.166845703125, 69.4797851562501], [-125.26157226562493, 69.56616210937511], [-125.35693359374991, 69.62597656250003], [-125.3455078124999, 69.662451171875], [-125.21938476562505, 69.73237304687504], [-125.227880859375, 69.75673828125002], [-125.20117187499999, 69.82880859374995], [-125.1140136718749, 69.8150390625], [-125.0795898437499, 69.81782226562504], [-125.03100585937496, 69.8442871093751], [-124.96826171874996, 69.894384765625], [-124.88916015624991, 69.93579101562509], [-124.79365234374991, 69.968505859375], [-124.767919921875, 69.99003906249996], [-124.86259765625002, 70.00551757812508], [-124.9200195312499, 70.0055664062501], [-124.96259765624995, 70.01259765625011], [-124.99038085937494, 70.02661132812511], [-124.95244140624993, 70.041748046875], [-124.74511718749997, 70.08017578125], [-124.70634765624989, 70.11699218750005], [-124.63994140624995, 70.14145507812506], [-124.55502929687488, 70.15122070312509], [-124.50258789062495, 70.14111328125], [-124.44448242187492, 70.110595703125], [-124.44150390624993, 70.06191406250002], [-124.46718749999992, 69.98256835937502], [-124.47192382812491, 69.91850585937493], [-124.40693359374991, 69.76743164062506], [-124.3493652343749, 69.73452148437511], [-124.12460937499995, 69.6899902343751], [-124.13847656250002, 69.65317382812506], [-124.39838867187504, 69.49384765625013], [-124.45390624999989, 69.45483398437497], [-124.48134765624997, 69.42514648437498], [-124.47207031249995, 69.40004882812502], [-124.42617187499992, 69.37944335937507], [-124.33808593749991, 69.36484374999995], [-124.11171875, 69.35888671874997], [-124.04965820312495, 69.37285156249999], [-123.60913085937491, 69.37744140625003], [-123.5284179687499, 69.38935546874995], [-123.46044921874991, 69.42001953125], [-123.361474609375, 69.49663085937496], [-123.248974609375, 69.52001953125011], [-123.2136718749999, 69.54150390625006], [-123.14448242187493, 69.63247070312511], [-123.11040039062492, 69.73813476562498], [-123.07661132812495, 69.78247070312511], [-123.02578125, 69.81000976562504], [-122.95668945312495, 69.81884765625006], [-122.78540039062496, 69.80844726562509], [-122.7048828124999, 69.81738281250011], [-122.3875, 69.80844726562509], [-122.07006835937499, 69.81616210937506], [-121.741845703125, 69.797509765625], [-121.53110351562496, 69.77578125], [-121.33623046874996, 69.74155273437495], [-120.96245117187502, 69.66040039062511], [-120.81464843749993, 69.61684570312514], [-120.29252929687496, 69.42055664062511], [-120.13999023437488, 69.38056640625013], [-119.8528320312499, 69.34233398437499], [-118.86870117187496, 69.25717773437503], [-118.74487304687496, 69.23427734375], [-118.4855957031249, 69.14487304687506], [-118.30698242187492, 69.0927246093751], [-118.09521484374994, 69.0429199218751], [-117.8303222656249, 68.99990234375002], [-117.31127929687503, 68.93491210937492], [-117.22695312499998, 68.913427734375], [-117.13173828124995, 68.90712890625014], [-117.02573242187493, 68.91596679687498], [-116.549951171875, 68.87880859375005], [-116.42456054687503, 68.88061523437506], [-116.33408203124989, 68.87363281250006], [-116.22270507812495, 68.84682617187511], [-116.05947265625, 68.83701171875006], [-116.06523437500002, 68.85541992187507], [-116.25161132812497, 68.95791015625], [-116.2434082031249, 68.9740722656251], [-116.16674804687491, 68.975341796875], [-115.9360839843749, 68.95810546875003], [-115.88325195312497, 68.98730468750011], [-115.80634765624994, 68.98662109374999], [-115.63115234374995, 68.97255859375014], [-115.44228515624994, 68.94091796875009], [-115.2398437499999, 68.89184570312503], [-114.99375, 68.85004882812504], [-114.62016601562496, 68.74609375], [-114.41386718749993, 68.65957031250014], [-114.21816406249995, 68.5520507812501], [-114.11083984374993, 68.47734375], [-114.09204101562491, 68.43540039062495], [-114.05112304687493, 68.41464843749998], [-113.98818359375, 68.41499023437507], [-113.96440429687495, 68.39907226562502], [-114.02080078124989, 68.30649414062498], [-114.05322265624991, 68.28339843750007], [-114.09594726562491, 68.26679687500007], [-114.27475585937493, 68.2478515625001], [-114.76528320312494, 68.27021484375004], [-114.85219726562498, 68.19526367187507], [-115.12705078124992, 68.13203124999995], [-115.17592773437494, 68.10439453125002], [-115.18676757812493, 68.08417968749998], [-115.16708984375, 68.01855468750011], [-115.20185546874998, 67.99843750000011], [-115.42685546874989, 67.92353515625013], [-115.43447265624994, 67.90234375000006], [-115.28847656249995, 67.87167968750003], [-115.13320312499994, 67.819189453125], [-115.01118164062504, 67.80639648437506], [-114.85673828125002, 67.81357421875009], [-114.66289062499996, 67.7952148437501], [-114.42939453125, 67.751220703125], [-114.26704101562495, 67.73115234375001], [-114.17573242187491, 67.73500976562508], [-114.05107421875002, 67.72690429687503], [-113.89321289062501, 67.70688476562503], [-113.68193359374995, 67.69995117187506], [-113.21499023437494, 67.70175781250006], [-113.07495117187493, 67.686669921875], [-112.87944335937489, 67.67988281250004], [-112.50302734374993, 67.6819335937501], [-112.43515624999988, 67.68476562499998], [-112.3145507812499, 67.71958007812495], [-112.23671874999995, 67.731103515625], [-112.1013183593749, 67.73173828124996], [-111.71088867187494, 67.75732421875], [-111.57573242187493, 67.75683593750009], [-111.45068359374996, 67.77617187499993], [-111.29082031249989, 67.81523437500007], [-111.1921875, 67.82255859374999], [-111.15478515624997, 67.7982421875], [-111.08740234374993, 67.78764648437496], [-110.9900390624999, 67.79082031250007], [-110.80488281249993, 67.83232421875002], [-110.37197265624992, 67.95419921874998], [-110.21625976562491, 67.95400390625011], [-110.10195312499998, 67.99223632812507], [-110.07392578124995, 67.99291992187506], [-110.04248046874994, 67.97719726562505], [-109.93652343750003, 67.88789062499995], [-109.90424804687494, 67.87353515625006], [-109.83134765624992, 67.86582031250009], [-109.76015625, 67.82011718750002], [-109.68603515624999, 67.75175781249993], [-109.63037109374991, 67.73271484374996], [-109.22431640624997, 67.72978515625007], [-109.08125, 67.7107421875001], [-109.03803710937504, 67.69116210937503], [-108.99448242187496, 67.63710937500002], [-108.96767578125001, 67.53237304687502], [-108.94990234374994, 67.49394531249999], [-108.890966796875, 67.43808593749998], [-108.85200195312497, 67.42197265625009], [-108.81518554687503, 67.4375], [-108.71513671874989, 67.58281249999999], [-108.68022460937489, 67.60620117187494], [-108.61333007812493, 67.59804687500008], [-108.59291992187495, 67.59086914062502], [-108.49150390624989, 67.48330078125014], [-108.34697265624993, 67.40341796875003], [-107.98872070312495, 67.2563964843751], [-107.930517578125, 67.20249023437495], [-107.90917968749991, 67.16254882812498], [-107.92944335937496, 67.12680664062498], [-107.99130859374995, 67.09516601562513], [-108.08842773437493, 67.0697753906251], [-108.2208007812499, 67.0505859375001], [-108.34433593749993, 67.05751953125008], [-108.45908203124995, 67.09042968750003], [-108.49604492187493, 67.09228515625006], [-108.45527343749997, 67.06298828124994], [-108.21816406249998, 66.94125976562503], [-108.15766601562491, 66.89262695312507], [-108.10146484374992, 66.86035156250006], [-108.04960937500002, 66.8443359375], [-108.00175781249995, 66.81801757812514], [-107.95795898437491, 66.78129882812493], [-107.76093749999991, 66.68369140624995], [-107.70488281249996, 66.63710937500005], [-107.48032226562495, 66.49179687499995], [-107.37368164062498, 66.43466796875003], [-107.2913574218749, 66.40180664062507], [-107.25947265624998, 66.39853515624995], [-107.27807617187496, 66.42490234374998], [-107.56445312499994, 66.618505859375], [-107.71035156250001, 66.74003906250007], [-107.73085937499992, 66.76918945312514], [-107.74023437499996, 66.81376953124999], [-107.74599609374998, 66.96147460937505], [-107.7250976562499, 66.98413085937506], [-107.62617187499991, 67.003125], [-107.49921874999998, 66.93618164062505], [-107.45126953124989, 66.92675781250009], [-107.41884765624995, 66.93071289062502], [-107.40209960937491, 66.94799804687497], [-107.32919921874989, 66.93198242187509], [-107.2001953124999, 66.88256835937497], [-107.15649414062497, 66.88173828124997], [-107.25375976562489, 66.97636718750007], [-107.32333984374993, 67.02255859375006], [-107.34785156249995, 67.05478515625006], [-107.28315429687493, 67.103271484375], [-107.31845703124992, 67.127783203125], [-107.48237304687493, 67.19912109374997], [-107.56748046874993, 67.27304687499995], [-107.6440429687499, 67.38476562499997], [-107.65092773437489, 67.42822265625011], [-107.63837890624991, 67.47421875000006], [-107.64990234374994, 67.51127929687499], [-107.7530273437499, 67.5868652343751], [-107.8650878906249, 67.6392089843751], [-107.95405273437491, 67.7], [-107.97211914062504, 67.73203125], [-107.9583984375, 67.81860351562506], [-107.89091796875002, 67.85634765625011], [-107.7630859375, 67.90683593750009], [-107.7286132812499, 67.95883789062503], [-107.7874511718749, 68.0125], [-107.79829101562498, 68.03691406249996], [-107.76103515624993, 68.03217773437504], [-107.509375, 68.05913085937505], [-107.44619140624992, 68.04965820312506], [-107.35112304687492, 68.06118164062511], [-107.22412109374997, 68.09379882812499], [-107.1248046874999, 68.10844726562496], [-106.99365234374991, 68.10629882812506], [-106.92255859374991, 68.11416015625005], [-106.83564453124997, 68.12861328124998], [-106.79072265624997, 68.14482421875007], [-106.71098632812489, 68.20678710937509], [-106.66840820312491, 68.21601562500001], [-106.53486328124998, 68.20927734375007], [-106.4594726562499, 68.19565429687495], [-106.42426757812491, 68.20058593750008], [-106.42949218749992, 68.28847656250005], [-106.40439453124995, 68.31933593750011], [-106.27124023437491, 68.38320312499997], [-106.1321289062499, 68.38989257812509], [-106.03930664062491, 68.40732421875009], [-105.93305664062494, 68.44311523437511], [-105.85693359374997, 68.47514648437505], [-105.78120117187491, 68.52656250000004], [-105.7501953125, 68.59228515625011], [-105.77431640624994, 68.61113281250005], [-105.93222656249995, 68.63652343750007], [-106.02714843750002, 68.62333984375005], [-106.23730468749993, 68.57656250000011], [-106.45805664062496, 68.51645507812495], [-106.54331054687492, 68.46059570312511], [-106.56665039062497, 68.38896484375007], [-106.60849609374988, 68.35737304687504], [-106.780419921875, 68.38730468750009], [-106.85371093749993, 68.38681640625], [-106.94580078125003, 68.37436523437495], [-107.043310546875, 68.34682617187502], [-107.14619140624991, 68.30419921875006], [-107.29814453124996, 68.29643554687507], [-107.49912109374996, 68.32353515625007], [-107.61933593749994, 68.3310546875], [-107.74150390624996, 68.2857421875], [-107.73422851562489, 68.25205078125009], [-107.67763671875, 68.20292968750002], [-107.73417968749989, 68.17373046875011], [-108.02719726562489, 68.16293945312503], [-108.10458984374993, 68.16928710937509], [-108.26103515625002, 68.14990234375006], [-108.3228027343749, 68.15410156250002], [-108.36791992187503, 68.17753906249999], [-108.68657226562493, 68.27734375000009], [-108.71811523437488, 68.29746093750009], [-108.64091796874996, 68.37851562500009], [-108.34575195312496, 68.597802734375], [-108.31347656249996, 68.61079101562498], [-107.76635742187496, 68.64892578125011], [-107.43593750000005, 68.68886718750008], [-106.83066406249993, 68.80947265625014], [-106.71347656249995, 68.81948242187505], [-106.32426757812489, 68.89946289062499], [-106.16445312499992, 68.91987304687507], [-106.0156738281249, 68.9060546875001], [-105.79794921874995, 68.86479492187505], [-105.68559570312489, 68.82817382812505], [-105.60605468749993, 68.78242187500013], [-105.53984374999995, 68.71865234375011], [-105.45693359374994, 68.57807617187507], [-105.42861328124994, 68.458251953125], [-105.3774414062499, 68.413818359375], [-105.19497070312494, 68.33037109375005], [-105.10131835937496, 68.29799804687502], [-105.04360351562492, 68.2878906250001], [-104.993798828125, 68.30742187499999], [-104.9598144531249, 68.31054687500009], [-104.93671874999991, 68.30302734374999], [-104.91196289062493, 68.25048828125011], [-104.87944335937496, 68.24526367187511], [-104.76962890624989, 68.25175781250002], [-104.65317382812488, 68.23007812500003], [-104.63637695312492, 68.21391601562496], [-104.6611328124999, 68.148779296875], [-104.62817382812503, 68.12148437500014], [-104.48681640624991, 68.06318359374998], [-104.350732421875, 68.04121093750013], [-104.19355468749994, 68.03120117187504], [-103.90156249999997, 68.04106445312507], [-103.65722656249993, 68.06909179687511], [-103.47412109374993, 68.11503906250005], [-103.32324218749991, 68.06381835937509], [-103.02177734374996, 67.94023437499996], [-102.84155273437493, 67.8527343750001], [-102.69199218749992, 67.81157226562505], [-102.38911132812504, 67.76220703125011], [-102.32036132812489, 67.73564453125005], [-102.20976562499992, 67.73271484374996], [-102.05722656249992, 67.75332031250008], [-101.8836425781249, 67.74531250000004], [-101.68886718749992, 67.70864257812505], [-101.55498046874992, 67.69316406250007], [-101.09638671874993, 67.76235351562514], [-101.02641601562489, 67.7656738281251], [-100.855615234375, 67.79897460937514], [-100.74560546874996, 67.80908203125009], [-100.61611328125005, 67.80825195312508], [-100.51962890624993, 67.81840820312502], [-100.45610351562496, 67.83945312500003], [-100.21293945312489, 67.83857421875004], [-99.77294921874996, 67.81484375], [-99.47226562499989, 67.78408203125014], [-99.2935546874999, 67.74531250000004], [-99.14687, 67.72363281250009], [-99.03217773437504, 67.71884765624998], [-98.92045898437502, 67.72578124999998], [-98.81171874999997, 67.74443359375005], [-98.69726562499991, 67.77973632812513], [-98.45278320312494, 67.7979003906251], [-98.41210937499991, 67.80717773437505], [-98.41713867187497, 67.82646484375007], [-98.4678222656249, 67.855810546875], [-98.6064941406249, 67.91142578124996], [-98.70356445312495, 67.96572265625002], [-98.72221679687496, 68.0001953125001], [-98.72006835937495, 68.04199218750009], [-98.68984374999994, 68.06611328125004], [-98.63154296875004, 68.0725585937501], [-98.53984374999993, 68.04663085937497], [-98.41479492187503, 67.98842773437502], [-98.06254882812493, 67.76967773437505], [-97.97763671874995, 67.73862304687492], [-97.93076171875, 67.71079101562495], [-97.60742187500003, 67.63105468750004], [-97.45493164062486, 67.61699218750002], [-97.27426757812492, 67.66625976562511], [-97.19443359375, 67.69692382812514], [-97.15541992187505, 67.72641601562492], [-97.15717773437495, 67.75483398437504], [-97.13984374999998, 67.79624023437495], [-97.15805664062486, 67.82192382812502], [-97.20654296874989, 67.85507812500003], [-97.33613281249993, 67.90136718750006], [-97.54663085937491, 67.96074218750007], [-97.73911132812495, 67.97817382812505], [-97.91333007812491, 67.95356445312501], [-98.11049804687494, 67.90302734375004], [-98.19252929687494, 67.92299804687502], [-98.43837890624994, 68.06469726562511], [-98.50029296874993, 68.11767578125006], [-98.50024414062503, 68.13227539062501], [-98.38608398437495, 68.11533203124995], [-98.38085937499994, 68.13247070312505], [-98.44916992187493, 68.20078124999995], [-98.49125976562496, 68.22363281249997], [-98.63300781249998, 68.33115234375003], [-98.65048828124989, 68.36352539062506], [-98.56225585937494, 68.37084960937511], [-98.52221679687497, 68.3833984375], [-98.46855468749996, 68.3821289062501], [-98.21855468750002, 68.31743164062507], [-98.09052734375004, 68.34633789062511], [-97.7942382812499, 68.38759765625], [-97.91103515624997, 68.44951171874999], [-97.93886718750005, 68.51044921874995], [-97.9250976562499, 68.523681640625], [-97.82856445312495, 68.53276367187507], [-97.63955078125, 68.48198242187502], [-97.54804687499993, 68.474951171875], [-97.48110351562505, 68.49516601562505], [-97.41035156249993, 68.49653320312498], [-97.33579101562495, 68.479150390625], [-97.2659179687499, 68.45292968749996], [-97.13598632812491, 68.37797851562499], [-97.07177734374997, 68.33286132812503], [-96.9995605468749, 68.26494140625005], [-96.97670898437497, 68.25541992187505], [-96.62817382812491, 68.25029296875007], [-96.43066406249991, 68.3105957031251], [-96.4349609375, 68.29008789062502], [-96.48022460937489, 68.24282226562497], [-96.72514648437496, 68.0612304687501], [-96.72207031250005, 68.03876953124998], [-96.59218749999997, 68.04843749999998], [-96.5312988281249, 68.06313476562514], [-96.49370117187487, 68.08496093749997], [-96.46118164062491, 68.13583984375003], [-96.43935546874991, 68.15087890625009], [-96.07558593749997, 68.23652343750013], [-95.9703125, 68.24912109375], [-96.03603515625, 68.15776367187505], [-96.17133789062493, 67.83168945312505], [-96.19882812499995, 67.71782226562496], [-96.22846679687495, 67.67919921875009], [-96.37138671875002, 67.55385742187514], [-96.36914062499991, 67.50976562500003], [-96.21284179687495, 67.40429687500003], [-96.18500976562498, 67.37558593750003], [-96.16923828124996, 67.28896484375], [-96.14145507812489, 67.27182617187503], [-96.01259765624994, 67.27089843750002], [-95.8791015624999, 67.29848632812514], [-95.71992187499998, 67.31679687500014], [-95.695166015625, 67.29873046875002], [-95.78251953124996, 67.19379882812513], [-95.77768554687495, 67.18461914062505], [-95.62641601562504, 67.21157226562502], [-95.55703124999994, 67.21528320312507], [-95.52871093749994, 67.20917968750007], [-95.41591796875005, 67.15556640624999], [-95.40458984374996, 67.115576171875], [-95.40698242187491, 67.05610351562498], [-95.41889648437504, 67.01323242187493], [-95.45698242187498, 66.98945312500007], [-95.50224609374996, 66.97988281250008], [-95.559375, 66.97275390625003], [-95.61064453125002, 66.97568359374992], [-95.76865234374989, 66.96669921875005], [-95.86181640625003, 66.97817382812508], [-95.95405273437498, 67.010888671875], [-96.01953124999991, 67.01875], [-96.09545898437503, 66.99355468750002], [-96.21557617187497, 66.99770507812497], [-96.35043945312492, 67.07001953124995], [-96.40424804687495, 67.063232421875], [-96.42255859374995, 67.05175781249997], [-96.42026367187495, 67.03618164062499], [-96.359521484375, 66.98940429687505], [-95.88530273437502, 66.74135742187497], [-95.8132812499999, 66.69013671875001], [-95.79736328124994, 66.61655273437495], [-95.7875488281249, 66.616796875], [-95.74316406249991, 66.69042968750009], [-95.77211914062505, 66.72607421875006], [-96.01611328125003, 66.87045898437498], [-96.04536132812495, 66.92314453125007], [-96.03686523437489, 66.9375], [-95.97236328124998, 66.95224609374995], [-95.62504882812493, 66.91625976562509], [-95.49038085937494, 66.92412109375007], [-95.39965820312503, 66.94946289062509], [-95.35410156249989, 66.98071289062506], [-95.3210937499999, 67.15249023437508], [-95.25874023437493, 67.26254882812492], [-95.29560546874995, 67.3610351562501], [-95.38955078124991, 67.51782226562506], [-95.46337890624994, 67.61020507812506], [-95.63369140624991, 67.70385742187494], [-95.65048828124986, 67.73745117187505], [-95.46069335937503, 68.02138671875], [-95.42651367187489, 68.04526367187506], [-95.38408203124996, 68.05556640625002], [-95.23471679687489, 68.05971679687497], [-95.12587890624994, 68.08330078124999], [-94.955224609375, 68.05029296875], [-94.86103515624998, 68.04165039062502], [-94.74443359374993, 68.07089843749995], [-94.4853027343749, 68.19008789062508], [-94.38383789062502, 68.22700195312513], [-94.25478515624994, 68.29682617187495], [-94.09814453124991, 68.39941406250009], [-93.92773437499991, 68.47382812499995], [-93.65170898437489, 68.54311523437505], [-93.48300781249989, 68.59887695312503], [-93.44892578124998, 68.61889648437503], [-93.60581054687486, 68.62368164062511], [-93.64394531249991, 68.63310546875007], [-93.676171875, 68.68598632812501], [-93.65986328124995, 68.78374023437505], [-93.66279296874993, 68.83818359374993], [-93.68144531249993, 68.88725585937499], [-93.71577148437498, 68.93105468750002], [-93.76572265624995, 68.96958007812506], [-93.8113281249999, 68.99267578124997], [-93.85244140624994, 69.00034179687495], [-93.88071289062492, 68.99682617187511], [-93.89609374999995, 68.98217773437497], [-93.93808593749989, 68.8890625], [-93.99155273437495, 68.8206054687501], [-94.06489257812495, 68.78476562500006], [-94.21694335937494, 68.7605468750001], [-94.4783203124999, 68.74277343750003], [-94.58676757812489, 68.77553710937514], [-94.600439453125, 68.80322265625011], [-94.56254882812502, 68.91166992187499], [-94.4756347656249, 68.95815429687505], [-94.23662109374996, 69.04975585937507], [-94.08364257812497, 69.12309570312507], [-94.08115234374989, 69.13583984375], [-94.22182617187505, 69.13637695312511], [-94.25537109374997, 69.15146484375], [-94.28496093749996, 69.24160156250005], [-94.27675781250005, 69.27524414062498], [-94.254736328125, 69.31376953125002], [-94.15634765624995, 69.34174804687504], [-93.85439453125, 69.3763671875], [-93.61948242187492, 69.41699218750009], [-93.61264648437495, 69.40283203125006], [-93.80097656249993, 69.28090820312508], [-93.820458984375, 69.25263671875001], [-93.74853515624991, 69.2261230468751], [-93.56748046874989, 69.29687], [-93.45058593750005, 69.3551757812501], [-93.43095703124996, 69.37504882812507], [-93.53706054687498, 69.38232421874994], [-93.54287109374994, 69.40644531250007], [-93.52241210937493, 69.45068359375003], [-93.5322753906249, 69.48090820312495], [-93.64980468750005, 69.51904296875009], [-93.79438476562493, 69.49785156250005], [-93.9150878906249, 69.45766601562502], [-94.015283203125, 69.4467285156251], [-94.16318359375, 69.44594726562514], [-94.2708007812499, 69.45512695312505], [-94.33813476562494, 69.47426757812502], [-94.41918945312503, 69.51704101562504], [-94.51391601562497, 69.58344726562507], [-94.63383789062496, 69.64965820312506], [-94.67626953124991, 69.65688476562511], [-94.71269531249996, 69.6494140625], [-94.78925781249993, 69.58544921875011], [-94.82250976562494, 69.577783203125], [-95.29208984374995, 69.66738281250011], [-95.49125976562493, 69.71762695312506], [-95.58759765624995, 69.755712890625], [-95.70742187499994, 69.77822265625014], [-95.85068359374989, 69.78510742187513], [-95.96494140624989, 69.80278320312499], [-96.05014648437495, 69.83115234375009], [-96.11909179687504, 69.871875], [-96.17177734374994, 69.92495117187502], [-96.26938476562492, 69.99179687499995], [-96.49238281249998, 70.12490234375008], [-96.5513671875, 70.21030273437506], [-96.55957031249989, 70.24301757812498], [-96.54560546874998, 70.32724609375009], [-96.33657226562494, 70.47016601562507], [-96.29770507812492, 70.51137695312511], [-96.22641601562489, 70.54169921875007], [-96.12275390624998, 70.56123046874995], [-96.04814453124987, 70.5670898437501], [-95.87861328124998, 70.54897460937514], [-95.98017578124998, 70.5932128906251], [-95.98818359374994, 70.61684570312511], [-95.88632812499986, 70.69428710937507], [-95.90639648437505, 70.69775390625006], [-96.18642578125, 70.63828125000003], [-96.25800781249993, 70.64228515625013], [-96.35888671874994, 70.6786621093751], [-96.54892578124995, 70.80874023437511], [-96.55107421874993, 70.88974609375009], [-96.49130859374992, 71.00234375000014], [-96.47041015624993, 71.0697265625], [-96.52475585937492, 71.12705078124995], [-96.50444335937493, 71.14316406250003], [-96.44545898437491, 71.1592285156251], [-96.42075195312495, 71.17646484375007], [-96.44658203124996, 71.23989257812502], [-96.4056640625, 71.27363281249998], [-96.27133789062489, 71.339111328125], [-96.13964843749997, 71.39638671875011], [-96.06201171874997, 71.41386718749993], [-95.99443359374996, 71.41064453125], [-95.92407226562491, 71.39306640624997], [-95.85087890624993, 71.36108398437503], [-95.72539062499996, 71.32817382812507], [-95.63256835937494, 71.31879882812513], [-95.5642578124999, 71.33676757812503], [-95.44750976562491, 71.46005859374995], [-95.40625, 71.49165039062498], [-95.44541015624992, 71.50537109375011], [-95.67421875, 71.50405273437502], [-95.77338867187495, 71.51425781249998], [-95.83037109375002, 71.52607421875007], [-95.87231445312494, 71.57314453125005], [-95.83774414062492, 71.59824218750003], [-95.61591796874993, 71.685400390625], [-95.51166992187493, 71.77680664062498], [-95.20122070312493, 71.90371093750008], [-94.88696289062503, 71.96337890624997], [-94.73486328124994, 71.98295898437507], [-94.61113281249996, 71.98686523437496], [-94.55708007812495, 71.97895507812513], [-94.49106445312492, 71.91552734375], [-94.4788085937499, 71.84858398437504], [-94.30834960937491, 71.76489257812506], [-94.17124023437486, 71.75844726562497], [-94.0859863281249, 71.77114257812508], [-93.81020507812494, 71.76625976562514], [-93.74628906249998, 71.742822265625], [-93.75087890624994, 71.71665039062498], [-93.781640625, 71.67431640625006], [-93.762841796875, 71.63803710937495], [-93.5758789062499, 71.56870117187503], [-93.40747070312497, 71.52070312500004], [-93.25634765624991, 71.46083984375011], [-93.0312988281249, 71.335693359375], [-92.982568359375, 71.30034179687507], [-92.94868164062493, 71.26210937500011], [-92.89018554687502, 71.12236328125007], [-92.88271484375, 71.06933593750009], [-92.90419921874994, 70.91606445312496], [-92.92197265625, 70.88710937500011], [-92.98144531249994, 70.8522460937501], [-92.96088867187493, 70.83813476562506], [-92.78300781249993, 70.7981445312501], [-92.64169921874992, 70.7187988281251], [-92.56748046874989, 70.69321289062503], [-92.38847656249993, 70.65043945312502], [-92.35581054687495, 70.63427734375011], [-92.31538085937498, 70.60751953124998], [-92.21445312499992, 70.49291992187509], [-92.0491210937499, 70.3896484375], [-92.03720703124986, 70.3673828125001], [-92.07260742187489, 70.31875000000014], [-92.04736328124991, 70.3033203125], [-91.98354492187505, 70.28554687500011], [-91.92622070312493, 70.29477539062503], [-91.8755371093749, 70.33115234374998], [-91.82041015624995, 70.341650390625], [-91.76083984374989, 70.32626953125006], [-91.71562, 70.29921875000005], [-91.65405273437497, 70.23295898437505], [-91.56406249999995, 70.1782714843751], [-91.57163085937489, 70.16157226562507], [-91.61611328124997, 70.14785156250014], [-91.85859374999998, 70.13266601562506], [-91.99497070312489, 70.14321289062508], [-92.12104492187498, 70.169921875], [-92.208642578125, 70.19750976562511], [-92.29033203125002, 70.23984375000003], [-92.32050781250004, 70.2353515625], [-92.36328124999997, 70.20083007812508], [-92.4546875, 70.15043945312493], [-92.51186523437494, 70.10385742187503], [-92.44575195312498, 70.08315429687508], [-92.12700195312496, 70.08452148437502], [-92.05771484374989, 70.07143554687502], [-91.976708984375, 70.03867187500009], [-92.06904296874995, 69.98398437499995], [-92.28476562499995, 69.89213867187507], [-92.75092773437498, 69.71391601562502], [-92.88779296874989, 69.66821289062511], [-92.85454101562493, 69.65488281250006], [-92.80263671874994, 69.65146484375006], [-92.64282226562497, 69.65927734375006], [-92.49345703125002, 69.68320312499998], [-92.31166992187494, 69.67290039062499], [-92.23076171874996, 69.6533691406251], [-92.25830078124997, 69.63432617187496], [-92.20908203124989, 69.60332031250005], [-91.91196289062495, 69.53125], [-91.72412109374994, 69.54560546875001], [-91.53237304687497, 69.6150390625001], [-91.38422851562498, 69.64946289062502], [-91.20180664062494, 69.64477539062494], [-91.15087890624997, 69.63715820312501], [-91.17031249999994, 69.62031250000013], [-91.30502929687492, 69.581298828125], [-91.42685546874986, 69.53793945312503], [-91.43994140624997, 69.52568359375002], [-91.28813476562496, 69.54321289062506], [-90.95019531250003, 69.51547851562509], [-90.7857421875, 69.5085937500001], [-90.666650390625, 69.51552734375008], [-90.55493164062497, 69.50449218749998], [-90.45053710937492, 69.47543945312509], [-90.4155761718749, 69.45698242187507], [-90.51328125, 69.44511718749996], [-90.60556640624989, 69.4453125], [-90.68398437499997, 69.42773437499997], [-90.74853515624997, 69.39248046875008], [-90.79458007812494, 69.34672851562499], [-90.82211914062495, 69.29047851562507], [-90.89228515625004, 69.26728515624995], [-91.00498046874989, 69.277099609375], [-91.04921874999994, 69.29301757812505], [-91.02485351562495, 69.31523437499996], [-91.057763671875, 69.31840820312507], [-91.14785156249997, 69.30258789062506], [-91.21796875000004, 69.30209960937495], [-91.23720703125005, 69.28554687500014], [-90.74477539062491, 69.10590820312513], [-90.5873046875, 68.946875], [-90.47900390624994, 68.88115234374999], [-90.468359375, 68.86376953125], [-90.53896484375, 68.81958007812506], [-90.54252929687502, 68.78598632812498], [-90.51015625, 68.68886718750008], [-90.52524414062495, 68.61127929687507], [-90.57363281250005, 68.47470703124998], [-90.52832031249997, 68.4322265625], [-90.42304687499993, 68.39472656250001], [-90.36005859374995, 68.34672851562502], [-90.31723632812495, 68.33032226562503], [-90.28525390625, 68.29165039062497], [-90.24775390624993, 68.267431640625], [-90.20478515625004, 68.25747070312511], [-90.17441406249989, 68.27021484375004], [-90.15683593749995, 68.30551757812495], [-90.11640624999998, 68.33857421875013], [-90.0053222656249, 68.39804687499998], [-89.89770507812491, 68.49077148437505], [-89.87949218749995, 68.5215332031251], [-89.89658203124995, 68.59438476562502], [-89.88422851562493, 68.62558593749998], [-89.78310546874994, 68.73593750000006], [-89.75083007812492, 68.81245117187504], [-89.72016601562498, 68.93159179687495], [-89.6666015625, 69.01459960937501], [-89.55200195312491, 69.08491210937513], [-89.35190429687492, 69.2270019531251], [-89.27954101562491, 69.25546875000003], [-89.19848632812503, 69.26948242187507], [-89.05673828124992, 69.26611328125009], [-88.95351562499994, 69.22041015625001], [-88.81455078124986, 69.13588867187502], [-88.6377441406249, 69.05883789062494], [-88.31552734374992, 68.954443359375], [-88.22353515625, 68.91503906249997], [-88.041357421875, 68.81171875000007], [-87.96435546874994, 68.70927734374996], [-87.91152343749994, 68.564697265625], [-87.86596679687497, 68.47763671875003], [-87.827734375, 68.44809570312506], [-87.81030273437491, 68.40415039062498], [-87.81357421874986, 68.34570312499997], [-87.82792968749996, 68.29995117187508], [-87.85327148437497, 68.26689453125007], [-87.89267578125, 68.24814453125], [-87.99096679687494, 68.242041015625], [-88.11113281250002, 68.25117187500007], [-88.14580078124996, 68.26601562500008], [-88.20908203124989, 68.33486328125008], [-88.23525390625, 68.33906250000004], [-88.34697265624993, 68.28828125000001], [-88.36069335937486, 68.25986328125006], [-88.31962890624993, 68.16577148437509], [-88.32509765625, 67.98876953125009], [-88.313818359375, 67.95034179687508], [-88.19589843749986, 67.76582031249995], [-87.99716796874989, 67.62568359375001], [-87.49912109374995, 67.355322265625], [-87.47080078124995, 67.32460937500014], [-87.41791992187493, 67.21416015625002], [-87.39194335937495, 67.19106445312511], [-87.35937, 67.17724609374997], [-87.32026367187493, 67.17285156249994], [-87.26625976562494, 67.18383789062506], [-87.08320312499993, 67.2677734375001], [-86.92392578124992, 67.35625], [-86.8127929687499, 67.40239257812499], [-86.74985351562489, 67.40610351562503], [-86.68203124999991, 67.42231445312498], [-86.60937, 67.45083007812511], [-86.56079101562491, 67.48212890625007], [-86.53642578125002, 67.51616210937507], [-86.50351562499989, 67.64946289062507], [-86.47553710937504, 67.71313476562506], [-86.39804687499989, 67.80009765625002], [-86.36967773437496, 67.82480468750009], [-85.98447265625, 68.04536132812507], [-85.9525878906249, 68.0724609375001], [-85.78886718749996, 68.32802734375011], [-85.731103515625, 68.44501953125013], [-85.722802734375, 68.51547851562509], [-85.74487304687494, 68.57827148437511], [-85.73383789062493, 68.630126953125], [-85.68979492187492, 68.67094726562499], [-85.64316406249992, 68.69970703124997], [-85.56245117187493, 68.72880859375005], [-85.51777343749995, 68.76982421875005], [-85.49106445312495, 68.77397460937502], [-85.42504882812491, 68.77426757812506], [-85.33808593750004, 68.74628906250004], [-85.2750976562499, 68.74135742187511], [-84.86757812499994, 68.77333984375005], [-84.8674804687499, 68.79038085937498], [-85.10664062499995, 68.84404296875007], [-85.10434570312495, 68.87094726562503], [-85.08339843749994, 68.90791015625013], [-85.00830078124991, 68.94921875], [-84.91606445312496, 68.962255859375], [-84.8953124999999, 68.98852539062503], [-84.892724609375, 69.02099609375006], [-84.86220703125, 69.07397460937503], [-84.89003906249997, 69.09277343750011], [-85.11352539062503, 69.16586914062509], [-85.24262695312504, 69.162744140625], [-85.27548828124989, 69.17231445312498], [-85.38676757812493, 69.23188476562504], [-85.42753906249996, 69.31840820312507], [-85.43193359374987, 69.353857421875], [-85.41640624999991, 69.41088867187509], [-85.40224609375005, 69.42675781250011], [-85.40917968749994, 69.45249023437503], [-85.43720703124998, 69.48823242187504], [-85.4395019531249, 69.51992187500011], [-85.41596679687493, 69.54775390625008], [-85.43012695312495, 69.58066406250003], [-85.48203124999986, 69.61875], [-85.50244140624994, 69.65151367187508], [-85.44790039062494, 69.74814453125006], [-85.44609375000002, 69.77778320312504], [-85.4974609375, 69.8190429687501], [-85.53481445312497, 69.83505859375], [-85.50737304687487, 69.84526367187493], [-85.41513671874992, 69.84951171875011], [-85.30498046874996, 69.83613281250004], [-85.17680664062496, 69.80512695312513], [-85.01982421874996, 69.80478515625003], [-84.83398437499991, 69.83505859375], [-84.64511718749989, 69.84970703124995], [-84.31879882812504, 69.84370117187498], [-84.24165039062504, 69.83500976562499], [-83.91718749999993, 69.74536132812503], [-83.66533203124996, 69.69970703124994], [-83.55170898437498, 69.70395507812492], [-82.99135742187505, 69.68588867187498], [-82.74560546874991, 69.69511718750007], [-82.61835937499993, 69.69106445312514], [-82.374169921875, 69.64179687500007], [-82.39023437499989, 69.60087890625007], [-82.49570312499989, 69.53222656250011], [-82.63330078125003, 69.51811523437507], [-82.75483398437493, 69.49438476562506], [-82.64204101562495, 69.4583984375], [-82.30986328124996, 69.41000976562509], [-82.23183593749994, 69.33256835937493], [-82.20815429687491, 69.297021484375], [-82.24677734374998, 69.26499023437503], [-82.22753906249997, 69.24887695312495], [-82.150537109375, 69.24887695312495], [-81.95180664062491, 69.27607421874998], [-81.73217773437503, 69.25810546875005], [-81.41230468749995, 69.19814453125008], [-81.37783203125005, 69.18564453125003], [-81.32158203124996, 69.13891601562511], [-81.3286621093749, 69.11992187499996], [-81.61142578124995, 69.00302734374995], [-81.75834960937493, 68.95673828125013], [-81.95166015624997, 68.90908203125], [-81.95791015624991, 68.88364257812498], [-81.68691406250005, 68.87895507812507], [-81.47602539062498, 68.865576171875], [-81.38090820312496, 68.85004882812504], [-81.33129882812489, 68.827978515625], [-81.26352539062495, 68.78061523437495], [-81.2524902343749, 68.74316406250011], [-81.25913085937495, 68.6924316406251], [-81.28154296874987, 68.65722656250003], [-81.52685546874994, 68.55595703124999], [-81.63950195312489, 68.52436523437513], [-81.83139648437489, 68.48686523437496], [-81.91484374999993, 68.4587890625001], [-82.00649414062505, 68.462646484375], [-82.10634765625005, 68.49853515625003], [-82.21015624999998, 68.50625], [-82.39721679687497, 68.47758789062502], [-82.49873046874995, 68.47861328125006], [-82.54863281249993, 68.46860351562498], [-82.55268554687504, 68.44648437500007], [-82.46416015624993, 68.382421875], [-82.41298828125, 68.357177734375], [-82.3928710937499, 68.33833007812507], [-82.43066406249994, 68.30659179687501], [-82.42270507812492, 68.2965820312501], [-82.39252929687493, 68.28525390625009], [-82.22241210937489, 68.145263671875], [-82.18657226562496, 68.13442382812511], [-82.15131835937498, 68.1396972656251], [-82.07763671874997, 68.17968750000009], [-82.03388671875004, 68.19594726562502], [-82.0125, 68.19389648437496], [-82.01337890624995, 68.17338867187505], [-82.09189453124995, 68.05146484375007], [-82.10214843749992, 68.018896484375], [-82.10048828124994, 67.98984374999995], [-82.06254882812502, 67.92817382812501], [-81.97646484374997, 67.86201171875001], [-81.8693359374999, 67.80249023437497], [-81.70859375, 67.72236328124998], [-81.49277343749992, 67.63691406249998], [-81.41230468749995, 67.59536132812505], [-81.2943359375, 67.497412109375], [-81.27011718749995, 67.45991210937498], [-81.30107421874996, 67.35698242187499], [-81.38720703124991, 67.18857421874995], [-81.44272460937495, 67.09287109375], [-81.46757812499996, 67.0698730468751], [-81.63007812499993, 67.00200195312496], [-81.72236328124998, 66.98608398437509], [-81.87446289062498, 66.98793945312511], [-81.92553710937489, 66.97470703125009], [-82.00507812499993, 66.92041015625003], [-82.11318359374994, 66.82509765625], [-82.19833984374986, 66.76464843750011], [-82.26054687499993, 66.73911132812506], [-82.37475585937503, 66.70942382812504], [-82.55366210937495, 66.62138671875005], [-82.64150390624991, 66.5875], [-82.94887695312494, 66.55083007812507], [-83.19877929687493, 66.43149414062509], [-83.2983886718749, 66.39213867187507], [-83.40644531249998, 66.37124023437508], [-83.52309570312494, 66.36875], [-83.59028320312504, 66.38784179687508], [-83.62836914062498, 66.460693359375], [-83.65107421874998, 66.48461914062509], [-83.7392089843749, 66.534375], [-83.92021484375002, 66.67905273437506], [-83.99804687499997, 66.72851562500003], [-84.05, 66.73950195312494], [-84.15444335937494, 66.73168945312497], [-84.20800781250003, 66.73632812500003], [-84.32436523437494, 66.78178710937505], [-84.36625976562493, 66.81113281249998], [-84.36108398437494, 66.82255859374999], [-84.27255859374995, 66.839208984375], [-84.3103515624999, 66.86274414062501], [-84.46606445312494, 66.92744140625004], [-84.53066406249994, 66.96132812500002], [-84.53847656249994, 66.97280273437505], [-84.69257812499998, 67.01660156250009], [-84.84575195312502, 67.02871093750008], [-85.04003906249997, 66.95605468750003], [-85.11372070312498, 66.90693359375013], [-85.11127929687493, 66.89091796875007], [-85.01826171874998, 66.87207031249997], [-84.97797851562504, 66.88125], [-84.89902343749995, 66.92656250000005], [-84.85737304687498, 66.94067382812509], [-84.73774414062504, 66.93359375000006], [-84.63857421875, 66.90234375000009], [-84.60253906250003, 66.87514648437505], [-84.58950195312494, 66.85664062500001], [-84.31894531249989, 66.71181640625], [-84.223046875, 66.68247070312506], [-84.18310546874991, 66.64785156250011], [-84.15273437500005, 66.59023437500011], [-84.09423828125003, 66.52622070312503], [-83.964208984375, 66.420556640625], [-83.82583007812497, 66.28999023437504], [-83.79755859374998, 66.23847656250001], [-83.86904296875, 66.2135742187501], [-83.90507812499996, 66.21176757812509], [-84.0116699218749, 66.23120117187497], [-84.29306640624995, 66.29179687500005], [-84.3242675781249, 66.290673828125], [-84.39843749999991, 66.25874023437507], [-84.459375, 66.18623046875004], [-84.47841796875005, 66.17929687500003], [-84.628076171875, 66.20771484374998], [-84.90839843749998, 66.27133789062498], [-85.09619140624997, 66.32534179687514], [-85.19150390624992, 66.3696777343751], [-85.30683593749998, 66.44033203125011], [-85.44223632812495, 66.53735351562497], [-85.603857421875, 66.56826171875005], [-85.79174804687491, 66.53295898437497], [-86.06323242187497, 66.52036132812506], [-86.63320312499991, 66.53134765625], [-86.708154296875, 66.52304687500009], [-86.73710937499996, 66.51088867187511], [-86.68862304687494, 66.45747070312504], [-86.70014648437498, 66.44277343750008], [-86.73837890624995, 66.432861328125], [-86.74697265624991, 66.41708984375], [-86.68510742187502, 66.36040039062499], [-86.5847656249999, 66.32192382812514], [-86.30102539062491, 66.26992187500002], [-86.11308593749993, 66.22529296875001], [-86.00083007812486, 66.18681640624999], [-85.96425781249997, 66.15444335937514], [-85.95874023437491, 66.11904296875002], [-86.0122558593749, 66.04848632812505], [-86.04287109375, 66.02255859375009], [-86.7019531249999, 65.67055664062514], [-86.9531738281249, 65.5282714843751], [-87.08110351562496, 65.44082031250005], [-87.1937988281249, 65.383056640625], [-87.2914550781249, 65.35483398437495], [-87.45288085937503, 65.33896484375009], [-87.678125, 65.33535156250005], [-87.96997070312503, 65.34892578124999], [-88.12099609374997, 65.39458007812505], [-88.39487304687492, 65.51621093749995], [-88.5867187499999, 65.58764648437511], [-88.67246093749989, 65.61157226562503], [-88.74394531249996, 65.67875976562505], [-88.80849609374997, 65.691650390625], [-88.94614257812495, 65.70302734375], [-89.08774414062492, 65.73896484375004], [-89.42036132812493, 65.86079101562498], [-89.59267578124994, 65.90932617187511], [-89.7494140625, 65.93603515625006], [-89.89047851562495, 65.94082031250014], [-89.94399414062494, 65.93359375000009], [-89.84775390624995, 65.87226562500001], [-89.88969726562487, 65.86855468749997], [-90.00380859374997, 65.882568359375], [-90.11660156249994, 65.88242187499995], [-90.31625976562492, 65.92636718750003], [-90.51328125, 65.92050781250009], [-90.65546874999993, 65.92934570312511], [-90.8257324218749, 65.95385742187511], [-91.00952148437503, 65.96572265625005], [-91.30546875000002, 65.96455078124998], [-91.41152343749994, 65.959375], [-91.42724609374994, 65.94790039062497], [-91.28515624999997, 65.89443359375011], [-91.04111328124989, 65.82983398437509], [-91.07363281249994, 65.88554687500007], [-91.06494140624994, 65.89990234374997], [-90.98344726562496, 65.91923828124999], [-90.59682617187497, 65.8848144531251], [-90.15864257812495, 65.81269531249995], [-90.04755859374998, 65.80561523437513], [-89.92407226562497, 65.78027343750011], [-89.78798828124994, 65.73671875000011], [-89.60039062500002, 65.6477539062501], [-89.24174804687496, 65.44638671874995], [-89.12656249999995, 65.39560546875009], [-88.97402343749994, 65.34829101562502], [-88.1978027343749, 65.27988281249995], [-87.92954101562486, 65.28032226562505], [-87.39194335937495, 65.2605468750001], [-87.10800781249992, 65.2248046875001], [-87.02753906249995, 65.19809570312498], [-87.00268554687497, 65.10859375000004], [-87.02851562499998, 65.06362304687514], [-87.1829101562499, 64.92680664062496], [-87.28051757812491, 64.82617187500006], [-87.88500976562494, 64.40043945312502], [-87.96357421874998, 64.30249023437497], [-87.99755859374997, 64.2439453125001], [-88.10561523437497, 64.18330078125001], [-88.37895507812496, 64.08925781250005], [-88.65302734374993, 64.009375], [-88.81772460937489, 63.99223632812499], [-88.96440429687493, 64.01123046874994], [-89.05961914062487, 64.03442382812506], [-89.20063476562493, 64.11376953125006], [-89.20942382812495, 64.10541992187513], [-89.10766601562491, 63.98110351562502], [-89.13154296874998, 63.96850585937494], [-89.21455078124993, 63.984130859375114], [-89.40351562499995, 64.03999023437513], [-89.46474609375, 64.0296875], [-89.5009277343749, 64.01450195312509], [-89.55131835937496, 64.01479492187514], [-89.61582031249995, 64.030615234375], [-89.73271484374996, 64.07695312500002], [-89.763818359375, 64.09951171875], [-89.79208984374989, 64.16826171874996], [-89.8113281249999, 64.18056640625], [-90.04165039062494, 64.14086914062509], [-90.08002929687493, 64.12773437500007], [-89.98559570312497, 64.10019531249995], [-89.95356445312493, 64.08061523437505], [-89.86059570312491, 63.9788085937501], [-89.85571289062497, 63.9569824218751], [-89.92187, 63.94355468750001], [-90.14189453125002, 63.981982421875045], [-90.16816406250004, 63.978759765625085], [-90.05961914062496, 63.877490234375074], [-90.01796875, 63.82934570312503], [-90.01342773437497, 63.80429687500006], [-90.15473632812498, 63.68964843749998], [-90.24531250000004, 63.64189453125002], [-90.36884765624998, 63.62441406250002], [-90.44624023437493, 63.6361816406251], [-90.53349609374996, 63.66542968750002], [-90.59638671874998, 63.66127929687508], [-90.63500976562503, 63.62377929687506], [-90.7068359374999, 63.596923828125114], [-90.81191406249991, 63.580908203125034], [-90.94565429687489, 63.58784179687504], [-91.10805664062494, 63.61782226562511], [-91.53881835937494, 63.72558593750003], [-91.674658203125, 63.742236328125045], [-91.92602539062497, 63.75708007812506], [-91.95600585937495, 63.77231445312495], [-91.95380859374993, 63.78681640625007], [-91.91943359374994, 63.80058593750002], [-91.92890624999993, 63.812451171875125], [-91.98222656249996, 63.82241210937502], [-92.03759765624994, 63.813037109375074], [-92.094873046875, 63.784423828125114], [-92.19521484375, 63.77597656249998], [-92.33842773437496, 63.787646484375045], [-92.5500976562499, 63.82954101562507], [-92.97021484374997, 63.93764648437505], [-93.42968749999997, 64.02880859374997], [-93.69633789062493, 64.14716796875013], [-93.5967285156249, 64.04057617187507], [-93.60488281249997, 64.0044921875], [-93.65581054687493, 63.97280273437511], [-93.66416015624995, 63.941406250000114], [-93.55981445312491, 63.865283203125074], [-93.41557617187493, 63.837988281250006], [-93.27021484374998, 63.840869140625074], [-93.26621093749989, 63.8533203125001], [-93.32685546874998, 63.87226562500007], [-93.38027343749994, 63.90004882812505], [-93.40585937499992, 63.941210937500074], [-93.37851562499992, 63.94848632812497], [-93.25043945312504, 63.926904296874994], [-93.16591796875005, 63.90175781250002], [-92.52924804687493, 63.76123046875], [-92.33920898437495, 63.73491210937496], [-92.1964843749999, 63.7078125], [-92.15688476562491, 63.691699218750045], [-92.20502929687495, 63.656787109375045], [-92.46103515624989, 63.569433593750006], [-92.46508789062491, 63.55507812500011], [-92.28955078124994, 63.562988281250114], [-92.0766113281249, 63.639990234375006], [-91.95683593749993, 63.67563476562498], [-91.84184570312496, 63.69755859374999], [-91.68603515624991, 63.6597167968751], [-91.4893066406249, 63.562207031250125], [-91.33007812499997, 63.50683593750006], [-91.1030761718749, 63.47587890624996], [-90.97006835937489, 63.442773437500136], [-90.74658203124994, 63.35156250000003], [-90.71127929687492, 63.30405273437495], [-90.69072265624993, 63.110546875000125], [-90.69858398437492, 63.06386718750005], [-90.72763671874989, 63.017480468749994], [-90.7778808593749, 62.97163085937507], [-90.87119140625, 62.945947265624994], [-91.00771484374994, 62.940429687500114], [-91.114892578125, 62.92158203125001], [-91.349462890625, 62.818896484375045], [-91.44897460937503, 62.804052734375034], [-91.86962890624994, 62.834716796875085], [-92.0342285156249, 62.86342773437505], [-92.11005859374998, 62.86171875000008], [-92.15209960937491, 62.83906250000007], [-92.19614257812492, 62.828808593750125], [-92.3612792968749, 62.81938476562496], [-92.38813476562495, 62.80087890624992], [-92.37773437499987, 62.77241210937498], [-92.34526367187502, 62.733837890625125], [-92.30517578125003, 62.71166992187506], [-92.24316406249991, 62.68364257812502], [-92.14912109374993, 62.66528320312503], [-91.9558593749999, 62.644775390625114], [-91.93583984374993, 62.59238281250009], [-91.94443359374989, 62.57548828125002], [-92.00786132812493, 62.54052734375], [-92.08115234374995, 62.54409179687502], [-92.20722656249995, 62.58535156250008], [-92.26953124999994, 62.586962890625045], [-92.32407226562486, 62.56459960937511], [-92.39999999999989, 62.557226562500034], [-92.49736328124993, 62.56484375], [-92.55141601562491, 62.546728515625034], [-92.56220703124998, 62.50288085937498], [-92.59497070312491, 62.470068359375034], [-92.707421875, 62.41821289062494], [-92.76796875, 62.37998046874998], [-92.76596679687492, 62.34995117187509], [-92.70146484374993, 62.32822265625009], [-92.62744140624994, 62.27905273437503], [-92.54404296874992, 62.20229492187502], [-92.52797851562494, 62.16840820312504], [-92.57919921874989, 62.17734375000009], [-92.648095703125, 62.20776367187506], [-92.73476562499997, 62.25971679687498], [-92.86582031249992, 62.306201171875045], [-93.15444335937494, 62.366845703125136], [-93.20537109374993, 62.364941406250125], [-93.17924804687502, 62.34956054687501], [-92.98779296874991, 62.28593750000002], [-92.914453125, 62.244970703125006], [-92.90551757812503, 62.21513671874996], [-93.06586914062493, 62.14975585937498], [-93.07026367187493, 62.127832031250136], [-93.02773437499997, 62.108642578125114], [-93.01625976562494, 62.09267578125008], [-93.07338867187494, 62.060546875000085], [-93.16748046874991, 62.033642578125125], [-93.34975585937494, 62.02978515625006], [-93.36635742187494, 62.014550781250136], [-93.29687, 61.981591796874994], [-93.27343749999994, 61.96108398437508], [-93.3330566406249, 61.93291015625002], [-93.37202148437495, 61.928955078125114], [-93.58178710937494, 61.94204101562511], [-93.52670898437492, 61.87163085937499], [-93.49423828124989, 61.846923828125085], [-93.42993164062491, 61.81210937499992], [-93.31440429687493, 61.779785156250085], [-93.31201171874997, 61.76728515625004], [-93.35234375000002, 61.739550781250074], [-93.42060546874998, 61.705810546875114], [-93.70966796874998, 61.60253906250006], [-93.91274414062497, 61.48144531250006], [-93.94086914062493, 61.44365234375002], [-93.88925781249989, 61.3640625], [-93.88881835937497, 61.34404296874996], [-93.94199218749989, 61.30800781250008], [-94.06074218749993, 61.317822265625125], [-94.08344726562493, 61.3036621093751], [-94.05522460937496, 61.266162109375074], [-94.04995117187494, 61.21127929687509], [-94.06777343749994, 61.1388671875001], [-94.15405273437491, 61.025439453125074], [-94.30869140624989, 60.87099609375005], [-94.42719726562498, 60.73071289062506], [-94.509375, 60.60454101562493], [-94.56889648437487, 60.5419921875], [-94.67875976562487, 60.537695312500006], [-94.76171874999991, 60.498242187500125], [-94.70527343749995, 60.4775390625], [-94.67065429687491, 60.45332031250004], [-94.64677734374993, 60.41640625], [-94.67041015624997, 60.3010742187501], [-94.7416015625, 60.1073730468751], [-94.78579101562494, 59.953320312499955], [-94.77666015624993, 59.47812], [-94.78828124999998, 59.26787109374993], [-94.81953124999995, 59.15131835937501], [-94.870263671875, 59.08798828125006], [-94.95732421874996, 59.068847656250085], [-94.84658203124997, 59.050341796875045], [-94.77617187500002, 59.020605468750006], [-94.74374999999989, 58.97543945312506], [-94.71337890624991, 58.903320312500114], [-94.67338867187493, 58.870117187500085], [-94.62373046875004, 58.875732421875], [-94.57919921874995, 58.8684570312501], [-94.53969726562497, 58.848388671875114], [-94.41923828124996, 58.74550781250011], [-94.28706054687493, 58.716015625000125], [-94.2808105468749, 58.65893554687506], [-94.33261718749989, 58.339111328125085], [-94.33222656249998, 58.297363281250114], [-94.27216796874993, 58.378027343750034], [-94.20893554687493, 58.626367187499994], [-94.12319335937494, 58.73671875000008], [-94.05576171874989, 58.76000976562503], [-93.78002929687494, 58.77255859374992], [-93.48618164062492, 58.74448242187506], [-93.37504882812493, 58.741015625000074], [-93.27812, 58.75639648437502], [-93.1787597656249, 58.72563476562496], [-93.15458984374996, 58.69458007812503], [-93.12651367187502, 58.56440429687498], [-93.10019531249989, 58.48984375000006], [-92.92514648437495, 58.22451171875002], [-92.84174804687493, 58.0758789062501], [-92.73984374999995, 57.84404296874996], [-92.70166015624997, 57.777783203125125], [-92.48964843749994, 57.468603515625034], [-92.44941406249993, 57.384863281250006], [-92.43281249999993, 57.3203125], [-92.439794921875, 57.27504882812502], [-92.47836914062495, 57.20527343750001], [-92.54848632812494, 57.11093749999998], [-92.61411132812489, 57.03901367187507], [-92.67524414062493, 56.98955078124996], [-92.73798828124993, 56.95263671875006], [-92.80239257812497, 56.92832031250009], [-92.7981445312499, 56.921972656250034], [-92.72529296874998, 56.9335449218751], [-92.65097656249995, 56.95830078124999], [-92.5103027343749, 57.02231445312506], [-92.45629882812491, 57.03671874999998], [-92.30336914062491, 57.04584960937504], [-92.29829101562504, 57.02275390624996], [-92.3721191406249, 56.975146484375045], [-92.35571289062491, 56.970605468749994], [-92.24902343749994, 57.00898437500001], [-92.01801757812495, 57.06376953124996], [-91.11127929687498, 57.24121093750006], [-90.89746093750003, 57.25693359375006], [-90.59218749999991, 57.224462890625034], [-90.34482421874989, 57.14907226562511], [-90.07519531249994, 57.05190429687505], [-89.7908203124999, 56.98134765625005], [-89.34233398437502, 56.915429687500136], [-89.21157226562494, 56.883837890625074], [-88.94848632812489, 56.85131835937503], [-88.8264648437499, 56.81425781249993], [-88.67988281249998, 56.72504882812507], [-88.44707031249987, 56.60869140624999], [-88.27133789062486, 56.535693359375045], [-88.07509765624997, 56.46728515624994], [-87.87812, 56.3416015625001], [-87.560888671875, 56.05634765625007], [-87.48242187499991, 56.021289062500045], [-87.28686523437494, 55.97465820312496], [-86.91938476562495, 55.91455078124997], [-86.37695312500003, 55.77324218749996], [-86.13867187499997, 55.717871093750034], [-85.98447265625, 55.695898437500006], [-85.8305175781249, 55.65693359375007], [-85.67666015625, 55.60107421875006], [-85.55932617187491, 55.54018554687508], [-85.47846679687504, 55.474267578124966], [-85.40727539062502, 55.431152343750085], [-85.28271484374994, 55.383300781250085], [-85.21801757812491, 55.348974609375034], [-85.21201171874992, 55.297460937500006], [-85.36201171874993, 55.095458984375085], [-85.3652832031249, 55.07929687499998], [-85.21357421874998, 55.22436523437506], [-85.12885742187495, 55.266210937500034], [-85.06093749999997, 55.285644531250085], [-84.91992187500003, 55.283349609374994], [-84.70576171874993, 55.25922851562504], [-84.51796874999994, 55.25888671874998], [-84.3564941406249, 55.28251953124999], [-84.21894531250004, 55.29311523437502], [-84.10537109375, 55.290820312500074], [-84.0229980468749, 55.2978027343751], [-83.97177734374995, 55.31416015625004], [-83.91059570312493, 55.314648437499955], [-83.66767578124998, 55.26450195312506], [-83.56948242187497, 55.261816406250034], [-83.21435546874991, 55.214599609375], [-82.9862792968749, 55.23139648437507], [-82.94702148437491, 55.22221679687496], [-82.86777343749992, 55.160693359375045], [-82.80068359374994, 55.155908203125136], [-82.6875, 55.16552734374997], [-82.57744140625002, 55.1487304687501], [-82.39326171874998, 55.067822265625125], [-82.30825195312497, 54.99814453124998], [-82.22661132812496, 54.855908203125125], [-82.219384765625, 54.8134765625], [-82.37060546874997, 54.48349609375009], [-82.41806640624986, 54.355810546875034], [-82.42416992187486, 54.2445800781251], [-82.39414062499989, 54.18046875000002], [-82.26357421874994, 54.07299804687497], [-82.239892578125, 54.04482421875008], [-82.16264648437487, 53.88569335937498], [-82.14145507812492, 53.81762695312497], [-82.14999999999989, 53.739550781250074], [-82.19062, 53.61093749999998], [-82.18037109375004, 53.51284179687505], [-82.1461914062499, 53.36459960937506], [-82.15917968749997, 53.26416015625003], [-82.21923828124997, 53.21147460937496], [-82.259912109375, 53.15981445312508], [-82.29160156249995, 53.06611328125001], [-82.29155273437496, 53.03071289062507], [-82.26044921874993, 52.9611328125001], [-82.20268554687496, 52.921679687500074], [-82.10795898437493, 52.8773925781251], [-82.02001953124997, 52.811621093750034], [-81.85927734375, 52.651416015625074], [-81.74233398437497, 52.563623046875136], [-81.5994140624999, 52.432617187500085], [-81.57167968749994, 52.36728515625009], [-81.61152343749995, 52.324072265625006], [-81.66123046874986, 52.29389648437507], [-81.77636718749997, 52.25361328125004], [-81.82788085937489, 52.22421875000009], [-81.81455078124995, 52.21718750000008], [-81.64799804687493, 52.239062500000074], [-81.54951171874995, 52.23676757812498], [-81.46621093749994, 52.204492187500136], [-81.398095703125, 52.14223632812508], [-81.28505859374997, 52.08920898437492], [-81.12719726562497, 52.04541015625006], [-80.96850585937497, 51.972216796875074], [-80.70551757812504, 51.79833984375], [-80.65795898437503, 51.75834960937502], [-80.588037109375, 51.667236328125114], [-80.49584960937494, 51.525097656250125], [-80.44760742187489, 51.432226562500034], [-80.4433105468749, 51.38857421875002], [-80.49550781249997, 51.344677734375125], [-80.67270507812492, 51.264746093750006], [-80.85122070312497, 51.125], [-80.79497070312496, 51.131835937500114], [-80.67724609374997, 51.19086914062507], [-80.47832031249993, 51.30732421874998], [-80.36796875000002, 51.32988281249996], [-80.26567382812496, 51.31635742187504], [-80.10356445312487, 51.282861328125136], [-79.96040039062493, 51.23515625000002], [-79.83623046874996, 51.17333984375003], [-79.651513671875, 51.00781250000006], [-79.45615234374989, 50.87558593749995], [-79.34790039062494, 50.76264648437504], [-79.38071289062489, 50.8345214843751], [-79.45263671874997, 50.9172851562501], [-79.63618164062495, 51.049023437500125], [-79.71445312499992, 51.11757812500005], [-79.73139648437493, 51.150488281250006], [-79.737451171875, 51.186279296875], [-79.72324218749995, 51.25166015625001], [-79.68881835937495, 51.346582031249994], [-79.64296874999994, 51.413525390625125], [-79.5857421874999, 51.452441406250045], [-79.54746093749992, 51.493847656249955], [-79.52802734374995, 51.537695312500006], [-79.49755859374997, 51.569921875], [-79.33867187500002, 51.62817382812497], [-79.29697265624986, 51.622802734375114], [-79.26425781249995, 51.552001953125085], [-79.2261230468749, 51.537304687500125], [-79.15273437499997, 51.52622070312498], [-79.0908691406249, 51.50170898437497], [-79.04052734375003, 51.46376953125005], [-79.005029296875, 51.425341796875045], [-78.98432617187504, 51.38637695312511], [-78.93691406249997, 51.25913085937492], [-78.90317382812495, 51.200292968750034], [-78.89750976562493, 51.27167968750001], [-78.85800781249989, 51.383935546875136], [-78.82744140624996, 51.4299804687501], [-78.73134765624994, 51.497460937499994], [-78.73642578124989, 51.52661132812506], [-78.77631835937493, 51.56577148437506], [-78.97773437499993, 51.733789062499994], [-78.98164062499993, 51.774560546875136], [-78.927880859375, 51.798828125000114], [-78.89111328124997, 51.84511718750011], [-78.871240234375, 51.913427734375006], [-78.82822265624995, 51.96298828124998], [-78.70200195312489, 52.03271484374997], [-78.59331054687496, 52.1396972656251], [-78.53735351562491, 52.21328125], [-78.49165039062495, 52.25209960937508], [-78.44809570312495, 52.26137695312502], [-78.51308593750005, 52.291113281250034], [-78.52607421874993, 52.31069335937511], [-78.52910156249993, 52.39916992187503], [-78.55708007812504, 52.49189453125007], [-78.60058593749994, 52.53510742187501], [-78.723779296875, 52.627734375000045], [-78.74414062499994, 52.65537109374998], [-78.76577148437491, 52.76005859374999], [-78.75361328124993, 52.812402343749994], [-78.72167968749991, 52.856445312500085], [-78.73984374999989, 52.898974609375045], [-78.85410156249989, 52.97607421874994], [-78.8982421874999, 53.043359375], [-78.947119140625, 53.20620117187511], [-78.99204101562492, 53.410351562499955], [-79.04311523437494, 53.56049804687501], [-79.10034179687497, 53.65664062500005], [-79.11313476562489, 53.717187500000136], [-79.08144531249994, 53.74228515625009], [-79.0403320312499, 53.81796875000006], [-79.00317382812497, 53.83657226562511], [-78.945703125, 53.83159179687499], [-78.9443847656249, 53.840234375000136], [-79.0320312499999, 53.881054687500125], [-79.07514648437498, 53.932373046875085], [-79.07329101562496, 53.95141601562506], [-78.99604492187493, 54.00249023437499], [-79.00991210937491, 54.0239746093751], [-79.06713867187494, 54.051953125000125], [-79.241796875, 54.098876953125085], [-79.17880859374995, 54.11694335937503], [-79.138818359375, 54.15722656250006], [-79.14672851562491, 54.16923828125002], [-79.21596679687497, 54.185693359374994], [-79.29565429687497, 54.21684570312496], [-79.35615234374993, 54.26337890625001], [-79.43056640625, 54.33662109375001], [-79.47597656249994, 54.39477539062497], [-79.52065429687497, 54.49155273437498], [-79.5979492187499, 54.601660156250006], [-79.63173828124994, 54.6291015625001], [-79.67041015624991, 54.64682617187498], [-79.71396484375, 54.65498046875004], [-79.71235351562495, 54.6718261718751], [-79.66552734374991, 54.69746093749998], [-78.90922851562502, 54.881494140624994], [-78.84624023437487, 54.908007812500074], [-78.47504882812493, 55.0110351562501], [-78.30361328125, 55.0685546875001], [-78.12885742187493, 55.1513183593751], [-77.89111328124989, 55.236425781250006], [-77.77529296874994, 55.291259765625], [-77.70214843749994, 55.344189453125125], [-77.32495117187494, 55.555517578125006], [-77.16508789062496, 55.66352539062498], [-77.07255859374993, 55.75629882812507], [-76.93808593749989, 55.8672363281251], [-76.76181640624995, 55.99643554687495], [-76.65048828124992, 56.10722656249996], [-76.60405273437496, 56.19956054687495], [-76.54638671874994, 56.35878906250005], [-76.52983398437496, 56.49995117187504], [-76.51962890625, 56.706982421875125], [-76.52558593749998, 56.8917968750001], [-76.5728515625, 57.1812011718751], [-76.60141601562486, 57.27226562499999], [-76.65541992187497, 57.38056640625004], [-76.78627929687497, 57.59858398437504], [-76.80981445312497, 57.65795898437506], [-76.89091796874996, 57.75810546875002], [-77.15678710937496, 58.018896484375034], [-77.48916015625, 58.195312500000114], [-77.55244140624993, 58.23959960937506], [-77.68408203124991, 58.29135742187495], [-77.88413085937489, 58.350732421875136], [-78.01357421874997, 58.39916992187506], [-78.35170898437494, 58.58066406250009], [-78.46298828124986, 58.60244140625008], [-78.5059082031249, 58.64912109375001], [-78.51508789062493, 58.68237304687503], [-78.50229492187489, 58.7690917968751], [-78.48261718749995, 58.829101562500085], [-78.45869140624998, 58.87329101562503], [-78.43051757812492, 58.901757812500136], [-78.24443359374993, 59.03505859375011], [-78.14023437499995, 59.141748046874994], [-78.0676757812499, 59.2001953125], [-77.98764648437495, 59.245507812499994], [-77.84282226562493, 59.30502929687506], [-77.76069335937498, 59.38002929687505], [-77.77944335937497, 59.41040039062503], [-77.84467773437495, 59.44350585937502], [-77.85903320312494, 59.47578125000001], [-77.74902343749991, 59.5581542968751], [-77.73349609374995, 59.580957031250136], [-77.74750976562504, 59.65849609374993], [-77.72617187499995, 59.67587890624992], [-77.59042968749992, 59.68051757812498], [-77.39667968749998, 59.56923828125005], [-77.34907226562495, 59.57895507812509], [-77.41103515624997, 59.609619140625114], [-77.48530273437493, 59.684570312500114], [-77.47456054687504, 59.715673828125034], [-77.33164062499986, 59.79663085937503], [-77.32763671874994, 59.83339843750005], [-77.36840820312491, 59.88437], [-77.37294921874994, 59.925097656250074], [-77.28920898437494, 60.0220214843751], [-77.31181640624993, 60.042382812499994], [-77.5471679687499, 60.06113281250009], [-77.58588867187498, 60.088183593750074], [-77.57216796874994, 60.10097656250002], [-77.46137695312493, 60.13349609375007], [-77.45288085937497, 60.1458007812501], [-77.64863281249998, 60.3625], [-77.6814453124999, 60.427099609375034], [-77.59814453124989, 60.50673828125008], [-77.503564453125, 60.54272460937497], [-77.51557617187504, 60.56318359375004], [-77.63945312499996, 60.566894531250085], [-77.714990234375, 60.577783203124994], [-77.7908203124999, 60.63984375000004], [-77.76123046874991, 60.679052734375034], [-77.734228515625, 60.696972656250125], [-77.66064453124994, 60.789501953124955], [-77.58955078124993, 60.808593750000114], [-77.60302734374991, 60.82519531249994], [-77.8715332031249, 60.7858398437501], [-77.99814453124995, 60.81821289062495], [-78.12246093750005, 60.80961914062499], [-78.18134765624995, 60.81914062499996], [-78.15966796874989, 60.852197265625136], [-77.93417968749989, 61.00263671875004], [-77.8301269531249, 61.0840332031251], [-77.76503906249997, 61.15751953124999], [-77.73061523437497, 61.20639648437498], [-77.72680664062491, 61.230664062500125], [-77.74960937499995, 61.39301757812498], [-77.73618164062495, 61.43735351562498], [-77.64887695312493, 61.47866210937502], [-77.51435546874998, 61.55629882812505], [-77.69843749999998, 61.626416015625125], [-77.81376953124996, 61.69477539062501], [-77.88989257812491, 61.72871093749998], [-77.94755859374993, 61.761865234374994], [-78.02138671874997, 61.8320800781251], [-78.07749023437495, 61.923388671875045], [-78.13715820312493, 62.10737304687504], [-78.14697265624997, 62.20869140625007], [-78.13339843749986, 62.28227539062496], [-78.108593749
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment