{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "rational-surgery",
   "metadata": {},
   "source": [
    "# Using Exotic Map Projections: `useCRS=\"provided\"`\n",
    "\n",
    "Value \"provided\" tells Lets-Plot that the input `SpatialDataset` already contains coordinates in the desired CRS and should not be reprojected any further.\n",
    "\n",
    "This is a workaround for the case when the desired CRS is not naturally supported by Lets-Plot.\n",
    "\n",
    "> Note: at the moment, Lets-Plot only supports **WGS84** CRS and the Mercator projection.\n",
    "\n",
    "For example, if you try to plot a `SpatialDataset` which uses the **Conus Albers** CRS (EPSG:5070), then Lets-Plot will return an error:\n",
    "\n",
    "> Geometry must use WGS84 coordinate reference system but was: NAD83 / Conus Albers.\n",
    "\n",
    "Let's see how can we still plot a map in the **Conus Albers** projection in Lets-Plot.\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "relative-skiing",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "   <div id=\"ZF7Ek7\"></div>\n",
       "   <script type=\"text/javascript\" data-lets-plot-script=\"library\">\n",
       "       if(!window.letsPlotCallQueue) {\n",
       "           window.letsPlotCallQueue = [];\n",
       "       }; \n",
       "       window.letsPlotCall = function(f) {\n",
       "           window.letsPlotCallQueue.push(f);\n",
       "       };\n",
       "       (function() {\n",
       "           var script = document.createElement(\"script\");\n",
       "           script.type = \"text/javascript\";\n",
       "           script.src = \"https://cdn.jsdelivr.net/gh/JetBrains/lets-plot@v4.0.0/js-package/distr/lets-plot.min.js\";\n",
       "           script.onload = function() {\n",
       "               window.letsPlotCall = function(f) {f();};\n",
       "               window.letsPlotCallQueue.forEach(function(f) {f();});\n",
       "               window.letsPlotCallQueue = [];\n",
       "               \n",
       "               \n",
       "           };\n",
       "           script.onerror = function(event) {\n",
       "               window.letsPlotCall = function(f) {};\n",
       "               window.letsPlotCallQueue = [];\n",
       "               var div = document.createElement(\"div\");\n",
       "               div.style.color = 'darkred';\n",
       "               div.textContent = 'Error loading Lets-Plot JS';\n",
       "               document.getElementById(\"ZF7Ek7\").appendChild(div);\n",
       "           };\n",
       "           var e = document.getElementById(\"ZF7Ek7\");\n",
       "           e.appendChild(script);\n",
       "       })();\n",
       "   </script>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "%useLatestDescriptors\n",
    "%use lets-plot"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "mighty-pollution",
   "metadata": {},
   "outputs": [],
   "source": [
    "%use lets-plot-gt"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "hydraulic-spyware",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "Lets-Plot Kotlin API v.4.4.2. Frontend: Notebook with dynamically loaded JS. Lets-Plot JS v.4.0.0."
      ]
     },
     "execution_count": 3,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "LetsPlot.getInfo()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "initial-resident",
   "metadata": {},
   "outputs": [],
   "source": [
    "LetsPlot.theme = themeBW()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "round-peter",
   "metadata": {},
   "source": [
    "#### 1. Load North America `FeatureCollection` from \"natural earth\" Shapefiles\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "hollow-chapel",
   "metadata": {},
   "outputs": [],
   "source": [
    "@file:DependsOn(\"org.geotools:gt-shapefile:[23,)\")\n",
    "@file:DependsOn(\"org.geotools:gt-cql:[23,)\")\n",
    "@file:DependsOn(\"org.geotools:gt-epsg-hsql:[23,)\")\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "suspected-therapist",
   "metadata": {},
   "outputs": [],
   "source": [
    "import org.geotools.data.shapefile.ShapefileDataStoreFactory\n",
    "import org.geotools.data.simple.SimpleFeatureCollection\n",
    "import org.geotools.filter.text.cql2.CQL\n",
    "import java.net.URL\n",
    "\n",
    "val factory = ShapefileDataStoreFactory()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "id": "dying-spending",
   "metadata": {},
   "outputs": [],
   "source": [
    "val worldFeatures : SimpleFeatureCollection = with(\"naturalearth_lowres\") {\n",
    "    val url = \"https://raw.githubusercontent.com/JetBrains/lets-plot-kotlin/master/docs/examples/shp/${this}/${this}.shp\"\n",
    "    factory.createDataStore(URL(url)).featureSource.features\n",
    "}\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "id": "brilliant-sixth",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "[Oceania, Africa, North America, Asia, South America, Europe, Seven seas (open ocean), Antarctica]"
      ]
     },
     "execution_count": 8,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "worldFeatures.toSpatialDataset()[\"continent\"]?.distinct()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "id": "cellular-manitoba",
   "metadata": {},
   "outputs": [],
   "source": [
    "// Obtain North America feature collection.\n",
    "val northAmFc = worldFeatures.subCollection(\n",
    "    CQL.toFilter(\"continent = 'North America'\")\n",
    ")"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "id": "optional-jones",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "GCS_WGS_1984"
      ]
     },
     "execution_count": 10,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "// Convert \"North America\" Feature Collection to a SpatialDataset.\n",
    "// Use 10 decimals to encode floating point numbers (this is the default).\n",
    "val northAmSds = northAmFc.toSpatialDataset(10)\n",
    "northAmSds.crs"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "distant-conflict",
   "metadata": {},
   "source": [
    "#### 2. A Map of North America in the *Mercator* Projection\n",
    "\n",
    "The Mercator projection is a map projection used by Lets-Plot by default when plotting a `SpatialDataset`.\n",
    "\n",
    "Note that `northAmSds` dataset uses **WGS84** (or *GCS_WGS_1984*) CRS which is naitively supported by Lets-Plot."
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "id": "worthy-korea",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "   <div id=\"SCG5ni\"></div>\n",
       "   <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n",
       "       (function() {\n",
       "           var plotSpec={\n",
       "\"mapping\":{\n",
       "},\n",
       "\"kind\":\"plot\",\n",
       "\"scales\":[],\n",
       "\"layers\":[{\n",
       "\"mapping\":{\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"size\":1.0,\n",
       "\"color\":\"white\",\n",
       "\"position\":\"identity\",\n",
       "\"map_data_meta\":{\n",
       "\"geodataframe\":{\n",
       "\"geometry\":\"geometry\"\n",
       "}\n",
       "},\n",
       "\"geom\":\"map\",\n",
       "\"fill\":\"blue\",\n",
       "\"map\":{\n",
       "\"continent\":[\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\"],\n",
       "\"pop_est\":[3.562368E7,3.26625791E8,1.0646714E7,1.0734247E7,329988.0,57713.0,1.24574795E8,3753142.0,4930258.0,6025951.0,9038741.0,6172011.0,1.5460732E7,360346.0,3351827.0,2990561.0,1.1147407E7,1218208.0],\n",
       "\"gdp_md_est\":[1674000.0,1.856E7,19340.0,161900.0,9066.0,2173.0,2307000.0,93120.0,79260.0,33550.0,43190.0,54790.0,131800.0,3088.0,131000.0,25390.0,132900.0,43570.0],\n",
       "\"name\":[\"Canada\",\"United States of America\",\"Haiti\",\"Dominican Rep.\",\"Bahamas\",\"Greenland\",\"Mexico\",\"Panama\",\"Costa Rica\",\"Nicaragua\",\"Honduras\",\"El Salvador\",\"Guatemala\",\"Belize\",\"Puerto Rico\",\"Jamaica\",\"Cuba\",\"Trinidad and Tobago\"],\n",
       "\"iso_a3\":[\"CAN\",\"USA\",\"HTI\",\"DOM\",\"BHS\",\"GRL\",\"MEX\",\"PAN\",\"CRI\",\"NIC\",\"HND\",\"SLV\",\"GTM\",\"BLZ\",\"PRI\",\"JAM\",\"CUB\",\"TTO\"],\n",
       "\"geometry\":[\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-122.84,49],[-122.97421,49.0025377778],[-124.91024,49.98456],[-125.62461,50.41656],[-127.43561,50.83061],[-127.99276,51.71583],[-127.85032,52.32961],[-129.12979,52.75538],[-129.30523,53.56159],[-130.51497,54.28757],[-130.5361089527,54.8027544768],[-130.53611,54.80278],[-129.98,55.285],[-130.00778,55.91583],[-131.70781,56.55212],[-132.73042,57.69289],[-133.35556,58.41028],[-134.27111,58.86111],[-134.945,59.27056],[-135.47583,59.78778],[-136.47972,59.46389],[-137.4525,58.905],[-138.34089,59.56211],[-139.039,60],[-140.013,60.27682],[-140.99778,60.30639],[-140.9925,66.00003],[-140.986,69.712],[-140.9859876104,69.7119983995],[-139.12052,69.47102],[-137.54636,68.99002],[-136.50358,68.89804],[-135.62576,69.31512],[-134.41464,69.62743],[-132.92925,69.50534],[-131.43136,69.94451],[-129.79471,70.19369],[-129.10773,69.77927],[-128.36156,70.01286],[-128.13817,70.48384],[-127.44712,70.37721],[-125.75632,69.48058],[-124.42483,70.1584],[-124.28968,69.39969],[-123.06108,69.56372],[-122.6835,69.85553],[-121.47226,69.79778],[-119.94288,69.37786],[-117.60268,69.01128],[-116.22643,68.84151],[-115.2469,68.90591],[-113.89794,68.3989],[-115.30489,67.90261],[-113.49727,67.68815],[-110.798,67.80612],[-109.94619,67.98104],[-108.8802,67.38144],[-107.79239,67.88736],[-108.81299,68.31164],[-108.16721,68.65392],[-106.95,68.7],[-106.15,68.8],[-105.34282,68.56122],[-104.33791,68.018],[-103.22115,68.09775],[-101.45433,67.64689],[-99.90195,67.80566],[-98.4432,67.78165],[-98.5586,68.40394],[-97.66948,68.57864],[-96.11991,68.23939],[-96.12588,67.29338],[-95.48943,68.0907],[-94.685,68.06383],[-94.23282,69.06903],[-95.30408,69.68571],[-96.47131,70.08976],[-96.39115,71.19482],[-95.2088,71.92053],[-93.88997,71.76015],[-92.87818,71.31869],[-91.51964,70.19129],[-92.40692,69.69997],[-90.5471,69.49766],[-90.55151,68.47499],[-89.21515,69.25873],[-88.01966,68.61508],[-88.31749,67.87338],[-87.35017,67.19872],[-86.30607,67.92146],[-85.57664,68.78456],[-85.52197,69.88211],[-84.10081,69.80539],[-82.62258,69.65826],[-81.28043,69.16202],[-81.2202,68.66567],[-81.96436,68.13253],[-81.25928,67.59716],[-81.38653,67.11078],[-83.34456,66.41154],[-84.73542,66.2573],[-85.76943,66.55833],[-86.0676,66.05625],[-87.03143,65.21297],[-87.32324,64.77563],[-88.48296,64.09897],[-89.91444,64.03273],[-90.70398,63.61017],[-90.77004,62.96021],[-91.93342,62.83508],[-93.15698,62.02469],[-94.24153,60.89865],[-94.62931,60.11021],[-94.6846,58.94882],[-93.21502,58.78212],[-92.76462,57.84571],[-92.29703,57.08709],[-90.89769,57.28468],[-89.03953,56.85172],[-88.03978,56.47162],[-87.32421,55.99914],[-86.07121,55.72383],[-85.01181,55.3026],[-83.36055,55.24489],[-82.27285,55.14832],[-82.4362,54.28227],[-82.12502,53.27703],[-81.40075,52.15788],[-79.91289,51.20842],[-79.14301,51.53393],[-78.60191,52.56208],[-79.12421,54.14145],[-79.82958,54.66772],[-78.22874,55.13645],[-77.0956,55.83741],[-76.54137,56.53423],[-76.62319,57.20263],[-77.30226,58.05209],[-78.51688,58.80458],[-77.33676,59.85261],[-77.77272,60.75788],[-78.10687,62.31964],[-77.41067,62.55053],[-75.69621,62.2784],[-74.6682,62.18111],[-73.83988,62.4438],[-72.90853,62.10507],[-71.67708,61.52535],[-71.37369,61.13717],[-69.59042,61.06141],[-69.62033,60.22125],[-69.2879,58.95736],[-68.37455,58.80106],[-67.64976,58.21206],[-66.20178,58.76731],[-65.24517,59.87071],[-64.58352,60.33558],[-63.80475,59.4426],[-62.50236,58.16708],[-61.39655,56.96745],[-61.79866,56.33945],[-60.46853,55.77548],[-59.56962,55.20407],[-57.97508,54.94549],[-57.3332,54.6265],[-56.93689,53.78032],[-56.15811,53.64749],[-55.75632,53.27036],[-55.68338,52.14664],[-56.40916,51.7707],[-57.12691,51.41972],[-58.77482,51.0643],[-60.03309,50.24277],[-61.72366,50.08046],[-63.86251,50.29099],[-65.36331,50.2982],[-66.39905,50.22897],[-67.23631,49.51156],[-68.51114,49.06836],[-69.95362,47.74488],[-71.10458,46.82171],[-70.25522,46.98606],[-68.65,48.3],[-66.55243,49.1331],[-65.05626,49.23278],[-64.17099,48.74248],[-65.11545,48.07085],[-64.79854,46.99297],[-64.47219,46.23849],[-63.17329,45.73902],[-61.52072,45.88377],[-60.51815,47.00793],[-60.4486,46.28264],[-59.80287,45.9204],[-61.03988,45.26525],[-63.25471,44.67014],[-64.24656,44.26553],[-65.36406,43.54523],[-66.1234,43.61867],[-66.16173,44.46512],[-64.42549,45.29204],[-66.02605,45.25931],[-67.13741,45.13753],[-67.79134,45.70281],[-67.79046,47.06636],[-68.23444,47.35486],[-68.905,47.185],[-69.237216,47.447781],[-69.99997,46.69307],[-70.305,45.915],[-70.66,45.46],[-71.08482,45.30524],[-71.405,45.255],[-71.50506,45.0082],[-73.34783,45.00738],[-74.867,45.00048],[-75.31821,44.81645],[-76.375,44.09631],[-76.5,44.0184588938],[-76.8200341458,43.6287842881],[-77.737885098,43.6290555894],[-78.720279914,43.6250894232],[-79.1716735501,43.4663394232],[-79.01,43.27],[-78.92,42.965],[-78.9393621487,42.8636113551],[-80.2474476793,42.3661998561],[-81.2777465482,42.2090259873],[-82.4392777168,41.6751050889],[-82.6900892809,41.6751050889],[-83.0298101468,41.832795722],[-83.1419996813,41.9756810573],[-83.12,42.08],[-82.9,42.43],[-82.43,42.98],[-82.1376423815,43.5710875514],[-82.3377631254,44.44],[-82.5509246488,45.3475165879],[-83.5928507148,45.8168936224],[-83.4695507474,45.9946863877],[-83.6161309476,46.1169269883],[-83.890765347,46.1169269883],[-84.0918512642,46.2754186061],[-84.1421195137,46.5122258571],[-84.3367,46.40877],[-84.6049,46.4396],[-84.5437487454,46.5386841904],[-84.7792382474,46.6371019557],[-84.8760798815,46.9000833197],[-85.6523632474,47.2202188177],[-86.4619908312,47.5533380194],[-87.4397926233,47.94],[-88.3781141833,48.3029175889],[-89.2729174466,48.0198082546],[-89.6,48.01],[-90.83,48.27],[-91.64,48.14],[-92.61,48.45],[-93.63087,48.60926],[-94.32914,48.67074],[-94.64,48.84],[-94.81758,49.38905],[-95.15609,49.38425],[-95.1590695092,49],[-97.22872,49.0007],[-100.65,49],[-104.04826,48.99986],[-107.05,49],[-110.05,49],[-113,49],[-116.04818,49],[-117.03121,49],[-120,49],[-122.84,49]]],[[[-83.99367,62.4528],[-83.25048,62.91409],[-81.87699,62.90458],[-81.89825,62.7108],[-83.06857,62.15922],[-83.77462,62.18231],[-83.99367,62.4528]]],[[[-79.7758331299,72.8029022217],[-80.8760986328,73.3331832886],[-80.8338851929,73.6931838989],[-80.3530578613,73.7597198486],[-78.0644378662,73.6519317627],[-76.34,73.10268499],[-76.2514038086,72.826385498],[-77.3144378662,72.8555450439],[-78.3916702271,72.8766555786],[-79.4862518311,72.7422027588],[-79.7758331299,72.8029022217]]],[[[-80.315395,62.085565],[-79.92939,62.3856],[-79.52002,62.36371],[-79.26582,62.158675],[-79.65752,61.63308],[-80.09956,61.7181],[-80.36215,62.01649],[-80.315395,62.085565]]],[[[-93.6127559069,74.9799972602],[-94.156908739,74.5923465034],[-95.6086805896,74.6668639188],[-96.8209321765,74.9276231961],[-96.2885874092,75.3778282742],[-94.8508198718,75.6472175158],[-93.9777465482,75.2964895698],[-93.6127559069,74.9799972602]]],[[[-93.8400030179,77.5199972602],[-94.2956082832,77.4913426785],[-96.1696541003,77.555111396],[-96.4363044909,77.8346292182],[-94.4225772774,77.8200047879],[-93.7206562976,77.6343313667],[-93.8400030179,77.5199972602]]],[[[-96.7543987699,78.7658126899],[-95.5592779203,78.418314521],[-95.8302949694,78.05694123],[-97.3098429024,77.8505972358],[-98.1242893135,78.0828569608],[-98.5528678047,78.4581053738],[-98.6319844226,78.8719302436],[-97.3372314115,78.8319843615],[-96.7543987699,78.7658126899]]],[[[-88.150350308,74.392307034],[-89.7647220528,74.515555325],[-92.4224409655,74.8377578803],[-92.7682854886,75.3868199734],[-92.889905972,75.8826553413],[-93.8938240222,76.3192436795],[-95.962457445,76.4413809272],[-97.1213789538,76.7510777859],[-96.7451228503,77.1613886583],[-94.684085863,77.0978783231],[-93.5739210681,76.7762958849],[-91.6050231595,76.7785179715],[-90.7418458727,76.44959748],[-90.9696614245,76.0740131701],[-89.8222379219,75.8477737495],[-89.1870828926,75.6101655138],[-87.8382763333,75.5661888699],[-86.3791922676,75.4824213732],[-84.7896252103,75.6992040066],[-82.7534445869,75.7843150906],[-81.1285308499,75.7139834663],[-80.0575109525,75.3368488634],[-79.8339328681,74.9231273465],[-80.4577707588,74.6573037788],[-81.9488425361,74.4424590115],[-83.2288936022,74.5640278185],[-86.0974523587,74.4100320503],[-88.150350308,74.392307034]]],[[[-111.2644433256,78.1529560412],[-109.8544518705,77.9963247749],[-110.1869380359,77.6970148791],[-112.0511911691,77.4092288276],[-113.5342789376,77.7322065294],[-112.7245867583,78.0510501167],[-111.2644433256,78.1529560412]]],[[[-110.9636606515,78.8044408231],[-109.6631457182,78.6019725613],[-110.8813142566,78.4069198677],[-112.5420914376,78.4079017199],[-112.5258908761,78.5505545112],[-111.5000103422,78.8499935981],[-110.9636606515,78.8044408231]]],[[[-55.6002182684,51.3170746934],[-56.134035814,50.6870097927],[-56.7958817206,49.8123086615],[-56.1431050279,50.1501174994],[-55.4714922756,49.9358153347],[-55.8224010891,49.5871286078],[-54.9351425848,49.3130109727],[-54.4737753973,49.5566911892],[-53.4765494452,49.2491389024],[-53.78601376,48.5167805039],[-53.0861339992,48.6878036566],[-52.9586482408,48.1571642116],[-52.6480987209,47.5355484076],[-53.0691582912,46.6554987656],[-53.5214562649,46.6182917344],[-54.1789355129,46.8070657416],[-53.9618686591,47.6252070176],[-54.2404821438,47.7522793646],[-55.400773078,46.8849938015],[-55.9974808417,46.919720364],[-55.2912190416,47.3895624864],[-56.2507987128,47.632545071],[-57.3252292548,47.5728071153],[-59.2660151841,47.6033478867],[-59.4194941881,47.8994538438],[-58.7965864732,48.251525377],[-59.2316245185,48.5231883815],[-58.3918049791,49.1255805528],[-57.3586897447,50.7182740342],[-56.7386500718,51.2874382595],[-55.8709769354,51.6320942246],[-55.4069742499,51.5882726101],[-55.6002182684,51.3170746934]]],[[[-83.8826263089,65.109617825],[-82.7875768704,64.7666930203],[-81.6420137194,64.45513581],[-81.5534403144,63.97960928],[-80.8173612129,64.0574856635],[-80.1034513008,63.7259813503],[-80.9910198636,63.4112460395],[-82.5471781074,63.6517223171],[-83.1087975736,64.1018757188],[-84.1004166328,63.5697118191],[-85.5234047106,63.0523790554],[-85.866768765,63.6372529161],[-87.2219832018,63.5412381049],[-86.3527597725,64.0358332384],[-86.2248864408,64.8229169786],[-85.8838478259,65.7387783881],[-85.1613079495,65.6572846544],[-84.9757637194,65.2175182156],[-84.4640120104,65.371772366],[-83.8826263089,65.109617825]]],[[[-78.7706385973,72.3521731635],[-77.8246239896,72.7496166043],[-75.6058446927,72.2436784939],[-74.2286160957,71.7671442736],[-74.0991407946,71.3308401557],[-72.2422257148,71.556924547],[-71.2000154283,70.920012519],[-68.7860542467,70.5250237088],[-67.9149704658,70.1219475369],[-66.9690333727,69.1860873481],[-68.8051228502,68.7201984728],[-66.4498660956,68.0671633979],[-64.8623144192,67.8475385607],[-63.424934455,66.9284732123],[-61.8519813707,66.8621206733],[-62.1631768459,66.1602513699],[-63.9184443834,64.9986685248],[-65.1488602363,65.4260326199],[-66.7212190416,66.3880410834],[-68.0150160387,66.2627257351],[-68.141287401,65.6897891303],[-67.0896461656,65.1084551052],[-65.7320804511,64.6484056668],[-65.3201676093,64.3827371283],[-64.6694062974,63.3929267442],[-65.0138038805,62.6741850857],[-66.2750447252,62.945098782],[-68.7831862047,63.7456700711],[-67.3696807522,62.8839655626],[-66.3282972887,62.2800747748],[-66.1655682034,61.9308971218],[-68.8773665025,62.3301492377],[-71.0234370592,62.9107081163],[-72.2353785875,63.3978360053],[-71.8862784492,63.6799893256],[-73.3783062405,64.1939631212],[-74.8344189114,64.6790756293],[-74.8185025703,64.3890933295],[-77.7099798245,64.2295423448],[-78.5559488594,64.5729063992],[-77.8972810534,65.3091922065],[-76.0182742988,65.3269688992],[-73.9597952949,65.4547647162],[-74.2938834296,65.8117713487],[-73.9449124824,66.3105781114],[-72.6511671617,67.2845755073],[-72.9260599433,67.7269257677],[-73.3116178046,68.0694371609],[-74.8433072578,68.5546271837],[-76.8691009183,68.8947356228],[-76.2286490547,69.1477692735],[-77.2873699612,69.7695401069],[-78.1686339993,69.8264875353],[-78.9572421943,70.1668801948],[-79.4924550036,69.8718077664],[-81.3054709541,69.7431851264],[-84.9447061836,69.9666340196],[-87.0600034248,70.2600011258],[-88.681713223,70.4107412788],[-89.5134195625,70.7620376655],[-88.4677211169,71.2181855333],[-89.8881512113,71.2225521918],[-90.2051602852,72.235074368],[-89.4365767077,73.1294642199],[-88.4082415433,73.5378889025],[-85.8261510892,73.803815823],[-86.5621785143,73.1574470079],[-85.774371304,72.5341258816],[-84.8501124743,73.3402782254],[-82.3155901761,73.7509508328],[-80.6000876533,72.7165436876],[-80.7489416165,72.0619066434],[-78.7706385973,72.3521731635]]],[[[-94.5036575997,74.1349067247],[-92.4200121732,74.1000251329],[-90.5097928535,73.8567324897],[-92.0039652168,72.9662442085],[-93.1962955391,72.7719924995],[-94.269046597,72.0245962592],[-95.4098555163,72.0618808051],[-96.0337450834,72.9402768012],[-96.0182679919,73.4374299181],[-95.4957934232,73.8624168973],[-94.5036575997,74.1349067247]]],[[[-122.8549244862,76.1165428738],[-122.8549252936,76.1165428738],[-121.1575353603,76.8645075548],[-119.1039389718,77.5122199572],[-117.570130785,77.4983189969],[-116.1985865955,77.6452867703],[-116.3358133615,76.876961575],[-117.1060505848,76.5300318468],[-118.040412157,76.4811717801],[-119.8993175869,76.0532134061],[-121.4999950771,75.9000186225],[-122.8549244862,76.1165428738]]],[[[-132.7100078844,54.0400093154],[-131.749989584,54.1200043809],[-132.0494803474,52.984621487],[-131.1790425218,52.1804328477],[-131.5778295498,52.1823707139],[-132.1804284268,52.6397071397],[-132.5499924323,53.1000149603],[-133.0546111788,53.4114688178],[-133.2396644828,53.8510802273],[-133.1800040417,54.1699754909],[-132.7100078844,54.0400093154]]],[[[-105.4922891915,79.3015939399],[-103.5292823962,79.1653490262],[-100.8251580473,78.8004617378],[-100.0601918201,78.3247543403],[-99.6709390938,77.9075446642],[-101.3039401925,78.0189848904],[-102.9498087227,78.3432286649],[-105.1761327787,78.3803323432],[-104.2104294503,78.6774201525],[-105.4195804513,78.9183356798],[-105.4922891915,79.3015939399]]],[[[-123.5100015876,48.5100108913],[-124.0128907884,48.3708462591],[-125.6550127773,48.8250045843],[-125.9549944668,49.179995836],[-126.8500044359,49.5300003119],[-127.0299934495,49.814995836],[-128.0593363044,49.9949590114],[-128.4445841071,50.5391376817],[-128.3584136563,50.7706480983],[-127.308581096,50.5525735541],[-126.6950009772,50.4009032253],[-125.7550066738,50.2950182155],[-125.4150015876,49.9500005153],[-124.9207681891,49.4752749701],[-123.9225087083,49.0624836289],[-123.5100015876,48.5100108913]]],[[[-121.53788,74.44893],[-120.10978,74.24135],[-117.55564,74.18577],[-116.58442,73.89607],[-115.51081,73.47519],[-116.76794,73.22292],[-119.22,72.52],[-120.46,71.82],[-120.46,71.3836017931],[-123.09219,70.90164],[-123.62,71.34],[-125.9289487375,71.868688463],[-125.5,72.2922608118],[-124.80729,73.02256],[-123.94,73.68],[-124.91775,74.29275],[-121.53788,74.44893]]],[[[-107.81943,75.84552],[-106.92893,76.01282],[-105.881,75.9694],[-105.70498,75.47951],[-106.31347,75.00527],[-109.7,74.85],[-112.22307,74.41696],[-113.74381,74.39427],[-113.87135,74.72029],[-111.79421,75.1625],[-116.31221,75.04343],[-117.7104,75.2222],[-116.34602,76.19903],[-115.40487,76.47887],[-112.59056,76.14134],[-110.81422,75.54919],[-109.0671,75.47321],[-110.49726,76.42982],[-109.5811,76.79417],[-108.54859,76.67832],[-108.21141,76.20168],[-107.81943,75.84552]]],[[[-106.52259,73.07601],[-105.40246,72.67259],[-104.77484,71.6984],[-104.46476,70.99297],[-102.78537,70.49776],[-100.98078,70.02432],[-101.08929,69.58447],[-102.73116,69.50402],[-102.09329,69.11962],[-102.43024,68.75282],[-104.24,68.91],[-105.96,69.18],[-107.12254,69.11922],[-109,68.78],[-111.5341488752,68.6300591568],[-113.3132,68.53554],[-113.85496,69.00744],[-115.22,69.28],[-116.10794,69.16821],[-117.34,69.96],[-116.67473,70.06655],[-115.13112,70.2373],[-113.72141,70.19237],[-112.4161,70.36638],[-114.35,70.6],[-116.48684,70.52045],[-117.9048,70.54056],[-118.43238,70.9092],[-116.11311,71.30918],[-117.65568,71.2952],[-119.40199,71.55859],[-118.56267,72.30785],[-117.86642,72.70594],[-115.18909,73.31459],[-114.16717,73.12145],[-114.66634,72.65277],[-112.44102,72.9554],[-111.05039,72.4504],[-109.92035,72.96113],[-109.00654,72.63335],[-108.18835,71.65089],[-107.68599,72.06548],[-108.39639,73.08953],[-107.51645,73.23598],[-106.52259,73.07601]]],[[[-100.43836,72.70588],[-101.54,73.36],[-100.35642,73.84389],[-99.16387,73.63339],[-97.38,73.76],[-97.12,73.47],[-98.05359,72.99052],[-96.54,72.56],[-96.72,71.66],[-98.35966,71.27285],[-99.32286,71.35639],[-100.01482,71.73827],[-102.5,72.51],[-102.48,72.83],[-100.43836,72.70588]]],[[[-106.6,73.6],[-105.26,73.64],[-104.5,73.42],[-105.38,72.76],[-106.94,73.46],[-106.6,73.6]]],[[[-98.5,76.72],[-97.735585,76.25656],[-97.704415,75.74344],[-98.16,75],[-99.80874,74.89744],[-100.88366,75.05736],[-100.86292,75.64075],[-102.50209,75.5638],[-102.56552,76.3366],[-101.48973,76.30537],[-99.98349,76.64634],[-98.57699,76.58859],[-98.5,76.72]]],[[[-96.01644,80.60233],[-95.32345,80.90729],[-94.29843,80.97727],[-94.73542,81.20646],[-92.40984,81.25739],[-91.13289,80.72345],[-89.45,80.5093220339],[-87.81,80.32],[-87.02,79.66],[-85.81435,79.3369],[-87.18756,79.0393],[-89.03535,78.28723],[-90.80436,78.21533],[-92.87669,78.34333],[-93.95116,78.75099],[-93.93574,79.11373],[-93.14524,79.3801],[-94.974,79.37248],[-96.07614,79.70502],[-96.70972,80.15777],[-96.01644,80.60233]]],[[[-91.58702,81.89429],[-90.1,82.085],[-88.93227,82.11751],[-86.97024,82.27961],[-85.5,82.6522734581],[-84.260005,82.6],[-83.18,82.32],[-82.42,82.86],[-81.1,83.02],[-79.30664,83.13056],[-76.25,83.1720588235],[-75.71878,83.06404],[-72.83153,83.23324],[-70.665765,83.1697807584],[-68.5,83.1063215168],[-65.82735,83.02801],[-63.68,82.9],[-61.85,82.6286],[-61.89388,82.36165],[-64.334,81.92775],[-66.75342,81.72527],[-67.65755,81.50141],[-65.48031,81.50657],[-67.84,80.9],[-69.4697,80.61683],[-71.18,79.8],[-73.2428,79.63415],[-73.88,79.4301622048],[-76.90773,79.32309],[-75.52924,79.19766],[-76.22046,79.01907],[-75.39345,78.52581],[-76.34354,78.18296],[-77.88851,77.89991],[-78.36269,77.50859],[-79.75951,77.20968],[-79.61965,76.98336],[-77.91089,77.022045],[-77.88911,76.777955],[-80.56125,76.17812],[-83.17439,76.45403],[-86.11184,76.29901],[-87.6,76.42],[-89.49068,76.47239],[-89.6161,76.95213],[-87.76739,77.17833],[-88.26,77.9],[-87.65,77.9702222222],[-84.97634,77.53873],[-86.34,78.18],[-87.96192,78.37181],[-87.15198,78.75867],[-85.37868,78.9969],[-85.09495,79.34543],[-86.50734,79.73624],[-86.93179,80.25145],[-84.19844,80.20836],[-83.4086956522,80.1],[-81.84823,80.46442],[-84.1,80.58],[-87.59895,80.51627],[-89.36663,80.85569],[-90.2,81.26],[-91.36786,81.5531],[-91.58702,81.89429]]],[[[-75.21597,67.44425],[-75.86588,67.14886],[-76.98687,67.09873],[-77.2364,67.58809],[-76.81166,68.14856],[-75.89521,68.28721],[-75.1145,68.01036],[-75.10333,67.58202],[-75.21597,67.44425]]],[[[-96.2574012038,69.4900303583],[-95.6476812038,69.1076903583],[-96.2695212038,68.7570403583],[-97.6174012038,69.0600303583],[-98.4318012038,68.9507003583],[-99.7974012038,69.4000303583],[-98.9174012038,69.7100303583],[-98.2182612038,70.1435403583],[-97.1574012038,69.8600303583],[-96.5574012038,69.6800303583],[-96.2574012038,69.4900303583]]],[[[-64.51912,49.87304],[-64.17322,49.95718],[-62.85829,49.70641],[-61.835585,49.28855],[-61.806305,49.10506],[-62.29318,49.08717],[-63.58926,49.40069],[-64.51912,49.87304]]],[[[-64.01486,47.03601],[-63.6645,46.55001],[-62.9393,46.41587],[-62.01208,46.44314],[-62.50391,46.03339],[-62.87433,45.96818],[-64.1428,46.39265],[-64.39261,46.72747],[-64.01486,47.03601]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-122.84,49],[-120,49],[-117.03121,49],[-116.04818,49],[-113,49],[-110.05,49],[-107.05,49],[-104.04826,48.99986],[-100.65,49],[-97.22872,49.0007],[-95.1590695092,49],[-95.15609,49.38425],[-94.81758,49.38905],[-94.64,48.84],[-94.32914,48.67074],[-93.63087,48.60926],[-92.61,48.45],[-91.64,48.14],[-90.83,48.27],[-89.6,48.01],[-89.2729174466,48.0198082546],[-88.3781141833,48.3029175889],[-87.4397926233,47.94],[-86.4619908312,47.5533380194],[-85.6523632474,47.2202188177],[-84.8760798815,46.9000833197],[-84.7792382474,46.6371019557],[-84.5437487454,46.5386841904],[-84.6049,46.4396],[-84.3367,46.40877],[-84.1421195137,46.5122258571],[-84.0918512642,46.2754186061],[-83.890765347,46.1169269883],[-83.6161309476,46.1169269883],[-83.4695507474,45.9946863877],[-83.5928507148,45.8168936224],[-82.5509246488,45.3475165879],[-82.3377631254,44.44],[-82.1376423815,43.5710875514],[-82.43,42.98],[-82.9,42.43],[-83.12,42.08],[-83.1419996813,41.9756810573],[-83.0298101468,41.832795722],[-82.6900892809,41.6751050889],[-82.4392777168,41.6751050889],[-81.2777465482,42.2090259873],[-80.2474476793,42.3661998561],[-78.9393621487,42.8636113551],[-78.92,42.965],[-79.01,43.27],[-79.1716735501,43.4663394232],[-78.720279914,43.6250894232],[-77.737885098,43.6290555894],[-76.8200341458,43.6287842881],[-76.5,44.0184588938],[-76.375,44.09631],[-75.31821,44.81645],[-74.867,45.00048],[-73.34783,45.00738],[-71.50506,45.0082],[-71.405,45.255],[-71.08482,45.30524],[-70.66,45.46],[-70.305,45.915],[-69.99997,46.69307],[-69.237216,47.447781],[-68.905,47.185],[-68.23444,47.35486],[-67.79046,47.06636],[-67.79134,45.70281],[-67.13741,45.13753],[-66.96466,44.8097],[-68.03252,44.3252],[-69.06,43.98],[-70.11617,43.68405],[-70.6454756334,43.090238349],[-70.81489,42.8653],[-70.825,42.335],[-70.495,41.805],[-70.08,41.78],[-70.185,42.145],[-69.88497,41.92283],[-69.96503,41.63717],[-70.64,41.475],[-71.12039,41.49445],[-71.86,41.32],[-72.295,41.27],[-72.87643,41.22065],[-73.71,40.9311023517],[-72.24126,41.11948],[-71.945,40.93],[-73.345,40.63],[-73.982,40.628],[-73.952325,40.75075],[-74.25671,40.47351],[-73.96244,40.42763],[-74.17838,39.70926],[-74.90604,38.93954],[-74.98041,39.1964],[-75.20002,39.24845],[-75.52805,39.4985],[-75.32,38.96],[-75.0718347648,38.7820322302],[-75.05673,38.40412],[-75.37747,38.01551],[-75.94023,37.21689],[-76.03127,37.2566],[-75.72205,37.93705],[-76.23287,38.319215],[-76.35,39.15],[-76.542725,38.717615],[-76.32933,38.08326],[-76.9899979316,38.2399917669],[-76.30162,37.917945],[-76.25874,36.9664],[-75.9718,36.89726],[-75.86804,36.55125],[-75.72749,35.55074],[-76.36318,34.80854],[-77.397635,34.51201],[-78.05496,33.92547],[-78.55435,33.86133],[-79.06067,33.49395],[-79.20357,33.15839],[-80.301325,32.509355],[-80.86498,32.0333],[-81.33629,31.44049],[-81.49042,30.72999],[-81.31371,30.03552],[-80.98,29.18],[-80.535585,28.47213],[-80.53,28.04],[-80.056539285,26.88],[-80.088015,26.205765],[-80.13156,25.816775],[-80.38103,25.20616],[-80.68,25.08],[-81.17213,25.20126],[-81.33,25.64],[-81.71,25.87],[-82.24,26.73],[-82.70515,27.49504],[-82.85526,27.88624],[-82.65,28.55],[-82.93,29.1],[-83.70959,29.93656],[-84.1,30.09],[-85.10882,29.63615],[-85.28784,29.68612],[-85.7731,30.15261],[-86.4,30.4],[-87.53036,30.27433],[-88.41782,30.3849],[-89.18049,30.31598],[-89.5938311784,30.1599940048],[-89.413735,29.89419],[-89.43,29.48864],[-89.21767,29.29108],[-89.40823,29.15961],[-89.77928,29.30714],[-90.15463,29.11743],[-90.880225,29.148535],[-91.626785,29.677],[-92.49906,29.5523],[-93.22637,29.78375],[-93.84842,29.71363],[-94.69,29.48],[-95.60026,28.73863],[-96.59404,28.30748],[-97.14,27.83],[-97.37,27.38],[-97.38,26.69],[-97.33,26.21],[-97.14,25.87],[-97.53,25.84],[-98.24,26.06],[-99.02,26.37],[-99.3,26.84],[-99.52,27.54],[-100.11,28.11],[-100.45584,28.69612],[-100.9576,29.38071],[-101.6624,29.7793],[-102.48,29.76],[-103.11,28.97],[-103.94,29.27],[-104.45697,29.57196],[-104.70575,30.12173],[-105.03737,30.64402],[-105.63159,31.08383],[-106.1429,31.39995],[-106.50759,31.75452],[-108.24,31.7548537182],[-108.24194,31.34222],[-109.035,31.34194],[-111.02361,31.33472],[-113.30498,32.03914],[-114.815,32.52528],[-114.72139,32.72083],[-115.99135,32.61239],[-117.12776,32.53534],[-117.2959376913,33.0462246152],[-117.944,33.6212364312],[-118.4106022759,33.7409092231],[-118.5198948228,34.0277815776],[-119.081,34.078],[-119.438840642,34.3484771783],[-120.36778,34.44711],[-120.62286,34.60855],[-120.74433,35.15686],[-121.71457,36.16153],[-122.54747,37.55176],[-122.51201,37.78339],[-122.95319,38.11371],[-123.7272,38.95166],[-123.86517,39.76699],[-124.39807,40.3132],[-124.17886,41.14202],[-124.2137,41.99964],[-124.53284,42.76599],[-124.14214,43.70838],[-124.020535,44.615895],[-123.89893,45.52341],[-124.079635,46.86475],[-124.39567,47.72017],[-124.687210083,48.1844329834],[-124.5661010742,48.3797149658],[-123.12,48.04],[-122.58736,47.096],[-122.34,47.36],[-122.5,48.18],[-122.84,49]]],[[[-155.40214,20.07975],[-155.22452,19.99302],[-155.06226,19.8591],[-154.80741,19.50871],[-154.83147,19.45328],[-155.22217,19.23972],[-155.54211,19.08348],[-155.68817,18.91619],[-155.93665,19.05939],[-155.90806,19.33888],[-156.07347,19.70294],[-156.02368,19.81422],[-155.85008,19.97729],[-155.91907,20.17395],[-155.86108,20.26721],[-155.78505,20.2487],[-155.40214,20.07975]]],[[[-155.99566,20.76404],[-156.07926,20.64397],[-156.41445,20.57241],[-156.58673,20.783],[-156.70167,20.8643],[-156.71055,20.92676],[-156.61258,21.01249],[-156.25711,20.91745],[-155.99566,20.76404]]],[[[-156.75824,21.17684],[-156.78933,21.06873],[-157.32521,21.09777],[-157.25027,21.21958],[-156.75824,21.17684]]],[[[-158.0252,21.71696],[-157.94161,21.65272],[-157.65283,21.32217],[-157.70703,21.26442],[-157.7786,21.27729],[-158.12667,21.31244],[-158.2538,21.53919],[-158.29265,21.57912],[-158.0252,21.71696]]],[[[-159.36569,22.21494],[-159.34512,21.982],[-159.46372,21.88299],[-159.80051,22.06533],[-159.74877,22.1382],[-159.5962,22.23618],[-159.36569,22.21494]]],[[[-166.4677921214,60.3841698269],[-165.6744296947,60.2936068793],[-165.5791641917,59.9099868842],[-166.1927701488,59.754440823],[-166.8483373688,59.941406155],[-167.4552770661,60.2130691596],[-166.4677921214,60.3841698269]]],[[[-153.2287294179,57.9689684109],[-152.5647906158,57.9014273139],[-152.1411472239,57.5910586615],[-153.0063140533,57.1158421902],[-154.0050902985,56.7346768256],[-154.5164027578,56.9927489284],[-154.670992805,57.4611957872],[-153.7627795074,57.816574612],[-153.2287294179,57.9689684109]]],[[[-140.9859876104,69.7119983995],[-140.986,69.712],[-140.9925,66.00003],[-140.99778,60.30639],[-140.013,60.27682],[-139.039,60],[-138.34089,59.56211],[-137.4525,58.905],[-136.47972,59.46389],[-135.47583,59.78778],[-134.945,59.27056],[-134.27111,58.86111],[-133.35556,58.41028],[-132.73042,57.69289],[-131.70781,56.55212],[-130.00778,55.91583],[-129.98,55.285],[-130.53611,54.80278],[-130.5361089527,54.8027544768],[-130.5361101895,54.8027534043],[-131.085818238,55.178906155],[-131.9672114671,55.4977755805],[-132.2500107429,56.3699962429],[-133.5391810844,57.1788874376],[-134.0780629203,58.123067532],[-135.0382110323,58.1877147488],[-136.62806231,58.2122093777],[-137.8000062797,58.4999954291],[-139.8677870414,59.5377615424],[-140.8252738171,59.7275174018],[-142.5744435356,60.0844465196],[-143.9588809949,59.9991804063],[-145.9255568168,60.4586097276],[-147.1143739491,60.8846560736],[-148.2243062001,60.672989407],[-148.0180655589,59.9783289659],[-148.5708225169,59.9141726752],[-149.7278578359,59.7056582709],[-150.6082433746,59.368211168],[-151.7163927887,59.1558210313],[-151.8594331533,59.7449840359],[-151.4097190012,60.7258027208],[-150.3469414947,61.0335875515],[-150.6211108063,61.2844249539],[-151.8958391998,60.7271979845],[-152.5783298411,60.061657213],[-154.0191721263,59.350279446],[-153.2875113597,58.8647276882],[-154.2324924388,58.1463736029],[-155.3074914215,57.7277945014],[-156.3083347239,57.4227743598],[-156.5560973785,56.9799848497],[-158.1172165599,56.4636081],[-158.4333212962,55.9941535508],[-159.6033273997,55.5666861029],[-160.2897196116,55.6435806342],[-161.2230476553,55.3647346055],[-162.2377660797,55.0241869167],[-163.069446581,54.6897370469],[-164.785569221,54.4041730821],[-164.9422263255,54.5722248399],[-163.8483396068,55.0394314642],[-162.8700013906,55.3480431179],[-161.8041749746,55.8949864773],[-160.5636047028,56.0080545111],[-160.0705598623,56.4180553249],[-158.6844429189,57.0166751166],[-158.4610973786,57.2169212917],[-157.7227703522,57.5700005154],[-157.5502744212,58.328326321],[-157.0416749746,58.9188845893],[-158.1947312083,58.6158023139],[-158.517217984,58.7877814805],[-159.0586061269,58.4241861029],[-159.71166704,58.9313902859],[-159.9812888255,58.57254914],[-160.355271166,59.0711233588],[-161.3550034251,58.6708377143],[-161.9688936025,58.6716645372],[-162.0549865387,59.2669253607],[-161.8741707021,59.6336213243],[-162.5180590485,59.9897236192],[-163.8183414378,59.7980557318],[-164.6622175771,60.2674844428],[-165.3463877025,60.5074956326],[-165.3508318757,61.0738951687],[-166.1213791576,61.5000190294],[-165.7344518708,62.0749968533],[-164.9191786367,62.6330764838],[-164.562507901,63.1463784858],[-163.753332486,63.219448961],[-163.0672244945,63.0594587266],[-162.2605553864,63.5419357367],[-161.5344498362,63.4558169623],[-160.7725066803,63.7661081],[-160.9583351308,64.2227985704],[-161.5180684072,64.4027875841],[-160.7777776764,64.7886038276],[-161.391926236,64.7772350125],[-162.4530500967,64.5594446886],[-162.7577860179,64.3386054552],[-163.5463942129,64.5591604682],[-164.9608298411,64.4469450955],[-166.4252882559,64.6866720649],[-166.8450042389,65.0888955756],[-168.1105600658,65.6699970567],[-166.705271166,66.0883177761],[-164.4747096426,66.5766600613],[-163.6525117666,66.5766600613],[-163.788601651,66.0772073432],[-161.6777744212,66.1161196967],[-162.4897145254,66.7355650906],[-163.7197169668,67.1163945584],[-164.4309913809,67.6163382026],[-165.3902868317,68.0427721219],[-166.764440681,68.3588768582],[-166.2047074046,68.8830309109],[-164.4308105133,68.9155353868],[-163.1686136546,69.3711148139],[-162.9305661693,69.8580618354],[-161.9088972646,70.3333299832],[-160.9347965159,70.4476899278],[-159.0391757884,70.8916421577],[-158.1197228668,70.8247211779],[-156.5808245514,71.3577635769],[-155.0677902903,71.1477763943],[-154.3441652089,70.6964085965],[-153.9000062734,70.8899885118],[-152.2100060699,70.8299921739],[-152.2700024078,70.600006212],[-150.7399924387,70.430016588],[-149.7200030182,70.5300104845],[-147.6133615794,70.2140349392],[-145.6899898002,70.1200096707],[-144.9200109591,69.989991767],[-143.5894461804,70.1525141466],[-142.0725103487,69.8519381782],[-140.9859875216,69.7119983995],[-140.9859876104,69.7119983995]]],[[[-171.7316568675,63.7825153673],[-171.1144335602,63.5921910671],[-170.4911124339,63.694975491],[-169.6825054597,63.4311156277],[-168.6894394603,63.297506212],[-168.7719408845,63.1885981309],[-169.5294398672,62.9769314643],[-170.2905562002,63.1944375678],[-170.671385668,63.3758218451],[-171.5530631175,63.3177892117],[-171.7911106029,63.4058458523],[-171.7316568675,63.7825153673]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-71.7123614163,19.7144558782],[-71.6248732164,19.1698379582],[-71.7013026598,18.7854169784],[-71.9451120673,18.6169001327],[-71.6877375963,18.3166600611],[-71.7083048164,18.0449970565],[-72.3724761624,18.2149608424],[-72.8444111803,18.1456110702],[-73.4545548164,18.217906399],[-73.9224332343,18.0309927434],[-74.4580336168,18.3425499537],[-74.3699252998,18.6649075383],[-73.4495422024,18.5260529648],[-72.6949370999,18.4457994654],[-72.3348815579,18.6684215357],[-72.7916495429,19.1016250676],[-72.7841047838,19.4835914169],[-73.4150223457,19.6395508896],[-73.1897906155,19.9156839055],[-72.5796728177,19.8715005559],[-71.7123614163,19.7144558782]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-71.7083048164,18.0449970565],[-71.6877375963,18.3166600611],[-71.9451120673,18.6169001327],[-71.7013026598,18.7854169784],[-71.6248732164,19.1698379582],[-71.7123614163,19.7144558782],[-71.5873044501,19.8849105901],[-70.8067061022,19.8802855494],[-70.214364997,19.6228852401],[-69.9508151923,19.6479999862],[-69.7692500475,19.2932671168],[-69.2221258206,19.3132142196],[-69.2543460761,19.0151962346],[-68.8094119941,18.9790744084],[-68.3179432848,18.6121975774],[-68.6893159654,18.2051423202],[-69.1649458482,18.4226484237],[-69.6239875963,18.3807129989],[-69.9529339261,18.4283069931],[-70.1332329983,18.2459150253],[-70.5171372138,18.1842908798],[-70.6692984687,18.4268858912],[-70.9999501207,18.2833287623],[-71.400209927,17.598564358],[-71.6576619127,17.7575727401],[-71.7083048164,18.0449970565]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-78.98,26.79],[-78.51,26.87],[-77.85,26.84],[-77.82,26.58],[-78.91,26.42],[-78.98,26.79]]],[[[-77.79,27.04],[-77,26.59],[-77.17255,25.87918],[-77.35641,26.00735],[-77.34,26.53],[-77.78802,26.92516],[-77.79,27.04]]],[[[-78.19087,25.2103],[-77.89,25.17],[-77.54,24.34],[-77.53466,23.75975],[-77.78,23.71],[-78.03405,24.28615],[-78.40848,24.57564],[-78.19087,25.2103]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-46.76379,82.62796],[-43.40644,83.22516],[-39.89753,83.18018],[-38.62214,83.54905],[-35.08787,83.64513],[-27.10046,83.51966],[-20.84539,82.72669],[-22.69182,82.34165],[-26.51753,82.29765],[-31.9,82.2],[-31.39646,82.02154],[-27.85666,82.13178],[-24.84448,81.78697],[-22.90328,82.09317],[-22.07175,81.73449],[-23.16961,81.15271],[-20.62363,81.52462],[-15.76818,81.91245],[-12.77018,81.71885],[-12.20855,81.29154],[-16.28533,80.58004],[-16.85,80.35],[-20.04624,80.17708],[-17.73035,80.12912],[-18.9,79.4],[-19.70499,78.75128],[-19.67353,77.63859],[-18.47285,76.98565],[-20.03503,76.94434],[-21.67944,76.62795],[-19.83407,76.09808],[-19.59896,75.24838],[-20.66818,75.15585],[-19.37281,74.29561],[-21.59422,74.22382],[-20.43454,73.81713],[-20.76234,73.46436],[-22.17221,73.30955],[-23.56593,73.30663],[-22.31311,72.62928],[-22.29954,72.18409],[-24.27834,72.59788],[-24.79296,72.3302],[-23.44296,72.08016],[-22.13281,71.46898],[-21.75356,70.66369],[-23.53603,70.471],[-24.30702,70.85649],[-25.54341,71.43094],[-25.20135,70.75226],[-26.36276,70.22646],[-23.72742,70.18401],[-22.34902,70.12946],[-25.02927,69.2588],[-27.74737,68.47046],[-30.67371,68.12503],[-31.77665,68.12078],[-32.81105,67.73547],[-34.20196,66.67974],[-36.35284,65.9789],[-37.04378,65.93768],[-38.37505,65.69213],[-39.81222,65.45848],[-40.66899,64.83997],[-40.68281,64.13902],[-41.1887,63.48246],[-42.81938,62.68233],[-42.41666,61.90093],[-42.86619,61.07404],[-43.3784,60.09772],[-44.7875,60.03676],[-46.26364,60.85328],[-48.26294,60.85843],[-49.23308,61.40681],[-49.90039,62.38336],[-51.63325,63.62691],[-52.14014,64.27842],[-52.27659,65.1767],[-53.66166,66.09957],[-53.30161,66.8365],[-53.96911,67.18899],[-52.9804,68.35759],[-51.47536,68.72958],[-51.08041,69.14781],[-50.87122,69.9291],[-52.013585,69.574925],[-52.55792,69.42616],[-53.45629,69.283625],[-54.68336,69.61003],[-54.75001,70.28932],[-54.35884,70.821315],[-53.431315,70.835755],[-51.39014,70.56978],[-53.10937,71.20485],[-54.00422,71.54719],[-55,71.4065369673],[-55.83468,71.65444],[-54.71819,72.58625],[-55.32634,72.95861],[-56.12003,73.64977],[-57.32363,74.71026],[-58.59679,75.09861],[-58.58516,75.51727],[-61.26861,76.10238],[-63.39165,76.1752],[-66.06427,76.13486],[-68.50438,76.06141],[-69.66485,76.37975],[-71.40257,77.00857],[-68.77671,77.32312],[-66.76397,77.37595],[-71.04293,77.63595],[-73.297,78.04419],[-73.15938,78.43271],[-69.37345,78.91388],[-65.7107,79.39436],[-65.3239,79.75814],[-68.02298,80.11721],[-67.15129,80.51582],[-63.68925,81.21396],[-62.23444,81.3211],[-62.65116,81.77042],[-60.28249,82.03363],[-57.20744,82.19074],[-54.13442,82.19962],[-53.04328,81.88833],[-50.39061,82.43883],[-48.00386,82.06481],[-46.59984,81.985945],[-44.523,81.6607],[-46.9007,82.19979],[-46.76379,82.62796]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-117.12776,32.53534],[-115.99135,32.61239],[-114.72139,32.72083],[-114.815,32.52528],[-113.30498,32.03914],[-111.02361,31.33472],[-109.035,31.34194],[-108.24194,31.34222],[-108.24,31.7548537182],[-106.50759,31.75452],[-106.1429,31.39995],[-105.63159,31.08383],[-105.03737,30.64402],[-104.70575,30.12173],[-104.45697,29.57196],[-103.94,29.27],[-103.11,28.97],[-102.48,29.76],[-101.6624,29.7793],[-100.9576,29.38071],[-100.45584,28.69612],[-100.11,28.11],[-99.52,27.54],[-99.3,26.84],[-99.02,26.37],[-98.24,26.06],[-97.53,25.84],[-97.1400083077,25.8699974635],[-97.528072476,24.9921440699],[-97.7029455228,24.2723430445],[-97.7760418363,22.9325798609],[-97.8723667061,22.4442117376],[-97.6990439522,21.8986894801],[-97.3889595202,21.4110189885],[-97.1893334623,20.6354332545],[-96.5255755277,19.8909308944],[-96.2921272448,19.3203714055],[-95.900884976,18.8280241968],[-94.8390634834,18.5627173935],[-94.4257295398,18.1443708358],[-93.5486512927,18.4238369817],[-92.7861138578,18.5248385686],[-92.0373481921,18.7045692001],[-91.4079034086,18.8760832789],[-90.7718698799,19.2841203883],[-90.5335898506,19.8674181178],[-90.4514759997,20.7075218775],[-90.2786183337,20.999855455],[-89.6013211739,21.2617257756],[-88.5438663399,21.493675442],[-87.6584165108,21.4588455266],[-87.0518902249,21.5435431991],[-86.811982388,21.3315147974],[-86.8459079658,20.8498646103],[-87.3832911852,20.2554047714],[-87.6210544502,19.6465530461],[-87.4367504544,19.4724034693],[-87.5865604317,19.0401301132],[-87.8371911283,18.2598159856],[-88.0906640287,18.5166478541],[-88.3000310941,18.4999822047],[-88.4901228503,18.4868305526],[-88.8483438789,17.883198147],[-89.0298573474,18.0015113388],[-89.15090939,17.9554676376],[-89.1430804105,17.8083189966],[-90.0679335192,17.8193260767],[-91.001519945,17.8175949162],[-91.0022692533,17.2546577011],[-91.4539212715,17.2521772323],[-91.0816700915,16.9184766708],[-90.7118218656,16.6874830185],[-90.6008467272,16.4707778996],[-90.4388669502,16.4101097681],[-90.4644726224,16.0695620793],[-91.7479601713,16.0665648463],[-92.2292486234,15.2514466415],[-92.0872159493,15.0645846623],[-92.2032295397,14.8301028508],[-92.2277500069,14.5388286402],[-93.3594638741,15.6154295923],[-93.8751688301,15.9401642929],[-94.6916564603,16.2009752466],[-95.250227017,16.1283181828],[-96.0533821277,15.7520879175],[-96.5574340482,15.6535151229],[-97.2635924955,15.9170649276],[-98.0130299548,16.1073117131],[-98.9476757475,16.5660434026],[-99.6973974271,16.7061640487],[-100.8294988676,17.1710710718],[-101.66608863,17.6490263941],[-101.9185280017,17.9160901962],[-102.478132087,17.9757506373],[-103.5009895496,18.2922946233],[-103.917527432,18.7485716822],[-104.9920096505,19.3161339381],[-105.4930384998,19.9467672795],[-105.7313960437,20.4341018743],[-105.3977729968,20.5317186549],[-105.5006607735,20.8168950465],[-105.2707523263,21.0762848984],[-105.265817227,21.4221035833],[-105.603160977,21.8711459417],[-105.693413866,22.2690803085],[-106.0287163969,22.7737523463],[-106.909980435,23.7677743596],[-107.9154487781,24.5489153102],[-108.4019048735,25.1723139511],[-109.2601987374,25.5806094426],[-109.4440893217,25.8248839381],[-109.2916438465,26.4429340683],[-109.8014576892,26.6761756454],[-110.3917317371,27.1621149765],[-110.6410188465,27.8598760035],[-111.1789188302,27.9412405462],[-111.7596068999,28.4679525823],[-112.2282346261,28.9544086777],[-112.2718236967,29.2668443873],[-112.8095944894,30.0211135931],[-113.1638105945,30.786880805],[-113.1486693999,31.170965888],[-113.8718810698,31.567608344],[-114.2057366606,31.5240451116],[-114.7764511788,31.7995321722],[-114.9366997954,31.3934846054],[-114.7712318592,30.9136172552],[-114.673899299,30.1626811793],[-114.3309744943,29.7504324407],[-113.5888750883,29.0616114365],[-113.4240531075,28.826173611],[-113.2719693673,28.7547826197],[-113.1400394357,28.4112893743],[-112.9622983468,28.4251903346],[-112.7615870838,27.7802167831],[-112.4579105294,27.525813707],[-112.2449519519,27.1717267929],[-111.6164890206,26.6628172877],[-111.2846746489,25.73258983],[-110.9878193836,25.2946062281],[-110.7100068836,24.8260043401],[-110.6550489978,24.2985946721],[-110.1728562081,24.2655475937],[-109.7718470935,23.8111825628],[-109.4091043771,23.3646723495],[-109.4333923002,23.1855876734],[-109.8542193266,22.8182715927],[-110.0313919747,22.8230775009],[-110.2950709705,23.4309732122],[-110.949501309,24.0009642603],[-111.670568407,24.4844231227],[-112.1820358956,24.7384127874],[-112.1489888172,25.4701252304],[-112.3007108224,26.0120042994],[-112.7772967192,26.3219595403],[-113.4646707833,26.7681855331],[-113.596729906,26.6394595403],[-113.8489367338,26.9000637884],[-114.4657466297,27.142090359],[-115.0551421782,27.7227267522],[-114.9822525704,27.7982001816],[-114.5703655669,27.7414852971],[-114.199328783,28.1150025498],[-114.1620183989,28.5661119654],[-114.9318422107,29.279479275],[-115.5186539376,29.5563615992],[-115.887365282,30.1807937688],[-116.2583503895,30.8364643418],[-116.7215262521,31.63574372],[-117.12776,32.53534]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-77.3533607653,8.6705046656],[-77.4747228665,8.5242862004],[-77.2425664944,7.9352782251],[-77.4311079577,7.6380612248],[-77.7534138659,7.7098397893],[-77.8815714179,7.2237712671],[-78.2149360827,7.5122549504],[-78.4291607327,8.0520411239],[-78.1820957099,8.3191824406],[-78.4354652575,8.3877053898],[-78.6221205309,8.7181244979],[-79.1203071764,8.9960920272],[-79.5578773668,8.9323749862],[-79.7605781725,8.5845150822],[-80.1644811673,8.3333159449],[-80.3826590644,8.2984085148],[-80.4806892565,8.090307522],[-80.0036899482,7.5475241154],[-80.2766707018,7.4197541366],[-80.4211580065,7.271571967],[-80.8864009264,7.2205414901],[-81.0595428128,7.8179210474],[-81.1897157458,7.6479055852],[-81.5195147366,7.7066100122],[-81.7213112047,8.1089627141],[-82.1314412096,8.1753927678],[-82.3909344144,8.2923623723],[-82.8200813464,8.2908637557],[-82.8509580146,8.0738227401],[-82.9657830472,8.225027981],[-82.9131764391,8.4235171574],[-82.8297706774,8.6262954777],[-82.8686571927,8.8072663436],[-82.7191831123,8.9257087264],[-82.9271549141,9.0743301457],[-82.932890998,9.4768120386],[-82.5461962552,9.5661347518],[-82.1871225654,9.2074486353],[-82.2075864326,8.9955752629],[-81.8085668607,8.9506167668],[-81.7141540189,9.0319554712],[-81.4392870755,8.7862340357],[-80.9473016019,8.8585035262],[-80.5219012113,9.1110720891],[-79.914599779,9.3127652043],[-79.5733027819,9.6116100122],[-79.0211917793,9.5529314234],[-79.058450487,9.4545653345],[-78.5008876207,9.4204588892],[-78.0559277005,9.2477304143],[-77.7295135159,8.9468443872],[-77.3533607653,8.6705046656]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-82.5461962552,9.5661347518],[-82.932890998,9.4768120386],[-82.9271549141,9.0743301457],[-82.7191831123,8.9257087264],[-82.8686571927,8.8072663436],[-82.8297706774,8.6262954777],[-82.9131764391,8.4235171574],[-82.9657830472,8.225027981],[-83.5084372627,8.4469265812],[-83.7114739652,8.6568362492],[-83.5963130358,8.8304432235],[-83.6326415677,9.0513858098],[-83.909885627,9.2908027206],[-84.3034016589,9.4873540308],[-84.6476442126,9.6155374211],[-84.7133507962,9.9080518661],[-84.9756603665,10.0867231307],[-84.9113748848,9.7959915227],[-85.1109234281,9.5570396997],[-85.3394882881,9.8345421411],[-85.6607865059,9.9333474797],[-85.7974448311,10.1348855656],[-85.7917087471,10.4393372665],[-85.6593137275,10.7543309595],[-85.94172543,10.8952784286],[-85.7125404528,11.0884449325],[-85.5618519762,11.2171192489],[-84.9030033027,10.9523033716],[-84.6730690173,11.0826571721],[-84.3559307523,10.9992255721],[-84.1901785957,10.7934500188],[-83.8950544909,10.7268390975],[-83.6556117419,10.9387641464],[-83.402319709,10.3954381372],[-83.0156766426,9.9929820826],[-82.5461962552,9.5661347518]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-83.6556117419,10.9387641464],[-83.8950544909,10.7268390975],[-84.1901785957,10.7934500188],[-84.3559307523,10.9992255721],[-84.6730690173,11.0826571721],[-84.9030033027,10.9523033716],[-85.5618519762,11.2171192489],[-85.7125404528,11.0884449325],[-86.0584883288,11.4034386255],[-86.5258499824,11.8068765324],[-86.745991584,12.1439619003],[-87.1675162422,12.4582579615],[-87.6684934151,12.9099099797],[-87.5574666003,13.0645517033],[-87.3923862373,12.9140182561],[-87.3166544258,12.9846857772],[-87.0057690091,13.0257943791],[-86.8805570137,13.2542042098],[-86.7338217842,13.2630925562],[-86.7550866361,13.7548454859],[-86.5207081774,13.7784874537],[-86.3121420967,13.771356106],[-86.0962638008,14.0381873641],[-85.8012947253,13.8360549992],[-85.6986653307,13.9600784367],[-85.5144130114,14.0790117457],[-85.1653645495,14.3543696151],[-85.1487505765,14.5601968449],[-85.0527874417,14.5515410425],[-84.9245006986,14.7904928655],[-84.8200367907,14.8195866968],[-84.6495820788,14.6668053248],[-84.4493359036,14.6216142847],[-84.228341641,14.7487641464],[-83.9757214017,14.74943594],[-83.6285849678,14.8800739608],[-83.4899887764,15.0162671981],[-83.147219001,14.9958291692],[-83.2332344225,14.8998660344],[-83.2841615465,14.6766238469],[-83.182126431,14.3107030298],[-83.4124999661,13.9700778264],[-83.519831916,13.5676992863],[-83.5522072008,13.1270543482],[-83.4985153877,12.8692923039],[-83.473323127,12.4190872258],[-83.626104499,12.320850328],[-83.7196130033,11.8931244979],[-83.6508575101,11.6290320907],[-83.8554703438,11.3733112655],[-83.8089357165,11.1030435246],[-83.6556117419,10.9387641464]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-83.147219001,14.9958291692],[-83.4899887764,15.0162671981],[-83.6285849678,14.8800739608],[-83.9757214017,14.74943594],[-84.228341641,14.7487641464],[-84.4493359036,14.6216142847],[-84.6495820788,14.6668053248],[-84.8200367907,14.8195866968],[-84.9245006986,14.7904928655],[-85.0527874417,14.5515410425],[-85.1487505765,14.5601968449],[-85.1653645495,14.3543696151],[-85.5144130114,14.0790117457],[-85.6986653307,13.9600784367],[-85.8012947253,13.8360549992],[-86.0962638008,14.0381873641],[-86.3121420967,13.771356106],[-86.5207081774,13.7784874537],[-86.7550866361,13.7548454859],[-86.7338217842,13.2630925562],[-86.8805570137,13.2542042098],[-87.0057690091,13.0257943791],[-87.3166544258,12.9846857772],[-87.4894087389,13.2975348983],[-87.7931111315,13.3844804957],[-87.7235029772,13.7850503606],[-87.859515347,13.8933124862],[-88.0653425768,13.9646259628],[-88.5039979723,13.8454859481],[-88.5412308418,13.9801547307],[-88.8430728828,14.1405067001],[-89.0585119291,14.3400294052],[-89.3533259753,14.4241327987],[-89.145535041,14.6780191106],[-89.2252200996,14.8742862004],[-89.1548109606,15.0664191757],[-88.6806796944,15.3462470565],[-88.2250227526,15.7277224797],[-88.1211531237,15.6886550969],[-87.9018125069,15.8644583196],[-87.6156801013,15.8787985295],[-87.5229209053,15.7972789576],[-87.3677624173,15.846940009],[-86.903191291,15.7567129582],[-86.4409456042,15.7828353948],[-86.1192339749,15.8934487981],[-86.0019543119,16.0054057886],[-85.6833174303,15.9536518417],[-85.4440038724,15.8857490097],[-85.1824436104,15.9091584335],[-84.98372189,15.9959231633],[-84.5269797432,15.857223619],[-84.3682555814,15.8351577824],[-84.0630545723,15.6482441268],[-83.77397661,15.4240717636],[-83.4103812324,15.2709028183],[-83.147219001,14.9958291692]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-89.3533259753,14.4241327987],[-89.0585119291,14.3400294052],[-88.8430728828,14.1405067001],[-88.5412308418,13.9801547307],[-88.5039979723,13.8454859481],[-88.0653425768,13.9646259628],[-87.859515347,13.8933124862],[-87.7235029772,13.7850503606],[-87.7931111315,13.3844804957],[-87.9041121081,13.1490168319],[-88.4833015612,13.1639513208],[-88.8432279121,13.2597335881],[-89.2567427233,13.4585328231],[-89.8123935615,13.5206220565],[-90.0955545723,13.7353376327],[-90.064677904,13.8819695093],[-89.7219339668,14.1342280136],[-89.5342193265,14.2448155787],[-89.5873426989,14.3625861679],[-89.3533259753,14.4241327987]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-92.2277500069,14.5388286402],[-92.2032295397,14.8301028508],[-92.0872159493,15.0645846623],[-92.2292486234,15.2514466415],[-91.7479601713,16.0665648463],[-90.4644726224,16.0695620793],[-90.4388669502,16.4101097681],[-90.6008467272,16.4707778996],[-90.7118218656,16.6874830185],[-91.0816700915,16.9184766708],[-91.4539212715,17.2521772323],[-91.0022692533,17.2546577011],[-91.001519945,17.8175949162],[-90.0679335192,17.8193260767],[-89.1430804105,17.8083189966],[-89.1508060371,17.0155766871],[-89.2291216703,15.8869375676],[-88.9306127591,15.8872734644],[-88.6045861478,15.7063801132],[-88.5183640205,15.8553891057],[-88.2250227526,15.7277224797],[-88.6806796944,15.3462470565],[-89.1548109606,15.0664191757],[-89.2252200996,14.8742862004],[-89.145535041,14.6780191106],[-89.3533259753,14.4241327987],[-89.5873426989,14.3625861679],[-89.5342193265,14.2448155787],[-89.7219339668,14.1342280136],[-90.064677904,13.8819695093],[-90.0955545723,13.7353376327],[-90.6086240303,13.9097714299],[-91.2324102445,13.927832343],[-91.6897466703,14.1262181666],[-92.2277500069,14.5388286402]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-89.1430804105,17.8083189966],[-89.15090939,17.9554676376],[-89.0298573474,18.0015113388],[-88.8483438789,17.883198147],[-88.4901228503,18.4868305526],[-88.3000310941,18.4999822047],[-88.2963362292,18.3532728134],[-88.1068129138,18.3486736109],[-88.1234785632,18.0766747095],[-88.2853549873,17.6441429713],[-88.1978667875,17.4894754094],[-88.3026407539,17.1316936304],[-88.2395179919,17.0360663925],[-88.3554282295,16.5307742375],[-88.5518245104,16.2654674341],[-88.7324336413,16.2336347519],[-88.9306127591,15.8872734644],[-89.2291216703,15.8869375676],[-89.1508060371,17.0155766871],[-89.1430804105,17.8083189966]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-66.282434455,18.5147616643],[-65.7713028632,18.4266791855],[-65.5910037909,18.2280349797],[-65.8471638658,17.9759056666],[-66.599934455,17.9818226181],[-67.1841623603,17.946553453],[-67.2424275377,18.3744601506],[-67.1006790839,18.5206011011],[-66.282434455,18.5147616643]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-77.5696007962,18.4905254176],[-76.8966186185,18.4008668075],[-76.3653590563,18.1607005884],[-76.1996585761,17.8868671737],[-76.9025614082,17.8682378199],[-77.2063413154,17.7011162379],[-77.7660229153,17.8615973983],[-78.3377192858,18.2259679224],[-78.21772661,18.4545327825],[-77.7973646715,18.5242184514],[-77.5696007962,18.4905254176]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-82.2681512113,23.1886107447],[-81.4044571601,23.1172714299],[-80.6187686836,23.1059801295],[-79.6795236885,22.7653032496],[-79.2814859687,22.399201565],[-78.3474344551,22.512166246],[-77.9932958646,22.2771935084],[-77.1464224922,21.6578514674],[-76.5238248359,21.2068195663],[-76.194620124,21.2205654973],[-75.5982224189,21.0166244573],[-75.6710603502,20.7350912541],[-74.9338960436,20.6939051376],[-74.1780248685,20.2846277939],[-74.2966481188,20.0503785263],[-74.9615946113,19.9234353704],[-75.6346801419,19.8737743189],[-76.3236561754,19.9528909368],[-77.7554809232,19.8554808619],[-77.0851084052,20.4133537867],[-77.4926545885,20.6731053736],[-78.1372922431,20.7399488388],[-78.4828267077,21.0286133896],[-78.7198665026,21.5981135116],[-79.2849999661,21.5591753199],[-80.2174753486,21.8273243271],[-80.5175345527,22.0370789657],[-81.8209433662,22.1920565862],[-82.1699918281,22.3871092799],[-81.7950017972,22.63696483],[-82.7758979967,22.6881503362],[-83.4944587878,22.1685179713],[-83.9088004219,22.1545653346],[-84.0521508451,21.9105750595],[-84.5470301989,21.8012277288],[-84.9749110583,21.8960281438],[-84.4470621406,22.204949856],[-84.2303570218,22.5657547063],[-83.7782399157,22.7881183945],[-83.2675475736,22.9830418971],[-82.5104361641,23.0787466497],[-82.2681512113,23.1886107447]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-61.68,10.76],[-61.105,10.89],[-60.895,10.855],[-60.935,10.11],[-61.77,10],[-61.95,10.09],[-61.66,10.365],[-61.68,10.76]]]]}\"]\n",
       "},\n",
       "\"data\":{\n",
       "}\n",
       "}],\n",
       "\"theme\":{\n",
       "\"name\":\"bw\"\n",
       "}\n",
       "};\n",
       "           var plotContainer = document.getElementById(\"SCG5ni\");\n",
       "           window.letsPlotCall(function() {{\n",
       "               LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer);\n",
       "           }});\n",
       "       })();    \n",
       "   </script>"
      ]
     },
     "execution_count": 11,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "letsPlot() + geomMap(map = northAmSds, fill = \"blue\", color = \"white\", size = 1)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "proud-capture",
   "metadata": {},
   "source": [
    "#### 3. Reproject North America Feature Collection Using the *Conus Albers* Projection\n"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "id": "sized-trading",
   "metadata": {},
   "outputs": [],
   "source": [
    "import org.geotools.referencing.CRS\n",
    "import org.geotools.data.store.ReprojectingFeatureCollection"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 13,
   "id": "numeric-stevens",
   "metadata": {},
   "outputs": [],
   "source": [
    "val сonusAlbers = CRS.decode(\"EPSG:5070\", true)\n",
    "\n",
    "val northAmAlbersFc = ReprojectingFeatureCollection(northAmFc, сonusAlbers)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "id": "likely-tokyo",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/plain": [
       "NAD83 / Conus Albers"
      ]
     },
     "execution_count": 14,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "val northAmAlbersSds = northAmAlbersFc.toSpatialDataset(10)\n",
    "northAmAlbersSds.crs"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "comic-result",
   "metadata": {},
   "source": [
    "#### 4. A Map of North America in the *Conus Albers* Projection\n"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "infrared-orbit",
   "metadata": {},
   "source": [
    "##### 4.1. Lets-Plot doesn't Support the *Conus Albers* Projection"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "id": "scenic-nebraska",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "java.lang.IllegalArgumentException: Geometry must use WGS84 coordinate reference system but was: NAD83 / Conus Albers.\n"
     ]
    }
   ],
   "source": [
    "// This attempt to create a map will fail with the error shown below.\n",
    "\n",
    "// letsPlot() + geomMap(map = northAmAlbertsSds)\n",
    "\n",
    "val p = letsPlot() + geomMap(map = northAmAlbersSds)\n",
    "\n",
    "try {\n",
    "    p.toSpec()\n",
    "} catch(e:Exception) {\n",
    "    println(e)\n",
    "}"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "labeled-plant",
   "metadata": {},
   "source": [
    "##### 4.2. A Map in the Conus Albers Projection with the Help of the `useCRS = \"provided\"` parameter"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 16,
   "id": "hispanic-psychiatry",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "   <div id=\"Oonz2N\"></div>\n",
       "   <script type=\"text/javascript\" data-lets-plot-script=\"plot\">\n",
       "       (function() {\n",
       "           var plotSpec={\n",
       "\"mapping\":{\n",
       "},\n",
       "\"kind\":\"plot\",\n",
       "\"scales\":[],\n",
       "\"layers\":[{\n",
       "\"mapping\":{\n",
       "},\n",
       "\"stat\":\"identity\",\n",
       "\"size\":1.0,\n",
       "\"color\":\"white\",\n",
       "\"position\":\"identity\",\n",
       "\"map_data_meta\":{\n",
       "\"geodataframe\":{\n",
       "\"geometry\":\"geometry\"\n",
       "}\n",
       "},\n",
       "\"geom\":\"map\",\n",
       "\"fill\":\"blue\",\n",
       "\"map\":{\n",
       "\"continent\":[\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\",\"North America\"],\n",
       "\"pop_est\":[3.562368E7,3.26625791E8,1.0646714E7,1.0734247E7,329988.0,57713.0,1.24574795E8,3753142.0,4930258.0,6025951.0,9038741.0,6172011.0,1.5460732E7,360346.0,3351827.0,2990561.0,1.1147407E7,1218208.0],\n",
       "\"gdp_md_est\":[1674000.0,1.856E7,19340.0,161900.0,9066.0,2173.0,2307000.0,93120.0,79260.0,33550.0,43190.0,54790.0,131800.0,3088.0,131000.0,25390.0,132900.0,43570.0],\n",
       "\"name\":[\"Canada\",\"United States of America\",\"Haiti\",\"Dominican Rep.\",\"Bahamas\",\"Greenland\",\"Mexico\",\"Panama\",\"Costa Rica\",\"Nicaragua\",\"Honduras\",\"El Salvador\",\"Guatemala\",\"Belize\",\"Puerto Rico\",\"Jamaica\",\"Cuba\",\"Trinidad and Tobago\"],\n",
       "\"iso_a3\":[\"CAN\",\"USA\",\"HTI\",\"DOM\",\"BHS\",\"GRL\",\"MEX\",\"PAN\",\"CRI\",\"NIC\",\"HND\",\"SLV\",\"GTM\",\"BLZ\",\"PRI\",\"JAM\",\"CUB\",\"TTO\"],\n",
       "\"geometry\":[\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-1962162.0796495487,3167163.097101055],[-1971631.33074739,3170208.4743936523],[-2076663.9008445076,3314459.0807298115],[-2111853.002828742,3375171.1510141804],[-2221695.4594676145,3459288.8236033916],[-2227824.1884826533,3563182.4937188616],[-2196446.369455443,3622539.992593973],[-2265470.645389314,3695822.5477558663],[-2247253.756806443,3781317.6754426705],[-2297783.5038718637,3882894.6583770346],[-2279662.4308907003,3934591.233592984],[-2279661.5345207453,3934593.789406535],[-2226676.871292069,3969181.8917357167],[-2205134.6437999844,4032098.4718646137],[-2285796.2208547997,4134511.07668129],[-2303335.7245444385,4269224.91059047],[-2312239.2160986145,4352691.53007563],[-2347788.246044502,4417631.2618208015],[-2370214.4357683077,4472621.914312121],[-2379540.8500581738,4533817.919809668],[-2449920.3527098177,4529454.090556661],[-2529047.7823743145,4503356.071916425],[-2550906.865007834,4587434.4388662735],[-2570754.880631585,4646022.54505142],[-2612350.020264374,4697506.818136281],[-2665068.639133003,4727493.945760321],[-2416106.7749047326,5212749.844617102],[-2268904.2079576235,5499339.429151958],[-2268903.6906349924,5499339.015879536],[-2190263.400071771,5437730.385676528],[-2132609.368382754,5365612.865521006],[-2085617.1855522713,5335422.653821517],[-2028916.6433653587,5348371.854336982],[-1960174.5765936857,5346739.486453629],[-1892148.9145199908,5307303.631439622],[-1805885.1258562636,5311770.280824968],[-1719029.3754845255,5300407.033572993],[-1697094.0353509267,5256250.24091793],[-1653956.319826054,5261124.053266379],[-1630307.7926200342,5293279.711140162],[-1599349.04312845,5273417.149982377],[-1538893.639224047,5175826.177833077],[-1455733.6981155814,5207970.438962],[-1467331.541024498,5146213.75922908],[-1401552.5449986889,5140716.901356795],[-1375848.4009495499,5158309.849930885],[-1316191.4019332621,5136585.730964642],[-1247565.4839398272,5082363.442307126],[-1134770.6995657252,5023204.507231779],[-1066636.9362906236,4993281.502477083],[-1014613.3155128513,4987881.722628053],[-952449.8344745794,4931621.698883114],[-1034958.684602252,4904364.798412842],[-942621.574769696,4867243.680405817],[-796897.2787717332,4852668.466847604],[-749145.8659038696,4860748.266006594],[-699319.8845794856,4800819.982821625],[-635104.8869645442,4837013.146131476],[-684828.1732993624,4880421.368680819],[-646772.274307858,4904890.569575072],[-581921.4390881986,4900909.173198058],[-538670.6728643156,4904621.960184991],[-497968.5792794434,4880034.484654497],[-448641.4079195264,4828573.416023744],[-388152.9044148843,4830525.84483693],[-295549.5033842303,4785102.989443234],[-210920.5222926062,4794789.431153976],[-132143.8306584179,4790068.207798964],[-136937.5508263008,4843941.626928241],[-89095.4488114016,4857804.320144942],[-6436.2346584718,4827980.855467985],[-6865.7856278468,4745610.041750009],[27473.840773741,4815236.849875754],[70790.5251318748,4813331.857092465],[93537.0603138391,4899397.533246946],[36460.7695460007,4950028.979822379],[-24528.7221459754,4983097.006580583],[-19992.8155741247,5071540.827491813],[39971.5864676899,5127951.147594166],[106864.9483946669,5116659.86678516],[159218.1123351659,5083826.242580189],[232699.7849580953,4996784.541473889],[188161.6705734993,4954629.635332263],[286427.7427048089,4942550.714056304],[291133.120256781,4856524.06909566],[357704.3580518042,4927203.32616598],[425149.4668169013,4877986.870860039],[414468.4013651267,4813106.578514259],[471889.7104605772,4758745.059871739],[522221.4234476272,4827175.074377626],[553263.884515092,4904892.06482016],[546081.983380119,4996191.357023572],[620571.1258542722,4998656.923152853],[698884.1598500774,4996899.8775875745],[774837.7921804925,4966460.42614168],[784473.49806856,4925554.402358351],[751989.345257782,4874405.515900228],[796653.1816250222,4834182.10467686],[796385.1013122246,4790831.479497264],[698645.5323406524,4713663.69954605],[623889.1064950261,4690193.943648463],[563942.8635309055,4710644.909349809],[552291.152529119,4663870.366876571],[506137.2235436884,4581712.359320108],[493413.2624955332,4539797.121899745],[432625.1372143422,4470941.510140195],[350765.8401181465,4458803.798892257],[307540.0032275339,4416070.943294604],[307130.1599242967,4353733.769776558],[239373.9785767066,4338345.219899583],[169730.4456673274,4257075.689916005],[107044.8665344295,4144559.0054991753],[84576.9496100037,4065422.4140830208],[82791.5859008622,3947906.9894838934],[175765.8737518621,3932911.364816228],[207451.8224592779,3837784.436064252],[240479.2506812454,3760389.6936363946],[330179.1609065385,3785087.155281269],[453531.2518410964,3747827.3632610985],[521849.3722631152,3713408.114129884],[573148.6970704438,3668209.9315205817],[658662.0618441784,3647522.302444942],[733767.821501184,3611129.0124634546],[844236.0159832486,3618787.16417422],[917871.673506214,3618757.8441363815],[920100.7539721772,3526191.1633946574],[956695.5505461931,3422916.3912276328],[1024692.1854365217,3311301.2918210453],[1145504.0327859176,3226732.123998682],[1193525.9259612798,3271016.408084148],[1211174.5929750728,3387242.0832159934],[1145289.0648602345,3547368.021622308],[1088408.7352574412,3594235.36792032],[1185720.9505907733,3662284.69460972],[1245744.726526891,3749348.421885472],[1266909.264923509,3828242.917501652],[1247558.8447507278,3895334.4595061126],[1187248.711264501,3972687.7003754727],[1096920.3320457435,4033812.8533986392],[1149302.4075431756,4152120.2438691664],[1105506.1667238218,4235912.91647193],[1056709.0117903098,4383068.230785577],[1092951.4160428592,4412948.219508828],[1197884.081045354,4407733.037440051],[1259647.2037374668,4411774.653300683],[1301781.865106882,4447826.483974179],[1363367.7851897296,4428844.056629846],[1448909.3245731292,4391991.8188472185],[1476399.9385117171,4359596.397487098],[1582699.9677706284,4381061.839538298],[1603908.4502255027,4300004.39749412],[1659026.2092260306,4182912.2749284487],[1718740.219604807,4183855.3838278153],[1780230.9215410084,4139487.3171290313],[1850693.4461509855,4221372.722739527],[1872466.3640293768,4346383.665291951],[1896134.7208342897,4403711.598613856],[1971232.526798814,4334624.18059601],[2092643.5199328836,4240017.745936912],[2202884.6183282007,4148808.513589348],[2201492.3409283943,4078189.068367348],[2304782.940472252,4054471.316249124],[2382788.265063837,4020636.8595699463],[2492243.6843931885,4036238.734407153],[2545380.595413791,4022126.0914088055],[2606024.1325349878,3950124.3307612487],[2660714.718187259,3958703.8175246655],[2702537.8777571917,3933165.8343926105],[2756951.2486446993,3824955.8085578457],[2726713.913335628,3766882.41720197],[2695233.0396187925,3711548.3467152193],[2601762.9924103185,3630059.8378597926],[2551220.5811575833,3512967.20019002],[2442945.818973692,3452008.16274257],[2288937.280377958,3420367.618870184],[2185620.94703495,3385779.626479048],[2116497.420223175,3355152.034342529],[2081895.2543905575,3261838.5613204236],[2006142.1059763143,3187913.1174647384],[1943033.6081973088,3017965.122376447],[1885624.8941907503,2896362.1514626606],[1943534.0987430655,2931024.606284109],[2020275.482682753,3103960.8141917964],[2142476.681948201,3237459.3566947267],[2244055.62141408,3282382.6826758604],[2323574.634153384,3252712.2604272966],[2280722.4980083336,3159873.2238193303],[2341674.6544017377,3054814.8304777313],[2392492.7415632647,2983864.185501034],[2505962.0257537146,2965047.5631840904],[2620969.9273754666,3024703.5566793922],[2648208.5952725974,3168763.5007817373],[2682517.3823911413,3095911.055664103],[2743826.2224579593,3076981.741963251],[2680586.927264386,2973922.008643601],[2540151.9160318207,2851008.4842035356],[2480926.5500328424,2782298.4515892495],[2422172.073098014,2677419.155844887],[2361619.3880161652,2666091.4728186666],[2329539.8143041036,2754909.709148669],[2430190.5092823426,2885674.15664218],[2312357.064131495,2842285.2859349386],[2233377.229699031,2802803.658689486],[2165909.7021184694,2847694.956551166],[2121757.5101937084,2992276.127650331],[2080138.518263774,3012990.4325071215],[2036569.892691444,2980463.434196964],[2004194.2632730384,3001290.85285907],[1971087.3598793556,2905037.7298447005],[1971578.8446464615,2815597.4103208585],[1958311.2517874977,2759523.8268498383],[1930702.182672351,2734223.936039169],[1907881.0981791052,2722359.1996236076],[1907290.6909397608,2693806.5378929055],[1766667.4795375846,2658096.4657843886],[1650386.738893731,2630036.3705966715],[1620136.1925181146,2602283.045511138],[1555014.7463562721,2506192.3451610715],[1547018.7822164253,2495654.799276705],[1530691.4786074513,2447899.9044029634],[1458361.9732697464,2433495.0240392336],[1380882.1945509864,2418384.822426849],[1348313.8610351493,2394469.553857018],[1365027.8164823707,2375203.477963666],[1378270.4296622556,2342982.876103864],[1378747.503898111,2331556.594864778],[1283219.577417784,2258463.673677121],[1202698.5345625298,2227637.575178975],[1116977.0745145231,2154390.9223654624],[1096454.6309533543,2151470.076863026],[1066244.4367535957,2165080.69971463],[1054922.015299271,2179666.5583000816],[1055139.2225424403,2191472.9565993263],[1067670.2660477622,2232704.658635914],[1096972.5535391697,2298921.0684996326],[1110846.6877888367,2367632.278160999],[1081039.5715726935,2461206.0934344484],[1050039.3118233895,2558800.477953714],[962383.0847465564,2599443.389284483],[969296.7512035253,2620265.7589352904],[956259.864915948,2632230.1301359753],[935169.3050865568,2629497.1280118334],[917524.6220840265,2644978.5660192044],[910404.2001497207,2670544.3854656895],[896944.6195888504,2657314.172857906],[876010.4790766946,2658205.00485948],[879368.124883287,2669672.606479909],[860092.6138453034,2678344.9064984936],[849302.467818051,2706395.743576294],[786428.142571924,2734908.471866041],[721422.6484667688,2765099.6429553516],[643837.5376916396,2800561.690276295],[570219.6058970414,2834425.8916235925],[505602.343287501,2798248.833708265],[481129.9795224614,2795471.813822263],[387206.7330259065,2818456.1429142132],[327245.3400053902,2801104.648013423],[253258.2472967418,2832260.8302643863],[176573.9810396192,2847470.765902832],[124418.7022528551,2853126.3053218713],[101006.3115886668,2871365.1434612023],[87068.352322567,2931459.6549564605],[62147.3839611647,2930667.6016337415],[62301.1175797098,2888497.744589838],[-91028.5217285785,2888887.461852206],[-344366.620403279,2896648.7544007637],[-595559.4021808942,2913440.448203465],[-816816.7558392436,2935763.4195607184],[-1037133.043643951,2965028.5149031277],[-1252770.8196544913,3000572.718818861],[-1474314.910920819,3044311.964231339],[-1545449.80389644,3059930.431109177],[-1759245.2129622877,3111553.1454017707],[-1962162.0796495487,3167163.097101055]]],[[[709734.625737535,4341125.031776181],[747444.4379092618,4391052.653403633],[827536.8428192898,4401527.155319872],[829065.050526108,4382847.021458538],[767969.2775578344,4319999.900984281],[725988.008859981,4316681.760906812],[709734.625737535,4341125.031776181]]],[[[804401.1131073118,5263015.667291851],[744181.3068640878,5292311.172009021],[742135.0278540516,5318150.855232788],[764678.6491757575,5326631.485535841],[876719.5247557564,5338844.884937354],[968005.103107436,5316703.132912642],[976491.9685434904,5297747.794117769],[924207.246107964,5289226.221029477],[871269.5113710476,5280578.712989824],[819392.1606886926,5261062.094920538],[804401.1131073118,5263015.667291851]]],[[[931299.6686397264,4337509.962239023],[949084.860881365,4370145.144255186],[973388.395282819,4372189.551400383],[991745.3549990898,4355159.546569626],[977569.6811643192,4300415.916885546],[949987.576730814,4304165.497157742],[929653.923608061,4330396.313804503],[931299.6686397264,4337509.962239023]]],[[[115067.4395686303,5349209.764135185],[89351.154366502,5322403.588675139],[18950.975245852,5326656.625649728],[-39603.7384106363,5344421.390361853],[-13831.4932490176,5374174.79495985],[54864.5992411808,5392046.598542985],[97029.7989441207,5369834.660987345],[115067.4395686303,5349209.764135185]]],[[[100505.4331098188,5507769.653379512],[79338.3147347477,5505678.282096033],[-7891.1163519258,5508665.159858189],[-20220.3153593711,5524701.395762352],[73115.5424524937,5524432.2781622475],[105899.4814644783,5514492.306447349],[100505.4331098188,5507769.653379512]]],[[[-34556.3631164134,5575890.683155288],[20274.6535807527,5557131.081397989],[7842.5826730331,5537170.100978507],[-60689.840913597,5525978.02372721],[-98129.3986384936,5539705.528245087],[-117368.471739983,5560822.693351993],[-120392.620392973,5583025.818734915],[-61203.2515856437,5579684.567083959],[-34556.3631164134,5575890.683155288]]],[[[381266.8553568883,5323563.237744379],[302426.4400033588,5326207.299373892],[172779.1595987397,5341451.789909662],[154840.7832051006,5377377.017041368],[147965.0002967713,5409277.16922517],[99601.840772689,5435517.6640562],[1772.5492625561,5442001.572951732],[-52719.8634900891,5461308.298641851],[-34838.1619502499,5485758.042897916],[61576.3382674697,5482277.21996502],[114009.4440691903,5463983.966515785],[206477.0261517076,5467438.74999554],[248105.8361161456,5449375.267259957],[238609.5230454833,5425334.6664854195],[293901.9513804924,5414180.939427984],[325166.2252877589,5400974.985020065],[389641.6151478652,5403201.234412485],[459629.989899655,5404287.380570176],[533587.2115858702,5426583.036280457],[629163.3259630662,5444475.451738722],[706450.1641526147,5451416.516845833],[760967.807443246,5435439.430959932],[776194.7895625646,5410127.035185058],[749442.59212437,5387387.694267928],[680262.5228768594,5361644.497213862],[617566.178286465,5361160.17606808],[480527.9183882308,5334088.344954077],[381266.8553568883,5323563.237744379]]],[[[-701532.6560532982,5598968.197816408],[-638483.616302479,5580394.977264728],[-656215.3279496226,5565889.090870283],[-744467.6753523026,5563211.353112356],[-809086.5332087296,5593681.560452699],[-768968.3189318926,5604673.423691756],[-701532.6560532982,5598968.197816408]]],[[[-682290.4664359998,5631626.086261873],[-624966.045607548,5612015.018879939],[-681893.8562863678,5609962.246023982],[-757253.9873233548,5622590.408580509],[-755182.7412113226,5630072.915980925],[-706142.249653316,5637917.843227084],[-682290.4664359998,5631626.086261873]]],[[[2799358.2215820868,3745495.19517278],[2792497.6596797085,3667269.8980590943],[2787119.7227943502,3560464.39619218],[2815755.97112053,3613497.2251440026],[2870008.1784067145,3612225.2303961054],[2862324.610857346,3566862.741169641],[2934181.3484069775,3566576.270180398],[2953729.432238152,3605100.127675537],[3034514.7487921063,3606041.3103055665],[3048493.4551613317,3523525.2668181364],[3087372.918353212,3563079.1298573297],[3121473.859691457,3514695.659731848],[3172631.3876690627,3463356.8858658345],[3186452.168189441,3361775.490480733],[3156942.4071988394,3342967.368172111],[3102395.620138018,3340200.676352474],[3078710.0242393888,3429065.6220669784],[3053672.7733534803,3432763.5958239683],[3013855.692555092,3308711.286337235],[2970657.8403986604,3293426.5722559113],[2998302.975307866,3362957.3592847716],[2920949.883883687,3357545.953381951],[2849080.9255129504,3318884.5395956677],[2712232.930666982,3265206.534836095],[2689195.4781876896,3291126.1770212622],[2717836.3300518054,3344772.4178420757],[2676380.5040820106,3360101.91120346],[2708800.5585500654,3445104.878095756],[2710229.2341053034,3634933.7828315967],[2726378.051086103,3709457.3671179167],[2767721.7318712785,3768722.6117850514],[2799734.3125687353,3777985.2909635287],[2799358.2215820868,3745495.19517278]]],[[[684215.0889634226,4591940.130753161],[750077.3729637918,4568649.735676676],[819017.4796134311,4549301.824257069],[830809.884149072,4505818.824371221],[871618.698702987,4519681.040225444],[917456.3730644241,4495424.28655978],[871385.7415984455,4457485.397421458],[778444.520786275,4466643.353186465],[740383.6642486806,4504390.058747085],[690042.7859562982,4446905.3519248115],[613328.8401170702,4387987.209305331],[587352.3725334756,4441420.626808671],[509884.2446884896,4424499.243563163],[555452.9722788392,4476079.722460041],[555212.3242277818,4550238.386333048],[565539.9639325122,4636221.206668569],[606611.499732718,4633274.360422927],[621627.1901047502,4594327.779424055],[648623.1926242522,4611865.329121634],[684215.0889634226,4591940.130753161]]],[[[859772.2313218554,5238703.493684467],[900774.7358829218,5276641.177315222],[1017203.8156566516,5261933.440512577],[1092985.1192514922,5241759.627247926],[1107102.2139791045,5210297.265278641],[1194729.5168782223,5249889.065125373],[1258861.8034007405,5215000.9987034295],[1387091.1357879813,5218240.812095593],[1439708.0900182598,5199957.753255297],[1509957.7751955076,5140793.31264758],[1428262.3813165585,5074824.92476171],[1565226.1981075986,5058459.895348504],[1652490.7899182516,5067267.818712544],[1752986.0441609703,5016725.567978977],[1836123.058733103,5040885.730836327],[1842067.8525939947,4975849.0006668875],[1785522.0887236013,4842259.43755413],[1706931.0184486432,4856963.687390434],[1596243.5217427304,4912818.241430292],[1531086.1739179702,4880741.935167162],[1539417.4129863298,4828884.321821873],[1611774.1986965446,4795222.219422749],[1698333.0703920003,4778160.517395298],[1728532.2802739542,4761986.287856581],[1794221.7529403449,4685249.354287705],[1797340.1045125562,4613323.29569894],[1718592.680372298,4614813.61134471],[1556132.1269923034,4644749.741413687],[1659017.0097555416,4589747.095325763],[1735391.3194461511,4552581.862879165],[1755118.6549702622,4523148.062559676],[1589203.1065823177,4512647.91514978],[1451895.3940325142,4532412.442114034],[1371392.4180233574,4559619.01427358],[1384356.7360511022,4590722.90683121],[1288911.0298611694,4616911.450485196],[1197325.9356621278,4642142.123404245],[1204209.3629878783,4615879.115412038],[1044889.9641206536,4566987.458185139],[991238.5015674148,4589569.16065834],[1015280.183513541,4663679.559067719],[1118838.3895601165,4686383.235452449],[1229422.1239745421,4723286.538446588],[1203716.2407505396,4750820.875893629],[1212319.7736147528,4799293.105961808],[1260914.6173093598,4900511.407393705],[1237042.302186279,4934521.0270815],[1209740.3140540796,4958424.078989799],[1120279.3599543748,4980192.925682671],[1008770.038822939,4985722.224955379],[1037661.509600706,5013470.618020867],[972729.4047304092,5052884.2368842345],[926597.7975261824,5048675.37932618],[881105.4969141782,5068533.123128747],[857884.3876542916,5039907.402843391],[766091.2573365528,5013981.703254049],[575231.118310592,5006477.597012347],[463286.6989646312,5018681.746720773],[378493.6317908591,5023645.343652678],[333628.0689434159,5048632.139397389],[384449.5330491444,5088578.340175919],[312039.999842059,5083715.045409472],[291120.1397850205,5160594.466133851],[325088.238443328,5229401.743648649],[373563.628173238,5262640.42762787],[498170.055007964,5293356.8182551265],[466858.9148400112,5243412.70340647],[510625.7321811604,5201699.550250961],[549636.8841503144,5265763.672983501],[669569.4162358994,5311206.306467267],[764934.38386905,5249901.117887493],[765468.0842454894,5200130.134953732],[859772.2313218554,5238703.493684467]]],[[[73040.0119174167,5290525.0761907855],[174805.330660836,5290806.410680026],[268980.2281434619,5278182.178310034],[198526.0925878826,5210397.189668329],[139733.6197316286,5193958.592985286],[87299.5170884934,5136528.966611798],[29747.3718574803,5138666.684686633],[-1677.6535446124,5204314.55923864],[-901.2476592311,5240493.494366244],[24713.9546523608,5270877.650870274],[73040.0119174167,5290525.0761907855]]],[[[-1256791.221581411,5600469.703339413],[-1256791.25835799,5600469.71401767],[-1167205.768290919,5623268.975122111],[-1064675.9717564206,5636237.266363273],[-995438.6785841176,5618828.5875352835],[-931343.6942916182,5613200.863009157],[-947180.200071262,5570348.592729508],[-987132.0792855044,5557544.072732681],[-1030755.5468435022,5564528.209179406],[-1122582.0843418455,5559606.717106554],[-1198595.1818198187,5569744.389048596],[-1256791.221581411,5600469.703339413]]],[[[-2446750.220409378,3913129.043082249],[-2382720.243141906,3896656.1457718895],[-2446738.071865027,3791263.4260826055],[-2421776.5719271214,3688307.1245273966],[-2447866.104834554,3698719.4069086895],[-2468986.1131237336,3760178.4976848746],[-2474377.001652525,3815728.7880434543],[-2494099.564998262,3859864.903462551],[-2487944.9375471435,3908214.570406148],[-2471186.2523115645,3938117.1731183175],[-2446750.220409378,3913129.043082249]]],[[[-431314.8678774894,5625146.126239041],[-342881.4673633835,5610210.035301572],[-220837.8097106556,5583196.173429204],[-186944.105474823,5555969.791339221],[-169926.8986919982,5532060.937837546],[-245102.3865379846,5541882.631631004],[-319729.4672159283,5564683.294364553],[-421677.4502874898,5575388.221698726],[-376033.0803897796,5587304.114068659],[-429980.5220489644,5605122.450833576],[-431314.8678774894,5625146.126239041]]],[[[-2025162.923003386,3129532.7698752056],[-2065565.8206625904,3125684.910966383],[-2167468.1231580162,3209943.447064541],[-2176578.9876136244,3253888.1238369374],[-2227103.6512777433,3311061.657370419],[-2229623.2387886527,3344852.3035240876],[-2294290.037106551,3387964.6649424084],[-2300891.570062141,3453312.851769308],[-2286592.8619966647,3475011.797432086],[-2222847.0397521015,3427658.215118366],[-2186077.0470111305,3397752.720038949],[-2124929.7326544337,3365453.614382681],[-2112917.9500357867,3321982.6068311],[-2094103.9378247557,3261494.711012637],[-2037068.1442408876,3196519.9459668538],[-2025162.923003386,3129532.7698752056]]],[[[-1225889.4487403014,5477420.127903318],[-1162459.6997210912,5445614.193870512],[-1042428.4938644016,5412228.363212419],[-1000579.3301353896,5381978.140823332],[-955260.1946208026,5341615.988801835],[-1019810.5371430286,5336853.045837977],[-1150482.0747014158,5314400.36096321],[-1224101.9483366827,5278483.728673664],[-1232704.10044033,5245803.520557209],[-1372594.9341735407,5245334.153134564],[-1388691.3042580415,5286111.19868761],[-1488393.5509896378,5360140.77373361],[-1457913.7743018118,5384151.869359384],[-1408533.2824537812,5425487.743405401],[-1353607.1673249553,5458295.810974872],[-1386629.9027525655,5513539.139738222],[-1225889.4487403014,5477420.127903318]]],[[[-561264.2532845988,5439428.257843398],[-517948.21044812,5444958.084559543],[-468759.1562479744,5436776.559143248],[-463656.7365236648,5404507.139335196],[-496012.7136355292,5376398.150798026],[-659392.8786762414,5386636.727934038],[-784756.0232446018,5376653.003435103],[-857789.2546200268,5388256.599963441],[-859712.4201338025,5411323.934091166],[-755862.0502766792,5422893.168861612],[-970832.3087993576,5456156.84315601],[-1033839.3698591834,5482501.643910545],[-956513.2035939706,5529678.343583883],[-909366.004939659,5537485.121492067],[-782594.68686843,5491751.679706481],[-705409.9961571124,5440446.608342882],[-623456.5825887657,5423330.702881234],[-681936.5507416758,5493400.972210612],[-635965.1741475752,5509132.696143158],[-588836.3795380746,5495498.75600907],[-576883.7421823977,5464174.776518362],[-561264.2532845988,5439428.257843398]]],[[[-520967.7153232752,5243138.740575002],[-468640.6679950834,5207724.986774586],[-444256.1832817282,5131238.499214786],[-433503.5605392614,5074904.11628525],[-350480.3744261302,5028592.201346679],[-259380.3927098643,4984495.682901117],[-266961.9145197173,4948677.022801531],[-353432.6800465098,4947380.824187353],[-322043.9923641875,4913104.7901930045],[-341918.4731987634,4883401.670470081],[-436783.2359329448,4904078.406836662],[-525275.6012231722,4935391.270292537],[-586915.92288352,4937128.483295561],[-689313.7320417368,4921354.616096096],[-824656.832347958,4928950.323690589],[-919567.356277518,4937342.642572979],[-940536.9628350618,4981961.955477789],[-1006903.1421412342,5018375.363376579],[-1054704.6928286615,5018852.094912206],[-1103667.053861702,5096877.653276223],[-1067934.99118246,5097770.163257863],[-986548.3574060719,5094671.147722543],[-915407.8280758098,5076984.907781918],[-846257.4226477904,5078757.21217647],[-941167.2561089,5115434.046029918],[-1050518.8401978856,5131573.0095679015],[-1121609.995628547,5149354.129949809],[-1141243.5038103354,5184270.51598939],[-1018501.1969576466,5188650.237042434],[-1095554.73817325,5204740.218197689],[-1177172.3260981506,5245574.329440044],[-1122284.141119129,5291066.986243665],[-1081481.7664049198,5311972.416329693],[-942048.553886523,5327058.368153574],[-895177.0202697242,5303411.946909391],[-926200.8521385426,5274304.137748597],[-813110.8713710154,5275937.183892717],[-750851.5000651886,5227513.146141438],[-689361.2570403978,5256425.8592604995],[-647708.349231467,5225996.4476373615],[-616731.05534734,5146647.776346848],[-587541.6598951092,5175018.140840166],[-613123.295025125,5255300.890234418],[-568533.2715433518,5260415.486852019],[-520967.7153232752,5243138.740575002]]],[[[-221383.6030094624,5192166.336279546],[-273485.3769361604,5242882.38617303],[-213518.498998697,5274397.074120517],[-155592.3663847206,5257134.079830998],[-67744.7160505715,5264049.589165933],[-55226.0735588806,5243162.440419342],[-102007.5551983197,5209107.120167862],[-27006.3479886734,5176210.983708176],[-36526.4187289956,5107886.942414508],[-120445.0409382852,5079117.4149561],[-169364.4119857399,5087119.309983334],[-203362.6742290444,5118084.522226974],[-325080.1784605615,5183518.58076701],[-322460.5781010026,5207185.016718541],[-221383.6030094624,5192166.336279546]]],[[[-520566.7694449084,5281220.386128224],[-454704.8432316786,5277186.352826393],[-418899.0189706924,5257984.043240367],[-466885.6706643038,5214069.154269809],[-538344.8059882825,5273138.565959817],[-520566.7694449084,5281220.386128224]]],[[[-117572.4545807522,5460653.386338863],[-82150.1056697356,5431249.223725377],[-81259.05986382,5398655.066246457],[-104085.5966936209,5350287.031050786],[-183777.1689376749,5345904.168259131],[-235052.4580466802,5358979.1436219355],[-232093.1583362615,5397235.6997265965],[-310560.6294154103,5396932.171713806],[-310189.6805939837,5446214.618142104],[-259538.1967744923,5441047.037947808],[-187494.5782877579,5458542.222765415],[-121410.1322283405,5452720.477612565],[-117572.4545807522,5460653.386338863]]],[[[-737.4166621417,5666220.183364474],[30249.2809176455,5679971.8091803985],[76020.5712601376,5683618.78855249],[56366.6675038971,5693231.377371196],[159910.3423073919,5698049.972017668],[217939.0585101168,5677269.2656232],[293859.9503136059,5672110.030366247],[368026.0533763785,5669100.097432841],[406413.5585335105,5640767.904631625],[462511.683287182,5630190.358242314],[401763.8945613187,5608747.7956296755],[320635.8104176013,5561671.573900376],[239506.2063960063,5552506.176900167],[143791.5420375505,5555355.76608958],[93860.8491423457,5575978.827268336],[94154.620852409,5594983.130083874],[129792.7133051369,5609517.328426954],[46657.7362338397,5607434.3638065085],[-3449.2715333193,5623772.284011622],[-31988.0944450979,5645734.52189848],[-737.4166621417,5666220.183364474]]],[[[195319.6694799854,5725766.005045979],[260596.7761728825,5736815.115607745],[311993.2351296252,5741591.067496652],[397781.704402579,5755112.129124159],[460778.3055682392,5775517.426287199],[515165.8751278684,5779995.024407327],[563681.4569630978,5775808.275258592],[594064.9612849068,5799990.032055653],[650483.265685879,5814162.757964743],[727349.1218228776,5830906.022687125],[858468.0860546938,5857795.231315332],[881992.2196434248,5859055.262781014],[1003827.4142159742,5893304.940847534],[1096093.0179535311,5915162.587383972],[1187888.8461205305,5939112.472975544],[1300451.4805780137,5971536.949210154],[1391020.062474735,5997725.259687422],[1469871.5799540516,6016153.171866597],[1471533.505504822,6006228.167617009],[1375814.5578820822,5953918.8228151295],[1276635.6658895987,5912461.351376405],[1241061.575620508,5891730.087654488],[1333153.9225266706,5921423.183583641],[1240823.914520192,5864738.6624002615],[1174438.840094581,5831884.302851055],[1110447.6475424801,5774263.436205492],[1021944.5905106232,5743222.4820858985],[996204.9900453206,5726557.647801757],[862915.6444231896,5691652.90105001],[925654.0985714702,5698362.445169271],[896764.9616538904,5682716.790205741],[939307.3025125985,5665148.97551948],[900483.1256888908,5637628.514731374],[833599.543284277,5608023.042845483],[816159.435939239,5581920.786321856],[755154.2268041498,5553161.102967823],[763902.5281050466,5541012.322885543],[842234.5982939578,5557729.543641871],[846020.8438651754,5543489.105503614],[728385.2178684026,5484876.182602163],[603611.618426756,5483577.342966448],[466940.7435990636,5457466.194928996],[396201.6602028175,5458198.476400736],[306962.1446092591,5454435.795524988],[299095.1258587362,5483190.785355063],[384350.9342033912,5503283.059971416],[358010.4436692178,5542940.028073483],[385808.7956463665,5549267.008073084],[511703.935487953,5537422.977523715],[444955.4829015949,5566638.3287281515],[369552.6280400009,5570187.280195844],[404750.9605151301,5594230.3235319685],[484163.4326708006,5614985.471258435],[494990.0570601062,5634244.313848394],[429165.9768648113,5646756.811802705],[407680.6487287448,5669492.609008152],[530256.307654346,5680969.247926583],[566216.27695586,5680440.807745007],[633369.522196807,5707164.514560629],[532507.7511260152,5698589.08298337],[376685.0589646963,5678957.780297738],[296505.9006200062,5687936.169922054],[258233.7577111938,5703022.726185221],[205685.2069270964,5712432.100916728],[195319.6694799854,5725766.005045979]]],[[[1121714.9623919732,4882027.274292657],[1092647.2688498357,4849029.6825362835],[1033532.7172422502,4832147.696711803],[1011698.3758936798,4871681.598702316],[1024529.480315959,4923940.503628922],[1070241.1967962869,4945718.833901579],[1116345.8635065958,4931384.69181054],[1125062.578861988,4895143.45075056],[1121714.9623919732,4882027.274292657]]],[[[-13529.7879820659,4933715.980316906],[18637.2702219522,4901810.051022843],[-14341.2973248913,4872207.865542295],[-85622.9257707227,4898499.932323132],[-128963.8237569858,4890215.206358938],[-199848.9434888433,4930209.12542097],[-152764.7966861657,4954246.988143832],[-115334.3171722196,4988761.997026907],[-60463.0722520255,4964612.506684411],[-29206.3103093016,4949512.336200649],[-13529.7879820659,4933715.980316906]]],[[[2258770.641813724,3361510.8659890695],[2279634.583245427,3378468.134374672],[2379426.2959311875,3384846.905404697],[2465823.0734039894,3367963.216092023],[2474934.4563608915,3349875.9511143663],[2441878.358033745,3335440.8354991586],[2340225.0204310496,3335170.5899624275],[2258770.641813724,3361510.8659890695]]],[[[2396708.1908921627,3078854.0311220777],[2439905.933833371,3037005.9913706873],[2497495.436440479,3041848.2563634235],[2563513.1824738192,3069374.998528666],[2543667.882102108,3013545.2813931056],[2519165.956012208,2996880.562404774],[2410926.319779297,3008342.1112347296],[2380612.4513417482,3037097.4174960703],[2396708.1908921627,3078854.0311220777]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-1962162.0796495487,3167163.097101055],[-1759245.2129622877,3111553.1454017707],[-1545449.80389644,3059930.431109177],[-1474314.910920819,3044311.964231339],[-1252770.8196544913,3000572.718818861],[-1037133.043643951,2965028.5149031277],[-816816.7558392436,2935763.4195607184],[-595559.4021808942,2913440.448203465],[-344366.620403279,2896648.7544007637],[-91028.5217285785,2888887.461852206],[62301.1175797098,2888497.744589838],[62147.3839611647,2930667.6016337415],[87068.352322567,2931459.6549564605],[101006.3115886668,2871365.1434612023],[124418.7022528551,2853126.3053218713],[176573.9810396192,2847470.765902832],[253258.2472967418,2832260.8302643863],[327245.3400053902,2801104.648013423],[387206.7330259065,2818456.1429142132],[481129.9795224614,2795471.813822263],[505602.343287501,2798248.833708265],[570219.6058970414,2834425.8916235925],[643837.5376916396,2800561.690276295],[721422.6484667688,2765099.6429553516],[786428.142571924,2734908.471866041],[849302.467818051,2706395.743576294],[860092.6138453034,2678344.9064984936],[879368.124883287,2669672.606479909],[876010.4790766946,2658205.00485948],[896944.6195888504,2657314.172857906],[910404.2001497207,2670544.3854656895],[917524.6220840265,2644978.5660192044],[935169.3050865568,2629497.1280118334],[956259.864915948,2632230.1301359753],[969296.7512035253,2620265.7589352904],[962383.0847465564,2599443.389284483],[1050039.3118233895,2558800.477953714],[1081039.5715726935,2461206.0934344484],[1110846.6877888367,2367632.278160999],[1096972.5535391697,2298921.0684996326],[1067670.2660477622,2232704.658635914],[1055139.2225424403,2191472.9565993263],[1054922.015299271,2179666.5583000816],[1066244.4367535957,2165080.69971463],[1096454.6309533543,2151470.076863026],[1116977.0745145231,2154390.9223654624],[1202698.5345625298,2227637.575178975],[1283219.577417784,2258463.673677121],[1378747.503898111,2331556.594864778],[1378270.4296622556,2342982.876103864],[1365027.8164823707,2375203.477963666],[1348313.8610351493,2394469.553857018],[1380882.1945509864,2418384.822426849],[1458361.9732697464,2433495.0240392336],[1530691.4786074513,2447899.9044029634],[1547018.7822164253,2495654.799276705],[1555014.7463562721,2506192.3451610715],[1620136.1925181146,2602283.045511138],[1650386.738893731,2630036.3705966715],[1766667.4795375846,2658096.4657843886],[1907290.6909397608,2693806.5378929055],[1907881.0981791052,2722359.1996236076],[1930702.182672351,2734223.936039169],[1958311.2517874977,2759523.8268498383],[1971578.8446464615,2815597.4103208585],[1971087.3598793556,2905037.7298447005],[2004194.2632730384,3001290.85285907],[2036569.892691444,2980463.434196964],[2080138.518263774,3012990.4325071215],[2121757.5101937084,2992276.127650331],[2165909.7021184694,2847694.956551166],[2233377.229699031,2802803.658689486],[2257301.140730142,2772082.3259751163],[2192394.552615613,2695523.5128223975],[2124825.589871575,2635295.1069208668],[2052517.8115606643,2580334.5233220425],[2029034.4330119495,2505068.958823623],[2022378.6040789357,2477212.0475667506],[2037105.1556106796,2419789.9021772984],[2078887.8868637527,2369749.198888064],[2112631.647973142,2376205.709988378],[2093329.8755994695,2413210.407487564],[2123790.892687627,2395937.6786856707],[2126091.2570701726,2363380.5593868163],[2077089.9833633709,2330963.876705608],[2038092.64883987,2322664.1277583013],[1983741.521333742,2288132.7290894557],[1950127.9848879452,2273708.5062184692],[1904586.790436892,2256558.626585683],[1844751.7215929232,2208616.1757246368],[1958625.8049151192,2258484.8944979967],[1987841.5648884615,2244087.7402027673],[1882352.8804305296,2182990.686764846],[1830441.9569063603,2170329.502959288],[1829703.554751021,2184281.181720855],[1811931.5206928223,2148217.068329434],[1837196.9113324943,2148863.16003387],[1837833.5080835908,2066333.6363084284],[1796568.0174768004,1968343.0702983893],[1784021.9303494212,1995027.3405542977],[1764416.2556556168,1996620.3346218092],[1731035.2047378053,2017953.4515548905],[1761380.0280733707,1962831.994744592],[1786533.6947232073,1947993.0896451247],[1797061.773938593,1906942.7758895147],[1779355.2130042524,1858387.4575912617],[1750285.3417656515,1760475.1634805617],[1741531.1441524606,1763154.1980492126],[1751942.8786570157,1843394.2423157133],[1699610.9679956185,1876005.5076012316],[1670567.1457757135,1965051.6746830111],[1664266.3972459973,1914229.3451988804],[1696871.4626533326,1848401.977576166],[1637164.5905096934,1854017.69995319],[1703040.7463083775,1830764.7846377925],[1728687.2063418662,1727190.0257075878],[1755063.9448940258,1724871.51831524],[1772171.041210878,1688894.3879136739],[1808075.9167875089,1582021.160657226],[1769242.2323523057,1488824.7365527947],[1683717.596635362,1437534.4163610525],[1637252.2573147076,1361688.9826998103],[1593518.1584334741,1346156.948813833],[1555044.846801191,1297398.7430480237],[1548651.6253881673,1258186.6097411125],[1460300.2449971987,1169447.6235653698],[1416736.7706402515,1108545.9613896995],[1383121.7691050882,1036394.3321862894],[1380716.3660787677,956055.944091746],[1409270.9458035252,882427.1497994508],[1455958.2208505846,793761.2054007564],[1511352.9519942878,723370.151544063],[1519632.7673200127,676339.6078848812],[1587068.0479250813,557918.3305166714],[1596320.839007502,484285.0393191922],[1599091.2052139947,441440.8601221245],[1585131.667307776,371243.3330064126],[1557272.9242061358,352670.0402687771],[1505598.4178585953,357849.2006048359],[1482304.2629780183,402869.4446388376],[1440421.7740206483,421965.5234416653],[1373743.6801278908,507595.2146616138],[1315862.7615992823,584432.3205037394],[1295149.926370224,625115.4369530838],[1304973.468746945,700550.5009937114],[1269433.5541784859,757035.1096956749],[1182192.1395982013,838886.9246499162],[1142712.3765974715,851001.6751921418],[1052040.9950728028,789364.5025797228],[1034199.0960248256,792904.723531395],[981976.1701987868,839201.1972831484],[919223.2783185438,860251.2234644892],[812536.6659271643,836058.6343989226],[726610.7100012358,841107.3825321944],[654204.3075480076,827934.4675956108],[615780.576560877,807895.3535268942],[635107.3773016966,779651.0645916802],[636648.1241074522,734677.1097158588],[658750.1014315224,714285.596141468],[641280.9552732016,698455.0978381912],[604167.449601202,712329.0556749824],[569051.9664308676,689040.6425253538],[498302.3582034276,688404.973051963],[423002.0558674978,743278.566853511],[339182.8421181343,725966.3879660766],[267992.2890427804,749294.0735242034],[208076.6960350277,739961.6733612552],[127052.3685613547,712579.4524901288],[39115.8473293079,629686.9317021326],[-58426.5324632298,582111.816224749],[-112754.8112618511,529869.848715359],[-136217.7021673265,480537.4601451108],[-138315.3332414172,404571.194386277],[-134042.7471968828,351734.3412321605],[-115342.5997148214,314155.7946401249],[-154851.9353138009,311418.3917891202],[-226130.963041317,336986.4971805922],[-303767.8267899646,373205.0763936693],[-330126.1510431288,425805.5860261572],[-349268.8035911324,503666.681495677],[-405057.1337524238,568870.5561614915],[-436080.2788333433,635126.8441577266],[-481191.4216607708,713253.8683633832],[-546892.9383909524,761187.1072364638],[-625890.5619241592,764095.7633571876],[-693175.6530820996,681152.8900655758],[-771143.8544616182,720666.5903109516],[-818250.1230380802,758329.5301945194],[-836675.2079530588,821234.7909340182],[-862943.4649272118,881955.6750262558],[-914547.662750442,936174.0506713158],[-959171.4609758448,976196.4188419296],[-989164.688267781,1019177.1893906124],[-1151407.2462513694,1038725.4349505976],[-1157489.8624837133,993192.5935020678],[-1232022.4877988903,1003132.1072557498],[-1418641.8718654832,1030071.497554847],[-1617634.3208354393,1143831.7437213566],[-1746355.2272288774,1223775.5357568483],[-1733510.6215409976,1243448.551508686],[-1851945.2028546536,1255559.684214835],[-1957421.573251526,1269943.2219253725],[-1960076.2616030804,1328992.796543301],[-2003982.1646958971,1405059.0508871204],[-2042685.6398997633,1427999.8993408985],[-2044935.4867273476,1461514.4282176136],[-2093544.003480547,1479183.8439062198],[-2117964.030384399,1516447.8601386382],[-2197295.7829900887,1548220.1045800734],[-2215157.143626231,1571599.1589086766],[-2210045.8633451695,1633710.1882139521],[-2264555.2503859242,1765087.7870563432],[-2293070.1125033284,1934970.149765764],[-2282938.5074471054,1959071.3687349812],[-2309552.7566802283,2005299.1627101356],[-2346994.5845734086,2114325.1377402553],[-2331926.8254169677,2205216.9549365276],[-2357183.962212997,2276902.00728761],[-2312404.5308353067,2360259.0772959716],[-2287101.189732481,2452888.130281149],[-2286853.1434470387,2542461.984891721],[-2225757.2892360636,2633776.0458959714],[-2187021.1389152166,2727737.2780570397],[-2148587.2500918284,2821593.34290091],[-2118770.7204126213,2968036.6810916294],[-2114069.7079997,3065498.325374925],[-2119891.7741221637,3120906.0641771182],[-2104844.753344524,3138757.052497082],[-2011818.010968618,3071597.164242381],[-2002142.5728786264,2960222.439300513],[-1976009.2134018564,2983112.696250014],[-1962790.304891554,3073453.983233995],[-1962162.0796495487,3167163.097101055]]],[[[-5994579.738687394,1621439.2889963388],[-5984478.463324063,1602686.3834187165],[-5978623.561667057,1580793.1921593559],[-5978009.6725061815,1534184.6249619208],[-5983580.831191918,1530861.828648633],[-6031401.671464503,1536963.8977028532],[-6069421.10296018,1543776.1242272272],[-6092810.432068794,1538642.5351169407],[-6105699.790775947,1566965.4740458939],[-6085555.043993059,1589287.5713602912],[-6077011.049391761,1631365.4255298257],[-6065615.050842892,1637816.4714054083],[-6040151.039032642,1640894.6342563268],[-6033712.650541761,1662343.9196454892],[-6022762.775178458,1666763.4584900844],[-6017321.60132703,1660338.85303201],[-5994579.738687394,1621439.2889963388]]],[[[-6002902.015619603,1718460.300231395],[-6017763.54133294,1713312.260401652],[-6051277.3418797115,1728389.7592179072],[-6052635.86397758,1757595.8974088116],[-6057291.849469865,1771955.3115304594],[-6054039.9891932225,1777925.7392681928],[-6040130.360596118,1779114.7187741606],[-6015674.13662055,1748323.988001715],[-6002902.015619603,1718460.300231395]]],[[[-6042036.926948539,1802608.920121641],[-6051657.087318991,1795228.7958683087],[-6095541.636655261,1831984.9454281365],[-6081258.358037731,1837687.0580955052],[-6042036.926948539,1802608.920121641]]],[[[-6114401.728864672,1930232.6627804784],[-6111577.266913425,1919335.6044183243],[-6108787.265719176,1872344.071977128],[-6117150.787629692,1870863.694233643],[-6122376.784913252,1876578.7445702727],[-6149520.590360486,1902068.8797471672],[-6145332.028673029,1929724.724991802],[-6145971.296642426,1935658.5695410348],[-6114401.728864672,1930232.6627804784]]],[[[-6193278.677954117,2059630.4553896857],[-6207172.889511112,2038462.5484770637],[-6223651.185434164,2037801.2623719808],[-6239299.801717068,2075361.2770003749],[-6230117.321889116,2078147.4091760612],[-6210920.31612788,2076480.8864286488],[-6193278.677954117,2059630.4553896857]]],[[[-3942083.5832196334,5624680.128106674],[-3912081.0594936265,5585183.919883975],[-3933477.877494843,5552611.90848155],[-3972206.0596318,5566510.180500848],[-3989426.126412351,5607856.034547499],[-3998301.3573618913,5653355.840370688],[-3942083.5832196334,5624680.128106674]]],[[[-3445165.5267385766,4916819.651823615],[-3413967.015904322,4887110.518107042],[-3409305.1357972724,4845329.124290007],[-3483253.226716492,4835915.346821526],[-3559330.5248652603,4840287.506951904],[-3571130.834925977,4881457.282197678],[-3551189.481098287,4926919.94323202],[-3482248.271308411,4923363.625807818],[-3445165.5267385766,4916819.651823615]]],[[[-2268903.6906349924,5499339.015879536],[-2268904.2079576235,5499339.429151958],[-2416106.7749047326,5212749.844617102],[-2665068.639133003,4727493.945760321],[-2612350.020264374,4697506.818136281],[-2570754.880631585,4646022.54505142],[-2550906.865007834,4587434.4388662735],[-2529047.7823743145,4503356.071916425],[-2449920.3527098177,4529454.090556661],[-2379540.8500581738,4533817.919809668],[-2370214.4357683077,4472621.914312121],[-2347788.246044502,4417631.2618208015],[-2312239.2160986145,4352691.53007563],[-2303335.7245444385,4269224.91059047],[-2285796.2208547997,4134511.07668129],[-2205134.6437999844,4032098.4718646137],[-2226676.871292069,3969181.8917357167],[-2279661.5345207453,3934593.789406535],[-2279662.4308907003,3934591.233592984],[-2279662.549339008,3934591.156923551],[-2299920.199314536,3985035.160310065],[-2342503.8164003696,4037915.6612281897],[-2325907.8298698324,4129970.8863403215],[-2371904.529720242,4239893.502391173],[-2366067.2568571935,4343280.58002173],[-2419725.4643194466,4373562.612191273],[-2511277.3741852734,4417108.825259763],[-2566488.2751677553,4475202.757358138],[-2637492.501471654,4626902.7781188665],[-2682066.3342707455,4670822.427121958],[-2761471.8551633963,4752781.764014885],[-2840725.5086078416,4786057.181340744],[-2923439.0451110634,4885792.033995524],[-2964543.0436132187,4959222.476450992],[-3033384.702568412,4976221.726610374],[-3058828.709470953,4910257.12623486],[-3091359.708085747,4922640.398420468],[-3163341.34642577,4942899.639876692],[-3227947.0913635897,4943767.620447201],[-3297782.656103304,4963789.871305834],[-3272171.4912362024,5018403.370846022],[-3194762.62746987,5085052.819072712],[-3123839.8828189517,5075348.863620033],[-3124331.338249404,5105221.183550021],[-3219421.3868497033,5101573.787098439],[-3291343.731479573,5069694.757907936],[-3405799.3707959475,5061321.434535176],[-3396213.941932294,4994576.684911927],[-3487412.619472949,4968420.917288894],[-3568502.0767851775,4973188.226847872],[-3639197.849556164,4985638.751516815],[-3679424.03002956,4958193.59227715],[-3793332.043968725,4976542.674882396],[-3839828.5601517055,4950231.9420454325],[-3928735.6075938554,4962608.742575791],[-3959429.968638115,4997432.333242668],[-4026307.3710493166,5013804.850127817],[-4101674.010035269,5029463.268487636],[-4167395.539105696,5038554.129806579],[-4275124.090919479,5091858.874403269],[-4271234.856056787,5112283.938308673],[-4183057.7735326337,5100896.543833843],[-4112019.627269951,5082972.57342572],[-4020623.814372372,5081515.454319607],[-3949541.0077457614,5038685.547874737],[-3897290.930134247,5051830.7242351705],[-3787476.7880224,5044853.219979458],[-3763275.520160315,5052438.230303804],[-3703149.5149513367,5052485.379357216],[-3647159.0743708513,5108072.869981417],[-3585131.980025106,5136974.894396489],[-3661842.548241448,5156278.27034687],[-3667274.591192449,5182635.066449521],[-3717157.3853391465,5174307.78484108],[-3717539.5652589984,5240576.8638269715],[-3753671.543920914,5222498.717782718],[-3740291.657351377,5276947.601865878],[-3814929.2508638105,5285014.389460447],[-3844793.9416132146,5309819.522531891],[-3810151.020158333,5359863.9389996845],[-3777725.075842584,5381184.542561653],[-3785327.985800444,5434339.982832774],[-3859102.1443168623,5471960.680252144],[-3867324.784601415,5541799.656626086],[-3882800.4427878927,5587653.337409623],[-3845431.3726551854,5629839.581723747],[-3851839.825154223,5692312.041953732],[-3796794.6276377337,5718542.1450329125],[-3724548.6336641726,5726727.069988035],[-3676078.4069946297,5749920.742154931],[-3635779.4687389126,5724072.63698279],[-3615285.668777692,5686246.723956601],[-3549494.112058858,5691110.498856506],[-3522237.129998385,5657777.662373193],[-3469272.0226422264,5652611.434851406],[-3450364.0351707833,5692874.989706955],[-3464495.331753082,5726321.259720643],[-3408933.3216406913,5727462.992208397],[-3436686.1610394143,5748762.8840433005],[-3496229.354665281,5771839.73353129],[-3522915.0476158494,5767273.982809953],[-3543841.1033331384,5812317.463615407],[-3611688.938304512,5857656.79083706],[-3658862.1221309127,5930333.027054967],[-3651131.840674451,5973995.596724704],[-3666688.297495915,6061764.421880837],[-3583313.0329465,6035988.482622291],[-3461921.610305708,5986037.6571311075],[-3427679.724689294,5956234.120523826],[-3462824.4898553565,5927101.918093689],[-3370843.7534518065,5853897.633941705],[-3369660.8078145073,5925469.211884145],[-3399058.6141102524,5995034.217304991],[-3399408.584128423,6053641.574017162],[-3413626.190710942,6115774.24013562],[-3449961.037557225,6185543.59660656],[-3397811.14699945,6198273.836174641],[-3325776.0460186014,6137567.454430226],[-3250315.2703460655,6122788.005131656],[-3214693.4297258835,6145350.831093934],[-3149074.4106767196,6140792.469985156],[-3104252.3654805063,6115872.907114808],[-3005715.3884997736,6082695.3444576925],[-2971597.183003174,6049572.660748114],[-2883375.6860174085,6035739.371009701],[-2830616.2538519534,5976942.602183062],[-2821065.0153916427,5926242.99370578],[-2793502.4097457505,5925747.527957592],[-2724533.517732475,5872747.178969639],[-2737345.3016606984,5859226.652539033],[-2678916.148211326,5804223.856991584],[-2630181.046259476,5782505.73964467],[-2550816.5873954897,5703375.092762923],[-2468596.70864376,5645994.73614648],[-2439037.8344758977,5616900.45766484],[-2372064.3725188784,5594801.917370548],[-2314031.5682684565,5535757.194089318],[-2268903.686495218,5499339.013759084],[-2268903.6906349924,5499339.015879536]]],[[[-3937165.871998263,6081290.120879723],[-3924949.6401554327,6043071.904340638],[-3892474.8309428287,6024336.744796482],[-3876705.957764921,5973406.300038128],[-3844005.636309057,5923897.57231944],[-3854712.176214344,5919715.258904063],[-3900755.160387115,5936023.362449928],[-3917889.5615069624,5982219.559362554],[-3921391.6140738465,6010225.341706728],[-3961540.1236212854,6042888.297379817],[-3965237.338509964,6058703.811474756],[-3937165.871998263,6081290.120879723]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[2599686.6226693015,-20735.5833128831],[2623645.093256924,-74768.4333210905],[2625992.0378158437,-116633.653176453],[2604717.0209817914,-140756.3736649939],[2640081.7976053706,-164644.7743329113],[2645213.400476468,-193211.750103908],[2569953.6343724634,-193908.526199594],[2521434.164862272,-213714.5901702478],[2454453.801201256,-222209.0100229145],[2409029.425014534,-253539.1178092906],[2344145.4147036835,-234617.1858587037],[2345808.219273803,-198939.8845672781],[2447266.9981130706,-190149.2519970185],[2529617.187488452,-178702.069243118],[2562040.020633392,-146024.9328650386],[2502393.6667991215,-113306.1696645796],[2493301.102795,-73432.5158080353],[2422906.663569261,-73519.6585055692],[2439564.0232694335,-38976.1920314765],[2504664.6758243837,-27707.6204079908],[2599686.6226693015,-20735.5833128831]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[2645213.400476468,-193211.750103908],[2640081.7976053706,-164644.7743329113],[2604717.0209817914,-140756.3736649939],[2625992.0378158437,-116633.653176453],[2623645.093256924,-74768.4333210905],[2599686.6226693015,-20735.5833128831],[2608131.1796915787,381.2522217844],[2689725.034171122,21659.9783417451],[2758824.1560606896,12017.9016527091],[2785586.6689753365,22298.9209195141],[2814865.5186386723,-8925.8841084221],[2871438.9486427754,9495.6397886453],[2876931.0633180547,-22107.3143480504],[2924578.857707018,-12233.6053379385],[2987204.737762273,-34512.3916233851],[2960548.705529515,-87732.283953118],[2903920.298895154,-80160.3618555559],[2856764.4662905275,-98370.5745940289],[2820665.5378509113,-103313.6156674115],[2806853.632724288,-127372.5664143874],[2767945.851867343,-144959.5747842817],[2745002.4748061127,-124436.8802607853],[2713986.4153716383,-148703.4301834516],[2690166.837237374,-230473.6713056587],[2658353.442372497,-221378.3754520999],[2645213.400476468,-193211.750103908]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[1694883.782728457,566750.1730835746],[1739553.513918304,583903.2781315034],[1805038.5869246991,592967.545894416],[1813424.780271348,565453.3727333928],[1709058.4664089193,527961.1685177383],[1694883.782728457,566750.1730835746]]],[[[1806738.9853528389,615725.7283742162],[1893931.256403146,582526.918772595],[1892328.848057586,502535.7907288744],[1871345.7510862253,512691.4851967458],[1861767.9073915095,569339.1178491488],[1809341.5368039291,603349.5778959374],[1806738.9853528389,615725.7283742162]]],[[[1804875.876162775,410754.9732817072],[1835836.7205085584,412183.6654994923],[1888392.3869391216,329959.1816834747],[1901152.9774195456,267961.4718759231],[1877238.5997438184,257764.1144876827],[1839569.694425426,314497.0281521587],[1795854.9329168228,338403.5173507589],[1804875.876162775,410754.9732817072]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[2069937.290562022,6297690.102395641],[2185915.338175344,6390854.4496067455],[2315876.870180963,6472697.7911551],[2355146.3751032064,6514099.988837664],[2478654.326065628,6606483.606494618],[2751481.8966764393,6823293.781804214],[2969010.5674584983,6991976.2192246225],[2921273.1070811953,6924685.159510413],[2799108.5755091486,6808312.5272586215],[2620293.9982862533,6651958.741549529],[2641966.878076664,6660511.417593698],[2759030.687999522,6764395.908570194],[2867185.4763051644,6843462.847828419],[2921193.4635387403,6911361.863421806],[2957460.4462534795,6926911.1543815145],[2939418.622099199,6875457.937956496],[3008977.0916710463,6966301.282186625],[3144610.2447917587,7134270.752559628],[3237152.3035219824,7229879.506177851],[3266718.392961414,7237794.681661959],[3171564.4212380755,7079275.332426725],[3162403.2895457163,7053363.8639884265],[3069726.0295368535,6943001.171570506],[3143237.160096943,7017145.210165157],[3133040.7882975386,6954108.640592855],[3131892.2156105037,6904342.514233966],[3177156.839036411,6862660.707814197],[3243546.6543581462,6876788.072448244],[3194715.0846049916,6822157.088755907],[3154002.6536689764,6753732.785200451],[3238730.0604753844,6792651.898906852],[3286021.3254586887,6762571.821494768],[3254555.7455166997,6721498.674678241],[3340100.7140785055,6725755.1394496225],[3267834.2868174883,6645030.962415277],[3328035.9196492373,6665172.169457481],[3334673.0309211905,6636021.818162825],[3293287.4065706083,6578947.680373093],[3243951.365856353,6530858.658504458],[3323287.9963722485,6538389.8001881605],[3347185.941819325,6514983.494217344],[3254070.7969972333,6468691.605307327],[3248951.283864254,6436430.769325169],[3311324.841474843,6469258.297668267],[3391688.033515544,6481712.813488086],[3450168.547420219,6450153.638171567],[3394998.896362379,6374874.030851732],[3344932.8470589602,6369921.0386734465],[3267815.078426763,6360051.555801996],[3316919.2097893856,6332499.86927395],[3301021.208563842,6260784.477987792],[3403835.711381732,6351225.253636933],[3458472.8887093267,6397800.780103018],[3406318.212091231,6248960.136249381],[3343541.043954865,6102868.639040551],[3242981.307791923,5978815.3251204435],[3197148.8126756516,5941158.606517952],[3174169.7179845986,5880301.616363088],[3171009.2095456724,5760088.066529301],[3112947.806844602,5638262.11870875],[3083848.192892242,5612694.901672566],[3035840.7635728805,5551525.161364941],[2981230.930832641,5488341.682845965],[2972516.3911679992,5413889.823235743],[3007949.3561425866,5358622.646705487],[3017534.3161850786,5290478.240936674],[2978303.1186458785,5174249.6584077785],[3039062.7764701005,5122644.792321604],[3059502.172445991,5039268.10304144],[3084329.1233176235,4939990.960284485],[3013162.556607591,4889551.586475787],[2893729.9748019422,4914058.4282830935],[2787348.3473576577,4854743.34317303],[2709747.480421507,4874412.027396418],[2629604.8634604462,4940093.229343675],[2484373.259659586,4999781.726364387],[2430601.380175745,5041784.592092881],[2386400.4002654566,5113329.560506286],[2279573.9178763805,5155265.991204814],[2268884.3232332,5223579.229150323],[2222394.5878941333,5236021.94655062],[2226602.753475281,5350881.867317396],[2284494.462688599,5415029.026282561],[2287170.482787902,5455977.3499402],[2267398.0381679316,5518622.824343037],[2227245.6813861313,5465584.160968226],[2207093.384100104,5441821.130164202],[2169720.584255189,5410447.608599152],[2099770.2470704797,5407418.5811530575],[2073212.3962931917,5456398.164885494],[2073481.4626686072,5503648.157273763],[2116075.292025936,5525131.355052835],[2219780.58404483,5552641.220421418],[2118257.1494212165,5558578.872192552],[2065582.132021163,5562985.435780417],[2024297.349685321,5531643.2801546175],[1977703.6932648183,5531586.734350526],[1999441.7660592513,5619325.896649469],[1960380.1336086397,5631700.9061365845],[1904030.420059841,5661186.741288967],[1820593.4814044936,5705237.634182159],[1753829.59490118,5705350.618657655],[1743763.9964228282,5731041.243618445],[1611134.3805456639,5718538.539333936],[1515136.8129303136,5687918.837921383],[1396069.703734536,5644577.561916984],[1286937.7104712601,5605703.301206991],[1228590.9416859394,5609507.816996502],[1139593.3641992952,5624832.555123339],[1252805.2408359677,5675832.153212543],[1341658.9157473042,5706265.272231259],[1146322.0262710203,5664706.5767201595],[1039392.2393622954,5661197.742820614],[1040473.548354579,5683507.952444596],[1201627.172162159,5753008.629270006],[1353894.658778324,5825892.132586091],[1364844.8862108998,5848592.64345138],[1243398.2659505922,5828049.991486139],[1275405.7378854621,5857361.020253515],[1412548.6724201357,5935646.517151212],[1471927.6279324149,5962006.978682692],[1448143.5497435385,5973005.549198891],[1542449.8656568474,6020040.976744977],[1665687.1749090145,6077574.34274958],[1789188.1721052967,6133748.587916763],[1837953.0699145463,6143607.748712387],[1933097.1880641785,6215179.708838807],[2032643.9681674563,6252423.1353805205],[2088269.7889646036,6280175.284678219],[2174217.7568307268,6315522.173205258],[2072606.834947608,6280801.090820953],[2069937.290562022,6297690.102395641]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[-1957421.573251526,1269943.2219253725],[-1851945.2028546536,1255559.684214835],[-1733510.6215409976,1243448.551508686],[-1746355.2272288774,1223775.5357568483],[-1617634.3208354393,1143831.7437213566],[-1418641.8718654832,1030071.497554847],[-1232022.4877988903,1003132.1072557498],[-1157489.8624837133,993192.5935020678],[-1151407.2462513694,1038725.4349505976],[-989164.688267781,1019177.1893906124],[-959171.4609758448,976196.4188419296],[-914547.662750442,936174.0506713158],[-862943.4649272118,881955.6750262558],[-836675.2079530588,821234.7909340182],[-818250.1230380802,758329.5301945194],[-771143.8544616182,720666.5903109516],[-693175.6530820996,681152.8900655758],[-625890.5619241592,764095.7633571876],[-546892.9383909524,761187.1072364638],[-481191.4216607708,713253.8683633832],[-436080.2788333433,635126.8441577266],[-405057.1337524238,568870.5561614915],[-349268.8035911324,503666.681495677],[-330126.1510431288,425805.5860261572],[-303767.8267899646,373205.0763936693],[-226130.963041317,336986.4971805922],[-154851.9353138009,311418.3917891202],[-115343.4435648536,314155.5263775866],[-156150.7604959003,218515.6807339701],[-175428.6200507079,140157.2444223633],[-185684.4865143813,-5590.5265416918],[-196798.2820242093,-58396.3781527121],[-179639.436260537,-117825.7731284072],[-147627.4354504615,-171075.5850615261],[-127457.792490476,-254993.6604046615],[-56768.3636747162,-335666.2343881633],[-31741.3096228956,-396935.6490285247],[10824.3496992574,-449633.0284801871],[127128.7387867409,-477187.4580535942],[173126.1199386206,-521125.1884793348],[268794.7409117514,-489310.9712041608],[352015.9863974822,-476052.4105115778],[433185.4191339335,-453790.7837808636],[501059.7121088232,-432395.8579188107],[567994.2677097901,-385237.5462460284],[590259.3899487846,-321365.7978365904],[593845.754495674,-230687.8210105077],[610428.8561386344,-198145.3397525014],[680687.2005309172,-165349.9282690706],[791000.7783290844,-132179.3291714115],[885037.0707715396,-128121.1214709251],[948344.9525387018,-113157.1215175982],[975903.6579823634,-133527.0110922933],[977308.1851585353,-185588.0152423397],[925891.5723385334,-254670.3842063966],[906165.8836468026,-322064.2892189003],[927724.1190595952,-338876.1911515672],[915627.56307757,-386411.5807646223],[895565.3238920243,-471775.7675511226],[865545.0328045526,-446839.9018422073],[842828.0260163716,-450493.5570514538],[822175.4659561435,-453557.1393110586],[787867.6616877258,-520697.1704211894],[766984.986122141,-509628.6057360552],[754040.6804715052,-515484.12875055],[756029.4465582918,-531033.0286340696],[654126.9123746032,-536727.0439942068],[551294.1697138412,-542831.776873205],[554353.9931175048,-602534.42580604],[504308.935823769,-605312.8452478872],[547397.5660565044,-638570.6336011742],[589879.2480892654,-660766.9043300002],[603545.7315633394,-682941.3388302256],[622007.122899527,-688294.9856709638],[621238.579700997,-724339.7993230688],[477320.7340792494,-732073.9267027682],[426725.3137828165,-820058.1168063694],[443597.1096384233,-839004.2997578572],[431433.5290994849,-864102.102718912],[429858.906929627,-894685.5726259722],[297799.1641319234,-786131.00724845],[238884.5209379978,-753406.9148334336],[146719.7672970688,-727566.9313099306],[84143.0138816944,-735909.7494556168],[-6013.1221160361,-775885.0493591304],[-62851.5316681903,-786077.0929600374],[-142099.6227439985,-757566.8440250874],[-225943.9668783701,-736064.0804138244],[-329318.943957256,-684915.6407329566],[-412464.7522240998,-667182.5949102414],[-536160.0770300048,-612350.6893208252],[-625911.8357204422,-556586.4491504148],[-651995.4152371172,-526548.2350735004],[-713118.6242658258,-516194.648039864],[-822839.8501685298,-474310.1204781878],[-864379.4107994972,-422096.9369412425],[-975620.8713564083,-351247.1742349328],[-1023063.3888052471,-278689.3551178023],[-1043308.9684838948,-223994.4438161443],[-1006622.815813388,-217142.5514085767],[-1014541.9997388488,-185491.5497662049],[-987346.2307552178,-160086.1674165205],[-983188.7131973078,-122988.3215429495],[-1013967.0654130706,-71137.5052039672],[-1019075.9419269952,-27302.571354565],[-1048431.4019574916,30794.9879170585],[-1127786.6657092655,148358.8472828194],[-1220542.2381879208,245409.6671645508],[-1261220.428225468,319394.7570101191],[-1341734.4982928943,375479.6492530394],[-1356440.3041788398,404619.4490930527],[-1331697.048486381,469675.0729014264],[-1378710.5548655645,502335.8735021984],[-1429163.7354998735,563966.7545789666],[-1441916.7558378312,643783.856008513],[-1493019.9387335007,660961.9736256292],[-1540016.1665749245,727653.5851587988],[-1576225.253593993,788393.6590171818],[-1574522.3264780852,823210.9394598184],[-1611307.763278517,914595.5950896248],[-1629617.5678628688,1004333.8400542674],[-1620530.1603002,1046092.1653594538],[-1679829.4653852857,1102045.0571438582],[-1711751.6738250619,1103239.830542286],[-1758701.096084556,1143757.3660133476],[-1782461.2906352202,1102422.177820795],[-1777565.7984352927,1046988.8169996662],[-1784756.58148393,963348.5448950818],[-1761161.768190008,912071.6995195774],[-1704745.0529676985,823563.3937050366],[-1693702.112049446,794995.4478266892],[-1680510.5374332424,784527.1736332176],[-1674628.6412080675,744830.7436442688],[-1657175.8084927897,743227.0473570288],[-1650271.9534756304,669611.8398330432],[-1625511.847977748,636739.4423214728],[-1611324.3887596664,594658.8818200064],[-1558726.451342146,528935.5947362598],[-1542261.1416975558,422680.3273235506],[-1520099.5492054017,370493.6793380198],[-1500058.4241391055,315412.0323122372],[-1503351.0035822373,257597.3192599642],[-1454796.1165526146,246526.2129158937],[-1421083.7702645708,191432.0110949733],[-1390743.784049604,137935.2793947739],[-1395990.6167306306,119004.3950432676],[-1445215.8212638253,85789.000063651],[-1463487.3339597434,89016.688704519],[-1480879.38061909,158460.060301405],[-1538397.5034479958,230225.2155010037],[-1603279.2421219891,294233.2509201283],[-1650405.624402085,330359.5329228202],[-1633521.238336895,408735.2592610775],[-1638572.1401572544,469926.2421390616],[-1680008.2254363266,511780.081352312],[-1739110.461387285,572422.9927355588],[-1754718.1547487704,560928.08341136],[-1774218.9284137266,593791.3946193968],[-1829624.2096973225,631654.9217413384],[-1874500.1010674385,705915.5277682352],[-1865772.9947907233,712643.7137639188],[-1827026.1821715548,698504.0262920088],[-1783125.0231825565,731925.1704603742],[-1770043.3466958103,780176.9898478048],[-1828468.3230448128,872215.5458985518],[-1878098.5595768085,913718.423837697],[-1898670.6332710923,988835.0019863494],[-1918145.5926665668,1067507.544826157],[-1942074.923784142,1163782.9586256125],[-1957421.573251526,1269943.2219253725]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[2229538.891974473,-1287783.8048968334],[2218076.2865870716,-1305124.9620611686],[2257163.9966930477,-1357931.7937716264],[2240571.233036687,-1391714.2807898992],[2200787.610050528,-1392166.0430008783],[2194764.319253955,-1443030.1043960897],[2149475.2114828797,-1422225.464487742],[2113900.7405604618,-1373674.7696140083],[2138256.5909315813,-1341674.3327162322],[2106929.056073398,-1340535.691403443],[2078717.5532974072,-1311812.111113289],[2014789.0642860855,-1294848.778753681],[1964200.709019552,-1310366.9598848168],[1946210.0548478267,-1349223.1057829636],[1902467.729204746,-1382416.19181105],[1877070.4031066403,-1390229.600230895],[1868805.193767527,-1412866.8204736921],[1934857.5037332952,-1457179.0409203882],[1904255.7197095617,-1475341.4244387713],[1889340.133785067,-1492886.7723387103],[1834211.2721720815,-1507049.755925663],[1803981.4474905345,-1451128.3488535183],[1791045.149985454,-1470476.583980639],[1750578.8060682246,-1470791.2327040632],[1720305.8289249178,-1434437.2308249916],[1670275.764026256,-1435129.807976843],[1637555.5167353482,-1427970.099041899],[1586274.8561423987,-1435398.8538523617],[1585601.0176074384,-1457590.5672872674],[1569757.7019319234,-1444397.104660846],[1573303.2514979774,-1423682.7350300464],[1580435.4306400036,-1402001.9409318892],[1573276.800601564,-1384511.9242249925],[1589398.5023054238,-1370145.3647026038],[1562602.0155585832,-1358675.1175670463],[1556319.63425471,-1318291.519351028],[1600790.6286700235,-1302874.0193095494],[1648495.5319756619,-1332803.09024171],[1649178.1656309634,-1354420.1276370392],[1697217.1963039206,-1351901.5910782644],[1707188.976692557,-1342059.0940374997],[1743580.065859376,-1361674.0276132203],[1800853.6518563305,-1345270.9684162391],[1847151.972359883,-1311838.5277533887],[1915498.7722492337,-1279627.8541414482],[1950515.673997972,-1242752.8566299835],[2016446.8906234545,-1237106.3180206702],[2013842.4251881929,-1247738.5285348163],[2080015.9678717484,-1239138.5962822079],[2135576.4621620183,-1246508.7272922744],[2179779.0921219345,-1269060.574345358],[2229538.891974473,-1287783.8048968334]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[1600790.6286700235,-1302874.0193095494],[1556319.63425471,-1318291.519351028],[1562602.0155585832,-1358675.1175670463],[1589398.5023054238,-1370145.3647026038],[1573276.800601564,-1384511.9242249925],[1580435.4306400036,-1402001.9409318892],[1573303.2514979774,-1423682.7350300464],[1569757.7019319234,-1444397.104660846],[1501853.4001977898,-1430970.74035047],[1474843.9566099949,-1413114.2754724934],[1486300.6485316998,-1393900.0003252348],[1479067.1316012673,-1372270.8779215082],[1443009.3167608108,-1352441.9041877238],[1393831.2049098997,-1338501.9037639233],[1351454.0769331045,-1330533.4512647728],[1340139.525061471,-1301887.9518646803],[1307026.3611256406,-1287446.4443167],[1318063.7465966935,-1315995.893722736],[1297229.5535226096,-1342899.3761612363],[1266953.8557705306,-1317917.2525371718],[1227828.8478358763,-1312127.0501260182],[1209460.1865102304,-1293442.7672292865],[1206803.1776348597,-1262448.150582036],[1218892.378106092,-1228709.5773709537],[1184203.759725059,-1217919.0375200552],[1208941.564892364,-1195331.6234649182],[1225130.8892995215,-1180268.407412012],[1305285.5805850145,-1198502.500570379],[1330614.5065215668,-1182032.8846947323],[1368732.1092226938,-1186027.328202717],[1390731.14278646,-1204557.205299292],[1426166.0972773896,-1206953.039876575],[1451405.9023788606,-1181788.2483515071],[1488366.6748182452,-1233020.5021109742],[1539363.2922075626,-1267579.2737968753],[1600790.6286700235,-1302874.0193095494]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[1451405.9023788606,-1181788.2483515071],[1426166.0972773896,-1206953.039876575],[1390731.14278646,-1204557.205299292],[1368732.1092226938,-1186027.328202717],[1330614.5065215668,-1182032.8846947323],[1305285.5805850145,-1198502.500570379],[1225130.8892995215,-1180268.407412012],[1208941.564892364,-1195331.6234649182],[1165059.08743195,-1167475.545980621],[1106340.7788836872,-1131744.7386062553],[1077335.1429315845,-1099667.3391353656],[1025392.005672301,-1071993.5555902638],[963289.5215601875,-1030645.1414258094],[974669.4276971568,-1013531.2959348256],[995088.5802868572,-1027375.8568764566],[1003150.482535601,-1019279.6787157512],[1038557.2376939076,-1011693.0693346186],[1050698.8048500551,-986706.6658468684],[1067461.8475346037,-984152.1684385942],[1060050.2972217542,-933467.0917389644],[1086591.4723103065,-928368.6088729264],[1110492.6081574338,-926696.9662637596],[1132255.2579906024,-896474.901647531],[1168108.136511152,-913867.0575245424],[1178417.9578514865,-899743.7366364872],[1198044.2425325625,-885105.3521658801],[1234483.3739585052,-852059.5897468086],[1233915.7006067766,-830459.2101227636],[1244883.8458100131,-830107.3897838052],[1256497.5761423537,-803570.195966422],[1267936.6175836194,-799155.540656997],[1289083.4137117467,-812751.2590678728],[1312288.0911017247,-814706.7937462934],[1335623.4327150949,-798415.3977149004],[1364125.5867187378,-794757.3065891126],[1401511.0512765774,-776131.5749467664],[1415247.555174718,-759920.7186975442],[1454080.299068277,-756870.5016679766],[1445755.4357827778,-768152.7227457816],[1443142.631836699,-792103.1139555824],[1459799.398046724,-828473.6420215984],[1438414.1890339898,-867230.827575193],[1431709.9093011704,-910412.756234829],[1434000.0599342228,-956315.1463461322],[1443657.861090732,-982016.8239780472],[1452677.6148033787,-1027849.7400367486],[1436379.7191045422,-1040242.2259381711],[1431276.2974202698,-1085441.1786490732],[1442770.8001191197,-1111385.0438795078],[1422349.9688161083,-1140561.053987053],[1431322.0433141943,-1167399.2031933116],[1451405.9023788606,-1181788.2483515071]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[1454080.299068277,-756870.5016679766],[1415247.555174718,-759920.7186975442],[1401511.0512765774,-776131.5749467664],[1364125.5867187378,-794757.3065891126],[1335623.4327150949,-798415.3977149004],[1312288.0911017247,-814706.7937462934],[1289083.4137117467,-812751.2590678728],[1267936.6175836194,-799155.540656997],[1256497.5761423537,-803570.195966422],[1244883.8458100131,-830107.3897838052],[1233915.7006067766,-830459.2101227636],[1234483.3739585052,-852059.5897468086],[1198044.2425325625,-885105.3521658801],[1178417.9578514865,-899743.7366364872],[1168108.136511152,-913867.0575245424],[1132255.2579906024,-896474.901647531],[1110492.6081574338,-926696.9662637596],[1086591.4723103065,-928368.6088729264],[1060050.2972217542,-933467.0917389644],[1067461.8475346037,-984152.1684385942],[1050698.8048500551,-986706.6658468684],[1038557.2376939076,-1011693.0693346186],[1003150.482535601,-1019279.6787157512],[980341.477595776,-988729.4510081968],[944666.8404388801,-982802.0946698243],[949032.3297853466,-940569.900832204],[932509.3866985322,-930673.919027206],[908366.775161802,-925257.228184328],[859235.2144402566,-941718.5195468364],[853875.1504866012,-928055.0776806826],[818128.1750109424,-914026.0510279308],[792024.2771129806,-895067.0703762382],[757827.665052146,-888701.8056521228],[779564.4142150372,-860524.5542801038],[769052.823661589,-840667.5670164558],[775581.830056665,-820000.7568867232],[826939.2448110044,-786707.2938467144],[875029.6045423972,-742637.1585501402],[887033.4369370566,-745772.184153729],[910093.3223352658,-725253.621918678],[942034.4107331694,-720960.4641412046],[953193.8606810234,-728587.4560774226],[970118.473296963,-721808.6403067078],[1023081.0676489588,-726396.5055434902],[1074620.598545021,-718557.780343553],[1109449.7816694523,-703271.9450070682],[1121331.1263169318,-690161.9569750302],[1157520.5250324197,-691765.0733642338],[1185055.051478001,-695926.9271245276],[1214013.258925615,-690174.7872956895],[1235158.4381325487,-678530.9828829058],[1287884.934881302,-686980.1923617612],[1305897.5531699508,-687121.0612571542],[1342449.4551031482,-702393.7192056378],[1377806.686203399,-721640.2156093124],[1420670.9797747221,-732241.6571777156],[1454080.299068277,-756870.5016679766]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[757827.665052146,-888701.8056521228],[792024.2771129806,-895067.0703762382],[818128.1750109424,-914026.0510279308],[853875.1504866012,-928055.0776806826],[859235.2144402566,-941718.5195468364],[908366.775161802,-925257.228184328],[932509.3866985322,-930673.919027206],[949032.3297853466,-940569.900832204],[944666.8404388801,-982802.0946698243],[934002.8696143756,-1008276.4134718314],[867205.439993224,-1012219.5648011554],[825012.4672716048,-1005503.9414388682],[775960.85173364,-988374.5653986554],[711695.0989013616,-986279.0430813546],[677780.9692232359,-966039.2822552826],[680366.9731408512,-950566.9114537938],[717862.8476226788,-921782.3357544768],[738509.2358044576,-908821.4803281534],[731621.0801606678,-896954.622562852],[757827.665052146,-888701.8056521228]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[429858.906929627,-894685.5726259722],[431433.5290994849,-864102.102718912],[443597.1096384233,-839004.2997578572],[426725.3137828165,-820058.1168063694],[477320.7340792494,-732073.9267027682],[621238.579700997,-724339.7993230688],[622007.122899527,-688294.9856709638],[603545.7315633394,-682941.3388302256],[589879.2480892654,-660766.9043300002],[547397.5660565044,-638570.6336011742],[504308.935823769,-605312.8452478872],[554353.9931175048,-602534.42580604],[551294.1697138412,-542831.776873205],[654126.9123746032,-536727.0439942068],[756029.4465582918,-531033.0286340696],[761237.638770961,-615011.4814443686],[761035.9358993642,-734563.1799344422],[794524.6311679546,-732084.7994043936],[832575.020944673,-748286.5336963017],[841028.07163453,-731886.1372654744],[875029.6045423972,-742637.1585501402],[826939.2448110044,-786707.2938467144],[775581.830056665,-820000.7568867232],[769052.823661589,-840667.5670164558],[779564.4142150372,-860524.5542801038],[757827.665052146,-888701.8056521228],[731621.0801606678,-896954.622562852],[738509.2358044576,-908821.4803281534],[717862.8476226788,-921782.3357544768],[680366.9731408512,-950566.9114537938],[677780.9692232359,-966039.2822552826],[617920.2625541702,-951388.8311179877],[546395.9026833606,-953329.391105101],[493081.6205165272,-935154.980995677],[429858.906929627,-894685.5726259722]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[756029.4465582918,-531033.0286340696],[754040.6804715052,-515484.12875055],[766984.986122141,-509628.6057360552],[787867.6616877258,-520697.1704211894],[822175.4659561435,-453557.1393110586],[842828.0260163716,-450493.5570514538],[844498.3553552494,-466053.6726556874],[865267.912627204,-464837.405548563],[865844.0154413724,-493865.5539388834],[851819.2197200798,-541176.2952048188],[862804.8631598592,-556759.6203208358],[854314.6576702788,-595534.0585812338],[862131.5851806584,-605063.8166807054],[853579.0841009512,-659401.088171335],[833889.1587898198,-689076.6184436165],[813964.95932864,-693991.9358546814],[794524.6311679546,-732084.7994043936],[761035.9358993642,-734563.1799344422],[761237.638770961,-615011.4814443686],[756029.4465582918,-531033.0286340696]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[3203107.9147362686,21858.5071840918],[3259284.2048162958,30306.2435435113],[3284718.106033206,16409.6502646038],[3266362.7723543453,-17913.8648435091],[3187279.0972497202,-42875.0733598906],[3127036.949994131,-65862.4035997952],[3107327.1087501417,-24274.5351501866],[3117502.8506813287,-4758.6243653695],[3203107.9147362686,21858.5071840918]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[2007133.556246352,-290425.1505699081],[2081360.6485445225,-285324.40497834],[2143678.2922647996,-298578.1346919414],[2167536.5777651966,-323340.580459918],[2092043.633683638,-341033.588560685],[2062695.318653657,-365090.3337756135],[1998781.3905989649,-360310.8106489985],[1929680.8860147155,-334030.5295515913],[1938105.5628619064,-307647.867125365],[1981951.0838241845,-291677.8187039951],[2007133.556246352,-290425.1505699081]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[1426744.9255963562,123762.2634279804],[1516984.1890103517,129468.2093720181],[1598146.496669619,141133.1653208684],[1701128.1750642846,120937.7246798994],[1749145.09271574,89039.5771712968],[1843509.7618267273,118746.4968991061],[1884852.690427622,100663.8175626544],[1985572.8054997427,52125.0904667782],[2060151.0504669563,17646.1648743915],[2094165.41480658,26293.5660194291],[2160956.555769013,18134.8236634181],[2159800.8988009416,-13168.4487383277],[2237830.4490177697,-443.35888092],[2326758.3428073456,-25212.5148367209],[2320030.108466066,-52626.5826064475],[2253125.807962273,-81912.7989623943],[2183300.2036284423,-102827.8956592375],[2108768.966004204,-110081.8814272317],[1959276.644934815,-150976.4787733781],[2018480.9276627752,-78150.9432924316],[1970137.6111119816,-59288.00717569],[1900994.6262508896,-65350.0683726649],[1858941.3731361108,-41611.7894338398],[1822947.6653150823,14254.3951682659],[1764692.5736294894,-554.2200496439],[1662386.903556715,11204.208969575],[1627382.138856408,28405.8860632564],[1488949.5118531103,23616.3426879031],[1449492.6096377594,39130.6831984663],[1484469.2371924794,71727.2737805472],[1381879.0878953242,62432.1446878242],[1314631.5702364254,-3594.5852210805],[1271505.4842718397,-10731.1326008293],[1259823.3234826247,-38846.6192544008],[1209322.257416151,-57017.1721266533],[1163161.774047782,-52172.9135649351],[1214525.8473740336,-12355.3163224935],[1232359.5647019455,29258.6525542379],[1276347.443996854,59169.5009730389],[1326538.9024232032,87154.5510095689],[1403432.088263094,108331.9220961316],[1426744.9255963562,123762.2634279804]]]]}\",\"{\\\"type\\\":\\\"MultiPolygon\\\",\\\"coordinates\\\":[[[[3965670.7767114914,-570548.4687230842],[4024342.4782666583,-533927.71744113],[4048748.3815400945,-528355.1641278442],[4071826.305782846,-601123.3224724118],[3983103.929668701,-646994.3129800828],[3959845.7867815048,-645922.1427323268],[3982169.117549516,-607520.4704073406],[3965670.7767114914,-570548.4687230842]]]]}\"]\n",
       "},\n",
       "\"use_crs\":\"provided\",\n",
       "\"data\":{\n",
       "}\n",
       "}],\n",
       "\"theme\":{\n",
       "\"name\":\"bw\",\n",
       "\"axis\":\"blank\"\n",
       "}\n",
       "};\n",
       "           var plotContainer = document.getElementById(\"Oonz2N\");\n",
       "           window.letsPlotCall(function() {{\n",
       "               LetsPlot.buildPlotFromProcessedSpecs(plotSpec, -1, -1, plotContainer);\n",
       "           }});\n",
       "       })();    \n",
       "   </script>"
      ]
     },
     "execution_count": 16,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "letsPlot() + \n",
    "    geomMap(map = northAmAlbersSds, useCRS = \"provided\", fill = \"blue\", color = \"white\", size = 1) +\n",
    "    theme(axis = \"blank\")"
   ]
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Kotlin",
   "language": "kotlin",
   "name": "kotlin"
  },
  "language_info": {
   "codemirror_mode": "text/x-kotlin",
   "file_extension": ".kt",
   "mimetype": "text/x-kotlin",
   "name": "kotlin",
   "nbconvert_exporter": "",
   "pygments_lexer": "kotlin",
   "version": "1.8.20"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}