Skip to content

Instantly share code, notes, and snippets.

@rpruim
Last active January 20, 2020 01:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rpruim/3e2983cc202b3bc47ea52da1620cff65 to your computer and use it in GitHub Desktop.
Save rpruim/3e2983cc202b3bc47ea52da1620cff65 to your computer and use it in GitHub Desktop.
Choropleth Map
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title></title>
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://d3js.org/d3-geo-projection.v2.min.js"></script>
<link rel="stylesheet" href="map.css" />
<link
href="https://fonts.googleapis.com/css?family=Indie+Flower&display=swap&subset=latin-ext"
rel="stylesheet"
/>
</head>
<body>
<h1>US Demographics</h1>
<div class="map">
Color by:
<select class="map"></select>
</div>
<p>How do you like this map?</p>
<script>
let width = 500
let height = 375
let transitionTime = 3000
let myProjection = d3
.geoAlbersUsa() // places Alaska and Hawaii closer to continental US
.translate([width / 2, height / 2])
.scale(650)
let facts = { population: {}, area: {}, density: {} }
let mapData
let factsData
Promise.all([
d3.json('states.json'),
d3.csv('state-population.csv'),
]).then(function(d) {
drawMap(d)
updateMap()
})
function drawMap(data) {
mapData = data[0]
factsData = data[1]
// we create three objects that serve as "associative arrays" or "hashes"
// we will be able to use facts["population"]["Michigan"], for exmample,
// to get the population of a state. this is a handy trick for accessing
// information based on a key that is bound to svg elements
for (i in factsData) {
facts.population[factsData[i].state] = +factsData[i].population
facts.area[factsData[i].state] = +factsData[i].area
facts.density[factsData[i].state] = +factsData[i].density
}
let pathGenerator = d3.geoPath().projection(myProjection)
d3.select('div.map select')
.on('input', updateMap)
.selectAll('option')
.data(Object.keys(facts))
.enter()
.append('option')
.attr('value', d => d)
.text(d => d)
d3.select('div.map')
.style('width', width + 'px')
.style('height', height + 'px')
.append('svg')
.attr('width', width)
.attr('height', height)
.attr('class', 'map')
.selectAll('path')
.data(mapData.features)
.enter()
.append('path')
.attr('d', pathGenerator)
// identify Calvin University. note use of projection! it takes
// two coordinates in and returns x and y values in SVG coordinates
d3.select('div.map svg')
.selectAll('circle')
.data([{ lat: 42.9295124, lon: -85.5911216 }])
.enter()
.append('circle')
.attr('cx', d => myProjection([d.lon, d.lat])[0])
.attr('cy', d => myProjection([d.lon, d.lat])[1])
.attr('r', 3)
.style('fill', 'red')
}
function updateMap() {
// get the value from the drop down
let fact = d3.select('div.map select').property('value')
// use it to create a color scale
colorScale = d3
.scaleSequential()
.domain(d3.extent(Object.values(facts[fact])).map(Math.log)) // .map(d => Math.log(d))))
.interpolator(d3.interpolateViridis)
// apply the color scale to the paths (ie regions) in our map
d3.selectAll('div.map svg path')
.transition()
.duration(transitionTime)
.style('fill', d =>
colorScale(Math.log(facts[fact][d.properties.name]))
)
}
</script>
</body>
</html>
body {
font-family: 'Indie Flower', cursive;
}
div.map {
border-color: navy;
border-radius: 5;
border-width: 3;
border-style: solid;
}
svg.map {
fill: blanchedalmond;
stroke: white;
}
state population area density
Alabama 4858979 50744 95.8
Alaska 738432 571951 1.3
Arizona 6828065 113635 60.1
Arkansas 2978204 52068 57.2
California 39144818 155959 251.0
Colorado 5456574 103718 52.6
Connecticut 3590886 4845 741.2
Delaware 945934 1954 484.1
Florida 20271272 53927 375.9
Georgia 10214860 57906 176.4
Hawaii 1431603 6423 222.9
Idaho 1654930 82747 20.0
Illinois 12859995 55584 231.4
Indiana 6619680 35867 184.6
Iowa 3123899 55869 55.9
Kansas 2911641 81815 35.6
Kentucky 4425092 39728 111.4
Louisiana 4670724 43562 107.2
Maine 1329328 30862 43.1
Maryland 6006401 9774 614.5
Massachusetts 6794422 7840 866.6
Michigan 9922576 56804 174.7
Minnesota 5489594 79610 69.0
Mississippi 2992333 46907 63.8
Missouri 6083672 68886 88.3
Montana 1032949 145552 7.1
Nebraska 1896190 76872 24.7
Nevada 2890845 109826 26.3
New Hampshire 1330608 8968 148.4
New Jersey 8958013 7417 1207.8
New Mexico 2085109 121356 17.2
New York 19795791 47214 419.3
North Carolina 10042802 48711 206.2
North Dakota 756927 68976 11.0
Ohio 11613423 40948 283.6
Oklahoma 3911338 68667 57.0
Oregon 4028977 95997 42.0
Pennsylvania 12802503 44817 285.7
Rhode Island 1056298 1045 1010.8
South Carolina 4896146 30110 162.6
South Dakota 858469 75885 11.3
Tennessee 6600299 41217 160.1
Texas 27469114 261797 104.9
Utah 2995919 82144 36.5
Vermont 626042 9250 67.7
Virginia 8382993 39594 211.7
Washington 7170351 66544 107.8
West Virginia 1844128 24078 76.6
Wisconsin 5771337 54310 106.3
Wyoming 586107 97100 6.0
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection", "features": [
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-110.7497536705367,37.003059271482705],[-110.49132450304502,37.0039183311733],[-110.46978873908739,36.99790491333913],[-109.99959122601226,36.99790491333913],[-109.6263046507465,36.99790491333913],[-109.04483902389023,36.998763973029725],[-109.04483902389023,36.00311379162791],[-109.04483902389023,35.54609403623036],[-109.04842831788318,35.34249688955889],[-109.04483902389023,35.31672509884098],[-109.04483902389023,34.96021532724327],[-109.04483902389023,34.57965188430884],[-109.04842831788318,33.999786593155925],[-109.04483902389023,33.87522293801938],[-109.04842831788318,33.77814919298192],[-109.04842831788318,33.20859261811618],[-109.04842831788318,32.77820371312713],[-109.04842831788318,32.42598923998239],[-109.04842831788318,31.332406253852533],[-109.27814313343133,31.334124373233728],[-109.99959122601226,31.33326531354313],[-110.45902085710857,31.332406253852533],[-111.07637942389424,31.332406253852533],[-111.36711223732237,31.426043760127598],[-112.36493596735967,31.74131866657666],[-113.12586629386293,31.97240572334723],[-113.33404534545345,32.03855331952319],[-113.4919742811428,32.08923784126841],[-114.8128344705447,32.49385495553955],[-114.79488800058,32.55055289511895],[-114.8128344705447,32.56515690985909],[-114.80924517655176,32.61670049129491],[-114.78053082460823,32.63044544634446],[-114.71951282672826,32.71892859447594],[-114.70156635676356,32.74555944488444],[-114.615423300933,32.73439166890668],[-114.52569095110951,32.7567272208622],[-114.53286953909539,32.79108960848608],[-114.46826224722247,32.84521036899368],[-114.46467295322952,32.91307608455084],[-114.48261942319422,32.93541163650636],[-114.51492306913069,33.02733102340023],[-114.57594106701066,33.036780679996795],[-114.60106612496125,33.025612904019034],[-114.64772694686947,33.04708939628396],[-114.65849482884828,33.03248538154381],[-114.70874494474944,33.090901440504396],[-114.68361988679887,33.148458439774394],[-114.67644129881297,33.27044491583915],[-114.73028070870708,33.30566636315363],[-114.69797706277062,33.36150524304242],[-114.72669141471414,33.40531728726287],[-114.64413765287652,33.41648506324063],[-114.62619118291182,33.433666257052565],[-114.62260188891888,33.45686086869868],[-114.55799459704596,33.53159906178061],[-114.52569095110951,33.55221649435494],[-114.54004812708126,33.591733240122394],[-114.52569095110951,33.68622980608806],[-114.49697659916599,33.69653852237522],[-114.50415518715187,33.76010893947939],[-114.52928024510244,33.81508875967759],[-114.52569095110951,33.85890080389803],[-114.50415518715187,33.864055162041616],[-114.51133377513774,33.911303445024444],[-114.53645883308832,33.92848463883638],[-114.435958601286,34.02813556294562],[-114.435958601286,34.07967914438144],[-114.42160142531425,34.10373281571815],[-114.32469048750487,34.13637708396083],[-114.28879754757547,34.17073947158471],[-114.22777954969548,34.188779725087244],[-114.22419025570255,34.20510185920859],[-114.13445790587905,34.260940739097386],[-114.13804719987199,34.303034663936636],[-114.17752943379433,34.349423887228866],[-114.22777954969548,34.365746021350205],[-114.33904766347663,34.4516519904099],[-114.38570848538485,34.457665408244075],[-114.37852989739896,34.507490870298696],[-114.4718515412154,34.71280613635136],[-114.55440530305303,34.76692689685896],[-114.5795303610036,34.82620201551015],[-114.63695906489065,34.87516841787417],[-114.6333697708977,35.00145019239192],[-114.61183400694006,35.08306086299862],[-114.64772694686947,35.10196017619175],[-114.57235177301773,35.138899742887425],[-114.57235177301773,35.2007520406104],[-114.60465541895418,35.35366466553665],[-114.62619118291182,35.40950354542545],[-114.66567341683417,35.4498793508835],[-114.68003059280592,35.49970481293812],[-114.65849482884828,35.53063096179961],[-114.65849482884828,35.61911410993109],[-114.69079847478474,35.651758378173774],[-114.68003059280592,35.685261706107056],[-114.7051556507565,35.71189255651556],[-114.69438776877769,35.755704600736],[-114.71233423874239,35.80638912248122],[-114.69797706277062,35.85449646515465],[-114.66567341683417,35.87511389772897],[-114.70156635676356,35.901744748137475],[-114.74463788467884,35.98507353812538],[-114.73028070870708,36.02201310482104],[-114.75540576665766,36.090737880068794],[-114.66567341683417,36.117368730477295],[-114.6333697708977,36.14228146150461],[-114.615423300933,36.13025462583625],[-114.57235177301773,36.151731118101175],[-114.51133377513774,36.15087205841058],[-114.50415518715187,36.129395566145654],[-114.4180121313213,36.145717700267],[-114.37135130941309,36.14314052119521],[-114.30674401754017,36.082147283162826],[-114.31392260552605,36.05809361182611],[-114.2385474316743,36.01428156760567],[-114.15240437584376,36.02373122420224],[-114.0662613200132,36.18093914758147],[-114.0483148500485,36.193825042940425],[-114.04472555605555,36.39140877177771],[-114.05190414404143,36.62507300762007],[-114.05190414404143,36.84327416903169],[-114.05190414404143,37.00048209241092],[-113.33404534545345,37.00048209241092],[-112.89974077230772,37.00048209241092],[-112.53722207902078,37.00048209241092],[-111.34916576735766,37.00134115210152],[-110.7497536705367,37.003059271482705]]]},"properties":{"name":"Arizona"},"id":"04"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-89.8492947496475,30.665775933949334],[-89.81699110371103,30.633990725397247],[-89.80981251572516,30.567843129221288],[-89.77391957579576,30.538635099740993],[-89.75956239982399,30.50513177180771],[-89.69136581395813,30.45960160820608],[-89.68418722597225,30.40548084769847],[-89.63034781607816,30.33933325152251],[-89.63034781607816,30.280058132871325],[-89.6159906401064,30.223360193291924],[-89.56932981819818,30.180407208762084],[-89.5262582902829,30.180407208762084],[-89.58727628816288,30.150340119591192],[-89.62316922809228,30.152058238972387],[-89.67700863798638,30.108246194751942],[-89.68418722597225,30.075601926509258],[-89.72725875388754,30.06271603115031],[-89.71649087190872,30.02835364352643],[-89.81699110371103,30.04295765826658],[-89.85647333763337,29.99742749466494],[-89.84570545565455,29.95533356982569],[-89.81699110371103,29.933857077560774],[-89.77391957579576,29.937293316323156],[-89.72725875388754,29.95876980858808],[-89.7416159298593,29.908085286842862],[-89.71290157791577,29.878877257362568],[-89.65906216802168,29.86255512324123],[-89.61240134611346,29.872004779837795],[-89.59086558215581,29.8969175108651],[-89.57291911219112,29.983682539615394],[-89.58009770017699,29.994850315593148],[-89.49395464434645,30.041239538885385],[-89.48318676236762,30.079038165271648],[-89.4185794704947,30.049830135791353],[-89.37191864858649,30.05498449393493],[-89.37191864858649,30.036944240432398],[-89.43293664646646,30.007736210952103],[-89.43293664646646,29.97852818147181],[-89.37909723657236,29.963924166731665],[-89.36832935459354,29.911521525605252],[-89.31448994469945,29.92354836127361],[-89.2750077107771,29.993991255902557],[-89.21757900689006,29.972514763637633],[-89.23193618286183,29.9252664806548],[-89.27859700477005,29.9252664806548],[-89.32166853268532,29.887467854268536],[-89.24270406484064,29.88918597364973],[-89.25347194681946,29.864273242622424],[-89.3647400606006,29.845373929429286],[-89.31807923869238,29.788675989849892],[-89.27859700477005,29.807575303043023],[-89.30372206272062,29.756890781297805],[-89.33602570865709,29.779226333253327],[-89.38627582455824,29.788675989849892],[-89.42934735247353,29.741427706867064],[-89.43293664646646,29.656380797497967],[-89.46524029240292,29.652085499044986],[-89.48677605636055,29.725964632436316],[-89.5262582902829,29.726823692126914],[-89.53343687826877,29.67012575254752],[-89.48677605636055,29.6203002904929],[-89.53343687826877,29.648649260282596],[-89.58368699416994,29.652944558735584],[-89.61240134611346,29.638340543995433],[-89.66624075600755,29.643494902139018],[-89.60163346413464,29.609991574205736],[-89.60163346413464,29.582501664106637],[-89.68418722597225,29.624595588945887],[-89.68418722597225,29.603119096680963],[-89.64111569805698,29.575629186581864],[-89.68418722597225,29.563602350913506],[-89.68059793197932,29.53439432143321],[-89.64111569805698,29.503468172571722],[-89.56932981819818,29.494018515975156],[-89.57291911219112,29.475119202782025],[-89.52984758427584,29.4545017702077],[-89.53343687826877,29.425293740727405],[-89.5083118203182,29.385776994959947],[-89.47600817438175,29.41154878567785],[-89.45806170441703,29.393508532175318],[-89.37909723657236,29.391790412794123],[-89.32166853268532,29.36258238331383],[-89.3109006507065,29.388354174031733],[-89.2391147708477,29.310179742187415],[-89.19963253692536,29.347978368573678],[-89.1134894810948,29.252622742917424],[-89.1134894810948,29.201938221172206],[-89.09195371713717,29.190770445194445],[-89.02734642526426,29.21482411653116],[-89.00222136731367,29.179602669216685],[-89.08836442314423,29.166716773857736],[-89.0955430111301,29.138367804068032],[-89.03811430724306,29.135790624996247],[-89.06682865918658,29.091119521085204],[-89.10631089310893,29.11173695365953],[-89.1493824210242,29.029267223362226],[-89.14220383303832,28.991468596975963],[-89.21757900689006,29.022394745837452],[-89.22475759487594,29.06964302882028],[-89.25347194681946,29.083387983869834],[-89.3647400606006,28.96483774656746],[-89.4185794704947,28.929616299252984],[-89.39345441254412,28.987173298522983],[-89.36115076660766,29.01208602955029],[-89.34320429664297,29.053320894698942],[-89.3109006507065,29.071361148201476],[-89.3109006507065,29.117750371493713],[-89.27859700477005,29.137508744377442],[-89.28218629876298,29.18132078859788],[-89.31807923869238,29.201938221172206],[-89.33243641466414,29.148676520355195],[-89.38986511855119,29.12376378932789],[-89.43293664646646,29.148676520355195],[-89.48318676236762,29.21482411653116],[-89.60522275812758,29.251763683226827],[-89.64111569805698,29.290421369303687],[-89.84211616166161,29.318770339093383],[-89.9031341595416,29.294716667756674],[-90.08977744717447,29.164139594785944],[-90.22258132491325,29.08510610325103],[-90.24770638286383,29.093696700156997],[-90.23334920689207,29.128918147471467],[-90.27642073480735,29.14266310252102],[-90.28359932279322,29.17788454983549],[-90.26206355883558,29.180461728907282],[-90.30513508675087,29.266367697966977],[-90.34461732067321,29.28956230961309],[-90.37692096660966,29.283548891778914],[-90.3805102606026,29.256058981679814],[-90.3984567305673,29.261213339823392],[-90.39486743657436,29.299011966209655],[-90.43076037650376,29.34711930888308],[-90.47742119841197,29.29213948868488],[-90.52767131431314,29.30416632435324],[-90.55279637226371,29.28526701116011],[-90.5779214302143,29.31189786156861],[-90.59945719417193,29.28870324992249],[-90.56356425424254,29.23458248941489],[-90.60663578215782,29.238018728177273],[-90.6317608401084,29.21482411653116],[-90.64611801608015,29.168434893238924],[-90.67483236802367,29.174448311073107],[-90.69277883798837,29.125481908709084],[-90.72149318993189,29.135790624996247],[-90.78968977579775,29.10744165520655],[-90.8112255397554,29.04215311872118],[-90.86865424364244,29.055898073770734],[-90.85070777367773,29.073938327273268],[-90.89736859558595,29.13149532654326],[-90.96197588745888,29.180461728907282],[-91.0014581213812,29.16929395292952],[-91.09477976519764,29.187334206432062],[-91.13067270512705,29.21568317622176],[-91.22040505495055,29.225991892508922],[-91.27783375883759,29.24746838477384],[-91.33526246272463,29.299011966209655],[-91.29219093480934,29.311038801878013],[-91.26706587685877,29.360864263932633],[-91.23835152491525,29.35055554764547],[-91.19527999699997,29.305884443734435],[-91.17015493904938,29.324783756927566],[-91.17374423304233,29.266367697966977],[-91.11990482314823,29.251763683226827],[-91.13426199911999,29.341105891048905],[-91.2168157609576,29.39608571124711],[-91.2168157609576,29.432166218252178],[-91.23835152491525,29.438179636086353],[-91.28860164081641,29.402958188771883],[-91.33526246272463,29.391790412794123],[-91.32808387473874,29.427011860108593],[-91.36397681466815,29.420998442274417],[-91.35320893268933,29.4545017702077],[-91.32090528675286,29.478555441544408],[-91.35679822668226,29.512917829168288],[-91.46088775247752,29.46996484463844],[-91.49678069240692,29.538689619886192],[-91.53267363233633,29.53181714236142],[-91.55420939629396,29.633186185851855],[-91.6475310401104,29.634045245542453],[-91.62599527615276,29.66239421533215],[-91.62240598215982,29.73541428903288],[-91.7372633899339,29.749159244082435],[-91.78392421184212,29.740568647176467],[-91.85571009170091,29.707924378933782],[-91.85929938569386,29.73627334872348],[-91.88083514965149,29.756890781297805],[-91.85212079770797,29.792112228612282],[-91.82340644576445,29.78953504954049],[-91.83058503375034,29.829051795307947],[-91.88801373763737,29.83592427283272],[-91.93826385353853,29.81702495963959],[-91.970567499475,29.833347093760935],[-91.97774608746087,29.799843765827653],[-92.06388914329143,29.768917616966164],[-92.11413925919258,29.73970958748587],[-92.13567502315023,29.76719949758497],[-92.20028231502314,29.753454542535422],[-92.20028231502314,29.725964632436316],[-92.1679786690867,29.700192841718412],[-92.10337137721376,29.69332036419364],[-92.13567502315023,29.667548573475727],[-92.1069606712067,29.613427812968126],[-92.03517479134791,29.63146806647066],[-92.01722832138321,29.61600499203991],[-92.06388914329143,29.60397815637156],[-92.04235337933379,29.586796962559617],[-92.15721078710787,29.58164260441604],[-92.25053243092431,29.53954867957679],[-92.3223183107831,29.53181714236142],[-92.61664041820418,29.58593790286902],[-92.74226570795707,29.622018409874094],[-92.94685546555465,29.70878343862438],[-93.02940922739226,29.73627334872348],[-93.17657028110281,29.77063573634736],[-93.29501698286983,29.774931034800346],[-93.34526709877099,29.762904199131988],[-93.47448168251682,29.768917616966164],[-93.68266073410733,29.74744112470124],[-93.74367873198732,29.73627334872348],[-93.83700037580375,29.690743185121846],[-93.89801837368373,29.771494796037956],[-93.93032201962019,29.79726658675586],[-93.92314343163432,29.818743079020784],[-93.85494684576845,29.865132302313015],[-93.81546461184611,29.920971182201818],[-93.79033955389554,29.987977838068375],[-93.74008943799437,30.021481166001657],[-93.72214296802967,30.05154825517255],[-93.70060720407204,30.065293210222094],[-93.7329108500085,30.08161534434344],[-93.68983932209322,30.141749522685224],[-93.72214296802967,30.209615238242378],[-93.70419649806497,30.24397762586625],[-93.70778579205792,30.288648729777293],[-93.76521449594496,30.33331983368833],[-93.75803590795907,30.39001777326773],[-93.74008943799437,30.402044608936087],[-93.6970179100791,30.440702295012947],[-93.7149643800438,30.518876726857265],[-93.74008943799437,30.53949415943159],[-93.72932155601555,30.573856547055463],[-93.6790714401144,30.599628337773375],[-93.67189285212852,30.658044396733963],[-93.62882132421323,30.679520888998887],[-93.61805344223441,30.742232246412456],[-93.58574979629796,30.796353006920064],[-93.5534461503615,30.82470197670976],[-93.55703544435444,30.868514020930206],[-93.55703544435444,30.911467005460047],[-93.52473179841797,30.930366318653178],[-93.56780332633326,30.977614601636013],[-93.56421403234032,31.00596357142571],[-93.5175532104321,31.024003824928243],[-93.52473179841797,31.070393048220474],[-93.5534461503615,31.097023898628983],[-93.53191038640387,31.184647987069866],[-93.5534461503615,31.185507046760463],[-93.60010697226971,31.176057390163898],[-93.62164273622736,31.27141301582015],[-93.643178500185,31.269694896438956],[-93.68625002810028,31.31007070189701],[-93.66471426414263,31.35560086549865],[-93.67548214612145,31.3976947903379],[-93.70419649806497,31.41058068569685],[-93.70060720407204,31.43807059579595],[-93.75085731997319,31.46899674465744],[-93.72932155601555,31.492191356303557],[-93.74008943799437,31.52225844547445],[-93.78675025990259,31.527412803618027],[-93.83341108181081,31.585828862578623],[-93.81546461184611,31.622768429274288],[-93.82623249382493,31.661426115351148],[-93.80110743587436,31.697506622356215],[-93.82982178781788,31.745613965029648],[-93.822643199832,31.774821994509942],[-93.8764826097261,31.82207027749277],[-93.88007190371903,31.84440582944829],[-93.90878625566255,31.893372231812315],[-93.97339354753547,31.920003082220816],[-94.01287578145781,31.981855379943795],[-94.04159013340133,31.992164096230958],[-94.04159013340133,32.19576124290242],[-94.04159013340133,32.39248591204912],[-94.04159013340133,32.69315680375803],[-94.04159013340133,32.88129087599875],[-94.04159013340133,33.01959948618486],[-93.81546461184611,33.01959948618486],[-93.80469672986729,33.01959948618486],[-93.52114250442504,33.01874042649426],[-93.48883885848858,33.01874042649426],[-93.23758827898278,33.017881366803664],[-92.98992699346994,33.017022307113066],[-92.72431923799238,33.014445128041274],[-92.06747843728436,33.0084317102071],[-91.46088775247752,33.005854531135306],[-91.43576269452694,33.005854531135306],[-91.26347658286582,33.00499547144471],[-91.16656564505645,33.00413641175411],[-91.20245858498585,32.96118342722426],[-91.21322646696467,32.91994856207562],[-91.1809228210282,32.90104924888249],[-91.13067270512705,32.923384800838],[-91.13426199911999,32.98094180010799],[-91.09477976519764,32.98437803887038],[-91.06247611926119,32.9225257411474],[-91.06965470724707,32.88902241321413],[-91.14502988109881,32.844351309303086],[-91.1629763510635,32.812566100751],[-91.16656564505645,32.751572862718625],[-91.05529753127531,32.72580107200071],[-91.06247611926119,32.702606460354595],[-91.11990482314823,32.6742574905649],[-91.15220846908468,32.64161322232222],[-91.14144058710586,32.59694211841118],[-91.11990482314823,32.58491528274282],[-91.04811894328942,32.60725083469834],[-91.0265831793318,32.6467675804658],[-91.0086367093671,32.60209647655476],[-91.04452964929649,32.57632468583685],[-91.06965470724707,32.562579730787306],[-91.07683329523294,32.54711665635656],[-91.00504741537415,32.513613328423276],[-90.98710094540945,32.49127777646776],[-91.02299388533885,32.48526435863358],[-91.08401188321884,32.52649922378223],[-91.10195835318353,32.525640164091634],[-91.11272623516234,32.47581470203701],[-91.03017247332473,32.43372077719776],[-90.99427953339533,32.450901971009706],[-90.96556518145181,32.420834881838815],[-90.99427953339533,32.40365368802687],[-90.99427953339533,32.35382822597225],[-90.91172577155771,32.33922421123211],[-90.89019000760007,32.37358659885598],[-90.87583283162832,32.35812352442524],[-90.93326153551536,32.290257808868084],[-90.97633306343063,32.29713028639286],[-90.96915447544475,32.251600122791224],[-90.98710094540945,32.21551961578615],[-91.0373510613106,32.24215046619466],[-91.06247611926119,32.21895585454854],[-91.12349411714116,32.21122431733317],[-91.15938705707056,32.2017746607366],[-91.16656564505645,32.13390894517945],[-91.05170823728237,32.124459288582884],[-91.05888682526825,32.17772098939989],[-91.00504741537415,32.15710355682556],[-91.03017247332473,32.120163990129896],[-91.03017247332473,32.11415057229572],[-91.08042258922589,32.078929124981244],[-91.09836905919059,32.048002976119754],[-91.14502988109881,32.081506304053036],[-91.1629763510635,32.06002981178811],[-91.09477976519764,32.03769425983259],[-91.09477976519764,31.99474127530275],[-91.1629763510635,31.982714439634393],[-91.18810140901408,31.96123794736947],[-91.1809228210282,31.91828496283962],[-91.24911940689407,31.870177620166196],[-91.27065517085171,31.859009844188435],[-91.24553011290112,31.83323805347053],[-91.26347658286582,31.809184382133814],[-91.28860164081641,31.823788396873965],[-91.29578022880229,31.86072796356963],[-91.33885175671756,31.851278306973065],[-91.36397681466815,31.770526696056955],[-91.25988728887289,31.76107703946039],[-91.31731599275993,31.745613965029648],[-91.3783339906399,31.732728069670692],[-91.3962804606046,31.71125157740577],[-91.39986975459755,31.620191250202495],[-91.46447704647046,31.620191250202495],[-91.50036998639986,31.64424492153921],[-91.51831645636456,31.611600653296527],[-91.4860128104281,31.585828862578623],[-91.42140551855518,31.596996638556377],[-91.40704834258342,31.569506728457277],[-91.4501198704987,31.539439639286385],[-91.5219057503575,31.523976564855644],[-91.51831645636456,31.46040614775147],[-91.47165563445634,31.395976670956706],[-91.47165563445634,31.371063939929392],[-91.5039592803928,31.365050522095217],[-91.53267363233633,31.389963253122524],[-91.54703080830808,31.43291623765237],[-91.57933445424455,31.39941290971909],[-91.55420939629396,31.385667954669543],[-91.55062010230102,31.347010268592683],[-91.50754857438574,31.315225060040596],[-91.51472716237161,31.27828549334493],[-91.5757451602516,31.261104299532988],[-91.64035245212452,31.26711771736717],[-91.64394174611746,31.234473449124486],[-91.59010233622335,31.19152046459464],[-91.62599527615276,31.133963465324648],[-91.62240598215982,31.10990979398793],[-91.56497727827278,31.06695680945809],[-91.59010233622335,31.01713134740347],[-91.63676315813157,30.999091093900937],[-91.17733352703527,30.999091093900937],[-91.05888682526825,30.999091093900937],[-90.82558271572715,30.999091093900937],[-90.56715354823548,30.999950153591527],[-90.54920707827078,30.999950153591527],[-90.34820661466614,30.999950153591527],[-90.25847426484265,31.000809213282125],[-89.83493757367573,31.001668272972722],[-89.72725875388754,31.00252733266332],[-89.72725875388754,30.970742124111233],[-89.75238381183811,30.9518428109181],[-89.74879451784517,30.91318512484124],[-89.77391957579576,30.896862990719903],[-89.80622322173221,30.78948052939529],[-89.8313482796828,30.768004037130368],[-89.81699110371103,30.737077888268878],[-89.84570545565455,30.707010799097986],[-89.8492947496475,30.665775933949334]]],[[[-92.01722832138321,29.591092261012605],[-91.98133538145382,29.614286872658724],[-91.93826385353853,29.609991574205736],[-91.92749597155971,29.632327126161258],[-91.84853150371504,29.627172768017672],[-91.76597774187742,29.574770126891266],[-91.73367409594096,29.580783544725442],[-91.71213833198331,29.555870813698135],[-91.76597774187742,29.524944664836646],[-91.76956703587035,29.490582277212766],[-91.81981715177152,29.474260143091428],[-92.03158549735497,29.57305200751007],[-92.01722832138321,29.591092261012605]]],[[[-88.88018537155371,30.053266374553743],[-88.83352454964549,29.999145614046135],[-88.81557807968079,29.933857077560774],[-88.82634596165961,29.84709204881048],[-88.86223890158901,29.756890781297805],[-88.87659607756078,29.759467960369598],[-88.84788172561726,29.836783332523318],[-88.83352454964549,29.922689301583013],[-88.83711384363843,29.96220604735047],[-88.88018537155371,30.053266374553743]]],[[[-89.34320429664297,30.05927979238792],[-89.30372206272062,30.091924060630603],[-89.18886465494654,30.161507895568953],[-89.18168606696067,30.149481059900594],[-89.22834688886888,30.095360299392986],[-89.22116830088301,30.071306628056277],[-89.17450747897479,30.04295765826658],[-89.22834688886888,30.000004673736733],[-89.2391147708477,30.040380479194788],[-89.2750077107771,30.03178988228882],[-89.33602570865709,30.040380479194788],[-89.34320429664297,30.05927979238792]]],[[[-90.37692096660966,29.10830071489714],[-90.35179590865908,29.13149532654326],[-90.30513508675087,29.075656446654463],[-90.33384943869439,29.063629610986105],[-90.37692096660966,29.10830071489714]]],[[[-90.5599749602496,29.093696700156997],[-90.41999249452495,29.0653477303673],[-90.4881890803908,29.05847525284252],[-90.5599749602496,29.093696700156997]]],[[[-90.75020754187541,29.055898073770734],[-90.66047519205192,29.072220207892073],[-90.65329660406604,29.05761619315193],[-90.74661824788248,29.040434999339986],[-90.75020754187541,29.055898073770734]]],[[[-89.62675852208521,29.53525338112381],[-89.56574052420524,29.543843978029777],[-89.59804417014169,29.507763471024703],[-89.62675852208521,29.53525338112381]]]]},"properties":{"name":"Louisiana"},"id":"22"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-115.03895999209992,41.995914193231926],[-115.31533562955629,41.995914193231926],[-116.36699876948768,41.995914193231926],[-117.01666098220981,41.999350431994316],[-117.02742886418864,42.00020949168491],[-117.02742886418864,43.68053024649246],[-117.02742886418864,43.8085301403914],[-117.02025027620274,43.859214662136615],[-116.98076804228042,43.87983209471094],[-116.98076804228042,43.91505354202541],[-116.93769651436514,43.98463737696376],[-116.9341072203722,44.02157694365943],[-116.97358945429454,44.04906685375853],[-116.97717874828749,44.0851473607636],[-116.9341072203722,44.09975137550375],[-116.8982142804428,44.153013076320754],[-116.90180357443575,44.17964392672926],[-116.96641086630865,44.194247941469406],[-116.97358945429454,44.239778105071046],[-117.04537533415333,44.22946938878388],[-117.10280403804038,44.2801539105291],[-117.17100062390622,44.25867741826418],[-117.22125073980739,44.30163040279402],[-117.18894709387092,44.336851850108495],[-117.24278650376503,44.39612696875968],[-117.21407215182151,44.42705311762117],[-117.22484003380033,44.483751057200564],[-117.16023274192742,44.52498592234922],[-117.12433980199802,44.58168386192861],[-117.09562545005448,44.66501265191651],[-117.04537533415333,44.744905203142025],[-116.93051792637925,44.786999127981275],[-116.90180357443575,44.841119888488876],[-116.86591063450633,44.87032791796917],[-116.83360698856987,44.92874397692976],[-116.85873204652046,44.97856943898438],[-116.84796416454164,45.022381483204825],[-116.78335687266872,45.07822036309362],[-116.77617828468284,45.10571027319273],[-116.72951746277462,45.1400726608166],[-116.68644593485934,45.26807255471554],[-116.67567805288053,45.314461778007775],[-116.58953499704997,45.44332073159731],[-116.55364205712056,45.46307910448104],[-116.55005276312762,45.51032738746387],[-116.46390970729706,45.603105834048336],[-116.48903476524765,45.649495057340566],[-116.53569558715586,45.691588982179816],[-116.53569558715586,45.73711914578145],[-116.5931242910429,45.7783540109301],[-116.66132087690876,45.7800721303113],[-116.69721381683817,45.82044793576935],[-116.76182110871108,45.816152637316364],[-116.79412475464754,45.85652844277442],[-116.85873204652046,45.90377672575725],[-116.9161607504075,45.99569611265112],[-116.95564298432984,46.07558866387663],[-116.98076804228042,46.085038320473195],[-116.91975004440044,46.16493087169871],[-116.96282157231572,46.19929325932259],[-116.96282157231572,46.25341401983019],[-116.99153592425924,46.299803243122426],[-117.05255392213921,46.343615287342864],[-117.03819674616746,46.42608501764017],[-117.03819674616746,46.54205807587075],[-117.03819674616746,47.12707772516725],[-117.04178604016039,47.259372917519165],[-117.04178604016039,47.36589631915319],[-117.04178604016039,47.97754681885818],[-117.04178604016039,48.045412534415334],[-117.03460745217451,48.370996157151566],[-117.03460745217451,48.7498414807048],[-117.03101815818158,48.84691522574225],[-117.03101815818158,48.998968790977905],[-116.41724888538884,48.999827850668495],[-116.04755160411604,49.00068691035909],[-116.04755160411604,48.50243228981289],[-116.05114089810897,48.21636541284412],[-116.04755160411604,47.97754681885818],[-115.90756913839138,47.84611068619685],[-115.85372972849729,47.82807043269432],[-115.82501537655375,47.75247317992179],[-115.79630102461024,47.75762753806537],[-115.77117596665965,47.717251732607316],[-115.72451514475145,47.69663430003299],[-115.73169373273731,47.64251353952539],[-115.68862220482204,47.59526525654256],[-115.73528302673026,47.567775346443455],[-115.74246161471615,47.53856731696316],[-115.7029793807938,47.53427201851018],[-115.68503291082911,47.48530561614616],[-115.62760420694207,47.479292198311974],[-115.63837208892087,47.46039288511884],[-115.71733655676556,47.45352040759407],[-115.76040808468085,47.42259425873258],[-115.7209258507585,47.424312378113775],[-115.55222903309033,47.34957418503184],[-115.52710397513974,47.30318496173961],[-115.41224656736566,47.26452727566275],[-115.32610351153511,47.25593667875678],[-115.29379986559866,47.220715231442306],[-115.30097845358452,47.18807096319962],[-115.26149621966219,47.182057545365446],[-115.2435497496975,47.15027233681336],[-115.20047822178222,47.1391045608356],[-115.13946022390223,47.09271533754337],[-115.07126363803637,47.02227244291442],[-115.04972787407874,46.970728861478605],[-115.00306705217052,46.9715879211692],[-114.96358481824818,46.93293023509234],[-114.93128117231171,46.92004433973339],[-114.94563834828348,46.859051101701006],[-114.88820964439644,46.808366579955795],[-114.76617364863648,46.758541117901174],[-114.78770941259413,46.71129283491834],[-114.76617364863648,46.696688820178196],[-114.67644129881297,46.73706462563625],[-114.62260188891888,46.70699753646536],[-114.64413765287652,46.67349420853208],[-114.59388753697536,46.63311840307402],[-114.54722671506714,46.64428617905178],[-114.46826224722247,46.63140028369283],[-114.4539050712507,46.64944053719537],[-114.36058342743426,46.669198910079096],[-114.33186907549074,46.66060831317312],[-114.32110119351192,46.6107828511185],[-114.35699413344133,46.505118509175084],[-114.4000656613566,46.50254133010329],[-114.37494060340603,46.443266211452105],[-114.42160142531425,46.38742733156331],[-114.42519071930718,46.28777640745407],[-114.4718515412154,46.26715897487974],[-114.45031577725777,46.24138718416184],[-114.44672648326483,46.173521468604676],[-114.51492306913069,46.1675080507705],[-114.52210165711656,46.12541412593125],[-114.46108365923658,46.097065156141554],[-114.49338730517304,46.04723969408693],[-114.47903012920129,46.0008504707947],[-114.41083354333543,45.977655859148584],[-114.43236930729307,45.935561934309334],[-114.38570848538485,45.8891727110171],[-114.41083354333543,45.85137408463084],[-114.50056589315892,45.85051502494024],[-114.56517318503184,45.774058712477114],[-114.49697659916599,45.71048829537295],[-114.50056589315892,45.669253430224295],[-114.56517318503184,45.63746822167221],[-114.53645883308832,45.60654207281072],[-114.55799459704596,45.565307207662066],[-114.46108365923658,45.561011909209086],[-114.41442283732836,45.50946832777327],[-114.36417272142721,45.49056901458014],[-114.34622625146251,45.45964286571865],[-114.26008319563195,45.49572337272372],[-114.24931531365313,45.54554883477834],[-114.20265449174491,45.535240118491174],[-114.13445790587905,45.557575670446695],[-114.0662613200132,45.62801856507564],[-114.01242191011909,45.658085654246534],[-114.01960049810498,45.69330710156101],[-113.98729685216851,45.704474877538765],[-113.94422532425324,45.68643462403623],[-113.89756450234502,45.64434069919699],[-113.9047430903309,45.62200514724147],[-113.86167156241562,45.62372326662266],[-113.80783215252151,45.60224677435774],[-113.8329572104721,45.52063610375103],[-113.76476062460624,45.52063610375103],[-113.7611713306133,45.48111935798357],[-113.78270709457094,45.45534756726566],[-113.7611713306133,45.40638116490164],[-113.73245697866977,45.3900590307803],[-113.73963556665566,45.329924852438516],[-113.6893854507545,45.283535629146286],[-113.68579615676155,45.253468539975394],[-113.59965310093101,45.19075718256182],[-113.57452804298042,45.12804582514824],[-113.51351004510045,45.11515992978929],[-113.52068863308632,45.09282437783377],[-113.45249204722046,45.05932104990049],[-113.4381348712487,45.006918408774084],[-113.44531345923458,44.95967012579125],[-113.49556357513575,44.94850234981349],[-113.4560813412134,44.86517355982559],[-113.35558110941109,44.81964339622395],[-113.34122393343932,44.78528100860008],[-113.24790228962289,44.82307963498634],[-113.13304488184882,44.77325417293172],[-113.06843758997589,44.679616666656656],[-113.05049112001119,44.636663682126816],[-113.08279476594765,44.59542881697816],[-113.00741959209591,44.525844982039814],[-113.02536606206061,44.49663695255952],[-113.00383029810297,44.45110678895788],[-112.94999088820887,44.41674440133401],[-112.88538359633596,44.39612696875968],[-112.84590136241361,44.35832834237342],[-112.81359771647716,44.37722765556655],[-112.83513348043479,44.42275781916818],[-112.7812940705407,44.48461011689116],[-112.72027607266072,44.50436848977489],[-112.65925807478074,44.48546917658176],[-112.54081137301372,44.483751057200564],[-112.50132913909138,44.46313362462624],[-112.47261478714786,44.480314818438174],[-112.3864717313173,44.4476705501955],[-112.3577573793738,44.48632823627236],[-112.3505787913879,44.53873087739877],[-112.31827514545145,44.53873087739877],[-112.28597149951499,44.56879796656966],[-112.22854279562794,44.56278454873548],[-112.18547126771267,44.53271745956459],[-112.1352211518115,44.53958993708936],[-112.10650679986799,44.52069062389623],[-112.03113162601625,44.54646241461414],[-111.99523868608685,44.53529463863638],[-111.94857786417863,44.5567711309013],[-111.86961339633396,44.56364360842608],[-111.82295257442574,44.50952284791847],[-111.71527375463754,44.54388523554235],[-111.70450587265871,44.56020736966369],[-111.61836281682817,44.54903959368593],[-111.5860591708917,44.56278454873548],[-111.47120176311762,44.54044899677996],[-111.52504117301173,44.59542881697816],[-111.46761246912469,44.679616666656656],[-111.48196964509644,44.70882469613695],[-111.41377305923059,44.710542815518146],[-111.37788011930118,44.7517776806668],[-111.32404070940709,44.7242877705677],[-111.22354047760477,44.62377778676786],[-111.23071906559065,44.586838220072195],[-111.14457600976009,44.53615369832698],[-111.12304024580246,44.49405977348773],[-111.04766507195072,44.474301400604],[-111.05125436594365,44.35403304392043],[-111.04766507195072,43.98377831727316],[-111.04766507195072,43.68138930618306],[-111.04407577795777,43.500986771157706],[-111.04407577795777,43.31542987798877],[-111.04407577795777,43.01905428473284],[-111.04407577795777,42.72267869147691],[-111.04766507195072,42.51392718666186],[-111.04766507195072,42.0019276110661],[-111.50709470304703,41.999350431994316],[-112.11009609386093,41.99763231261312],[-112.16393550375503,41.99677325292252],[-112.19264985569855,42.0010685513755],[-113.00024100411004,41.99849137230372],[-113.82218932849328,41.988182656016555],[-114.04113626206261,41.99333701416013],[-114.2816189595896,41.99419607385073],[-114.5974768309683,41.99419607385073],[-114.80565588255882,42.0019276110661],[-115.03895999209992,41.995914193231926]]]},"properties":{"name":"Idaho"},"id":"16"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-97.16427590725907,48.54366715496154],[-97.13915084930849,48.61239193020929],[-97.10684720337203,48.63300936278362],[-97.0960793213932,48.68627106360063],[-97.14991873128731,48.75499583884838],[-97.17863308323082,48.861519240482394],[-97.20016884718846,48.88213667305672],[-97.23965108111081,48.96632452273522],[-97.22888319913199,49.00068691035909],[-96.93097179771797,48.999827850668495],[-96.40693487474874,48.999827850668495],[-95.31937879488794,48.998968790977905],[-95.1542712712127,48.998968790977905],[-95.1542712712127,49.384686592055914],[-95.05736033340332,49.35290138350383],[-94.95686010160101,49.37008257731576],[-94.85277057580575,49.32455241371413],[-94.82405622386223,49.29448532454324],[-94.77380610796108,49.12095526704266],[-94.74868105001049,49.09947877477774],[-94.68407375813757,48.883854792437916],[-94.70560952209522,48.82457967378673],[-94.69125234612346,48.7781904504945],[-94.6410022302223,48.74125088379883],[-94.53691270442704,48.70259319772197],[-94.42923388463885,48.70087507834077],[-94.38257306273063,48.71204285431853],[-94.2641263609636,48.699156958959584],[-94.22464412704127,48.64933149690496],[-94.00569719347193,48.64331807907078],[-93.83341108181081,48.62527782556825],[-93.80469672986729,48.568579885988854],[-93.81546461184611,48.526485961149604],[-93.79392884788848,48.51617724486244],[-93.643178500185,48.517895364243635],[-93.6252320302203,48.53078125960259],[-93.54626756237562,48.529063140221396],[-93.463713800538,48.54624433403333],[-93.46730309453095,48.587479199181985],[-93.34885639276392,48.62699594494944],[-93.20887392703926,48.64245901938018],[-93.17657028110281,48.62355970618705],[-93.0868379312793,48.62785500464004],[-92.9504447595476,48.63043218371183],[-92.92890899558995,48.60723757206571],[-92.72790853198532,48.53937185650856],[-92.63458688816888,48.54280809527094],[-92.63099759417594,48.5007141704317],[-92.6991941800418,48.49470075259752],[-92.71355135601355,48.46291554404543],[-92.65612265212651,48.43628469363693],[-92.50896159841598,48.44745246961469],[-92.45512218852188,48.40106324632246],[-92.47665795247953,48.371855216842164],[-92.45512218852188,48.329761292002914],[-92.36897913269132,48.22066071129711],[-92.27924678286783,48.24385532294322],[-92.30796113481135,48.31601633695336],[-92.26130031290313,48.35467402303022],[-92.20746090300902,48.345224366433655],[-92.05671055530554,48.35896932148321],[-91.99928185141852,48.321170695096946],[-92.00646043940439,48.26533181520814],[-91.9454424415244,48.23011036789367],[-91.89519232562326,48.23784190510904],[-91.86288867968679,48.206915756247554],[-91.79828138781387,48.20262045779457],[-91.71572762597626,48.19918421903218],[-91.69778115601156,48.14162721976219],[-91.71213833198331,48.11499636935368],[-91.64035245212452,48.09695611585115],[-91.5577986902869,48.10812389182891],[-91.56856657226572,48.043694415034146],[-91.48960210442104,48.067748086370855],[-91.43935198851987,48.048848773177724],[-91.37115540265403,48.06946620575205],[-91.24911940689407,48.084070220492194],[-91.08401188321884,48.18114396552965],[-91.03017247332473,48.18887550274502],[-90.97633306343063,48.21980165160651],[-90.88660071360714,48.245573442324414],[-90.83635059770597,48.23440566634665],[-90.83635059770597,48.17684866707666],[-90.775332599826,48.16224465233652],[-90.79686836378363,48.139909100381],[-90.76097542385423,48.098674235232345],[-90.70354671996719,48.09609705616055],[-90.5779214302143,48.121009787187866],[-90.55638566625666,48.09609705616055],[-90.46665331643317,48.10898295151951],[-90.37333167261673,48.09351987708877],[-90.30513508675087,48.10468765306652],[-90.13284897508974,48.1115601305913],[-90.02875944929448,48.087506459254584],[-89.99645580335803,48.03080851967519],[-89.87441980759807,47.98527835607355],[-89.82058039770398,48.01534544524444],[-89.74879451784517,48.02307698245982],[-89.70213369593695,48.00589578864788],[-89.61957993409933,48.01105014679146],[-89.58009770017699,47.99558707236071],[-89.4903653503535,48.014486385553845],[-89.58727628816288,47.96637904288042],[-89.62316922809228,47.98356023669236],[-89.63752640406403,47.95435220721206],[-89.69854440194402,47.94146631185311],[-89.79186604576046,47.89164084979849],[-89.92466992349924,47.8624328203182],[-89.97492003940039,47.83064761176611],[-90.16156332703326,47.79284898537985],[-90.33384943869439,47.74645976208761],[-90.38768884858848,47.74130540394403],[-90.53843919629196,47.70264771786717],[-90.55279637226371,47.690620882198814],[-90.73585036590366,47.624473286022855],[-90.86865424364244,47.556607570465694],[-91.02299388533885,47.46468818357183],[-91.12708341113411,47.39939964708646],[-91.18810140901408,47.340124528435275],[-91.38551257862578,47.18721190350903],[-91.47883422244222,47.12535960578605],[-91.57215586625865,47.090138158471575],[-91.66547751007509,47.01454090569905],[-91.70495974399743,47.005091249102485],[-91.79469209382093,46.939802712617116],[-91.84135291572915,46.92519869787697],[-92.06029984929849,46.81008469933698],[-92.09260349523495,46.788608207072066],[-92.06388914329143,46.74565522254222],[-92.01363902739027,46.70613847677476],[-92.08901420124201,46.74909146130461],[-92.13926431714317,46.739641804708036],[-92.15003219912198,46.71472907368073],[-92.20746090300902,46.70270223801237],[-92.17515725707257,46.68638010389103],[-92.21463949099491,46.64944053719537],[-92.29360395883958,46.663185492244914],[-92.29360395883958,46.4174944207342],[-92.29360395883958,46.15719933448334],[-92.29360395883958,46.07472960418603],[-92.32949689876898,46.066139007280064],[-92.35103266272662,46.015454485534846],[-92.43717571855719,46.02146790336903],[-92.47306865848658,45.973360560695596],[-92.52331877438775,45.98452833667336],[-92.55203312633125,45.95188406843068],[-92.64176547615476,45.93212569554695],[-92.71355135601355,45.891749890088896],[-92.78533723587235,45.76460905588055],[-92.84276593975939,45.730246668256676],[-92.86430170371703,45.722515131041305],[-92.88583746767468,45.64434069919699],[-92.88583746767468,45.57905216271162],[-92.81046229382294,45.561011909209086],[-92.77456935389354,45.568743446424456],[-92.72431923799238,45.54125353632536],[-92.72790853198532,45.514622685916855],[-92.64535477014769,45.441602612216116],[-92.64894406414064,45.39864962768627],[-92.70278347403473,45.35827382222821],[-92.6991941800418,45.333361091200906],[-92.74585500195002,45.295562464814644],[-92.76021217792177,45.291267166361656],[-92.75662288392884,45.20965649575495],[-92.76739076590765,45.18560282441824],[-92.74585500195002,45.107428392573915],[-92.80328370583706,45.057602930519295],[-92.76380147191472,45.028394901039],[-92.7709800599006,44.972556021150204],[-92.74944429594295,44.937334573835734],[-92.77456935389354,44.90125406683066],[-92.76739076590765,44.8617373210632],[-92.76380147191472,44.836824590035896],[-92.80687299982999,44.768099814788144],[-92.80328370583706,44.74576426283262],[-92.73149782597825,44.713979054280536],[-92.62022971219712,44.6392408611986],[-92.62381900619006,44.61862342862428],[-92.5735688902889,44.60487847357473],[-92.54126524435245,44.56707984718847],[-92.43358642456424,44.56536172780727],[-92.33667548675486,44.55419395182951],[-92.31513972279723,44.541308056470555],[-92.3043718408184,44.50350943008429],[-92.24335384293842,44.45454302772027],[-92.21463949099491,44.43822089359893],[-92.08542490724906,44.40729474473744],[-91.97415679346793,44.367777998969984],[-91.92390667756678,44.333415611346105],[-91.92390667756678,44.28788544774447],[-91.89519232562326,44.274999552385516],[-91.89160303163031,44.23118750816507],[-91.85929938569386,44.19338888177881],[-91.81622785777857,44.164180852298514],[-91.7193169199692,44.128959404984045],[-91.70854903799038,44.10404667395673],[-91.5936916302163,44.031026600256],[-91.5577986902869,44.025013182421816],[-91.43935198851987,44.0018185707757],[-91.42499481254812,43.98463737696376],[-91.38551257862578,43.95457028779287],[-91.28501234682346,43.84718782646826],[-91.24553011290112,43.77330869307692],[-91.25629799487994,43.72606041009409],[-91.27424446484464,43.67623494803947],[-91.26706587685877,43.61524171000709],[-91.23117293692937,43.58345650145501],[-91.24553011290112,43.54565787506874],[-91.2168157609576,43.50012771146711],[-91.611638100181,43.50012771146711],[-91.73008480194801,43.500986771157706],[-92.07824631926319,43.500986771157706],[-92.44794360053601,43.50012771146711],[-92.55203312633125,43.50012771146711],[-93.02581993339933,43.49926865177651],[-93.05094499134991,43.49926865177651],[-93.49601744647445,43.49926865177651],[-93.64676779417793,43.49926865177651],[-93.96980425354253,43.49926865177651],[-94.2461798909989,43.50012771146711],[-94.4435910606106,43.500986771157706],[-94.85277057580575,43.500986771157706],[-94.91378857368574,43.50012771146711],[-95.3875753807538,43.50012771146711],[-95.45577196661966,43.500986771157706],[-95.86136218782187,43.50012771146711],[-96.05159476944769,43.50012771146711],[-96.45359569665696,43.50012771146711],[-96.45359569665696,43.84976500554005],[-96.45359569665696,44.1968251205412],[-96.45359569665696,44.54388523554235],[-96.45000640266402,44.63150932398323],[-96.45000640266402,44.805898441174406],[-96.45359569665696,44.97771037929378],[-96.45359569665696,45.268931614406135],[-96.47154216662166,45.326488613676126],[-96.52179228252282,45.375455016040156],[-96.6187032203322,45.408099284282834],[-96.68331051220511,45.411535523045224],[-96.73356062810628,45.45878380602805],[-96.76586427404274,45.52149516344163],[-96.83406085990859,45.58592464023639],[-96.85918591785918,45.60568301312012],[-96.84123944789448,45.64519975888758],[-96.75150709807097,45.69846145970459],[-96.6725426302263,45.73196478763787],[-96.62947110231102,45.78608554814547],[-96.57922098640987,45.82560229391293],[-96.5648638104381,45.935561934309334],[-96.57563169241692,46.02146790336903],[-96.55768522245222,46.058407470064694],[-96.59716745637456,46.219910691896914],[-96.6007567503675,46.330729391983915],[-96.64741757227571,46.35392400363003],[-96.71920345213452,46.43811185330853],[-96.73714992209922,46.48020577814778],[-96.75150709807097,46.582433881328804],[-96.78381074400744,46.62968216431164],[-96.79098933199332,46.63311840307402],[-96.79816791997919,46.66490361162611],[-96.7802214500145,46.7233196705867],[-96.80175721397214,46.81953435593355],[-96.78381074400744,46.8341383706737],[-96.7622749800498,46.93464835447354],[-96.78381074400744,46.92519869787697],[-96.82329297792977,46.96901074209741],[-96.81970368393684,47.115909949189486],[-96.83047156591566,47.15027233681336],[-96.83406085990859,47.23789642525424],[-96.84482874188741,47.29287624545245],[-96.83406085990859,47.335829229982295],[-96.86277521185211,47.41400366182661],[-96.85200732987329,47.4990505711957],[-96.85559662386623,47.6107283309733],[-96.87354309383093,47.613305510045095],[-96.89148956379563,47.67172156900568],[-96.91661462174622,47.70264771786717],[-96.93815038570385,47.76879531404313],[-96.96686473764737,47.78339932878328],[-97.00634697156971,47.87016435753357],[-97.01711485354853,47.91998981958819],[-97.05659708747088,47.94919784906848],[-97.07454355743558,48.05314407163071],[-97.1032579093791,48.07204338482384],[-97.14632943729437,48.17341242831427],[-97.14274014330142,48.1940298608886],[-97.14274014330142,48.23440566634665],[-97.11761508535085,48.27993582994829],[-97.14632943729437,48.359828381173806],[-97.13556155531555,48.40449948508484],[-97.13915084930849,48.49641887197871],[-97.16068661326612,48.54280809527094],[-97.16427590725907,48.54366715496154]]]},"properties":{"name":"Minnesota"},"id":"27"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-96.83406085990859,47.23789642525424],[-96.83047156591566,47.15027233681336],[-96.81970368393684,47.115909949189486],[-96.82329297792977,46.96901074209741],[-96.78381074400744,46.92519869787697],[-96.7622749800498,46.93464835447354],[-96.78381074400744,46.8341383706737],[-96.80175721397214,46.81953435593355],[-96.7802214500145,46.7233196705867],[-96.79816791997919,46.66490361162611],[-96.79098933199332,46.63311840307402],[-96.78381074400744,46.62968216431164],[-96.75150709807097,46.582433881328804],[-96.73714992209922,46.48020577814778],[-96.71920345213452,46.43811185330853],[-96.64741757227571,46.35392400363003],[-96.6007567503675,46.330729391983915],[-96.59716745637456,46.219910691896914],[-96.55768522245222,46.058407470064694],[-96.57563169241692,46.02146790336903],[-96.5648638104381,45.935561934309334],[-97.22888319913199,45.935561934309334],[-97.97904564365643,45.935561934309334],[-98.00775999559995,45.93642099399993],[-98.41335021680216,45.93642099399993],[-98.72561879418794,45.938998173071724],[-99.00558372563725,45.93985723276232],[-99.7198532302323,45.94071629245292],[-99.88137145991459,45.941575352143516],[-100.49873002670026,45.943293471524704],[-100.51308720267203,45.943293471524704],[-101.27042823518235,45.9441525312153],[-101.99905491574916,45.9441525312153],[-102.94303923589236,45.9450115909059],[-102.99687864578645,45.9450115909059],[-103.43477251292512,45.9450115909059],[-104.04495249172491,45.9450115909059],[-104.04854178571784,45.999991411104105],[-104.04495249172491,46.2800448702387],[-104.04495249172491,46.54119901618015],[-104.04495249172491,46.64170899997999],[-104.04495249172491,47.32981581214811],[-104.04495249172491,47.39682246801467],[-104.04495249172491,47.99644613205131],[-104.04495249172491,48.37443239591395],[-104.04854178571784,48.3890364106541],[-104.04854178571784,48.633868422474215],[-104.04854178571784,48.999827850668495],[-103.37375451504515,48.998968790977905],[-102.93944994189941,48.999827850668495],[-102.02059067970679,48.998968790977905],[-101.49655375673757,48.999827850668495],[-101.12685647546475,48.998968790977905],[-100.18287215532155,48.998968790977905],[-99.52603135461354,48.998968790977905],[-98.99840513765137,48.999827850668495],[-97.95033129171291,49.00068691035909],[-97.22888319913199,49.00068691035909],[-97.23965108111081,48.96632452273522],[-97.20016884718846,48.88213667305672],[-97.17863308323082,48.861519240482394],[-97.14991873128731,48.75499583884838],[-97.0960793213932,48.68627106360063],[-97.10684720337203,48.63300936278362],[-97.13915084930849,48.61239193020929],[-97.16427590725907,48.54366715496154],[-97.16068661326612,48.54280809527094],[-97.13915084930849,48.49641887197871],[-97.13556155531555,48.40449948508484],[-97.14632943729437,48.359828381173806],[-97.11761508535085,48.27993582994829],[-97.14274014330142,48.23440566634665],[-97.14274014330142,48.1940298608886],[-97.14632943729437,48.17341242831427],[-97.1032579093791,48.07204338482384],[-97.07454355743558,48.05314407163071],[-97.05659708747088,47.94919784906848],[-97.01711485354853,47.91998981958819],[-97.00634697156971,47.87016435753357],[-96.96686473764737,47.78339932878328],[-96.93815038570385,47.76879531404313],[-96.91661462174622,47.70264771786717],[-96.89148956379563,47.67172156900568],[-96.87354309383093,47.613305510045095],[-96.85559662386623,47.6107283309733],[-96.85200732987329,47.4990505711957],[-96.86277521185211,47.41400366182661],[-96.83406085990859,47.335829229982295],[-96.84482874188741,47.29287624545245],[-96.83406085990859,47.23789642525424]]]},"properties":{"name":"North Dakota"},"id":"38"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-104.05930966769667,44.99746875217751],[-104.04136319773197,45.0009049909399],[-104.04136319773197,45.21309273451734],[-104.04136319773197,45.750005041140405],[-104.04495249172491,45.88230023349233],[-104.04495249172491,45.9450115909059],[-103.43477251292512,45.9450115909059],[-102.99687864578645,45.9450115909059],[-102.94303923589236,45.9450115909059],[-101.99905491574916,45.9441525312153],[-101.27042823518235,45.9441525312153],[-100.51308720267203,45.943293471524704],[-100.49873002670026,45.943293471524704],[-99.88137145991459,45.941575352143516],[-99.7198532302323,45.94071629245292],[-99.00558372563725,45.93985723276232],[-98.72561879418794,45.938998173071724],[-98.41335021680216,45.93642099399993],[-98.00775999559995,45.93642099399993],[-97.97904564365643,45.935561934309334],[-97.22888319913199,45.935561934309334],[-96.5648638104381,45.935561934309334],[-96.57922098640987,45.82560229391293],[-96.62947110231102,45.78608554814547],[-96.6725426302263,45.73196478763787],[-96.75150709807097,45.69846145970459],[-96.84123944789448,45.64519975888758],[-96.85918591785918,45.60568301312012],[-96.83406085990859,45.58592464023639],[-96.76586427404274,45.52149516344163],[-96.73356062810628,45.45878380602805],[-96.68331051220511,45.411535523045224],[-96.6187032203322,45.408099284282834],[-96.52179228252282,45.375455016040156],[-96.47154216662166,45.326488613676126],[-96.45359569665696,45.268931614406135],[-96.45359569665696,44.97771037929378],[-96.45000640266402,44.805898441174406],[-96.45000640266402,44.63150932398323],[-96.45359569665696,44.54388523554235],[-96.45359569665696,44.1968251205412],[-96.45359569665696,43.84976500554005],[-96.45359569665696,43.50012771146711],[-96.59716745637456,43.50012771146711],[-96.57922098640987,43.48122839827398],[-96.60434604436044,43.44944318972189],[-96.52538157651576,43.394463369523685],[-96.5289708705087,43.29996680355803],[-96.57922098640987,43.29567150510504],[-96.55409592845928,43.25959099809997],[-96.56127451644517,43.224369550785504],[-96.4751314606146,43.22179237171371],[-96.46795287262873,43.15049041739417],[-96.43564922669226,43.120423328223275],[-96.45359569665696,43.08348376152761],[-96.511024400544,43.04998043359433],[-96.4930779305793,43.0018730909209],[-96.52179228252282,42.977819419584186],[-96.50025651856518,42.95977916608165],[-96.53614945849458,42.909094644336434],[-96.54332804648045,42.85153764506644],[-96.5828102804028,42.83779269001689],[-96.59357816238162,42.793121586105855],[-96.63306039630396,42.77078603415033],[-96.62947110231102,42.70549749766497],[-96.57563169241692,42.68230288601885],[-96.51461369453695,42.63075930458304],[-96.50025651856518,42.56117546964469],[-96.47872075460754,42.55602111150111],[-96.4930779305793,42.51736342542425],[-96.44641710867108,42.49073257501574],[-96.50743510655106,42.484719157181566],[-96.52538157651576,42.51049094789947],[-96.61152463234632,42.50619564944649],[-96.63306039630396,42.52423590294902],[-96.63664969029689,42.55172581304812],[-96.71202486414863,42.608423752627516],[-96.68689980619806,42.65309485653856],[-96.7263820401204,42.66683981158811],[-96.80175721397214,42.6694169906599],[-96.80534650796507,42.70377937828378],[-96.9058467397674,42.73384646745467],[-96.94891826768267,42.71924245271452],[-96.97763261962619,42.76047731786317],[-97.01711485354853,42.76133637755377],[-97.1319722613226,42.77164509384093],[-97.16068661326612,42.79999406363063],[-97.21452602316023,42.81287995898958],[-97.21811531715316,42.84552422723227],[-97.30784766697667,42.867000719497184],[-97.36168707687077,42.85497388382883],[-97.41552648676486,42.866141659806594],[-97.44065154471544,42.846383286922865],[-97.48372307263072,42.850678585375846],[-97.6344734203342,42.85153764506644],[-97.68472353623535,42.84208798846988],[-97.77445588605886,42.84981952568525],[-97.84624176591765,42.86785977918778],[-97.87495611786117,42.858410122591216],[-97.90725976379764,42.79483970548705],[-97.95033129171291,42.769926974459736],[-98.01852787757878,42.762195437244365],[-98.15133175531754,42.83865174970749],[-98.17286751927519,42.83693363032629],[-98.25901057510575,42.87473225671256],[-98.30926069100691,42.88246379392793],[-98.34515363093631,42.90308122650226],[-98.46718962669627,42.947752330413294],[-98.49949327263272,42.99843685215851],[-99.25324501115011,42.99843685215851],[-99.53320994259943,42.99843685215851],[-100.19722933129331,42.99843685215851],[-100.88637377793778,42.997577792467915],[-101.22735670726706,42.997577792467915],[-101.6257683404834,42.99585967308673],[-102.08160867758677,42.99929591184911],[-102.79228888818888,43.00015497153971],[-103.0004679397794,43.00015497153971],[-103.50655839278392,43.001014031230305],[-104.05213107971079,43.001014031230305],[-104.05213107971079,43.297389624486236],[-104.05572037370374,43.47779215951159],[-104.05572037370374,43.5035639502295],[-104.05572037370374,43.85320124430243],[-104.05572037370374,44.1409862406524],[-104.05572037370374,44.18050298641986],[-104.05572037370374,44.57137514564145],[-104.05572037370374,44.87462321642216],[-104.05930966769667,44.99746875217751]]]},"properties":{"name":"South Dakota"},"id":"46"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-75.40238642806428,41.999350431994316],[-75.48494018990189,41.999350431994316],[-75.74336935739358,41.99763231261312],[-76.1058880506805,41.99849137230372],[-76.14537028460285,41.99849137230372],[-76.55813909379094,42.00020949168491],[-76.92783637506375,42.0019276110661],[-76.96731860898609,42.0010685513755],[-77.12524754467545,41.999350431994316],[-77.60980223372233,41.999350431994316],[-77.74978469944699,41.99849137230372],[-78.20562503655036,41.999350431994316],[-78.30971456234562,41.999350431994316],[-78.91989454114541,41.99849137230372],[-79.05987700687007,41.999350431994316],[-79.61262828178282,41.999350431994316],[-79.7633786294863,42.00020949168491],[-79.7633786294863,42.269954234532335],[-79.64493192771927,42.315484398133975],[-79.45469934609346,42.41084002379023],[-79.3506098202982,42.489014455634546],[-79.24293100051,42.531967440164394],[-79.14960935669356,42.55344393242932],[-79.1352521807218,42.569766066550656],[-79.11012712277123,42.6135781107711],[-79.06346630086301,42.64450425963259],[-79.04910912489125,42.689175363543626],[-78.91989454114541,42.73728270621706],[-78.85169795527955,42.78367192950929],[-78.86605513125131,42.85239670475704],[-78.91271595315953,42.88675909238091],[-78.90553736517364,42.923698659076585],[-78.93066242312423,42.95548386762867],[-79.01321618496185,42.985550956799564],[-79.00603759697597,43.047403254522536],[-79.02039477294772,43.06630256771567],[-79.07423418284182,43.07747034369343],[-79.04193053690537,43.143617939869394],[-79.05987700687007,43.251000401194005],[-79.07064488884889,43.262168177171766],[-78.97014465704657,43.2810674903649],[-78.83375148531485,43.317147997369965],[-78.63275102171022,43.35752380282802],[-78.48917926199262,43.374704996639956],[-78.46405420404204,43.37126875787757],[-78.3707325602256,43.37642311602115],[-78.23433938849388,43.36869157880578],[-78.10512480474804,43.37556405633055],[-77.99385669096691,43.36525534004339],[-77.79644552135521,43.339483549325486],[-77.7138917595176,43.32316141520415],[-77.6600523496235,43.28278560974609],[-77.57749858778588,43.243268863978635],[-77.5344270598706,43.23467826707267],[-77.50212341393414,43.25014134150341],[-77.37649812418124,43.27763125160251],[-77.2652300104001,43.27763125160251],[-77.11089036870368,43.28793996788967],[-77.03551519485194,43.27161783376833],[-76.95296143301432,43.270758774077734],[-76.90271131711317,43.29223526634266],[-76.79503249732497,43.309416460154594],[-76.72324661746617,43.343778847778474],[-76.6981215595156,43.34463790746907],[-76.61556779767797,43.419376100551],[-76.52224615386153,43.46834250291502],[-76.48635321393213,43.475214980439794],[-76.41815662806628,43.52160420373203],[-76.36790651216512,43.52589950218501],[-76.29612063230633,43.513013606826064],[-76.23510263442634,43.5293357409474],[-76.20279898848989,43.574865904549036],[-76.19920969449694,43.68053024649246],[-76.22792404644046,43.80423484193841],[-76.29970992629926,43.83859722956229],[-76.26022769237692,43.88155021409214],[-76.20997757647577,43.8909998706887],[-76.20279898848989,43.862650900899],[-76.12742381463815,43.897872348213475],[-76.13819169661696,43.93481191490914],[-76.20638828248282,43.975187720367195],[-76.2853527503275,43.96230182500824],[-76.2674062803628,43.98721455603555],[-76.3212456902569,44.031026600256],[-76.375085100151,44.03188565994659],[-76.37149580615807,44.10061043519435],[-76.31406710227103,44.19940229961299],[-76.24587051640516,44.20369759806597],[-76.16331675456755,44.239778105071046],[-76.16331675456755,44.28101297021969],[-76.09870946269463,44.29991228341283],[-76.00179852488525,44.34716056639566],[-75.9694948789488,44.34286526794267],[-75.86181605916059,44.402999446284454],[-75.82233382523825,44.43220747576475],[-75.8079766492665,44.471724221532206],[-75.7649051213512,44.51553626575265],[-75.61774406764067,44.61948248831487],[-75.50647595385954,44.70538845737457],[-75.3054754902549,44.82651587374873],[-75.30906478424784,44.836824590035896],[-75.06499279272792,44.930462096310954],[-74.97167114891148,44.983723797127965],[-74.90706385703857,44.983723797127965],[-74.8280993891939,45.01550900568005],[-74.72759915739157,44.994891573105726],[-74.66299186551865,44.999186871558706],[-74.33636611216112,44.99231439403393],[-74.14613353053531,44.991455334343335],[-74.02768682876828,44.99575063279632],[-73.67593601746017,45.002623110321096],[-73.34213167611676,45.011213707227064],[-73.33854238212382,44.917576200952006],[-73.3636674400744,44.891804410234094],[-73.37802461604616,44.83768364972649],[-73.33136379413794,44.78871724736246],[-73.36725673406734,44.741468964379635],[-73.37443532205322,44.66243547284472],[-73.38879249802498,44.63580462243622],[-73.36007814608146,44.56364360842608],[-73.33854238212382,44.54646241461414],[-73.30623873618735,44.5000731913219],[-73.2918815602156,44.44079807267072],[-73.33495308813087,44.372073297422965],[-73.31341732417324,44.263831776407756],[-73.39238179201791,44.18909358332583],[-73.41032826198261,44.1126372708627],[-73.43904261392613,44.044771555305545],[-73.40673896798968,44.02157694365943],[-73.41032826198261,43.933093795527945],[-73.37443532205322,43.875536796257954],[-73.37802461604616,43.8085301403914],[-73.34931026410264,43.77159057369573],[-73.3636674400744,43.75355032019319],[-73.40673896798968,43.68826178370783],[-73.43186402594026,43.590328978979784],[-73.39597108601086,43.56799342702426],[-73.37084602806028,43.624691366603656],[-73.30264944219442,43.624691366603656],[-73.29547085420855,43.57916120300202],[-73.24881003230033,43.55424847197471],[-73.2559886202862,43.31457081829818],[-73.2739350902509,42.943457031960314],[-73.27752438424385,42.83349739156391],[-73.2918815602156,42.80171218301182],[-73.26316720827208,42.74587330312303],[-73.35289955809557,42.50963188820887],[-73.507239199792,42.0861154607446],[-73.49647131781317,42.050034953739534],[-73.48570343583435,42.050034953739534],[-73.51800708177082,41.66689433173331],[-73.52877496374964,41.526867602166014],[-73.5431321397214,41.36622344002439],[-73.55031072770727,41.295780545395445],[-73.48211414184142,41.21245175540755],[-73.72618613336134,41.10077399562995],[-73.65440025350253,41.01314990718907],[-73.65798954749548,40.98480093739937],[-73.68311460544605,40.948720430394296],[-73.75848977929779,40.91263992338923],[-73.76566836728367,40.876559416384154],[-73.76566836728367,40.844774207832074],[-73.81232918919189,40.84649232721326],[-73.78720413124131,40.80182122330223],[-73.76925766127661,40.80010310392103],[-73.71541825138252,40.86968693885938],[-73.67593601746017,40.856801043500425],[-73.64004307753078,40.8928815505055],[-73.56466790367904,40.91607616215161],[-73.49647131781317,40.92294863967639],[-73.48570343583435,40.9461432513225],[-73.40673896798968,40.9203714606046],[-73.39956038000379,40.95559290791907],[-73.36725673406734,40.93153923658236],[-73.29547085420855,40.92466675905759],[-73.23086356233563,40.90490838617386],[-73.148309800498,40.92896205751057],[-73.14113121251212,40.96590162420623],[-73.08011321463215,40.97277410173101],[-73.04422027470275,40.96246538544385],[-72.77502322523225,40.96504256451564],[-72.63504075950759,40.98222375832758],[-72.58479064360644,40.99768683275832],[-72.47711182381823,41.05180759326593],[-72.44480817788178,41.0861699808898],[-72.4017366499665,41.09733775686756],[-72.35507582805828,41.14029074139741],[-72.27970065420654,41.15833099489994],[-72.23662912629126,41.156612875518746],[-72.30123641816418,41.11194177160771],[-72.33354006410065,41.106787413464126],[-72.27970065420654,41.080156563055624],[-72.26175418424184,41.04235793666936],[-72.20073618636187,41.0320492203822],[-72.16125395243952,41.05352571264712],[-72.10382524855248,40.99167341492414],[-72.04998583865839,41.00627742966429],[-71.96743207682077,41.04751229481294],[-71.96025348883488,41.071565966149656],[-71.89923549095491,41.08101562274622],[-71.85616396303963,41.07070690645906],[-71.87411043300433,41.052666652956525],[-72.1145931305313,40.971915042040415],[-72.39455806198062,40.86625070009699],[-72.57402276162762,40.81298899927999],[-72.86475557505575,40.733096448054475],[-73.05498815668156,40.66608979218792],[-73.20932779837798,40.63086834487344],[-73.30623873618735,40.62055962858628],[-73.327774500145,40.633445523945234],[-73.42468543795438,40.610250912299115],[-73.55748931569316,40.58190194250942],[-73.75131119131191,40.58963347972479],[-73.83386495314953,40.57760664405643],[-73.94154377293773,40.54324425643256],[-73.93436518495184,40.56901604715046],[-74.01332965279653,40.57417040529405],[-74.0025617708177,40.59564689755897],[-74.04204400474005,40.629150225492246],[-74.0205082407824,40.68069380692806],[-74.04563329873298,40.69014346352463],[-74.02409753477535,40.70904277671776],[-74.00974035880358,40.76488165660656],[-73.98461530085301,40.799244044230434],[-73.93436518495184,40.88171377452774],[-73.91641871498715,40.91779428153281],[-73.8948829510295,40.99682777306772],[-73.90565083300832,40.99768683275832],[-74.21074082240823,41.133418263872635],[-74.2358658803588,41.1428679204692],[-74.36866975809758,41.20386115850158],[-74.69529551145511,41.357632843118424],[-74.75631350933509,41.42463949898498],[-74.80656362523625,41.44267975248752],[-74.89629597505974,41.44010257341573],[-74.88911738707387,41.45556564784647],[-74.94295679696796,41.48391461763617],[-74.9824390308903,41.479619319183186],[-74.98602832488325,41.50882734866348],[-75.06858208672087,41.60160579524795],[-75.04345702877029,41.62394134720346],[-75.0542249107491,41.752800300793],[-75.10447502665026,41.77084055429554],[-75.07576067470674,41.79833046439464],[-75.14754655456554,41.85073310552105],[-75.20856455244552,41.86963241871418],[-75.26240396233962,41.86619617995179],[-75.29111831428314,41.95210214901148],[-75.30906478424784,41.9486659102491],[-75.359314900149,41.999350431994316],[-75.40238642806428,41.999350431994316]]],[[[-72.03562866268662,41.25540473993739],[-72.02486078070781,41.27086781436814],[-71.92794984289843,41.28976712756127],[-72.00332501675017,41.252827560865605],[-72.03562866268662,41.25540473993739]]],[[[-72.14330748247482,41.09819681655816],[-72.12536101251013,41.115378010370094],[-72.08587877858778,41.10163305532055],[-72.08587877858778,41.0586800707907],[-72.10741454254543,41.08874715996159],[-72.14330748247482,41.09819681655816]]],[[[-72.21509336233362,41.183243725927255],[-72.15766465844658,41.1969886809768],[-72.20073618636187,41.160049114281136],[-72.21509336233362,41.183243725927255]]],[[[-76.375085100151,43.87467773656736],[-76.31765639626396,43.917630721097204],[-76.33560286622865,43.878973035020344],[-76.375085100151,43.87467773656736]]],[[[-76.45404956799568,43.8909998706887],[-76.4109780400804,43.925362258312575],[-76.37867439414394,43.921066959859594],[-76.45404956799568,43.8909998706887]]],[[[-74.20356223442234,40.59306971848718],[-74.20356223442234,40.63086834487344],[-74.16049070650706,40.644613299922995],[-74.07075835668357,40.66093543404433],[-74.05281188671887,40.60337843477434],[-74.08511553265532,40.56987510684106],[-74.22150870438705,40.5028684509745],[-74.26099093830938,40.502009391283906],[-74.25022305633055,40.54496237581375],[-74.2179194103941,40.5587073308633],[-74.20356223442234,40.59306971848718]]]]},"properties":{"name":"New York"},"id":"36"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-132.49010738577385,56.503714248032466],[-132.47575020980207,56.54494911318112],[-132.44344656386562,56.51917732246322],[-132.49010738577385,56.503714248032466]]],[[[-132.56189326563265,56.379150592895925],[-132.55471467764676,56.404063323923225],[-132.47933950379502,56.43842571154711],[-132.40396432994328,56.40578144330442],[-132.40755362393622,56.38688213011129],[-132.4936966797668,56.35509692155921],[-132.56189326563265,56.379150592895925]]],[[[-132.65162561545614,56.48309681545814],[-132.57983973559735,56.511445785247844],[-132.51882173771736,56.556116889158886],[-132.53676820768206,56.51316390462904],[-132.601375499555,56.44873442783427],[-132.65162561545614,56.48309681545814]]],[[[-133.69611016740166,57.79402190330903],[-133.7104673433734,57.79316284361843],[-133.85044980909808,57.93576675225751],[-134.04786097870976,58.06204852677526],[-134.0873432126321,58.182316883458824],[-134.05503956669565,58.23815576334762],[-134.06221815468155,58.28282686725866],[-133.96530721687216,58.31804831457313],[-134.01196803878037,58.40395428363283],[-134.0406823907239,58.40223616425163],[-134.07298603666035,58.3292160905509],[-134.14477191651915,58.30344429983299],[-134.14477191651915,58.26736379282792],[-134.1017003886039,58.24846447963479],[-134.1483612105121,58.19949807727076],[-134.1842541504415,58.208088674176736],[-134.26321861828617,58.1909074803648],[-134.35295096810967,58.20035713696136],[-134.4821655518555,58.22956516644166],[-134.5072906098061,58.2166792710827],[-134.63291589955898,58.24760541994419],[-134.7764876592766,58.39708180610805],[-134.79084483524835,58.49157837207372],[-134.94159518295183,58.61184672875727],[-134.98825600486003,58.67971244431443],[-134.92005941899419,58.68057150400503],[-134.95954165291653,58.8300478901689],[-135.00261318083182,58.81544387542874],[-135.02773823878238,58.781940547495466],[-135.02414894478943,58.73211508544084],[-135.14977423454235,58.84551096459964],[-135.17848858648586,58.99756452983529],[-135.20720293842936,59.0765980213702],[-135.2825781122811,59.19257107960078],[-135.39743552005518,59.29222200371002],[-135.52665010380105,59.32400721226212],[-135.54459657376572,59.31026225721256],[-135.44409634196342,59.27761798896988],[-135.42973916599163,59.24239654165541],[-135.36872116811168,59.208893213722135],[-135.29693528825288,59.09635639425393],[-135.35077469814698,59.105806050850504],[-135.47281069390692,59.22607440753407],[-135.5517751617516,59.25700055639555],[-135.6307396295963,59.26559115330153],[-135.48357857588576,59.186557661766614],[-135.43691775397753,59.11353758806587],[-135.37589975609757,59.08862485703857],[-135.40102481404813,59.005296067050665],[-135.36872116811168,58.92969881427814],[-135.32206034620344,58.90994044139441],[-135.34000681616817,58.889323008820085],[-135.24309587835876,58.782799607186064],[-135.23232799637995,58.73555132420323],[-135.14259564655646,58.61614202721026],[-135.13541705857057,58.58865211711117],[-135.18566717447175,58.598101773707725],[-135.08875623666236,58.42285359682596],[-135.05645259072588,58.34983352312523],[-135.05286329673297,58.29055840447404],[-135.09593482464823,58.29743088199881],[-135.09952411864117,58.2450282408724],[-135.05645259072588,58.1900484206742],[-135.16054211652116,58.20980679355793],[-135.228738702387,58.23729670365702],[-135.27898881828818,58.23386046489463],[-135.3435961101611,58.27080003159031],[-135.44768563595636,58.39965898517984],[-135.51229292782926,58.385914030130294],[-135.6307396295963,58.42886701466014],[-135.72765056740568,58.39708180610805],[-135.90711526705266,58.38075967198671],[-135.89634738507385,58.450343506925066],[-135.98607973489734,58.46408846197461],[-136.0004369108691,58.48041059609595],[-135.8927580910809,58.513913924029225],[-135.9286510310103,58.57318904268041],[-135.9107045610456,58.61871920628205],[-136.01120479284793,58.71235671255711],[-136.01120479284793,58.743282861418606],[-136.0901692606926,58.81544387542874],[-136.0435084387844,58.83606130800307],[-136.05068702677025,58.91337668015679],[-136.11888361263613,58.968356500355],[-136.1619551405514,58.97694709726096],[-136.1081157306573,58.86441027779277],[-136.15118725857258,58.75702781646815],[-136.24809819638196,58.752732518015165],[-136.39884854408544,58.81286669635695],[-136.49217018790188,58.83863848707486],[-136.54600959779597,58.9674974406644],[-136.58549183171831,58.909081381703814],[-136.63215265362652,58.89018206851068],[-136.7900815893159,58.936571291802906],[-136.84033170521704,58.91939009799097],[-136.87622464514644,58.96234308252082],[-136.91929617306172,58.946880008090076],[-136.93006405504053,58.90049078479784],[-136.76854582535825,58.870423695626954],[-136.74342076740766,58.87643711346112],[-136.58190253772537,58.83863848707486],[-136.46345583595834,58.781940547495466],[-136.35577701617015,58.69259833967338],[-136.3952592500925,58.65479971328712],[-136.48140230592304,58.617001086900856],[-136.45986654196543,58.6075514303043],[-136.3414198401984,58.64535005669056],[-136.3162947822478,58.67112184740847],[-136.21938384443843,58.671980907099055],[-136.19425878648786,58.58177963958639],[-136.10093714267143,58.51477298371982],[-136.0435084387844,58.37990061229611],[-136.11170502465023,58.34210198590985],[-136.26604466634666,58.31461207581074],[-136.305526900269,58.32320267271672],[-136.27322325433255,58.36357847817477],[-136.33783054620545,58.37732343322432],[-136.38090207412074,58.362719418484176],[-136.35577701617015,58.3292160905509],[-136.39166995609955,58.29743088199881],[-136.54600959779597,58.31633019519194],[-136.58549183171831,58.29657182230821],[-136.56754536175362,58.2450282408724],[-136.59625971369712,58.2149611517015],[-136.70034923949237,58.21925645015449],[-136.7290635914359,58.28626310602105],[-136.85827817518174,58.31633019519194],[-136.84751029320293,58.3292160905509],[-136.94801052500523,58.39278650765506],[-137.00902852288522,58.40910864177641],[-137.11311804868046,58.39278650765506],[-137.23874333843338,58.452920685996844],[-137.29617204232042,58.46580658135581],[-137.49717250592505,58.55772596824967],[-137.68022649956498,58.62215544504444],[-137.68740508755087,58.66510842957429],[-137.79508390733906,58.72524260791607],[-137.90276272712725,58.76561841337413],[-137.9422449610496,58.80943045759457],[-137.9314770790708,58.86870557624576],[-137.98531648896488,58.90994044139441],[-138.18272765857657,59.013886663956626],[-138.2904064783648,59.05426246941468],[-138.634978701687,59.1307187818778],[-138.76419328543284,59.191712019910184],[-138.91853292712926,59.24840995948959],[-139.27028373843737,59.33775216731166],[-139.42103408614085,59.37984609215091],[-139.7476598394984,59.50355068759687],[-139.8553386592866,59.537054015530146],[-139.8373921893219,59.56196674655746],[-139.72612407554075,59.63842305902058],[-139.63998101971018,59.62639622335223],[-139.67228466564666,59.60320161170611],[-139.58614160981608,59.605778790777904],[-139.58614160981608,59.64271835747357],[-139.51076643596434,59.70285253581535],[-139.58973090380903,59.70886595364952],[-139.58255231582314,59.77501354982549],[-139.63280243172431,59.87466447393473],[-139.60767737377373,59.90473156310563],[-139.52871290592904,59.9399530104201],[-139.54665937589374,59.969161039900385],[-139.48923067200673,59.994932830618296],[-139.53589149391493,60.04304017329173],[-139.60408807978078,59.999228129071284],[-139.61126666776667,59.94854360732606],[-139.70099901759016,59.930503353823525],[-139.7763741914419,59.868651056100546],[-139.77996348543485,59.826557131261296],[-140.1640179426794,59.740651162201615],[-140.2070894705947,59.7165974908649],[-140.30758970239702,59.69254381952818],[-140.64857263172632,59.711443132721314],[-140.88905532925327,59.74236928158281],[-140.98237697306973,59.7698591916819],[-141.42386013420133,59.87724165300652],[-141.48487813208132,59.925348995679954],[-141.4202708402084,59.91675839877398],[-141.29823484444844,59.937375831348305],[-141.2587526105261,59.998369069380686],[-141.3771993122931,60.110905888848876],[-141.3664314303143,60.14698639585394],[-141.4382173101731,60.1323823811138],[-141.54948542395422,60.17018100750006],[-141.52794965999658,60.127228022970215],[-141.3664314303143,60.0241408600986],[-141.4023243702437,60.00610060659605],[-141.59614624586246,59.96228856237562],[-141.7361287115871,59.96228856237562],[-141.91200411724117,60.00953684535844],[-142.1309510508105,60.030154277932766],[-142.24580845858458,60.049912650816495],[-142.5365412720127,60.08427503844038],[-142.698059501695,60.09372469503694],[-142.90982784727845,60.09028845627455],[-143.13595336883367,60.06193948648486],[-143.41232900629007,60.05163077019769],[-143.69947252572524,60.027577098860974],[-143.893294401344,59.98634223371232],[-144.03327686706865,60.01984556164561],[-144.19479509675097,59.99751000969009],[-144.42450991229913,59.89442284681846],[-144.58961743597433,59.795630982399814],[-144.56808167201672,59.85146986228861],[-144.43886708827088,59.9399530104201],[-144.21633086070858,60.040462994219936],[-144.05122333703338,60.04218111360113],[-144.1086520409204,60.098879053180525],[-144.28452744657446,60.14011391832918],[-144.31324179851796,60.1615904105941],[-144.3491347384474,60.09114751596515],[-144.4424563822638,60.163308529975296],[-144.53577802608027,60.18908032069319],[-144.59679602396022,60.18134878347783],[-144.65422472784726,60.20454339512395],[-144.90906460134602,60.22086552924529],[-144.87676095540954,60.24491920058199],[-144.7403677836778,60.26467757346572],[-144.8911181313813,60.29302654325542],[-144.95931471724717,60.28787218511184],[-144.96649330523303,60.30934867737676],[-144.83368942749428,60.44336198910989],[-144.88752883738837,60.45624788446884],[-144.93418965929658,60.42532173560734],[-145.03827918509182,60.40642242241421],[-145.04186847908477,60.35745602005019],[-145.11365435894356,60.3007580804708],[-145.25363682466823,60.311066796757956],[-145.50488740417404,60.39439558674586],[-145.5012981101811,60.42102643715437],[-145.59461975399753,60.45195258601585],[-145.73460221972218,60.47428813797137],[-145.88176327343274,60.44422104880047],[-145.9607277412774,60.46741566044659],[-145.9140669193692,60.492328391473905],[-145.80279880558805,60.51981830157301],[-145.71306645576453,60.58338871867717],[-145.7633165716657,60.591979315583146],[-145.82792386353862,60.549885390743896],[-146.11147808898087,60.46999283951838],[-146.21556761477615,60.450234466634654],[-146.35196078650785,60.45452976508764],[-146.3483714925149,60.408140541795404],[-146.13301385293852,60.43133515344152],[-146.09353161901618,60.4107177208672],[-146.08635303103028,60.36518755726556],[-146.14737102891027,60.36690567664675],[-146.2478712607126,60.33512046809467],[-146.3124785525855,60.34027482623826],[-146.45963960629604,60.307630557995566],[-146.6068006600066,60.241482961819614],[-146.64987218792186,60.24320108120081],[-146.69294371583715,60.28443594634945],[-146.52424689816897,60.35058354252541],[-146.65705077590775,60.34027482623826],[-146.71806877378773,60.349724482834816],[-146.72165806778065,60.39611370612705],[-146.63910430594305,60.46741566044659],[-146.59244348403485,60.49061027209271],[-146.5278361921619,60.492328391473905],[-146.45605031230312,60.465697541065396],[-146.36990725647254,60.48030155580555],[-146.2909427886279,60.51552300312002],[-146.15454961689616,60.52669077909778],[-145.9499598592986,60.576516241152405],[-145.7992095115951,60.59369743496434],[-145.83151315753156,60.615173927229264],[-145.8997097433974,60.61345580784807],[-145.8961204494045,60.67444904588045],[-145.9356026833268,60.6323551210412],[-146.00379926919268,60.615173927229264],[-146.00020997519974,60.640945717947176],[-145.91047762537625,60.69678459783597],[-145.9068883313833,60.714824851338506],[-146.02533503315033,60.66499938928388],[-146.1868532628326,60.62462358382582],[-146.2550498486985,60.622046404754045],[-146.26940702467024,60.64781819547194],[-146.04328150311503,60.74403288081879],[-146.06481726707267,60.776677149061484],[-146.16890679286792,60.72513356762566],[-146.30529996459964,60.71310673195731],[-146.3483714925149,60.73544228391283],[-146.40221090240902,60.69334835907358],[-146.47399678226782,60.68132152340523],[-146.66781865788658,60.692489299382984],[-146.70371159781598,60.7423147614376],[-146.6068006600066,60.75863689555895],[-146.56731842608426,60.75090535834357],[-146.50271113421132,60.7723818506085],[-146.35913937449374,60.78612680565804],[-146.2550498486985,60.81018047699476],[-146.17249608686086,60.866019356883555],[-146.26222843668435,60.86773747626475],[-146.3124785525855,60.82822073049729],[-146.39503231442313,60.811898596375954],[-146.55655054410542,60.81018047699476],[-146.62115783597835,60.86859653595535],[-146.66422936389364,60.87117371502714],[-146.7252473617736,60.811898596375954],[-146.80062253562534,60.805026118851174],[-146.81497971159712,60.8557106405964],[-146.75755100771005,60.87804619255192],[-146.6965330098301,60.872891834408335],[-146.73601524375243,60.9106904607946],[-146.74678312573124,60.95793874377743],[-146.70012230382304,60.98714677325772],[-146.6068006600066,61.085079577985766],[-146.26222843668435,61.09023393612935],[-146.28735349463494,61.12287820437203],[-146.61397924799246,61.118582905919055],[-146.6893544218442,61.06446214541144],[-146.78626535965358,61.04212659345592],[-146.86164053350532,60.97597899727997],[-146.97290864728646,60.934744132131314],[-147.0554624091241,60.94505284841847],[-146.98367652926527,60.97597899727997],[-147.01956946919466,61.073052742317415],[-147.06264099710995,61.118582905919055],[-146.99803370523705,61.14435469663695],[-147.07699817308173,61.15294529354293],[-147.12724828898288,61.1331869206592],[-147.13083758297583,61.089374876438754],[-147.08776605506054,61.03525411593115],[-147.1380161709617,60.98113335542355],[-147.13442687696875,60.94591190810907],[-147.18108769887698,60.93302601275012],[-147.27440934269342,60.97426087789877],[-147.2815879306793,60.91670387862878],[-147.37849886848866,60.87804619255192],[-147.4538740423404,60.89694550574505],[-147.4538740423404,60.94161660965608],[-147.49335627626274,60.95793874377743],[-147.51848133421333,60.89522738636386],[-147.55078498014979,60.908113281722805],[-147.53642780417803,61.018931981809814],[-147.50412415824158,61.07219368262682],[-147.55796356813568,61.081643339223376],[-147.61898156601563,60.969965579445784],[-147.58667792007918,60.87460995378953],[-147.60103509605096,60.84969722276222],[-147.6692316819168,60.84196568554684],[-147.66564238792387,60.88405961038609],[-147.76255332573325,60.91326763986639],[-147.78767838368384,60.87375089409893],[-147.7302496797968,60.81791201421014],[-147.776910501705,60.81103953668536],[-147.91330367343673,60.8247844917349],[-148.03533966919667,60.78354962658625],[-148.135839900999,60.79128116380163],[-148.1537863709637,60.81791201421014],[-148.10353625506255,60.899522684816844],[-147.95278590735907,61.02924069809697],[-147.94919661336613,61.07477086169861],[-147.77332120771206,61.18043520364202],[-147.71589250382502,61.250019038580376],[-147.73742826778266,61.26548211301112],[-147.99944672926728,61.08422051829517],[-148.00303602326022,61.054153429124284],[-148.06764331513313,61.004327967069656],[-148.09635766707666,61.01120044459444],[-148.1250720190202,61.07047556324562],[-148.16814354693545,61.069616503555025],[-148.1789114289143,61.00003266861668],[-148.2183936628366,60.953643445324445],[-148.28300095470954,60.91756293831938],[-148.29376883668834,60.862583118121165],[-148.35119754057538,60.80416705916058],[-148.42657271442712,60.827361670806695],[-148.4516977723777,60.78956304442043],[-148.36555471654717,60.76550937308372],[-148.38350118651186,60.6873349412394],[-148.34760824658247,60.68046246371463],[-148.2794116607166,60.753482537415366],[-148.1466077829778,60.75863689555895],[-148.10712554905547,60.73973758236582],[-148.09276837308371,60.6615631505215],[-148.14301848898486,60.62290546444463],[-148.254286602766,60.595415554345536],[-148.3332510706107,60.53012701786017],[-148.32966177661774,60.476006257352566],[-148.254286602766,60.4931874511645],[-148.19326860488604,60.55761692795927],[-148.08558978509785,60.595415554345536],[-147.97791096530963,60.51895924188241],[-147.97791096530963,60.48116061549615],[-147.94201802538024,60.44422104880047],[-148.02457178721787,60.279281588205876],[-148.1178934310343,60.279281588205876],[-148.15019707697076,60.32395269211692],[-148.2183936628366,60.33168422933228],[-148.2148043688437,60.3007580804708],[-148.31171530665307,60.26295945408454],[-148.31171530665307,60.24835543934438],[-148.21121507485074,60.260382275012745],[-148.1286613130131,60.237187663366626],[-147.90971437944378,60.130664261732605],[-147.81639273562735,60.05764418803187],[-147.87023214552144,59.991496591855906],[-147.91689296742967,59.969161039900385],[-148.03892896318962,59.9390939507295],[-148.0999469610696,59.952838905779046],[-148.15019707697076,59.937375831348305],[-148.254286602766,59.93222147320472],[-148.22198295682955,59.976033517425165],[-148.315304600646,60.033590516695156],[-148.28300095470954,60.08513409813098],[-148.34401895258952,60.13925485863858],[-148.40144765647656,60.031013337623364],[-148.40144765647656,59.97775163680636],[-148.44451918439182,59.94253018949189],[-148.5127157702577,60.001805308143076],[-148.5845016501165,59.937375831348305],[-148.63475176601764,59.91589933908338],[-148.75678776177762,59.95885232361323],[-148.86087728757286,59.92448993598936],[-148.91471669746696,59.969161039900385],[-149.01162763527634,59.95112078639785],[-149.09059210312103,59.95541608485084],[-149.12289574905748,59.979469756187555],[-149.03675269322693,60.04304017329173],[-149.06905633916338,60.05506700896008],[-149.16596727697276,60.0224227407174],[-149.270056802768,59.872087294862936],[-149.3777356225562,59.83600678785787],[-149.41003926849268,59.85146986228861],[-149.3597891525915,59.898718145271445],[-149.3131283306833,59.97087915928158],[-149.3669677405774,60.118637426064254],[-149.42439644446443,60.12293272451724],[-149.44234291442913,60.098879053180525],[-149.4387536204362,60.02929521824217],[-149.39209279852798,59.98376505464054],[-149.42798573845738,59.98032881587815],[-149.46387867838678,59.918476518155174],[-149.52489667626676,59.92792617475173],[-149.55361102821027,59.910744980939796],[-149.57155749817497,59.85232892197921],[-149.6110397320973,59.837724907239064],[-149.59668255612556,59.79734910178101],[-149.50695020630206,59.7707182513725],[-149.52848597025968,59.707147834268326],[-149.62539690806906,59.73463774436743],[-149.66846843598435,59.84373832507325],[-149.63975408404082,59.875523533625326],[-149.67923631796316,59.94253018949189],[-149.74025431584315,59.94768454763546],[-149.7187185518855,59.90301344372443],[-149.74743290382904,59.86091951888518],[-149.72948643386434,59.69254381952818],[-149.74743290382904,59.637563999329984],[-149.84434384163842,59.70113441643416],[-149.84793313563134,59.73807398312982],[-149.90536183951838,59.76212765446654],[-150.02739783527835,59.788758504875034],[-150.0166299532995,59.75439611725116],[-149.93048689746897,59.72346996838968],[-149.9340761914619,59.669349207882064],[-150.18173747697477,59.533617776767755],[-150.29659488474883,59.45544334492344],[-150.29659488474883,59.424517196061956],[-150.35402358863587,59.41592659915598],[-150.38632723457232,59.34204746576465],[-150.4293987624876,59.343765585145846],[-150.44016664446644,59.40389976348763],[-150.31813064870647,59.58516135820358],[-150.31813064870647,59.61007408923088],[-150.4114522925229,59.55423520934208],[-150.4796488783888,59.45887958368583],[-150.52272040630405,59.46832924028239],[-150.55502405224053,59.59031571634715],[-150.60168487414873,59.54564461243612],[-150.64116710807107,59.547362731817316],[-150.58373840418403,59.4941010310003],[-150.60168487414873,59.42537625575255],[-150.7416673398734,59.42537625575255],[-150.7703816918169,59.37297361462613],[-150.8349889836898,59.35235618205181],[-150.9139534515345,59.305107899068986],[-150.88882839358394,59.26816833237332],[-150.94266780347803,59.23294688505884],[-151.00009650736507,59.224356288152876],[-151.00009650736507,59.2707455114451],[-151.0575252112521,59.301671660306596],[-151.10418603316032,59.263013974229736],[-151.10777532715326,59.217483810628096],[-151.18673979499795,59.20287979588795],[-151.2728828508285,59.22951064629645],[-151.30518649676495,59.20975227341272],[-151.3805616706167,59.24239654165541],[-151.40568672856728,59.279336108351075],[-151.44875825648256,59.24840995948959],[-151.5241334303343,59.22521534784347],[-151.50259766637666,59.195148258672575],[-151.57438354623545,59.195148258672575],[-151.59233001620015,59.1616449307393],[-151.73949106991068,59.15563151290512],[-151.76102683386833,59.220920049390486],[-151.839991301713,59.208893213722135],[-151.91536647556475,59.227792526915266],[-151.90459859358592,59.2466918401084],[-151.97997376743766,59.25356431763316],[-151.9907416494165,59.31369849597495],[-151.96202729747296,59.34462464483644],[-151.90459859358592,59.360087719267185],[-151.88665212362122,59.421080957299566],[-151.77179471584714,59.447711807708075],[-151.73949106991068,59.4382621511115],[-151.63540154411544,59.48207419533195],[-151.5169548423484,59.48465137440374],[-151.5169548423484,59.5233090604806],[-151.39850814058138,59.54134931398313],[-151.27647214482144,59.59461101480014],[-151.1652040310403,59.58687947758477],[-151.20468626496265,59.64615459623596],[-151.12572179711796,59.66849014819147],[-151.11495391513915,59.69598005829057],[-150.98215003740037,59.78360414673146],[-151.02881085930858,59.79649004209041],[-151.11495391513915,59.77759072889728],[-151.33031155471554,59.68395322262222],[-151.43799037450373,59.666772028810286],[-151.50259766637666,59.633268700877],[-151.6425801321013,59.64701365592656],[-151.79691977379773,59.70457065519655],[-151.85075918369182,59.73893304282042],[-151.86870565365652,59.77844978858788],[-151.80409836178362,59.87895977238772],[-151.75743753987538,59.917617458464576],[-151.7035981299813,60.03187239731396],[-151.6066871921719,60.09973811287112],[-151.54566919429192,60.12808708266081],[-151.42004390453903,60.21313399202991],[-151.3805616706167,60.29732184170841],[-151.3805616706167,60.35831507974079],[-151.29800790877908,60.38580498983988],[-151.28006143881439,60.51981830157301],[-151.26570426284263,60.54301291321913],[-151.33031155471554,60.58081153960539],[-151.40927602256022,60.72083826917269],[-151.26929355683555,60.75090535834357],[-151.25134708687085,60.77409996998969],[-151.02522156531563,60.79729458163581],[-150.70577439994398,60.938180370893704],[-150.3755593525935,61.03954941438414],[-150.19250535895358,60.90124080419804],[-150.04534430524305,60.88749584914848],[-149.99868348333482,60.86430123750236],[-149.87664748757487,60.960515922849225],[-149.76896866778668,60.96738840037399],[-149.63975408404082,60.92873071429713],[-149.57155749817497,60.93732131120311],[-149.34543197661975,60.896086446054454],[-149.11212786707867,60.87890525224252],[-149.03316339923398,60.843683804928034],[-149.0080383412834,60.8548515809058],[-149.08700280912808,60.9089723414134],[-149.19109233492333,60.9398984902749],[-149.32748550665505,60.927871654606534],[-149.51053950029498,60.981992415114135],[-149.59668255612556,60.98113335542355],[-149.74025431584315,61.01721386242862],[-149.82998666566664,61.07562992138921],[-149.9699691313913,61.1323278609686],[-150.07405865718655,61.15638153230532],[-150.00945136531365,61.20362981528814],[-149.92330830948308,61.211361352503516],[-149.81204019570194,61.31788475413754],[-149.72948643386434,61.33334782856828],[-149.7007720819208,61.38489141000409],[-149.53566455824557,61.408086021650206],[-149.42798573845738,61.446743707727066],[-149.43157503245033,61.46822019999199],[-149.61462902609026,61.493132931019304],[-149.76896866778668,61.438153110821105],[-149.808450901709,61.396059185981855],[-149.87664748757487,61.38403235031349],[-149.91971901549016,61.323898171971706],[-149.91971901549016,61.26376399362992],[-149.98432630736306,61.23713314322143],[-150.07405865718655,61.253455277342766],[-150.2032732409324,61.25946869517695],[-150.46888099640995,61.24486468043679],[-150.5622026402264,61.281804247132456],[-150.66270287202872,61.295549202182016],[-150.71295298792987,61.250878098270974],[-150.97497144941448,61.19160297961979],[-151.02522156531563,61.17871708426084],[-151.1652040310403,61.046421891908906],[-151.29441861478614,61.03611317562175],[-151.362615200652,61.00948232521324],[-151.48106190241901,61.01120044459444],[-151.62104436814366,60.957079684086835],[-151.79333047980478,60.86344217781176],[-151.79691977379773,60.83852944678446],[-151.7035981299813,60.73200604515044],[-151.71077671796718,60.71224767226671],[-151.84716988969888,60.73372416453164],[-151.91536647556475,60.718261090100896],[-152.02304529535294,60.67358998618985],[-152.09842046920468,60.59455649465494],[-152.19533140701407,60.569643763627624],[-152.31018881478815,60.50607334652345],[-152.33172457874576,60.44336198910989],[-152.30301022680226,60.41415395962959],[-152.2348136409364,60.39353652705526],[-152.378385400654,60.34542918438183],[-152.41068904659045,60.28787218511184],[-152.45734986849868,60.28443594634945],[-152.55785010030098,60.22430176800768],[-152.62604668616686,60.218288350173495],[-152.6583503321033,60.24234202151021],[-152.7480826819268,60.23289236491364],[-152.73372550595505,60.17447630595305],[-152.676296802068,60.163308529975296],[-152.68706468404682,60.137536739257385],[-152.59733233422332,60.10145623225232],[-152.56861798227982,60.07138914308142],[-152.6116895101951,60.00867778566784],[-152.67988609606095,59.96830198020979],[-152.70501115401152,59.915040279392784],[-152.79474350383504,59.89700002589025],[-152.8091006798068,59.87810071269712],[-152.94908314553143,59.876382593315924],[-153.00292255542553,59.88669130960308],[-153.14649431514314,59.860060459194585],[-153.21110160701605,59.86263763826638],[-153.27929819288192,59.811094056830555],[-153.1967444310443,59.824839011880115],[-153.1429050211502,59.807657818068165],[-153.0890656112561,59.833429608786076],[-153.02086902539025,59.834288668476674],[-152.99574396743967,59.791335683946826],[-153.0531726713267,59.691684759837585],[-153.12136925719255,59.67793980478804],[-153.214690901009,59.634127760567594],[-153.31519113281132,59.66591296911969],[-153.29724466284662,59.63670493963939],[-153.34390548475483,59.621241865208646],[-153.40851277662776,59.63670493963939],[-153.38338771867717,59.666772028810286],[-153.3762091306913,59.73120150560504],[-153.45517359853596,59.792194743637424],[-153.44440571655716,59.68996664045639],[-153.4767093624936,59.64271835747357],[-153.54131665436654,59.62983246211461],[-153.58797747627474,59.65130895437953],[-153.6095132402324,59.621241865208646],[-153.55208453634535,59.59718819387193],[-153.5843881822818,59.55165803027029],[-153.76026358793587,59.54306743336433],[-153.69924559005588,59.463174882138816],[-153.72795994199942,59.43568497203971],[-153.8248708798088,59.417644718537176],[-153.8607638197382,59.424517196061956],[-153.94690687556874,59.385859509985096],[-153.98997840348403,59.39702728596285],[-154.11919298722987,59.36524207741077],[-154.10124651726517,59.34290652545525],[-154.02946063740637,59.32744345102451],[-154.11201439924398,59.2999535409254],[-154.13713945719456,59.263013974229736],[-154.12996086920867,59.210611333103316],[-154.17303239712396,59.17281270671705],[-154.2591754529545,59.14274561754617],[-154.17303239712396,59.12041006559065],[-154.1945681610816,59.06972554384542],[-154.1586752211522,59.018181962409614],[-154.06176428334282,59.072302722917215],[-153.84999593775936,59.052544350033486],[-153.79256723387232,59.07144366322662],[-153.74949570595706,59.052544350033486],[-153.69565629606296,59.07402084229841],[-153.61669182821828,59.00701418643186],[-153.5484952423524,58.98381957478574],[-153.48029865648655,58.994987350763495],[-153.39774489464892,58.96577932128321],[-153.33313760277602,58.92024915768157],[-153.30442325083249,58.87471899407993],[-153.25776242892428,58.8549606211962],[-153.35108407274072,58.843792845218445],[-153.40133418864187,58.74242380172801],[-153.44440571655716,58.708920473794734],[-153.55208453634535,58.68744398152981],[-153.5915667702677,58.640195698546975],[-153.67770982609824,58.61184672875727],[-153.84999593775936,58.61184672875727],[-153.90383534765346,58.59724271401713],[-153.91819252362524,58.51649110310102],[-153.9612640515405,58.48814213331133],[-154.05817498934988,58.489001193001926],[-154.07612145931458,58.47181999918999],[-154.04022851938518,58.40395428363283],[-154.00074628546284,58.37646437353372],[-154.09765722327222,58.34553822467224],[-154.16944310313102,58.35842412003119],[-154.1766216911169,58.31976643395433],[-154.1048358112581,58.28024968818687],[-154.14431804518046,58.21066585324853],[-154.2196932190322,58.18489406253062],[-154.2412289829898,58.15654509274091],[-154.20892533705336,58.13592766016659],[-154.291479098891,58.13592766016659],[-154.34172921479214,58.09125655625556],[-154.43505085860858,58.14795449583495],[-154.46735450454503,58.14194107800077],[-154.44940803458033,58.09297467563675],[-154.46376521055208,58.05861228801287],[-154.53914038440382,58.056035108941074],[-154.5822119123191,58.01909554224541],[-154.6432299101991,58.03284049729497],[-154.6432299101991,58.056035108941074],[-154.7150157900579,58.05517604925048],[-154.72937296602964,58.0216727213172],[-154.80833743387433,58.001055288742876],[-154.89089119571196,58.027686139151385],[-154.99139142751426,58.01308212441124],[-155.11701671726718,57.953807005760055],[-155.06317730737305,57.90913590184901],[-155.09548095330953,57.86532385762857],[-155.23905271302712,57.827525231242305],[-155.33955294482945,57.82580711186111],[-155.3359636508365,57.78027694825947],[-155.28571353493533,57.758800455994546],[-155.30724929889297,57.724438068370674],[-155.37903517875176,57.71069311332113],[-155.5082497624976,57.76137763506634],[-155.54414270242702,57.78714942578425],[-155.61592858228582,57.769968231972314],[-155.63387505225052,57.7158474714647],[-155.63028575825757,57.65657235281351],[-155.723607402074,57.63337774116741],[-155.73437528405282,57.550048951179505],[-155.96767939359393,57.54403553334532],[-156.04305456744567,57.56465296591965],[-156.05023315543156,57.501082548815475],[-156.02151880348802,57.440089310783094],[-156.09330468334682,57.440089310783094],[-156.1363762112621,57.47187451933519],[-156.21175138511384,57.47445169840698],[-156.2261085610856,57.44094837047369],[-156.34096596885968,57.41775375882757],[-156.48094843458432,57.33872026729266],[-156.53478784447844,57.3284115510055],[-156.55273431444314,57.29061292461924],[-156.5060734925349,57.28116326802267],[-156.33737667486673,57.33614308822088],[-156.32301949889498,57.29319010369103],[-156.34455526285262,57.24765994008939],[-156.39839467274672,57.24164652225521],[-156.39839467274672,57.215015671846714],[-156.3337873808738,57.18237140360402],[-156.35532314483143,57.1600358516485],[-156.43428761267612,57.127391583405824],[-156.441466200662,57.085297658566574],[-156.53478784447844,57.04749903218031],[-156.56350219642195,57.020009122081206],[-156.55632360843606,56.98392861507614],[-156.67118101621014,56.9959554507445],[-156.78244912999128,56.97190177940779],[-156.79680630596306,56.911767601066],[-156.83987783387832,56.90145888477883],[-156.9080744197442,56.965888361573604],[-156.9367887716877,56.920358197971964],[-157.03369970949709,56.8842776909669],[-157.07318194341943,56.83874752736527],[-157.15932499924998,56.833593169221686],[-157.14137852928528,56.79064018469184],[-157.20239652716526,56.76744557304572],[-157.29212887698876,56.804385139741385],[-157.3782719328193,56.861942139011376],[-157.457236400664,56.84819718396183],[-157.457236400664,56.804385139741385],[-157.41775416674164,56.8000898412884],[-157.41416487274873,56.769163692426915],[-157.51825439854397,56.76057309552094],[-157.56491522045218,56.70301609625095],[-157.54337945649456,56.675526186151856],[-157.47877216462163,56.67037182800827],[-157.46082569465693,56.62570072409723],[-157.59004027840277,56.62226448533484],[-157.67618333423331,56.60937858997589],[-157.7372013321133,56.675526186151856],[-157.92025532575326,56.642881917909165],[-157.98486261762616,56.599069873688734],[-158.0422913215132,56.59649269461694],[-158.07459496744966,56.55439876977769],[-158.0063983815838,56.553539710087094],[-157.90948744377442,56.57501620235202],[-157.83770156391563,56.560412187611874],[-157.816165799958,56.514022964319636],[-157.87359450384503,56.47364715886158],[-158.02793414554145,56.511445785247844],[-158.11048790737905,56.52089544184442],[-158.12843437734375,56.46076126350263],[-158.24688107911078,56.465915621646204],[-158.3294348409484,56.48395587514874],[-158.4012207208072,56.45560690535905],[-158.4981316586166,56.38000965258652],[-158.4909530706307,56.342211026200246],[-158.32225625296252,56.32502983238831],[-158.20739884518844,56.29410368352683],[-158.21816672716727,56.269190952499514],[-158.33302413494133,56.23311044549445],[-158.3294348409484,56.21335207261072],[-158.26482754907548,56.20991583384833],[-158.17509519925198,56.23654668425684],[-158.11766649536494,56.230533266422654],[-158.31507766497663,56.16352661055609],[-158.39763142681426,56.10940585004849],[-158.3940421328213,56.06473474613745],[-158.44070295472955,56.107687730667294],[-158.47659589465894,56.09308371592715],[-158.4191671907719,56.03638577634776],[-158.44070295472955,55.99343279181791],[-158.4658280126801,56.026936119751184],[-158.5017209526095,56.02521800036999],[-158.5088995405954,55.97968783676836],[-158.5986318904189,56.04841261201611],[-158.5986318904189,56.130023282622815],[-158.66682847628476,56.07847970118701],[-158.63811412434123,56.01576834377343],[-158.65247130031298,55.95821134450344],[-158.73861435614356,55.953056986359854],[-158.72784647416472,56.00288244841448],[-158.85347176391764,56.003741508105065],[-158.91090046780465,55.93501673285732],[-159.00063281762817,55.92728519564194],[-159.26982986709865,55.89034562894628],[-159.37391939289392,55.87144631575315],[-159.39904445084449,55.852547002560016],[-159.40981233282332,55.78897658545584],[-159.47083033070328,55.8284933312233],[-159.4528838607386,55.89721810647106],[-159.5354376225762,55.88089597234972],[-159.4995446826468,55.85512418163181],[-159.49595538865387,55.76578197380972],[-159.5533840925409,55.70478873577734],[-159.53184832858327,55.665271990009884],[-159.55697338653385,55.63864113960139],[-159.61799138441384,55.59568815507154],[-159.7328487921879,55.56991636435363],[-159.72567020420203,55.61458746826467],[-159.63952714837149,55.61802370702706],[-159.6431164423644,55.652386094650936],[-159.6790093822938,55.655822333413326],[-159.67183079430794,55.75117795906958],[-159.607223502435,55.81303025679256],[-159.71131302823028,55.84653358472583],[-159.81181326003258,55.856842301013],[-159.8584740819408,55.84137922658226],[-159.84770619996198,55.8027215405054],[-159.89077772787726,55.784681287002854],[-159.9374385497855,55.803580600196],[-160.027170899609,55.79241282421823],[-160.05947454554544,55.72196992958929],[-160.18509983529833,55.65839951248512],[-160.27842147911477,55.64121831867318],[-160.41122535685355,55.665271990009884],[-160.4327611208112,55.640359258982585],[-160.39327888688885,55.60256063259632],[-160.46506476674764,55.532976797657966],[-160.46147547275473,55.50634594724946],[-160.53685064660647,55.47456073869738],[-160.57992217452173,55.56476200621006],[-160.61581511445112,55.57592978218781],[-160.6660652303523,55.544144573635734],[-160.70554746427462,55.556171409304085],[-160.77015475614755,55.529540558895576],[-160.6588866423664,55.51837278291782],[-160.6660652303523,55.459956723957234],[-160.78092263812636,55.45136612705126],[-160.8383513420134,55.47284261931618],[-160.8204048720487,55.50634594724946],[-160.86706569395693,55.52696337982378],[-160.94603016180162,55.50806406663065],[-161.01422674766746,55.43074869447693],[-161.2331736812368,55.3577286207762],[-161.32649532505323,55.359446740157395],[-161.36597755897557,55.38435947118471],[-161.459299202792,55.359446740157395],[-161.50596002470024,55.362882978919785],[-161.47006708477085,55.4968962906529],[-161.36597755897557,55.579366020950204],[-161.36238826498263,55.61888276671766],[-161.41622767487672,55.63262772176721],[-161.52749578865786,55.63090960238601],[-161.61363884448843,55.6059968713587],[-161.69978190031898,55.51923184260842],[-161.68542472434723,55.40841314252141],[-161.82899648406482,55.288144785837844],[-161.8541215420154,55.27783606955069],[-161.90437165791656,55.204815995849955],[-161.9797468317683,55.23574214471144],[-162.04794341763417,55.22543342842428],[-162.00128259572594,55.16959454853547],[-161.96538965579654,55.15499053379533],[-161.9618003618036,55.10688319112191],[-162.0515327116271,55.07423892287922],[-162.11972929749297,55.10258789266892],[-162.11972929749297,55.14124557874578],[-162.17715800138,55.15413147410473],[-162.2238188232882,55.10258789266892],[-162.18792588335882,55.06049396782967],[-162.2489438812388,55.02011816237162],[-162.29919399713995,55.043312774017735],[-162.41405140491403,55.036440296492955],[-162.47148010880107,55.0519033709237],[-162.52173022470222,55.11547378802787],[-162.40687281692817,55.120628146171455],[-162.4822479907799,55.16100395162951],[-162.51096234272342,55.25034615945158],[-162.58633751657516,55.298453502125014],[-162.6258197504975,55.3044669199592],[-162.68324845438454,55.27611795016949],[-162.71914139431394,55.2202790702807],[-162.69401633636335,55.19708445863458],[-162.6437662204622,55.19708445863458],[-162.57915892858927,55.136950280292794],[-162.6186411625116,55.09743353452534],[-162.56839104661046,55.01582286391863],[-162.56839104661046,54.97115176000759],[-162.64735551445514,54.9969235507255],[-162.71914139431394,54.98060141660416],[-162.7083735123351,54.95826586464864],[-162.7693915102151,54.93249407393073],[-162.83399880208802,54.92648065609656],[-162.91296326993267,54.95053432743326],[-162.97039197381972,55.001218849178485],[-162.95603479784796,55.03214499803997],[-163.0026956197562,55.0802523407134],[-163.07807079360794,55.11203754926548],[-163.18933890738907,55.090561057000556],[-163.22523184731847,55.04245371432714],[-163.0493564416644,54.96943364062639],[-163.03499926569265,54.9428027902179],[-163.21446396533963,54.84744716456164],[-163.3006070211702,54.829406911059095],[-163.372392901029,54.801057941269406],[-163.31496419714196,54.75295059859597],[-163.21805325933258,54.75466871797717],[-163.18574961339613,54.775286150551494],[-163.10678514555144,54.73233316602165],[-163.0601243236432,54.66103121170211],[-163.15344596745967,54.666185569845695],[-163.12473161551614,54.69539359932598],[-163.18574961339613,54.70054795746957],[-163.22164255332552,54.67649428613285],[-163.27907125721256,54.69539359932598],[-163.34008925509255,54.748655300143],[-163.42982160491604,54.71515197220971],[-163.42264301693015,54.655876853558524],[-163.48725030880308,54.65501779386793],[-163.58775054060538,54.61206480933808],[-163.67030430244301,54.627527883768835],[-163.8031081801818,54.636118480674796],[-163.96462640986408,54.63182318222181],[-164.08666240562405,54.61979634655346],[-164.2338234593346,54.585433958929585],[-164.33791298512983,54.5244407208972],[-164.3522701611016,54.46516560224602],[-164.45635968689686,54.41963543864438],[-164.6394136805368,54.39128646885467],[-164.74350320633204,54.393863647926466],[-164.84400343813437,54.41791731926318],[-164.87630708407082,54.443689109981094],[-164.9086107300073,54.50725952708527],[-164.9445036699367,54.533031317803164],[-164.94809296392964,54.580279600786],[-164.9193786119861,54.60519233181331],[-164.76144967629676,54.64041377912778],[-164.71119956039558,54.66189027139271],[-164.62864579855798,54.75638683735836],[-164.5604492126921,54.85088340332402],[-164.56403850668505,54.87579613435133],[-164.48507403884037,54.92218535764357],[-164.43482392293922,54.933353133621324],[-164.34509157311572,54.89383638785387],[-164.208698401384,54.927339715787156],[-164.1189660515605,54.96943364062639],[-164.029233701737,54.96943364062639],[-163.89642982399823,55.03901747556475],[-163.77439382823826,55.056198669376684],[-163.64517924449243,55.04417183370833],[-163.5339111307113,55.048467132161306],[-163.53032183671834,55.01668192360923],[-163.42982160491604,54.95482962588625],[-163.39751795897956,54.90242698475984],[-163.4154644289443,54.859474000229994],[-163.3185534911349,54.88009143280432],[-163.3472678430784,54.92476253671536],[-163.34008925509255,54.95654774526744],[-163.23241043530433,54.93077595454953],[-163.28624984519843,54.96685646155461],[-163.27907125721256,55.033004057730565],[-163.31496419714196,55.12664156400564],[-163.20010678936788,55.166158309773095],[-163.10678514555144,55.18419856327563],[-162.95603479784796,55.171312667916666],[-162.88065962399622,55.18333950358503],[-162.84476668406683,55.24261462223622],[-162.90219538795387,55.24605086099861],[-162.8878382119821,55.27010453233531],[-162.82323092010918,55.278695129241285],[-162.79810586215862,55.31133939748396],[-162.7334985702857,55.30790315872157],[-162.64017692646925,55.39295006809067],[-162.62940904449044,55.36546015799158],[-162.57556963459632,55.34827896417963],[-162.50019446074458,55.38951382932828],[-162.5181409307093,55.46081578364783],[-162.5899268105681,55.453084246432454],[-162.49301587275872,55.51150030539304],[-162.26330105721055,55.688466601656],[-162.14485435544356,55.733137705567046],[-162.06230059360593,55.78639940638405],[-161.99410400774008,55.79756718236182],[-161.8971930699307,55.833647689366884],[-161.8074607201072,55.89206374832747],[-161.71054978229782,55.904090583995824],[-161.58492449254493,55.93759391192911],[-161.45212061480615,55.95477510574105],[-161.1326734494345,56.01490928408283],[-161.02499462964627,56.007177746867455],[-160.98910168971688,56.02264082129821],[-160.8275834600346,56.026936119751184],[-160.7916905201052,56.01834552284522],[-160.863476399964,55.995150911199104],[-160.86706569395693,55.95477510574105],[-160.81681557805575,55.953056986359854],[-160.8275834600346,55.910963061520604],[-160.93167298582983,55.89549998708986],[-160.94244086780867,55.82247991338913],[-160.80604769607694,55.73829206371063],[-160.7665654621546,55.75719137690376],[-160.66965452434522,55.72368804897049],[-160.65529734837347,55.740010183091826],[-160.75938687416874,55.78554034669345],[-160.77015475614755,55.8585604203942],[-160.7916905201052,55.88605033049329],[-160.69836887628875,55.86199665915659],[-160.49377911869118,55.86457383822837],[-160.4686540607406,55.79069470483704],[-160.386100298903,55.79670812267122],[-160.29277865508655,55.76578197380972],[-160.26765359713596,55.784681287002854],[-160.3179037130371,55.81904367462674],[-160.22099277522773,55.83192956998569],[-160.42199323883239,55.90838588244881],[-160.53685064660647,55.93931203131031],[-160.53326135261352,55.98913749336492],[-160.59069005650056,55.98312407553075],[-160.4507075907759,56.12572798416983],[-160.3968681808818,56.23139232611325],[-160.35738594695945,56.279499668786684],[-160.27483218512185,56.31729829517295],[-160.145617601376,56.39976802547025],[-160.08101030950309,56.410935801448005],[-159.9374385497855,56.47450621855218],[-159.82975972999728,56.54409005349052],[-159.5354376225762,56.626559783787826],[-159.38827656886568,56.690130200892],[-159.2626512791128,56.723633528825275],[-159.01857928759287,56.814693856028555],[-158.95756128971288,56.85077436303362],[-158.89295399783998,56.80610325912258],[-158.78527517805176,56.78033146840467],[-158.67400706427063,56.79665360252602],[-158.64529271232712,56.84733812427123],[-158.69195353423532,56.88771392972929],[-158.69913212222122,56.927230675496745],[-158.64529271232712,57.03203595774957],[-158.54120318653185,57.12481440433403],[-158.3940421328213,57.23649216411164],[-158.30789907699076,57.28975386492864],[-158.22893460914608,57.32153907348072],[-158.0853628494285,57.356760520795206],[-158.00998767557675,57.401431624706234],[-157.93102320773207,57.476169817788175],[-157.88077309183092,57.489055713147124],[-157.78745144801448,57.54231741396413],[-157.67977262822626,57.56379390622905],[-157.65105827628275,57.50022348912488],[-157.58645098440982,57.48733759376593],[-157.57209380843807,57.5225590410804],[-157.60798674836747,57.61276030859308],[-157.6905405102051,57.61104218921189],[-157.71207627416274,57.640250218692174],[-157.70489768617685,57.72186088929888],[-157.6725940402404,57.772545411044106],[-157.5828616904169,58.123900824498236],[-157.53261157451573,58.1599813315033],[-157.39621840278403,58.17372628655285],[-157.35314687486874,58.21925645015449],[-157.42493275472754,58.211524912939126],[-157.5469687504875,58.27767250911508],[-157.55773663246632,58.330934209932096],[-157.52543298652986,58.414262999919984],[-157.45364710667104,58.505323327123264],[-157.3567361688617,58.533672296912954],[-157.25623593705936,58.617001086900856],[-157.07677123741237,58.70806141410414],[-157.0624140614406,58.75702781646815],[-156.99421747557474,58.836920367693665],[-156.9906281815818,58.885886770057695],[-156.97627100561004,58.940866590255894],[-156.9296101837018,58.97351085849857],[-157.00139606356063,58.97351085849857],[-157.04087829748295,58.94602094839948],[-157.06959264942648,58.88760488943889],[-157.19880723317232,58.84551096459964],[-157.35314687486874,58.818021054500534],[-157.42852204872048,58.791390204092025],[-157.53261157451573,58.772490890898894],[-157.55055804448043,58.75445063739636],[-157.69771909819096,58.73039696605966],[-157.85564803388033,58.67799432493324],[-158.1392022593226,58.61528296751966],[-158.23252390313903,58.61957826597265],[-158.33302413494133,58.66510842957429],[-158.35097060490602,58.727819786987865],[-158.42275648476485,58.769913711827115],[-158.56632824448243,58.80255798006979],[-158.55914965649654,58.84207472583725],[-158.5196674225742,58.856678740577394],[-158.48736377663775,59.00014170890708],[-158.53043530455304,58.99756452983529],[-158.62016765437653,58.910799501084995],[-158.76732870808706,58.86441027779277],[-158.7888644720447,58.814584815738144],[-158.77091800208,58.76475935368353],[-158.79963235402352,58.732974145131436],[-158.8498824699247,58.72266542884428],[-158.8606503519035,58.695175518745174],[-158.82834670596705,58.62645074349743],[-158.77091800208,58.54827631165311],[-158.70272141621416,58.48298777516774],[-158.7960430600306,58.408249582085816],[-158.8965432918329,58.39020932858328],[-159.04729363953638,58.417699238682374],[-159.18727610526105,58.556007848868475],[-159.35597292292923,58.73469226451263],[-159.44929456674566,58.79740362192621],[-159.53184832858327,58.833484128931275],[-159.6431164423644,58.84465190490904],[-159.58568773847736,58.90049078479784],[-159.6431164423644,58.9382894111841],[-159.7328487921879,58.93055787396872],[-159.75438455614554,58.855819680886796],[-159.80822396603963,58.86183309872098],[-159.80463467204672,58.80599421883218],[-159.90872419784196,58.78022242811427],[-159.9948672536725,58.84808814367143],[-159.9840993716937,58.870423695626954],[-160.05229595755958,58.88674582974829],[-160.0917781914819,58.86097403903038],[-160.14920689536893,58.866128397173966],[-160.15279618936188,58.91681291891918],[-160.23176065720656,58.901349844488436],[-160.32149300703006,58.95375248561484],[-160.25688571515713,58.9941282910729],[-160.3179037130371,59.07058460353602],[-160.47583264872648,59.02591349962499],[-160.6409401724017,58.96406120190201],[-160.75220828618285,58.910799501084995],[-160.82399416604164,58.8291888304783],[-160.87065498794988,58.87815523284232],[-161.0357625116251,58.83863848707486],[-161.0716554515545,58.82575259171591],[-161.34085250102498,58.73898756296562],[-161.37315614696146,58.70806141410414],[-161.37315614696146,58.66596748926489],[-161.520317200672,58.633323221022195],[-161.5490315526155,58.61098766906669],[-161.6279960204602,58.60239707216071],[-161.68183543035428,58.56459844577445],[-161.75362131021308,58.5517125504155],[-161.76797848618486,58.59896083339832],[-161.8720680119801,58.63761851947518],[-162.06588988759887,58.62043732566325],[-162.16997941339412,58.64878629545295],[-161.99410400774008,58.689162100911005],[-161.94026459784595,58.655658772977716],[-161.87565730597305,58.66596748926489],[-161.85771083600835,58.708920473794734],[-161.76797848618486,58.775068069970686],[-161.75721060420602,58.82661165140651],[-161.78592495614956,58.89963172510724],[-161.7823356621566,58.9692155600456],[-161.83976436604365,59.03278597714976],[-161.82181789607895,59.05082623065229],[-161.879246599966,59.06800742446424],[-161.98333612576124,59.15133621445213],[-162.05512200562003,59.2707455114451],[-161.9510324798248,59.38070515184151],[-161.87565730597305,59.40046352472524],[-161.78951425014247,59.46832924028239],[-161.70337119431193,59.49066479223791],[-161.75721060420602,59.556812388413874],[-161.82181789607895,59.59461101480014],[-161.87565730597305,59.649590834998335],[-161.91155024590245,59.74151022189221],[-162.09101494554943,59.88067789176891],[-162.10178282752827,59.944248308873085],[-162.19151517735176,60.001805308143076],[-162.22740811728116,60.05592606865068],[-162.33508693706935,60.12894614235141],[-162.37097987699875,60.16674476873767],[-162.44994434484343,60.17447630595305],[-162.48942657876577,60.14269109740097],[-162.49660516675166,60.079120680296796],[-162.47506940279402,60.0473354717447],[-162.50378375473753,59.999228129071284],[-162.5468552826528,59.98118787556875],[-162.6437662204622,59.972597278662775],[-162.7083735123351,59.99063753216531],[-162.77657009820098,59.944248308873085],[-162.9057846819468,59.91933557784577],[-163.0852493815938,59.86091951888518],[-163.3472678430784,59.81968465373653],[-163.66312571445712,59.795630982399814],[-163.93232276392763,59.80422157930579],[-164.11537675756756,59.83686584754847],[-164.1620375794758,59.86435575764757],[-164.208698401384,59.949402667016656],[-164.1261446395464,59.96486574144741],[-164.1907519314193,60.0241408600986],[-164.38457380703807,60.0774025609156],[-164.49943121481215,60.17018100750006],[-164.51737768477685,60.199389036980364],[-164.63582438654385,60.24320108120081],[-164.70043167841678,60.29646278201781],[-164.85118202612026,60.30333525954259],[-164.9624501399014,60.33941576654766],[-165.13114695756957,60.433912332513316],[-165.04859319573194,60.46140224261242],[-164.9624501399014,60.50865052559524],[-164.96962872788725,60.53957667445674],[-165.05577178371783,60.54473103260031],[-165.19216495544953,60.49834180930809],[-165.36445106711065,60.50693240621405],[-165.4218797709977,60.55074445043449],[-165.38239753707535,60.5782343605336],[-165.26754012930127,60.5790934202242],[-165.0629503717037,60.689053060620594],[-165.0270574317743,60.685616821858204],[-164.96603943389434,60.724274507935064],[-165.02346813778138,60.753482537415366],[-165.03782531375313,60.788703984729835],[-164.92296790597905,60.80932141730416],[-165.01987884378843,60.815334835138344],[-165.00193237382373,60.87546901348013],[-164.90502143601435,60.94247566934668],[-164.96603943389434,60.94505284841847],[-165.03064672576724,60.90381798326982],[-165.12755766357662,60.92099917708177],[-165.19575424944247,60.97426087789877],[-165.11678978159782,61.01635480273802],[-165.01987884378843,61.01120044459444],[-164.95168225792256,61.030958817478165],[-164.95168225792256,61.069616503555025],[-165.01270025580254,61.05157625005249],[-165.12037907559073,61.0790661601516],[-165.17780777947777,61.12545538344382],[-165.1706291914919,61.14521375632755],[-165.2424150713507,61.15122717416173],[-165.2890758932589,61.18129426333262],[-165.3249688331883,61.169267427664266],[-165.3680403611036,61.08422051829517],[-165.41829047700475,61.0790661601516],[-165.55468364873647,61.092811115201144],[-165.59057658866587,61.11085136870368],[-165.62646952859527,61.16754930828307],[-165.62288023460232,61.27836800837008],[-165.66236246852466,61.29469014249142],[-165.8167021102211,61.30328073939738],[-165.88130940209402,61.335065947949474],[-165.91720234202342,61.41925379762796],[-165.76645199431994,61.457052424014236],[-165.7449162303623,61.48969669225691],[-165.80593422824228,61.52921343802437],[-165.91361304803047,61.55584428843288],[-166.07513127771276,61.53264967678676],[-166.07513127771276,61.493132931019304],[-166.1505064515645,61.51289130390303],[-166.18281009750098,61.58848855667556],[-166.15409574555744,61.71477033119331],[-166.1325599815998,61.724219987789866],[-166.1397385695857,61.632300600896],[-165.80952352223522,61.67267640635406],[-165.80952352223522,61.688998540475396],[-165.9351488119881,61.70617973428733],[-166.0069346918469,61.73023340562405],[-166.09307774767746,61.80067630025299],[-166.0858991596916,61.81613937468374],[-165.95668457594576,61.83246150880508],[-165.75927340633405,61.8255890312803],[-165.64082670456702,61.847065523545226],[-165.7449162303623,61.96217952208521],[-165.75927340633405,62.001696267852665],[-165.74850552435524,62.073857281862814],[-165.6731303505035,62.140004878038766],[-165.31061165721655,62.378823472024706],[-165.2962544812448,62.40373620305202],[-165.19934354343542,62.469883799227986],[-165.09525401764017,62.52228644035439],[-165.07730754767547,62.582420618696176],[-165.01270025580254,62.63997761796617],[-164.9373250819508,62.66918564744647],[-164.86912849608495,62.66574940868408],[-164.8368248501485,62.68550778156781],[-164.87630708407082,62.78429964598645],[-164.78298544025438,62.94580286781867],[-164.71837814838148,63.005937046160454],[-164.58198497664975,63.05833968728686],[-164.64659226852268,63.07895711986119],[-164.6322350925509,63.09785643305432],[-164.4240560409604,63.2121113719037],[-164.208698401384,63.25162811767116],[-164.03641228972288,63.26107777426773],[-163.8856619420194,63.22242008819087],[-163.731322300323,63.2129704315943],[-163.61646489254892,63.140809417584165],[-163.53032183671834,63.13565505944058],[-163.50878607276073,63.11331950748506],[-163.31496419714196,63.037722254712534],[-163.05294573565735,63.05833968728686],[-162.83399880208802,63.16486308892088],[-162.81964162611624,63.20523889437894],[-162.6617126904269,63.23015162540625],[-162.59351610456105,63.272245550245486],[-162.43558716887168,63.37790989218891],[-162.35303340703405,63.45436620465203],[-162.27047964519645,63.48786953258532],[-162.3027832911329,63.537694994639935],[-162.25253317523175,63.54199029309292],[-162.15203294342942,63.517936621756206],[-162.07306847558473,63.51364132330322],[-162.02640765367653,63.44749372712727],[-161.83976436604365,63.44749372712727],[-161.67824613636134,63.4646749209392],[-161.58492449254493,63.44749372712727],[-161.30854885508853,63.47154739846397],[-161.13626274342744,63.50419166670666],[-161.10395909749096,63.548003710927105],[-160.90295863388633,63.6579633513235],[-160.7665654621546,63.77393640955408],[-160.7665654621546,63.83492964758646],[-160.8096369900699,63.90451348252482],[-160.8921907519075,63.98612415313153],[-160.95320874978748,64.09007037569374],[-160.95679804378042,64.19143941918418],[-160.97474451374512,64.23611052309522],[-161.22958438724385,64.37098289451893],[-161.26188803318033,64.39847280461804],[-161.40904908689086,64.42252647595475],[-161.50596002470024,64.42338553564535],[-161.47006708477085,64.50671432563324],[-161.37315614696146,64.53506329542294],[-161.3229060310603,64.51358680315802],[-161.1972807413074,64.49640560934608],[-161.01422674766746,64.50241902718027],[-161.05011968759686,64.54107671325713],[-160.93885157381573,64.54966731016309],[-160.7916905201052,64.61925114510144],[-160.7845119321193,64.71718394982949],[-160.93526227982278,64.82198923208232],[-161.10395909749096,64.8804052910429],[-161.19369144731445,64.92164015619156],[-161.1972807413074,64.89415024609245],[-161.29419167911678,64.8529153809438],[-161.36597755897557,64.77903624755247],[-161.51672790667905,64.75326445683456],[-161.66747825438253,64.78934496383962],[-161.879246599966,64.70945241261411],[-162.16997941339412,64.68024438313383],[-162.23458670526705,64.61925114510144],[-162.53967669466692,64.53076799696996],[-162.61505186851866,64.47063381862817],[-162.63299833848336,64.38558690925909],[-162.79092727417273,64.3254527309173],[-162.80528445014448,64.40534528214282],[-162.85912386003858,64.49984184810847],[-162.9416776218762,64.54279483263832],[-163.04217785367854,64.54021765356653],[-163.02782067770676,64.56942568304682],[-163.14267808548084,64.60894242881427],[-163.1749817314173,64.63986857767577],[-163.31137490314902,64.58832499623995],[-163.25394619926197,64.54966731016309],[-163.17857102541024,64.54365389232892],[-163.1211423215232,64.51015056439563],[-163.03499926569265,64.5196002209922],[-163.02782067770676,64.47836535584355],[-163.10678514555144,64.4087815209052],[-163.1749817314173,64.39933186430864],[-163.25394619926197,64.46977475893758],[-163.4513573688737,64.53506329542294],[-163.59851842258422,64.56341226521265],[-163.82823323813236,64.5745800411904],[-163.97539429184292,64.55138542954428],[-164.07230522965227,64.56169414583145],[-164.25894851728515,64.56427132490325],[-164.42046674696746,64.5453720117101],[-164.80811049820497,64.44915732636325],[-165.0162895497955,64.4345533116231],[-165.41470118301183,64.49812372872728],[-165.75209481834818,64.53678141480414],[-165.92079163601636,64.54880825047249],[-166.23664950739507,64.58317063809638],[-166.4125249130491,64.65103635365352],[-166.4843107929079,64.73350608395083],[-166.480721498915,64.797076501055],[-166.40893561905617,64.82800264991648],[-166.4304713830138,64.8829824701147],[-166.53097161481614,64.9371032306223],[-166.69248984449843,64.98521057329572],[-166.69607913849137,65.03589509504094],[-166.8611866621666,65.09087491523914],[-166.897079602096,65.13898225791257],[-166.75709713637136,65.11063328812287],[-166.63865043460433,65.11321046719466],[-166.60634678866788,65.13640507884078],[-166.5202037328373,65.14929097419973],[-166.4627750289503,65.17678088429884],[-166.4735429109291,65.22402916728166],[-166.3479176211762,65.27643180840808],[-166.4843107929079,65.33055256891568],[-166.55250737877378,65.33828410613106],[-166.65659690456903,65.3245391510815],[-166.7965793702937,65.33742504644046],[-167.02629418584183,65.38209615035149],[-167.3995807611076,65.40013640385403],[-167.57545616676165,65.44480750776506],[-167.71184933849338,65.49892826827268],[-167.90926050810506,65.55047184970849],[-168.0743680317803,65.5762436404264],[-168.13538602966028,65.64067311722116],[-168.10308238372383,65.6853442211322],[-167.98104638796386,65.72829720566205],[-167.53956322683226,65.8210756522465],[-167.31343770527704,65.88464606935068],[-167.14115159361592,65.94821648645485],[-166.97963336393363,65.99632382912829],[-166.82888301623015,66.05130364932648],[-166.5273823208232,66.14150491683915],[-166.3299711512115,66.18961225951259],[-165.80593422824228,66.33307522784227],[-165.1885756614566,66.46537042019419],[-164.71119956039558,66.54268579234791],[-164.39534168901687,66.58134347842477],[-163.91437629396293,66.59422937378373],[-163.72773300633006,66.58477971718716],[-163.60569701057008,66.55814886677865],[-163.75285806428064,66.5486992101821],[-163.72773300633006,66.51605494193942],[-163.76362594625945,66.45506170390703],[-163.8748940600406,66.38891410773107],[-163.87130476604764,66.32877992938928],[-163.82823323813236,66.28067258671585],[-163.9036084119841,66.22998806497064],[-164.07948381763816,66.20163909518094],[-164.09384099360992,66.184457901369],[-163.91796558795588,66.19047131920318],[-163.7672152402524,66.06075330592304],[-163.62364348053478,66.05817612685127],[-163.49442889678895,66.08566603695036],[-163.34367854908547,66.08480697725976],[-163.16780314343143,66.05903518654185],[-162.99910632576325,66.0770754400444],[-162.7514450402504,66.08996133540334],[-162.6365876324763,66.04013587334872],[-162.45712293282932,66.05817612685127],[-162.3925156409564,66.02896809737096],[-162.2058723533235,66.05645800747007],[-162.1412650614506,66.07879355942558],[-161.83976436604365,66.02295467953678],[-161.77515707417072,66.073639201282],[-161.68183543035428,66.11143782766827],[-161.5490315526155,66.2402967812578],[-161.4844242607426,66.26263233321332],[-161.34085250102498,66.25490079599795],[-161.31213814908148,66.22139746806467],[-161.1972807413074,66.21108875177751],[-161.08601262752626,66.23428336342363],[-160.99269098370982,66.23428336342363],[-161.1075483914839,66.32877992938928],[-161.36238826498263,66.37602821237212],[-161.52390649466494,66.39664564494645],[-161.69619260632606,66.39578658525585],[-161.91155024590245,66.34424300382003],[-161.8648894239942,66.44045768916688],[-161.87565730597305,66.51175964348643],[-162.09819353353532,66.60969244821447],[-162.17715800138,66.68786688005879],[-162.27047964519645,66.71793396922968],[-162.4822479907799,66.72996080489804],[-162.51096234272342,66.77806814757146],[-162.6258197504975,66.85538351972518],[-162.6006946925469,66.89833650425503],[-162.50378375473753,66.91379957868578],[-162.46789081480813,66.95073914538145],[-162.4104621109211,66.91895393682935],[-162.32431905509054,66.94300760816607],[-162.22740811728116,66.86655129570295],[-162.09819353353532,66.78837686385863],[-162.01205047770478,66.77978626695266],[-162.08024706357062,66.69302123820238],[-162.06947918159182,66.64577295521954],[-161.9689789497895,66.6028199706897],[-161.7643891921919,66.49715562874627],[-161.5741566105661,66.43873956978568],[-161.43417414484145,66.45420264421644],[-161.32649532505323,66.47825631555314],[-161.29419167911678,66.52035024039239],[-161.45570990879907,66.52206835977358],[-161.49160284872846,66.56072604585044],[-161.69260331233312,66.62086022419223],[-161.88283589395894,66.71707490953908],[-161.84694295402954,66.76174601345012],[-161.84694295402954,66.81328959488594],[-161.79669283812837,66.83304796776967],[-161.79310354413542,66.88201437013369],[-161.67465684236842,66.9619069213592],[-161.5669780225802,66.93441701126011],[-161.48801355473555,66.93699419033189],[-161.4844242607426,66.9610478616686],[-161.62081743247433,67.00829614465144],[-161.71054978229782,67.00142366712666],[-161.81105001410012,67.05039006949069],[-162.1233185914859,67.02547733846338],[-162.23817599925997,66.9936921299113],[-162.36021199501994,66.9936921299113],[-162.50019446074458,66.97736999578994],[-162.62223045650455,66.9919740105301],[-162.69401633636335,67.02891357722577],[-162.75503433424333,67.0151686221762],[-162.83040950809507,67.03492699505993],[-162.84476668406683,66.9911149508395],[-162.97398126781266,67.02461827877278],[-163.3006070211702,67.06069878577784],[-163.49442889678895,67.08732963618635],[-163.66671500845007,67.1002155315453],[-163.74567947629475,67.12598732226321],[-163.7420901823018,67.21017517194171],[-163.8210546501465,67.35020190150901],[-164.00769793777937,67.53575879467793],[-164.07948381763816,67.58558425673256],[-164.208698401384,67.63884595754956],[-164.53532415474155,67.72561098629986],[-165.05577178371783,67.92147659575595],[-165.13114695756957,67.94209402833027],[-165.3142009512095,68.0168322214122],[-165.3859868310683,68.03487247491474],[-165.68748752647525,68.09071135480353],[-165.87054152011518,68.11046972768726],[-165.97463104591046,68.14053681685816],[-166.0428276317763,68.20067099519994],[-166.23664950739507,68.27283200921008],[-166.39816773707736,68.30719439683396],[-166.68890055050548,68.34241584414843],[-166.83965089820896,68.33726148600485],[-166.7068470204702,68.37162387362872],[-166.37663197311971,68.42230839537395],[-166.30484609326092,68.4618251411414],[-166.2940782112821,68.51079154350542],[-166.22588162541624,68.57608007999079],[-166.1863993914939,68.77881816697166],[-166.21511374343743,68.8793281507715],[-165.57263011870117,68.85269730036299],[-165.32855812718125,68.85785165850658],[-164.8116997921979,68.89393216551164],[-164.52814556675565,68.91798583684836],[-164.2517699292993,68.93087173220731],[-163.97539429184292,68.98499249271492],[-163.82823323813236,69.04083137260372],[-163.7241437123371,69.06660316332162],[-163.5339111307113,69.14134135640356],[-163.24317831728317,69.30628081699815],[-163.16780314343143,69.38531430853307],[-163.14267808548084,69.45318002409023],[-163.14985667346673,69.61296512654125],[-163.00987420774206,69.81312603445033],[-162.7083735123351,69.97033395782957],[-162.47506940279402,70.12410564244641],[-162.34226552505524,70.19025323862238],[-161.879246599966,70.32942090849907],[-161.53467437664375,70.29935381932819],[-161.2870130911309,70.2967766402564],[-161.04294109961097,70.33113902788027],[-160.81322628406284,70.37666919148191],[-160.47942194271943,70.46601139930398],[-160.21381418724187,70.55878984588844],[-160.0558852515525,70.63266897927979],[-159.64670573635735,70.794172201112],[-159.52825903459035,70.8208030515205],[-159.17291892928927,70.87492381202811],[-159.1477938713387,70.83454800657006],[-158.950382701727,70.7967493801838],[-158.65606059430593,70.78644066389663],[-158.411988602786,70.79932655925558],[-158.3653277808778,70.8199439918299],[-158.25047037310372,70.81736681275811],[-158.0315234395344,70.83197082749827],[-157.76950497804978,70.87578287171871],[-157.50389722257222,70.94880294541944],[-157.24905734907347,71.05274916798167],[-157.11984276532763,71.1283464207542],[-156.8111634819348,71.28727246351463],[-156.5670914904149,71.352561],[-156.5240199624996,71.2941449410394],[-156.35532314483143,71.26150067279671],[-156.2153406791068,71.25978255341552],[-156.07535821338212,71.24260135960358],[-156.01792950949508,71.17215846497464],[-155.9210185716857,71.20737991228911],[-155.56567846638467,71.16528598744986],[-155.51183905649054,71.08109813777136],[-155.7056609321093,71.02010489973898],[-155.8312862218622,70.96598413923138],[-155.97844727557273,70.96254790046899],[-155.93537574765747,70.83712518564185],[-155.64464293422932,70.82423929028289],[-155.48671399853998,70.87492381202811],[-155.51183905649054,70.94021234851347],[-155.4544103526035,70.94708482603825],[-155.34314223882237,71.00464182530824],[-155.26058847698476,71.01495054159541],[-155.1923918911189,70.97371567644676],[-155.17803471514713,71.02783643695436],[-155.27494565295652,71.06477600365002],[-155.14932036320363,71.11202428663286],[-155.0739451893519,71.0716484811748],[-155.0847130713307,71.1274873610636],[-155.0308736614366,71.14638667425673],[-154.77603378793788,71.08281625715256],[-154.61451555825556,71.02611831757316],[-154.56785473634736,70.9900378105681],[-154.6073369702697,70.9616888407784],[-154.60374767627675,70.86805133450333],[-154.5714440303403,70.82595740966408],[-154.35249709677095,70.83454800657006],[-154.22687180701806,70.80276279801797],[-154.16944310313102,70.7684004103941],[-153.9971569914699,70.8216621112111],[-153.8894781716817,70.88609158800587],[-153.48747724447244,70.88609158800587],[-153.23981595895958,70.92217209501094],[-153.04958337733376,70.91272243841438],[-152.90601161761617,70.88351440893408],[-152.60451092220922,70.88179628955288],[-152.3855639886399,70.85430637945379],[-152.22404575895757,70.82423929028289],[-152.19174211302112,70.7950312608026],[-152.28506375683756,70.78558160420603],[-152.378385400654,70.71427964988649],[-152.47170704447043,70.68850785916858],[-152.42145692856928,70.60861530794307],[-152.33172457874576,70.61291060639606],[-152.26352799287992,70.59229317382173],[-152.10200976319763,70.58713881567814],[-152.06611682326823,70.56308514434143],[-151.81845553775537,70.54590395052949],[-151.70000883598834,70.55363548774487],[-151.76102683386833,70.5166959210492],[-151.72872318793188,70.49521942878428],[-151.91895576955767,70.47288387682876],[-151.9476701215012,70.45226644425443],[-151.8758842416424,70.43078995198951],[-151.55643707627075,70.4359443101331],[-151.29800790877908,70.40072286281861],[-151.2477577928779,70.37237389302892],[-151.1472575610756,70.37666919148191],[-150.98932862538624,70.45054832487324],[-150.78473886778866,70.46343422023219],[-150.6985958119581,70.44797114580145],[-150.66270287202872,70.47717917528175],[-150.5191311123111,70.48319259311592],[-150.41504158651585,70.4599979814698],[-150.36120217662176,70.40931345972459],[-150.21045182891828,70.4325080713707],[-150.07405865718655,70.43938054889547],[-149.86587960559604,70.51068250321502],[-149.81921878368783,70.49178319002189],[-149.65770055400554,70.50896438383383],[-149.5823253801538,70.49607848847488],[-149.46028938439383,70.5184140404304],[-149.41721785647854,70.49264224971249],[-149.18032445294452,70.48576977218771],[-148.95778822538225,70.42391747446473],[-148.85728799357992,70.42305841477413],[-148.78909140771407,70.4024409821998],[-148.69576976389763,70.42907183260832],[-148.60962670806708,70.42219935508354],[-148.4768228303283,70.35948799766996],[-148.4768228303283,70.3208303115931],[-148.35119754057538,70.30450817747176],[-148.20403648686485,70.3483202216922],[-148.2004471928719,70.2941994611846],[-148.10712554905547,70.34316586354862],[-147.81639273562735,70.27701826737267],[-147.7661426197262,70.21946126810268],[-147.67999956389562,70.19970289521895],[-147.50412415824158,70.20056195490953],[-147.34978451654516,70.18767605955058],[-147.24569499074988,70.21860220841208],[-147.16314122891228,70.1558908509985],[-146.99085511725116,70.14730025409253],[-146.8867655914559,70.18595794016939],[-146.7324259497595,70.17564922388223],[-146.50988972219722,70.18595794016939],[-146.27299631866316,70.17736734326343],[-146.09712091300912,70.14472307502074],[-145.91765621336214,70.14214589594894],[-145.85663821548215,70.16619956728566],[-145.62333410594104,70.08458889667895],[-145.52283387413874,70.07771641915419],[-145.40797646636466,70.03132719586195],[-145.24645823668237,70.0175822408124],[-145.17467235682355,69.99181045009449],[-145.01315412714126,69.98150173380732],[-144.95213612926128,69.95916618185181],[-144.8552251914519,69.9866560919509],[-144.61833178791787,69.96947489813897],[-144.45681355823558,70.03562249431494],[-144.28452744657446,70.04077685245852],[-144.252223800638,70.05795804627046],[-143.95072310523105,70.1000519711097],[-143.88611581335812,70.12066940368402],[-143.5774365299653,70.14644119440193],[-143.42668618226182,70.124964702137],[-143.2544000706007,70.15245461223611],[-143.22209642466424,70.13699153780537],[-142.93854219922198,70.0742801803918],[-142.74830961759616,70.0424949718397],[-142.49705903809036,69.97377019659196],[-142.40373739427395,69.91621319732197],[-142.27093351653514,69.9067635407254],[-141.95866493914937,69.82343475073749],[-141.71459294762946,69.78907236311362],[-141.52794965999658,69.73581066229661],[-141.43103872218722,69.69543485683856],[-141.21209178861787,69.68426708086079],[-141.00391273702735,69.64560939478393],[-141.00391273702735,68.49876470783707],[-141.00391273702735,65.83911590574905],[-141.00391273702735,61.90376346312462],[-140.9967341490415,61.069616503555025],[-141.0003234430344,60.391818407674066],[-141.0003234430344,60.30591243861437],[-140.53371522395224,60.22430176800768],[-140.47269722607226,60.31020773706736],[-139.98814253702537,60.1856440819308],[-139.69740972359722,60.34027482623826],[-139.08722974479744,60.35745602005019],[-139.0836404508045,60.32395269211692],[-139.20208715257152,60.09028845627455],[-139.03339033490334,59.9940737709277],[-138.7964969313693,59.92878523444233],[-138.70317528755288,59.9098859212492],[-138.66369305363054,59.81023499713996],[-138.55960352783526,59.74151022189221],[-137.60485132571324,59.24325560134601],[-137.49717250592505,58.986396753857534],[-137.52588685786856,58.909081381703814],[-137.4469223900239,58.90994044139441],[-137.26386839638394,59.00271888797887],[-136.86545676316763,59.13845031909318],[-136.8259745292453,59.15820869197691],[-136.58190253772537,59.16508116950169],[-136.48858089390893,59.259577735467346],[-136.4670451299513,59.28449046649466],[-136.47422371793718,59.46403394182941],[-136.36654489814896,59.447711807708075],[-136.30193760627606,59.46403394182941],[-136.2337410204102,59.525027179861794],[-136.23733031440315,59.55853050779507],[-136.3521877221772,59.598906313253124],[-136.19066949249492,59.64014117840178],[-135.946597500975,59.66419484973849],[-135.71688268542684,59.73120150560504],[-135.47639998789987,59.7999262808528],[-135.2538637603376,59.70113441643416],[-135.15336352853527,59.62553716366163],[-135.11388129461295,59.62381904428044],[-135.02773823878238,59.563684865938654],[-135.02773823878238,59.47434265811657],[-135.07080976669766,59.45372522554224],[-135.06722047270472,59.42194001699016],[-135.00979176881768,59.38156421153211],[-135.02773823878238,59.34548370452704],[-134.96313094690947,59.28019516804167],[-134.70111248542486,59.247550899798995],[-134.68316601546013,59.19085296021959],[-134.56830860768608,59.128141602806025],[-134.4821655518555,59.128141602806025],[-134.37807602606026,59.03536315622155],[-134.3996117900179,58.976088037570364],[-134.3278259101591,58.963202142211415],[-134.3278259101591,58.91939009799097],[-134.24886144231442,58.85839685995859],[-133.83968192711927,58.727819786987865],[-133.7248245193452,58.62559168380683],[-133.55971699566993,58.5225045209352],[-133.38025229602295,58.428007954969544],[-133.46280605786058,58.385914030130294],[-133.34435935609355,58.27080003159031],[-133.17566253842537,58.150531674906745],[-133.07516230662304,57.99933716936168],[-132.8705725490255,57.842988305673046],[-132.75571514125141,57.704679695486945],[-132.64803632146322,57.60932406983069],[-132.5583039716397,57.50365972788727],[-132.36807139001388,57.34902898357983],[-132.2532139822398,57.21587473153731],[-132.37166068400683,57.095606374853745],[-132.05221351863517,57.0509352709427],[-132.12041010450105,56.89115016849168],[-132.1275886924869,56.87482803437034],[-131.87274881898819,56.80524419943198],[-131.9014631709317,56.752841558305576],[-131.86198093700938,56.703875155941546],[-131.8368558790588,56.60164705276051],[-131.58201600556004,56.61367388842888],[-131.46356930379304,56.54752629225291],[-131.16924719637194,56.44873442783427],[-131.08669343453434,56.407499562685615],[-130.78160344513444,56.36712375722756],[-130.6236745094451,56.26833189280892],[-130.46574557375573,56.23998292301923],[-130.42626333983338,56.140331998909986],[-130.34370957799578,56.12744610355102],[-130.2467986401864,56.09737901438014],[-130.1032268804688,56.11627832757327],[-130.00272664866648,55.99343279181791],[-130.0134945306453,55.91611741966419],[-130.08528041050408,55.82419803277031],[-130.14988770237701,55.76664103350032],[-130.14629840838407,55.71509745206451],[-130.11040546845467,55.682453183821835],[-130.12835193841937,55.5810841403314],[-130.08528041050408,55.49174193250931],[-130.04579817658174,55.452225186741856],[-130.02426241262413,55.33797024789247],[-129.98119088470884,55.28384948738487],[-130.09604829248292,55.197943518325175],[-130.18219134831347,55.09313823607235],[-130.1857806423064,55.06478926628266],[-130.2575665221652,54.98747389412894],[-130.34012028400284,54.92132629795297],[-130.47292416174162,54.83799750796507],[-130.56983509955097,54.790749224982235],[-130.63803168541685,54.778722389313884],[-130.62726380343804,54.73920564354643],[-130.6954603893039,54.7194472706627],[-130.73853191721918,54.75380965828657],[-130.7421212112121,54.80191700096],[-130.78878203312033,54.82253443353433],[-130.79237132711327,54.78473580714807],[-130.83544285502853,54.765836493954936],[-130.90005014690146,54.78129956838568],[-130.94671096880967,54.82597067229672],[-130.96106814478145,54.91874911888118],[-130.9503002628026,54.96771552124521],[-131.0113182606826,54.9960644910349],[-130.98260390873907,55.08454763916639],[-131.01490755467555,55.08970199730996],[-131.0723362585626,55.13780933998339],[-131.0938720225202,55.19278916018159],[-130.986193202732,55.24690992068919],[-130.92517520485205,55.301030681196806],[-130.87133579495793,55.294158203672026],[-130.88210367693677,55.3585876804668],[-130.9215859108591,55.42903057509574],[-130.87133579495793,55.53383585734856],[-130.9036394408944,55.69705719856198],[-130.9395323808238,55.75461419783197],[-131.0938720225202,55.89549998708986],[-131.1728364903649,55.9427482700727],[-131.21590801828017,55.98398313522134],[-131.24103307623076,55.95477510574105],[-131.15847931439313,55.901513404924046],[-131.06874696456964,55.8284933312233],[-131.04362190661905,55.76664103350032],[-130.9646574387744,55.6893256613466],[-130.92876449884497,55.57678884187841],[-130.986193202732,55.539849275182746],[-130.9933717907179,55.471983559625585],[-130.9682467327673,55.39295006809067],[-130.92876449884497,55.339688367273666],[-130.96106814478145,55.31563469593695],[-131.0005503787038,55.398104426234255],[-131.0292647306473,55.40841314252141],[-131.01849684866846,55.34827896417963],[-131.03285402464024,55.28470854707547],[-131.16206860838608,55.19708445863458],[-131.21231872428723,55.19278916018159],[-131.2984617801178,55.23488308502084],[-131.23026519425193,55.297594442434416],[-131.19078296032959,55.36030579984799],[-131.20155084230842,55.39295006809067],[-131.2912831921319,55.38435947118471],[-131.25539025220252,55.32250717346173],[-131.28410460414602,55.28642666645666],[-131.40255130591305,55.23831932378323],[-131.42767636386364,55.23917838347383],[-131.51023012570124,55.33195683005829],[-131.54971235962358,55.29329914398143],[-131.63944470944708,55.339688367273666],[-131.70046270732706,55.35515144170441],[-131.74353423524235,55.398104426234255],[-131.84403446704465,55.456520485194844],[-131.84403446704465,55.52180902168021],[-131.73276635326351,55.54843987208871],[-131.65380188541883,55.59225191630915],[-131.72558776527765,55.63262772176721],[-131.70046270732706,55.69705719856198],[-131.73276635326351,55.73056052649525],[-131.6502125914259,55.768359152881516],[-131.63944470944708,55.78897658545584],[-131.70405200132,55.78983564514644],[-131.71481988329882,55.85340606225061],[-131.68969482534825,55.89034562894628],[-131.8368558790588,55.875741614206134],[-131.81532011510114,55.837083928129275],[-131.7758378811788,55.82333897307973],[-131.77942717517175,55.791553764527634],[-131.82608799707995,55.7185336908269],[-131.8296772910729,55.66699010939108],[-131.89787387693877,55.60427875197752],[-131.96248116881168,55.61544652795527],[-131.93735611086112,55.53555397672976],[-131.9732490507905,55.498614410034094],[-132.05939210662106,55.543285513945136],[-132.14912445644455,55.56218482713827],[-132.19937457234573,55.633486781457805],[-132.2244996302963,55.701352497014966],[-132.28192833418333,55.76148667535675],[-132.2065531603316,55.736573944329436],[-132.181428102381,55.80100342112421],[-132.08451716457165,55.83278862967629],[-132.04144563665636,55.95907040419404],[-132.07015998859987,56.04669449263491],[-132.03426704867047,56.09566089499894],[-132.01273128471283,56.07762064149641],[-131.96965975679757,56.11370114850148],[-131.94453469884698,56.19273464003639],[-132.01990987269872,56.18328498343982],[-132.03426704867047,56.133459521385205],[-132.10246363453632,56.107687730667294],[-132.17783880838806,56.05528508954089],[-132.13117798647986,55.95821134450344],[-132.1598923384234,55.92213083749837],[-132.2783390401904,55.92470801657015],[-132.32141056810568,55.887768449874486],[-132.31064268612687,55.86199665915659],[-132.37166068400683,55.84996982348822],[-132.39678574195742,55.879177852968525],[-132.38242856598566,55.936734852238516],[-132.4506251518515,55.956493225122244],[-132.4936966797668,56.06645286551864],[-132.60855408754088,56.0518488507785],[-132.60855408754088,56.010613985629846],[-132.70905431934318,56.11198302912028],[-132.71982220132202,56.217647371063705],[-132.69110784937848,56.23912386332863],[-132.601375499555,56.23998292301923],[-132.5762504416044,56.29668086259862],[-132.5295896196962,56.33877478743787],[-132.421910799908,56.349083503725026],[-132.36448209602094,56.28723120600205],[-132.33935703807037,56.34135196650966],[-132.39319644796447,56.48567399452993],[-132.36089280202802,56.488251173601725],[-132.2532139822398,56.449593487524865],[-132.23885680626805,56.398908965779654],[-132.19937457234573,56.37141905568055],[-132.17783880838806,56.391177428564276],[-132.21014245432454,56.45732502474024],[-132.2891069221692,56.48739211391113],[-132.35730350803507,56.52862697905978],[-132.36807139001388,56.57415714266142],[-132.40755362393622,56.585324918639174],[-132.4506251518515,56.56384842637425],[-132.4865180917809,56.6059423512135],[-132.56907185361854,56.633432261312606],[-132.58701832358324,56.68239866367662],[-132.5511253836538,56.714183872228716],[-132.5583039716397,56.757136856758564],[-132.6372684394844,56.781190528095266],[-132.77007231722317,56.837888467674674],[-132.81673313913137,56.89716358632586],[-132.8705725490255,56.92551255611555],[-132.9172333709337,56.99337827167271],[-132.81314384513843,57.030317838368376],[-132.85262607906077,57.08014330042299],[-132.9172333709337,57.039767494964934],[-132.98542995679955,57.05523056939569],[-132.99260854478544,57.03203595774957],[-133.07516230662304,57.081861419804184],[-133.18643042040418,57.088733897328964],[-133.22591265432652,57.1368412400024],[-133.3228235921359,57.11278756866568],[-133.51664546775467,57.17807610515105],[-133.5453598196982,57.24250558194581],[-133.49152040980408,57.30521693935938],[-133.42691311793118,57.28631762616625],[-133.30846641616415,57.28975386492864],[-133.2761627702277,57.330988730077294],[-133.35512723807238,57.33356590914909],[-133.46998464584647,57.36449205801057],[-133.46280605786058,57.39455914718147],[-133.52741334973348,57.50194160850607],[-133.48075252782527,57.57152544344443],[-133.56689558365582,57.562934846538454],[-133.62073499354992,57.57925698065979],[-133.67816369743696,57.62478714426143],[-133.6530386394864,57.71327029239292],[-133.5812527596276,57.714988411774115],[-133.52382405574053,57.68406226291262],[-133.40537735397353,57.66344483033829],[-133.17925183241832,57.58698851787517],[-133.16130536245362,57.59987441323412],[-133.2510377122771,57.649699875288746],[-133.3228235921359,57.666022009410085],[-133.55253840768407,57.773404470734704],[-133.57048487764877,57.859310439794385],[-133.59919922959227,57.86016949948498],[-133.63509216952167,57.83525676845767],[-133.63868146351462,57.79058566454664],[-133.69611016740166,57.79402190330903]]],[[[-133.0249121907219,56.22967420673206],[-132.9997871327713,56.2752043703337],[-132.9638941928419,56.25458693775937],[-132.88492972499725,56.17125814777147],[-132.84903678506785,56.11284208881088],[-132.89569760697606,56.09995619345193],[-132.9710727808278,56.15235883457834],[-133.00337642676425,56.15579507334073],[-133.0249121907219,56.22967420673206]]],[[[-133.06798371863718,56.356815040940404],[-133.00337642676425,56.430694174331734],[-132.9280012529125,56.456465965049645],[-132.82032243312432,56.43928477123771],[-132.73417937729377,56.45818408443084],[-132.63367914549144,56.42210357742576],[-132.6193219695197,56.391177428564276],[-132.68392926139262,56.345647264962636],[-132.66239349743495,56.2752043703337],[-132.71982220132202,56.25888223621236],[-132.87775113701136,56.23998292301923],[-132.960304898849,56.29582180290802],[-133.04644795467954,56.32073453393534],[-133.06798371863718,56.356815040940404]]],[[[-133.88275345503453,57.300921640906395],[-133.82891404514044,57.32239813317132],[-133.7786639292393,57.29404916338163],[-133.87557486704867,57.26741831297312],[-133.88275345503453,57.300921640906395]]],[[[-134.17707556245563,58.15826321212211],[-134.18784344443444,58.08352501904018],[-134.09811109461094,58.01909554224541],[-134.09093250662505,57.97442443833438],[-134.0155573327733,57.92975333442334],[-133.96530721687216,57.85501514134141],[-133.90428921899218,57.807766858358576],[-133.89711063100629,57.685780382293814],[-133.82173545715455,57.634236800858005],[-133.8073782811828,57.578397920969195],[-133.83968192711927,57.576679801588],[-133.85762839708397,57.617055607046055],[-133.9940215688157,57.720142769917686],[-134.0299145087451,57.81893463433633],[-134.09811109461094,57.850719842888424],[-134.1304147405474,57.89625000649005],[-134.20578991439913,57.89625000649005],[-134.1124682705827,57.80948497773977],[-134.09811109461094,57.78027694825947],[-134.14477191651915,57.76051857537574],[-134.01914662676626,57.65657235281351],[-133.93659286492863,57.61447842797428],[-133.94377145291452,57.56121672715726],[-133.85762839708397,57.46414298211981],[-133.92582498294982,57.469297340263395],[-133.87198557305572,57.381673251822505],[-133.87198557305572,57.358478640176386],[-133.96171792287922,57.30521693935938],[-134.033503802738,57.327552491314904],[-134.094521800618,57.32669343162431],[-134.08016462464624,57.29748540214402],[-134.15553979849798,57.208143194321934],[-134.2919329702297,57.1368412400024],[-134.37807602606026,57.11536474773747],[-134.38525461404612,57.08701577794777],[-134.49652272782726,57.03117689805897],[-134.60061225362253,57.033754077130766],[-134.63291589955898,57.11021038959389],[-134.64727307553073,57.22618344782447],[-134.571897901679,57.29490822307223],[-134.5180584917849,57.314666595955956],[-134.57548719567194,57.34129744636445],[-134.57907648966489,57.400572565015636],[-134.52882637376374,57.40572692315922],[-134.48575484584845,57.37222359522595],[-134.4642190818908,57.391981968109675],[-134.6077908416084,57.51310938448384],[-134.61138013560134,57.562934846538454],[-134.67598742747427,57.61447842797428],[-134.69393389743897,57.684921322603216],[-134.7334161313613,57.72186088929888],[-134.70470177941777,57.8292433506235],[-134.74777330733306,57.89882718556184],[-134.75854118931187,57.98043785616855],[-134.7980234232342,58.05861228801287],[-134.78366624726246,58.09641091439913],[-134.85545212712125,58.17630346562464],[-134.91647012500124,58.2149611517015],[-134.9487737709377,58.28110874787747],[-134.97030953489534,58.36787377662776],[-134.95595235892358,58.40996770146701],[-134.8052020112201,58.32148455333552],[-134.7800769532695,58.28110874787747],[-134.72982683736836,58.27337721066209],[-134.7154696613966,58.22355174860748],[-134.70111248542486,58.1616994508845],[-134.63291589955898,58.162558510575096],[-134.55754072570724,58.19520277881777],[-134.5180584917849,58.175444405934044],[-134.4462726119261,58.17372628655285],[-134.37089743807437,58.14881355552555],[-134.17707556245563,58.15826321212211]]],[[[-135.72765056740568,58.36529659755597],[-135.67022186351863,58.38075967198671],[-135.60202527765276,58.37474625415253],[-135.54459657376572,58.3300751502415],[-135.648686099561,58.32492079209791],[-135.72765056740568,58.36529659755597]]],[[[-136.15477655256552,58.59724271401713],[-136.12247290662907,58.60926954968549],[-136.09734784867848,58.55858502794027],[-136.15477655256552,58.59724271401713]]],[[[-136.15477655256552,58.28368592694926],[-136.04709773277733,58.31890737426373],[-136.0363298507985,58.27337721066209],[-136.09375855468554,58.25705507654075],[-136.15477655256552,58.28368592694926]]],[[[-136.3701341921419,57.83182052969529],[-136.45986654196543,57.854156081650814],[-136.484991599916,57.89625000649005],[-136.57472394973948,57.927176155351546],[-136.55677747977478,58.0766525415154],[-136.49934877588774,58.105001511305105],[-136.47063442394423,58.09726997408973],[-136.36654489814896,58.14881355552555],[-136.35577701617015,58.192625599745995],[-136.39884854408544,58.27165909128091],[-136.28399113631136,58.269940971899715],[-136.28399113631136,58.22355174860748],[-136.24091960839607,58.17200816717167],[-136.14041937659374,58.224410808298074],[-136.0363298507985,58.21925645015449],[-135.97531185291854,58.20207525634255],[-135.91429385503855,58.2441691811818],[-135.78507927129272,58.28712216571165],[-135.73482915539154,58.239873882728816],[-135.587668101681,58.214102092010904],[-135.4979357518575,58.16857192840928],[-135.54100727977277,58.101565272542715],[-135.65227539355394,58.036276736057346],[-135.63791821758218,57.99418281121811],[-135.5948466896669,57.98988751276512],[-135.56613233772336,58.04143109420093],[-135.4512749299493,58.13420954078539],[-135.39743552005518,58.14451825707256],[-135.27539952429524,58.09726997408973],[-135.11029200062,58.088679377183766],[-135.07080976669766,58.06118946708466],[-134.9667202409024,58.04744451203511],[-134.9128808310083,57.97957879647795],[-134.92723800698008,57.92202179720796],[-135.00620247482473,57.8842231708217],[-135.1390063525635,57.92631709566095],[-135.1748992924929,57.91944461813617],[-135.13182776457762,57.885082230512296],[-135.06722047270472,57.869619156081555],[-134.9487737709377,57.805189679286784],[-135.10670270662706,57.76825011259112],[-135.02414894478943,57.743337381563805],[-134.94159518295183,57.76395481413813],[-134.91647012500124,57.682344143531424],[-134.8662200091001,57.62306902488024],[-134.8231484811848,57.50022348912488],[-134.87339859708595,57.46414298211981],[-135.02414894478943,57.45469332552325],[-135.08516694266942,57.46500204181041],[-135.24309587835876,57.546612712417115],[-135.47639998789987,57.63165962178621],[-135.57331092570925,57.67461260631606],[-135.65227539355394,57.65227705436054],[-135.6845790394904,57.67718978538784],[-135.69893621546214,57.649699875288746],[-135.59125739567395,57.60245159230591],[-135.51229292782926,57.595579114781145],[-135.587668101681,57.56894826437264],[-135.56613233772336,57.54747177210771],[-135.56613233772336,57.485619474384734],[-135.59843598365984,57.442666489854886],[-135.70970409744098,57.36792829677296],[-135.8927580910809,57.408304102231014],[-135.89634738507385,57.44094837047369],[-136.04709773277733,57.51396844417444],[-136.11888361263613,57.59128381632816],[-136.1619551405514,57.558639548085466],[-136.23015172641726,57.595579114781145],[-136.26604466634666,57.66344483033829],[-136.25168749037488,57.684921322603216],[-136.3162947822478,57.758800455994546],[-136.30911619426195,57.77941788856887],[-136.3701341921419,57.83182052969529]]],[[[-133.32641288612885,57.011418525175245],[-133.10387665856658,57.00540510734106],[-132.9961978387784,56.94183469023689],[-132.94594772287724,56.87139179560795],[-132.9351798408984,56.823284452934516],[-132.90287619496195,56.80352608005079],[-132.82032243312432,56.79407642345423],[-132.76289372923728,56.752841558305576],[-132.74494725927258,56.71332481253812],[-132.62650055750555,56.668653708627076],[-132.5941969115691,56.61367388842888],[-132.540357501675,56.584465858948576],[-132.65162561545614,56.5518215907059],[-132.72341149531493,56.51574108370083],[-132.81673313913137,56.495123651126505],[-132.8741618430184,56.50886860617605],[-132.98542995679955,56.51230484493844],[-133.13976959849597,56.53292227751277],[-133.12182312853128,56.491687412364115],[-133.2043768903689,56.44787536814367],[-133.3479486500865,56.469351860408594],[-133.4125559419594,56.49426459143591],[-133.45921676386763,56.45388878597785],[-133.51305617376173,56.43670759216592],[-133.60278852358522,56.43498947278472],[-133.6638065214652,56.44787536814367],[-133.674574403444,56.5226135612256],[-133.71405663736635,56.550103471324704],[-133.82173545715455,56.495123651126505],[-133.77507463524634,56.47021092009919],[-133.78225322323223,56.39289554794547],[-133.86480698506983,56.39031836887368],[-133.87198557305572,56.36368751846517],[-133.83609263312633,56.31987547424474],[-133.87557486704867,56.276063430024294],[-133.88275345503453,56.222801729207276],[-133.94377145291452,56.17984874467744],[-133.92941427694277,56.146345416744154],[-133.96171792287922,56.091365596545955],[-133.9976108628086,56.0819159399494],[-134.0873432126321,56.094801835308346],[-134.13759332853328,56.00631868717686],[-134.19143273842738,56.02264082129821],[-134.23450426634264,56.06731192520924],[-134.25962932429323,56.121432685716854],[-134.26321861828617,56.21507019199191],[-134.29911155821557,56.28980838507384],[-134.2919329702297,56.35423786186861],[-134.24168285432853,56.395472727017264],[-134.25245073630737,56.44443912938128],[-134.19861132641324,56.53120415813157],[-134.24168285432853,56.55525782946829],[-134.32064732217322,56.55439876977769],[-134.30270085220852,56.62054636595366],[-134.3744867320673,56.668653708627076],[-134.40320108401085,56.73308318542185],[-134.39602249602495,56.77002275211751],[-134.41396896598965,56.84819718396183],[-134.35295096810967,56.89286828787287],[-134.29552226422263,56.907472302613016],[-134.27039720627204,56.93582127240272],[-134.15195050450504,56.93496221271212],[-134.1483612105121,56.95729776466764],[-134.04786097870976,56.92293537704376],[-134.00837874478742,56.85163342272422],[-133.94377145291452,56.80524419943198],[-133.83250333913338,56.80352608005079],[-133.80019969319693,56.78548582654825],[-133.76430675326753,56.807821378503775],[-133.86839627906278,56.84562000489004],[-133.915057100971,56.914344780137796],[-133.92223568895687,56.96159306312062],[-134.04786097870976,57.02945877867778],[-134.00837874478742,57.07498894227942],[-133.88634274902748,57.09732449423494],[-133.70328875538755,57.065539285682846],[-133.61355640556405,57.05780774846748],[-133.44485958789588,57.020009122081206],[-133.32641288612885,57.011418525175245]]],[[[-135.35077469814698,59.01990008179081],[-135.29693528825288,58.95890684375843],[-135.29693528825288,58.91939009799097],[-135.33282822818228,58.944302829018284],[-135.35077469814698,59.01990008179081]]],[[[-159.32007998299983,54.89727262661626],[-159.32366927699275,54.92819877547774],[-159.27700845508454,54.948816208052065],[-159.20522257522575,54.927339715787156],[-159.2375262211622,54.87665519404193],[-159.30572280702805,54.86376929868298],[-159.32007998299983,54.89727262661626]]],[[[-159.46006244872447,54.948816208052065],[-159.41699092080918,55.02183628175281],[-159.45647315473153,55.06135302752027],[-159.3452050409504,55.059634908139074],[-159.33084786497864,54.97458799876998],[-159.42775880278802,54.9419437305273],[-159.46006244872447,54.948816208052065]]],[[[-159.58568773847736,54.827688791677915],[-159.51031256462562,54.78903110560104],[-159.51390185861857,54.75982307612075],[-159.5964556204562,54.75638683735836],[-159.58568773847736,54.827688791677915]]],[[[-159.6610629123291,55.1902119811098],[-159.60004491444914,55.172171727607264],[-159.58209844448444,55.214265652446514],[-159.52108044660446,55.25378239821397],[-159.50313397663976,55.23488308502084],[-159.53184832858327,55.18505762296623],[-159.4995446826468,55.17388984698846],[-159.49595538865387,55.1360912206022],[-159.53184832858327,55.08368857947579],[-159.48518750667506,55.05791678875788],[-159.51031256462562,55.04159465463654],[-159.5713305625056,55.06049396782967],[-159.5785091504915,55.04245371432714],[-159.6502950303503,55.049326191851904],[-159.6610629123291,55.1902119811098]]],[[[-159.81899184801847,54.820816314153134],[-159.74361667416673,54.84229280641806],[-159.7041344402444,54.81652101570015],[-159.77592032010318,54.794185463744626],[-159.81899184801847,54.820816314153134]]],[[[-159.84770619996198,55.05533960968609],[-159.81540255402552,55.08884293761936],[-159.7328487921879,55.124064384933845],[-159.71490232222322,55.09313823607235],[-159.79745608406083,55.06049396782967],[-159.82975972999728,55.010668505775044],[-159.84770619996198,55.05533960968609]]],[[[-160.11331395543954,55.333674949439484],[-160.0630638395384,55.343124606036056],[-160.0451173695737,55.307044099030975],[-160.11331395543954,55.333674949439484]]],[[[-160.24970712717126,54.929916894858934],[-160.13126042540424,55.014104744537434],[-160.07742101551014,55.03729935618355],[-160.09536748547484,55.052762430614294],[-160.17433195331952,55.052762430614294],[-160.18868912929128,55.11805096709966],[-160.1097246614466,55.16100395162951],[-160.01281372363724,55.12320532524325],[-160.01640301763015,55.155849593485925],[-160.0630638395384,55.20052069739697],[-159.9553850197502,55.1893529214192],[-159.89077772787726,55.287285726147246],[-159.84770619996198,55.26752735326352],[-159.85488478794787,55.23058778656785],[-159.88718843388432,55.22886966718666],[-159.90513490384902,55.1644401903919],[-159.86206337593376,55.148977115961145],[-159.86206337593376,55.17732608575085],[-159.81540255402552,55.17818514544145],[-159.82975972999728,55.12664156400564],[-159.86924196391962,55.094856355453544],[-159.9482064317643,55.105165071740714],[-159.95179572575725,55.066507385663854],[-160.05229595755958,55.00551414763147],[-160.11690324943248,54.98489671505715],[-160.22817136321362,54.86376929868298],[-160.24970712717126,54.929916894858934]]],[[[-160.34661806498065,55.426453396023945],[-160.26765359713596,55.462533903029026],[-160.13843901339013,55.45050706736066],[-160.14202830738307,55.38350041149411],[-160.32149300703006,55.39380912778127],[-160.34661806498065,55.426453396023945]]],[[[-160.8562978119781,55.31821187500874],[-160.79886910809108,55.381782292112916],[-160.70913675826756,55.40325878437784],[-160.64452946639466,55.38350041149411],[-160.65170805438052,55.343983665726654],[-160.61581511445112,55.34827896417963],[-160.57274358653586,55.38865476963768],[-160.51890417664174,55.36116485953859],[-160.42558253282533,55.33882930758307],[-160.33226088900886,55.36030579984799],[-160.3071358310583,55.3036078602686],[-160.33943947699476,55.252064278832776],[-160.3896895928959,55.28642666645666],[-160.4686540607406,55.28900384552844],[-160.51890417664174,55.30876221841217],[-160.52967205862058,55.343124606036056],[-160.56556499854997,55.332815889748886],[-160.56556499854997,55.2735407710977],[-160.52608276462763,55.256359577285764],[-160.4866005307053,55.18162138420384],[-160.52608276462763,55.130077802768014],[-160.65529734837347,55.16014489193891],[-160.69119028830286,55.210829413684124],[-160.7557975801758,55.19536633925338],[-160.8204048720487,55.11805096709966],[-160.80604769607694,55.167876429154276],[-160.84194063600634,55.204815995849955],[-160.84194063600634,55.294158203672026],[-160.8562978119781,55.31821187500874]]],[[[-161.42699555685556,55.216842831518306],[-161.33008461904618,55.2194200105901],[-161.34444179501793,55.15842677255772],[-161.43776343883437,55.19880257801577],[-161.42699555685556,55.216842831518306]]],[[[-161.69260331233312,55.217701891208904],[-161.65671037240372,55.24433274161741],[-161.52749578865786,55.25120521914218],[-161.55979943459434,55.207393174921734],[-161.69260331233312,55.19880257801577],[-161.69260331233312,55.217701891208904]]],[[[-161.90437165791656,55.117191907409065],[-161.8900144819448,55.16100395162951],[-161.82899648406482,55.17818514544145],[-161.73926413424132,55.16186301132011],[-161.69619260632606,55.136950280292794],[-161.57056731657315,55.10086977328773],[-161.5490315526155,55.06564832597326],[-161.65671037240372,55.10344695235952],[-161.73926413424132,55.05448054999549],[-161.83976436604365,55.11805096709966],[-161.879246599966,55.085406698856985],[-161.90437165791656,55.117191907409065]]],[[[-162.43558716887168,54.92905783516834],[-162.3279083490835,54.985755774747744],[-162.23458670526705,54.962561163101626],[-162.23458670526705,54.891259208782074],[-162.2740689391894,54.84572904518045],[-162.3207297610976,54.827688791677915],[-162.41764069890698,54.87751425373253],[-162.43558716887168,54.92905783516834]]],[[[-162.83399880208802,54.45056158750586],[-162.83040950809507,54.494373631726305],[-162.58633751657516,54.44798440843408],[-162.5181409307093,54.41448108050079],[-162.42481928689284,54.41448108050079],[-162.36021199501994,54.39042740916409],[-162.43199787487873,54.37066903628035],[-162.46789081480813,54.34232006649066],[-162.5468552826528,54.37668245411453],[-162.6078732805328,54.368950916899166],[-162.71914139431394,54.400736125451246],[-162.78374868618684,54.37582339442393],[-162.86271315403152,54.42478979678796],[-162.83399880208802,54.45056158750586]]],[[[-163.17139243742437,55.42903057509574],[-163.1211423215232,55.42817151540514],[-163.1390887914879,55.39552724716246],[-163.17139243742437,55.42903057509574]]],[[[-164.865539202092,54.20658863537635],[-164.82246767417672,54.22548794856948],[-164.76503897028968,54.21002487413874],[-164.84041414414142,54.178239665586645],[-164.865539202092,54.20658863537635]]],[[[-165.22087930739306,54.10178335312352],[-165.14191483954838,54.130991382603824],[-165.02346813778138,54.12154172600725],[-164.9373250819508,54.13700480043799],[-164.9193786119861,54.116387367863666],[-164.95168225792256,54.077729681786806],[-165.045003901739,54.06656190580905],[-165.21370071940717,54.08975651745517],[-165.22087930739306,54.10178335312352]]],[[[-165.48289776887768,54.075152502715014],[-165.26754012930127,54.09576993528934],[-165.23523648336482,54.065702846118455],[-165.2890758932589,54.03821293601935],[-165.33573671516714,54.06999814457144],[-165.4577727109271,54.06656190580905],[-165.48289776887768,54.075152502715014]]],[[[-165.57621941269412,54.04164917478174],[-165.51520141481413,54.06656190580905],[-165.49007635686357,54.035635756947556],[-165.55468364873647,54.023608921279205],[-165.57621941269412,54.04164917478174]]],[[[-165.6838982324823,54.249541619906196],[-165.6372374105741,54.297648962579615],[-165.58698729467292,54.284763067220666],[-165.52238000280002,54.30022614165141],[-165.47930847488473,54.282185888148874],[-165.55827294272942,54.25383691835917],[-165.51161212082118,54.21260205321052],[-165.403933301033,54.21260205321052],[-165.40034400704005,54.17738060589605],[-165.48289776887768,54.17995778496784],[-165.5475050607506,54.11209206941068],[-165.6300588225882,54.132709501985005],[-165.6372374105741,54.19971615785157],[-165.57980870668706,54.22978324702247],[-165.6121123526235,54.246964440834404],[-165.66954105651055,54.22892418733187],[-165.6838982324823,54.249541619906196]]],[[[-166.10025633566335,54.14387727796277],[-166.08230986569865,54.174803426824255],[-165.98180963389632,54.22119265011649],[-165.87413081410813,54.21603829197291],[-165.86336293212932,54.166212829918294],[-165.7915770522705,54.17136718806188],[-165.74132693636935,54.158481292702916],[-165.71261258442584,54.120682666316654],[-165.6659517625176,54.13185044229441],[-165.6731303505035,54.09662899497994],[-165.76645199431994,54.065702846118455],[-165.80952352223522,54.075152502715014],[-165.87413081410813,54.036494816638154],[-165.89566657806577,54.06054848797487],[-165.98539892788926,54.06140754766547],[-166.04641692576925,54.04422635385353],[-166.11102421764215,54.12240078569785],[-166.10025633566335,54.14387727796277]]],[[[-166.19716727347273,53.984951235202345],[-166.17204221552214,53.997837130561294],[-166.07513127771276,53.969488160771604],[-166.18998868548684,53.96003850417503],[-166.19716727347273,53.984951235202345]]],[[[-151.89024141761416,58.21925645015449],[-151.86152706567066,58.25791413623135],[-151.78974118581183,58.246746360253596],[-151.81845553775537,58.18403500284002],[-151.87229494764946,58.169430988099876],[-151.89024141761416,58.21925645015449]]],[[[-152.0732954112541,58.924544456134555],[-152.03022388333883,58.94859812747127],[-151.9548487094871,58.914235739847385],[-152.0732954112541,58.91251762046619],[-152.0732954112541,58.924544456134555]]],[[[-152.35684963669635,58.91509479953798],[-152.3065995207952,58.96234308252082],[-152.24199222892227,58.9382894111841],[-152.15943846708467,58.93485317242171],[-152.27788516885167,58.90650420263202],[-152.35684963669635,58.91509479953798]]],[[[-153.41928065860657,58.06376664615645],[-153.31519113281132,58.140222958619574],[-153.26135172291723,58.14537731676316],[-153.1680300791008,58.088679377183766],[-153.1500836091361,58.1058605709957],[-153.22545878298783,58.1616994508845],[-153.20392301903019,58.208088674176736],[-153.17161937309373,58.2166792710827],[-153.07470843528435,58.19520277881777],[-152.9993332614326,58.211524912939126],[-153.10342278722786,58.25791413623135],[-153.04599408334082,58.30602147890478],[-152.94190455754557,58.27939062849627],[-152.88806514765147,58.28282686725866],[-152.93831526355262,58.330934209932096],[-152.89524373563734,58.34553822467224],[-152.82345785577854,58.3283570308603],[-152.7732077398774,58.36701471693716],[-152.8378150317503,58.37216907508075],[-152.88447585365853,58.40051804487044],[-152.81268997379973,58.40309522394223],[-152.73372550595505,58.46065222321222],[-152.6116895101951,58.47611529764296],[-152.65476103811037,58.50618238681386],[-152.6655289200892,58.56459844577445],[-152.56861798227982,58.621296385353844],[-152.54349292432923,58.594665534945335],[-152.3532603427034,58.63847757916578],[-152.32813528475285,58.6324641613316],[-152.3712068126681,58.531095117841176],[-152.41786763457634,58.51563204341042],[-152.51118927839278,58.42714889527895],[-152.49324280842808,58.3549878812688],[-152.36402822468224,58.36443753786537],[-152.35684963669635,58.42371265651656],[-152.27788516885167,58.41598111930118],[-152.20250999499993,58.3549878812688],[-152.13072411514113,58.39622274641745],[-152.08765258722588,58.36787377662776],[-152.14867058510583,58.26736379282792],[-152.11636693916938,58.24846447963479],[-152.08406329323293,58.31031677735777],[-151.98715235542355,58.350692582815824],[-151.96202729747296,58.3292160905509],[-151.9727951794518,58.23042422613226],[-152.08047399923998,58.15396791366912],[-152.19533140701407,58.17372628655285],[-152.2348136409364,58.243310121491206],[-152.31018881478815,58.220974569535684],[-152.26352799287992,58.13592766016659],[-152.3424924607246,58.11874646635465],[-152.48247492644924,58.12991424233242],[-152.53990363033628,58.08352501904018],[-152.56861798227982,58.11445116790166],[-152.56143939429393,58.17802158500584],[-152.59733233422332,58.17973970438703],[-152.62963598015978,58.081806899658986],[-152.6583503321033,58.06118946708466],[-152.76961844588445,58.046585452344516],[-152.76243985789856,58.01480024379242],[-152.8198685617856,57.99590093059929],[-152.9813867914679,57.98473315462154],[-153.29006607486073,58.050021691106906],[-153.36544124871247,58.03885391512914],[-153.41928065860657,58.06376664615645]]],[[[-154.1586752211522,56.691848320273195],[-154.04740710737107,56.730506006350055],[-154.01869275542754,56.6892711412014],[-154.15149663316632,56.681539603986025],[-154.1586752211522,56.691848320273195]]],[[[-154.36326497874978,56.542371934109326],[-154.291479098891,56.595633634926344],[-154.2232825130251,56.61281482873828],[-154.18380027910277,56.60336517214171],[-154.09406792927928,56.617969186881865],[-154.07612145931458,56.58360679925798],[-154.00792487344873,56.5518215907059],[-153.8787102897029,56.565566545755445],[-153.88588887768876,56.533781337203365],[-153.95408546355463,56.507150486794856],[-154.11919298722987,56.50199612865127],[-154.23405039500395,56.49082835267352],[-154.348907802778,56.51230484493844],[-154.36326497874978,56.542371934109326]]],[[[-154.77962308193082,57.366210177391764],[-154.707837202072,57.38081419213191],[-154.69348002610025,57.44610272861728],[-154.62887273422734,57.51053220541205],[-154.53914038440382,57.539740234892335],[-154.52119391443912,57.5775388612786],[-154.46735450454503,57.57066638375383],[-154.34531850878508,57.630800562095615],[-154.22687180701806,57.6617267109571],[-154.08688934129339,57.64884081559815],[-153.98279981549814,57.649699875288746],[-153.98279981549814,57.553485189941895],[-153.8894781716817,57.504518787577865],[-153.87512099570995,57.543176473654725],[-153.81410299782996,57.588706637256365],[-153.8787102897029,57.62994150240502],[-153.85717452574525,57.65141799466994],[-153.66694194411943,57.639391159001576],[-153.67770982609824,57.669458248172475],[-153.8643531137311,57.70725687455874],[-153.932549699597,57.70382063579635],[-153.93613899358994,57.81292121650216],[-153.8248708798088,57.86532385762857],[-153.72078135401352,57.89023658865588],[-153.64899547415473,57.87992787236871],[-153.57003100631005,57.83182052969529],[-153.5484952423524,57.717565590845894],[-153.4946558324583,57.72873336682366],[-153.46235218652185,57.79488096299963],[-153.48029865648655,57.84212924598245],[-153.35467336673366,57.80948497773977],[-153.32954830878307,57.849860783197826],[-153.46235218652185,57.88078693205931],[-153.5377273603736,57.930612394113936],[-153.512602302423,57.9684110205002],[-153.45158430454302,57.96325666235661],[-153.2685303109031,57.888518469274686],[-153.23622666496664,57.891954708037076],[-153.12854784517845,57.85673326072259],[-153.0890656112561,57.86532385762857],[-153.20033372503724,57.92975333442334],[-153.27211960489603,57.958961363903626],[-153.29724466284662,57.99675999028989],[-153.23622666496664,57.99675999028989],[-153.12854784517845,57.946934528235275],[-153.02445831938317,57.95724324452243],[-152.87729726567264,57.93233051349513],[-152.85217220772208,57.97442443833438],[-152.72295762397624,57.98731033369333],[-152.75167197591975,57.93318957318573],[-152.8916544416444,57.84212924598245],[-152.91677949959498,57.77082729166291],[-152.84858291372913,57.739901142801415],[-152.84858291372913,57.82151181340812],[-152.7911542098421,57.85845138010379],[-152.73372550595505,57.81635745526454],[-152.71577903599035,57.855874201031995],[-152.65476103811037,57.8833641111311],[-152.63681456814567,57.91858555844557],[-152.58656445224452,57.927176155351546],[-152.55067151231512,57.90054530494304],[-152.47170704447043,57.962397602666016],[-152.41068904659045,57.969270080190796],[-152.42504622256223,57.930612394113936],[-152.3245459907599,57.916867439064376],[-152.36402822468224,57.8842231708217],[-152.4035104586046,57.901404364633635],[-152.4681177504775,57.888518469274686],[-152.39992116461164,57.85759232041319],[-152.41786763457634,57.81549839557394],[-152.3496710487105,57.834397708767085],[-152.31018881478815,57.79058566454664],[-152.21327787697876,57.79144472423724],[-152.2994209328093,57.7459145606356],[-152.35684963669635,57.7742635304253],[-152.4429926925269,57.77598164980648],[-152.49683210242102,57.734746784657844],[-152.43940339853398,57.727015247442466],[-152.4681177504775,57.681485083840826],[-152.37479610666105,57.67461260631606],[-152.4681177504775,57.598156293852924],[-152.3855639886399,57.61276030859308],[-152.33890316673165,57.65313611405114],[-152.32095669676696,57.62306902488024],[-152.15225987909878,57.61963278611785],[-152.16302776107761,57.58441133880338],[-152.29224234482342,57.517404682936814],[-152.33890316673165,57.42290811697116],[-152.47529633846338,57.434075892948925],[-152.48247492644924,57.4675792208822],[-152.51836786637864,57.43235777356773],[-152.60092162821627,57.4684382805728],[-152.66193962609626,57.46328392242921],[-152.74449338793386,57.50537784726846],[-152.79833279782798,57.49421007129071],[-152.88447585365853,57.51053220541205],[-152.91319020560204,57.47101545964459],[-152.81627926779265,57.47187451933519],[-152.76243985789856,57.45727050459503],[-152.60092162821627,57.3825323115131],[-152.62963598015978,57.32239813317132],[-152.7121897419974,57.27772702926028],[-152.75167197591975,57.30865317812177],[-152.8198685617856,57.265700193591925],[-152.88806514765147,57.29147198430984],[-152.90960091160912,57.324116252552514],[-152.98497608546086,57.339579326983255],[-153.05676196531965,57.3292706106961],[-153.1177799631996,57.29748540214402],[-153.01369043740436,57.2992035215252],[-152.94190455754557,57.257109596685964],[-153.07829772927727,57.211579433084324],[-153.20033372503724,57.22188814937148],[-153.214690901009,57.204706955559544],[-153.1249585511855,57.17549892607926],[-153.07470843528435,57.18666670205701],[-152.94908314553143,57.18752576174761],[-152.87011867768678,57.15058619505194],[-152.90960091160912,57.12653252371523],[-152.99574396743967,57.11966004619045],[-153.1177799631996,57.09131107640076],[-153.14649431514314,57.100760732997315],[-153.214690901009,57.075848001970016],[-153.20392301903019,57.033754077130766],[-153.30083395683957,56.99080109260092],[-153.34749477874777,57.007982286412854],[-153.3223697207972,57.037190315893156],[-153.4049234826348,57.08014330042299],[-153.37979842468422,57.120519105881044],[-153.28288748687487,57.17378080669806],[-153.31160183881838,57.19439823927239],[-153.36544124871247,57.176357985769855],[-153.48747724447244,57.08615671825717],[-153.49824512645125,57.065539285682846],[-153.57720959429594,57.09302919578195],[-153.65617406214062,57.08443859887598],[-153.67412053210532,57.05437150970509],[-153.58079888828888,57.04921715156151],[-153.54490594835949,56.995096391053906],[-153.6023346522465,56.942693749927486],[-153.69206700207002,56.92551255611555],[-153.68847770807707,56.865378377773766],[-153.77821005790057,56.830156930459296],[-153.82128158581585,56.84132470643705],[-153.90383534765346,56.77088181180811],[-153.97203193351933,56.7451100210902],[-154.03663922539224,56.76315027459273],[-154.14790733917337,56.745969080780796],[-154.06894287132872,56.84562000489004],[-154.02946063740637,56.85506966148661],[-153.93613899358994,56.91606289951899],[-153.84999593775936,56.942693749927486],[-153.85717452574525,56.97447895847958],[-153.97562122751225,56.95472058559585],[-153.96485334553344,56.99939168950688],[-153.88588887768876,57.08701577794777],[-153.7817993518935,57.13168688185881],[-153.8069244098441,57.15745867257672],[-153.8607638197382,57.11880098649985],[-153.98279981549814,57.06639834537344],[-154.07612145931458,56.97018366002659],[-154.16226451514513,56.91949913828137],[-154.2125146310463,56.91004948168481],[-154.230461101011,56.872250855298546],[-154.29865768687685,56.846479064580635],[-154.3130148628486,56.918640078590784],[-154.40633650666507,56.9684655406454],[-154.52478320843207,56.991660152291516],[-154.51401532645326,57.07756612135121],[-154.52837250242501,57.16862644855448],[-154.57503332433322,57.239928402874014],[-154.61451555825556,57.26741831297312],[-154.6970693200932,57.28459950678506],[-154.79398025790258,57.288894805238044],[-154.7437301420014,57.314666595955956],[-154.7975695518955,57.346451804508035],[-154.77962308193082,57.366210177391764]]],[[[-154.80474813988138,56.434130413094124],[-154.707837202072,56.52089544184442],[-154.52478320843207,56.604224231832305],[-154.44940803458033,56.600787993069915],[-154.3919793306933,56.55439876977769],[-154.43505085860858,56.53464039689396],[-154.63246202822026,56.471929039480386],[-154.73655155401553,56.404063323923225],[-154.80474813988138,56.434130413094124]]],[[[-155.7487324600246,55.82591615215151],[-155.65541081620816,55.86113759946599],[-155.63746434624346,55.89378186770867],[-155.59080352433523,55.9126811809018],[-155.56208917239172,55.88519127080269],[-155.58362493634934,55.84825170410703],[-155.56567846638467,55.78983564514644],[-155.59080352433523,55.76148667535675],[-155.72001810808106,55.7726544513345],[-155.7487324600246,55.82591615215151]]],[[[-156.75014548405483,56.037244836038354],[-156.73219901409013,56.07762064149641],[-156.68194889818898,56.09909713376133],[-156.63528807628074,56.04841261201611],[-156.68194889818898,55.99429185150851],[-156.75014548405483,56.037244836038354]]],[[[-156.80398489394892,56.19702993848938],[-156.77168124801247,56.227097027660264],[-156.76091336603366,56.156654133031324],[-156.79680630596306,56.15579507334073],[-156.80398489394892,56.19702993848938]]],[[[-157.3244325229252,56.540653814728145],[-157.24905734907347,56.58188867987678],[-157.07677123741237,56.579311500805005],[-156.98703888758885,56.53292227751277],[-157.11266417734177,56.552680650396496],[-157.1700928812288,56.530345098440975],[-157.3244325229252,56.52519074029739],[-157.3244325229252,56.540653814728145]]],[[[-157.90230885578853,56.34822444403443],[-157.83411226992268,56.36970093629935],[-157.79463003600034,56.32073453393534],[-157.8269336819368,56.311284877338764],[-157.90230885578853,56.34822444403443]]],[[[-158.8965432918329,55.82591615215151],[-158.8678289398894,55.88089597234972],[-158.79963235402352,55.891204688636876],[-158.70272141621416,55.84137922658226],[-158.73143576815767,55.82591615215151],[-158.8068109420094,55.8577013607036],[-158.8965432918329,55.82591615215151]]],[[[-159.14420457734576,55.87660067389673],[-159.08677587345872,55.83450674905748],[-159.1836868112681,55.84481546534464],[-159.14420457734576,55.87660067389673]]],[[[-159.38468727487273,55.749459839688384],[-159.35597292292923,55.807016838958376],[-159.32007998299983,55.81560743586435],[-159.2805977490775,55.76234573504735],[-159.38468727487273,55.749459839688384]]],[[[-145.65563775187752,60.36776473633735],[-145.5551375200752,60.355737900669],[-145.5120659921599,60.317939274282736],[-145.6089769299693,60.31020773706736],[-145.65563775187752,60.36776473633735]]],[[[-146.01097785717855,60.39611370612705],[-145.95354915329153,60.408140541795404],[-145.745370101701,60.38580498983988],[-145.75613798367982,60.35917413943139],[-145.83151315753156,60.35058354252541],[-146.01097785717855,60.39611370612705]]],[[[-147.32107016460162,60.88062337162371],[-147.2277485207852,60.9106904607946],[-147.13083758297583,60.91326763986639],[-147.07699817308173,60.899522684816844],[-147.14160546495464,60.853992521215204],[-147.32107016460162,60.88062337162371]]],[[[-147.50053486424864,60.653831613306124],[-147.48617768827688,60.727710746697454],[-147.38567745647455,60.741455701747014],[-147.3103022826228,60.66499938928388],[-147.34978451654516,60.627200762897616],[-147.48258839428394,60.618610165991655],[-147.50053486424864,60.653831613306124]]],[[[-147.50412415824158,60.253509797487965],[-147.4969455702557,60.265536633156316],[-147.34260592855927,60.30591243861437],[-147.33901663456635,60.27498628975289],[-147.48258839428394,60.22430176800768],[-147.50412415824158,60.253509797487965]]],[[[-147.92766084940848,59.78360414673146],[-147.89894649746498,59.801644400234],[-147.88817861548614,59.86263763826638],[-147.8056248536485,59.872946354553534],[-147.81639273562735,59.9090268615586],[-147.7410175617756,59.95541608485084],[-147.68358885788857,59.96142950268502],[-147.69435673986737,59.99665094999949],[-147.58667792007918,60.02585897947978],[-147.55437427414273,60.05163077019769],[-147.4000346324463,60.11606024699246],[-147.32107016460162,60.2174292904829],[-147.22415922679227,60.25522791686916],[-147.23492710877107,60.28959030449303],[-147.19903416884168,60.35058354252541],[-147.1021232310323,60.379791572005715],[-147.08776605506054,60.34285200531005],[-147.00162299923,60.34457012469123],[-147.06264099710995,60.3007580804708],[-147.0303373511735,60.28615406573064],[-146.94419429534295,60.31020773706736],[-146.91547994339942,60.29130842387423],[-146.95496217732176,60.25952321532215],[-147.17749840488403,60.15815417183171],[-147.3533738105381,60.0473354717447],[-147.3820881624816,59.97861069649696],[-147.50053486424864,59.927067115061135],[-147.39285604446044,59.87810071269712],[-147.4610526303263,59.84202020569205],[-147.54360639216392,59.83514772816727],[-147.62257086000858,59.84803362352622],[-147.68358885788857,59.799067221162204],[-147.71589250382502,59.80422157930579],[-147.87741073350733,59.763845773847734],[-147.92766084940848,59.78360414673146]]],[[[-147.94919661336613,60.244060140891406],[-147.79126767767676,60.476006257352566],[-147.75178544375441,60.440784810038096],[-147.70871391583916,60.45195258601585],[-147.7230710918109,60.50865052559524],[-147.56514215612154,60.58081153960539],[-147.56514215612154,60.534422316313155],[-147.60821368403683,60.50693240621405],[-147.61898156601563,60.43648951158511],[-147.69076744587446,60.404704303033014],[-147.61898156601563,60.36862379602795],[-147.7051246218462,60.285295006040045],[-147.69794603386032,60.24577826027259],[-147.7589640317403,60.156436052450516],[-147.84510708757085,60.195093738527376],[-147.8558749695497,60.2165702307923],[-147.94560731937318,60.22258364862648],[-147.94919661336613,60.244060140891406]]],[[[-148.02098249322492,60.72513356762566],[-147.96714308333082,60.75176441803417],[-147.90612508545084,60.73544228391283],[-147.84510708757085,60.69420741876418],[-147.93125014340143,60.65554973268732],[-148.02098249322492,60.72513356762566]]],[[[-131.64662329743297,55.03558123680236],[-131.58919459354593,55.08884293761936],[-131.59637318153182,55.12578250431504],[-131.54971235962358,55.14296369812698],[-131.59996247552476,55.17990326482264],[-131.60714106351062,55.240037443164425],[-131.58919459354593,55.2735407710977],[-131.54971235962358,55.28127230831308],[-131.48151577375774,55.25378239821397],[-131.46356930379304,55.22371530904309],[-131.4169084818848,55.217701891208904],[-131.35589048400482,55.18333950358503],[-131.35589048400482,55.04159465463654],[-131.3881941299413,55.01238662515624],[-131.48510506775068,55.010668505775044],[-131.53176588965889,55.03815841587415],[-131.61431965149652,55.00723226701267],[-131.64662329743297,55.03558123680236]]],[[[-132.88851901899017,54.97458799876998],[-132.82391172711726,54.97974235691356],[-132.83826890308902,54.93421219331192],[-132.88851901899017,54.97458799876998]]],[[[-133.319234298143,55.426453396023945],[-133.24385912429125,55.44964800767006],[-133.2510377122771,55.410131261902606],[-133.30846641616415,55.40068160530605],[-133.319234298143,55.426453396023945]]],[[[-133.56330628966288,54.86892365682655],[-133.53100264372642,54.86892365682655],[-133.49510970379703,54.758964016430156],[-133.54894911369112,54.78387674745747],[-133.56330628966288,54.86892365682655]]],[[[-133.65662793347934,55.62575524424243],[-133.62432428754286,55.645513617126156],[-133.62073499354992,55.697916258252576],[-133.54894911369112,55.672144467534665],[-133.5453598196982,55.64465455743557],[-133.62432428754286,55.582802259712594],[-133.65662793347934,55.62575524424243]]],[[[-133.7104673433734,55.67472164660646],[-133.66739581545815,55.682453183821835],[-133.6709851094511,55.65152703496034],[-133.7104673433734,55.67472164660646]]],[[[-133.7894318112181,55.45823860457604],[-133.7607174592746,55.537272096110954],[-133.73200310733108,55.55874858837588],[-133.617145699557,55.5510170511605],[-133.5812527596276,55.537272096110954],[-133.58843134761347,55.507205006940055],[-133.6458600515005,55.47112449993499],[-133.617145699557,55.45737954488544],[-133.5453598196982,55.49174193250931],[-133.52741334973348,55.52868149920498],[-133.48075252782527,55.51235936508364],[-133.4125559419594,55.57077542404423],[-133.34435935609355,55.56905730466303],[-133.2869306522065,55.53555397672976],[-133.3048771221712,55.48401039529395],[-133.3587165320653,55.45394330612305],[-133.42691311793118,55.466829201482],[-133.47357393983938,55.436762112311115],[-133.4125559419594,55.417862799117984],[-133.4197345299453,55.38607759056589],[-133.49869899778997,55.368037337063356],[-133.57766346563466,55.32508435253352],[-133.6099671115711,55.24175556254562],[-133.69252087340874,55.30876221841217],[-133.63150287552875,55.36116485953859],[-133.63509216952167,55.42817151540514],[-133.73918169531694,55.471983559625585],[-133.7894318112181,55.45823860457604]]],[[[-133.81814616316163,55.96422476233761],[-133.7786639292393,55.98312407553075],[-133.69252087340874,56.07074816397163],[-133.5920206416064,56.079338760877604],[-133.55253840768407,56.09651995468954],[-133.63150287552875,56.107687730667294],[-133.63509216952167,56.14806353612535],[-133.5812527596276,56.12916422293222],[-133.54894911369112,56.15837225241252],[-133.67816369743696,56.21163395322952],[-133.6279135815358,56.23654668425684],[-133.6638065214652,56.31042581764817],[-133.5812527596276,56.35251974248742],[-133.4197345299453,56.33190230991309],[-133.16489465644656,56.31729829517295],[-133.078751600616,56.24685540054399],[-133.03926936669365,56.184144043130416],[-133.05721583665837,56.12486892447923],[-133.0069657207572,56.11971456633566],[-132.960304898849,56.06129850737507],[-132.899286900969,56.02006364222642],[-132.83826890308902,56.02435894067939],[-132.63367914549144,55.92213083749837],[-132.59060761757615,55.87745973358733],[-132.47216091580916,55.782104107931076],[-132.46139303383032,55.67386258691586],[-132.35730350803507,55.648949855888546],[-132.32858915609154,55.578506961259606],[-132.29987480414803,55.5510170511605],[-132.1886066903669,55.50806406663065],[-132.14194586845866,55.45823860457604],[-132.17783880838806,55.453084246432454],[-132.24603539425394,55.49260099219991],[-132.51523244372441,55.57678884187841],[-132.52600032570325,55.5501579914699],[-132.60855408754088,55.48658757436573],[-132.56907185361854,55.47971509684096],[-132.51882173771736,55.52009090229902],[-132.49010738577385,55.50376876817768],[-132.40755362393622,55.51235936508364],[-132.38960715397153,55.48057415653156],[-132.31782127411273,55.46940638055379],[-132.28192833418333,55.44449364952649],[-132.41832150591506,55.43246681385813],[-132.38960715397153,55.401540664996645],[-132.27474974619744,55.41958091849918],[-132.2244996302963,55.374909814588136],[-132.16707092640925,55.362882978919785],[-132.1275886924869,55.288144785837844],[-132.0988743405434,55.28041324862248],[-132.14194586845866,55.23831932378323],[-132.21373174831746,55.24605086099861],[-132.2065531603316,55.2185609508995],[-132.1275886924869,55.19966163770637],[-132.08810645856457,55.20653411523115],[-132.07733857658576,55.24605086099861],[-132.02708846068458,55.27697700986009],[-131.99478481474813,55.258936756357556],[-131.97683834478343,55.18076232451324],[-132.03067775467753,55.15155429503294],[-132.01632057870577,55.120628146171455],[-132.09528504655046,55.039876535255345],[-132.19937457234573,55.00551414763147],[-132.1347672804728,54.985755774747744],[-132.03785634266342,55.036440296492955],[-131.98401693276932,55.02784969958698],[-131.98401693276932,54.85346058239581],[-131.95889187481873,54.79160828467283],[-132.03067775467753,54.701407017160165],[-132.1634816324163,54.69367547994479],[-132.25680327623274,54.73491034509344],[-132.30705339213392,54.7185882109721],[-132.36807139001388,54.75123247921478],[-132.37166068400683,54.78301768776687],[-132.50805385573855,54.78129956838568],[-132.44703585785857,54.82682973198732],[-132.35012492004918,54.81823913508134],[-132.34653562605627,54.85174246301462],[-132.41473221192211,54.8878229700197],[-132.48292879778796,54.89899074599745],[-132.60855408754088,54.965997401864016],[-132.5762504416044,54.99864167010669],[-132.540357501675,55.09743353452534],[-132.5941969115691,55.105165071740714],[-132.63367914549144,55.05533960968609],[-132.60855408754088,55.14210463843638],[-132.57983973559735,55.166158309773095],[-132.6193219695197,55.19966163770637],[-132.6372684394844,55.152413354723535],[-132.73417937729377,55.134373101221],[-132.68392926139262,55.04588995308953],[-132.74853655326552,54.9960644910349],[-132.9172333709337,55.04417183370833],[-132.93159054690545,55.07423892287922],[-132.8705725490255,55.124064384933845],[-132.9351798408984,55.209970353993526],[-133.0069657207572,55.20567505554055],[-133.0428586606866,55.248628040070386],[-133.11823383453833,55.25120521914218],[-133.07516230662304,55.18419856327563],[-133.01055501475014,55.12835968338682],[-132.9890192507925,55.066507385663854],[-133.01414430874308,55.03558123680236],[-132.960304898849,55.020977222062214],[-132.88851901899017,54.89641356692566],[-132.80237596315962,54.87407801497014],[-132.81673313913137,54.923903477024766],[-132.73059008330083,54.93936655145551],[-132.6300898514985,54.88352767156671],[-132.61573267552674,54.77700426993269],[-132.6659827914279,54.76325931488314],[-132.73059008330083,54.82682973198732],[-132.75571514125141,54.820816314153134],[-132.67316137941378,54.674776166751656],[-132.77725090520903,54.674776166751656],[-132.8705725490255,54.70226607685076],[-132.87775113701136,54.75380965828657],[-132.94953701687015,54.78817204591046],[-133.12541242252422,54.940225611146104],[-133.16130536245362,54.959124924339235],[-133.1684839504395,55.03128593834937],[-133.21155547835477,55.039876535255345],[-133.2402698302983,55.09227917638175],[-133.13618030450303,55.09915165390653],[-133.2330912423124,55.12750062369622],[-133.2223233603336,55.229728726877255],[-133.3407700621006,55.20567505554055],[-133.37666300203,55.22801060749606],[-133.44127029390293,55.21168847337472],[-133.47357393983938,55.24776898037979],[-133.45203817588174,55.31992999438994],[-133.33359147411474,55.34570178510785],[-133.2941092401924,55.291581024600234],[-133.2330912423124,55.30876221841217],[-133.27975206422065,55.333674949439484],[-133.258216300263,55.36717827737276],[-133.20796618436185,55.38435947118471],[-133.15771606846067,55.372332635516344],[-133.078751600616,55.410131261902606],[-133.18284112641126,55.49260099219991],[-133.1325910105101,55.50290970848708],[-133.19001971439712,55.53039961858617],[-133.17566253842537,55.58709755816557],[-133.26180559425592,55.56905730466303],[-133.43768099991,55.643795497744975],[-133.45203817588174,55.66784916908168],[-133.39460947199473,55.66699010939108],[-133.42691311793118,55.70994309392093],[-133.41614523595234,55.740010183091826],[-133.51305617376173,55.75547325752257],[-133.49152040980408,55.70650685515854],[-133.52741334973348,55.69533907918078],[-133.64227075750756,55.72884240711406],[-133.6996994613946,55.778667869168686],[-133.65662793347934,55.82333897307973],[-133.556127701677,55.83536580874808],[-133.42332382393823,55.78897658545584],[-133.3228235921359,55.81904367462674],[-133.3838415900159,55.87660067389673],[-133.4484488818888,55.89034562894628],[-133.49152040980408,55.87316443513434],[-133.52382405574053,55.887768449874486],[-133.49510970379703,55.9135402405924],[-133.50228829178292,55.949620747597464],[-133.47716323383233,56.003741508105065],[-133.49510970379703,56.017486463154626],[-133.54177052570526,55.97711065769657],[-133.63868146351462,55.921271777807775],[-133.7176459313593,55.89292280801807],[-133.80019969319693,55.92556707626075],[-133.81814616316163,55.96422476233761]]],[[[-133.94377145291452,55.9126811809018],[-133.89352133701337,55.936734852238516],[-133.85403910309103,55.93158049409493],[-133.83968192711927,55.88690939018389],[-133.86839627906278,55.845674525035236],[-133.90428921899218,55.84825170410703],[-133.94377145291452,55.9126811809018]]],[[[-134.36730814408145,55.910963061520604],[-134.26680791227912,55.929862374713736],[-134.26321861828617,55.89292280801807],[-134.15195050450504,55.921271777807775],[-134.1232361525615,55.98570125460253],[-134.09811109461094,55.98398313522134],[-134.1304147405474,55.89721810647106],[-134.20937920839208,55.87660067389673],[-134.28116508825087,55.8284933312233],[-134.34577238012378,55.84309734596346],[-134.31705802818027,55.868869136681354],[-134.36730814408145,55.910963061520604]]],[[[-134.63291589955898,56.28293590754906],[-134.66521954549546,56.17039908808087],[-134.70470177941777,56.175553446224455],[-134.8052020112201,56.23568762456624],[-134.8410949511495,56.30956675795757],[-134.91647012500124,56.360251279702794],[-135.06004188471883,56.542371934109326],[-135.04568470874707,56.58360679925798],[-134.9667202409024,56.60336517214171],[-135.03132753277532,56.62913696285962],[-135.12464917659176,56.60250611245111],[-135.1748992924929,56.67810336522365],[-135.21438152641525,56.665217469864686],[-135.27539952429524,56.70129797686975],[-135.3184710522105,56.74854625985259],[-135.31129246422464,56.77775428933289],[-135.36154258012579,56.75885497613976],[-135.39743552005518,56.779472408714085],[-135.50511433984337,56.781190528095266],[-135.57331092570925,56.86366025839257],[-135.50511433984337,56.86623743746436],[-135.46922139991398,56.84132470643705],[-135.43332845998458,56.85249248241482],[-135.44409634196342,56.942693749927486],[-135.37589975609757,56.988223913529126],[-135.3543639921399,57.0208681817718],[-135.49434645786457,57.09474731516315],[-135.40820340203402,57.14886807567075],[-135.42256057800577,57.16776738886388],[-135.37231046210462,57.19783447803478],[-135.35795328613284,57.243364641636404],[-135.47639998789987,57.257109596685964],[-135.5517751617516,57.23305592534925],[-135.60202527765276,57.300921640906395],[-135.67381115751158,57.33700214791148],[-135.68816833348333,57.36706923708236],[-135.55536445574455,57.42634435573355],[-135.5338286917869,57.450398027070264],[-135.54818586775866,57.50881408603085],[-135.41897128401283,57.56379390622905],[-135.3543639921399,57.553485189941895],[-135.26463164231643,57.48046511624115],[-135.2107922324223,57.489055713147124],[-135.1461849405494,57.439230251092496],[-135.06363117871177,57.41861281851817],[-134.92723800698008,57.42204905728056],[-134.8482735391354,57.41002222161221],[-134.8052020112201,57.34215650605505],[-134.812380599206,57.3000625812158],[-134.8841664790648,57.3301296703867],[-134.95236306493064,57.3284115510055],[-134.95595235892358,57.30951223781237],[-134.88057718507184,57.28803574554745],[-134.8410949511495,57.24851899977999],[-134.73700542535425,57.00970040579405],[-134.7405947193472,56.94870716776167],[-134.6975231914319,56.900599825088236],[-134.6975231914319,56.85077436303362],[-134.63291589955898,56.72878788696886],[-134.61496942959428,56.636868500074996],[-134.63291589955898,56.540653814728145],[-134.67239813348132,56.54151287441873],[-134.6436837815378,56.471929039480386],[-134.63291589955898,56.28293590754906]]],[[[-135.85327585715856,57.24078746256461],[-135.8389186811868,57.282022327713264],[-135.84968656316562,57.33872026729266],[-135.75995421334213,57.346451804508035],[-135.63791821758218,57.29319010369103],[-135.58407880768806,57.22961968658686],[-135.54100727977277,57.21329755246552],[-135.4799892818928,57.23906934318342],[-135.39743552005518,57.230478746277456],[-135.45486422394222,57.1600358516485],[-135.54100727977277,57.14800901598015],[-135.63791821758218,57.00970040579405],[-135.68098974549744,57.014854763937635],[-135.82456150521506,56.98908297321972],[-135.8568651511515,56.9959554507445],[-135.84609726917267,57.08357953918538],[-135.75636491934918,57.123955344643434],[-135.75277562535624,57.16690832917328],[-135.83174009320092,57.17034456793567],[-135.82456150521506,57.195257298962986],[-135.87122232712326,57.22188814937148],[-135.85327585715856,57.24078746256461]]],[[[-167.44265228902287,60.20969775326752],[-167.31702699926998,60.23117424553244],[-167.1124372416724,60.23117424553244],[-167.03347277382773,60.21399305172051],[-166.9509190119901,60.22258364862648],[-166.91861536605364,60.201966216052156],[-166.8432401922019,60.21055681295812],[-166.8073472522725,60.23632860367603],[-166.83606160421604,60.268972871918706],[-166.71402560845607,60.327388930879295],[-166.5812217307173,60.317939274282736],[-166.5812217307173,60.349724482834816],[-166.4914893808938,60.38924122860227],[-166.37304267912677,60.3548788409784],[-166.28689962329622,60.38236875107751],[-166.2043458614586,60.39010028829287],[-166.1505064515645,60.43648951158511],[-166.08230986569865,60.32309363242632],[-165.98539892788926,60.314503035520346],[-165.88130940209402,60.34371106500065],[-165.77721987629874,60.3265298711887],[-165.68030893848936,60.292167483564825],[-165.72338046640465,60.23632860367603],[-165.6838982324823,60.198529977289766],[-165.72338046640465,60.164167589665894],[-165.67671964449644,60.15471793306932],[-165.66236246852466,60.098879053180525],[-165.7090232904329,60.06623478493783],[-165.63364811658116,60.01984556164561],[-165.62646952859527,59.97002009959098],[-165.55109435474353,59.97861069649696],[-165.59057658866587,59.949402667016656],[-165.58339800068,59.908167801868004],[-165.83823787417873,59.89012754836547],[-165.85977363813637,59.86091951888518],[-165.93155951799517,59.87724165300652],[-166.0248811618116,59.86177857857578],[-166.12538139361394,59.81195311652115],[-166.0966670416704,59.756973296322954],[-166.18998868548684,59.750100818798174],[-166.27254244732447,59.811094056830555],[-166.40893561905617,59.85146986228861],[-166.61352537665374,59.84803362352622],[-166.66377549255492,59.87810071269712],[-166.76427572435722,59.89356378712786],[-166.8611866621666,59.94338924918249],[-166.9868119519195,59.979469756187555],[-167.1303837116371,59.995791890308894],[-167.2452411194112,60.05764418803187],[-167.33497346923468,60.06623478493783],[-167.34215205722057,60.12636896327962],[-167.44265228902287,60.20969775326752]]],[[[-173.0634866819668,60.502637107761075],[-173.04195091800918,60.56191222641226],[-172.95221856818566,60.60658333032329],[-172.91273633426334,60.6040061512515],[-172.9270935102351,60.55418068919688],[-172.8840219823198,60.507791465904646],[-172.76557528055278,60.44765728756286],[-172.5932891688917,60.39353652705526],[-172.514324701047,60.38150969138691],[-172.4245923512235,60.39267746736466],[-172.22000259362594,60.31192585644855],[-172.29537776747767,60.295603722327215],[-172.32768141341413,60.327388930879295],[-172.51073540705406,60.334261408404075],[-172.6040570508705,60.31965739366393],[-172.72250375263752,60.35917413943139],[-172.93068280422804,60.476006257352566],[-173.0634866819668,60.502637107761075]]],[[[-173.09220103391033,60.699361776907764],[-173.0634866819668,60.69506647845478],[-173.0455402120021,60.62290546444463],[-173.11732609186092,60.65898597144971],[-173.09220103391033,60.699361776907764]]],[[[-160.3179037130371,58.694316459054576],[-160.2999572430724,58.72953790636906],[-160.24970712717126,58.65823595204951],[-160.27483218512185,58.636759459784585],[-160.3179037130371,58.694316459054576]]],[[[-160.43635041480414,58.68400774276742],[-160.4076360628606,58.75015533894339],[-160.3896895928959,58.701188936579356],[-160.43635041480414,58.68400774276742]]],[[[-161.0824233335333,58.589511176801764],[-161.05729827558275,58.702047996269954],[-160.91731580985808,58.746719100181],[-160.84194063600634,58.75187345832457],[-160.7019581702817,58.817161994809936],[-160.684011700317,58.81544387542874],[-160.88142286992868,58.58092057989579],[-160.96038733777337,58.55343066979668],[-161.07524474554745,58.54999443103431],[-161.0824233335333,58.589511176801764]]],[[[-131.24103307623076,55.09227917638175],[-131.20872943029428,55.11203754926548],[-131.1728364903649,55.087983877928764],[-131.19078296032959,55.043312774017735],[-131.24821166421663,55.07252080349802],[-131.24103307623076,55.09227917638175]]],[[[-131.48510506775068,54.95053432743326],[-131.26615813418132,54.99864167010669],[-131.24103307623076,54.929916894858934],[-131.19437225432253,54.91789005919058],[-131.26615813418132,54.859474000229994],[-131.3523011900119,54.8586149405394],[-131.4707478917789,54.912735701047],[-131.48510506775068,54.95053432743326]]],[[[-131.62149823948238,54.94623902898029],[-131.52817659566594,55.00207790886908],[-131.49946224372243,54.98060141660416],[-131.59278388753887,54.93077595454953],[-131.62149823948238,54.94623902898029]]],[[[-131.86915952499524,55.36460109830098],[-131.8548023490235,55.421299037880374],[-131.83326658506584,55.42215809757097],[-131.64662329743297,55.30618503934039],[-131.68969482534825,55.282131368003675],[-131.69328411934117,55.22371530904309],[-131.7471235292353,55.12835968338682],[-131.8296772910729,55.19193010049099],[-131.86198093700938,55.28900384552844],[-131.86915952499524,55.36460109830098]]],[[[-135.02773823878238,58.51992734186341],[-134.9021129490295,58.48126965578655],[-134.8052020112201,58.37388719446193],[-134.8410949511495,58.369591896008956],[-134.92005941899419,58.4683837604276],[-135.00261318083182,58.48470589454894],[-135.02773823878238,58.51992734186341]]],[[[-150.24275547485473,61.13748221911219],[-150.2212197108971,61.170126487354864],[-150.15661241902419,61.16067683075829],[-150.22839829888298,61.123737264062626],[-150.24275547485473,61.13748221911219]]],[[[179.4841478925789,51.98248309642095],[179.5272194204942,51.98076497703977],[179.57029094840948,52.010832066210654],[179.6636125922259,52.022858901879005],[179.77488070600702,51.9704562607526],[179.74257706007057,51.91204020179201],[179.65643400424,51.87595969478694],[179.6133624763247,51.871664396333955],[179.52363012650125,51.89657712736127],[179.4841478925789,51.92148985838857],[179.4841478925789,51.98248309642095]]],[[[178.62630662826626,51.637141100801],[178.64425309823093,51.65775853337533],[178.7375747420474,51.632845802348015],[178.80577132791325,51.63542298141981],[178.9026822657226,51.61480554884548],[178.91703944169439,51.58817469843697],[179.00318249752496,51.552094191431905],[179.10009343533432,51.48508753556534],[179.18982578515784,51.462751983609834],[179.22930801908018,51.413785581245804],[179.3872369547695,51.40433592464923],[179.46261212862123,51.37598695485954],[179.39800483674833,51.3596648207382],[179.36570119081188,51.371691656406554],[179.26161166501663,51.35794670135701],[179.2077722551225,51.39316814867148],[179.06061120141197,51.45502044639446],[178.95293238162378,51.54178547514475],[178.8452535618356,51.578725041840414],[178.78423556395563,51.571852564315634],[178.70527109611095,51.59332905658056],[178.62630662826626,51.637141100801]]],[[[178.44684192861928,51.978187797967976],[178.47914557455573,51.987637454564535],[178.55093145441452,51.97389249951499],[178.59041368833687,51.945543529725285],[178.5401635724357,51.903449604886035],[178.5042706325063,51.90001336612366],[178.44684192861928,51.978187797967976]]],[[[178.23866287702873,51.82785235211351],[178.30685946289458,51.82183893427934],[178.38223463674632,51.764281935009336],[178.30327016890163,51.7771678303683],[178.23866287702873,51.82785235211351]]],[[[178.09509111731114,52.033167618166175],[178.1202161752617,52.052066931359306],[178.18123417314172,52.033167618166175],[178.1920020551205,52.00395958868587],[178.13098405724054,51.98677839487394],[178.09509111731114,52.033167618166175]]],[[[177.20494620706205,51.89657712736127],[177.29108926289263,51.91977173900739],[177.3449286727867,51.96272472353722],[177.48491113851134,51.98506027549274],[177.506446902469,52.03918103600036],[177.56387560635602,52.12165076629765],[177.60335784027836,52.137113840728404],[177.67514372013716,52.09244273681736],[177.63207219222187,52.064952826718255],[177.60335784027836,52.01598642435424],[177.53157196041957,51.9704562607526],[177.6069471342713,51.95499318632186],[177.6069471342713,51.92492609715096],[177.56028631236308,51.916335500245],[177.4095359646596,51.93093951498514],[177.34851796677964,51.90430866457663],[177.33416079080786,51.84417448623485],[177.29467855688551,51.845892605616044],[177.20494620706205,51.88025499323993],[177.20494620706205,51.89657712736127]]],[[[175.8733181356813,52.37077807657076],[175.96663977949777,52.35961030059299],[175.90203248762487,52.336415688946886],[175.8733181356813,52.37077807657076]]],[[[174.06790325723256,52.73501938538385],[174.14686772507724,52.72814690785907],[174.15763560705602,52.70581135590355],[174.0714925512255,52.7186972512625],[174.06790325723256,52.73501938538385]]],[[[173.95304584945848,52.75134151950519],[174.0032959653596,52.74446904198041],[174.0032959653596,52.719556310953095],[173.95304584945848,52.75134151950519]]],[[[173.8669027936279,52.775395190841905],[173.9386886734867,52.75220057919579],[173.8956171455714,52.75048245981459],[173.8669027936279,52.775395190841905]]],[[[173.35722304663045,52.40514046419463],[173.37875881058807,52.43177131460314],[173.44695539645392,52.45496592624926],[173.52950915829155,52.44981156810567],[173.622830802108,52.507368567375664],[173.76999185581855,52.51166386582865],[173.70897385793853,52.47730147820478],[173.69102738797386,52.445516269652686],[173.72692032790326,52.356174061830615],[173.65154515405152,52.356174061830615],[173.59052715617156,52.40084516574164],[173.46490186641864,52.384523031620304],[173.35722304663045,52.40514046419463]]],[[[172.45989954839547,52.92744875607755],[172.62859636606362,53.00132788946888],[172.74704306783065,53.010777546065455],[173.10597246712462,52.99359635225352],[173.21006199291992,52.939475591745904],[173.29620504875044,52.926589696386955],[173.42183033850336,52.845838085470845],[173.42900892648925,52.830375011040104],[173.30338363673633,52.823502533515324],[173.2280084628846,52.856146801758015],[173.16699046500463,52.795153563725634],[173.13468681906818,52.783985787747866],[172.99829364733642,52.79687168310683],[172.90497200352002,52.761650235792345],[172.8080610657106,52.78914014589145],[172.76498953779537,52.823502533515324],[172.75422165581654,52.877623294022925],[172.63936424804245,52.92573063669636],[172.51373895828954,52.90511320412203],[172.45989954839547,52.92744875607755]]],[[[-167.85183180421802,53.31574373622735],[-167.79081380633806,53.335502109111076],[-167.71184933849338,53.381032272712716],[-167.62211698866986,53.3853275711657],[-167.4893131109311,53.419689958789576],[-167.45700946499463,53.442884570435695],[-167.35650923319233,53.42484431693316],[-167.30625911729115,53.4411664510545],[-167.27754476534764,53.47896507744076],[-167.19858029750296,53.46264294331942],[-167.18781241552415,53.5244952410424],[-167.10166935969357,53.51504558444583],[-167.16268735757356,53.60610591164911],[-167.09090147771477,53.633595821748216],[-167.06218712577123,53.619850866698656],[-167.00834771587714,53.6353139411294],[-167.07295500775007,53.665381030300296],[-167.05859783177831,53.69888435823357],[-166.99757983389833,53.7186427311173],[-166.89349030810308,53.7177836714267],[-166.8611866621666,53.65936761246611],[-166.8073472522725,53.665381030300296],[-166.8324723102231,53.70833401483014],[-166.78581148831486,53.73496486523864],[-166.97604406994068,53.77534067069669],[-167.02629418584183,53.75730041719416],[-167.14115159361592,53.826884252132515],[-167.14115159361592,53.86640099789997],[-167.02988347983478,53.94543448943489],[-166.8791331321313,53.988387473964735],[-166.74991854838547,54.01587738406383],[-166.72838278442782,54.00299148870488],[-166.64582902259022,54.01415926468263],[-166.58840031870318,53.96003850417503],[-166.64582902259022,53.923957997169964],[-166.62070396463963,53.893890907999065],[-166.55968596675964,53.878427833568324],[-166.5094358508585,53.923957997169964],[-166.48790008690085,53.89560902738026],[-166.43406067700676,53.920521758407574],[-166.4376499709997,53.955743205722044],[-166.37304267912677,54.00986396622966],[-166.31920326923267,53.96003850417503],[-166.27972103531033,53.98237405613055],[-166.20793515545154,53.92911235531355],[-166.23664950739507,53.88100501264012],[-166.31920326923267,53.86983723666236],[-166.40534632506325,53.80970305832058],[-166.54891808478084,53.749568879978796],[-166.54173949679495,53.71606555204551],[-166.419703501035,53.762454775337744],[-166.21152444944448,53.81743459553594],[-166.19716727347273,53.836333908729074],[-166.11820280562804,53.855233221922205],[-166.09307774767746,53.83891108780087],[-166.11102421764215,53.77705879007789],[-166.1684529215292,53.73324674585746],[-166.26177456534563,53.704038716377156],[-166.28331032930328,53.68428034349343],[-166.4448285589856,53.64046829927298],[-166.55250737877378,53.623287105461046],[-166.5094358508585,53.58377035969359],[-166.56686455474554,53.58291130000299],[-166.5812217307173,53.530508658876585],[-166.63865043460433,53.54511267361673],[-166.66377549255492,53.484978495274945],[-166.7355613724137,53.50645498753987],[-166.74991854838547,53.4411664510545],[-166.8791331321313,53.429998675076746],[-166.95809759997599,53.45577046579464],[-166.99399053990538,53.42913961538615],[-167.03706206782067,53.44889798826988],[-167.1124372416724,53.41711277971778],[-167.13397300563005,53.426562436314356],[-167.2919019413194,53.36385107890078],[-167.30266982329823,53.33722022849227],[-167.38522358513583,53.34065646725466],[-167.44265228902287,53.32089809437093],[-167.4893131109311,53.269354512935124],[-167.5898133427334,53.28911288581885],[-167.62211698866986,53.25045519974199],[-167.79799239432393,53.284817587365865],[-167.85183180421802,53.31574373622735]]],[[[-169.0542452918529,52.86301927928278],[-168.95733435404352,52.8862138909289],[-168.96092364803647,52.936898412674125],[-168.89631635616354,52.936898412674125],[-168.86042341623414,52.96782456153561],[-168.86042341623414,53.01679096389962],[-168.7850482423824,53.04513993368933],[-168.7671017724177,53.09410633605336],[-168.8029947123471,53.107851291102904],[-168.76351247842476,53.18258948418483],[-168.59840495474953,53.27364981138811],[-168.54097625086249,53.25131425943259],[-168.44406531305313,53.265059214482136],[-168.3435650812508,53.26248203541034],[-168.37586872718725,53.31832091529914],[-168.41894025510254,53.32261621375213],[-168.3866366091661,53.38876380992809],[-168.4081723731237,53.411099361883615],[-168.3435650812508,53.47638789836897],[-168.1999933215332,53.533944897638975],[-168.00617144591445,53.565730106191054],[-167.9020819201192,53.520199942589414],[-167.79081380633806,53.52105900228001],[-167.78363521835217,53.50130062939628],[-167.8590103922039,53.43773021229211],[-167.84106392223921,53.3861866308563],[-168.0384750918509,53.30457596024959],[-168.271779201392,53.242723662526615],[-168.33997578725786,53.18602572294722],[-168.3435650812508,53.15509957408574],[-168.44406531305313,53.08551573914738],[-168.49790472294723,53.03569027709277],[-168.58763707277072,53.027099680186794],[-168.68813730457305,52.96610644215441],[-168.74197671446714,52.95150242741427],[-168.7563338904389,52.907690383193824],[-168.810173300333,52.92573063669636],[-168.90708423814237,52.88363671185711],[-169.1009061137611,52.82436159320592],[-169.0542452918529,52.86301927928278]]],[[[-169.2696029314293,52.77281801177011],[-169.16551340563404,52.81491193660936],[-169.169102699627,52.7762542505325],[-169.26242434344343,52.75477775826758],[-169.2696029314293,52.77281801177011]]],[[[-169.76133620846207,52.978133277822764],[-169.74697903249032,53.02108626235261],[-169.67878244662444,53.03483121740217],[-169.66442527065269,52.997032591015895],[-169.69672891658917,52.958374904939035],[-169.73980044450443,52.95150242741427],[-169.76133620846207,52.978133277822764]]],[[[-169.7900505604056,56.617969186881865],[-169.6105858607586,56.6068014109041],[-169.50649633496334,56.611096709357085],[-169.47060339503395,56.599069873688734],[-169.5675143328433,56.540653814728145],[-169.65006809468093,56.54409005349052],[-169.68237174061738,56.58360679925798],[-169.75415762047618,56.592197396163954],[-169.7900505604056,56.617969186881865]]],[[[-169.77569338443382,53.0795023213132],[-169.74697903249032,53.045998993379925],[-169.8008184423844,53.05716676935768],[-169.77569338443382,53.0795023213132]]],[[[-170.00540819998199,52.84669714516144],[-169.944390202102,52.861301159901586],[-169.8618364402644,52.858723980829794],[-169.86901502825026,52.87504611495115],[-169.7721040904409,52.894804487834875],[-169.70390750457503,52.8862138909289],[-169.66801456464563,52.864737398663976],[-169.72903256252562,52.77453613115131],[-169.8367113823138,52.817489115681155],[-169.9264437321373,52.79257638465384],[-169.99464031800318,52.80460322032219],[-170.00540819998199,52.84669714516144]]],[[[-170.11308701977018,52.90167696535964],[-170.08437266782667,52.92401251731516],[-170.00181890598904,52.91026756226562],[-169.9982296119961,52.88363671185711],[-170.04847972789727,52.85700586144861],[-170.09514054980548,52.87075081649816],[-170.11308701977018,52.90167696535964]]],[[[-170.18487289962897,52.722992549715485],[-170.17051572365722,52.784844847438464],[-170.05206902189022,52.76938177300772],[-170.07719407984078,52.72041537064369],[-170.18487289962897,52.722992549715485]]],[[[-170.42176630316303,57.169485508245074],[-170.38946265722655,57.20642507494074],[-170.3104981893819,57.21931097029969],[-170.2674266614666,57.21072037339373],[-170.16333713567136,57.22961968658686],[-170.17051572365722,57.181512343913425],[-170.2853731314313,57.12825064309642],[-170.303319601396,57.15488149350493],[-170.42176630316303,57.169485508245074]]],[[[-170.83453511235112,52.600147013960125],[-170.81658864238642,52.63622752096521],[-170.6730168826688,52.69807981868817],[-170.56174876888767,52.67488520704207],[-170.55815947489472,52.65169059539595],[-170.60482029680296,52.60186513334132],[-170.6730168826688,52.603583252722515],[-170.7340348805488,52.581247700766994],[-170.7878742904429,52.54001283561834],[-170.84171370033698,52.55805308912089],[-170.83453511235112,52.600147013960125]]],[[[-171.15039298372983,52.584683939529384],[-171.11808933779338,52.55719402943029],[-171.1755180416804,52.55891214881147],[-171.15039298372983,52.584683939529384]]],[[[-171.31191121341212,52.49362361232612],[-171.25089321553213,52.529704119331186],[-171.1934645116451,52.497918910779106],[-171.23653603956038,52.45067062779627],[-171.30473262542625,52.44981156810567],[-171.31191121341212,52.49362361232612]]],[[[-172.6220035208352,52.29861706256062],[-172.5681641109411,52.349301584305834],[-172.44971740917407,52.391395509145084],[-172.4066458812588,52.38967738976389],[-172.30973494344943,52.356174061830615],[-172.31332423744237,52.32095261451613],[-172.41382446924467,52.2771405702957],[-172.52868187701876,52.25394595864958],[-172.60764634486344,52.25308689895898],[-172.6220035208352,52.29861706256062]]],[[[-174.04695323603235,52.132818542275416],[-173.92132794627946,52.132818542275416],[-173.80288124451243,52.10618769186691],[-173.77057759857598,52.13195948258482],[-173.7203274826748,52.13024136320362],[-173.6018807809078,52.15343597484974],[-173.51214843108428,52.152576915159145],[-173.53368419504193,52.12852324382243],[-173.49779125511253,52.103610512795115],[-173.46907690316903,52.11649640815408],[-173.3578087893879,52.09587897557975],[-173.27525502755026,52.1096239306293],[-173.23936208762086,52.10017427403274],[-173.12450467984678,52.1096239306293],[-173.10655820988208,52.09931521434214],[-172.95939715617155,52.09330179650796],[-173.04912950599504,52.07354342362423],[-173.10655820988208,52.078697781767815],[-173.15680832578323,52.059798468574684],[-173.3147372614726,52.058939408884086],[-173.39370172931729,52.02887231971319],[-173.4224160812608,52.04261727476273],[-173.47984478514783,52.026295140641395],[-173.5480413710137,52.029731379403785],[-173.6126486628866,52.05120787166871],[-173.7992919505195,52.0537850507405],[-173.83159559645594,52.04089915538155],[-173.93568512225121,52.05722128950289],[-173.9715780621806,52.09931521434214],[-174.01106029610295,52.098456154651544],[-174.04695323603235,52.132818542275416]]],[[[-175.3283311915119,52.02715420033199],[-175.1309200219002,52.058939408884086],[-175.09143778797787,52.03488573754737],[-175.00170543815437,52.07783872207722],[-174.99093755617554,52.058939408884086],[-174.9227409703097,52.09158367712676],[-174.904794500345,52.11649640815408],[-174.84018720847206,52.09158367712676],[-174.7432762706627,52.098456154651544],[-174.71456191871917,52.12766418413183],[-174.69302615476153,52.107046751557505],[-174.56740086500864,52.1388319601096],[-174.5638115710157,52.174912467114666],[-174.40588263532635,52.18350306402063],[-174.45254345723455,52.21872451133511],[-174.29820381553813,52.21442921288212],[-174.25154299362993,52.24363724236241],[-174.25513228762287,52.27456339122391],[-174.36998969539695,52.280576809058076],[-174.45254345723455,52.30548954008539],[-174.43459698726986,52.32782509204091],[-174.35922181341812,52.314080136991365],[-174.31615028550283,52.34500628585285],[-174.32332887348872,52.378509613786136],[-174.186935701757,52.41802635955359],[-174.06848899999,52.39053644945449],[-173.9895245321453,52.32524791296912],[-173.98593523815236,52.29861706256062],[-174.0613104120041,52.22559698885988],[-174.18334640776408,52.23246946638466],[-174.19770358373583,52.19552989968899],[-174.0792568819688,52.12766418413183],[-174.09002476394764,52.107046751557505],[-174.14386417384173,52.12508700506004],[-174.2048821717217,52.11649640815408],[-174.21923934769347,52.09330179650796],[-174.27666805158051,52.08986555774557],[-174.3484539314393,52.1096239306293],[-174.41665051730516,52.02801326002259],[-174.50638286712865,52.0546441104311],[-174.7360976826768,52.00739582744826],[-174.78275850458502,52.03230855847558],[-174.8868480303803,52.04261727476273],[-174.96940179221792,52.03746291661916],[-175.01606261412613,52.00739582744826],[-175.0950270819708,52.0005233499235],[-175.2134737837378,52.00567770806707],[-175.3283311915119,52.02715420033199]]],[[[-175.51138518515182,51.98248309642095],[-175.45036718727187,51.99708711116111],[-175.42524212932128,51.972174380133794],[-175.50420659716596,51.968738141371404],[-175.51138518515182,51.98248309642095]]],[[[-175.54009953709536,52.18350306402063],[-175.48267083320832,52.16718092989929],[-175.52215306713066,52.15687221361213],[-175.54009953709536,52.18350306402063]]],[[[-175.7411000007,51.96702002199021],[-175.7231535307353,51.974751559205586],[-175.5795817710177,51.972174380133794],[-175.57599247702476,51.94983882817827],[-175.6441890628906,51.952416007250065],[-175.7231535307353,51.93179857467574],[-175.7411000007,51.96702002199021]]],[[[-175.95286834628345,51.98334215611155],[-175.9133861123611,51.99536899177991],[-175.81288588055878,51.994509932089315],[-175.75904647066469,51.917194559935595],[-175.81647517455173,51.92148985838857],[-175.8774931724317,51.96358378322782],[-175.95286834628345,51.98334215611155]]],[[[-176.20052963179631,52.078697781767815],[-176.15027951589514,52.117355467844675],[-176.0569578720787,52.1096239306293],[-175.9744041102411,52.04089915538155],[-176.0461899900999,52.00825488713886],[-175.9923505802058,51.96014754446544],[-176.039011402114,51.93093951498514],[-176.10361869398693,51.929221395603946],[-176.16822598585983,51.94812070879708],[-176.15745810388103,51.99708711116111],[-176.18258316183162,51.9988052305423],[-176.21129751377512,52.064952826718255],[-176.20052963179631,52.078697781767815]]],[[[-176.2364225717257,51.826134232732315],[-176.218476101761,51.87424157540575],[-176.17540457384573,51.88283217231171],[-176.13951163391633,51.859637560665604],[-176.07131504805048,51.868228157571565],[-176.11438657596574,51.887127470764696],[-175.9923505802058,51.91289926148261],[-175.9564576402764,51.89314088859888],[-175.96363622826226,51.845892605616044],[-176.0461899900999,51.845892605616044],[-175.99952916819166,51.801221501705015],[-176.10361869398693,51.826134232732315],[-176.09644010600104,51.79177184510844],[-176.13951163391633,51.8020805613956],[-176.15745810388103,51.768577233462324],[-176.18258316183162,51.807234919539184],[-176.2364225717257,51.826134232732315]]],[[[-176.99017431024308,51.629409563585625],[-176.95069207632076,51.686966562855616],[-176.89685266642664,51.70071151790518],[-176.87172760847608,51.73163766676666],[-176.91838843038428,51.78833560634605],[-176.90403125441253,51.81153021799217],[-176.78917384663845,51.817543635826354],[-176.76404878868786,51.868228157571565],[-176.8107096105961,51.92750327622275],[-176.7748166706667,51.96616096229961],[-176.7209772607726,51.969597201062],[-176.65636996889967,51.952416007250065],[-176.58817338303382,52.003100528995276],[-176.55586973709737,51.991073693326925],[-176.54510185511853,51.92750327622275],[-176.61688773497733,51.90259054519544],[-176.62406632296322,51.859637560665604],[-176.57740550105498,51.84245636685365],[-176.50920891518913,51.845892605616044],[-176.397940801408,51.868228157571565],[-176.2902619816198,51.87252345602455],[-176.26513692366922,51.817543635826354],[-176.2902619816198,51.74194638305383],[-176.3441013915139,51.73163766676666],[-176.47331597525974,51.7471007411974],[-176.51997679716797,51.70242963728637],[-176.58458408904087,51.6921209209992],[-176.6312449109491,51.65689947368473],[-176.7137986727867,51.683530324093226],[-176.73533443674435,51.66205383182832],[-176.7137986727867,51.620818966679664],[-176.75328090670905,51.63542298141981],[-176.79994172861728,51.61308742946429],[-176.81429890458904,51.66033571244712],[-176.8645490204902,51.68524844347442],[-176.93274560635604,51.59246999688996],[-176.98299572225721,51.60191965348653],[-176.99017431024308,51.629409563585625]]],[[[-177.46396111731116,51.913758321173205],[-177.41730029540295,51.92148985838857],[-177.41012170741706,51.89915430643306],[-177.4603718233182,51.884550291692904],[-177.46396111731116,51.913758321173205]]],[[[-177.70444381483813,51.70758399542994],[-177.63983652296523,51.73593296521965],[-177.55369346713465,51.7213289504795],[-177.4603718233182,51.75053697995979],[-177.28090712367123,51.784040307893065],[-177.2055319498195,51.820979874588744],[-177.1983533618336,51.93093951498514],[-177.15528183391834,51.94468447003469],[-177.0978531300313,51.936093873128726],[-177.0440137201372,51.898295246742464],[-177.13733536395364,51.814107397063964],[-177.1193888939889,51.740228263672634],[-177.1445139519395,51.70758399542994],[-177.26296065370653,51.68095314502145],[-177.39217523745236,51.733355786147854],[-177.48908617526175,51.70500681635815],[-177.63265793497933,51.69641621945219],[-177.63624722897228,51.659476652756524],[-177.67214016890168,51.6637719512095],[-177.70444381483813,51.70758399542994]]],[[[-178.2248914438144,51.88025499323993],[-178.1961770918709,51.90516772426723],[-178.09208756607563,51.91977173900739],[-177.952105100351,51.9154764405544],[-177.91262286642865,51.87939593354933],[-177.91980145441454,51.85362414283142],[-177.85160486854866,51.826134232732315],[-177.79776545865457,51.84073824747247],[-177.73315816678166,51.826134232732315],[-177.61471146501464,51.855342262212616],[-177.65060440494403,51.820979874588744],[-177.79776545865457,51.79348996448964],[-177.84083698656985,51.732496726457256],[-177.8264798105981,51.70586587604875],[-177.86955133851336,51.67923502564025],[-177.8982656904569,51.6929799806898],[-177.93056933639335,51.65518135430354],[-177.90185498444984,51.606214951939506],[-177.93056933639335,51.60191965348653],[-177.9628729823298,51.65002699615995],[-178.01312309823098,51.629409563585625],[-178.07055180211802,51.67064442873428],[-178.11721262402622,51.67751690625906],[-178.10285544805447,51.701570577595774],[-177.95569439434394,51.723047069860684],[-177.96646227632274,51.7780268900589],[-178.03824815618154,51.778885949749494],[-178.08490897808977,51.80809397922978],[-178.2248914438144,51.864791918809175],[-178.2248914438144,51.88025499323993]]],[[[-178.6807317809178,51.6087921310113],[-178.5658743731437,51.59848341472414],[-178.57664225512255,51.58302034029339],[-178.6735531929319,51.58903375812757],[-178.6807317809178,51.6087921310113]]],[[[-178.85660718657186,51.57700692245922],[-178.75969624876248,51.562402907719076],[-178.7345711908119,51.54264453483535],[-178.82430354063538,51.54693983328832],[-178.85660718657186,51.57700692245922]]],[[[-178.87096436254362,51.79520808387083],[-178.82071424664244,51.839879187781875],[-178.74892836678364,51.809812098610976],[-178.74892836678364,51.75740945748457],[-178.81712495264952,51.748818860578595],[-178.87096436254362,51.79520808387083]]],[[[-178.99300035830356,51.38114131300313],[-178.96428600636006,51.40261780526805],[-178.92839306643066,51.38371849207492],[-178.91044659646596,51.34076550754507],[-178.95351812438122,51.33904738816388],[-178.98941106431062,51.31155747806477],[-178.99300035830356,51.38114131300313]]],[[[-179.13657211802118,51.28578568734686],[-179.0935005901059,51.301248761777615],[-179.07196482614825,51.25056424003239],[-179.13657211802118,51.229087747767466],[-179.13657211802118,51.28578568734686]]],[[[-150.77397098580985,59.33259780916808],[-150.66988146001458,59.4099131813218],[-150.61604205012048,59.395309166581654],[-150.61963134411343,59.3557924208142],[-150.72013157591576,59.29222200371002],[-150.77397098580985,59.308544137831376],[-150.77397098580985,59.33259780916808]]],[[[-151.52772272432725,59.147899975689754],[-151.43440108051078,59.13587314002139],[-151.44516896248962,59.104946991159906],[-151.52772272432725,59.147899975689754]]],[[[-151.71795530595304,59.132436901259],[-151.63899083810838,59.117832886518855],[-151.66411589605895,59.089483916729165],[-151.71436601196012,59.101510752397516],[-151.71795530595304,59.132436901259]]],[[[-151.86152706567066,59.16594022919229],[-151.78974118581183,59.16422210981109],[-151.80768765577653,59.13501408033079],[-151.86152706567066,59.16594022919229]]],[[[-152.08406329323293,60.346288244072426],[-151.97997376743766,60.41415395962959],[-151.95125941549415,60.51036864497644],[-151.839991301713,60.485455913949124],[-151.9404915335153,60.430476093750926],[-151.9727951794518,60.388382168911676],[-151.9548487094871,60.36776473633735],[-152.08406329323293,60.346288244072426]]],[[[-152.6404038621386,60.16502664935648],[-152.57938586425863,60.17018100750006],[-152.56143939429393,60.09458375472754],[-152.6404038621386,60.16502664935648]]],[[[-153.55926312433124,59.39101386812867],[-153.4121020706207,59.41506753946538],[-153.34749477874777,59.37812797276972],[-153.36544124871247,59.336893107621066],[-153.4121020706207,59.32314815257152],[-153.51619159641595,59.32057097349973],[-153.573620300303,59.37125549524494],[-153.55926312433124,59.39101386812867]]],[[[-162.68324845438454,63.58408421793217],[-162.61505186851866,63.621882844318435],[-162.53967669466692,63.63562779936798],[-162.45353363883638,63.62102378462784],[-162.3745691709917,63.62617814277142],[-162.34226552505524,63.59439293421933],[-162.34585481904818,63.55143994968948],[-162.61505186851866,63.54027217371173],[-162.6796591603916,63.556594307833066],[-162.68324845438454,63.58408421793217]]],[[[-171.8395374303743,63.548003710927105],[-171.8323588423884,63.579788919479185],[-171.7426264925649,63.65452711256111],[-171.75339437454375,63.718956589355884],[-171.7246800226002,63.734419663786625],[-171.7426264925649,63.783386066150655],[-171.66725131871317,63.78596324522245],[-171.63853696676966,63.749882738217366],[-171.65289414274142,63.70864787306873],[-171.60982261482613,63.679439843588426],[-171.380107799278,63.630473441224396],[-171.1037321618216,63.58923857607576],[-170.9063209922099,63.57205738226381],[-170.6981419406194,63.64679557534575],[-170.48996288902887,63.69662103740036],[-170.28178383743835,63.68459420173201],[-170.1776943116431,63.625319083080825],[-170.09514054980548,63.61243318772186],[-170.04130113991138,63.52309097989979],[-170.04847972789727,63.4904467116571],[-169.85824714627145,63.44233936898368],[-169.65724668266682,63.430312533315316],[-169.57828221482214,63.402822623216224],[-169.5459785688857,63.372755534045325],[-169.41676398513982,63.35557434023339],[-169.1009061137611,63.33839314642145],[-169.05065599785996,63.34354750456504],[-168.6845480105801,63.2962992215822],[-168.78145894838946,63.18376240211401],[-168.86042341623414,63.14682283541835],[-169.04347740987407,63.17688992458923],[-169.1978170515705,63.176030864898635],[-169.3772817512175,63.151118133871336],[-169.53521068690685,63.0746618214082],[-169.57110362683625,63.02225918028179],[-169.5675143328433,62.97672901668015],[-169.63930021270212,62.937212270912696],[-169.74697903249032,62.95611158410583],[-169.73621115051148,62.97672901668015],[-169.82953279432792,63.07895711986119],[-169.944390202102,63.13221882067819],[-170.123854901749,63.18376240211401],[-170.26383736747366,63.179467103661025],[-170.303319601396,63.23874222231221],[-170.36433759927598,63.28599050529505],[-170.55815947489472,63.35471528054279],[-170.86683875828757,63.41399039919398],[-171.10014286782865,63.42344005579055],[-171.26883968549683,63.38564142940429],[-171.33344697736976,63.33581596734966],[-171.4626615611156,63.30660793786937],[-171.56316179291792,63.33495690765906],[-171.73903719857196,63.36588305652056],[-171.82518025440254,63.437185010840096],[-171.8503053123531,63.48529235351353],[-171.8395374303743,63.548003710927105]]]]},"properties":{"name":"Alaska"},"id":"02"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-85.42010596235961,34.080538204072035],[-85.4631774902749,34.28671252981529],[-85.51342760617605,34.52381300442004],[-85.52778478214782,34.5891015409054],[-85.5349633701337,34.62346392852928],[-85.58162419204191,34.86056440313403],[-85.60674924999249,34.98426899857998],[-85.47394537225372,34.98340993888938],[-85.36267725847259,34.98340993888938],[-85.2657663206632,34.985128058270575],[-84.97862280122801,34.98770523734237],[-84.80992598355984,34.98770523734237],[-84.77762233762337,34.98770523734237],[-84.61969340193401,34.988564297032966],[-84.32178200052,34.988564297032966],[-84.12796012490125,34.98770523734237],[-84.00592412914129,34.98770523734237],[-83.93772754327543,34.98770523734237],[-83.61828037790377,34.98684617765177],[-83.55008379203792,34.992859595485946],[-83.48188720617206,34.993718655176544],[-83.10860063090631,35.000591132701324],[-83.11936851288513,34.938738834978345],[-83.23063662666627,34.880322776017756],[-83.3239582704827,34.79012150850508],[-83.32036897648976,34.75919535964359],[-83.35267262242623,34.716242375113744],[-83.33831544645446,34.68703434563345],[-83.23063662666627,34.611437092860925],[-83.16961862878628,34.60542367502674],[-83.10501133691336,34.53669889977899],[-83.05117192701927,34.49546403463034],[-82.99374322313223,34.479141900509],[-82.90401087330874,34.48601437803377],[-82.87529652136521,34.47570566174661],[-82.8465821694217,34.42072584154841],[-82.83581428744287,34.365746021350205],[-82.7927427595276,34.3399742306323],[-82.77479628956289,34.288430649196485],[-82.74249264362643,34.25235014219142],[-82.74249264362643,34.20853809797097],[-82.71736758567586,34.150122039010384],[-82.67429605776057,34.12950460643606],[-82.64558170581705,34.07194760716607],[-82.5953315899159,34.030712742017414],[-82.5953315899159,34.01353154820548],[-82.56302794397944,33.95597454893549],[-82.52354571005709,33.94308865357653],[-82.45534912419124,33.88123635585355],[-82.35125959839598,33.83656525194252],[-82.24717007260072,33.75237740226402],[-82.2184557206572,33.68622980608806],[-82.19691995669956,33.630390926199254],[-82.15025913479134,33.59774665795658],[-82.11436619486194,33.59688759826598],[-82.02822313903138,33.545344016830164],[-82.01386596305963,33.53245812147121],[-81.98156231712316,33.48435077879778],[-81.92772290722907,33.46201522684226],[-81.91336573125731,33.441397794267935],[-81.93849078920789,33.40445822757227],[-81.92413361323612,33.37095489963899],[-81.93849078920789,33.34346498953989],[-81.83799055740558,33.27302209491094],[-81.85234773337733,33.24725030419304],[-81.80568691146911,33.211169797187964],[-81.78056185351853,33.22147851347513],[-81.75543679556796,33.198283901829015],[-81.77338326553266,33.180243648326474],[-81.74466891358914,33.141585962249614],[-81.64775797577975,33.094337679266786],[-81.6154543298433,33.094337679266786],[-81.5436684499845,33.04537127690276],[-81.4898290400904,33.0084317102071],[-81.5077755100551,32.95087471093711],[-81.46470398213982,32.8958948907389],[-81.45752539415393,32.85380096589965],[-81.42522174821748,32.8409150705407],[-81.42522174821748,32.76789499683996],[-81.41086457224571,32.744700385193845],[-81.42881104221041,32.701747400664004],[-81.40727527825278,32.694874923139224],[-81.39291810228102,32.65364005799057],[-81.4180431602316,32.62958638665386],[-81.38932880828808,32.59522399902998],[-81.32113222242222,32.559143492024916],[-81.28164998849988,32.55656631295312],[-81.27806069450695,32.5350898206882],[-81.19550693266932,32.46550598574985],[-81.20986410864109,32.436297956269556],[-81.15602469874699,32.34609668875688],[-81.14166752277522,32.34953292751927],[-81.12013175881758,32.2842443910339],[-81.15602469874699,32.24129140650406],[-81.14525681676817,32.22668739176391],[-81.11654246482465,32.18888876537765],[-81.1308996407964,32.16655321342213],[-81.1129531708317,32.11329151260512],[-81.03757799697996,32.08408348312483],[-80.99809576305763,32.09868749786497],[-80.91913129521295,32.03769425983259],[-80.88682764927648,32.03425802107021],[-80.84375612136121,32.023949304783045],[-80.86170259132591,31.96896948458484],[-80.91195270722707,31.944056753557533],[-80.94784564715647,31.95694264891648],[-80.96938141111411,31.91570778376783],[-80.9334884711847,31.908835306243056],[-80.99091717507174,31.85729172480724],[-81.06629234892348,31.87705009769097],[-81.0770602309023,31.828942755017543],[-81.03757799697996,31.819493098420978],[-81.06988164291643,31.76880857667576],[-81.1308996407964,31.72241935338353],[-81.15602469874699,31.72585559214592],[-81.19909622666226,31.72585559214592],[-81.18473905069051,31.701801920809203],[-81.1308996407964,31.695788502975027],[-81.13448893478935,31.623627488964885],[-81.17397116871169,31.55576177340773],[-81.19550693266932,31.567788609076082],[-81.26011422454225,31.548030236192353],[-81.26011422454225,31.529130922999222],[-81.19909622666226,31.53772151990519],[-81.17756046270462,31.51710408733087],[-81.26011422454225,31.404567267862674],[-81.28164998849988,31.326392836018357],[-81.27088210652106,31.29460762746627],[-81.2924178704787,31.20612447933479],[-81.33907869238692,31.18722516614166],[-81.36779304433044,31.13654064439644],[-81.4000966902669,31.133963465324648],[-81.4000966902669,31.072970227292267],[-81.41445386623866,31.026581004000036],[-81.44316821818218,31.016272287712873],[-81.49341833408334,30.977614601636013],[-81.44675751217513,30.956997169061687],[-81.40727527825278,30.977614601636013],[-81.40368598425984,30.908030766697664],[-81.46111468814688,30.769722156511563],[-81.44316821818218,30.70958797816978],[-81.4898290400904,30.725910112291118],[-81.54007915599156,30.713024216932162],[-81.60109715387154,30.72848729136291],[-81.71954385563855,30.74480942548425],[-81.74466891358914,30.766285917749173],[-81.80927620546206,30.79033958908589],[-81.87029420334203,30.792916768157674],[-81.9025978492785,30.82040667825678],[-81.94925867118671,30.827279155781554],[-81.98156231712316,30.776594634036336],[-82.02463384503845,30.78346711156111],[-82.01027666906668,30.762849678986782],[-82.0389910210102,30.749104723937236],[-82.03540172701727,30.707010799097986],[-82.04975890298903,30.65546721766217],[-82.00668737507375,30.577292785817853],[-82.01745525705256,30.47506468263682],[-82.0389910210102,30.434688877178765],[-82.03540172701727,30.384863415124144],[-82.04975890298903,30.362527863168623],[-82.10359831288312,30.368541281002805],[-82.17179489874898,30.35909162440624],[-82.21127713267133,30.4243801608916],[-82.2005092506925,30.485373398923983],[-82.22563430864308,30.507708950879504],[-82.23281289662896,30.556675353243527],[-82.21486642666426,30.568702188911885],[-82.41945618426183,30.581588084270834],[-82.45893841818418,30.584165263342626],[-82.58456370793708,30.591896800557997],[-82.68865323373234,30.59791021839218],[-83.13731498284983,30.623682009110084],[-83.27370815458154,30.632272606016052],[-83.35626191641916,30.637426964159637],[-83.6111017899179,30.65117191920919],[-83.74390566765668,30.658044396733963],[-84.00592412914129,30.67178935178351],[-84.08488859698596,30.676084650236497],[-84.28229976659766,30.685534306833063],[-84.37921070440704,30.68982960528605],[-84.86376539345393,30.711306097550967],[-84.87453327543275,30.727628231672313],[-84.9140155093551,30.75254096269962],[-84.93555127331273,30.81697043949439],[-84.94272986129862,30.888272393813935],[-84.98221209522094,30.93294349772497],[-85.00374785917859,31.000809213282125],[-85.02528362313623,31.07554740636406],[-85.03605150511505,31.108191674606744],[-85.10783738497385,31.18636610645106],[-85.09706950299503,31.23275532974329],[-85.11501597295972,31.276567373963736],[-85.08989091500915,31.308352582515816],[-85.09348020900208,31.362473343023424],[-85.06476585705856,31.431198118271176],[-85.07194444504445,31.46813768496684],[-85.04681938709386,31.51710408733087],[-85.05758726907268,31.620191250202495],[-85.12578385493855,31.69492944328443],[-85.12578385493855,31.762795158841584],[-85.12578385493855,31.77997635265352],[-85.1401410309103,31.839251471304706],[-85.12937314893149,31.877909157381566],[-85.07912303303033,31.939761455104545],[-85.06117656306563,31.990445976849763],[-85.05040868108681,32.062606990859905],[-85.05758726907268,32.13562706456064],[-85.01092644716447,32.18029816847168],[-84.96067633126331,32.19833842197421],[-84.96785491924919,32.21895585454854],[-84.92119409734097,32.2309826902169],[-84.89247974539745,32.26362695845958],[-84.93555127331273,32.297989346083455],[-85.00015856518564,32.32204301742017],[-84.98221209522094,32.37788189730897],[-84.96426562525625,32.42255300122001],[-84.99656927119271,32.45347915008149],[-85.00374785917859,32.51017708966089],[-85.02169432914329,32.54282135790357],[-85.08271232702327,32.60810989438894],[-85.1042480909809,32.645049461084604],[-85.12937314893149,32.751572862718625],[-85.1221945609456,32.77304935498354],[-85.16885538285382,32.8117070410604],[-85.15449820688207,32.84263318992189],[-85.18680185281852,32.870123100021],[-85.23346267472674,33.10808263431634],[-85.23705196871968,33.12955912658126],[-85.29448067260672,33.42765283921839],[-85.30524855458555,33.48263265941659],[-85.337552200522,33.652726478154776],[-85.38780231642316,33.90185378842788],[-85.39857019840198,33.96370608615086],[-85.42010596235961,34.080538204072035]]]},"properties":{"name":"Georgia"},"id":"13"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-87.64187894398944,39.15758097549975],[-87.57368235812358,39.21857421353213],[-87.6023967100671,39.25980907868078],[-87.60957529805297,39.2821446306363],[-87.57727165211652,39.34056068959689],[-87.5306108302083,39.34829222681226],[-87.5306108302083,39.4771511804018],[-87.5306108302083,39.60772825337253],[-87.53420012420123,39.882627354363535],[-87.5306108302083,40.148076798757984],[-87.52702153621536,40.4770966602566],[-87.52702153621536,40.490841615306145],[-87.52702153621536,40.73653268681686],[-87.52702153621536,41.010572728117275],[-87.52702153621536,41.16606253211531],[-87.52702153621536,41.29835772446724],[-87.52702153621536,41.47016966258662],[-87.52343224222241,41.70812919688196],[-87.46959283232832,41.672907749567486],[-87.42652130441304,41.69008894337943],[-87.40139624646245,41.67720304802047],[-87.4229320104201,41.642840660396594],[-87.32602107261073,41.623082287512865],[-87.22193154681547,41.62394134720346],[-87.12143131501314,41.64541783946839],[-86.93119873338733,41.710706375953755],[-86.82351991359913,41.760531838008376],[-86.52560851218512,41.75967277831778],[-86.2276971107711,41.75967277831778],[-86.06258958709587,41.760531838008376],[-85.78980324363243,41.75881371862718],[-85.6605886598866,41.75881371862718],[-85.29089137861378,41.75967277831778],[-85.19756973479734,41.75967277831778],[-84.82428315953159,41.75967277831778],[-84.80633668956689,41.760531838008376],[-84.80633668956689,41.696102361213605],[-84.80633668956689,41.530303840928404],[-84.80274739557396,41.426357618366175],[-84.80274739557396,41.27086781436814],[-84.80274739557396,41.252827560865605],[-84.80274739557396,40.98909623585235],[-84.80274739557396,40.92294863967639],[-84.80274739557396,40.72794208991089],[-84.80274739557396,40.57245228591285],[-84.80274739557396,40.352533005120044],[-84.80274739557396,40.310439080280794],[-84.80992598355984,40.129177485564846],[-84.80992598355984,40.005472890118895],[-84.81351527755277,39.916989741987415],[-84.81351527755277,39.7262784906749],[-84.81351527755277,39.56735244791447],[-84.81710457154571,39.52182228431283],[-84.82069386553866,39.305339242282415],[-84.82069386553866,39.105178334373335],[-84.8888904514045,39.066520648296475],[-84.87812256942568,39.03044014129141],[-84.83146174751747,38.961715366043656],[-84.87094398143981,38.92907109780097],[-84.87094398143981,38.900722128011274],[-84.79915810158101,38.89127247141471],[-84.79556880758807,38.85691008379083],[-84.83146174751747,38.83027923338233],[-84.80992598355984,38.792480606996065],[-84.8888904514045,38.79505778606785],[-85.02528362313623,38.76241351782517],[-85.17244467684677,38.68767532474324],[-85.20115902879029,38.69111156350563],[-85.25858773267733,38.73750078679786],[-85.33396290652907,38.735782667416665],[-85.4093380803808,38.73750078679786],[-85.45240960829608,38.70915181700816],[-85.4272845503455,38.5863062812528],[-85.41651666836668,38.54077611765117],[-85.43446313833138,38.52445398352983],[-85.47394537225372,38.50641373002729],[-85.4990704302043,38.46861510364103],[-85.60674924999249,38.439407074160734],[-85.63905289592896,38.38013195550955],[-85.67494583585835,38.30109846397463],[-85.74314242172422,38.26759513604135],[-85.78980324363243,38.28821256861568],[-85.82928547755478,38.27704479263792],[-85.8508212415124,38.222924032130315],[-85.90107135741357,38.17997104760047],[-85.90466065140652,38.08633354132541],[-85.92260712137121,38.026199362983625],[-85.94414288532884,38.00815910948109],[-85.99798229522295,37.99956851257512],[-86.03387523515235,37.99011885597855],[-86.0482324111241,37.95919270711706],[-86.09489323303232,38.00901816917168],[-86.17385770087701,38.00987722886228],[-86.26717934469345,38.057125511845115],[-86.27076863868638,38.13787712276122],[-86.33178663656636,38.180830107291065],[-86.37485816448164,38.19371600265002],[-86.3712688704887,38.16450797316973],[-86.32460804858049,38.15419925688256],[-86.32819734257342,38.13272276461764],[-86.37485816448164,38.131004645236445],[-86.40357251642516,38.10609191420914],[-86.4610012203122,38.12155498863988],[-86.43228686836868,38.08633354132541],[-86.45382263232632,38.050253034320335],[-86.48971557225572,38.045957735867354],[-86.52560851218512,38.02791748236482],[-86.52560851218512,37.961769886188854],[-86.50766204222042,37.92912561794617],[-86.59021580405803,37.9213940807308],[-86.59739439204392,37.8672733202232],[-86.65482309593095,37.842360589195884],[-86.64405521395214,37.906790065990656],[-86.67994815388154,37.915380662896624],[-86.71584109381094,37.8939041706317],[-86.75173403374033,37.91280348382483],[-86.79480556165561,37.98925979628795],[-86.81634132561325,37.99870945288452],[-86.8558235595356,37.987541676906766],[-86.90607367543674,37.94287057299572],[-86.97785955529555,37.92998467763677],[-87.04605614116142,37.8939041706317],[-87.06400261112611,37.8105753806438],[-87.08912766907669,37.787380768997686],[-87.12860990299903,37.78480358992589],[-87.15732425494255,37.838065290742904],[-87.22193154681547,37.84923306672066],[-87.26859236872369,37.87844109620096],[-87.30089601466014,37.89819946908469],[-87.37986048250482,37.93599809547095],[-87.45164636236362,37.94115245361453],[-87.50189647826478,37.90936724506244],[-87.55214659416593,37.92568937918379],[-87.57368235812358,37.96778330402304],[-87.6023967100671,37.972937662166615],[-87.62752176801767,37.91623972258722],[-87.58803953409534,37.861259902389016],[-87.63470035600356,37.82689751476514],[-87.67418258992589,37.82947469383693],[-87.66341470794707,37.8939041706317],[-87.69930764787648,37.89734040939409],[-87.83211152561525,37.876722976819764],[-87.87159375953759,37.9213940807308],[-87.92543316943168,37.90163570784707],[-87.93979034540345,37.87070955898558],[-87.90389740547405,37.81229350002499],[-87.94696893338933,37.77191769456694],[-88.02952269522694,37.79940760466604],[-88.06900492914929,37.80112572404723],[-88.08336210512105,37.830333753527526],[-88.04029057720577,37.822602216312156],[-88.09054069310693,37.89132699155991],[-88.01157622526225,37.8947632303223],[-88.06541563515634,37.919675961349604],[-88.01157622526225,37.9772329606196],[-88.00798693126931,38.02877654205541],[-88.03670128321284,38.05111209401093],[-87.96850469734697,38.06743422813228],[-87.9613261093611,38.100078496374955],[-88.00439763727637,38.08375636225362],[-87.92543316943168,38.14646771966719],[-87.97568328533285,38.198011301103],[-87.98645116731167,38.22979650965509],[-87.98645116731167,38.2564273600636],[-87.95773681536815,38.24010522594225],[-87.92543316943168,38.29852128490284],[-87.90748669946699,38.26845419573195],[-87.88236164151641,38.303675643046425],[-87.85364728957289,38.27532667325673],[-87.80698646766467,38.36295076169761],[-87.77827211572115,38.37068229891298],[-87.7459684697847,38.41449434313343],[-87.73878988179881,38.47548758116581],[-87.65264682596826,38.511568088170876],[-87.65264682596826,38.56826602775027],[-87.6203431800318,38.63956798206981],[-87.59521812208122,38.66705789216891],[-87.54496800618006,38.677366608456076],[-87.4947178902789,38.742655144941445],[-87.49830718427184,38.77873565194651],[-87.53420012420123,38.85261478533785],[-87.55214659416593,38.85948726286262],[-87.52702153621536,38.90759460553605],[-87.5126643602436,38.954842888518876],[-87.57727165211652,38.989205276142755],[-87.57368235812358,39.05707099169991],[-87.63111106201062,39.10431927468274],[-87.64187894398944,39.15758097549975]]]},"properties":{"name":"Indiana"},"id":"18"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-82.50200994609946,43.1685306708967],[-82.4876527701277,43.10238307472074],[-82.42304547825478,43.00788650875508],[-82.4158668902689,42.966651643606426],[-82.45534912419124,42.92713489783897],[-82.48047418214182,42.80257124270242],[-82.46611700617005,42.762195437244365],[-82.50918853408534,42.66512169220692],[-82.52354571005709,42.607564692936926],[-82.58815300193001,42.550866753357525],[-82.64199241182412,42.554302992119915],[-82.6850639397394,42.51822248511485],[-82.68147464574645,42.57492042469424],[-82.71377829168291,42.59811503634035],[-82.67788535175352,42.611859991389906],[-82.62404594185942,42.66512169220692],[-82.67429605776057,42.68745724416244],[-82.70659970369704,42.68316194570945],[-82.79633205352053,42.653953916229156],[-82.8214571114711,42.62646400613006],[-82.78915346553465,42.60326939448394],[-82.78197487754878,42.56461170840708],[-82.83581428744287,42.56804794716947],[-82.87529652136521,42.523376843258426],[-82.87170722737227,42.451215829248284],[-82.89683228532284,42.385068233072325],[-82.95785028320283,42.339538069470684],[-83.06552910299102,42.31806157720577],[-83.13013639486394,42.234732787217865],[-83.12295780687806,42.12563220651206],[-83.13372568885688,42.087833580125796],[-83.18756509875098,42.06635708786087],[-83.18756509875098,42.02941752116521],[-83.19115439274393,42.00622290951909],[-83.24858309663097,41.97271958158581],[-83.2701188605886,41.93921625365253],[-83.31677968249681,41.93578001489014],[-83.3419047404474,41.879941135001346],[-83.38138697436975,41.87049147840478],[-83.44240497224972,41.8086391806818],[-83.42445850228502,41.74077346512465],[-83.45317285422854,41.73304192790927],[-83.76185213762137,41.723592271312704],[-83.88029883938839,41.72015603255032],[-84.36126423444234,41.70641107750077],[-84.40074646836469,41.70555201781017],[-84.80633668956689,41.696102361213605],[-84.80633668956689,41.760531838008376],[-84.82428315953159,41.75967277831778],[-85.19756973479734,41.75967277831778],[-85.29089137861378,41.75967277831778],[-85.6605886598866,41.75881371862718],[-85.78980324363243,41.75881371862718],[-86.06258958709587,41.760531838008376],[-86.2276971107711,41.75967277831778],[-86.52560851218512,41.75967277831778],[-86.82351991359913,41.760531838008376],[-86.71584109381094,41.818947896968965],[-86.61893015600155,41.89368609005089],[-86.48612627826277,42.11790066929669],[-86.36409028250281,42.24332338412383],[-86.29589369663697,42.35843738266382],[-86.27435793267932,42.4194306206962],[-86.24923287472875,42.48042385872858],[-86.22410781677816,42.59467879757797],[-86.2276971107711,42.64450425963259],[-86.20616134681346,42.71924245271452],[-86.2097506408064,42.76734979538794],[-86.2097506408064,42.859269182281814],[-86.23128640476405,43.015618045970456],[-86.27076863868638,43.11870520884208],[-86.39639392843928,43.31628893767937],[-86.43587616236162,43.39704054859548],[-86.4610012203122,43.47263780136801],[-86.53996568815688,43.61781888907888],[-86.53996568815688,43.659053754227536],[-86.4610012203122,43.74667784266842],[-86.43228686836868,43.81969791636916],[-86.43228686836868,43.855778423374225],[-86.46459051430514,43.970892421914215],[-86.5148406302063,44.048207794067935],[-86.50048345423454,44.075697704167034],[-86.42869757437575,44.11950974838748],[-86.38562604646046,44.178784867038665],[-86.34255451854519,44.24922776166761],[-86.26717934469345,44.34544244701446],[-86.23487569875698,44.51811344482444],[-86.22410781677816,44.594569757287566],[-86.26000075670757,44.66329453253532],[-86.25641146271462,44.691643502325014],[-86.15950052490524,44.72858306902068],[-86.08771464504645,44.741468964379635],[-86.0733574690747,44.7784085310753],[-86.0733574690747,44.88493193270932],[-86.03746452914528,44.91585808157081],[-85.99080370723706,44.90039500714006],[-85.93337500335004,44.969119782387814],[-85.8687677114771,44.93905269321692],[-85.80774971359713,44.95022046919468],[-85.77903536165361,44.97771037929378],[-85.74673171571716,45.05158951268512],[-85.71083877578775,45.06533446773467],[-85.65699936589365,45.14608607865078],[-85.61751713197131,45.18646188410884],[-85.58521348603486,45.180448466274655],[-85.54214195811957,45.21051555544555],[-85.53137407614076,45.177012227512265],[-85.59957066200661,45.149522317413165],[-85.61033854398543,45.1134418104081],[-85.56726701607016,45.04385797546975],[-85.64982077790778,44.9742741405314],[-85.60315995599956,44.99059627465274],[-85.60315995599956,44.92702585754857],[-85.6246957199572,44.92101243971439],[-85.65341007190072,44.84885142570425],[-85.63905289592896,44.77497229231292],[-85.59957066200661,44.76552263571635],[-85.53137407614076,44.8900862908529],[-85.52060619416194,44.9742741405314],[-85.47394537225372,44.991455334343335],[-85.50265972419724,44.85572390322903],[-85.55649913409134,44.817925276842765],[-85.57803489804898,44.760368277572766],[-85.52778478214782,44.748341441904415],[-85.4990704302043,44.80418032179321],[-85.44164172631726,44.86001920168201],[-85.39498090440904,44.93132115600155],[-85.36626655246552,45.068770706497055],[-85.38780231642316,45.207938376373754],[-85.36985584645846,45.27064973378733],[-85.30883784857848,45.31274365862658],[-85.27294490864908,45.31532083769837],[-85.20833761677616,45.35655570284702],[-85.09706950299503,45.36686441913418],[-85.03246221112211,45.360851001300006],[-84.91760480334803,45.39349526954269],[-84.92119409734097,45.42184423933239],[-85.03964079910799,45.43644825407253],[-85.08989091500915,45.476824059530585],[-85.11860526695267,45.57475686425863],[-85.06117656306563,45.6391863410534],[-85.01451574115741,45.65121317672176],[-84.94272986129862,45.71048829537295],[-84.9499084492845,45.73711914578145],[-85.01451574115741,45.76031375742757],[-84.79915810158101,45.74742786206861],[-84.77403304363044,45.78952178690786],[-84.73096151571515,45.78780366752667],[-84.7166043397434,45.76632717526174],[-84.5550861100611,45.70189769846698],[-84.46176446624466,45.65207223641236],[-84.41510364433644,45.669253430224295],[-84.3756214104141,45.65550847517474],[-84.32896058850588,45.66409907208072],[-84.20333529875299,45.627159505385045],[-84.12796012490125,45.56187096889968],[-84.11719224292243,45.51290456653566],[-84.05617424504244,45.48970995488954],[-83.93772754327543,45.49314619365193],[-83.90901319133191,45.485414656436554],[-83.80492366553665,45.419267060260594],[-83.72236990369903,45.41325364242642],[-83.60033390793907,45.35226040439404],[-83.49624438214381,45.357414762537616],[-83.42086920829207,45.29040810667106],[-83.38138697436975,45.268931614406135],[-83.4136906203062,45.24573700276002],[-83.38856556235562,45.207079316683156],[-83.3598512104121,45.16326727246272],[-83.32036897648976,45.13749548174481],[-83.2701188605886,45.02324054289542],[-83.3419047404474,45.041280796397956],[-83.39933344433445,45.07048882587825],[-83.45317285422854,45.03526737856378],[-83.43881567825677,44.94077081259812],[-83.3957441503415,44.902972186211855],[-83.32036897648976,44.880636634256334],[-83.32036897648976,44.85830108230081],[-83.29524391853919,44.79301254581545],[-83.29883321253212,44.74576426283262],[-83.27370815458154,44.713979054280536],[-83.28806533055331,44.652985816248155],[-83.31677968249681,44.59542881697816],[-83.31677968249681,44.51124096729966],[-83.33113685846858,44.34028808887088],[-83.37420838638386,44.32740219351193],[-83.42445850228502,44.272422373313724],[-83.51060155811558,44.27414049269492],[-83.55008379203792,44.22689220971209],[-83.56444096800968,44.16332179260792],[-83.58238743797438,44.0567983909739],[-83.65058402384024,44.052503092520915],[-83.67929837578376,44.03618095839958],[-83.67929837578376,43.99408703356033],[-83.83004872348724,43.98893267541675],[-83.87670954539546,43.95886558624586],[-83.90901319133191,43.91075824357243],[-83.9269596612966,43.787053648126474],[-83.95567401324013,43.750973141121406],[-83.90901319133191,43.67279870927709],[-83.85158448744487,43.64530879917798],[-83.81928084150842,43.67365776896768],[-83.80133437154372,43.641013500725],[-83.72954849168491,43.62297324722247],[-83.70083413974139,43.601496754957545],[-83.6469947298473,43.60407393402933],[-83.54649449804498,43.70716109690096],[-83.49624438214381,43.70716109690096],[-83.47470861818618,43.73121476823768],[-83.49624438214381,43.77244963338633],[-83.46394073620736,43.81024825977259],[-83.4316370902709,43.88498645285452],[-83.41727991429914,43.84203346832468],[-83.34908332843328,43.86866431873318],[-83.33113685846858,43.89357704976049],[-83.40651203232032,43.920207900169],[-83.32036897648976,43.917630721097204],[-83.28088674256742,43.93824815367153],[-83.26294027260272,43.973469600986],[-83.1803865107651,43.98206019789197],[-83.05835051500515,44.006113869228685],[-83.0260468690687,44.044771555305545],[-82.91477875528754,44.070543346023456],[-82.87529652136521,44.044771555305545],[-82.7927427595276,44.02329506304062],[-82.73890334963349,43.989791735107346],[-82.67788535175352,43.88412739316392],[-82.64199241182412,43.85234218461184],[-82.61686735387353,43.76901339462394],[-82.60609947189472,43.69083896277962],[-82.59892088390883,43.590328978979784],[-82.53790288602886,43.43741635405353],[-82.52354571005709,43.225228610476094],[-82.50200994609946,43.1685306708967]]],[[[-88.1156657510575,45.92181697925979],[-88.24488033480334,45.96305184440843],[-88.2951304507045,45.95102500874008],[-88.38127350653507,45.99140081419814],[-88.42434503445034,45.97851491883918],[-88.49972020830208,45.996555172341715],[-88.50689879628796,46.01803166460664],[-88.60380973409734,46.016313545225444],[-88.61457761607616,45.988823635126344],[-88.66482773197731,45.993118933579325],[-88.68277420194201,46.01459542584425],[-88.74020290582905,46.027481321203204],[-88.81198878568786,46.02146790336903],[-88.93402478144782,46.073870544495435],[-88.99145348533484,46.097065156141554],[-89.09195371713717,46.138300021290206],[-89.92825921749217,46.299803243122426],[-90.12208109311092,46.33674280981809],[-90.11849179911799,46.35993742146421],[-90.2189920309203,46.50340038979389],[-90.31590296872969,46.51714534484344],[-90.35179590865908,46.53776277741777],[-90.39486743657436,46.53260841927418],[-90.416403200532,46.566111747207465],[-90.34820661466614,46.60047413483134],[-90.30513508675087,46.60305131390313],[-90.16515262102621,46.64514523874238],[-90.02875944929448,46.674353268222674],[-89.88877698356983,46.76541359542595],[-89.79186604576046,46.81867529624296],[-89.67341934399343,46.8332793109831],[-89.61957993409933,46.81867529624296],[-89.51549040830407,46.84186990788907],[-89.4365259404594,46.83929272881728],[-89.24988265282653,46.90372220561205],[-89.14220383303832,46.98447381652816],[-88.98786419134191,46.997359711887114],[-88.93402478144782,47.032581159201584],[-88.9053104295043,47.085842860018595],[-88.81557807968079,47.14168173990739],[-88.76532796377964,47.155426694956944],[-88.65764914399143,47.22586958958589],[-88.57509538215382,47.24562796246962],[-88.51407738427383,47.286003767927674],[-88.46023797437974,47.340124528435275],[-88.38845209452094,47.38479563234632],[-88.18027304293042,47.45781570604705],[-87.9792725793258,47.479292198311974],[-87.7998078796788,47.4732787804778],[-87.71725411784118,47.43977545254452],[-87.71366482384823,47.40111776646766],[-87.75314705777058,47.405413064920644],[-87.81416505565055,47.38479563234632],[-87.88236164151641,47.39596340832408],[-87.95773681536815,47.3873728114181],[-87.93979034540345,47.34699700596005],[-88.05464775317753,47.298030603596025],[-88.16232657296572,47.216419932989325],[-88.22693386483864,47.20009779886798],[-88.24846962879629,47.135668322073215],[-88.27359468674686,47.143399859288586],[-88.29871974469744,47.09872875537754],[-88.3489698605986,47.07639320342203],[-88.3669163305633,47.01883620415203],[-88.40998785847859,46.977601339003385],[-88.44229150441504,46.9724469808598],[-88.44947009240092,46.93894365292652],[-88.48536303233033,46.83156119160191],[-88.46382726837268,46.78689008769087],[-88.49613091430913,46.75682299851998],[-88.4566486803868,46.75940017759177],[-88.384862800528,46.8341383706737],[-88.37409491854918,46.87193699705996],[-88.3489698605986,46.8607692210822],[-88.24488033480334,46.92949399632995],[-88.14438010300103,46.966433563025625],[-88.1874516309163,46.91918528004279],[-88.23052315883159,46.89856784746847],[-88.28436256872568,46.832420251292504],[-88.17668374893749,46.904581265302646],[-88.08336210512105,46.92004433973339],[-88.04387987119871,46.91231280251802],[-87.90030811148111,46.909735623446224],[-87.84646870158701,46.88396383272832],[-87.8177543496435,46.89083631025309],[-87.75673635176351,46.8607692210822],[-87.72802199982,46.827265893148926],[-87.67418258992589,46.83671554974549],[-87.59521812208122,46.78259478923788],[-87.5844502401024,46.73019214811147],[-87.52343224222241,46.68809822327223],[-87.50189647826478,46.64772241781417],[-87.45164636236362,46.60562849297492],[-87.38344977649776,46.59274259761597],[-87.39062836448365,46.52487688205881],[-87.3511461305613,46.500823210722096],[-87.25782448674487,46.48793731536315],[-87.11784202102021,46.49480979288792],[-87.0173417892179,46.53346747896478],[-86.97785955529555,46.52659500144001],[-86.92760943939439,46.46474270371703],[-86.88453791147911,46.44154809207091],[-86.81634132561325,46.43811185330853],[-86.78762697366973,46.477628599075985],[-86.73019826978269,46.4716151812418],[-86.69789462384624,46.438970912999125],[-86.68353744787447,46.49824603165031],[-86.70866250582506,46.543776195251944],[-86.65123380193802,46.56095738906388],[-86.62610874398743,46.53346747896478],[-86.64764450794507,46.485360136291355],[-86.5866265100651,46.463024584335834],[-86.49330486624866,46.52487688205881],[-86.34973310653106,46.57813858287582],[-86.13796476094761,46.67263514884148],[-86.09848252702527,46.654594895338946],[-85.86517841748417,46.689816342653415],[-85.7144280697807,46.67693044729447],[-85.58880278002779,46.674353268222674],[-85.4811239602396,46.68036668605685],[-85.23705196871968,46.75596393882938],[-85.17244467684677,46.76369547604475],[-85.06476585705856,46.75768205821058],[-84.9499084492845,46.76970889387893],[-85.02887291712916,46.69754787986879],[-85.03605150511505,46.581574821638206],[-85.02887291712916,46.542917135561346],[-85.05758726907268,46.52659500144001],[-85.02528362313623,46.48278295721956],[-84.96785491924919,46.47591047969479],[-84.93555127331273,46.48965543474434],[-84.9140155093551,46.46731988278882],[-84.86017609946099,46.469897061860614],[-84.79915810158101,46.4458433905239],[-84.67712210582106,46.48793731536315],[-84.63046128391284,46.48450107660076],[-84.5909790499905,46.4449843308333],[-84.59456834398344,46.41491724166241],[-84.50483599415993,46.438970912999125],[-84.47971093620936,46.43295749516494],[-84.44381799627996,46.488796375053745],[-84.3756214104141,46.50941380762807],[-84.29306764857648,46.493091673506726],[-84.25358541465414,46.500823210722096],[-84.22487106271062,46.53432653865538],[-84.12796012490125,46.5300312402024],[-84.11001365493655,46.504259449484486],[-84.14590659486595,46.4183534804248],[-84.12078153691536,46.31526631755317],[-84.11719224292243,46.23365564694646],[-84.22128176871769,46.231937527565265],[-84.24999612066121,46.17609864767647],[-84.1961567107671,46.165789931389305],[-84.1782102408024,46.18383018489184],[-84.1243708309083,46.180393946129456],[-84.09565647896478,46.14774967788677],[-84.02745989309892,46.13142754376543],[-84.07412071500714,46.097065156141554],[-83.9879776591766,46.03263567934679],[-83.9449061312613,46.03177661965619],[-83.87312025140251,45.993118933579325],[-83.84440589945899,46.02576320182201],[-83.79415578355783,45.99569611265112],[-83.7654414316143,46.01803166460664],[-83.82287013550135,46.10393763366633],[-83.7726200196002,46.09105173830738],[-83.62545896588965,46.10221951428514],[-83.58238743797438,46.08933361892618],[-83.53213732207321,46.011159187081866],[-83.47470861818618,45.98452833667336],[-83.51060155811558,45.92954851647516],[-83.56085167401673,45.91236732266322],[-83.65776261182612,45.9458706505965],[-83.76903072560725,45.93212569554695],[-83.88029883938839,45.96820620255202],[-83.91978107331073,45.957897486264855],[-84.01669201112011,45.95875654595545],[-84.11360294892948,45.97851491883918],[-84.32896058850588,45.95617936688366],[-84.3756214104141,45.93212569554695],[-84.50842528815288,45.99140081419814],[-84.56226469804697,46.03263567934679],[-84.60892551995519,46.02662226151261],[-84.65558634186341,46.05239405223052],[-84.69147928179281,46.01717260491604],[-84.68430069380693,45.973360560695596],[-84.73814010370103,45.9458706505965],[-84.7345508097081,45.90721296451964],[-84.70224716377163,45.853092204012036],[-84.74531869168692,45.83591101020009],[-84.83146174751747,45.87199151720517],[-84.84222962949629,45.89862236761367],[-84.91760480334803,45.930407576165756],[-84.93555127331273,45.95617936688366],[-85.01451574115741,46.011159187081866],[-85.15090891288912,46.05067593284932],[-85.19756973479734,46.04466251501514],[-85.31601643656437,46.08675643985439],[-85.38062372843729,46.08246114140141],[-85.4272845503455,46.10221951428514],[-85.4452310203102,46.085038320473195],[-85.51342760617605,46.09448797706976],[-85.60315995599956,46.030058500275],[-85.66417795387953,45.96734714286142],[-85.696481599816,45.96047466533665],[-85.81133900759008,45.980233038220376],[-85.86517841748417,45.96820620255202],[-85.92260712137121,45.94844782966829],[-85.91542853338532,45.919239800187995],[-85.99798229522295,45.95102500874008],[-86.0733574690747,45.965629023480226],[-86.15950052490524,45.95360218781187],[-86.19539346483465,45.96305184440843],[-86.27794722667227,45.942434411834114],[-86.32460804858049,45.90635390482904],[-86.33178663656636,45.85223314432144],[-86.36409028250281,45.79038084659846],[-86.41434039840398,45.79381708536084],[-86.4610012203122,45.757736578355775],[-86.51842992419924,45.74742786206861],[-86.53996568815688,45.707911116301155],[-86.5866265100651,45.70533393722936],[-86.5866265100651,45.6666762511525],[-86.62969803798038,45.65894471393713],[-86.61534086200862,45.60654207281072],[-86.68712674186742,45.634031982909825],[-86.71943038780387,45.6683943705337],[-86.6763588598886,45.691588982179816],[-86.67276956589565,45.72079701166011],[-86.63328733197332,45.74742786206861],[-86.62969803798038,45.78179024969249],[-86.58303721607216,45.7783540109301],[-86.52919780617806,45.853092204012036],[-86.53996568815688,45.8900317707077],[-86.58303721607216,45.89862236761367],[-86.64764450794507,45.8341928908189],[-86.7840376796768,45.854810323393224],[-86.77326979769798,45.810998279172786],[-86.8199306196062,45.77062247371473],[-86.8378770895709,45.722515131041305],[-86.94555590935909,45.6958842806328],[-86.96350237932378,45.672689668986685],[-86.98503814328143,45.70619299691996],[-86.9742702613026,45.753441279902795],[-86.98862743727437,45.810998279172786],[-87.0173417892179,45.838488189271885],[-87.05323472914729,45.82216605515055],[-87.07118119911199,45.719078892278915],[-87.06041331713317,45.70877017599175],[-87.1716814309143,45.661521893008924],[-87.26500307473074,45.55070319292192],[-87.32602107261073,45.42528047809478],[-87.39421765847658,45.369441598205974],[-87.46600353833539,45.27322691285912],[-87.61316459204592,45.12375052669526],[-87.59162882808828,45.095401556905564],[-87.65982541395414,45.107428392573915],[-87.68853976589766,45.14780419803197],[-87.73520058780588,45.17185786936869],[-87.74237917579175,45.19677060039599],[-87.68853976589766,45.29813964388643],[-87.64905753197532,45.33937450903508],[-87.65623611996119,45.368582538515376],[-87.69571835388354,45.3900590307803],[-87.75314705777058,45.349683225322245],[-87.85005799557995,45.34109262841628],[-87.87518305353053,45.38146843387433],[-87.85005799557995,45.40208586644866],[-87.86082587755877,45.43473013469134],[-87.81416505565055,45.46393816417164],[-87.79262929169292,45.49830055179551],[-87.80339717367173,45.538676357253564],[-87.77468282172822,45.59795147590475],[-87.82493293762937,45.66238095269952],[-87.7818614097141,45.67354872867728],[-87.81057576165762,45.711347355063545],[-87.84646870158701,45.722515131041305],[-87.87877234752347,45.75515939928398],[-87.96491540335403,45.75859563804637],[-87.99721904929049,45.79553520474204],[-88.05823704717046,45.780931190001894],[-88.10489786907868,45.79123990628906],[-88.13720151501515,45.81872981638816],[-88.07618351713516,45.8634009202992],[-88.1156657510575,45.92181697925979]]],[[[-85.37703443444434,45.81271639855398],[-85.35190937649377,45.79553520474204],[-85.39498090440904,45.7783540109301],[-85.37703443444434,45.81271639855398]]],[[[-85.52419548815487,45.82989759236592],[-85.44882031430313,45.796394264432635],[-85.4631774902749,45.765468115571146],[-85.53137407614076,45.79811238381383],[-85.52419548815487,45.82989759236592]]],[[[-85.62828501395013,45.59795147590475],[-85.60315995599956,45.6391863410534],[-85.59239207402074,45.69846145970459],[-85.57085631006309,45.711347355063545],[-85.56726701607016,45.76031375742757],[-85.50265972419724,45.754300339593385],[-85.50624901819018,45.68128026589265],[-85.49189184221842,45.60997831157311],[-85.56008842808427,45.572179685186846],[-85.62828501395013,45.59795147590475]]],[[[-85.70007089380894,45.73626008609085],[-85.65341007190072,45.74313256361563],[-85.67135654186542,45.696743340323394],[-85.696481599816,45.69760240001399],[-85.70007089380894,45.73626008609085]]],[[[-84.65199704787048,45.8625418606086],[-84.62328269592696,45.877145875348745],[-84.5909790499905,45.82560229391293],[-84.3576749404494,45.77148153340533],[-84.41869293832939,45.72165607135071],[-84.501246700167,45.73711914578145],[-84.55149681606815,45.78952178690786],[-84.65199704787048,45.8625418606086]]],[[[-86.69071603586036,45.61685078909788],[-86.61893015600155,45.56187096889968],[-86.64764450794507,45.54297165570655],[-86.66200168391684,45.57389780456804],[-86.71225179981799,45.610837371263706],[-86.69071603586036,45.61685078909788]]],[[[-85.88312488744887,45.44332073159731],[-85.83646406554065,45.42871671685716],[-85.83287477154771,45.37803219511194],[-85.88312488744887,45.44332073159731]]],[[[-86.0661788810888,45.1400726608166],[-86.04464311713117,45.15983103370033],[-85.97644653126531,45.138354541435405],[-85.99798229522295,45.05588481113811],[-86.05900029310293,45.10055591504914],[-86.0661788810888,45.1400726608166]]],[[[-86.15591123091231,45.01035464753647],[-86.11642899698997,45.04815327392273],[-86.09489323303232,45.007777468464674],[-86.15591123091231,45.01035464753647]]],[[[-89.25347194681946,47.87617777536774],[-89.17809677296772,47.93545289401893],[-88.83711384363843,48.056580310393095],[-88.81198878568786,48.0548621910119],[-88.65764914399143,48.1390500406904],[-88.5463810302103,48.17513054769547],[-88.52484526625265,48.1656808910989],[-88.42434503445034,48.190593622126215],[-88.42793432844329,48.1665399507895],[-88.47100585635856,48.15279499573995],[-88.57868467614676,48.084070220492194],[-88.57868467614676,48.05829842977429],[-88.66841702597026,48.01105014679146],[-88.85147101961019,47.96551998318982],[-89.00222136731367,47.90882204361043],[-88.99504277932779,47.89164084979849],[-88.91248901749017,47.89164084979849],[-89.12425736307362,47.828929492384916],[-89.18886465494654,47.83150667145671],[-89.25347194681946,47.87617777536774]]]]},"properties":{"name":"Michigan"},"id":"26"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.24846962879629,33.744645865048646],[-88.27359468674686,33.5341762408524],[-88.30589833268333,33.28848516934169],[-88.34179127261272,32.991250516395155],[-88.3489698605986,32.92939821867218],[-88.3669163305633,32.74727756426564],[-88.38845209452094,32.57804280521805],[-88.4207557404574,32.30829806237062],[-88.43152362243622,32.22754645145451],[-88.4745951503515,31.894231291502912],[-88.46382726837268,31.698365682046813],[-88.44947009240092,31.435493416724164],[-88.43152362243622,31.11420509244092],[-88.42434503445034,30.99823203421034],[-88.41357715247152,30.735359768887683],[-88.39563068250682,30.369400340693403],[-88.40998785847859,30.341910430594304],[-88.43511291642916,30.354796325953252],[-88.47100585635856,30.32043393832938],[-88.53561314823148,30.34362854997549],[-88.5822739701397,30.330742654616543],[-88.6002204401044,30.356514445334447],[-88.66482773197731,30.362527863168623],[-88.72943502385023,30.342769490284894],[-88.81198878568786,30.384863415124144],[-88.81557807968079,30.37541375852758],[-88.81916737367374,30.360809743787435],[-88.89454254752548,30.393454012030112],[-88.97350701537015,30.390876832958327],[-89.08477512915128,30.367682221312208],[-89.18527536095361,30.33160171430714],[-89.2929541807418,30.303252744517437],[-89.27859700477005,30.349641967809674],[-89.33961500265002,30.372836579455786],[-89.3647400606006,30.352219146881467],[-89.33243641466414,30.337615132141316],[-89.3288471206712,30.303252744517437],[-89.4185794704947,30.254286342153414],[-89.44729382243823,30.185561566905662],[-89.47959746837468,30.19415216381163],[-89.5262582902829,30.180407208762084],[-89.56932981819818,30.180407208762084],[-89.6159906401064,30.223360193291924],[-89.63034781607816,30.280058132871325],[-89.63034781607816,30.33933325152251],[-89.68418722597225,30.40548084769847],[-89.69136581395813,30.45960160820608],[-89.75956239982399,30.50513177180771],[-89.77391957579576,30.538635099740993],[-89.80981251572516,30.567843129221288],[-89.81699110371103,30.633990725397247],[-89.8492947496475,30.665775933949334],[-89.84570545565455,30.707010799097986],[-89.81699110371103,30.737077888268878],[-89.8313482796828,30.768004037130368],[-89.80622322173221,30.78948052939529],[-89.77391957579576,30.896862990719903],[-89.74879451784517,30.91318512484124],[-89.75238381183811,30.9518428109181],[-89.72725875388754,30.970742124111233],[-89.72725875388754,31.00252733266332],[-89.83493757367573,31.001668272972722],[-90.25847426484265,31.000809213282125],[-90.34820661466614,30.999950153591527],[-90.54920707827078,30.999950153591527],[-90.56715354823548,30.999950153591527],[-90.82558271572715,30.999091093900937],[-91.05888682526825,30.999091093900937],[-91.17733352703527,30.999091093900937],[-91.63676315813157,30.999091093900937],[-91.59010233622335,31.01713134740347],[-91.56497727827278,31.06695680945809],[-91.62240598215982,31.10990979398793],[-91.62599527615276,31.133963465324648],[-91.59010233622335,31.19152046459464],[-91.64394174611746,31.234473449124486],[-91.64035245212452,31.26711771736717],[-91.5757451602516,31.261104299532988],[-91.51472716237161,31.27828549334493],[-91.50754857438574,31.315225060040596],[-91.55062010230102,31.347010268592683],[-91.55420939629396,31.385667954669543],[-91.57933445424455,31.39941290971909],[-91.54703080830808,31.43291623765237],[-91.53267363233633,31.389963253122524],[-91.5039592803928,31.365050522095217],[-91.47165563445634,31.371063939929392],[-91.47165563445634,31.395976670956706],[-91.51831645636456,31.46040614775147],[-91.5219057503575,31.523976564855644],[-91.4501198704987,31.539439639286385],[-91.40704834258342,31.569506728457277],[-91.42140551855518,31.596996638556377],[-91.4860128104281,31.585828862578623],[-91.51831645636456,31.611600653296527],[-91.50036998639986,31.64424492153921],[-91.46447704647046,31.620191250202495],[-91.39986975459755,31.620191250202495],[-91.3962804606046,31.71125157740577],[-91.3783339906399,31.732728069670692],[-91.31731599275993,31.745613965029648],[-91.25988728887289,31.76107703946039],[-91.36397681466815,31.770526696056955],[-91.33885175671756,31.851278306973065],[-91.29578022880229,31.86072796356963],[-91.28860164081641,31.823788396873965],[-91.26347658286582,31.809184382133814],[-91.24553011290112,31.83323805347053],[-91.27065517085171,31.859009844188435],[-91.24911940689407,31.870177620166196],[-91.1809228210282,31.91828496283962],[-91.18810140901408,31.96123794736947],[-91.1629763510635,31.982714439634393],[-91.09477976519764,31.99474127530275],[-91.09477976519764,32.03769425983259],[-91.1629763510635,32.06002981178811],[-91.14502988109881,32.081506304053036],[-91.09836905919059,32.048002976119754],[-91.08042258922589,32.078929124981244],[-91.03017247332473,32.11415057229572],[-91.03017247332473,32.120163990129896],[-91.00504741537415,32.15710355682556],[-91.05888682526825,32.17772098939989],[-91.05170823728237,32.124459288582884],[-91.16656564505645,32.13390894517945],[-91.15938705707056,32.2017746607366],[-91.12349411714116,32.21122431733317],[-91.06247611926119,32.21895585454854],[-91.0373510613106,32.24215046619466],[-90.98710094540945,32.21551961578615],[-90.96915447544475,32.251600122791224],[-90.97633306343063,32.29713028639286],[-90.93326153551536,32.290257808868084],[-90.87583283162832,32.35812352442524],[-90.89019000760007,32.37358659885598],[-90.91172577155771,32.33922421123211],[-90.99427953339533,32.35382822597225],[-90.99427953339533,32.40365368802687],[-90.96556518145181,32.420834881838815],[-90.99427953339533,32.450901971009706],[-91.03017247332473,32.43372077719776],[-91.11272623516234,32.47581470203701],[-91.10195835318353,32.525640164091634],[-91.08401188321884,32.52649922378223],[-91.02299388533885,32.48526435863358],[-90.98710094540945,32.49127777646776],[-91.00504741537415,32.513613328423276],[-91.07683329523294,32.54711665635656],[-91.06965470724707,32.562579730787306],[-91.04452964929649,32.57632468583685],[-91.0086367093671,32.60209647655476],[-91.0265831793318,32.6467675804658],[-91.04811894328942,32.60725083469834],[-91.11990482314823,32.58491528274282],[-91.14144058710586,32.59694211841118],[-91.15220846908468,32.64161322232222],[-91.11990482314823,32.6742574905649],[-91.06247611926119,32.702606460354595],[-91.05529753127531,32.72580107200071],[-91.16656564505645,32.751572862718625],[-91.1629763510635,32.812566100751],[-91.14502988109881,32.844351309303086],[-91.06965470724707,32.88902241321413],[-91.06247611926119,32.9225257411474],[-91.09477976519764,32.98437803887038],[-91.13426199911999,32.98094180010799],[-91.13067270512705,32.923384800838],[-91.1809228210282,32.90104924888249],[-91.21322646696467,32.91994856207562],[-91.20245858498585,32.96118342722426],[-91.16656564505645,33.00413641175411],[-91.16656564505645,33.011008889278884],[-91.11990482314823,33.05482093349933],[-91.20245858498585,33.10808263431634],[-91.18451211502115,33.141585962249614],[-91.14502988109881,33.12955912658126],[-91.09477976519764,33.136431604106036],[-91.08401188321884,33.156189976989765],[-91.09119047120471,33.22061945378453],[-91.04452964929649,33.26529055769557],[-91.05170823728237,33.2850489305793],[-91.08760117721177,33.27388115460154],[-91.09836905919059,33.23780064759647],[-91.14144058710586,33.29621670655706],[-91.14144058710586,33.35119652675526],[-91.05888682526825,33.42851189890899],[-91.07683329523294,33.456001809008086],[-91.11272623516234,33.39329045159451],[-91.17374423304233,33.38126361592615],[-91.20963717297172,33.40188104850048],[-91.1988692909929,33.41820318262182],[-91.13785129311293,33.42679377952779],[-91.12349411714116,33.47318300282002],[-91.17374423304233,33.49637761446614],[-91.17015493904938,33.452565570245696],[-91.2347622309223,33.43882061519614],[-91.18451211502115,33.5075453904439],[-91.2168157609576,33.52902188270882],[-91.23117293692937,33.5616661509515],[-91.13067270512705,33.59688759826598],[-91.13785129311293,33.625236568055676],[-91.22758364293642,33.669048612276114],[-91.22040505495055,33.69310228361283],[-91.15938705707056,33.706847238662384],[-91.13426199911999,33.67678014949149],[-91.07683329523294,33.657880836298354],[-91.03376176731767,33.6733439107291],[-91.06247611926119,33.71629689525895],[-91.10913694116941,33.70427005959059],[-91.14502988109881,33.72660561154611],[-91.14144058710586,33.777290133291324],[-91.05529753127531,33.77900825267252],[-91.0265831793318,33.76354517824178],[-90.99069023940238,33.79275320772207],[-91.04811894328942,33.81508875967759],[-91.07324400124001,33.86233704266042],[-91.0086367093671,33.92934369852698],[-91.08760117721177,33.95855172800727],[-91.07683329523294,33.983464459034586],[-91.0194045913459,34.003222831918315],[-91.0014581213812,33.96628326522265],[-90.96197588745888,33.980028220272196],[-90.98710094540945,34.018685906349056],[-90.90095788957889,34.02384026449264],[-90.87224353763537,34.07624290561905],[-90.88301141961419,34.09686033819337],[-90.92249365353653,34.09428315912159],[-90.95479729947299,34.119195890148895],[-90.95479729947299,34.12005494983949],[-90.91172577155771,34.165585113441125],[-90.85429706767067,34.13723614365143],[-90.80763624576245,34.161289814988145],[-90.81481483374833,34.18276630725307],[-90.88660071360714,34.18190724756247],[-90.93685082950829,34.218846814258136],[-90.90454718357184,34.24375954528545],[-90.8471184796848,34.20681997858978],[-90.83276130371303,34.26781321662216],[-90.76456471784718,34.280699111981114],[-90.73943965989659,34.30647090269902],[-90.76815401184011,34.34512858877588],[-90.75020754187541,34.368323200422],[-90.68201095600956,34.369182260112595],[-90.69277883798837,34.322793036820364],[-90.65688589805897,34.32193397712977],[-90.65688589805897,34.37605473763737],[-90.56715354823548,34.42502114000139],[-90.58868931219311,34.496323094320935],[-90.57074284222841,34.52467206411063],[-90.54561778427784,34.5633297501875],[-90.58868931219311,34.615732391313905],[-90.58510001820018,34.64150418203182],[-90.58868931219311,34.67071221151211],[-90.55279637226371,34.688752465014645],[-90.55638566625666,34.646658540175395],[-90.51690343233432,34.63119546574465],[-90.46665331643317,34.674148450274494],[-90.47383190441904,34.700779300683],[-90.54561778427784,34.7024974200642],[-90.56715354823548,34.73685980768807],[-90.54202849028489,34.74888664335643],[-90.54920707827078,34.77895373252732],[-90.51331413834139,34.80214834417344],[-90.52049272632726,34.75318194180941],[-90.50254625636256,34.723973912329114],[-90.4522961404614,34.74029604645046],[-90.47383190441904,34.80214834417344],[-90.45588543445434,34.823624836438356],[-90.48459978639787,34.861423462824625],[-90.47742119841197,34.88633619385193],[-90.43793896448965,34.88461807447074],[-90.40922461254613,34.83307449303492],[-90.34102802668026,34.86056440313403],[-90.30513508675087,34.86056440313403],[-90.31231367473674,34.87173217911179],[-90.24770638286383,34.90953080549805],[-90.24770638286383,34.94818849157491],[-90.3087243807438,34.99543677455774],[-89.7236694598946,34.99543677455774],[-89.64470499204991,34.99543677455774],[-89.35397217862179,34.993718655176544],[-89.19963253692536,34.99457771486714],[-89.01657854328543,34.99457771486714],[-88.82275666766667,34.99543677455774],[-88.78686372773727,34.99543677455774],[-88.38127350653507,34.99543677455774],[-88.36332703657037,34.99543677455774],[-88.20180880688807,34.99543677455774],[-88.15514798497985,34.922416700857],[-88.09771928109281,34.89234961168611],[-88.14079080900808,34.58137000369003],[-88.15514798497985,34.46281976638766],[-88.17309445494455,34.32107491743917],[-88.205398100881,34.08655162190621],[-88.20898739487394,34.05820265211651],[-88.24846962879629,33.744645865048646]]],[[[-88.98786419134191,30.21648771576715],[-88.93402478144782,30.222501133601334],[-88.88018537155371,30.249131984009836],[-88.89454254752548,30.22421925298252],[-88.96991772137721,30.20102464133641],[-88.98786419134191,30.21648771576715]]],[[[-89.16015030300302,30.238823267722672],[-89.08477512915128,30.237964208032075],[-89.05606077720776,30.249131984009836],[-89.07400724717247,30.21219241731417],[-89.10990018710187,30.206178999479988],[-89.17091818498184,30.22851455143551],[-89.16015030300302,30.238823267722672]]],[[[-88.5104880902809,30.21734677545775],[-88.4028092704927,30.206178999479988],[-88.45305938639386,30.188997805668052],[-88.49613091430913,30.196729342883422],[-88.5104880902809,30.21734677545775]]],[[[-88.77250655176552,30.245695745247446],[-88.71507784787848,30.256863521225206],[-88.60739902809027,30.2319507901979],[-88.58586326413264,30.219064894838944],[-88.6720063199632,30.223360193291924],[-88.77250655176552,30.245695745247446]]]]},"properties":{"name":"Mississippi"},"id":"28"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-84.80274739557396,41.252827560865605],[-84.80274739557396,41.27086781436814],[-84.80274739557396,41.426357618366175],[-84.80633668956689,41.530303840928404],[-84.80633668956689,41.696102361213605],[-84.40074646836469,41.70555201781017],[-84.36126423444234,41.70641107750077],[-83.88029883938839,41.72015603255032],[-83.76185213762137,41.723592271312704],[-83.45317285422854,41.73304192790927],[-83.4495835602356,41.710706375953755],[-83.37420838638386,41.68665270461704],[-83.32754756447564,41.70125671935719],[-83.2342259206592,41.64541783946839],[-83.16602933479335,41.623082287512865],[-83.06552910299102,41.595592377413766],[-83.0009218111181,41.53889443783437],[-82.93272522525226,41.51398170680706],[-82.86811793337932,41.53374007969079],[-82.86093934539345,41.576693064220635],[-82.83581428744287,41.587860840198395],[-82.78556417154171,41.54061255721557],[-82.71736758567586,41.54233067659676],[-82.69583182171822,41.49422333392333],[-82.61686735387353,41.42807573774737],[-82.5594386499865,41.399726767957674],[-82.48047418214182,41.38168651445514],[-82.34767030440304,41.42807573774737],[-82.2543486605866,41.434089155581546],[-82.19333066270663,41.46415624475244],[-82.01027666906668,41.51569982618825],[-81.96720514115141,41.50625016959169],[-81.8774727913279,41.48305555794557],[-81.80927620546206,41.495941453304525],[-81.73749032560325,41.488209916089154],[-81.633400799808,41.54061255721557],[-81.52931127401274,41.6144916906069],[-81.4898290400904,41.63167288441884],[-81.44316821818218,41.672907749567486],[-81.28523928249282,41.760531838008376],[-81.24934634256343,41.76139089769897],[-81.1129531708317,41.81722977758777],[-81.00168505705057,41.85502840397403],[-80.90118482524825,41.868773359023585],[-80.81504176941769,41.89798138850388],[-80.5817376598766,41.957256507155066],[-80.52071966199662,41.97787393972939],[-80.52071966199662,41.849874045830454],[-80.52071966199662,41.50023675175751],[-80.52071966199662,41.48906897577975],[-80.51713036800368,41.20901551664516],[-80.52071966199662,41.133418263872635],[-80.52071966199662,41.12482766696666],[-80.52071966199662,40.90061308772087],[-80.52071966199662,40.85164668535685],[-80.52071966199662,40.63859988208881],[-80.58532695386954,40.6154052704427],[-80.63557706977069,40.6162643301333],[-80.66788071570716,40.582761002200016],[-80.62839848178481,40.53551271921719],[-80.59609483584836,40.463351705207046],[-80.62839848178481,40.394626929959294],[-80.60686271782717,40.36971419893198],[-80.5996841298413,40.32074779656796],[-80.61763059980599,40.26490891667916],[-80.65352353973539,40.24515054379543],[-80.68223789167891,40.185875425144246],[-80.70377365563655,40.15752645535455],[-80.7073629496295,40.101687575465746],[-80.73966659556595,40.07591578474784],[-80.73248800758007,40.032962800217994],[-80.73966659556595,39.971110502495016],[-80.76479165351654,39.95392930868308],[-80.75761306553065,39.909258204772044],[-80.80427388743887,39.91870786136861],[-80.78991671146711,39.867164279932794],[-80.82222035740357,39.84998308612086],[-80.82580965139651,39.79843950468504],[-80.86888117931178,39.75720463953639],[-80.83298823938239,39.721124132531315],[-80.86529188531885,39.69191610305102],[-80.8796490612906,39.620614148731484],[-80.94425635316352,39.60686919368193],[-81.03757799697996,39.539862537815374],[-81.10218528885288,39.48745989668896],[-81.12013175881758,39.45739280751807],[-81.17038187471874,39.439352554015535],[-81.20986410864109,39.3929633307233],[-81.27088210652106,39.386090853198525],[-81.37138233832339,39.34227880897809],[-81.4359896301963,39.408426405154046],[-81.46829327613275,39.40413110670106],[-81.55802562595626,39.3388425702157],[-81.56879350793507,39.26754061589615],[-81.68006162171622,39.27355403373033],[-81.69082950369503,39.2263057507475],[-81.72672244362444,39.21599703446034],[-81.75543679556796,39.18077558714587],[-81.74825820758207,39.09572867777677],[-81.81286549945499,39.08198372272722],[-81.80209761747618,39.04504415603155],[-81.76620467754677,39.020131425004244],[-81.78056185351853,38.924775799347984],[-81.81286549945499,38.94625229161291],[-81.84516914539145,38.92907109780097],[-81.85593702737027,38.892990590795904],[-81.90977643726437,38.87838657605575],[-81.92772290722907,38.90158118770187],[-81.89900855528555,38.92563485903858],[-81.94208008320084,38.99350057459574],[-81.98156231712316,38.99435963428633],[-82.02822313903138,39.02872202191021],[-82.10000901889019,38.958279127281266],[-82.14308054680546,38.89814494893948],[-82.14308054680546,38.84058794966949],[-82.2184557206572,38.79591684575845],[-82.1825627807278,38.70571557824577],[-82.17179489874898,38.61895054949549],[-82.2184557206572,38.59146063939639],[-82.28665230652307,38.58287004249042],[-82.30459877648777,38.49095065559655],[-82.32254524645246,38.4488567307573],[-82.40509900829008,38.439407074160734],[-82.50918853408534,38.41105810437104],[-82.55226006200061,38.403326567155666],[-82.5953315899159,38.4222258803488],[-82.61686735387353,38.477205700546996],[-82.6671174697747,38.5055546703367],[-82.72454617366174,38.557957311463106],[-82.81427852348523,38.57084320682206],[-82.8465821694217,38.59489687815878],[-82.87888581535815,38.69025250381503],[-82.86811793337932,38.728051130201294],[-82.89324299132991,38.75640009999099],[-82.96861816518165,38.72891018989189],[-83.02245757507575,38.72891018989189],[-83.04399333903339,38.70571557824577],[-83.11936851288513,38.666198832478315],[-83.13731498284983,38.62840020609205],[-83.26652956659566,38.61809148980489],[-83.30960109451094,38.60091029599295],[-83.32754756447564,38.63784986268862],[-83.36702979839798,38.658467295262945],[-83.4675300302003,38.67564848907488],[-83.5213694400944,38.70313839917399],[-83.61469108391084,38.684239085980856],[-83.6469947298473,38.63699080299802],[-83.70442343373433,38.63956798206981],[-83.7654414316143,38.65245387742877],[-83.78338790157902,38.69540686195861],[-83.83722731147311,38.71774241391413],[-83.84799519345194,38.746950443394425],[-83.90542389733898,38.76842693565935],[-83.97720977719777,38.78732624885248],[-84.05258495104951,38.77100411473114],[-84.2141031807318,38.805366502355014],[-84.23204965069651,38.827702054310535],[-84.23204965069651,38.87495033729336],[-84.23922823868239,38.900722128011274],[-84.28947835458354,38.95570194820947],[-84.31819270652706,39.02184954438544],[-84.4294608203082,39.055352872318714],[-84.44381799627996,39.1146279909699],[-84.47253234822348,39.12150046849468],[-84.50483599415993,39.09486961808617],[-84.55149681606815,39.09916491653916],[-84.62328269592696,39.074252185511845],[-84.67712210582106,39.09830585684856],[-84.73096151571515,39.14469508014079],[-84.75608657366574,39.14641319952199],[-84.82069386553866,39.105178334373335],[-84.82069386553866,39.305339242282415],[-84.81710457154571,39.52182228431283],[-84.81351527755277,39.56735244791447],[-84.81351527755277,39.7262784906749],[-84.81351527755277,39.916989741987415],[-84.80992598355984,40.005472890118895],[-84.80992598355984,40.129177485564846],[-84.80274739557396,40.310439080280794],[-84.80274739557396,40.352533005120044],[-84.80274739557396,40.57245228591285],[-84.80274739557396,40.72794208991089],[-84.80274739557396,40.92294863967639],[-84.80274739557396,40.98909623585235],[-84.80274739557396,41.252827560865605]]],[[[-82.84299287542875,41.64713595884958],[-82.8214571114711,41.7244513310033],[-82.78197487754878,41.69438424183241],[-82.7927427595276,41.66431715266152],[-82.84299287542875,41.62823664565645],[-82.84299287542875,41.64713595884958]]],[[[-82.73531405564056,41.60332391462914],[-82.67788535175352,41.61792792936929],[-82.6850639397394,41.5870017805078],[-82.73531405564056,41.60332391462914]]]]},"properties":{"name":"Ohio"},"id":"39"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-101.76216151221512,29.782662572015717],[-101.85189386203861,29.801561885208848],[-101.93085832988329,29.78953504954049],[-101.97392985779857,29.810152482114816],[-102.03494785567855,29.80413906428064],[-102.0493050316503,29.785239751087502],[-102.14262667546674,29.803280004590043],[-102.18210890938909,29.846232989119883],[-102.2287697312973,29.843655810048098],[-102.32209137511374,29.878877257362568],[-102.35080572705726,29.86255512324123],[-102.38669866698666,29.76719949758497],[-102.50873466274662,29.783521631706314],[-102.54103830868308,29.751736423154227],[-102.56616336663366,29.761186079750793],[-102.64512783447834,29.733696169651694],[-102.67025289242892,29.742286766557662],[-102.69896724437244,29.695897543265424],[-102.69178865638656,29.676139170381695],[-102.73844947829478,29.641776782757823],[-102.73844947829478,29.598823798227976],[-102.76357453624536,29.598823798227976],[-102.77075312423123,29.548139276482758],[-102.81023535815358,29.522367485764853],[-102.80664606416063,29.494018515975156],[-102.83177112211122,29.444193053920536],[-102.82459253412533,29.399521950009493],[-102.84253900409004,29.35828708486084],[-102.87843194401944,29.35399178640786],[-102.88919982599826,29.29213948868488],[-102.90714629596296,29.260354280132795],[-102.87125335603355,29.241454966939664],[-102.88919982599826,29.20881069869698],[-102.95380711787118,29.176166430454302],[-102.98970005780058,29.183038907979075],[-103.01482511575115,29.125481908709084],[-103.07584311363114,29.08854234201341],[-103.10096817158171,29.05761619315193],[-103.11532534755347,28.985455179141788],[-103.16557546345463,28.978582701617015],[-103.2265934613346,28.991468596975963],[-103.28043287122871,28.982018940379398],[-103.33068298712986,29.021535686146855],[-103.42759392493925,29.04215311872118],[-103.52450486274863,29.137508744377442],[-103.61064791857918,29.16585771416714],[-103.64654085850857,29.15898523664236],[-103.72550532635326,29.191629504885043],[-103.79370191221912,29.259495220442197],[-103.8367734401344,29.27839453363533],[-103.97675590585905,29.29643478713787],[-104.03777390373904,29.32048845847458],[-104.10597048960489,29.37289109960099],[-104.14545272352723,29.383199815888155],[-104.21364930939309,29.452783650826504],[-104.21364930939309,29.47340108340083],[-104.26389942529424,29.513776888858885],[-104.33927459914598,29.51979030669306],[-104.38234612706127,29.54298491833918],[-104.40029259702597,29.572192947819474],[-104.50797141681416,29.63919960368603],[-104.54027506275062,29.676139170381695],[-104.5654001207012,29.77063573634736],[-104.60847164861649,29.818743079020784],[-104.63359670656706,29.8702866604566],[-104.68025752847528,29.924407420964208],[-104.68025752847528,29.97509194270942],[-104.70538258642586,30.024058345073442],[-104.68384682246823,30.08591064279642],[-104.69461470444703,30.13229986608866],[-104.68743611646116,30.179548149071486],[-104.71256117441173,30.237964208032075],[-104.75204340833407,30.26373599874998],[-104.7628112903129,30.30153462513625],[-104.80947211222112,30.335037953069524],[-104.81306140621406,30.360809743787435],[-104.85972222812228,30.39001777326773],[-104.85254364013639,30.418366743057426],[-104.89920446204461,30.57042030829308],[-104.9243295199952,30.604782695916953],[-104.96740104791047,30.608218934679343],[-104.98175822388224,30.62883636725367],[-105.00688328183281,30.68639336652366],[-105.06072269172691,30.68639336652366],[-105.11097280762807,30.743091306103054],[-105.15404433554335,30.751681903009022],[-105.16481221752217,30.772299335583348],[-105.21865162741626,30.801507365063642],[-105.26172315533155,30.79807112630126],[-105.28684821328213,30.82212479763797],[-105.39811632706326,30.85562812557125],[-105.39811632706326,30.889131453504532],[-105.55604526275262,30.99050049699496],[-105.60270608466084,31.082419883888832],[-105.64577761257613,31.11420509244092],[-105.71038490444904,31.13654064439644],[-105.7426885503855,31.164889614186137],[-105.77499219632196,31.166607733567332],[-105.78217078430784,31.19753388242882],[-105.8683138401384,31.288594209632087],[-105.94009971999719,31.31866129880298],[-105.95445689596896,31.365050522095217],[-105.99752842388423,31.38652701436014],[-106.08008218572185,31.39855385002849],[-106.20570747547475,31.465560505895056],[-106.24518970939708,31.54115775866758],[-106.28108264932649,31.561775191241907],[-106.30261841328412,31.620191250202495],[-106.34927923519234,31.696647562665618],[-106.38158288112881,31.731869009980095],[-106.44977946699467,31.76451327822278],[-106.489261700917,31.748191144101433],[-106.52874393483934,31.78341259141591],[-106.54669040480404,31.80746626275262],[-106.60411910869108,31.824647456564563],[-106.60052981469813,31.84440582944829],[-106.63642275462755,31.865882321713208],[-106.64719063660635,31.898526589955893],[-106.62206557865578,31.91398966438664],[-106.61847628466285,32.000754693136926],[-106.37799358713586,32.000754693136926],[-105.99752842388423,32.00247281251812],[-105.43041997299973,32.000754693136926],[-104.91715093200932,32.000754693136926],[-104.84895434614346,32.000754693136926],[-104.53309647476475,31.99989563344633],[-104.02341672776727,31.99989563344633],[-103.980345199852,31.99989563344633],[-103.72191603236031,31.99989563344633],[-103.32709369313693,32.000754693136926],[-103.06507523165232,32.000754693136926],[-103.06507523165232,32.086660662196614],[-103.06507523165232,32.52220392532925],[-103.06507523165232,32.959465307843075],[-103.05789664366642,33.26013619955199],[-103.05789664366642,33.38813609345093],[-103.0543073496735,33.57025674785747],[-103.04712876168762,33.82453841627416],[-103.04353946769467,33.945665832648324],[-103.04353946769467,34.303034663936636],[-103.04353946769467,34.3124843205332],[-103.04353946769467,34.74716852397523],[-103.04353946769467,34.954201909409086],[-103.04353946769467,35.18357084679846],[-103.03995017370173,35.62255034869348],[-103.03995017370173,35.73938246661466],[-103.03995017370173,36.055516432754324],[-103.03995017370173,36.317529638386375],[-103.04353946769467,36.50050935248352],[-103.00405723377233,36.50050935248352],[-102.16416243942439,36.50050935248352],[-102.03135856168561,36.50050935248352],[-101.62217904649046,36.49965029279292],[-101.08378494754947,36.49965029279292],[-100.95457036380363,36.49965029279292],[-100.54539084860848,36.49965029279292],[-100.00340745567455,36.49965029279292],[-99.99981816168162,36.49965029279292],[-99.99981816168162,36.055516432754324],[-99.99981816168162,35.88112731556315],[-99.99981816168162,35.61911410993109],[-99.99981816168162,35.4223894407844],[-99.99981816168162,35.18271178710786],[-99.99981816168162,35.030658221872216],[-99.99981816168162,34.746309464284636],[-99.99622886768867,34.56075257111571],[-99.92803228182281,34.577074705237045],[-99.84547851998519,34.5066318106081],[-99.79522840408404,34.45422916948169],[-99.70908534825348,34.38722251361513],[-99.60140652846528,34.37433661825618],[-99.57987076450765,34.41643054309542],[-99.51885276662766,34.41471242371423],[-99.47578123871239,34.396672170211694],[-99.43988829878299,34.37433661825618],[-99.3968167708677,34.37777285701856],[-99.38245959489595,34.45680634855348],[-99.31785230302303,34.407839946189455],[-99.26042359913599,34.403544647736474],[-99.27478077510774,34.384645334543336],[-99.21017348323483,34.33653799186991],[-99.19222701327013,34.21626963518634],[-99.12761972139721,34.218846814258136],[-99.12044113341133,34.2016656204462],[-99.07736960549605,34.211115277042765],[-99.0450659595596,34.19822938168381],[-98.98763725567255,34.22142399332993],[-98.95174431574316,34.21283339642396],[-98.91944066980669,34.18190724756247],[-98.85842267192672,34.161289814988145],[-98.8117618500185,34.15871263591635],[-98.76510102811028,34.13637708396083],[-98.68972585425854,34.13294084519845],[-98.64665432634325,34.164726053750535],[-98.61076138641386,34.15699451653516],[-98.57127915249151,34.144967680866806],[-98.48513609666097,34.0624979505695],[-98.42411809878098,34.083974442834425],[-98.36310010090101,34.15699451653516],[-98.29490351503514,34.13294084519845],[-98.24106410514105,34.13294084519845],[-98.16927822528224,34.11404153200532],[-98.14056387333873,34.141531442104416],[-98.10826022740227,34.15441733746337],[-98.09390305143052,34.111464352933524],[-98.12261740337402,34.08139726376263],[-98.08672446344463,34.003222831918315],[-98.01852787757878,33.99377317532175],[-97.97186705567056,34.00580001099011],[-97.94674199771997,33.988618817178164],[-97.97186705567056,33.93707523574235],[-97.95392058570586,33.937934295432946],[-97.97904564365643,33.88982695275952],[-97.87854541185412,33.85031020699206],[-97.83547388393883,33.85804174420743],[-97.73138435814357,33.93707523574235],[-97.6883128302283,33.98690069779697],[-97.65600918429183,33.98947787686876],[-97.58781259842598,33.953397369863694],[-97.5985804804048,33.91817592254922],[-97.5626875404754,33.89755848997489],[-97.48372307263072,33.91559874347743],[-97.45859801468015,33.903571907809074],[-97.46218730867308,33.849451147301465],[-97.44424083870838,33.82367935658356],[-97.37245495884959,33.819384058130574],[-97.33297272492725,33.87436387832878],[-97.30066907899078,33.880377296162955],[-97.25400825708256,33.864055162041616],[-97.24682966909668,33.90013566904668],[-97.21093672916729,33.91645780316803],[-97.17863308323082,33.89240413183131],[-97.17145449524494,33.83570619225192],[-97.20734743517434,33.80993440153401],[-97.16427590725907,33.7291827906179],[-97.12479367333673,33.71715595494955],[-97.08531143941438,33.74378680535805],[-97.0960793213932,33.79876662555625],[-97.04941849948499,33.81766593874938],[-97.08890073340733,33.85374644575445],[-97.04223991149911,33.83742431163311],[-96.98481120761207,33.88639071399714],[-96.99557908959089,33.94910207141071],[-96.94532897368973,33.94910207141071],[-96.93456109171092,33.95425642955429],[-96.9058467397674,33.949961131101304],[-96.88431097580975,33.8683504604946],[-96.85200732987329,33.84687396822968],[-96.83047156591566,33.87522293801938],[-96.78381074400744,33.86319610235102],[-96.76945356803567,33.827115595345944],[-96.70484627616275,33.83484713256132],[-96.67613192421923,33.90872626595265],[-96.58998886838867,33.894981310903106],[-96.62947110231102,33.845155848848485],[-96.57204239842397,33.819384058130574],[-96.53256016450165,33.822820296892964],[-96.50384581255813,33.77385389452894],[-96.42847063870639,33.77900825267252],[-96.37822052280522,33.725746551855515],[-96.36386334683347,33.69224322392223],[-96.32079181891818,33.694820402994026],[-96.2956667609676,33.764404237932375],[-96.22747017510174,33.74808210381103],[-96.1772200592006,33.76010893947939],[-96.14850570725707,33.83742431163311],[-96.09825559135591,33.830551834108334],[-96.10184488534885,33.84773302792027],[-96.04800547545474,33.83656525194252],[-95.94032665566655,33.861477982969824],[-95.93673736167361,33.88724977368773],[-95.84700501185011,33.8408605503955],[-95.8003441899419,33.861477982969824],[-95.77162983799838,33.84343772946729],[-95.76086195601955,33.872645758947584],[-95.75727266202662,33.89240413183131],[-95.68548678216781,33.88982695275952],[-95.59934372633725,33.93449805667056],[-95.56345078640786,33.93192087759877],[-95.53832572845728,33.87951823647236],[-95.46295055460554,33.88553165430654],[-95.46295055460554,33.872645758947584],[-95.34091455884558,33.869209520185194],[-95.30861091290913,33.880377296162955],[-95.25477150301502,33.902712848118476],[-95.22964644506445,33.961128907079065],[-95.1542712712127,33.93707523574235],[-95.12196762527626,33.93106181790817],[-95.05018174541745,33.864055162041616],[-94.97121727757278,33.86233704266042],[-94.94609221962219,33.8125115806058],[-94.87071704577045,33.745504924739244],[-94.82764551785517,33.741209626286256],[-94.77380610796108,33.75495458133581],[-94.73791316803168,33.705988178971786],[-94.70919881608816,33.687088865778655],[-94.64818081820817,33.687947925469246],[-94.64459152421524,33.66818955258552],[-94.5871628203282,33.67935732856328],[-94.51896623446234,33.61664597114971],[-94.48666258852587,33.638122463414625],[-94.45794823658237,33.644994940939405],[-94.45794823658237,33.59860571764717],[-94.41846600266003,33.57712922538225],[-94.38616235672356,33.58228358352583],[-94.39334094470944,33.55135743466434],[-94.35744800478004,33.54362589744897],[-94.33950153481534,33.56682050909509],[-94.31078718287182,33.55135743466434],[-94.300019300893,33.57627016569165],[-94.22464412704127,33.553075554045535],[-94.18516189311893,33.59259229981299],[-94.14209036520364,33.57798828507285],[-94.12414389523894,33.55221649435494],[-94.10260813128131,33.57025674785747],[-94.04517942739427,33.55135743466434],[-94.04159013340133,33.541907778067774],[-94.04159013340133,33.297934825938256],[-94.04159013340133,33.01959948618486],[-94.04159013340133,32.88129087599875],[-94.04159013340133,32.69315680375803],[-94.04159013340133,32.39248591204912],[-94.04159013340133,32.19576124290242],[-94.04159013340133,31.992164096230958],[-94.01287578145781,31.981855379943795],[-93.97339354753547,31.920003082220816],[-93.90878625566255,31.893372231812315],[-93.88007190371903,31.84440582944829],[-93.8764826097261,31.82207027749277],[-93.822643199832,31.774821994509942],[-93.82982178781788,31.745613965029648],[-93.80110743587436,31.697506622356215],[-93.82623249382493,31.661426115351148],[-93.81546461184611,31.622768429274288],[-93.83341108181081,31.585828862578623],[-93.78675025990259,31.527412803618027],[-93.74008943799437,31.52225844547445],[-93.72932155601555,31.492191356303557],[-93.75085731997319,31.46899674465744],[-93.70060720407204,31.43807059579595],[-93.70419649806497,31.41058068569685],[-93.67548214612145,31.3976947903379],[-93.66471426414263,31.35560086549865],[-93.68625002810028,31.31007070189701],[-93.643178500185,31.269694896438956],[-93.62164273622736,31.27141301582015],[-93.60010697226971,31.176057390163898],[-93.5534461503615,31.185507046760463],[-93.53191038640387,31.184647987069866],[-93.5534461503615,31.097023898628983],[-93.52473179841797,31.070393048220474],[-93.5175532104321,31.024003824928243],[-93.56421403234032,31.00596357142571],[-93.56780332633326,30.977614601636013],[-93.52473179841797,30.930366318653178],[-93.55703544435444,30.911467005460047],[-93.55703544435444,30.868514020930206],[-93.5534461503615,30.82470197670976],[-93.58574979629796,30.796353006920064],[-93.61805344223441,30.742232246412456],[-93.62882132421323,30.679520888998887],[-93.67189285212852,30.658044396733963],[-93.6790714401144,30.599628337773375],[-93.72932155601555,30.573856547055463],[-93.74008943799437,30.53949415943159],[-93.7149643800438,30.518876726857265],[-93.6970179100791,30.440702295012947],[-93.74008943799437,30.402044608936087],[-93.75803590795907,30.39001777326773],[-93.76521449594496,30.33331983368833],[-93.70778579205792,30.288648729777293],[-93.70419649806497,30.24397762586625],[-93.72214296802967,30.209615238242378],[-93.68983932209322,30.141749522685224],[-93.7329108500085,30.08161534434344],[-93.70060720407204,30.065293210222094],[-93.72214296802967,30.05154825517255],[-93.74008943799437,30.021481166001657],[-93.79033955389554,29.987977838068375],[-93.81546461184611,29.920971182201818],[-93.85494684576845,29.865132302313015],[-93.92314343163432,29.818743079020784],[-93.93032201962019,29.79726658675586],[-93.89801837368373,29.771494796037956],[-93.83700037580375,29.690743185121846],[-93.83700037580375,29.678716349453488],[-94.00210789947899,29.68129352852528],[-94.13491177721777,29.6469311409014],[-94.35385871078711,29.56188423153231],[-94.3718051807518,29.555870813698135],[-94.59434140831408,29.468246725257245],[-94.6948416401164,29.41584408413084],[-94.73073458004579,29.3694548608386],[-94.7845739899399,29.375468278672784],[-94.70560952209522,29.436461516705165],[-94.67330587615876,29.476837322163213],[-94.62664505425053,29.475978262472623],[-94.59434140831408,29.49230039659396],[-94.56562705637056,29.53181714236142],[-94.5333234104341,29.518072187311866],[-94.49384117651176,29.524944664836646],[-94.51178764647646,29.54298491833918],[-94.54768058640586,29.572192947819474],[-94.74150246202461,29.525803724527243],[-94.77021681396813,29.548139276482758],[-94.70919881608816,29.625454648636484],[-94.6948416401164,29.694179423884236],[-94.6948416401164,29.757749840988403],[-94.73791316803168,29.76204513944139],[-94.75585963799638,29.78180351232512],[-94.81687763587635,29.756890781297805],[-94.85277057580575,29.721669333983336],[-94.86712775177752,29.678716349453488],[-94.92096716167161,29.658098916879162],[-94.93173504365043,29.67356199130991],[-94.96762798357983,29.700192841718412],[-95.00711021750217,29.65895797656976],[-95.01428880548805,29.628890887398867],[-94.98198515955158,29.601400977299768],[-95.017878099481,29.555011754007538],[-94.98198515955158,29.511199709787093],[-94.91019927969279,29.496595695046942],[-94.93173504365043,29.45020647175471],[-94.89225280972809,29.433025277942775],[-94.88507422174222,29.36601862207622],[-94.89225280972809,29.30846162280622],[-94.92096716167161,29.28183077239772],[-94.95327080760808,29.290421369303687],[-95.05736033340332,29.202797280862804],[-95.10043186131861,29.17358925138251],[-95.11119974329743,29.19592480333803],[-95.15786056520565,29.18905232581325],[-95.16503915319153,29.113455073040726],[-95.14350338923389,29.091119521085204],[-95.10402115531154,29.12290472963729],[-95.00352092350923,29.18475702736027],[-94.9927530415304,29.20107916148161],[-94.87789563375634,29.286126070850706],[-94.82405622386223,29.305884443734435],[-94.82405622386223,29.344542129811295],[-94.73073458004579,29.33165623445234],[-94.8025204599046,29.279253593325926],[-95.02505668746687,29.147817460664605],[-95.11837833128331,29.07823362572625],[-95.24041432704327,28.98889141790417],[-95.38398608676086,28.866045882148818],[-95.43782549665497,28.859173404624038],[-95.50602208252081,28.825670076690763],[-95.66036172421724,28.75093188360883],[-95.81111207192072,28.66502591454914],[-96.00134465354652,28.588569602086018],[-96.22029158711587,28.49235491673916],[-96.37822052280522,28.390126813558133],[-96.44282781467814,28.31796579954799],[-96.63306039630396,28.22261017389173],[-96.71920345213452,28.164194114931142],[-96.85200732987329,28.06024789236892],[-96.94891826768267,27.970905684546842],[-97.00275767757677,27.908194327133266],[-97.04223991149911,27.836892372813722],[-97.09249002740027,27.786207851068504],[-97.13915084930849,27.716624016130154],[-97.22170461114611,27.57659728656286],[-97.29707978499785,27.427120900398997],[-97.347329900899,27.277644514235135],[-97.37245495884959,27.153080859098587],[-97.37963354683546,27.06030241251412],[-97.37604425284252,26.97181926438264],[-97.347329900899,26.795712027810275],[-97.28990119701197,26.600705478044773],[-97.22529390513904,26.411712346113454],[-97.19657955319553,26.306048004170037],[-97.15709731927319,26.08269248461484],[-97.18222237722377,26.123068290072894],[-97.20016884718846,26.249350064590644],[-97.24324037510375,26.411712346113454],[-97.28272260902608,26.542289419084184],[-97.36886566485664,26.556034374133738],[-97.30425837298372,26.579228985779856],[-97.31502625496255,26.599846418354176],[-97.35809778287782,26.725269133181328],[-97.39040142881429,26.800866385953853],[-97.40116931079311,26.891926713157126],[-97.39758001680016,27.0104769504595],[-97.40116931079311,27.115282232712325],[-97.37604425284252,27.277644514235135],[-97.36168707687077,27.35238270731707],[-97.30425837298372,27.50701345162451],[-97.26836543305433,27.57573822687226],[-97.23606178711786,27.634154285832857],[-97.18581167121671,27.69428846417464],[-97.14991873128731,27.769026657256568],[-97.1212043793438,27.79909374642746],[-97.12838296732967,27.839469551885514],[-97.0781328514285,27.91506680465804],[-97.01711485354853,27.94599295351953],[-96.98481120761207,27.98465063959639],[-96.92020391573915,28.093751220302195],[-96.82329297792977,28.139281383903835],[-96.81970368393684,28.16848941338413],[-96.79098933199332,28.189106845958456],[-96.73356062810628,28.19082496533965],[-96.60793533835339,28.281026232852327],[-96.52538157651576,28.32312015769157],[-96.43923852068521,28.342878530575298],[-96.45359569665696,28.37981809727097],[-96.4212920507205,28.404730828298277],[-96.45359569665696,28.41847578334783],[-96.511024400544,28.383254336033353],[-96.5828102804028,28.35318724686246],[-96.62229251432514,28.31882485923859],[-96.68331051220511,28.3145295607856],[-96.70484627616275,28.34889194840948],[-96.70484627616275,28.400435529845296],[-96.76586427404274,28.41074424613246],[-96.79098933199332,28.38411339572395],[-96.79098933199332,28.31882485923859],[-96.79816791997919,28.27243563594635],[-96.78740003800037,28.250100083990837],[-96.80893580195801,28.217455815748153],[-96.87354309383093,28.1762209505995],[-96.93456109171092,28.123818309473087],[-96.96327544365444,28.12295924978249],[-97.02788273552736,28.1487310405004],[-97.02788273552736,28.18481154750547],[-97.15350802528025,28.133267966069653],[-97.21452602316023,28.07657002649026],[-97.13915084930849,28.05681165360653],[-97.05300779347793,28.105778055970553],[-97.02429344153441,28.042207638866387],[-97.04941849948499,28.022449265982658],[-97.13556155531555,27.90218090929909],[-97.18581167121671,27.830878954979546],[-97.22888319913199,27.82916083559835],[-97.25041896308963,27.87640911858118],[-97.32579413694137,27.86781852167521],[-97.34015131291312,27.88328159610596],[-97.4550087206872,27.873831939509387],[-97.49449095460955,27.88414065579655],[-97.50525883658837,27.844623910029092],[-97.4729551906519,27.824006477454766],[-97.4191157807578,27.823147417764176],[-97.37963354683546,27.83775143250432],[-97.39399072280722,27.78277161230612],[-97.36886566485664,27.74153674715747],[-97.31502625496255,27.712328717677174],[-97.25400825708256,27.696865643246426],[-97.29707978499785,27.61353685325853],[-97.2934904910049,27.5937784803748],[-97.32579413694137,27.561134212132117],[-97.37245495884959,27.42540278101781],[-97.36886566485664,27.412516885658853],[-97.41193719277193,27.32145655845558],[-97.48372307263072,27.29826194680946],[-97.5088481305813,27.27506733516335],[-97.54833036450364,27.29053040959409],[-97.49808024860248,27.308570663096624],[-97.48731236662366,27.359255184841842],[-97.51602671856718,27.361832363913635],[-97.53756248252482,27.335201513505133],[-97.60934836238361,27.285376051450513],[-97.63806271432713,27.281939812688123],[-97.62729483234831,27.243282126611263],[-97.54115177651776,27.22953717156171],[-97.45141942669426,27.262181439804394],[-97.42270507475074,27.26389955918559],[-97.44065154471544,27.164248635076348],[-97.42988366273663,27.160812396313958],[-97.44424083870838,26.987282338813387],[-97.46577660266603,26.80945698285982],[-97.48013377863778,26.806879803788036],[-97.46577660266603,26.70980605875058],[-97.44065154471544,26.599846418354176],[-97.41552648676486,26.553457195061945],[-97.41193719277193,26.481296181051803],[-97.37963354683546,26.480437121361206],[-97.35091919489194,26.411712346113454],[-97.29707978499785,26.295739287882874],[-97.27913331503315,26.27082655685556],[-97.3114369609696,26.230450751397512],[-97.29707978499785,26.20124272191721],[-97.30066907899078,26.147981021100207],[-97.27195472704726,26.08612872337723],[-97.20016884718846,26.076679066780663],[-97.19657955319553,26.04661197760977],[-97.15350802528025,26.062075052040512],[-97.14632943729437,25.952974471334706],[-97.22888319913199,25.95898788916889],[-97.2755440210402,25.952115411644108],[-97.2755440210402,25.93579327752277],[-97.35091919489194,25.925484561235606],[-97.37245495884959,25.840437651866516],[-97.44424083870838,25.84988730846308],[-97.46936589665896,25.884249696086954],[-97.52320530655307,25.886826875158746],[-97.5447410705107,25.934075158141574],[-97.58422330443304,25.937511396903965],[-97.64883059630596,26.021699246582465],[-97.76009871008709,26.03200796286962],[-97.79958094400943,26.060356932659325],[-97.8677775298753,26.056920693896934],[-97.88572399984,26.0663703504935],[-97.96827776167761,26.05176633575335],[-97.98263493764937,26.067229410184098],[-98.02929575955758,26.0663703504935],[-98.0400636415364,26.041457619466193],[-98.0759565814658,26.068088469874695],[-98.14774246132461,26.056061634206337],[-98.17645681326813,26.074960947399468],[-98.19799257722576,26.056061634206337],[-98.24824269312693,26.073242828018273],[-98.27695704507045,26.099014618736184],[-98.26618916309162,26.120491111001108],[-98.32361786697867,26.121350170691706],[-98.33438574895749,26.159148797077968],[-98.38822515885158,26.15828973738737],[-98.46360033270332,26.222719214182135],[-98.49590397863979,26.21326955758557],[-98.58563632846328,26.25450442273422],[-98.65383291432914,26.23560510954109],[-98.70049373623736,26.265672198711982],[-98.75433314613146,26.32494731736317],[-98.79022608606085,26.33181979488794],[-98.79740467404673,26.360168764677645],[-98.82611902599025,26.3704774809648],[-98.89072631786317,26.357591585605853],[-98.96610149171491,26.397967391063908],[-99.0091730196302,26.395390211992115],[-99.03788737157372,26.41257140580405],[-99.08095889948899,26.396249271682713],[-99.11326254542544,26.434047898068975],[-99.09172678146781,26.477000882598823],[-99.12761972139721,26.52510822527225],[-99.16710195531955,26.53627600125001],[-99.17069124931248,26.57149744856448],[-99.17786983729837,26.620463850928502],[-99.199405601256,26.656544357933576],[-99.21017348323483,26.72441007349073],[-99.23888783517835,26.745886565755654],[-99.24247712917129,26.787980490594904],[-99.26760218712187,26.842960310793103],[-99.32862018500184,26.879899877488768],[-99.32144159701596,26.906530727897277],[-99.36810241892418,26.92886627985279],[-99.39322747687477,26.960651488404878],[-99.37528100691006,26.977832682216814],[-99.4147632408324,27.01734942798428],[-99.44706688676887,27.023362845818454],[-99.4506561807618,27.06803394972949],[-99.42912041680417,27.094664800138],[-99.43988829878299,27.151362739717392],[-99.42553112281122,27.176275470744706],[-99.45424547475474,27.264758618876186],[-99.49731700267002,27.27163109640096],[-99.49372770867708,27.303416304953046],[-99.53679923659236,27.312865961549612],[-99.5044955906559,27.338637752267516],[-99.48654912069121,27.412516885658853],[-99.49731700267002,27.439147736067355],[-99.48295982669826,27.49069131750317],[-99.52962064860648,27.49928191440914],[-99.51167417864178,27.564570450894507],[-99.55474570655706,27.614395912949128],[-99.57987076450765,27.60236907728077],[-99.60499582245822,27.641885823048227],[-99.63729946839467,27.62642274861748],[-99.66960311433114,27.65992607655076],[-99.70549605426054,27.654771718407176],[-99.77010334613345,27.732087090560903],[-99.80240699206992,27.74153674715747],[-99.81317487404874,27.774181015400146],[-99.84188922599226,27.766449478184775],[-99.87778216592166,27.79909374642746],[-99.87778216592166,27.842046730957307],[-99.90290722387223,27.86438228291282],[-99.89213934189341,27.899603730227298],[-99.93880016380163,27.94083859537595],[-99.93162157581575,27.981214400834006],[-99.99263957369573,27.99495935588355],[-100.01776463164632,28.0645431908219],[-100.05365757157571,28.08430156370563],[-100.08237192351923,28.144435742047413],[-100.1613363913639,28.16848941338413],[-100.21158650726507,28.196838383173827],[-100.22235438924389,28.235496069250686],[-100.24747944719446,28.23377794986949],[-100.29414026910268,28.28446247161471],[-100.28696168111681,28.317106739857394],[-100.34797967899678,28.403012708917082],[-100.33721179701797,28.443388514375137],[-100.36951544295442,28.47689184230842],[-100.33721179701797,28.501804573335725],[-100.38028332493325,28.51125422993229],[-100.4125869708697,28.551630035390346],[-100.39822979489794,28.585133363323628],[-100.44847991079911,28.609187034660344],[-100.44489061680616,28.63753600445004],[-100.49873002670026,28.66158967578675],[-100.51308720267203,28.705401720007195],[-100.50590861468613,28.740623167321665],[-100.53462296662966,28.762958719277187],[-100.54898014260142,28.825670076690763],[-100.57051590655907,28.82652913638136],[-100.60281955249552,28.902126389153885],[-100.63153390443904,28.902985448844483],[-100.66742684436844,29.08424704356043],[-100.69255190231902,29.11517319242192],[-100.77510566415664,29.17358925138251],[-100.76433778217782,29.185616087050867],[-100.79664142811427,29.241454966939664],[-100.8791951899519,29.28183077239772],[-100.88637377793778,29.307602563115623],[-100.94739177581775,29.34711930888308],[-101.01199906769067,29.368595801148004],[-101.05865988959889,29.440756815158146],[-101.05865988959889,29.45879706866068],[-101.15198153341532,29.476837322163213],[-101.17351729737297,29.514635948549483],[-101.25607105921058,29.520649366383658],[-101.24530317723176,29.56961576874768],[-101.25248176521765,29.625454648636484],[-101.27042823518235,29.629749947089465],[-101.29196399913998,29.572192947819474],[-101.31349976309762,29.595387559465593],[-101.30632117511175,29.640917723067226],[-101.36733917299172,29.664112334713344],[-101.41399999489994,29.756890781297805],[-101.44271434684346,29.753454542535422],[-101.47501799277993,29.78094445263452],[-101.52167881468814,29.759467960369598],[-101.54680387263872,29.79726658675586],[-101.57551822458224,29.77407197510975],[-101.70832210232102,29.762904199131988],[-101.76216151221512,29.782662572015717]]]},"properties":{"name":"Texas"},"id":"48"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-66.54041955949559,17.975746184451843],[-66.57990179341793,17.96200122940229],[-66.6301519093191,17.982618661976616],[-66.67322343723437,17.966296527855278],[-66.69834849518494,17.977464303833038],[-66.75936649306493,17.998081736407357],[-66.8383309609096,17.949974393733932],[-66.85268813688137,17.955128751877517],[-66.85986672486725,17.95426969218692],[-66.91370613476134,17.947397214662146],[-66.92806331073311,17.92677978208782],[-66.9819027206272,17.952551572805724],[-66.98549201462015,17.967155587545875],[-67.06086718847189,17.974028065070648],[-67.11111730437304,17.94567909528095],[-67.16854600826008,17.962860289092887],[-67.21161753617537,17.952551572805724],[-67.20802824218242,17.998081736407357],[-67.17213530225303,18.024712586815866],[-67.21161753617537,18.03502130310303],[-67.20084965419655,18.090860182991825],[-67.18290318423185,18.10374607835078],[-67.1793138902389,18.168175555145545],[-67.15418883228833,18.194806405554054],[-67.18649247822478,18.26696741956419],[-67.22597471214712,18.29703450873508],[-67.27263553405534,18.36232304522045],[-67.24033188811887,18.375208940579405],[-67.1613674202742,18.41558474603746],[-67.16854600826008,18.47829610345103],[-67.1434209503095,18.50578601355013],[-67.10393871638716,18.514376610456104],[-67.02138495454955,18.510940371693714],[-66.95677766267663,18.48946387942879],[-66.90293825278253,18.484309521285212],[-66.8383309609096,18.487745760047595],[-66.76654508105081,18.484309521285212],[-66.70911637716377,18.472282685616854],[-66.6229733213332,18.494618237572375],[-66.58708038140381,18.48516858097581],[-66.53324097150971,18.48173234221342],[-66.4686336796368,18.468846446854464],[-66.43991932769327,18.4860276406664],[-66.35018697786978,18.4860276406664],[-66.31429403794039,18.474859864688646],[-66.2712225100251,18.480014222832224],[-66.1994366301663,18.46626926778267],[-66.15995439624396,18.453383372423723],[-66.1276507503075,18.472282685616854],[-66.037918400484,18.449947133661333],[-65.99125757857578,18.457678670876703],[-65.90511452274522,18.45080619335193],[-65.82973934889348,18.42331628325283],[-65.79384640896409,18.422457223562233],[-65.75077488104881,18.38465859717597],[-65.6682211192112,18.363182104911047],[-65.62514959129591,18.387235776247756],[-65.63232817928179,18.3477190304803],[-65.62156029730298,18.288443911829113],[-65.57489947539476,18.249786225752253],[-65.60002453334533,18.212846659056588],[-65.63950676726768,18.229168793177926],[-65.62873888528885,18.205115121841217],[-65.6610425312253,18.206833241222405],[-65.68975688316883,18.179343331123306],[-65.71847123511235,18.190511107101067],[-65.74000699906999,18.17332991328913],[-65.77589993899939,18.129517869068685],[-65.79743570295703,18.0693836907269],[-65.82973934889348,18.053061556605563],[-65.85127511285113,18.01182669145691],[-65.91229311073111,17.98090054259542],[-65.97690040260403,17.968014647236465],[-66.0199719305193,17.97832336352363],[-66.04509698846988,17.955128751877517],[-66.07022204642047,17.966296527855278],[-66.15636510225102,17.929356961159606],[-66.19225804218043,17.937088498374983],[-66.217383100131,17.91561200611006],[-66.24250815808158,17.913893886728864],[-66.26404392203922,17.944820035590354],[-66.33941909589096,17.97660524414244],[-66.38607991779918,17.93880661775617],[-66.4506872096721,17.983477721667214],[-66.49016944359444,17.990350199191987],[-66.54041955949559,17.975746184451843]]],[[[-65.33800607186072,18.348578090170896],[-65.29852383793838,18.330537836668363],[-65.2554523100231,18.341705612646123],[-65.22314866408664,18.310779463784634],[-65.28416666196662,18.279853314923145],[-65.3272381898819,18.29617544904449],[-65.33800607186072,18.348578090170896]]],[[[-67.93306562875628,18.11147761556615],[-67.86127974889749,18.121786331853315],[-67.84333327893279,18.08484676515765],[-67.89717268882688,18.052202496914965],[-67.94024421674217,18.079692407014065],[-67.93306562875628,18.11147761556615]]],[[[-65.57489947539476,18.11577291401914],[-65.39902406974069,18.16216213731137],[-65.2733987799878,18.13467222721227],[-65.33800607186072,18.11233667525675],[-65.41338124571246,18.106323257422574],[-65.4528634796348,18.085705824848247],[-65.48157783157832,18.09601454113541],[-65.54259582945829,18.08141052639526],[-65.57489947539476,18.11577291401914]]],[[[-65.59284594535946,18.39239013439134],[-65.56772088740887,18.380363298722983],[-65.56772088740887,18.34256467233672],[-65.59284594535946,18.39239013439134]]]]},"properties":{"name":"Puerto Rico"},"id":"72"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-102.05289432564325,41.00198213121131],[-102.62000277652776,41.002841190901904],[-102.65230642246422,41.00198213121131],[-103.38093310303103,41.00198213121131],[-103.57475497864978,41.00198213121131],[-104.05213107971079,41.00112307152071],[-104.05213107971079,41.3928542904329],[-104.05213107971079,41.56466622855228],[-104.05213107971079,41.6978204805948],[-104.05213107971079,42.0019276110661],[-104.05213107971079,42.611859991389906],[-104.05213107971079,43.001014031230305],[-103.50655839278392,43.001014031230305],[-103.0004679397794,43.00015497153971],[-102.79228888818888,43.00015497153971],[-102.08160867758677,42.99929591184911],[-101.6257683404834,42.99585967308673],[-101.22735670726706,42.997577792467915],[-100.88637377793778,42.997577792467915],[-100.19722933129331,42.99843685215851],[-99.53320994259943,42.99843685215851],[-99.25324501115011,42.99843685215851],[-98.49949327263272,42.99843685215851],[-98.46718962669627,42.947752330413294],[-98.34515363093631,42.90308122650226],[-98.30926069100691,42.88246379392793],[-98.25901057510575,42.87473225671256],[-98.17286751927519,42.83693363032629],[-98.15133175531754,42.83865174970749],[-98.01852787757878,42.762195437244365],[-97.95033129171291,42.769926974459736],[-97.90725976379764,42.79483970548705],[-97.87495611786117,42.858410122591216],[-97.84624176591765,42.86785977918778],[-97.77445588605886,42.84981952568525],[-97.68472353623535,42.84208798846988],[-97.6344734203342,42.85153764506644],[-97.48372307263072,42.850678585375846],[-97.44065154471544,42.846383286922865],[-97.41552648676486,42.866141659806594],[-97.36168707687077,42.85497388382883],[-97.30784766697667,42.867000719497184],[-97.21811531715316,42.84552422723227],[-97.21452602316023,42.81287995898958],[-97.16068661326612,42.79999406363063],[-97.1319722613226,42.77164509384093],[-97.01711485354853,42.76133637755377],[-96.97763261962619,42.76047731786317],[-96.94891826768267,42.71924245271452],[-96.9058467397674,42.73384646745467],[-96.80534650796507,42.70377937828378],[-96.80175721397214,42.6694169906599],[-96.7263820401204,42.66683981158811],[-96.68689980619806,42.65309485653856],[-96.71202486414863,42.608423752627516],[-96.63664969029689,42.55172581304812],[-96.63306039630396,42.52423590294902],[-96.61152463234632,42.50619564944649],[-96.52538157651576,42.51049094789947],[-96.50743510655106,42.484719157181566],[-96.44641710867108,42.49073257501574],[-96.39616699276992,42.48386009749097],[-96.38180981679817,42.446061471104706],[-96.41411346273462,42.40826284471844],[-96.41411346273462,42.342974308233075],[-96.37463122881228,42.31806157720577],[-96.35668475884758,42.276826712057115],[-96.32438111291113,42.22957842907429],[-96.35668475884758,42.21497441433414],[-96.3495061708617,42.16686707166071],[-96.27054170301703,42.118759728987285],[-96.27413099700996,42.04745777466774],[-96.22029158711587,42.02598128240282],[-96.23823805708057,42.012236327353264],[-96.18439864718647,42.0027866707567],[-96.1879879411794,41.977014880038794],[-96.13055923729237,41.97186052189521],[-96.14132711927118,41.915162582315816],[-96.16286288322883,41.90571292571925],[-96.13773782527825,41.86619617995179],[-96.10902347333473,41.82066601635016],[-96.06595194541946,41.80090764346643],[-96.07671982739826,41.76139089769897],[-96.10543417934178,41.74420970388703],[-96.08389841538416,41.6978204805948],[-96.12338064930648,41.68321646585465],[-96.09466629736296,41.64713595884958],[-96.11979135531355,41.6136326309163],[-96.08030912139121,41.580129302983025],[-96.09107700337003,41.5320219603096],[-96.03723759347594,41.50796828897288],[-96.03005900549005,41.53975349752497],[-95.9977553595536,41.53889443783437],[-95.9977553595536,41.507109229282285],[-96.00493394753947,41.47274684165841],[-95.93314806768068,41.46415624475244],[-95.93673736167361,41.391136171051706],[-95.9546838316383,41.33959258961589],[-95.88289795177951,41.31639797796977],[-95.92955877368773,41.2811765306553],[-95.91161230372303,41.22705577014769],[-95.92238018570185,41.190975263142626],[-95.83982642386424,41.17465312902128],[-95.87930865778657,41.160049114281136],[-95.86495148181481,41.080156563055624],[-95.87930865778657,41.05352571264712],[-95.86136218782187,40.995109653686534],[-95.82905854188542,40.97792845987459],[-95.83982642386424,40.94012983348833],[-95.81470136591365,40.90147214741147],[-95.83982642386424,40.872264117931174],[-95.84700501185011,40.81127087989879],[-95.83264783587835,40.78378096979969],[-95.87930865778657,40.752854820938204],[-95.88648724577246,40.72106961238612],[-95.83264783587835,40.671244150331496],[-95.78598701397013,40.65749919528194],[-95.75009407404073,40.60939185260852],[-95.7644512500125,40.58533818127181],[-95.76804054400543,40.5312174207642],[-95.7106118401184,40.52348588354883],[-95.69266537015369,40.55698921148211],[-95.65318313623136,40.54152613705136],[-95.69984395813958,40.505445630046296],[-95.69625466414664,40.47108324242242],[-95.6567724302243,40.44187521294212],[-95.66036172421724,40.40837188500884],[-95.61729019630197,40.313875319043184],[-95.55268290442903,40.29153976708766],[-95.55627219842198,40.264049856988564],[-95.55268290442903,40.26233173760737],[-95.48448631856319,40.247727722867225],[-95.4773077305773,40.18158012669126],[-95.39116467474675,40.1162915902059],[-95.41987902669027,40.04842587464874],[-95.30861091290913,40.00031853197531],[-95.34091455884558,40.00031853197531],[-95.78957630796307,40.00031853197531],[-96.01211253552535,40.00031853197531],[-96.23823805708057,40.00031853197531],[-96.46436357863578,40.00117759166591],[-96.80534650796507,40.00117759166591],[-96.91661462174622,40.00117759166591],[-97.36886566485664,40.002036651356505],[-97.82111670796708,40.002036651356505],[-97.93238482174822,40.002036651356505],[-98.2733677510775,40.0028957110471],[-98.50308256662566,40.002036651356505],[-98.72561879418794,40.002036651356505],[-99.06660172351722,40.002036651356505],[-99.17786983729837,40.002036651356505],[-99.62653158641587,40.002036651356505],[-100.1792828613286,40.00117759166591],[-100.19364003730037,40.00117759166591],[-100.73921272422724,40.002036651356505],[-100.75715919419194,40.002036651356505],[-101.32426764507645,40.0028957110471],[-101.41041070090701,40.002036651356505],[-102.05289432564325,40.0028957110471],[-102.05289432564325,40.349096766357654],[-102.05289432564325,40.44015709356093],[-102.05289432564325,40.69787500074],[-102.05289432564325,40.749418582175814],[-102.05289432564325,41.00198213121131]]]},"properties":{"name":"Nebraska"},"id":"31"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-105.71756349243492,36.99618679395793],[-106.00470701187011,36.995327734267335],[-106.47490452494525,36.99360961488614],[-106.86972686416864,36.99275055519555],[-106.87690545215452,37.00048209241092],[-107.42247813908139,36.99962303272032],[-107.48349613696136,36.99962303272032],[-108.24801575745757,36.998763973029725],[-108.38081963519635,36.99962303272032],[-109.04483902389023,36.998763973029725],[-109.04483902389023,37.48499175790757],[-109.04124972989729,37.53052192150921],[-109.04124972989729,37.881018275272744],[-109.04124972989729,38.153340197191966],[-109.05919619986199,38.27532667325673],[-109.05919619986199,38.500400312193115],[-109.05919619986199,38.719460533295326],[-109.05201761187611,38.905017426464255],[-109.05201761187611,39.366332480314796],[-109.05201761187611,39.497768612976124],[-109.05201761187611,39.66013089449894],[-109.05201761187611,40.22281499183991],[-109.05201761187611,40.50029127190271],[-109.04842831788318,40.66265355342553],[-109.04842831788318,41.00026401183011],[-108.17981917159172,41.00026401183011],[-107.9178007101071,41.00198213121131],[-107.31838861328613,41.002841190901904],[-106.85895898218982,41.002841190901904],[-106.32056488324882,40.999404952139514],[-106.19135029950299,40.99768683275832],[-105.7247420804208,40.99682777306772],[-105.2760803313033,40.99854589244892],[-104.9422759899599,40.99768683275832],[-104.49720353483534,41.00198213121131],[-104.05213107971079,41.00112307152071],[-103.57475497864978,41.00198213121131],[-103.38093310303103,41.00198213121131],[-102.65230642246422,41.00198213121131],[-102.62000277652776,41.002841190901904],[-102.05289432564325,41.00198213121131],[-102.05289432564325,40.749418582175814],[-102.05289432564325,40.69787500074],[-102.05289432564325,40.44015709356093],[-102.05289432564325,40.349096766357654],[-102.05289432564325,40.0028957110471],[-102.0493050316503,39.574224925439246],[-102.0493050316503,39.56821150760507],[-102.0493050316503,39.30276206321062],[-102.04571573765737,39.13352730416303],[-102.04571573765737,39.046762275412746],[-102.04571573765737,38.6979840410304],[-102.04571573765737,38.615514310733104],[-102.04571573765737,38.26845419573195],[-102.04571573765737,38.26244077789777],[-102.04212644366443,37.73841436663366],[-102.04212644366443,37.643917800668],[-102.04212644366443,37.38877707256072],[-102.04212644366443,36.99275055519555],[-102.69896724437244,36.995327734267335],[-102.77793171221711,36.99962303272032],[-103.0004679397794,37.00048209241092],[-103.08661099560995,37.00048209241092],[-104.00905955179552,36.99618679395793],[-104.33927459914598,36.99360961488614],[-104.99970469384694,36.99360961488614],[-105.15404433554335,36.995327734267335],[-105.22224092140921,36.995327734267335],[-105.71756349243492,36.99618679395793]]]},"properties":{"name":"Colorado"},"id":"08"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-76.78785390933909,39.721124132531315],[-76.56890697576975,39.721124132531315],[-76.23869192841929,39.72198319222191],[-76.23151334043341,39.72198319222191],[-76.13460240262403,39.72198319222191],[-75.7900301793018,39.72198319222191],[-75.7900301793018,39.64810405883058],[-75.76849441534415,39.37750025629256],[-75.76131582735827,39.29674864537645],[-75.75772653336533,39.24606412363123],[-75.7469586513865,39.142976960759604],[-75.72183359343593,38.83027923338233],[-75.70747641746418,38.63527268361683],[-75.70029782947829,38.5605344905349],[-75.69311924149241,38.46002450673506],[-75.3413684301843,38.45229296951969],[-75.05063561675617,38.45143390982909],[-75.0542249107491,38.41449434313343],[-75.08652855668556,38.32429307562075],[-75.10447502665026,38.311407180261796],[-75.17626090650906,38.13014558554585],[-75.24086819838197,38.02705842267422],[-75.62492265562655,37.99441415443154],[-75.64645841958419,37.94716587144871],[-75.66799418354184,37.95060211021109],[-75.71465500545006,37.976373900929005],[-75.78285159131592,37.972937662166615],[-75.86181605916059,37.917957841968416],[-75.89411970509705,37.91709878227782],[-75.89770899908999,37.97465578154781],[-75.87258394113941,38.03478995988959],[-75.81156594325942,38.0588436312263],[-75.87258394113941,38.0605617506075],[-75.86540535315353,38.09921943668436],[-75.82592311923119,38.13358182430824],[-75.90129829308293,38.14131336152361],[-75.9443698209982,38.11296439173391],[-75.95872699696997,38.13701806307063],[-75.94078052700527,38.18684352512525],[-75.84745888318884,38.21003813677136],[-75.86540535315353,38.238387106561056],[-75.90129829308293,38.23237368872688],[-75.90488758707586,38.29766222521224],[-75.86181605916059,38.35178298571985],[-75.91565546905468,38.338897090360895],[-75.94078052700527,38.29852128490284],[-75.94078052700527,38.24697770346703],[-75.9694948789488,38.246118643776434],[-76.00897711287112,38.31226623995239],[-75.9694948789488,38.319997777167764],[-75.97308417294173,38.365527940769404],[-76.00179852488525,38.37411853767537],[-76.01615570085701,38.33202461283612],[-76.04845934679346,38.303675643046425],[-76.02692358283582,38.280481031400306],[-76.05922722877229,38.2272193305833],[-76.07358440474404,38.25213206161061],[-76.13460240262403,38.23237368872688],[-76.16690604856048,38.242682405014044],[-76.22433475244752,38.31398435933359],[-76.25663839838398,38.32515213531135],[-76.24945981039811,38.362091702007014],[-76.33560286622865,38.49180971528715],[-76.26381698636986,38.503836550955505],[-76.24587051640516,38.53733987888878],[-76.27458486834868,38.531326461054604],[-76.30688851428513,38.57513850527505],[-76.27817416234163,38.60950089289892],[-76.23510263442634,38.62840020609205],[-76.2135668704687,38.60692371382713],[-76.17049534255342,38.62925926578265],[-76.16690604856048,38.59833311692116],[-76.0879415807158,38.59060157970579],[-76.04128075880759,38.55709825177251],[-76.03051287682877,38.57256132620326],[-76.08435228672286,38.62496396732967],[-76.14537028460285,38.63699080299802],[-76.17408463654637,38.673071310003095],[-76.19920969449694,38.6704941309313],[-76.25663839838398,38.73664172710726],[-76.27458486834868,38.71258805577055],[-76.31765639626396,38.72976924958249],[-76.3212456902569,38.67908472783727],[-76.34637074820748,38.685957205362044],[-76.33560286622865,38.77272223411234],[-76.27099557435574,38.85175572564725],[-76.22074545845459,38.81309803957039],[-76.19203110651107,38.82168863647636],[-76.19920969449694,38.850896665956654],[-76.20279898848989,38.928212038110374],[-76.23151334043341,38.942816052850524],[-76.29253133831338,38.90244024739247],[-76.33560286622865,38.90587648615485],[-76.33201357223572,38.8646416210062],[-76.375085100151,38.850037606266056],[-76.36072792417924,38.939379814088134],[-76.3032992202922,39.02614484283842],[-76.27817416234163,38.98233279861798],[-76.20279898848989,38.972883142021416],[-76.16331675456755,38.99951399242992],[-76.18485251852519,39.04590321572215],[-76.1597274605746,39.094010558395574],[-76.20279898848989,39.085419961489606],[-76.2135668704687,39.04074885757857],[-76.19920969449694,39.01411800717006],[-76.24228122241222,39.02872202191021],[-76.23151334043341,39.08284278241782],[-76.25304910439104,39.13352730416303],[-76.27817416234163,39.14555413983139],[-76.22074545845459,39.262386257752574],[-76.1776739305393,39.29846676475764],[-76.18485251852519,39.31908419733197],[-76.13460240262403,39.34056068959689],[-76.10947734467345,39.37234589814898],[-76.02333428884289,39.362037181861815],[-76.00179852488525,39.37664119660196],[-76.04128075880759,39.38780897257972],[-75.97667346693467,39.4479431509215],[-76.01256640686407,39.45309750906508],[-75.9694948789488,39.55790279131791],[-76.07717369873698,39.54329877657776],[-76.11665593265933,39.49605049359493],[-76.07358440474404,39.4754330610206],[-76.05922722877229,39.4479431509215],[-76.10229875668756,39.435916315253145],[-76.22433475244752,39.35258752526524],[-76.24945981039811,39.37921837567375],[-76.22433475244752,39.42560759896598],[-76.25304910439104,39.4496612703027],[-76.25304910439104,39.411862643916436],[-76.2853527503275,39.36805059969599],[-76.25663839838398,39.3388425702157],[-76.28176345633456,39.29932582444824],[-76.31406710227103,39.389527091960915],[-76.3571386301863,39.389527091960915],[-76.33560286622865,39.305339242282415],[-76.36431721817218,39.312211719807195],[-76.38585298212982,39.27613121280212],[-76.34278145421455,39.25723189960899],[-76.41815662806628,39.21943327322273],[-76.44328168601686,39.19537960188601],[-76.48994250792508,39.20225207941079],[-76.52942474184742,39.24090976548765],[-76.57608556375564,39.26410437713376],[-76.56531768177682,39.224587631366305],[-76.53301403584035,39.20654737786377],[-76.52583544785448,39.178198408074074],[-76.42892451004509,39.131809184781844],[-76.42174592205922,39.074252185511845],[-76.43969239202391,39.05277569324693],[-76.3930315701157,39.011540828098276],[-76.47558533195331,38.972883142021416],[-76.45046027400274,38.94109793346933],[-76.46122815598156,38.90673554584545],[-76.49353180191801,38.91017178460784],[-76.5186568598686,38.86292350162501],[-76.49712109591096,38.81739333802337],[-76.55813909379094,38.76756787596875],[-76.52942474184742,38.71344711546115],[-76.53301403584035,38.67822566814667],[-76.51147827188272,38.615514310733104],[-76.5186568598686,38.539057998269975],[-76.49353180191801,38.48321911838118],[-76.41456733407334,38.41449434313343],[-76.38585298212982,38.361232642316416],[-76.41815662806628,38.322574956239556],[-76.47199603796038,38.32429307562075],[-76.45404956799568,38.29336692675926],[-76.40379945209452,38.311407180261796],[-76.375085100151,38.29938034459344],[-76.40021015810157,38.25900453913538],[-76.38585298212982,38.21776967398673],[-76.3212456902569,38.138736182451815],[-76.3391921602216,38.119836869258684],[-76.3212456902569,38.03650807927079],[-76.35354933619335,38.05283021339213],[-76.3930315701157,38.10265567544675],[-76.42174592205922,38.10609191420914],[-76.43969239202391,38.16107173440734],[-76.46840674396744,38.153340197191966],[-76.47558533195331,38.10437379482794],[-76.5007103899039,38.13701806307063],[-76.52942474184742,38.134440883998835],[-76.54737121181212,38.17567574914749],[-76.5904427397274,38.21433343522435],[-76.67299650156501,38.234091808108076],[-76.79862179131791,38.23666898717987],[-76.82733614326143,38.34748768726686],[-76.84887190721906,38.35521922448224],[-76.87040767117671,38.33202461283612],[-76.83451473124731,38.27360855387553],[-76.84169331923319,38.2547092406824],[-76.92065778707787,38.29164880737807],[-76.92783637506375,38.32085683685836],[-76.97449719697197,38.34748768726686],[-77.01756872488724,38.445420491994916],[-77.08935460474605,38.40762186560865],[-77.20780130651306,38.35951452293522],[-77.25087283442834,38.38270913458134],[-77.27599789237892,38.481500998999984],[-77.23651565845658,38.55194389362893],[-77.18267624856249,38.60091029599295],[-77.11089036870368,38.62668208671086],[-77.12883683866839,38.63527268361683],[-77.13242613266132,38.67393036969369],[-77.0857653107531,38.70571557824577],[-77.04269378283783,38.71860147360473],[-77.03910448884488,38.785608129471285],[-77.03910448884488,38.79162154730547],[-76.90988990509905,38.892990590795904],[-77.00321154891549,38.96515160480604],[-77.04269378283783,38.99435963428633],[-77.11806895668957,38.934225455944556],[-77.15037260262602,38.966010664496636],[-77.22215848248483,38.97116502264022],[-77.25087283442834,38.985769037380365],[-77.2472835404354,39.02700390252902],[-77.32983730227302,39.05793005139051],[-77.4626411800118,39.07597030489304],[-77.48417694396943,39.10947363282632],[-77.52006988389884,39.12064140880408],[-77.5164805899059,39.170466870858704],[-77.45905188601886,39.220292332913324],[-77.49494482594825,39.25121848177481],[-77.54160564785647,39.26496343682436],[-77.56314141181412,39.30362112290122],[-77.61698082170821,39.30276206321062],[-77.6779988195882,39.324238555475546],[-77.72107034750347,39.32166137640376],[-77.75696328743287,39.33368821207211],[-77.73542752347524,39.38780897257972],[-77.75337399343994,39.424748539275384],[-77.78567763937639,39.43505725556255],[-77.79644552135521,39.481446478854785],[-77.82515987329873,39.494332374213734],[-77.82515987329873,39.52955382152821],[-77.86105281322813,39.51409074709746],[-77.88976716517165,39.55790279131791],[-77.8323384612846,39.57078868667686],[-77.8323384612846,39.60257389522894],[-77.88258857718577,39.59913765646656],[-77.94360657506574,39.61889602935029],[-78.00821386693866,39.601714835538345],[-78.02257104291043,39.619755089040886],[-78.09794621676217,39.678171148001475],[-78.18408927259273,39.69535234181341],[-78.26664303443034,39.61889602935029],[-78.3348396202962,39.636077223162225],[-78.38150044220441,39.62920474563745],[-78.38508973619736,39.608587313063126],[-78.43533985209852,39.61803696965969],[-78.39585761817618,39.59054705956059],[-78.4425184400844,39.59140611925118],[-78.41739338213382,39.54931219441194],[-78.46764349803497,39.516667926169255],[-78.5681437298373,39.520104164931645],[-78.59326878778788,39.535567239362386],[-78.6578760796608,39.53470817967179],[-78.72607266552666,39.56391620915208],[-78.73325125351253,39.586251761107604],[-78.77991207542075,39.601714835538345],[-78.73325125351253,39.613741671206704],[-78.77991207542075,39.62233226811267],[-78.91630524715247,39.48660083699836],[-78.95578748107481,39.44021161370613],[-79.06705559485594,39.474574001330005],[-79.09576994679946,39.47285588194881],[-79.14243076870768,39.408426405154046],[-79.25369888248882,39.35688282371823],[-79.27164535245352,39.32939291361913],[-79.28959182241822,39.29932582444824],[-79.3326633503335,39.30018488413884],[-79.45111005210052,39.211701736007356],[-79.48700299202991,39.20568831817317],[-79.47623511005109,39.721124132531315],[-79.39368134821348,39.721124132531315],[-78.92707312913129,39.72284225191251],[-78.80862642736427,39.72284225191251],[-78.38150044220441,39.72284225191251],[-78.34201820828208,39.72284225191251],[-78.09794621676217,39.72284225191251],[-77.46981976799768,39.720265072840725],[-77.45905188601886,39.720265072840725],[-77.21856918849188,39.720265072840725],[-76.99962225492254,39.720265072840725],[-76.78785390933909,39.721124132531315]]],[[[-76.04845934679346,38.12069592894928],[-76.09153087470874,38.114682511115106],[-76.0879415807158,38.19285694295942],[-76.04845934679346,38.204024718937184],[-76.02333428884289,38.17825292821927],[-76.03051287682877,38.14732677935779],[-76.00538781887819,38.076883884728844],[-76.05922722877229,38.09492413823138],[-76.04845934679346,38.12069592894928]]],[[[-76.39662086410864,38.77100411473114],[-76.37867439414394,38.78818530854308],[-76.36072792417924,38.74866856277562],[-76.39662086410864,38.77100411473114]]],[[[-75.99461993689937,37.953179289282886],[-76.04487005280052,37.953179289282886],[-76.04845934679346,38.015031587005865],[-76.01974499484994,38.039085258342574],[-75.9802627609276,38.0047228707187],[-75.99461993689937,37.953179289282886]]]]},"properties":{"name":"Maryland"},"id":"24"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.06660172351722,40.002036651356505],[-98.72561879418794,40.002036651356505],[-98.50308256662566,40.002036651356505],[-98.2733677510775,40.0028957110471],[-97.93238482174822,40.002036651356505],[-97.82111670796708,40.002036651356505],[-97.36886566485664,40.002036651356505],[-96.91661462174622,40.00117759166591],[-96.80534650796507,40.00117759166591],[-96.46436357863578,40.00117759166591],[-96.23823805708057,40.00031853197531],[-96.01211253552535,40.00031853197531],[-95.78957630796307,40.00031853197531],[-95.34091455884558,40.00031853197531],[-95.30861091290913,40.00031853197531],[-95.25118220902209,39.9487749505395],[-95.20452138711387,39.939325293942936],[-95.20093209312093,39.902385727247264],[-95.1542712712127,39.90754008539085],[-95.13632480124801,39.87661393652936],[-95.04300315743157,39.864587100861],[-94.9927530415304,39.89809042879428],[-94.92814574965749,39.88864077219772],[-94.94250292562926,39.864587100861],[-94.87789563375634,39.82077505664056],[-94.88148492774927,39.797580444994445],[-94.92455645566456,39.789848907779074],[-94.91378857368574,39.758922758917585],[-94.87071704577045,39.77266771396713],[-94.8743063397634,39.73057378912789],[-94.91019927969279,39.7254194309843],[-94.95686010160101,39.74603686355863],[-94.97480657156571,39.68160738676386],[-95.0286459814598,39.66528525264252],[-95.05377103941039,39.6154597905879],[-95.04659245142452,39.59484235801357],[-95.10761044930449,39.574224925439246],[-95.10402115531154,39.532990060290594],[-95.05018174541745,39.497768612976124],[-95.04659245142452,39.47285588194881],[-94.98916374753748,39.44622503154031],[-94.96762798357983,39.41873512144121],[-94.92455645566456,39.38437273381733],[-94.87789563375634,39.37578213691136],[-94.91019927969279,39.35430564464644],[-94.88866351573515,39.28643992908928],[-94.82405622386223,39.24176882517825],[-94.83482410584105,39.21771515384153],[-94.77380610796108,39.200533960029595],[-94.76303822598226,39.17991652745527],[-94.71278811008109,39.170466870858704],[-94.68048446414464,39.18421182590825],[-94.66253799417994,39.15758097549975],[-94.60151999629996,39.15929909488094],[-94.60869858428583,39.1137689312793],[-94.60869858428583,39.044185096340954],[-94.60869858428583,38.847460427194264],[-94.60869858428583,38.73835984648846],[-94.61228787827878,38.477205700546996],[-94.61228787827878,38.388722552415516],[-94.61228787827878,38.0597026909169],[-94.61228787827878,38.037367138961386],[-94.61946646626465,37.673125830148294],[-94.61587717227172,37.653367457264565],[-94.61587717227172,37.36386434153341],[-94.61587717227172,37.3380925508155],[-94.61946646626465,37.05718003199031],[-94.61946646626465,36.998763973029725],[-95.00711021750217,36.99962303272032],[-95.07171750937509,36.99962303272032],[-95.40911114471145,36.99962303272032],[-95.52396855248551,36.99962303272032],[-95.78598701397013,36.99962303272032],[-95.96545171361713,36.998763973029725],[-96.00134465354652,36.998763973029725],[-96.52538157651576,36.998763973029725],[-96.75150709807097,36.998763973029725],[-97.14632943729437,36.998763973029725],[-97.46218730867308,36.998763973029725],[-97.80317023800238,36.998763973029725],[-98.11184952139521,36.99790491333913],[-98.34874292492924,36.99790491333913],[-98.54615409454094,36.998763973029725],[-99.0019944316443,36.99962303272032],[-99.45783476874769,36.99962303272032],[-99.5403885305853,36.99962303272032],[-100.00340745567455,37.00134115210152],[-100.08955051150511,37.002200211792115],[-100.63153390443904,36.99962303272032],[-100.94380248182482,36.99790491333913],[-101.06583847758478,36.99790491333913],[-101.5539824606246,36.995327734267335],[-102.02776926769268,36.99275055519555],[-102.04212644366443,36.99275055519555],[-102.04212644366443,37.38877707256072],[-102.04212644366443,37.643917800668],[-102.04212644366443,37.73841436663366],[-102.04571573765737,38.26244077789777],[-102.04571573765737,38.26845419573195],[-102.04571573765737,38.615514310733104],[-102.04571573765737,38.6979840410304],[-102.04571573765737,39.046762275412746],[-102.04571573765737,39.13352730416303],[-102.0493050316503,39.30276206321062],[-102.0493050316503,39.56821150760507],[-102.0493050316503,39.574224925439246],[-102.05289432564325,40.0028957110471],[-101.41041070090701,40.002036651356505],[-101.32426764507645,40.0028957110471],[-100.75715919419194,40.002036651356505],[-100.73921272422724,40.002036651356505],[-100.19364003730037,40.00117759166591],[-100.1792828613286,40.00117759166591],[-99.62653158641587,40.002036651356505],[-99.17786983729837,40.002036651356505],[-99.06660172351722,40.002036651356505]]]},"properties":{"name":"Kansas"},"id":"20"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-88.41357715247152,37.42399851987519],[-88.47818444434444,37.387058953179526],[-88.48536303233033,37.3398106701967],[-88.51766667826678,37.283971790307895],[-88.5104880902809,37.26249529804297],[-88.44947009240092,37.206656418154175],[-88.42434503445034,37.14995847857478],[-88.46023797437974,37.07350216611165],[-88.48895232632326,37.067488748277476],[-88.564327500175,37.07865652425524],[-88.62893479204791,37.12075044909449],[-88.75456008180082,37.15511283671836],[-88.80481019770197,37.18861616465164],[-88.92684619346193,37.226414791037904],[-88.93402478144782,37.2281329104191],[-88.98427489734897,37.228991970109696],[-89.03093571925719,37.21095171660716],[-89.0775965411654,37.17487120960209],[-89.10990018710187,37.11903232971329],[-89.17091818498184,37.068347807968074],[-89.18168606696067,37.02711294281942],[-89.1314359510595,36.982441838908386],[-89.17091818498184,36.97041500324003],[-89.19963253692536,37.01594516684166],[-89.26065053480535,37.064052509515086],[-89.3109006507065,37.05374379322792],[-89.2570612408124,37.01508610715106],[-89.26782912279123,36.99360961488614],[-89.3109006507065,37.00907268931689],[-89.37909723657236,37.03999883817838],[-89.37550794257942,37.08552900178001],[-89.41499017650176,37.12504574754747],[-89.46165099840998,37.1997839406294],[-89.45806170441703,37.24015974608746],[-89.4903653503535,37.25132752206522],[-89.51907970229702,37.28568990968909],[-89.48677605636055,37.33465631205311],[-89.4365259404594,37.34410596864968],[-89.42216876448764,37.39736766946669],[-89.51549040830407,37.53567627965279],[-89.52266899628997,37.56660242851428],[-89.52266899628997,37.57089772696726],[-89.47600817438175,37.595810457994574],[-89.5083118203182,37.62501848747487],[-89.51549040830407,37.69288420303202],[-89.58368699416994,37.71350163560635],[-89.6159906401064,37.74958214261142],[-89.66624075600755,37.75215932168321],[-89.67341934399343,37.80284384342843],[-89.7416159298593,37.84665588764887],[-89.79545533975339,37.856964603936035],[-89.79904463374633,37.88187733496334],[-89.84570545565455,37.90593100630006],[-89.9031341595416,37.869850499294984],[-89.93902709947099,37.87500485743857],[-89.97492003940039,37.926548438874384],[-89.93184851148511,37.94716587144871],[-89.94261639346394,37.97036048309482],[-90.00004509735096,37.96434706526065],[-90.06106309523095,38.01589064669646],[-90.08977744717447,38.01589064669646],[-90.12925968109681,38.06227986998869],[-90.20822414894148,38.088051660706604],[-90.25129567685677,38.12756840647406],[-90.2907779107791,38.1705213910039],[-90.35538520265202,38.21347437553375],[-90.37333167261673,38.27360855387553],[-90.36974237862378,38.34061520974209],[-90.34102802668026,38.38786349272492],[-90.29436720477204,38.426521178801785],[-90.26206355883558,38.52101774476744],[-90.25847426484265,38.5321855207452],[-90.18309909099091,38.61121901228012],[-90.18309909099091,38.66018541464414],[-90.21181344293443,38.72203771236712],[-90.16515262102621,38.77272223411234],[-90.11849179911799,38.805366502355014],[-90.11490250512504,38.84917854657546],[-90.25129567685677,38.919621441204406],[-90.27642073480735,38.923057679966796],[-90.3087243807438,38.92391673965739],[-90.40563531855318,38.96257442573425],[-90.4522961404614,38.96772878387783],[-90.47383190441904,38.95913818697186],[-90.5061355503555,38.90244024739247],[-90.54561778427784,38.87495033729336],[-90.58510001820018,38.86893691945919],[-90.62817154611545,38.89127247141471],[-90.66406448604485,38.934225455944556],[-90.67483236802367,38.98405091799918],[-90.71431460194601,39.05707099169991],[-90.68201095600956,39.0879971405614],[-90.71072530795307,39.155003796427955],[-90.72149318993189,39.22372857167571],[-90.7932790697907,39.3096345407354],[-90.93685082950829,39.39983580824808],[-91.00504741537415,39.42732571834718],[-91.06247611926119,39.47371494163941],[-91.10195835318353,39.539003478124776],[-91.14861917509175,39.54587595564955],[-91.17733352703527,39.59827859677596],[-91.22399434894349,39.617177909969094],[-91.30654811078111,39.68504362552625],[-91.37115540265403,39.732291908509076],[-91.36397681466815,39.758922758917585],[-91.37474469664696,39.808748220972205],[-91.42858410654107,39.8379562504525],[-91.44653057650576,39.87060051869518],[-91.41781622456224,39.92729845827458],[-91.43576269452694,39.94533871177711],[-91.49319139841398,40.036399038980385],[-91.51472716237161,40.178143887928876],[-91.5039592803928,40.20047943988439],[-91.49678069240692,40.248586782557815],[-91.49319139841398,40.27779481203812],[-91.44653057650576,40.36284172140721],[-91.41781622456224,40.37830479583795],[-91.37474469664696,40.3920497508875],[-91.38192328463285,40.43500273541735],[-91.36756610866108,40.51231810757107],[-91.40704834258342,40.54238519674196],[-91.3603875206752,40.60166031539315],[-91.24911940689407,40.63859988208881],[-91.18451211502115,40.637740822398214],[-91.11990482314823,40.67296226971269],[-91.11272623516234,40.69615688135881],[-91.09119047120471,40.825015834948346],[-91.05529753127531,40.84821044659446],[-91.00504741537415,40.90490838617386],[-90.96556518145181,40.9212305202952],[-90.94402941749416,41.01229084749847],[-90.94761871148711,41.06984784676846],[-90.94761871148711,41.07242502584025],[-90.94761871148711,41.09647869717696],[-90.99427953339533,41.160908173971734],[-91.04094035530355,41.16606253211531],[-91.11272623516234,41.23908260581605],[-91.07324400124001,41.333579171781714],[-91.04452964929649,41.41604890207901],[-90.97633306343063,41.434089155581546],[-90.92967224152241,41.4212032602226],[-90.8471184796848,41.45556564784647],[-90.78610048180481,41.452988468774684],[-90.73585036590366,41.45041128970289],[-90.6497073100731,41.465015304443035],[-90.59227860618606,41.51312264711646],[-90.55638566625666,41.52429042309422],[-90.46306402244022,41.523431363403624],[-90.3984567305673,41.572397765767654],[-90.34102802668026,41.59043801927019],[-90.34461732067321,41.64713595884958],[-90.31231367473674,41.6978204805948],[-90.31590296872969,41.72874662945629],[-90.24411708887088,41.78286738996389],[-90.17950979699796,41.8094982403724],[-90.18309909099091,41.84471968768687],[-90.15079544505444,41.92890753736537],[-90.16515262102621,41.95639744746447],[-90.14002756307562,42.00880008859088],[-90.15438473904739,42.03285375992759],[-90.16874191501914,42.07580674445744],[-90.16156332703326,42.11704160960609],[-90.20822414894148,42.15226305692056],[-90.31949226272262,42.19349792206921],[-90.37692096660966,42.21497441433414],[-90.43076037650376,42.27854483143831],[-90.41999249452495,42.33008841287412],[-90.47383190441904,42.381631994309934],[-90.55638566625666,42.415994381933814],[-90.56356425424254,42.438329933889335],[-90.64252872208722,42.46839702306023],[-90.64252872208722,42.508772828518275],[-90.42717108251082,42.50705470913709],[-89.92825921749217,42.50619564944649],[-89.83852686766868,42.50533658975589],[-89.40063300053001,42.50018223161231],[-89.3647400606006,42.50018223161231],[-88.9412033694337,42.49502787346873],[-88.77609584575845,42.492450694396936],[-88.7078992598926,42.493309754087534],[-88.30589833268333,42.49502787346873],[-88.19821951289512,42.495886933159326],[-87.7998078796788,42.49159163470634],[-87.80698646766467,42.385068233072325],[-87.83570081960819,42.30173944308442],[-87.7998078796788,42.20810193680936],[-87.76032564575645,42.15226305692056],[-87.68136117791178,42.07580674445744],[-87.67059329593296,42.02941752116521],[-87.62393247402474,41.91000822417224],[-87.60957529805297,41.845578747377466],[-87.55932518215182,41.765686196151954],[-87.5306108302083,41.74850500234002],[-87.52343224222241,41.70812919688196],[-87.52702153621536,41.47016966258662],[-87.52702153621536,41.29835772446724],[-87.52702153621536,41.16606253211531],[-87.52702153621536,41.010572728117275],[-87.52702153621536,40.73653268681686],[-87.52702153621536,40.490841615306145],[-87.52702153621536,40.4770966602566],[-87.5306108302083,40.148076798757984],[-87.53420012420123,39.882627354363535],[-87.5306108302083,39.60772825337253],[-87.5306108302083,39.4771511804018],[-87.5306108302083,39.34829222681226],[-87.57727165211652,39.34056068959689],[-87.60957529805297,39.2821446306363],[-87.6023967100671,39.25980907868078],[-87.57368235812358,39.21857421353213],[-87.64187894398944,39.15758097549975],[-87.63111106201062,39.10431927468274],[-87.57368235812358,39.05707099169991],[-87.57727165211652,38.989205276142755],[-87.5126643602436,38.954842888518876],[-87.52702153621536,38.90759460553605],[-87.55214659416593,38.85948726286262],[-87.53420012420123,38.85261478533785],[-87.49830718427184,38.77873565194651],[-87.4947178902789,38.742655144941445],[-87.54496800618006,38.677366608456076],[-87.59521812208122,38.66705789216891],[-87.6203431800318,38.63956798206981],[-87.65264682596826,38.56826602775027],[-87.65264682596826,38.511568088170876],[-87.73878988179881,38.47548758116581],[-87.7459684697847,38.41449434313343],[-87.77827211572115,38.37068229891298],[-87.80698646766467,38.36295076169761],[-87.85364728957289,38.27532667325673],[-87.88236164151641,38.303675643046425],[-87.90748669946699,38.26845419573195],[-87.92543316943168,38.29852128490284],[-87.95773681536815,38.24010522594225],[-87.98645116731167,38.2564273600636],[-87.98645116731167,38.22979650965509],[-87.97568328533285,38.198011301103],[-87.92543316943168,38.14646771966719],[-88.00439763727637,38.08375636225362],[-87.9613261093611,38.100078496374955],[-87.96850469734697,38.06743422813228],[-88.03670128321284,38.05111209401093],[-88.00798693126931,38.02877654205541],[-88.01157622526225,37.9772329606196],[-88.06541563515634,37.919675961349604],[-88.01157622526225,37.8947632303223],[-88.09054069310693,37.89132699155991],[-88.04029057720577,37.822602216312156],[-88.08336210512105,37.830333753527526],[-88.06900492914929,37.80112572404723],[-88.02952269522694,37.79940760466604],[-88.05823704717046,37.74270966508664],[-88.11925504505045,37.71264257591575],[-88.15873727897278,37.664535233242326],[-88.1336122210222,37.57433396572965],[-88.07259422314223,37.52880380212802],[-88.06182634116341,37.5056091904819],[-88.08336210512105,37.472964922239214],[-88.25564821678216,37.456642788117875],[-88.29871974469744,37.44719313152131],[-88.35973774257742,37.40509920668206],[-88.41357715247152,37.42485757956579]]]},"properties":{"name":"Illinois"},"id":"17"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-88.05823704717046,45.780931190001894],[-87.99721904929049,45.79553520474204],[-87.96491540335403,45.75859563804637],[-87.87877234752347,45.75515939928398],[-87.84646870158701,45.722515131041305],[-87.81057576165762,45.711347355063545],[-87.7818614097141,45.67354872867728],[-87.82493293762937,45.66238095269952],[-87.77468282172822,45.59795147590475],[-87.80339717367173,45.538676357253564],[-87.79262929169292,45.49830055179551],[-87.81416505565055,45.46393816417164],[-87.86082587755877,45.43473013469134],[-87.85005799557995,45.40208586644866],[-87.87518305353053,45.38146843387433],[-87.85005799557995,45.34109262841628],[-87.75314705777058,45.349683225322245],[-87.69571835388354,45.3900590307803],[-87.65623611996119,45.368582538515376],[-87.64905753197532,45.33937450903508],[-87.68853976589766,45.29813964388643],[-87.74237917579175,45.19677060039599],[-87.73520058780588,45.17185786936869],[-87.68853976589766,45.14780419803197],[-87.65982541395414,45.107428392573915],[-87.59162882808828,45.095401556905564],[-87.62752176801767,45.045576094850944],[-87.63111106201062,44.97685131960319],[-87.7639149397494,44.96568354362543],[-87.83929011360114,44.93132115600155],[-87.82852223162232,44.8909453505435],[-87.86800446554466,44.84026082879828],[-87.90030811148111,44.82737493343933],[-87.93979034540345,44.756072979119786],[-87.98286187331873,44.71999247211471],[-87.99004046130462,44.67789854727547],[-87.99721904929049,44.60917377202771],[-88.04387987119871,44.56622078749787],[-87.9720939913399,44.530140280492795],[-87.92902246342463,44.53615369832698],[-87.90389740547405,44.58168386192861],[-87.81057576165762,44.636663682126816],[-87.7639149397494,44.64439521934219],[-87.73520058780588,44.67703948758487],[-87.72084341183411,44.7242877705677],[-87.60957529805297,44.838542709417084],[-87.51625365423654,44.86946885827857],[-87.4767714203142,44.8634554404444],[-87.43728918639187,44.89266346992469],[-87.38344977649776,44.86517355982559],[-87.4049855404554,44.90469030559305],[-87.36191401254013,44.988019095580945],[-87.26500307473074,45.08165660185601],[-87.23987801678017,45.1675625709157],[-87.19680648886488,45.16326727246272],[-87.12143131501314,45.19075718256182],[-87.11784202102021,45.241441704307036],[-87.05682402314022,45.29298528574285],[-86.97785955529555,45.29040810667106],[-86.98503814328143,45.21566991358913],[-87.04246684716847,45.211374615136144],[-87.04964543515435,45.08938813907138],[-87.09271696306963,45.05502575144751],[-87.12143131501314,45.05846199020989],[-87.13937778497785,45.01293182660826],[-87.189627900879,44.96826072269722],[-87.1716814309143,44.93132115600155],[-87.21834225282252,44.89781782806827],[-87.20398507685077,44.875482276112756],[-87.26859236872369,44.84713330632306],[-87.3152531906319,44.79387160550605],[-87.37268189451895,44.675321368203676],[-87.43728918639187,44.60487847357473],[-87.46959283232832,44.55161677275772],[-87.54137871218713,44.32740219351193],[-87.54137871218713,44.29303980588805],[-87.5126643602436,44.240637164761644],[-87.51984294822948,44.17964392672926],[-87.56291447614475,44.144422479414786],[-87.64546823798237,44.10490573364733],[-87.65623611996119,44.05164403283032],[-87.68495047190471,44.01985882427824],[-87.73161129381293,43.8918589303793],[-87.72802199982,43.81024825977259],[-87.69930764787648,43.767295275242745],[-87.70648623586236,43.67967118680186],[-87.7818614097141,43.578302143311426],[-87.79262929169292,43.543080695996956],[-87.80698646766467,43.46147002539025],[-87.87877234752347,43.36955063849638],[-87.91107599345993,43.25014134150341],[-87.89312952349523,43.19172528254282],[-87.90030811148111,43.13760452203521],[-87.87159375953759,43.06458444833448],[-87.89671881748818,43.015618045970456],[-87.84646870158701,42.962356345153445],[-87.84646870158701,42.889336271452706],[-87.82852223162232,42.84208798846988],[-87.76750423374233,42.78453098919989],[-87.7818614097141,42.70807467673676],[-87.80698646766467,42.6676988712787],[-87.82134364363644,42.616155289842894],[-87.7998078796788,42.49159163470634],[-88.19821951289512,42.495886933159326],[-88.30589833268333,42.49502787346873],[-88.7078992598926,42.493309754087534],[-88.77609584575845,42.492450694396936],[-88.9412033694337,42.49502787346873],[-89.3647400606006,42.50018223161231],[-89.40063300053001,42.50018223161231],[-89.83852686766868,42.50533658975589],[-89.92825921749217,42.50619564944649],[-90.42717108251082,42.50705470913709],[-90.64252872208722,42.508772828518275],[-90.64252872208722,42.54055803707036],[-90.70713601396014,42.63419554334543],[-90.89736859558595,42.67543040849408],[-90.97992235742358,42.69862502014019],[-91.06606541325412,42.751027661266605],[-91.10195835318353,42.88332285361853],[-91.14502988109881,42.904799345883454],[-91.15579776307763,42.98812813587135],[-91.17733352703527,43.08004752276522],[-91.17733352703527,43.131591104201036],[-91.14502988109881,43.15220853677536],[-91.12349411714116,43.1968796406864],[-91.05888682526825,43.24842322212221],[-91.10554764717646,43.31371175860758],[-91.20245858498585,43.34893320592205],[-91.20604787897878,43.42281233931339],[-91.2347622309223,43.455456607556066],[-91.2168157609576,43.50012771146711],[-91.24553011290112,43.54565787506874],[-91.23117293692937,43.58345650145501],[-91.26706587685877,43.61524171000709],[-91.27424446484464,43.67623494803947],[-91.25629799487994,43.72606041009409],[-91.24553011290112,43.77330869307692],[-91.28501234682346,43.84718782646826],[-91.38551257862578,43.95457028779287],[-91.42499481254812,43.98463737696376],[-91.43935198851987,44.0018185707757],[-91.5577986902869,44.025013182421816],[-91.5936916302163,44.031026600256],[-91.70854903799038,44.10404667395673],[-91.7193169199692,44.128959404984045],[-91.81622785777857,44.164180852298514],[-91.85929938569386,44.19338888177881],[-91.89160303163031,44.23118750816507],[-91.89519232562326,44.274999552385516],[-91.92390667756678,44.28788544774447],[-91.92390667756678,44.333415611346105],[-91.97415679346793,44.367777998969984],[-92.08542490724906,44.40729474473744],[-92.21463949099491,44.43822089359893],[-92.24335384293842,44.45454302772027],[-92.3043718408184,44.50350943008429],[-92.31513972279723,44.541308056470555],[-92.33667548675486,44.55419395182951],[-92.43358642456424,44.56536172780727],[-92.54126524435245,44.56707984718847],[-92.5735688902889,44.60487847357473],[-92.62381900619006,44.61862342862428],[-92.62022971219712,44.6392408611986],[-92.73149782597825,44.713979054280536],[-92.80328370583706,44.74576426283262],[-92.80687299982999,44.768099814788144],[-92.76380147191472,44.836824590035896],[-92.76739076590765,44.8617373210632],[-92.77456935389354,44.90125406683066],[-92.74944429594295,44.937334573835734],[-92.7709800599006,44.972556021150204],[-92.76380147191472,45.028394901039],[-92.80328370583706,45.057602930519295],[-92.74585500195002,45.107428392573915],[-92.76739076590765,45.18560282441824],[-92.75662288392884,45.20965649575495],[-92.76021217792177,45.291267166361656],[-92.74585500195002,45.295562464814644],[-92.6991941800418,45.333361091200906],[-92.70278347403473,45.35827382222821],[-92.64894406414064,45.39864962768627],[-92.64535477014769,45.441602612216116],[-92.72790853198532,45.514622685916855],[-92.72431923799238,45.54125353632536],[-92.77456935389354,45.568743446424456],[-92.81046229382294,45.561011909209086],[-92.88583746767468,45.57905216271162],[-92.88583746767468,45.64434069919699],[-92.86430170371703,45.722515131041305],[-92.84276593975939,45.730246668256676],[-92.78533723587235,45.76460905588055],[-92.71355135601355,45.891749890088896],[-92.64176547615476,45.93212569554695],[-92.55203312633125,45.95188406843068],[-92.52331877438775,45.98452833667336],[-92.47306865848658,45.973360560695596],[-92.43717571855719,46.02146790336903],[-92.35103266272662,46.015454485534846],[-92.32949689876898,46.066139007280064],[-92.29360395883958,46.07472960418603],[-92.29360395883958,46.15719933448334],[-92.29360395883958,46.4174944207342],[-92.29360395883958,46.663185492244914],[-92.21463949099491,46.64944053719537],[-92.17515725707257,46.68638010389103],[-92.20746090300902,46.70270223801237],[-92.15003219912198,46.71472907368073],[-92.13926431714317,46.739641804708036],[-92.08901420124201,46.74909146130461],[-92.01363902739027,46.70613847677476],[-91.94185314753148,46.68036668605685],[-91.81981715177152,46.689816342653415],[-91.55062010230102,46.75596393882938],[-91.51113786837868,46.75768205821058],[-91.33885175671756,46.81781623655236],[-91.24911940689407,46.84101084819847],[-91.22758364293642,46.86334640015399],[-91.16656564505645,46.84444708696086],[-91.14144058710586,46.87279605675056],[-91.05170823728237,46.88138665365653],[-90.97274376943768,46.94152083199831],[-90.92249365353653,46.93121211571115],[-90.87224353763537,46.96127920488204],[-90.83635059770597,46.95784296611966],[-90.75020754187541,46.88825913118131],[-90.80045765777658,46.82297059469594],[-90.88660071360714,46.75596393882938],[-90.85429706767067,46.693252581415805],[-90.91172577155771,46.663185492244914],[-90.95120800548005,46.597037896068954],[-90.92608294752947,46.585011060400596],[-90.7932790697907,46.624527806168054],[-90.75379683586836,46.64600429843298],[-90.73585036590366,46.69239352172521],[-90.69636813198132,46.66404455193551],[-90.54920707827078,46.58415200071],[-90.5061355503555,46.589306358853584],[-90.416403200532,46.566111747207465],[-90.39486743657436,46.53260841927418],[-90.35179590865908,46.53776277741777],[-90.31590296872969,46.51714534484344],[-90.2189920309203,46.50340038979389],[-90.11849179911799,46.35993742146421],[-90.12208109311092,46.33674280981809],[-89.92825921749217,46.299803243122426],[-89.09195371713717,46.138300021290206],[-88.99145348533484,46.097065156141554],[-88.93402478144782,46.073870544495435],[-88.81198878568786,46.02146790336903],[-88.74020290582905,46.027481321203204],[-88.68277420194201,46.01459542584425],[-88.66482773197731,45.993118933579325],[-88.61457761607616,45.988823635126344],[-88.60380973409734,46.016313545225444],[-88.50689879628796,46.01803166460664],[-88.49972020830208,45.996555172341715],[-88.42434503445034,45.97851491883918],[-88.38127350653507,45.99140081419814],[-88.2951304507045,45.95102500874008],[-88.24488033480334,45.96305184440843],[-88.1156657510575,45.92181697925979],[-88.07618351713516,45.8634009202992],[-88.13720151501515,45.81872981638816],[-88.10489786907868,45.79123990628906],[-88.05823704717046,45.780931190001894]]],[[[-90.9835116514165,46.98619193590935],[-90.92967224152241,47.0007959506495],[-90.93326153551536,46.962997324263235],[-90.9835116514165,46.98619193590935]]],[[[-86.95632379133791,45.35226040439404],[-86.93478802738026,45.42098517964179],[-86.82351991359913,45.40638116490164],[-86.90607367543674,45.296421524505234],[-86.95632379133791,45.35226040439404]]],[[[-87.37627118851188,45.199347779467786],[-87.3331996605966,45.211374615136144],[-87.32602107261073,45.157253854628536],[-87.37627118851188,45.177012227512265],[-87.37627118851188,45.199347779467786]]],[[[-90.46665331643317,47.00251407003069],[-90.43793896448965,47.073816024350236],[-90.39486743657436,47.07725226311263],[-90.41281390653906,47.012822786317855],[-90.46665331643317,47.00251407003069]]],[[[-90.5240820203202,46.87623229551295],[-90.44870684646845,46.904581265302646],[-90.49895696236962,46.86420545984459],[-90.5240820203202,46.87623229551295]]],[[[-90.65329660406604,46.92519869787697],[-90.63535013410134,46.943238951379506],[-90.52767131431314,46.96815168240682],[-90.50972484434844,46.95698390642906],[-90.54920707827078,46.91574904128041],[-90.63535013410134,46.90629938468384],[-90.65329660406604,46.92519869787697]]],[[[-90.76097542385423,46.83929272881728],[-90.75020754187541,46.862487340463396],[-90.67842166201662,46.89770878777787],[-90.67483236802367,46.88138665365653],[-90.76097542385423,46.83929272881728]]],[[[-90.73943965989659,46.96385638395383],[-90.68918954399544,46.9174671606616],[-90.73585036590366,46.91488998158981],[-90.76456471784718,46.946675190141896],[-90.73943965989659,46.96385638395383]]],[[[-90.775332599826,47.023990562295616],[-90.6497073100731,47.054916711157105],[-90.61022507615075,47.00766842817428],[-90.5599749602496,47.03687645765457],[-90.55279637226371,46.9990778312683],[-90.61022507615075,46.99134629405293],[-90.67124307403074,46.94925236921368],[-90.71072530795307,46.985332876218756],[-90.76815401184011,47.00251407003069],[-90.775332599826,47.023990562295616]]],[[[-90.7932790697907,46.785171968309676],[-90.73226107191071,46.80063504274042],[-90.61740366413663,46.874514176131754],[-90.56715354823548,46.847024266032655],[-90.67483236802367,46.81867529624296],[-90.65688589805897,46.788608207072066],[-90.71790389593896,46.785171968309676],[-90.78968977579775,46.75338675975759],[-90.7932790697907,46.785171968309676]]]]},"properties":{"name":"Wisconsin"},"id":"55"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.2929231518315,37.107005494044934],[-122.33599467974679,37.1173142103321],[-122.34317326773267,37.1439450607406],[-122.40419126561264,37.195488642176414],[-122.4185484415844,37.248750342993425],[-122.40060197161971,37.35956904308043],[-122.44367349953498,37.43602535554355],[-122.45085208752087,37.48069645945459],[-122.49392361543615,37.49272329512294],[-122.51545937939379,37.52107226491264],[-122.51904867338672,37.576052085110845],[-122.49392361543615,37.643917800668],[-122.50110220342202,37.70834727746277],[-122.51545937939379,37.780508291472906],[-122.46520926349262,37.80456196280962],[-122.40778055960558,37.811434440334395],[-122.38624479564794,37.79081700776007],[-122.36111973769738,37.715219754987544],[-122.38983408964089,37.70834727746277],[-122.35394114971149,37.6155688308783],[-122.36111973769738,37.592374219232184],[-122.264208799888,37.572615846348455],[-122.16729786207861,37.5038910711007],[-122.13858351013509,37.50818636955369],[-122.10986915819157,37.46609244471444],[-122.04526186631865,37.45921996718967],[-122.0667976302763,37.49100517574175],[-122.10986915819157,37.50732730986309],[-122.14576209812097,37.58206550294502],[-122.17088715607156,37.675703009220086],[-122.2462623299233,37.72209223251232],[-122.25344091790917,37.761608978279774],[-122.32881609176091,37.7830854705447],[-122.33240538575384,37.78566264961649],[-122.30010173981739,37.84751494733947],[-122.31445891578915,37.89734040939409],[-122.37906620766208,37.90507194660946],[-122.42931632356323,37.96348800557005],[-122.40060197161971,37.95575646835468],[-122.36829832568324,37.9780920203102],[-122.36829832568324,38.01245440793407],[-122.30010173981739,38.01073628855288],[-122.26779809388094,38.0597026909169],[-122.30010173981739,38.10523285451854],[-122.39701267762678,38.142172421214205],[-122.44008420554205,38.1172596901869],[-122.49033432144321,38.10952815297152],[-122.48315573345732,38.07172952658526],[-122.50110220342202,38.0322127808178],[-122.44726279352793,37.98840073659736],[-122.49033432144321,37.96692424433244],[-122.50469149741497,37.92912561794617],[-122.4364949115491,37.881018275272744],[-122.46161996949968,37.86899143960439],[-122.50110220342202,37.8939041706317],[-122.47597714547145,37.83291093259932],[-122.52981655536556,37.81916597754977],[-122.56212020130201,37.85181024579245],[-122.65544184511845,37.90421288691886],[-122.70210266702667,37.8939041706317],[-122.78465642886428,37.95146116990169],[-122.82054936879368,37.99699133350333],[-122.88156736667366,38.02534030329303],[-122.9389960705607,38.0322127808178],[-123.0107819504195,38.003863811028104],[-122.96053183451833,38.11296439173391],[-122.94976395253951,38.15419925688256],[-122.9928354804548,38.23323274841748],[-122.96771042250421,38.250413942229414],[-123.00360336243361,38.295944105831055],[-123.0646213603136,38.30195752366523],[-123.06821065430654,38.35951452293522],[-123.12922865218651,38.450574850138494],[-123.20101453204532,38.49438689435894],[-123.25126464794647,38.51070902848028],[-123.33022911579116,38.565688848678484],[-123.46303299352994,38.71688335422353],[-123.53481887338873,38.76842693565935],[-123.65326557515574,38.854332904719044],[-123.7394086309863,38.953983828828285],[-123.68915851508514,39.02099048469484],[-123.69274780907809,39.05707099169991],[-123.74299792497925,39.16531251271512],[-123.80042662886629,39.27097685465854],[-123.82555168681685,39.36117812217122],[-123.81478380483804,39.44622503154031],[-123.76812298292982,39.5596209106991],[-123.78606945289452,39.60429201461014],[-123.78606945289452,39.66013089449894],[-123.83631956879569,39.739164386033856],[-123.85067674476744,39.83194283261832],[-123.90810544865448,39.86286898147981],[-123.92964121261213,39.910117264462635],[-124.02296285642856,40.00117759166591],[-124.0803915603156,40.029526561455604],[-124.0803915603156,40.066466128151276],[-124.10910591225911,40.10340569484694],[-124.1880703801038,40.13089560494604],[-124.36394578575785,40.260613618226174],[-124.34958860978608,40.31473437873378],[-124.36394578575785,40.374868557075565],[-124.41060660766607,40.43843897417973],[-124.37830296172962,40.52262682385823],[-124.32805284582845,40.6162643301333],[-124.17730249812497,40.84391514814148],[-124.13782026420263,40.92552581874818],[-124.11269520625206,41.02775392192921],[-124.15576673416734,41.0595391304813],[-124.15935602816027,41.1428679204692],[-124.14499885218851,41.14458603985039],[-124.10551661826617,41.229632949219486],[-124.07321297232971,41.37481403693036],[-124.06603438434384,41.465015304443035],[-124.0803915603156,41.54748503474034],[-124.1342309702097,41.657444675136745],[-124.1629453221532,41.73991440543405],[-124.19524896808967,41.73647816667166],[-124.25626696596964,41.78286738996389],[-124.22037402604025,41.846437807068064],[-124.20242755607555,41.94093437303372],[-124.21319543805437,41.99849137230372],[-123.82196239282392,41.995914193231926],[-123.65685486914867,41.99505513354133],[-123.51687240342403,42.0010685513755],[-123.34817558575585,41.999350431994316],[-123.22972888398883,42.003645730447296],[-123.14717512215121,42.00965914828148],[-123.0466748903489,42.0027866707567],[-122.6339060811608,42.004504790137894],[-122.50110220342202,42.00880008859088],[-122.28933385783857,42.007941028900284],[-121.99860104441044,42.003645730447296],[-121.44584976949768,41.99677325292252],[-121.03667025430254,41.99333701416013],[-120.87874131861318,41.99419607385073],[-120.32957933769336,41.99333701416013],[-119.9993642903429,41.99505513354133],[-119.9993642903429,41.99419607385073],[-119.9993642903429,41.18410278561785],[-119.9993642903429,40.75027764186641],[-119.99577499634995,40.72106961238612],[-119.99577499634995,40.071620486294854],[-119.9993642903429,39.73401002789027],[-120.00295358433584,39.72284225191251],[-120.00295358433584,39.44536597184971],[-120.00654287832877,39.316507018260175],[-120.00295358433584,39.16531251271512],[-120.00295358433584,39.11290987158871],[-120.00295358433584,39.06737970798707],[-119.9993642903429,38.99951399242992],[-119.90604264652646,38.93336639625396],[-119.5865954811548,38.71344711546115],[-119.32816631366313,38.534762699816994],[-119.15588020200201,38.41449434313343],[-119.08409432214322,38.361232642316416],[-118.857968800588,38.20488377862778],[-118.4272535214352,37.89648134970349],[-118.05396694616945,37.62501848747487],[-117.83143071860718,37.46523338502384],[-117.16741132991329,36.971274062930625],[-116.25214136171361,36.27715383292832],[-115.8465511405114,35.96445610555105],[-115.64913997089971,35.809825361243604],[-115.41224656736566,35.62512752776527],[-115.16099598785988,35.424107560165595],[-114.6333697708977,35.00145019239192],[-114.63695906489065,34.87516841787417],[-114.5795303610036,34.82620201551015],[-114.55440530305303,34.76692689685896],[-114.4718515412154,34.71280613635136],[-114.37852989739896,34.507490870298696],[-114.38570848538485,34.457665408244075],[-114.33904766347663,34.4516519904099],[-114.22777954969548,34.365746021350205],[-114.17752943379433,34.349423887228866],[-114.13804719987199,34.303034663936636],[-114.13445790587905,34.260940739097386],[-114.22419025570255,34.20510185920859],[-114.22777954969548,34.188779725087244],[-114.28879754757547,34.17073947158471],[-114.32469048750487,34.13637708396083],[-114.42160142531425,34.10373281571815],[-114.435958601286,34.07967914438144],[-114.435958601286,34.02813556294562],[-114.53645883308832,33.92848463883638],[-114.51133377513774,33.911303445024444],[-114.50415518715187,33.864055162041616],[-114.52569095110951,33.85890080389803],[-114.52928024510244,33.81508875967759],[-114.50415518715187,33.76010893947939],[-114.49697659916599,33.69653852237522],[-114.52569095110951,33.68622980608806],[-114.54004812708126,33.591733240122394],[-114.52569095110951,33.55221649435494],[-114.55799459704596,33.53159906178061],[-114.62260188891888,33.45686086869868],[-114.62619118291182,33.433666257052565],[-114.64413765287652,33.41648506324063],[-114.72669141471414,33.40531728726287],[-114.69797706277062,33.36150524304242],[-114.73028070870708,33.30566636315363],[-114.67644129881297,33.27044491583915],[-114.68361988679887,33.148458439774394],[-114.70874494474944,33.090901440504396],[-114.65849482884828,33.03248538154381],[-114.64772694686947,33.04708939628396],[-114.60106612496125,33.025612904019034],[-114.57594106701066,33.036780679996795],[-114.51492306913069,33.02733102340023],[-114.48261942319422,32.93541163650636],[-114.46467295322952,32.91307608455084],[-114.46826224722247,32.84521036899368],[-114.53286953909539,32.79108960848608],[-114.52569095110951,32.7567272208622],[-114.615423300933,32.73439166890668],[-114.70156635676356,32.74555944488444],[-114.71951282672826,32.71892859447594],[-115.46608597725977,32.667385013040125],[-116.10498030800306,32.6184186106761],[-117.12433980199802,32.5342307609976],[-117.13510768397683,32.6184186106761],[-117.16741132991329,32.67168031149311],[-117.19612568185681,32.68886150530505],[-117.24637579775796,32.66910313242132],[-117.2571436797368,32.72580107200071],[-117.25355438574385,32.786794310033095],[-117.28226873768736,32.822015757347565],[-117.24996509175091,32.87441839847398],[-117.28226873768736,33.01272700866008],[-117.3289295595956,33.121827589365886],[-117.36123320553205,33.16821681265812],[-117.50480496524965,33.33401533294332],[-117.59453731507315,33.387277033760334],[-117.63043025500255,33.430230018290175],[-117.68426966489665,33.46201522684226],[-117.7165733108331,33.460297107461066],[-117.78476989669896,33.541907778067774],[-117.8780915405154,33.59259229981299],[-117.92834165641656,33.60547819517195],[-118.00012753627536,33.65444459753597],[-118.06473482814827,33.711142537115364],[-118.11498494404944,33.74292774566745],[-118.17600294192941,33.76354517824178],[-118.18318152991529,33.72316937278372],[-118.25855670376703,33.703410999899994],[-118.32316399563996,33.71543783556835],[-118.35905693556936,33.736914327833276],[-118.41289634546345,33.742068685976854],[-118.4272535214352,33.77471295421954],[-118.39494987549875,33.80392098369983],[-118.39136058150581,33.8408605503955],[-118.44161069740696,33.94051147450474],[-118.4810929313293,33.995491294702944],[-118.54211092920929,34.038444279232785],[-118.66773621896218,34.03930333892338],[-118.74670068680686,34.03243086139861],[-118.8041293906939,34.00150471253712],[-118.85437950659505,34.034148980779804],[-118.94411185641856,34.045316756757565],[-119.08768361613616,34.09857845757457],[-119.13075514405143,34.10029657695576],[-119.216898199882,34.145826740557396],[-119.27791619776197,34.26695415693156],[-119.31380913769138,34.27554475383753],[-119.37482713557135,34.32107491743917],[-119.38918431154312,34.31849773836738],[-119.46097019140191,34.37433661825618],[-119.47891666136661,34.376913797327965],[-119.55788112921128,34.41299430433304],[-119.67273853698536,34.41643054309542],[-119.7301672408724,34.3958131105211],[-119.79477453274532,34.41728960278602],[-119.87373900059,34.40869900588005],[-120.00654287832877,34.46024258731587],[-120.08909664016639,34.46024258731587],[-120.14293605006048,34.473128482674824],[-120.30086498574985,34.46711506484064],[-120.47315109741098,34.44821575164751],[-120.47674039140391,34.47484660205601],[-120.52340121331213,34.53154454163541],[-120.58082991719917,34.55731633235332],[-120.62390144511444,34.55388009359093],[-120.64543720907209,34.58137000369003],[-120.59877638716387,34.704215539445386],[-120.63825862108621,34.7557591208812],[-120.60954426914267,34.857987224062235],[-120.67056226702266,34.904376447354466],[-120.64902650306502,34.97481934198341],[-120.63108003310032,35.0615843707337],[-120.63466932709326,35.12343666845668],[-120.69927661896618,35.1715440111301],[-120.74952673486735,35.177557428964285],[-120.76029461684615,35.15951717546175],[-120.85720555465554,35.20676545844458],[-120.89668778857788,35.24800032359323],[-120.86079484864848,35.36053714306142],[-120.86797343663436,35.40349012759127],[-120.9074556705567,35.44902029119291],[-121.00436660836607,35.46104712686126],[-121.10127754617545,35.54867121530215],[-121.16588483804837,35.635436244052435],[-121.25202789387893,35.65691273631736],[-121.31304589175892,35.71361067589675],[-121.31663518575185,35.75226836197361],[-121.34534953769537,35.79522134650346],[-121.41354612356122,35.855355524845244],[-121.4637962394624,35.885422614016136],[-121.48533200342003,35.970469523385226],[-121.50327847338473,36.00053661255612],[-121.57506435324353,36.02544934358343],[-121.62890376313763,36.11479155140551],[-121.71863611296112,36.19554316232162],[-121.83708281472815,36.25052298251982],[-121.87656504865048,36.28918066859668],[-121.905279400594,36.35790544384443],[-121.90169010660105,36.393985950849505],[-121.9411723405234,36.48075097959979],[-121.93399375253752,36.559784471134705],[-121.97347598645986,36.57352942618426],[-121.93758304653045,36.637099843288425],[-121.87297575465755,36.60445557504575],[-121.84067210872108,36.63022736576365],[-121.8155470507705,36.682630006890065],[-121.78683269882697,36.80375742326423],[-121.81195775677756,36.85100570624706],[-121.86220787267871,36.93175731716317],[-121.905279400594,36.96869688385883],[-121.9411723405234,36.9781465404554],[-121.97347598645986,36.95409286911868],[-122.10627986419863,36.95581098849988],[-122.20678009600095,37.014227047460466],[-122.2929231518315,37.107005494044934]]],[[[-119.05896926419263,33.491223256322556],[-119.03025491224912,33.49723667415674],[-119.02666561825617,33.46201522684226],[-119.06614785217852,33.468028644676444],[-119.05896926419263,33.491223256322556]]],[[[-119.92039982249821,34.077101965309645],[-119.85579253062531,34.07108854747547],[-119.80913170871708,34.05218923428234],[-119.75529229882298,34.05648453273532],[-119.68709571295713,34.01954496603965],[-119.61889912709125,34.01610872727727],[-119.5937740691407,34.049612055210545],[-119.52198818928188,34.03243086139861],[-119.56147042320423,33.995491294702944],[-119.66197065500654,33.98604163810638],[-119.72298865288653,33.95941078769787],[-119.87373900059,33.980028220272196],[-119.87732829458294,34.03243086139861],[-119.92039982249821,34.077101965309645]]],[[[-120.24702557585576,34.00150471253712],[-120.16806110801107,34.00837719006189],[-120.13575746207462,34.026417443564426],[-120.08909664016639,34.01954496603965],[-120.04243581825818,34.035867100161],[-120.04243581825818,33.99463223501235],[-119.97782852638525,33.983464459034586],[-119.9742392323923,33.94222959388593],[-120.12140028610285,33.8958403705937],[-120.1788289899899,33.92762557914578],[-120.24702557585576,34.00150471253712]]],[[[-120.44802603946039,34.03758521954219],[-120.39059733557335,34.05218923428234],[-120.3690615716157,34.07624290561905],[-120.34752580765806,34.046175816448155],[-120.30086498574985,34.02384026449264],[-120.3762401596016,34.018685906349056],[-120.44802603946039,34.03758521954219]]],[[[-119.43225583945838,34.02899462263622],[-119.40354148751487,34.014390607896075],[-119.36405925359253,34.026417443564426],[-119.36405925359253,34.00064565284652],[-119.42507725147252,33.99720941408413],[-119.45738089740897,34.01524966758667],[-119.43225583945838,34.02899462263622]]],[[[-119.57941689316893,33.279035512745125],[-119.52916677726776,33.2850489305793],[-119.45738089740897,33.25498184140841],[-119.42866654546545,33.22835099099991],[-119.47532736737367,33.21546509564095],[-119.54711324723246,33.233505349143485],[-119.57941689316893,33.279035512745125]]],[[[-118.60312892708927,33.47833736096361],[-118.54570022320223,33.47404206251062],[-118.4451999913999,33.42851189890899],[-118.36982481754816,33.40961258571585],[-118.36623552355522,33.38813609345093],[-118.30880681966819,33.33573345232452],[-118.32675328963289,33.298793885628854],[-118.37341411154111,33.32027037789377],[-118.46673575535755,33.32628379572795],[-118.48827151931519,33.356350884898845],[-118.48827151931519,33.41992130200301],[-118.56005739917399,33.433666257052565],[-118.60312892708927,33.47833736096361]]],[[[-118.6067182210822,33.03076726216261],[-118.57441457514574,33.034203500925],[-118.49545010730107,32.933693517125164],[-118.35187834758347,32.822015757347565],[-118.38777128751286,32.825451996109955],[-118.4272535214352,32.80655268291682],[-118.48827151931519,32.844351309303086],[-118.5349323412234,32.906203607026065],[-118.58518245712457,33.0084317102071],[-118.6067182210822,33.03076726216261]]]]},"properties":{"name":"California"},"id":"06"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-96.50025651856518,42.56117546964469],[-96.51461369453695,42.63075930458304],[-96.57563169241692,42.68230288601885],[-96.62947110231102,42.70549749766497],[-96.63306039630396,42.77078603415033],[-96.59357816238162,42.793121586105855],[-96.5828102804028,42.83779269001689],[-96.54332804648045,42.85153764506644],[-96.53614945849458,42.909094644336434],[-96.50025651856518,42.95977916608165],[-96.52179228252282,42.977819419584186],[-96.4930779305793,43.0018730909209],[-96.511024400544,43.04998043359433],[-96.45359569665696,43.08348376152761],[-96.43564922669226,43.120423328223275],[-96.46795287262873,43.15049041739417],[-96.4751314606146,43.22179237171371],[-96.56127451644517,43.224369550785504],[-96.55409592845928,43.25959099809997],[-96.57922098640987,43.29567150510504],[-96.5289708705087,43.29996680355803],[-96.52538157651576,43.394463369523685],[-96.60434604436044,43.44944318972189],[-96.57922098640987,43.48122839827398],[-96.59716745637456,43.50012771146711],[-96.45359569665696,43.50012771146711],[-96.05159476944769,43.50012771146711],[-95.86136218782187,43.50012771146711],[-95.45577196661966,43.500986771157706],[-95.3875753807538,43.50012771146711],[-94.91378857368574,43.50012771146711],[-94.85277057580575,43.500986771157706],[-94.4435910606106,43.500986771157706],[-94.2461798909989,43.50012771146711],[-93.96980425354253,43.49926865177651],[-93.64676779417793,43.49926865177651],[-93.49601744647445,43.49926865177651],[-93.05094499134991,43.49926865177651],[-93.02581993339933,43.49926865177651],[-92.55203312633125,43.50012771146711],[-92.44794360053601,43.50012771146711],[-92.07824631926319,43.500986771157706],[-91.73008480194801,43.500986771157706],[-91.611638100181,43.50012771146711],[-91.2168157609576,43.50012771146711],[-91.2347622309223,43.455456607556066],[-91.20604787897878,43.42281233931339],[-91.20245858498585,43.34893320592205],[-91.10554764717646,43.31371175860758],[-91.05888682526825,43.24842322212221],[-91.12349411714116,43.1968796406864],[-91.14502988109881,43.15220853677536],[-91.17733352703527,43.131591104201036],[-91.17733352703527,43.08004752276522],[-91.15579776307763,42.98812813587135],[-91.14502988109881,42.904799345883454],[-91.10195835318353,42.88332285361853],[-91.06606541325412,42.751027661266605],[-90.97992235742358,42.69862502014019],[-90.89736859558595,42.67543040849408],[-90.70713601396014,42.63419554334543],[-90.64252872208722,42.54055803707036],[-90.64252872208722,42.508772828518275],[-90.64252872208722,42.46839702306023],[-90.56356425424254,42.438329933889335],[-90.55638566625666,42.415994381933814],[-90.47383190441904,42.381631994309934],[-90.41999249452495,42.33008841287412],[-90.43076037650376,42.27854483143831],[-90.37692096660966,42.21497441433414],[-90.31949226272262,42.19349792206921],[-90.20822414894148,42.15226305692056],[-90.16156332703326,42.11704160960609],[-90.16874191501914,42.07580674445744],[-90.15438473904739,42.03285375992759],[-90.14002756307562,42.00880008859088],[-90.16515262102621,41.95639744746447],[-90.15079544505444,41.92890753736537],[-90.18309909099091,41.84471968768687],[-90.17950979699796,41.8094982403724],[-90.24411708887088,41.78286738996389],[-90.31590296872969,41.72874662945629],[-90.31231367473674,41.6978204805948],[-90.34461732067321,41.64713595884958],[-90.34102802668026,41.59043801927019],[-90.3984567305673,41.572397765767654],[-90.46306402244022,41.523431363403624],[-90.55638566625666,41.52429042309422],[-90.59227860618606,41.51312264711646],[-90.6497073100731,41.465015304443035],[-90.73585036590366,41.45041128970289],[-90.78610048180481,41.452988468774684],[-90.8471184796848,41.45556564784647],[-90.92967224152241,41.4212032602226],[-90.97633306343063,41.434089155581546],[-91.04452964929649,41.41604890207901],[-91.07324400124001,41.333579171781714],[-91.11272623516234,41.23908260581605],[-91.04094035530355,41.16606253211531],[-90.99427953339533,41.160908173971734],[-90.94761871148711,41.09647869717696],[-90.94761871148711,41.07242502584025],[-90.94761871148711,41.06984784676846],[-90.94402941749416,41.01229084749847],[-90.96556518145181,40.9212305202952],[-91.00504741537415,40.90490838617386],[-91.05529753127531,40.84821044659446],[-91.09119047120471,40.825015834948346],[-91.11272623516234,40.69615688135881],[-91.11990482314823,40.67296226971269],[-91.18451211502115,40.637740822398214],[-91.24911940689407,40.63859988208881],[-91.3603875206752,40.60166031539315],[-91.40704834258342,40.54238519674196],[-91.36756610866108,40.51231810757107],[-91.38192328463285,40.43500273541735],[-91.37474469664696,40.3920497508875],[-91.41781622456224,40.37830479583795],[-91.4860128104281,40.38431821367213],[-91.52549504435044,40.41094906408063],[-91.52908433834338,40.45905640675406],[-91.56497727827278,40.46077452613525],[-91.62240598215982,40.509740928499276],[-91.61881668816687,40.540667077360766],[-91.68342398003979,40.552693913029124],[-91.71572762597626,40.59822407663076],[-91.73008480194801,40.613687151061505],[-91.94185314753148,40.605955613846135],[-92.1787465510655,40.60080125570255],[-92.35103266272662,40.59736501694016],[-92.63817618216181,40.590492539415386],[-92.71355135601355,40.58963347972479],[-93.09760581325813,40.58362006189061],[-93.37398145071451,40.58018382312822],[-93.55703544435444,40.58018382312822],[-93.77598237792378,40.57760664405643],[-94.01646507545075,40.57417040529405],[-94.23182271502715,40.571593226222255],[-94.47230541255412,40.57073416653166],[-94.63382364223642,40.571593226222255],[-94.91378857368574,40.575029464984645],[-95.20093209312093,40.57846570374703],[-95.37321820478205,40.58018382312822],[-95.7644512500125,40.58533818127181],[-95.75009407404073,40.60939185260852],[-95.78598701397013,40.65749919528194],[-95.83264783587835,40.671244150331496],[-95.88648724577246,40.72106961238612],[-95.87930865778657,40.752854820938204],[-95.83264783587835,40.78378096979969],[-95.84700501185011,40.81127087989879],[-95.83982642386424,40.872264117931174],[-95.81470136591365,40.90147214741147],[-95.83982642386424,40.94012983348833],[-95.82905854188542,40.97792845987459],[-95.86136218782187,40.995109653686534],[-95.87930865778657,41.05352571264712],[-95.86495148181481,41.080156563055624],[-95.87930865778657,41.160049114281136],[-95.83982642386424,41.17465312902128],[-95.92238018570185,41.190975263142626],[-95.91161230372303,41.22705577014769],[-95.92955877368773,41.2811765306553],[-95.88289795177951,41.31639797796977],[-95.9546838316383,41.33959258961589],[-95.93673736167361,41.391136171051706],[-95.93314806768068,41.46415624475244],[-96.00493394753947,41.47274684165841],[-95.9977553595536,41.507109229282285],[-95.9977553595536,41.53889443783437],[-96.03005900549005,41.53975349752497],[-96.03723759347594,41.50796828897288],[-96.09107700337003,41.5320219603096],[-96.08030912139121,41.580129302983025],[-96.11979135531355,41.6136326309163],[-96.09466629736296,41.64713595884958],[-96.12338064930648,41.68321646585465],[-96.08389841538416,41.6978204805948],[-96.10543417934178,41.74420970388703],[-96.07671982739826,41.76139089769897],[-96.06595194541946,41.80090764346643],[-96.10902347333473,41.82066601635016],[-96.13773782527825,41.86619617995179],[-96.16286288322883,41.90571292571925],[-96.14132711927118,41.915162582315816],[-96.13055923729237,41.97186052189521],[-96.1879879411794,41.977014880038794],[-96.18439864718647,42.0027866707567],[-96.23823805708057,42.012236327353264],[-96.22029158711587,42.02598128240282],[-96.27413099700996,42.04745777466774],[-96.27054170301703,42.118759728987285],[-96.3495061708617,42.16686707166071],[-96.35668475884758,42.21497441433414],[-96.32438111291113,42.22957842907429],[-96.35668475884758,42.276826712057115],[-96.37463122881228,42.31806157720577],[-96.41411346273462,42.342974308233075],[-96.41411346273462,42.40826284471844],[-96.38180981679817,42.446061471104706],[-96.39616699276992,42.48386009749097],[-96.44641710867108,42.49073257501574],[-96.4930779305793,42.51736342542425],[-96.47872075460754,42.55602111150111],[-96.50025651856518,42.56117546964469]]]},"properties":{"name":"Iowa"},"id":"19"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-76.23869192841929,39.72198319222191],[-76.56890697576975,39.721124132531315],[-76.78785390933909,39.721124132531315],[-76.99962225492254,39.720265072840725],[-77.21856918849188,39.720265072840725],[-77.45905188601886,39.720265072840725],[-77.46981976799768,39.720265072840725],[-78.09794621676217,39.72284225191251],[-78.34201820828208,39.72284225191251],[-78.38150044220441,39.72284225191251],[-78.80862642736427,39.72284225191251],[-78.92707312913129,39.72284225191251],[-79.39368134821348,39.721124132531315],[-79.47623511005109,39.721124132531315],[-79.7633786294863,39.721124132531315],[-79.91771827118271,39.721124132531315],[-80.4202194301943,39.721124132531315],[-80.52071966199662,39.721124132531315],[-80.51713036800368,39.8912179512695],[-80.52071966199662,39.96251990558905],[-80.52071966199662,40.016640666096656],[-80.52071966199662,40.15924457473574],[-80.51713036800368,40.39978128810287],[-80.52071966199662,40.4770966602566],[-80.52071966199662,40.63859988208881],[-80.52071966199662,40.85164668535685],[-80.52071966199662,40.90061308772087],[-80.52071966199662,41.12482766696666],[-80.52071966199662,41.133418263872635],[-80.51713036800368,41.20901551664516],[-80.52071966199662,41.48906897577975],[-80.52071966199662,41.50023675175751],[-80.52071966199662,41.849874045830454],[-80.52071966199662,41.97787393972939],[-80.3484335503355,42.030276580855805],[-80.1869153206532,42.09384699795997],[-80.15461167471675,42.1144644305343],[-80.11871873478735,42.16600801197011],[-80.07205791287913,42.168585191041906],[-80.06129003090031,42.14453151970519],[-79.93207544715447,42.20638381742817],[-79.7633786294863,42.269954234532335],[-79.7633786294863,42.00020949168491],[-79.61262828178282,41.999350431994316],[-79.05987700687007,41.999350431994316],[-78.91989454114541,41.99849137230372],[-78.30971456234562,41.999350431994316],[-78.20562503655036,41.999350431994316],[-77.74978469944699,41.99849137230372],[-77.60980223372233,41.999350431994316],[-77.12524754467545,41.999350431994316],[-76.96731860898609,42.0010685513755],[-76.92783637506375,42.0019276110661],[-76.55813909379094,42.00020949168491],[-76.14537028460285,41.99849137230372],[-76.1058880506805,41.99849137230372],[-75.74336935739358,41.99763231261312],[-75.48494018990189,41.999350431994316],[-75.40238642806428,41.999350431994316],[-75.359314900149,41.999350431994316],[-75.30906478424784,41.9486659102491],[-75.29111831428314,41.95210214901148],[-75.26240396233962,41.86619617995179],[-75.20856455244552,41.86963241871418],[-75.14754655456554,41.85073310552105],[-75.07576067470674,41.79833046439464],[-75.10447502665026,41.77084055429554],[-75.0542249107491,41.752800300793],[-75.04345702877029,41.62394134720346],[-75.06858208672087,41.60160579524795],[-74.98602832488325,41.50882734866348],[-74.9824390308903,41.479619319183186],[-74.94295679696796,41.48391461763617],[-74.88911738707387,41.45556564784647],[-74.89629597505974,41.44010257341573],[-74.80656362523625,41.44267975248752],[-74.75631350933509,41.42463949898498],[-74.69529551145511,41.357632843118424],[-74.75272421534216,41.34646506714066],[-74.83168868318683,41.28718994848948],[-74.88193879908799,41.18066654685546],[-74.92142103301033,41.13857262201621],[-74.99320691286913,41.09218339872398],[-74.96808185491855,41.09476057779577],[-75.02551055880559,41.03978075759757],[-75.13318937859378,40.98909623585235],[-75.11883220262203,40.968478803278025],[-75.09729643866439,40.92380769936699],[-75.05063561675617,40.87054599854998],[-75.13318937859378,40.77347225351253],[-75.17267161251613,40.77776755196551],[-75.20497525845258,40.69186158290582],[-75.17626090650906,40.67296226971269],[-75.20138596445965,40.64719047899478],[-75.1977966704667,40.60853279291792],[-75.19061808248082,40.591351599105984],[-75.1619037305373,40.563861689006885],[-75.10088573265732,40.568156987459865],[-75.06499279272792,40.536371778907785],[-75.07217138071381,40.45476110830108],[-75.05781420474204,40.41610342222422],[-74.96808185491855,40.39978128810287],[-74.94295679696796,40.34136522914228],[-74.86758162311622,40.29497600585005],[-74.84245656516565,40.25030490193901],[-74.77067068530685,40.21508345462454],[-74.72400986339863,40.15065397782977],[-74.78143856728568,40.12058688865888],[-74.81733150721507,40.12745936618366],[-74.86040303513035,40.08364732196321],[-74.97526044290443,40.04928493433934],[-75.06140349873499,39.99172793506934],[-75.12960008460084,39.959083666826665],[-75.14036796657966,39.88864077219772],[-75.21215384643847,39.8654461605516],[-75.2695825503255,39.84912402643026],[-75.35572560615606,39.839674369833695],[-75.41674360403604,39.801875743447425],[-75.49929736587366,39.83366095199951],[-75.59620830368303,39.8370971907619],[-75.66440488954889,39.821634116331154],[-75.71824429944299,39.79242608685086],[-75.7900301793018,39.72198319222191],[-76.13460240262403,39.72198319222191],[-76.23151334043341,39.72198319222191],[-76.23869192841929,39.72198319222191]]]},"properties":{"name":"Pennsylvania"},"id":"42"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-107.17840614756147,48.999827850668495],[-106.47849381893819,48.998968790977905],[-106.11238583165832,48.998968790977905],[-105.05713339773398,48.998968790977905],[-104.64795388253881,48.998968790977905],[-104.04854178571784,48.999827850668495],[-104.04854178571784,48.633868422474215],[-104.04854178571784,48.3890364106541],[-104.04495249172491,48.37443239591395],[-104.04495249172491,47.99644613205131],[-104.04495249172491,47.39682246801467],[-104.04495249172491,47.32981581214811],[-104.04495249172491,46.64170899997999],[-104.04495249172491,46.54119901618015],[-104.04495249172491,46.2800448702387],[-104.04854178571784,45.999991411104105],[-104.04495249172491,45.9450115909059],[-104.04495249172491,45.88230023349233],[-104.04136319773197,45.750005041140405],[-104.04136319773197,45.21309273451734],[-104.04136319773197,45.0009049909399],[-104.05930966769667,44.99746875217751],[-104.47207847688476,44.99832781186811],[-105.03918692776928,45.0000459312493],[-105.07507986769868,45.0000459312493],[-105.84677807618075,45.0000459312493],[-106.02624277582775,44.99403251341513],[-106.2631361793618,44.99403251341513],[-107.08508450374504,44.99660969248692],[-107.13533461964619,45.0000459312493],[-107.91062212212121,45.0009049909399],[-108.24801575745757,44.999186871558706],[-108.62130233272332,45.0000459312493],[-109.06278549385493,45.0000459312493],[-109.10226772777727,45.006059349083486],[-109.79859076240761,45.0017640506305],[-110.1108593397934,45.003482170011694],[-110.20059168961689,44.99660969248692],[-110.36210991929919,45.0009049909399],[-110.40159215322153,44.99403251341513],[-110.70668214262142,44.99231439403393],[-110.7856466104661,45.002623110321096],[-111.04407577795777,45.0017640506305],[-111.0548436599366,45.0009049909399],[-111.05843295392954,44.86689167920679],[-111.0548436599366,44.66587171160711],[-111.04766507195072,44.474301400604],[-111.12304024580246,44.49405977348773],[-111.14457600976009,44.53615369832698],[-111.23071906559065,44.586838220072195],[-111.22354047760477,44.62377778676786],[-111.32404070940709,44.7242877705677],[-111.37788011930118,44.7517776806668],[-111.41377305923059,44.710542815518146],[-111.48196964509644,44.70882469613695],[-111.46761246912469,44.679616666656656],[-111.52504117301173,44.59542881697816],[-111.47120176311762,44.54044899677996],[-111.5860591708917,44.56278454873548],[-111.61836281682817,44.54903959368593],[-111.70450587265871,44.56020736966369],[-111.71527375463754,44.54388523554235],[-111.82295257442574,44.50952284791847],[-111.86961339633396,44.56364360842608],[-111.94857786417863,44.5567711309013],[-111.99523868608685,44.53529463863638],[-112.03113162601625,44.54646241461414],[-112.10650679986799,44.52069062389623],[-112.1352211518115,44.53958993708936],[-112.18547126771267,44.53271745956459],[-112.22854279562794,44.56278454873548],[-112.28597149951499,44.56879796656966],[-112.31827514545145,44.53873087739877],[-112.3505787913879,44.53873087739877],[-112.3577573793738,44.48632823627236],[-112.3864717313173,44.4476705501955],[-112.47261478714786,44.480314818438174],[-112.50132913909138,44.46313362462624],[-112.54081137301372,44.483751057200564],[-112.65925807478074,44.48546917658176],[-112.72027607266072,44.50436848977489],[-112.7812940705407,44.48461011689116],[-112.83513348043479,44.42275781916818],[-112.81359771647716,44.37722765556655],[-112.84590136241361,44.35832834237342],[-112.88538359633596,44.39612696875968],[-112.94999088820887,44.41674440133401],[-113.00383029810297,44.45110678895788],[-113.02536606206061,44.49663695255952],[-113.00741959209591,44.525844982039814],[-113.08279476594765,44.59542881697816],[-113.05049112001119,44.636663682126816],[-113.06843758997589,44.679616666656656],[-113.13304488184882,44.77325417293172],[-113.24790228962289,44.82307963498634],[-113.34122393343932,44.78528100860008],[-113.35558110941109,44.81964339622395],[-113.4560813412134,44.86517355982559],[-113.49556357513575,44.94850234981349],[-113.44531345923458,44.95967012579125],[-113.4381348712487,45.006918408774084],[-113.45249204722046,45.05932104990049],[-113.52068863308632,45.09282437783377],[-113.51351004510045,45.11515992978929],[-113.57452804298042,45.12804582514824],[-113.59965310093101,45.19075718256182],[-113.68579615676155,45.253468539975394],[-113.6893854507545,45.283535629146286],[-113.73963556665566,45.329924852438516],[-113.73245697866977,45.3900590307803],[-113.7611713306133,45.40638116490164],[-113.78270709457094,45.45534756726566],[-113.7611713306133,45.48111935798357],[-113.76476062460624,45.52063610375103],[-113.8329572104721,45.52063610375103],[-113.80783215252151,45.60224677435774],[-113.86167156241562,45.62372326662266],[-113.9047430903309,45.62200514724147],[-113.89756450234502,45.64434069919699],[-113.94422532425324,45.68643462403623],[-113.98729685216851,45.704474877538765],[-114.01960049810498,45.69330710156101],[-114.01242191011909,45.658085654246534],[-114.0662613200132,45.62801856507564],[-114.13445790587905,45.557575670446695],[-114.20265449174491,45.535240118491174],[-114.24931531365313,45.54554883477834],[-114.26008319563195,45.49572337272372],[-114.34622625146251,45.45964286571865],[-114.36417272142721,45.49056901458014],[-114.41442283732836,45.50946832777327],[-114.46108365923658,45.561011909209086],[-114.55799459704596,45.565307207662066],[-114.53645883308832,45.60654207281072],[-114.56517318503184,45.63746822167221],[-114.50056589315892,45.669253430224295],[-114.49697659916599,45.71048829537295],[-114.56517318503184,45.774058712477114],[-114.50056589315892,45.85051502494024],[-114.41083354333543,45.85137408463084],[-114.38570848538485,45.8891727110171],[-114.43236930729307,45.935561934309334],[-114.41083354333543,45.977655859148584],[-114.47903012920129,46.0008504707947],[-114.49338730517304,46.04723969408693],[-114.46108365923658,46.097065156141554],[-114.52210165711656,46.12541412593125],[-114.51492306913069,46.1675080507705],[-114.44672648326483,46.173521468604676],[-114.45031577725777,46.24138718416184],[-114.4718515412154,46.26715897487974],[-114.42519071930718,46.28777640745407],[-114.42160142531425,46.38742733156331],[-114.37494060340603,46.443266211452105],[-114.4000656613566,46.50254133010329],[-114.35699413344133,46.505118509175084],[-114.32110119351192,46.6107828511185],[-114.33186907549074,46.66060831317312],[-114.36058342743426,46.669198910079096],[-114.4539050712507,46.64944053719537],[-114.46826224722247,46.63140028369283],[-114.54722671506714,46.64428617905178],[-114.59388753697536,46.63311840307402],[-114.64413765287652,46.67349420853208],[-114.62260188891888,46.70699753646536],[-114.67644129881297,46.73706462563625],[-114.76617364863648,46.696688820178196],[-114.78770941259413,46.71129283491834],[-114.76617364863648,46.758541117901174],[-114.88820964439644,46.808366579955795],[-114.94563834828348,46.859051101701006],[-114.93128117231171,46.92004433973339],[-114.96358481824818,46.93293023509234],[-115.00306705217052,46.9715879211692],[-115.04972787407874,46.970728861478605],[-115.07126363803637,47.02227244291442],[-115.13946022390223,47.09271533754337],[-115.20047822178222,47.1391045608356],[-115.2435497496975,47.15027233681336],[-115.26149621966219,47.182057545365446],[-115.30097845358452,47.18807096319962],[-115.29379986559866,47.220715231442306],[-115.32610351153511,47.25593667875678],[-115.41224656736566,47.26452727566275],[-115.52710397513974,47.30318496173961],[-115.55222903309033,47.34957418503184],[-115.7209258507585,47.424312378113775],[-115.76040808468085,47.42259425873258],[-115.71733655676556,47.45352040759407],[-115.63837208892087,47.46039288511884],[-115.62760420694207,47.479292198311974],[-115.68503291082911,47.48530561614616],[-115.7029793807938,47.53427201851018],[-115.74246161471615,47.53856731696316],[-115.73528302673026,47.567775346443455],[-115.68862220482204,47.59526525654256],[-115.73169373273731,47.64251353952539],[-115.72451514475145,47.69663430003299],[-115.77117596665965,47.717251732607316],[-115.79630102461024,47.75762753806537],[-115.82501537655375,47.75247317992179],[-115.85372972849729,47.82807043269432],[-115.90756913839138,47.84611068619685],[-116.04755160411604,47.97754681885818],[-116.05114089810897,48.21636541284412],[-116.04755160411604,48.50243228981289],[-116.04755160411604,49.00068691035909],[-115.20765680976808,48.998968790977905],[-114.72669141471414,49.00068691035909],[-114.06985061400613,48.998968790977905],[-113.69297474474745,48.99725067159671],[-113.01100888608886,48.998968790977905],[-112.19264985569855,48.998968790977905],[-111.76193457654576,48.99725067159671],[-111.27020129951299,48.99725067159671],[-110.74257508255081,48.998968790977905],[-110.17187733767337,48.998968790977905],[-109.48991147901478,49.00068691035909],[-108.99458890798907,48.998968790977905],[-108.23724787547874,48.999827850668495],[-107.44042460904609,48.998968790977905],[-107.17840614756147,48.999827850668495]]]},"properties":{"name":"Montana"},"id":"30"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-94.61228787827878,38.388722552415516],[-94.61228787827878,38.477205700546996],[-94.60869858428583,38.73835984648846],[-94.60869858428583,38.847460427194264],[-94.60869858428583,39.044185096340954],[-94.60869858428583,39.1137689312793],[-94.60151999629996,39.15929909488094],[-94.66253799417994,39.15758097549975],[-94.68048446414464,39.18421182590825],[-94.71278811008109,39.170466870858704],[-94.76303822598226,39.17991652745527],[-94.77380610796108,39.200533960029595],[-94.83482410584105,39.21771515384153],[-94.82405622386223,39.24176882517825],[-94.88866351573515,39.28643992908928],[-94.91019927969279,39.35430564464644],[-94.87789563375634,39.37578213691136],[-94.92455645566456,39.38437273381733],[-94.96762798357983,39.41873512144121],[-94.98916374753748,39.44622503154031],[-95.04659245142452,39.47285588194881],[-95.05018174541745,39.497768612976124],[-95.10402115531154,39.532990060290594],[-95.10761044930449,39.574224925439246],[-95.04659245142452,39.59484235801357],[-95.05377103941039,39.6154597905879],[-95.0286459814598,39.66528525264252],[-94.97480657156571,39.68160738676386],[-94.95686010160101,39.74603686355863],[-94.91019927969279,39.7254194309843],[-94.8743063397634,39.73057378912789],[-94.87071704577045,39.77266771396713],[-94.91378857368574,39.758922758917585],[-94.92455645566456,39.789848907779074],[-94.88148492774927,39.797580444994445],[-94.87789563375634,39.82077505664056],[-94.94250292562926,39.864587100861],[-94.92814574965749,39.88864077219772],[-94.9927530415304,39.89809042879428],[-95.04300315743157,39.864587100861],[-95.13632480124801,39.87661393652936],[-95.1542712712127,39.90754008539085],[-95.20093209312093,39.902385727247264],[-95.20452138711387,39.939325293942936],[-95.25118220902209,39.9487749505395],[-95.30861091290913,40.00031853197531],[-95.41987902669027,40.04842587464874],[-95.39116467474675,40.1162915902059],[-95.4773077305773,40.18158012669126],[-95.48448631856319,40.247727722867225],[-95.55268290442903,40.26233173760737],[-95.55627219842198,40.264049856988564],[-95.55268290442903,40.29153976708766],[-95.61729019630197,40.313875319043184],[-95.66036172421724,40.40837188500884],[-95.6567724302243,40.44187521294212],[-95.69625466414664,40.47108324242242],[-95.69984395813958,40.505445630046296],[-95.65318313623136,40.54152613705136],[-95.69266537015369,40.55698921148211],[-95.7106118401184,40.52348588354883],[-95.76804054400543,40.5312174207642],[-95.7644512500125,40.58533818127181],[-95.37321820478205,40.58018382312822],[-95.20093209312093,40.57846570374703],[-94.91378857368574,40.575029464984645],[-94.63382364223642,40.571593226222255],[-94.47230541255412,40.57073416653166],[-94.23182271502715,40.571593226222255],[-94.01646507545075,40.57417040529405],[-93.77598237792378,40.57760664405643],[-93.55703544435444,40.58018382312822],[-93.37398145071451,40.58018382312822],[-93.09760581325813,40.58362006189061],[-92.71355135601355,40.58963347972479],[-92.63817618216181,40.590492539415386],[-92.35103266272662,40.59736501694016],[-92.1787465510655,40.60080125570255],[-91.94185314753148,40.605955613846135],[-91.73008480194801,40.613687151061505],[-91.71572762597626,40.59822407663076],[-91.68342398003979,40.552693913029124],[-91.61881668816687,40.540667077360766],[-91.62240598215982,40.509740928499276],[-91.56497727827278,40.46077452613525],[-91.52908433834338,40.45905640675406],[-91.52549504435044,40.41094906408063],[-91.4860128104281,40.38431821367213],[-91.41781622456224,40.37830479583795],[-91.44653057650576,40.36284172140721],[-91.49319139841398,40.27779481203812],[-91.49678069240692,40.248586782557815],[-91.5039592803928,40.20047943988439],[-91.51472716237161,40.178143887928876],[-91.49319139841398,40.036399038980385],[-91.43576269452694,39.94533871177711],[-91.41781622456224,39.92729845827458],[-91.44653057650576,39.87060051869518],[-91.42858410654107,39.8379562504525],[-91.37474469664696,39.808748220972205],[-91.36397681466815,39.758922758917585],[-91.37115540265403,39.732291908509076],[-91.30654811078111,39.68504362552625],[-91.22399434894349,39.617177909969094],[-91.17733352703527,39.59827859677596],[-91.14861917509175,39.54587595564955],[-91.10195835318353,39.539003478124776],[-91.06247611926119,39.47371494163941],[-91.00504741537415,39.42732571834718],[-90.93685082950829,39.39983580824808],[-90.7932790697907,39.3096345407354],[-90.72149318993189,39.22372857167571],[-90.71072530795307,39.155003796427955],[-90.68201095600956,39.0879971405614],[-90.71431460194601,39.05707099169991],[-90.67483236802367,38.98405091799918],[-90.66406448604485,38.934225455944556],[-90.62817154611545,38.89127247141471],[-90.58510001820018,38.86893691945919],[-90.54561778427784,38.87495033729336],[-90.5061355503555,38.90244024739247],[-90.47383190441904,38.95913818697186],[-90.4522961404614,38.96772878387783],[-90.40563531855318,38.96257442573425],[-90.3087243807438,38.92391673965739],[-90.27642073480735,38.923057679966796],[-90.25129567685677,38.919621441204406],[-90.11490250512504,38.84917854657546],[-90.11849179911799,38.805366502355014],[-90.16515262102621,38.77272223411234],[-90.21181344293443,38.72203771236712],[-90.18309909099091,38.66018541464414],[-90.18309909099091,38.61121901228012],[-90.25847426484265,38.5321855207452],[-90.26206355883558,38.52101774476744],[-90.29436720477204,38.426521178801785],[-90.34102802668026,38.38786349272492],[-90.36974237862378,38.34061520974209],[-90.37333167261673,38.27360855387553],[-90.35538520265202,38.21347437553375],[-90.2907779107791,38.1705213910039],[-90.25129567685677,38.12756840647406],[-90.20822414894148,38.088051660706604],[-90.12925968109681,38.06227986998869],[-90.08977744717447,38.01589064669646],[-90.06106309523095,38.01589064669646],[-90.00004509735096,37.96434706526065],[-89.94261639346394,37.97036048309482],[-89.93184851148511,37.94716587144871],[-89.97492003940039,37.926548438874384],[-89.93902709947099,37.87500485743857],[-89.9031341595416,37.869850499294984],[-89.84570545565455,37.90593100630006],[-89.79904463374633,37.88187733496334],[-89.79545533975339,37.856964603936035],[-89.7416159298593,37.84665588764887],[-89.67341934399343,37.80284384342843],[-89.66624075600755,37.75215932168321],[-89.6159906401064,37.74958214261142],[-89.58368699416994,37.71350163560635],[-89.51549040830407,37.69288420303202],[-89.5083118203182,37.62501848747487],[-89.47600817438175,37.595810457994574],[-89.52266899628997,37.57089772696726],[-89.52266899628997,37.56660242851428],[-89.51549040830407,37.53567627965279],[-89.42216876448764,37.39736766946669],[-89.4365259404594,37.34410596864968],[-89.48677605636055,37.33465631205311],[-89.51907970229702,37.28568990968909],[-89.4903653503535,37.25132752206522],[-89.45806170441703,37.24015974608746],[-89.46165099840998,37.1997839406294],[-89.41499017650176,37.12504574754747],[-89.37550794257942,37.08552900178001],[-89.37909723657236,37.03999883817838],[-89.3109006507065,37.00907268931689],[-89.26782912279123,36.99360961488614],[-89.2570612408124,37.01508610715106],[-89.3109006507065,37.05374379322792],[-89.26065053480535,37.064052509515086],[-89.19963253692536,37.01594516684166],[-89.17091818498184,36.97041500324003],[-89.1314359510595,36.982441838908386],[-89.09913230512305,36.94378415283152],[-89.13861453904539,36.84756946748467],[-89.17450747897479,36.8398379302693],[-89.17809677296772,36.80719366202661],[-89.12425736307362,36.78485811007109],[-89.12784665706657,36.75135478213782],[-89.18527536095361,36.75393196120961],[-89.19963253692536,36.71613333482334],[-89.16732889098891,36.68520718596185],[-89.17450747897479,36.65084479833798],[-89.21398971289713,36.58040190370903],[-89.26065053480535,36.56493882927828],[-89.3288471206712,36.63194548514485],[-89.37191864858649,36.620777709167086],[-89.4185794704947,36.498791233102324],[-89.44729382243823,36.46442884547845],[-89.49395464434645,36.47044226331263],[-89.48677605636055,36.49707311372113],[-89.46524029240292,36.52971738196381],[-89.48318676236762,36.57181130680306],[-89.55856193621936,36.57352942618426],[-89.57291911219112,36.54775763546635],[-89.54061546625466,36.497932173411726],[-89.51907970229702,36.479032860218595],[-89.5442047602476,36.4240530400204],[-89.5083118203182,36.37336851827518],[-89.5442047602476,36.33642895157951],[-89.61240134611346,36.340724250032494],[-89.61240134611346,36.30893904148041],[-89.53702617226172,36.27543571354713],[-89.53343687826877,36.252241101901014],[-89.58727628816288,36.23935520654206],[-89.69495510795107,36.25310016159161],[-89.7057229899299,36.23505990808908],[-89.63034781607816,36.18523444603446],[-89.59086558215581,36.15001299871998],[-89.60163346413464,36.11908684985849],[-89.68059793197932,36.08472446223462],[-89.69136581395813,36.02029498543985],[-89.73443734187342,36.00053661255612],[-89.96056286342863,35.99881849317492],[-90.28718861678617,35.99624131410314],[-90.37692096660966,35.99538225441254],[-90.31949226272262,36.089878820378196],[-90.236938500885,36.13970428243282],[-90.2189920309203,36.18437538634386],[-90.19027767897678,36.2006975204652],[-90.12567038710387,36.229046490254895],[-90.11490250512504,36.26598605695057],[-90.0825988591886,36.27199947478474],[-90.0646523892239,36.38625441363413],[-90.14361685706857,36.4240530400204],[-90.13284897508974,36.436938935379345],[-90.15079544505444,36.497932173411726],[-90.2189920309203,36.497932173411726],[-90.5779214302143,36.498791233102324],[-90.78610048180481,36.498791233102324],[-91.12708341113411,36.497932173411726],[-91.40704834258342,36.49707311372113],[-91.4501198704987,36.497932173411726],[-91.67265609806098,36.49965029279292],[-92.12131784717847,36.498791233102324],[-92.15003219912198,36.498791233102324],[-92.53049736237362,36.498791233102324],[-92.7709800599006,36.497932173411726],[-92.85353382173821,36.497932173411726],[-93.29501698286983,36.497932173411726],[-93.31655274682747,36.498791233102324],[-93.58574979629796,36.498791233102324],[-93.86571472774727,36.498791233102324],[-94.07748307333073,36.498791233102324],[-94.61946646626465,36.49965029279292],[-94.61946646626465,36.668025992149914],[-94.61946646626465,36.76681785656856],[-94.61946646626465,36.998763973029725],[-94.61946646626465,37.05718003199031],[-94.61587717227172,37.3380925508155],[-94.61587717227172,37.36386434153341],[-94.61587717227172,37.653367457264565],[-94.61946646626465,37.673125830148294],[-94.61228787827878,38.037367138961386],[-94.61228787827878,38.0597026909169],[-94.61228787827878,38.388722552415516]]]},"properties":{"name":"Missouri"},"id":"29"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-85.4990704302043,30.996513914829144],[-85.48830254822548,30.99737297451974],[-85.00374785917859,31.000809213282125],[-84.98221209522094,30.93294349772497],[-84.94272986129862,30.888272393813935],[-84.93555127331273,30.81697043949439],[-84.9140155093551,30.75254096269962],[-84.87453327543275,30.727628231672313],[-84.86376539345393,30.711306097550967],[-84.37921070440704,30.68982960528605],[-84.28229976659766,30.685534306833063],[-84.08488859698596,30.676084650236497],[-84.00592412914129,30.67178935178351],[-83.74390566765668,30.658044396733963],[-83.6111017899179,30.65117191920919],[-83.35626191641916,30.637426964159637],[-83.27370815458154,30.632272606016052],[-83.13731498284983,30.623682009110084],[-82.68865323373234,30.59791021839218],[-82.58456370793708,30.591896800557997],[-82.45893841818418,30.584165263342626],[-82.41945618426183,30.581588084270834],[-82.21486642666426,30.568702188911885],[-82.23281289662896,30.556675353243527],[-82.22563430864308,30.507708950879504],[-82.2005092506925,30.485373398923983],[-82.21127713267133,30.4243801608916],[-82.17179489874898,30.35909162440624],[-82.10359831288312,30.368541281002805],[-82.04975890298903,30.362527863168623],[-82.03540172701727,30.384863415124144],[-82.0389910210102,30.434688877178765],[-82.01745525705256,30.47506468263682],[-82.00668737507375,30.577292785817853],[-82.04975890298903,30.65546721766217],[-82.03540172701727,30.707010799097986],[-82.0389910210102,30.749104723937236],[-82.01027666906668,30.762849678986782],[-82.02463384503845,30.78346711156111],[-81.98156231712316,30.776594634036336],[-81.94925867118671,30.827279155781554],[-81.9025978492785,30.82040667825678],[-81.87029420334203,30.792916768157674],[-81.80927620546206,30.79033958908589],[-81.74466891358914,30.766285917749173],[-81.71954385563855,30.74480942548425],[-81.60109715387154,30.72848729136291],[-81.54007915599156,30.713024216932162],[-81.4898290400904,30.725910112291118],[-81.44316821818218,30.70958797816978],[-81.42881104221041,30.69842020219202],[-81.44316821818218,30.60134645715457],[-81.44316821818218,30.510286129951297],[-81.41086457224571,30.4819371601616],[-81.39650739627396,30.400326489554892],[-81.39291810228102,30.303252744517437],[-81.37856092630926,30.252568222772226],[-81.3103643404434,29.969078524875243],[-81.26370351853518,29.85825982478824],[-81.26370351853518,29.814447780567804],[-81.21345340263403,29.670984812238117],[-81.10218528885288,29.427011860108593],[-81.04834587895878,29.307602563115623],[-80.94425635316352,29.110877893968933],[-80.73248800758007,28.791307689066883],[-80.71095224362243,28.75694530144301],[-80.57455907189072,28.585133363323628],[-80.56020189591895,28.53101260281602],[-80.52430895598955,28.459710648496483],[-80.58891624786247,28.41074424613246],[-80.60327342383424,28.364355022840222],[-80.60686271782717,28.289616829758295],[-80.58891624786247,28.177939069980695],[-80.56738048390484,28.09546933968339],[-80.5099517800178,27.970905684546842],[-80.44534448814488,27.860946044150438],[-80.3843264902649,27.739818627776273],[-80.31971919839198,27.557697973369727],[-80.2945941404414,27.500140974099736],[-80.25511190651906,27.37987261741617],[-80.19768320263202,27.26304049949499],[-80.16179026270262,27.192597604866044],[-80.14025449874498,27.111845993949935],[-80.1151294407944,27.072329248182477],[-80.07923650086501,26.970101145001443],[-80.03257567895679,26.796571087500872],[-80.03616497294972,26.594692060210598],[-80.06129003090031,26.44435661435614],[-80.07564720687206,26.32065201891018],[-80.09000438284383,26.2321688707787],[-80.11871873478735,25.975310023290227],[-80.11871873478735,25.841296711557113],[-80.12948661676616,25.77257193630936],[-80.15461167471675,25.702988101371012],[-80.15461167471675,25.665189474984743],[-80.17614743867438,25.68494784786847],[-80.16537955669557,25.728759892088917],[-80.18332602666027,25.745941085900853],[-80.24075473054731,25.72446459363593],[-80.2766476704767,25.636840505195046],[-80.29818343443434,25.622236490454902],[-80.30177272842728,25.567256670256697],[-80.3304870803708,25.532894282632824],[-80.33766566835668,25.46588762676626],[-80.31971919839198,25.437538656976564],[-80.32689778637786,25.398021911209106],[-80.30536202242023,25.38427695615956],[-80.33407637436375,25.33874679255792],[-80.37714790227902,25.306102524315236],[-80.33766566835668,25.289780390193897],[-80.29100484644846,25.31898841967419],[-80.26946908249083,25.352491747607473],[-80.20127249662497,25.48564599964999],[-80.17614743867438,25.520867446964466],[-80.17614743867438,25.48564599964999],[-80.2048617906179,25.414344045330452],[-80.25152261252612,25.34218303132031],[-80.32689778637786,25.223632794017938],[-80.35920143231432,25.15318989938899],[-80.44893378213781,25.07329734816348],[-80.57096977789777,24.95388805117051],[-80.65711283372833,24.897190111591108],[-80.66788071570716,24.90749882787827],[-80.5458447199472,25.012304110131097],[-80.49559460404603,25.04666649775497],[-80.47046954609546,25.09219666135661],[-80.45970166411664,25.16178049629496],[-80.44175519415194,25.18927040639406],[-80.46329095810958,25.209028779277787],[-80.49559460404603,25.19957912268122],[-80.52071966199662,25.221914674636743],[-80.54225542595425,25.206451600205995],[-80.66429142171421,25.187552287012863],[-80.71454153761537,25.152330839698394],[-80.74684518355183,25.14717648155481],[-80.81145247542476,25.18583416763167],[-80.85811329733298,25.176384511035103],[-80.90118482524825,25.16178049629496],[-80.90118482524825,25.139444944339438],[-80.99809576305763,25.123981869908697],[-81.08064952489525,25.11882751176511],[-81.14166752277522,25.163498615676154],[-81.17038187471874,25.221914674636743],[-81.16320328673287,25.289780390193897],[-81.14166752277522,25.341323971629713],[-81.12013175881758,25.33874679255792],[-81.12731034680347,25.38084071739717],[-81.17038187471874,25.464169507385073],[-81.20986410864109,25.50454531284312],[-81.20268552065521,25.533753342323422],[-81.23139987259873,25.587015043140426],[-81.27088210652106,25.614504953239525],[-81.28882857648576,25.687525026940264],[-81.3103643404434,25.702988101371012],[-81.34984657436574,25.690102206012057],[-81.3821502203022,25.776867234762342],[-81.46829327613275,25.803498085170844],[-81.4718825701257,25.817243040220397],[-81.54725774397744,25.84988730846308],[-81.62263291782918,25.89713559144591],[-81.66211515175152,25.88596781546815],[-81.69082950369503,25.852464487534874],[-81.74825820758207,25.960706008550083],[-81.80209761747618,26.087846842758424],[-81.82004408744088,26.236464169231688],[-81.84516914539145,26.330101675506754],[-81.87029420334203,26.379068077870777],[-81.97079443514434,26.476141822908225],[-82.01027666906668,26.483873360123596],[-82.01386596305963,26.52854446403464],[-82.0569374909749,26.548302836918367],[-82.0569374909749,26.49332301672016],[-82.10718760687607,26.483873360123596],[-82.11077690086901,26.54057129970299],[-82.13949125281252,26.637645044740445],[-82.1825627807278,26.681457088960883],[-82.17179489874898,26.70207452153521],[-82.12513407684077,26.699497342463417],[-82.0928304309043,26.665994014530142],[-82.06052678496785,26.77079929678296],[-82.05334819698197,26.802584505335048],[-82.06052678496785,26.876463638726385],[-82.08924113691137,26.888490474394736],[-82.08924113691137,26.922852862018615],[-82.06052678496785,26.931443458924583],[-82.0748839609396,26.958074309333085],[-82.11795548885489,26.954638070570702],[-82.13590195881959,26.926289100781005],[-82.17538419274193,26.91683944418444],[-82.14666984079841,26.789698609976092],[-82.2184557206572,26.769081177401766],[-82.25075936659367,26.76306775956759],[-82.26870583655837,26.720114775037743],[-82.2722951305513,26.789698609976092],[-82.290241600516,26.827497236362362],[-82.37638465634656,26.946047473664734],[-82.44458124221242,27.06030241251412],[-82.47688488814887,27.14105402343023],[-82.54508147401474,27.261322380113796],[-82.64199241182412,27.389322274012734],[-82.69224252772527,27.43742961668616],[-82.70659970369704,27.48725507874078],[-82.74249264362643,27.539657719867193],[-82.70659970369704,27.523335585745855],[-82.70301040970409,27.497563795027943],[-82.64917099981,27.523335585745855],[-82.6132780598806,27.585187883468826],[-82.57020653196531,27.609241554805543],[-82.55584935599356,27.64532206181061],[-82.52354571005709,27.693429404484043],[-82.47688488814887,27.722637433964337],[-82.48406347613476,27.742395806848066],[-82.4338133602336,27.76473135880358],[-82.39433112631126,27.836892372813722],[-82.41227759627596,27.901321849608493],[-82.49124206412064,27.919362103111027],[-82.47329559415594,27.82228835807358],[-82.55226006200061,27.848060148791483],[-82.53072429804298,27.877268178271777],[-82.53431359203591,27.93310705816058],[-82.55226006200061,27.966610386093855],[-82.6312245298453,27.99839559464594],[-82.64917099981,28.020731146601463],[-82.68865323373234,28.027603624126236],[-82.6850639397394,27.97176474423744],[-82.72454617366174,27.947711072900724],[-82.6850639397394,27.915925864348637],[-82.62763523585235,27.91077150620506],[-82.58815300193001,27.816274940239396],[-82.62404594185942,27.78019443323433],[-82.62404594185942,27.726932732417318],[-82.63840311783117,27.703738120771206],[-82.71377829168291,27.69858376262762],[-82.72454617366174,27.67109385252852],[-82.69942111571116,27.638449584285837],[-82.73172476164761,27.612677793567933],[-82.74608193761938,27.647040181191805],[-82.73890334963349,27.71834213551135],[-82.78915346553465,27.79136220921209],[-82.8214571114711,27.81369776116761],[-82.85017146341463,27.86352322322223],[-82.828635699457,28.019872086910866],[-82.8465821694217,28.07657002649026],[-82.86093934539345,28.17192565214652],[-82.86093934539345,28.217455815748153],[-82.828635699457,28.21831487543875],[-82.828635699457,28.17192565214652],[-82.81427852348523,28.061966011750116],[-82.78197487754878,28.055952593915933],[-82.78915346553465,28.15216727926279],[-82.8035106415064,28.17192565214652],[-82.76402840758408,28.219173935129348],[-82.76043911359113,28.254395382443818],[-82.73172476164761,28.29219400883008],[-82.73172476164761,28.324838277072764],[-82.70659970369704,28.367791261602612],[-82.70659970369704,28.401294589535887],[-82.67788535175352,28.433079798087974],[-82.66352817578175,28.48462337952379],[-82.67070676376764,28.519844826838266],[-82.65276029380294,28.591146781157804],[-82.67429605776057,28.647844720737204],[-82.6671174697747,28.694233944029435],[-82.71377829168291,28.720864794437936],[-82.69942111571116,28.75694530144301],[-82.73172476164761,28.85058280771807],[-82.68865323373234,28.905562627916275],[-82.73531405564056,28.97342834347343],[-82.76043911359113,28.993186716357158],[-82.76043911359113,29.05417995438954],[-82.81786781747817,29.07651550634506],[-82.79992134751348,29.104864476134757],[-82.8035106415064,29.146958400974007],[-82.828635699457,29.15812617695176],[-82.99733251712517,29.17788454983549],[-83.02963616306162,29.134072505615052],[-83.05476122101221,29.13063626685266],[-83.08706486694867,29.216542235912357],[-83.07629698496984,29.255199921989217],[-83.12654710087101,29.282689832088316],[-83.16602933479335,29.28870324992249],[-83.17679721677216,29.344542129811295],[-83.20192227472275,29.394367591865915],[-83.24140450864509,29.433025277942775],[-83.29524391853919,29.438179636086353],[-83.31319038850388,29.475978262472623],[-83.39933344433445,29.517213127621268],[-83.39933344433445,29.61256875327753],[-83.4136906203062,29.66668951378513],[-83.45676214822149,29.676139170381695],[-83.49265508815088,29.70878343862438],[-83.5393159100591,29.72338745336453],[-83.58597673196732,29.775790094490937],[-83.58597673196732,29.81187060149601],[-83.61828037790377,29.841937690666903],[-83.63622684786847,29.88574973488734],[-83.68647696376964,29.92354836127361],[-83.78697719557195,29.976810062090614],[-83.93054895528955,30.038662359813593],[-83.99156695316952,30.084192523415226],[-84.02387059910599,30.103091836608364],[-84.07771000900009,30.095360299392986],[-84.15667447684477,30.073024747437472],[-84.2679425906259,30.09793747846478],[-84.27153188461884,30.067870389293887],[-84.36485352843528,30.0085952706427],[-84.3397284704847,29.960487927969275],[-84.34331776447765,29.899494689936894],[-84.37921070440704,29.89348127210272],[-84.43305011430114,29.906367167461667],[-84.45099658426584,29.92870271941719],[-84.5371396400964,29.909803406224057],[-84.64840775387754,29.84709204881048],[-84.88171186341863,29.733696169651694],[-84.90324762737627,29.73541428903288],[-84.87812256942568,29.77321291541915],[-84.9140155093551,29.783521631706314],[-84.93914056730567,29.750018303773032],[-84.99297997719977,29.714796856458563],[-85.1221945609456,29.715655916149153],[-85.07553373903738,29.67356199130991],[-85.0683551510515,29.640917723067226],[-85.01092644716447,29.622018409874094],[-84.90324762737627,29.667548573475727],[-84.79915810158101,29.701910961099607],[-84.70224716377163,29.77407197510975],[-84.69147928179281,29.762904199131988],[-84.77762233762337,29.69246130450304],[-84.87812256942568,29.655521737807376],[-85.00374785917859,29.598823798227976],[-85.04681938709386,29.586796962559617],[-85.08271232702327,29.61514593234932],[-85.1401410309103,29.634045245542453],[-85.22628408674086,29.67785728976289],[-85.29089137861378,29.683870707597073],[-85.35190937649377,29.659817036260357],[-85.39857019840198,29.740568647176467],[-85.41651666836668,29.8427967503575],[-85.38780231642316,29.878877257362568],[-85.38780231642316,29.788675989849892],[-85.36626655246552,29.710501558005575],[-85.34114149451494,29.691602244812444],[-85.30524855458555,29.725105572745726],[-85.3016592605926,29.80843436273362],[-85.38780231642316,29.924407420964208],[-85.4272845503455,29.950179211682112],[-85.48830254822548,29.961346987659873],[-85.54214195811957,29.995709375283745],[-85.59957066200661,30.056702613316126],[-85.696481599816,30.09707841877418],[-85.77544606766067,30.156353537425368],[-85.92260712137121,30.237964208032075],[-85.99439300123001,30.268890356893564],[-86.09130393903939,30.303252744517437],[-86.2994829906299,30.36338692285922],[-86.39639392843928,30.37884999728997],[-86.63328733197332,30.396031191101905],[-86.79839485564855,30.38658153450534],[-86.92043085140851,30.370259400384],[-87.1537349609496,30.32816547554475],[-87.26859236872369,30.315279580185795],[-87.29371742667426,30.323870177091763],[-87.51984294822948,30.280058132871325],[-87.46600353833539,30.302393684826846],[-87.49112859628596,30.323011117401165],[-87.4588249503495,30.33589701276012],[-87.43011059840597,30.406339907389068],[-87.36550330653306,30.43640699655996],[-87.43728918639187,30.480219040780405],[-87.44805706837069,30.527467323763233],[-87.39421765847658,30.615091412204116],[-87.4049855404554,30.674366530855302],[-87.53420012420123,30.743091306103054],[-87.54496800618006,30.77831275341753],[-87.62752176801767,30.846178468974685],[-87.63470035600356,30.865936841858414],[-87.58803953409534,30.964728706277057],[-87.59880741607415,30.99737297451974],[-87.16450284292843,30.999091093900937],[-86.7840376796768,30.99737297451974],[-86.68712674186742,30.99479579544795],[-86.3892153404534,30.99393673575735],[-86.18821487684876,30.99393673575735],[-86.03387523515235,30.993077676066754],[-85.4990704302043,30.996513914829144]]],[[[-82.26511654256542,26.698638282772826],[-82.24717007260072,26.683175208342078],[-82.17897348673486,26.50191361362613],[-82.15025913479134,26.47785994228942],[-82.08924113691137,26.4555243903339],[-82.0641160789608,26.470128405074043],[-82.01386596305963,26.45208815157151],[-82.0641160789608,26.425457301163007],[-82.09641972489725,26.42459824147241],[-82.17179489874898,26.467551226002257],[-82.19691995669956,26.491604897338966],[-82.24358077860778,26.59039676175761],[-82.26511654256542,26.65568529824298],[-82.26511654256542,26.698638282772826]]],[[[-84.66994351783518,29.794689407684075],[-84.56585399203992,29.835065213142123],[-84.56585399203992,29.810152482114816],[-84.62328269592696,29.77836727356273],[-84.66276492984929,29.77321291541915],[-84.66994351783518,29.794689407684075]]],[[[-80.75043447754477,24.85767336582365],[-80.70018436164361,24.909216947259466],[-80.68223789167891,24.88086797746977],[-80.73248800758007,24.843069351083507],[-80.75043447754477,24.85767336582365]]],[[[-80.85093470934709,24.80355260531605],[-80.81863106341063,24.83705593324933],[-80.77914882948829,24.840492172011714],[-80.79709529945299,24.812143202222018],[-80.85093470934709,24.80355260531605]]],[[[-81.12372105281052,24.7073379199692],[-80.93707776517765,24.78465329212292],[-80.91554200122,24.758881501405007],[-81.0770602309023,24.690156726157255],[-81.12372105281052,24.7073379199692]]],[[[-81.81286549945499,24.56902930978309],[-81.74466891358914,24.660089636986363],[-81.67288303373033,24.69960638275382],[-81.58315068390684,24.736545949449493],[-81.57238280192801,24.75630432233322],[-81.44316821818218,24.813002261912615],[-81.30677504645047,24.755445262642624],[-81.2924178704787,24.71077415873158],[-81.24216775457754,24.673834592035917],[-81.2565249305493,24.66438493543935],[-81.4000966902669,24.6231500702907],[-81.41086457224571,24.646344681936817],[-81.5077755100551,24.64204938348383],[-81.51854339203392,24.621431950909503],[-81.68365091570915,24.558720593495927],[-81.81286549945499,24.54583469813698],[-81.81286549945499,24.56902930978309]]],[[[-82.01386596305963,24.543257519065186],[-81.87388349733497,24.563874951639512],[-81.90977643726437,24.526935384943847],[-81.97079443514434,24.51490854927549],[-82.01745525705256,24.521781026800262],[-82.01386596305963,24.543257519065186]]],[[[-82.16461631076311,24.563015891948915],[-82.14308054680546,24.593082981119807],[-82.10000901889019,24.58449238421384],[-82.11795548885489,24.54927093689936],[-82.16461631076311,24.563015891948915]]],[[[-82.93272522525226,24.632599726887264],[-82.87888581535815,24.643767502865025],[-82.86452863938639,24.624009129981296],[-82.93631451924519,24.615418533075328],[-82.93272522525226,24.632599726887264]]]]},"properties":{"name":"Florida"},"id":"12"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.69571835388354,36.637099843288425],[-87.85364728957289,36.63366360452604],[-87.85005799557995,36.663730693696934],[-88.06900492914929,36.67833470843708],[-88.03311198921989,36.552052933919335],[-88.05464775317753,36.49707311372113],[-88.48895232632326,36.501368412174116],[-88.51766667826678,36.501368412174116],[-88.81557807968079,36.50308653155531],[-88.82634596165961,36.50308653155531],[-88.83352454964549,36.50308653155531],[-88.99863207332074,36.502227471864714],[-89.30013276872768,36.50738183000829],[-89.3467935906359,36.50308653155531],[-89.4185794704947,36.498791233102324],[-89.37191864858649,36.620777709167086],[-89.3288471206712,36.63194548514485],[-89.26065053480535,36.56493882927828],[-89.21398971289713,36.58040190370903],[-89.17450747897479,36.65084479833798],[-89.16732889098891,36.68520718596185],[-89.19963253692536,36.71613333482334],[-89.18527536095361,36.75393196120961],[-89.12784665706657,36.75135478213782],[-89.12425736307362,36.78485811007109],[-89.17809677296772,36.80719366202661],[-89.17450747897479,36.8398379302693],[-89.13861453904539,36.84756946748467],[-89.09913230512305,36.94378415283152],[-89.1314359510595,36.982441838908386],[-89.18168606696067,37.02711294281942],[-89.17091818498184,37.068347807968074],[-89.10990018710187,37.11903232971329],[-89.0775965411654,37.17487120960209],[-89.03093571925719,37.21095171660716],[-88.98427489734897,37.228991970109696],[-88.93402478144782,37.2281329104191],[-88.92684619346193,37.226414791037904],[-88.80481019770197,37.18861616465164],[-88.75456008180082,37.15511283671836],[-88.62893479204791,37.12075044909449],[-88.564327500175,37.07865652425524],[-88.48895232632326,37.067488748277476],[-88.46023797437974,37.07350216611165],[-88.42434503445034,37.14995847857478],[-88.44947009240092,37.206656418154175],[-88.5104880902809,37.26249529804297],[-88.51766667826678,37.283971790307895],[-88.48536303233033,37.3398106701967],[-88.47818444434444,37.387058953179526],[-88.41357715247152,37.42399851987519],[-88.41357715247152,37.42485757956579],[-88.35973774257742,37.40509920668206],[-88.29871974469744,37.44719313152131],[-88.25564821678216,37.456642788117875],[-88.08336210512105,37.472964922239214],[-88.06182634116341,37.5056091904819],[-88.07259422314223,37.52880380212802],[-88.1336122210222,37.57433396572965],[-88.15873727897278,37.664535233242326],[-88.11925504505045,37.71264257591575],[-88.05823704717046,37.74270966508664],[-88.02952269522694,37.79940760466604],[-87.94696893338933,37.77191769456694],[-87.90389740547405,37.81229350002499],[-87.93979034540345,37.87070955898558],[-87.92543316943168,37.90163570784707],[-87.87159375953759,37.9213940807308],[-87.83211152561525,37.876722976819764],[-87.69930764787648,37.89734040939409],[-87.66341470794707,37.8939041706317],[-87.67418258992589,37.82947469383693],[-87.63470035600356,37.82689751476514],[-87.58803953409534,37.861259902389016],[-87.62752176801767,37.91623972258722],[-87.6023967100671,37.972937662166615],[-87.57368235812358,37.96778330402304],[-87.55214659416593,37.92568937918379],[-87.50189647826478,37.90936724506244],[-87.45164636236362,37.94115245361453],[-87.37986048250482,37.93599809547095],[-87.30089601466014,37.89819946908469],[-87.26859236872369,37.87844109620096],[-87.22193154681547,37.84923306672066],[-87.15732425494255,37.838065290742904],[-87.12860990299903,37.78480358992589],[-87.08912766907669,37.787380768997686],[-87.06400261112611,37.8105753806438],[-87.04605614116142,37.8939041706317],[-86.97785955529555,37.92998467763677],[-86.90607367543674,37.94287057299572],[-86.8558235595356,37.987541676906766],[-86.81634132561325,37.99870945288452],[-86.79480556165561,37.98925979628795],[-86.75173403374033,37.91280348382483],[-86.71584109381094,37.8939041706317],[-86.67994815388154,37.915380662896624],[-86.64405521395214,37.906790065990656],[-86.65482309593095,37.842360589195884],[-86.59739439204392,37.8672733202232],[-86.59021580405803,37.9213940807308],[-86.50766204222042,37.92912561794617],[-86.52560851218512,37.961769886188854],[-86.52560851218512,38.02791748236482],[-86.48971557225572,38.045957735867354],[-86.45382263232632,38.050253034320335],[-86.43228686836868,38.08633354132541],[-86.4610012203122,38.12155498863988],[-86.40357251642516,38.10609191420914],[-86.37485816448164,38.131004645236445],[-86.32819734257342,38.13272276461764],[-86.32460804858049,38.15419925688256],[-86.3712688704887,38.16450797316973],[-86.37485816448164,38.19371600265002],[-86.33178663656636,38.180830107291065],[-86.27076863868638,38.13787712276122],[-86.26717934469345,38.057125511845115],[-86.17385770087701,38.00987722886228],[-86.09489323303232,38.00901816917168],[-86.0482324111241,37.95919270711706],[-86.03387523515235,37.99011885597855],[-85.99798229522295,37.99956851257512],[-85.94414288532884,38.00815910948109],[-85.92260712137121,38.026199362983625],[-85.90466065140652,38.08633354132541],[-85.90107135741357,38.17997104760047],[-85.8508212415124,38.222924032130315],[-85.82928547755478,38.27704479263792],[-85.78980324363243,38.28821256861568],[-85.74314242172422,38.26759513604135],[-85.67494583585835,38.30109846397463],[-85.63905289592896,38.38013195550955],[-85.60674924999249,38.439407074160734],[-85.4990704302043,38.46861510364103],[-85.47394537225372,38.50641373002729],[-85.43446313833138,38.52445398352983],[-85.41651666836668,38.54077611765117],[-85.4272845503455,38.5863062812528],[-85.45240960829608,38.70915181700816],[-85.4093380803808,38.73750078679786],[-85.33396290652907,38.735782667416665],[-85.25858773267733,38.73750078679786],[-85.20115902879029,38.69111156350563],[-85.17244467684677,38.68767532474324],[-85.02528362313623,38.76241351782517],[-84.8888904514045,38.79505778606785],[-84.80992598355984,38.792480606996065],[-84.83146174751747,38.83027923338233],[-84.79556880758807,38.85691008379083],[-84.79915810158101,38.89127247141471],[-84.87094398143981,38.900722128011274],[-84.87094398143981,38.92907109780097],[-84.83146174751747,38.961715366043656],[-84.87812256942568,39.03044014129141],[-84.8888904514045,39.066520648296475],[-84.82069386553866,39.105178334373335],[-84.75608657366574,39.14641319952199],[-84.73096151571515,39.14469508014079],[-84.67712210582106,39.09830585684856],[-84.62328269592696,39.074252185511845],[-84.55149681606815,39.09916491653916],[-84.50483599415993,39.09486961808617],[-84.47253234822348,39.12150046849468],[-84.44381799627996,39.1146279909699],[-84.4294608203082,39.055352872318714],[-84.31819270652706,39.02184954438544],[-84.28947835458354,38.95570194820947],[-84.23922823868239,38.900722128011274],[-84.23204965069651,38.87495033729336],[-84.23204965069651,38.827702054310535],[-84.2141031807318,38.805366502355014],[-84.05258495104951,38.77100411473114],[-83.97720977719777,38.78732624885248],[-83.90542389733898,38.76842693565935],[-83.84799519345194,38.746950443394425],[-83.83722731147311,38.71774241391413],[-83.78338790157902,38.69540686195861],[-83.7654414316143,38.65245387742877],[-83.70442343373433,38.63956798206981],[-83.6469947298473,38.63699080299802],[-83.61469108391084,38.684239085980856],[-83.5213694400944,38.70313839917399],[-83.4675300302003,38.67564848907488],[-83.36702979839798,38.658467295262945],[-83.32754756447564,38.63784986268862],[-83.30960109451094,38.60091029599295],[-83.26652956659566,38.61809148980489],[-83.13731498284983,38.62840020609205],[-83.11936851288513,38.666198832478315],[-83.04399333903339,38.70571557824577],[-83.02245757507575,38.72891018989189],[-82.96861816518165,38.72891018989189],[-82.89324299132991,38.75640009999099],[-82.86811793337932,38.728051130201294],[-82.87888581535815,38.69025250381503],[-82.8465821694217,38.59489687815878],[-82.81427852348523,38.57084320682206],[-82.72454617366174,38.557957311463106],[-82.6671174697747,38.5055546703367],[-82.61686735387353,38.477205700546996],[-82.5953315899159,38.4222258803488],[-82.59892088390883,38.34491050819508],[-82.57020653196531,38.31398435933359],[-82.57379582595826,38.26415889727897],[-82.60609947189472,38.24697770346703],[-82.60968876588765,38.1713804506945],[-82.63840311783117,38.1713804506945],[-82.63840311783117,38.138736182451815],[-82.58456370793708,38.106950973899735],[-82.54867076800768,38.06829328782287],[-82.51636712207122,37.99956851257512],[-82.46252771217712,37.980669199381985],[-82.49842065210652,37.945447752067516],[-82.47329559415594,37.899917588465875],[-82.41945618426183,37.88359545434454],[-82.42304547825478,37.85438742486424],[-82.37638465634656,37.80198478373783],[-82.34049171641716,37.78566264961649],[-82.33331312843129,37.74099154570545],[-82.29383089450894,37.6705486510765],[-82.23999148461485,37.661098994479936],[-82.21486642666426,37.62501848747487],[-82.1825627807278,37.62673660685606],[-82.15743772277723,37.592374219232184],[-82.12872337083371,37.591515159541586],[-82.11795548885489,37.55972995098951],[-82.01745525705256,37.533958160271595],[-81.96720514115141,37.537394399033985],[-82.31536665846659,37.29599862597625],[-82.35484889238892,37.265072477114764],[-82.4876527701277,37.23156914918149],[-82.55226006200061,37.203220179391785],[-82.56661723797238,37.19634770186701],[-82.63481382383823,37.15425377702776],[-82.72454617366174,37.1155960909509],[-82.72454617366174,37.04171695755957],[-82.78197487754878,37.00821362962629],[-82.82504640546405,37.006495510245095],[-82.86811793337932,36.97385124200241],[-82.85735005140052,36.92746201871018],[-82.87888581535815,36.89309963108631],[-82.96861816518165,36.85787818377183],[-83.07270769097691,36.85444194500944],[-83.13013639486394,36.78571716976169],[-83.13731498284983,36.74276418523185],[-83.19474368673687,36.73932794646946],[-83.31319038850388,36.70926085729857],[-83.4316370902709,36.66630787276872],[-83.46035144221442,36.664589753387524],[-83.52854802808028,36.66630787276872],[-83.6469947298473,36.624213947929476],[-83.67570908179081,36.60101933628336],[-83.69006625776258,36.582979082780824],[-83.93054895528955,36.587274381233804],[-83.9879776591766,36.5898515603056],[-84.22846035670356,36.59242873937739],[-84.26076400264002,36.59156967968679],[-84.54431822808228,36.59586497813977],[-84.77762233762337,36.60359651535515],[-84.78480092560925,36.60359651535515],[-84.97503350723507,36.6156233510235],[-85.27653420264203,36.62679112700126],[-85.29448067260672,36.625932067310664],[-85.43805243232433,36.618200530095294],[-85.48830254822548,36.614764291332904],[-85.78980324363243,36.621636768857684],[-85.97644653126531,36.62850924638246],[-86.20616134681346,36.63967702236022],[-86.41075110441103,36.65084479833798],[-86.50766204222042,36.65256291771917],[-86.56509074610746,36.63366360452604],[-86.59021580405803,36.65256291771917],[-86.76250191571916,36.64912667895678],[-87.06041331713317,36.64311326112261],[-87.11425272702726,36.64225420143201],[-87.33678895458954,36.64139514174141],[-87.64187894398944,36.63795890297902],[-87.69571835388354,36.637099843288425]]],[[[-89.48677605636055,36.49707311372113],[-89.54061546625466,36.497932173411726],[-89.57291911219112,36.54775763546635],[-89.55856193621936,36.57352942618426],[-89.48318676236762,36.57181130680306],[-89.46524029240292,36.52971738196381],[-89.48677605636055,36.49707311372113]]]]},"properties":{"name":"Kentucky"},"id":"21"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-67.95819068670687,44.41502628195281],[-67.98690503865039,44.386677312163116],[-68.00485150861509,44.409871923809234],[-68.04792303653036,44.33083843227431],[-68.1053517404174,44.364341760207594],[-68.1053517404174,44.395267909069084],[-68.1412446803468,44.37722765556655],[-68.18072691426914,44.38495919278192],[-68.17354832628327,44.32826125320253],[-68.2309770301703,44.267268015170146],[-68.19149479624797,44.23891904538045],[-68.31712008600086,44.225174090330896],[-68.39967384783847,44.252664000429995],[-68.45710255172551,44.344583387323866],[-68.43556678776788,44.36949611835118],[-68.3566023199232,44.39269072999729],[-68.38890596585966,44.43134841607415],[-68.43556678776788,44.40128132690326],[-68.42838819978199,44.43907995328953],[-68.46428113971139,44.436502774217736],[-68.46069184571846,44.37808671525715],[-68.47863831568316,44.37808671525715],[-68.47863831568316,44.433066535455346],[-68.56478137151372,44.38495919278192],[-68.54683490154902,44.35489210361103],[-68.56837066550665,44.317952536915364],[-68.5181205496055,44.26039553764537],[-68.52888843158432,44.221737851568506],[-68.61144219342194,44.155590255392546],[-68.57913854748547,44.14614059879598],[-68.62221007540076,44.1126372708627],[-68.58272784147842,44.07140240571405],[-68.60067431144311,44.01212728706286],[-68.65810301533016,44.00353669015689],[-68.66887089730898,44.07655676385763],[-68.65810301533016,44.12036880807808],[-68.71912101321013,44.16589897167971],[-68.7334781891819,44.22087879187791],[-68.67963877928779,44.26469083609835],[-68.74783536515365,44.29905322372223],[-68.726299601196,44.32138877567775],[-68.76219254112542,44.32997937258372],[-68.82679983299833,44.31193911908118],[-68.82321053900539,44.40901286411864],[-68.78372830508305,44.4468114905049],[-68.78013901109011,44.48976447503474],[-68.80167477504774,44.52498592234922],[-68.83038912699126,44.46227456493564],[-68.88063924289243,44.42791217731177],[-68.92012147681477,44.456261147101465],[-68.94524653476535,44.428771237002366],[-68.99908594465944,44.425334998239975],[-68.94883582875829,44.355751163301626],[-68.9596037107371,44.314516298152974],[-69.00267523865239,44.294757925269245],[-69.02780029660296,44.24922776166761],[-69.05292535455355,44.171912389513885],[-69.09958617646177,44.10490573364733],[-69.03138959059591,44.079133942929424],[-69.07805041250413,44.05508027159271],[-69.04215747257473,44.006113869228685],[-69.07805041250413,43.973469600986],[-69.1749613503135,43.97690583974839],[-69.22162217222171,43.91505354202541],[-69.27546158211582,43.914194482334814],[-69.2826401701017,43.86436902028019],[-69.32212240402404,43.85663748306482],[-69.32212240402404,43.901308586975865],[-69.29699734607345,43.933093795527945],[-69.32930099200992,43.9459796908869],[-69.34006887398874,43.920207900169],[-69.38314040190401,43.909040124191236],[-69.37596181391814,43.96144276531765],[-69.42980122381223,43.95714746686466],[-69.4262119298193,43.91247636295362],[-69.48364063370633,43.88069115440154],[-69.50158710367104,43.83773816987169],[-69.54465863158632,43.88155021409214],[-69.55183721957219,43.84117440863408],[-69.60567662946629,43.813684498534975],[-69.64874815738158,43.8360200504905],[-69.6595160393604,43.7793221109111],[-69.69899827328273,43.824852274512736],[-69.75283768317684,43.744100663596626],[-69.83539144501445,43.720906051950514],[-69.85333791497915,43.70458391782917],[-69.86051650296503,43.75870467833678],[-69.8856415609156,43.77674493183931],[-69.92871308883089,43.7801811706017],[-69.98255249872498,43.744100663596626],[-70.00049896868968,43.71059733566335],[-70.07228484854848,43.714033574425734],[-70.09740990649907,43.67193964958649],[-70.16919578635786,43.675375888348874],[-70.20508872628726,43.63328196350963],[-70.21585660826608,43.590328978979784],[-70.19791013830138,43.56541624795247],[-70.2266244902449,43.53792633785337],[-70.27328531215312,43.562839068880685],[-70.3522497799978,43.53534915878158],[-70.38455342593426,43.49669147270472],[-70.36301766197661,43.43913447343473],[-70.39173201392013,43.40219490673906],[-70.42762495384953,43.38930901138011],[-70.41685707187072,43.36096004159041],[-70.46710718777187,43.34034260901608],[-70.51735730367304,43.343778847778474],[-70.55325024360243,43.32230235551355],[-70.59273247752478,43.23811450583505],[-70.57478600756008,43.22179237171371],[-70.62503612346123,43.15306759646596],[-70.6214468294683,43.13416828327283],[-70.67169694536945,43.070597866168654],[-70.70400059130591,43.059430090190894],[-70.81885799908,43.12300050729507],[-70.8296258810588,43.18828904378043],[-70.80809011710117,43.224369550785504],[-70.9552511708117,43.33432919118191],[-70.98755481674817,43.37985935478354],[-70.95884046480465,43.466624383533826],[-70.96242975879758,43.54136257661576],[-70.9731976407764,43.570570606096055],[-70.98755481674817,43.79220800627006],[-71.0090905807058,44.28530826867268],[-71.03062634466345,44.65556299531995],[-71.08446575455754,45.30587118110181],[-71.0090905807058,45.318757076460756],[-71.0090905807058,45.34710604625045],[-70.91935823088231,45.31188459893598],[-70.92294752487524,45.2792403306933],[-70.89782246692467,45.24230076399763],[-70.85834023300232,45.22941486863868],[-70.83321517505175,45.27494503224032],[-70.8116794110941,45.30243494233942],[-70.80450082310823,45.37631407573075],[-70.82603658706587,45.40036774706746],[-70.78296505915058,45.43129389592895],[-70.75425070720706,45.42871671685716],[-70.71117917929179,45.3909180904709],[-70.63580400544005,45.38318655325553],[-70.63221471144712,45.4166898811888],[-70.71835776727767,45.487991835508346],[-70.72194706127061,45.515481745607445],[-70.64298259342593,45.607401132501316],[-70.59273247752478,45.630595744147435],[-70.55325024360243,45.6675353108431],[-70.52453589165891,45.6666762511525],[-70.47069648176482,45.70189769846698],[-70.38455342593426,45.734541966709656],[-70.41685707187072,45.79553520474204],[-70.34148189801898,45.85223314432144],[-70.25892813618135,45.8908908303983],[-70.24098166621665,45.938998173071724],[-70.26610672416724,45.96305184440843],[-70.3163568400684,45.96305184440843],[-70.3163568400684,46.019749783987834],[-70.280463900139,46.05239405223052],[-70.30917825208252,46.06442088789887],[-70.25533884218842,46.108232932119314],[-70.23739237222372,46.14774967788677],[-70.29123178211782,46.185548304273034],[-70.23380307823078,46.28434016869168],[-70.20508872628726,46.299803243122426],[-70.2086780202802,46.331588451674506],[-70.14766002240022,46.35907836177361],[-70.09740990649907,46.40976288351883],[-70.05792767257672,46.4166353610436],[-70.02203473264733,46.573843284422836],[-69.99690967469675,46.694970700797],[-69.22521146621466,47.459533825428245],[-69.17855064430644,47.45695664635645],[-69.08163970649706,47.424312378113775],[-69.04215747257473,47.42774861687616],[-69.05292535455355,47.37792315482154],[-69.0493360605606,47.25679573844738],[-69.03497888458884,47.24133266401663],[-68.90217500685007,47.178621306603056],[-68.81244265702657,47.21556087329873],[-68.71912101321013,47.24133266401663],[-68.61862078140781,47.24305078339783],[-68.57913854748547,47.28772188730886],[-68.47145972769728,47.29717154390543],[-68.38172737787377,47.28686282761827],[-68.38172737787377,47.340124528435275],[-68.32429867398673,47.359882901319004],[-68.23456632416324,47.354728543175426],[-68.15201256232562,47.32380239431394],[-68.13765538635386,47.29631248421484],[-68.01920868458684,47.23789642525424],[-67.88999410084101,47.124500546095454],[-67.88999410084101,47.1116146507365],[-67.7894938690387,47.06780260651606],[-67.7894938690387,46.59961507514075],[-67.77872598705987,46.004286709557086],[-67.7823152810528,45.943293471524704],[-67.75001163511635,45.9175216808068],[-67.80385104501045,45.88401835287352],[-67.7536009291093,45.823884174531734],[-67.80744033900339,45.79467614505144],[-67.80385104501045,45.680421206202055],[-67.72129728317283,45.66238095269952],[-67.71052940119401,45.67956214651146],[-67.67463646126461,45.630595744147435],[-67.60643987539875,45.60654207281072],[-67.49876105561056,45.58678369992699],[-67.4485109397094,45.603105834048336],[-67.41979658776587,45.549844133231325],[-67.41620729377294,45.5017367905579],[-67.46286811568116,45.50860926808267],[-67.50235034960349,45.48970995488954],[-67.47722529165291,45.43129389592895],[-67.41979658776587,45.377173135421344],[-67.45210023370234,45.314461778007775],[-67.48799317363174,45.2792403306933],[-67.40543941179412,45.17958940658406],[-67.40543941179412,45.15983103370033],[-67.3408321199212,45.125468646076456],[-67.29417129801298,45.149522317413165],[-67.29058200402004,45.18903906318062],[-67.22597471214712,45.16326727246272],[-67.15777812628126,45.160690093390926],[-67.11111730437304,45.1125827507175],[-67.08958154041541,45.068770706497055],[-67.11829589235892,45.056743870828704],[-67.08240295242952,45.0292539607296],[-67.03933142451424,44.945066111051105],[-66.98549201462015,44.91242184280842],[-66.9819027206272,44.811052799317984],[-67.02497424854248,44.768099814788144],[-67.06086718847189,44.76981793416933],[-67.07522436444364,44.74232802407023],[-67.19008177221772,44.645254279032784],[-67.27622482804829,44.62377778676786],[-67.26186765207652,44.60487847357473],[-67.31570706197061,44.598005996049956],[-67.29417129801298,44.63408650305502],[-67.30852847398474,44.70710657675576],[-67.40543941179412,44.68133478603785],[-67.36236788387883,44.63150932398323],[-67.40543941179412,44.594569757287566],[-67.44492164571646,44.60573753326533],[-67.49158246762468,44.555912071210706],[-67.5382432895329,44.57137514564145],[-67.5741362294623,44.561066429354284],[-67.5669576414764,44.53099934018339],[-67.50952893758938,44.49663695255952],[-67.58849340543405,44.4476705501955],[-67.63515422734227,44.487187295962954],[-67.65668999129991,44.53615369832698],[-67.70335081320813,44.52756310142101],[-67.71411869518695,44.494918833178325],[-67.74283304713047,44.49749601225012],[-67.76795810508105,44.548180533995335],[-67.79308316303162,44.494918833178325],[-67.82538680896809,44.48289199750997],[-67.85410116091161,44.4193215804058],[-67.87922621886219,44.43564371452714],[-67.90076198281983,44.394408849378486],[-67.91511915879158,44.43048935638355],[-67.95819068670687,44.41502628195281]]],[[[-68.37095949589495,44.19338888177881],[-68.3207093799938,44.19940229961299],[-68.34583443794438,44.1693352104421],[-68.37095949589495,44.19338888177881]]],[[[-68.5001740796408,44.159885553845534],[-68.47504902169021,44.23118750816507],[-68.45351325773258,44.20197947868478],[-68.38531667186672,44.15473119570195],[-68.43915608176081,44.11607350962509],[-68.45710255172551,44.14528153910538],[-68.5001740796408,44.159885553845534]]],[[[-68.52888843158432,44.344583387323866],[-68.5181205496055,44.38066389432893],[-68.47863831568316,44.31967065629656],[-68.52888843158432,44.344583387323866]]],[[[-68.84115700897009,44.236341866308656],[-68.79090689306894,44.23805998568985],[-68.78013901109011,44.202838538375374],[-68.84115700897009,44.236341866308656]]],[[[-68.96678229872299,44.2518049407394],[-68.92012147681477,44.31022099969999],[-68.91294288882888,44.36520081989819],[-68.88063924289243,44.386677312163116],[-68.85910347893478,44.364341760207594],[-68.89140712487125,44.3342746710367],[-68.8878178308783,44.30334852217521],[-68.91653218282183,44.24321434383343],[-68.95242512275122,44.21830161280612],[-68.96678229872299,44.2518049407394]]],[[[-68.91294288882888,43.85320124430243],[-68.88422853688537,43.88498645285452],[-68.88063924289243,43.820556976059756],[-68.91294288882888,43.85320124430243]]],[[[-68.94524653476535,44.1126372708627],[-68.91653218282183,44.147858718177176],[-68.82679983299833,44.186516404254036],[-68.78731759907599,44.14356341972419],[-68.81962124501244,44.136690942199415],[-68.76937112911129,44.06968428633286],[-68.80885336303363,44.03618095839958],[-68.87346065490655,44.025013182421816],[-68.91653218282183,44.04563061499614],[-68.89858571285713,44.067107107261066],[-68.90935359483595,44.11006009179091],[-68.94524653476535,44.1126372708627]]]]},"properties":{"name":"Maine"},"id":"23"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-111.04766507195072,41.25196850117501],[-111.04766507195072,40.99768683275832],[-110.7138607306073,40.995968713377124],[-110.23648462954628,40.995109653686534],[-110.0498413419134,40.99768683275832],[-109.99959122601226,40.99768683275832],[-109.536572300923,40.99854589244892],[-109.04842831788318,41.00026401183011],[-109.04842831788318,40.66265355342553],[-109.05201761187611,40.50029127190271],[-109.05201761187611,40.22281499183991],[-109.05201761187611,39.66013089449894],[-109.05201761187611,39.497768612976124],[-109.05201761187611,39.366332480314796],[-109.05201761187611,38.905017426464255],[-109.05919619986199,38.719460533295326],[-109.05919619986199,38.500400312193115],[-109.05919619986199,38.27532667325673],[-109.04124972989729,38.153340197191966],[-109.04124972989729,37.881018275272744],[-109.04124972989729,37.53052192150921],[-109.04483902389023,37.48499175790757],[-109.04483902389023,36.998763973029725],[-109.6263046507465,36.99790491333913],[-109.99959122601226,36.99790491333913],[-110.46978873908739,36.99790491333913],[-110.49132450304502,37.0039183311733],[-110.7497536705367,37.003059271482705],[-111.34916576735766,37.00134115210152],[-112.53722207902078,37.00048209241092],[-112.89974077230772,37.00048209241092],[-113.33404534545345,37.00048209241092],[-114.05190414404143,37.00048209241092],[-114.05190414404143,37.60440105490054],[-114.0483148500485,37.76590427673276],[-114.05190414404143,37.99956851257512],[-114.0483148500485,38.14904489873898],[-114.05190414404143,38.57256132620326],[-114.0483148500485,38.677366608456076],[-114.0483148500485,39.54243971688716],[-114.0483148500485,39.905821966009654],[-114.0483148500485,40.117150649896494],[-114.04472555605555,40.23226464843648],[-114.04472555605555,40.771754134131335],[-114.04113626206261,41.00026401183011],[-114.04113626206261,41.99333701416013],[-113.82218932849328,41.988182656016555],[-113.00024100411004,41.99849137230372],[-112.19264985569855,42.0010685513755],[-112.16393550375503,41.99677325292252],[-112.11009609386093,41.99763231261312],[-111.50709470304703,41.999350431994316],[-111.04766507195072,42.0019276110661],[-111.04407577795777,41.580129302983025],[-111.04766507195072,41.25196850117501]]]},"properties":{"name":"Utah"},"id":"49"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.99981816168162,35.88112731556315],[-99.99981816168162,36.055516432754324],[-99.99981816168162,36.49965029279292],[-100.00340745567455,36.49965029279292],[-100.54539084860848,36.49965029279292],[-100.95457036380363,36.49965029279292],[-101.08378494754947,36.49965029279292],[-101.62217904649046,36.49965029279292],[-102.03135856168561,36.50050935248352],[-102.16416243942439,36.50050935248352],[-103.00405723377233,36.50050935248352],[-103.0004679397794,36.60273745566455],[-103.0004679397794,37.00048209241092],[-102.77793171221711,36.99962303272032],[-102.69896724437244,36.995327734267335],[-102.04212644366443,36.99275055519555],[-102.02776926769268,36.99275055519555],[-101.5539824606246,36.995327734267335],[-101.06583847758478,36.99790491333913],[-100.94380248182482,36.99790491333913],[-100.63153390443904,36.99962303272032],[-100.08955051150511,37.002200211792115],[-100.00340745567455,37.00134115210152],[-99.5403885305853,36.99962303272032],[-99.45783476874769,36.99962303272032],[-99.0019944316443,36.99962303272032],[-98.54615409454094,36.998763973029725],[-98.34874292492924,36.99790491333913],[-98.11184952139521,36.99790491333913],[-97.80317023800238,36.998763973029725],[-97.46218730867308,36.998763973029725],[-97.14632943729437,36.998763973029725],[-96.75150709807097,36.998763973029725],[-96.52538157651576,36.998763973029725],[-96.00134465354652,36.998763973029725],[-95.96545171361713,36.998763973029725],[-95.78598701397013,36.99962303272032],[-95.52396855248551,36.99962303272032],[-95.40911114471145,36.99962303272032],[-95.07171750937509,36.99962303272032],[-95.00711021750217,36.99962303272032],[-94.61946646626465,36.998763973029725],[-94.61946646626465,36.76681785656856],[-94.61946646626465,36.668025992149914],[-94.61946646626465,36.49965029279292],[-94.56203776237761,36.16203983438834],[-94.5512698803988,36.101905656046554],[-94.49384117651176,35.759140839498386],[-94.47230541255412,35.638872482814826],[-94.43641247262472,35.42840285861858],[-94.43282317863178,35.38630893377933],[-94.44718035460355,34.93358447683476],[-94.45435894258942,34.7291282704727],[-94.4615375305753,34.507490870298696],[-94.46871611856118,34.18963878477784],[-94.47589470654707,33.94051147450474],[-94.48666258852587,33.638122463414625],[-94.51896623446234,33.61664597114971],[-94.5871628203282,33.67935732856328],[-94.64459152421524,33.66818955258552],[-94.64818081820817,33.687947925469246],[-94.70919881608816,33.687088865778655],[-94.73791316803168,33.705988178971786],[-94.77380610796108,33.75495458133581],[-94.82764551785517,33.741209626286256],[-94.87071704577045,33.745504924739244],[-94.94609221962219,33.8125115806058],[-94.97121727757278,33.86233704266042],[-95.05018174541745,33.864055162041616],[-95.12196762527626,33.93106181790817],[-95.1542712712127,33.93707523574235],[-95.22964644506445,33.961128907079065],[-95.25477150301502,33.902712848118476],[-95.30861091290913,33.880377296162955],[-95.34091455884558,33.869209520185194],[-95.46295055460554,33.872645758947584],[-95.46295055460554,33.88553165430654],[-95.53832572845728,33.87951823647236],[-95.56345078640786,33.93192087759877],[-95.59934372633725,33.93449805667056],[-95.68548678216781,33.88982695275952],[-95.75727266202662,33.89240413183131],[-95.76086195601955,33.872645758947584],[-95.77162983799838,33.84343772946729],[-95.8003441899419,33.861477982969824],[-95.84700501185011,33.8408605503955],[-95.93673736167361,33.88724977368773],[-95.94032665566655,33.861477982969824],[-96.04800547545474,33.83656525194252],[-96.10184488534885,33.84773302792027],[-96.09825559135591,33.830551834108334],[-96.14850570725707,33.83742431163311],[-96.1772200592006,33.76010893947939],[-96.22747017510174,33.74808210381103],[-96.2956667609676,33.764404237932375],[-96.32079181891818,33.694820402994026],[-96.36386334683347,33.69224322392223],[-96.37822052280522,33.725746551855515],[-96.42847063870639,33.77900825267252],[-96.50384581255813,33.77385389452894],[-96.53256016450165,33.822820296892964],[-96.57204239842397,33.819384058130574],[-96.62947110231102,33.845155848848485],[-96.58998886838867,33.894981310903106],[-96.67613192421923,33.90872626595265],[-96.70484627616275,33.83484713256132],[-96.76945356803567,33.827115595345944],[-96.78381074400744,33.86319610235102],[-96.83047156591566,33.87522293801938],[-96.85200732987329,33.84687396822968],[-96.88431097580975,33.8683504604946],[-96.9058467397674,33.949961131101304],[-96.93456109171092,33.95425642955429],[-96.94532897368973,33.94910207141071],[-96.99557908959089,33.94910207141071],[-96.98481120761207,33.88639071399714],[-97.04223991149911,33.83742431163311],[-97.08890073340733,33.85374644575445],[-97.04941849948499,33.81766593874938],[-97.0960793213932,33.79876662555625],[-97.08531143941438,33.74378680535805],[-97.12479367333673,33.71715595494955],[-97.16427590725907,33.7291827906179],[-97.20734743517434,33.80993440153401],[-97.17145449524494,33.83570619225192],[-97.17863308323082,33.89240413183131],[-97.21093672916729,33.91645780316803],[-97.24682966909668,33.90013566904668],[-97.25400825708256,33.864055162041616],[-97.30066907899078,33.880377296162955],[-97.33297272492725,33.87436387832878],[-97.37245495884959,33.819384058130574],[-97.44424083870838,33.82367935658356],[-97.46218730867308,33.849451147301465],[-97.45859801468015,33.903571907809074],[-97.48372307263072,33.91559874347743],[-97.5626875404754,33.89755848997489],[-97.5985804804048,33.91817592254922],[-97.58781259842598,33.953397369863694],[-97.65600918429183,33.98947787686876],[-97.6883128302283,33.98690069779697],[-97.73138435814357,33.93707523574235],[-97.83547388393883,33.85804174420743],[-97.87854541185412,33.85031020699206],[-97.97904564365643,33.88982695275952],[-97.95392058570586,33.937934295432946],[-97.97186705567056,33.93707523574235],[-97.94674199771997,33.988618817178164],[-97.97186705567056,34.00580001099011],[-98.01852787757878,33.99377317532175],[-98.08672446344463,34.003222831918315],[-98.12261740337402,34.08139726376263],[-98.09390305143052,34.111464352933524],[-98.10826022740227,34.15441733746337],[-98.14056387333873,34.141531442104416],[-98.16927822528224,34.11404153200532],[-98.24106410514105,34.13294084519845],[-98.29490351503514,34.13294084519845],[-98.36310010090101,34.15699451653516],[-98.42411809878098,34.083974442834425],[-98.48513609666097,34.0624979505695],[-98.57127915249151,34.144967680866806],[-98.61076138641386,34.15699451653516],[-98.64665432634325,34.164726053750535],[-98.68972585425854,34.13294084519845],[-98.76510102811028,34.13637708396083],[-98.8117618500185,34.15871263591635],[-98.85842267192672,34.161289814988145],[-98.91944066980669,34.18190724756247],[-98.95174431574316,34.21283339642396],[-98.98763725567255,34.22142399332993],[-99.0450659595596,34.19822938168381],[-99.07736960549605,34.211115277042765],[-99.12044113341133,34.2016656204462],[-99.12761972139721,34.218846814258136],[-99.19222701327013,34.21626963518634],[-99.21017348323483,34.33653799186991],[-99.27478077510774,34.384645334543336],[-99.26042359913599,34.403544647736474],[-99.31785230302303,34.407839946189455],[-99.38245959489595,34.45680634855348],[-99.3968167708677,34.37777285701856],[-99.43988829878299,34.37433661825618],[-99.47578123871239,34.396672170211694],[-99.51885276662766,34.41471242371423],[-99.57987076450765,34.41643054309542],[-99.60140652846528,34.37433661825618],[-99.70908534825348,34.38722251361513],[-99.79522840408404,34.45422916948169],[-99.84547851998519,34.5066318106081],[-99.92803228182281,34.577074705237045],[-99.99622886768867,34.56075257111571],[-99.99981816168162,34.746309464284636],[-99.99981816168162,35.030658221872216],[-99.99981816168162,35.18271178710786],[-99.99981816168162,35.4223894407844],[-99.99981816168162,35.61911410993109],[-99.99981816168162,35.88112731556315]]]},"properties":{"name":"Oklahoma"},"id":"40"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-83.9879776591766,36.5898515603056],[-83.93054895528955,36.587274381233804],[-83.69006625776258,36.582979082780824],[-83.67570908179081,36.60101933628336],[-83.47111932419324,36.59758309752097],[-83.27729744857449,36.598442157211565],[-83.25935097860979,36.594146858758585],[-82.98656463514635,36.594146858758585],[-82.83222499344993,36.594146858758585],[-82.60968876588765,36.594146858758585],[-82.29383089450894,36.59586497813977],[-82.24358077860778,36.59586497813977],[-82.14666984079841,36.595005918449175],[-81.93490149521494,36.594146858758585],[-81.92413361323612,36.6164824107141],[-81.82722267542675,36.61390523164231],[-81.64775797577975,36.61218711226112],[-81.67647232772327,36.5881334409244],[-81.70877597365974,36.536589859488586],[-81.69441879768797,36.467865084240835],[-81.71595456164562,36.45755636795367],[-81.73031173761737,36.390549712087115],[-81.7051866796668,36.3381470709607],[-81.76620467754677,36.3381470709607],[-81.79491902949029,36.35790544384443],[-81.83440126341263,36.34759672755727],[-81.91695502525025,36.28746254921548],[-81.93131220122201,36.26512699725997],[-82.02822313903138,36.13025462583625],[-82.08206254892549,36.105341894808944],[-82.13231266482664,36.10620095449954],[-82.14666984079841,36.14915393902938],[-82.22204501465015,36.15688547624475],[-82.24717007260072,36.13111368552685],[-82.290241600516,36.135408983979836],[-82.35125959839598,36.117368730477295],[-82.4158668902689,36.07269762656626],[-82.45893841818418,36.00740909008089],[-82.5055992400924,35.97734200091001],[-82.5594386499865,35.95414738926389],[-82.6132780598806,35.971328583075824],[-82.60251017790178,36.040053358323576],[-82.6312245298453,36.06582514904149],[-82.74967123161231,36.0056909706997],[-82.8214571114711,35.9215031210212],[-82.85017146341463,35.948133971429705],[-82.89683228532284,35.94469773266732],[-82.91118946129461,35.92665747916479],[-82.90042157931579,35.87253671865718],[-82.94708240122401,35.824429375983755],[-82.96143957719578,35.79178510774107],[-82.99374322313223,35.77374485423854],[-83.07988627896279,35.78920792866928],[-83.15526145281453,35.76429519764197],[-83.18397580475805,35.72993281001809],[-83.25576168461684,35.71532879527795],[-83.25576168461684,35.69642948208482],[-83.31319038850388,35.655194616936164],[-83.34908332843328,35.66120803477034],[-83.36702979839798,35.638872482814826],[-83.44599426624266,35.61138257271572],[-83.48547650016499,35.56842958818588],[-83.58238743797438,35.562416170351696],[-83.60392320193202,35.57959736416363],[-83.66135190581906,35.569288647876476],[-83.7726200196002,35.562416170351696],[-83.82645942949429,35.523758484274836],[-83.88388813338133,35.51688600675006],[-83.91260248532485,35.47565114160141],[-83.9520847192472,35.46104712686126],[-83.95926330723307,35.46362430593305],[-84.02028130511304,35.40950354542545],[-84.00592412914129,35.37170491903918],[-84.03822777507774,35.350228426774265],[-84.02745989309892,35.29181236781367],[-84.09924577295773,35.247141263902634],[-84.19974600476004,35.243705025140244],[-84.21051388673887,35.266040577095765],[-84.28947835458354,35.22480571194711],[-84.29306764857648,35.20676545844458],[-84.32178200052,34.988564297032966],[-84.61969340193401,34.988564297032966],[-84.77762233762337,34.98770523734237],[-84.80992598355984,34.98770523734237],[-84.97862280122801,34.98770523734237],[-85.2657663206632,34.985128058270575],[-85.36267725847259,34.98340993888938],[-85.47394537225372,34.98340993888938],[-85.60674924999249,34.98426899857998],[-85.86517841748417,34.988564297032966],[-86.31025087260872,34.99114147610476],[-86.3174294605946,34.99114147610476],[-86.7840376796768,34.99200053579535],[-86.8378770895709,34.99200053579535],[-87.21116366483665,34.99887301332013],[-87.2255208408084,34.999732073010726],[-87.60598600406004,35.00402737146371],[-87.98645116731167,35.0057454908449],[-88.20180880688807,35.008322669916694],[-88.20180880688807,34.99543677455774],[-88.36332703657037,34.99543677455774],[-88.38127350653507,34.99543677455774],[-88.78686372773727,34.99543677455774],[-88.82275666766667,34.99543677455774],[-89.01657854328543,34.99457771486714],[-89.19963253692536,34.99457771486714],[-89.35397217862179,34.993718655176544],[-89.64470499204991,34.99543677455774],[-89.7236694598946,34.99543677455774],[-90.3087243807438,34.99543677455774],[-90.29795649876499,35.03753069939699],[-90.20822414894148,35.02636292341923],[-90.17592050300503,35.112268892478916],[-90.14361685706857,35.13460444443444],[-90.10054532915329,35.1165641909319],[-90.0646523892239,35.13804068319683],[-90.11849179911799,35.18786614525145],[-90.0754202712027,35.22480571194711],[-90.09695603516035,35.24971844297443],[-90.15079544505444,35.2557318608086],[-90.16515262102621,35.29610766626666],[-90.10772391713917,35.304698263172625],[-90.10772391713917,35.343355949249485],[-90.0754202712027,35.38373175470754],[-90.12925968109681,35.41379884387843],[-90.13643826908269,35.37685927718277],[-90.17950979699796,35.382013635326345],[-90.16874191501914,35.4215303810938],[-90.14002756307562,35.43613439583395],[-90.08618815318152,35.4790873803638],[-90.057473801238,35.40349012759127],[-90.05029521325213,35.407785426044256],[-90.01799156731568,35.46791960438604],[-90.05029521325213,35.50400011139111],[-90.03234874328743,35.55382557344573],[-90.00004509735096,35.5615571106611],[-89.92108062950629,35.51344976798767],[-89.91031274752747,35.53836249901499],[-89.95697356943569,35.58131548354483],[-89.94620568745687,35.601932916119154],[-89.85288404364043,35.63801342312423],[-89.86365192561925,35.670657691366905],[-89.90672345353452,35.65089931848318],[-89.93902709947099,35.66550333322333],[-89.96056286342863,35.723919392183916],[-89.90672345353452,35.759140839498386],[-89.87441980759807,35.74110058599585],[-89.81340180971809,35.75999989918898],[-89.78109816378164,35.804671003100026],[-89.7416159298593,35.80553006279062],[-89.70213369593695,35.83387903258032],[-89.77391957579576,35.86480518144181],[-89.7416159298593,35.90689910628106],[-89.65547287402873,35.88714073339733],[-89.64470499204991,35.90432192720927],[-89.65547287402873,35.92579841947419],[-89.72008016590165,35.967892344313434],[-89.73443734187342,36.00053661255612],[-89.69136581395813,36.02029498543985],[-89.68059793197932,36.08472446223462],[-89.60163346413464,36.11908684985849],[-89.59086558215581,36.15001299871998],[-89.63034781607816,36.18523444603446],[-89.7057229899299,36.23505990808908],[-89.69495510795107,36.25310016159161],[-89.58727628816288,36.23935520654206],[-89.53343687826877,36.252241101901014],[-89.53702617226172,36.27543571354713],[-89.61240134611346,36.30893904148041],[-89.61240134611346,36.340724250032494],[-89.5442047602476,36.33642895157951],[-89.5083118203182,36.37336851827518],[-89.5442047602476,36.4240530400204],[-89.51907970229702,36.479032860218595],[-89.54061546625466,36.497932173411726],[-89.48677605636055,36.49707311372113],[-89.49395464434645,36.47044226331263],[-89.44729382243823,36.46442884547845],[-89.4185794704947,36.498791233102324],[-89.3467935906359,36.50308653155531],[-89.30013276872768,36.50738183000829],[-88.99863207332074,36.502227471864714],[-88.83352454964549,36.50308653155531],[-88.82634596165961,36.50308653155531],[-88.81557807968079,36.50308653155531],[-88.51766667826678,36.501368412174116],[-88.48895232632326,36.501368412174116],[-88.05464775317753,36.49707311372113],[-88.03311198921989,36.552052933919335],[-88.06900492914929,36.67833470843708],[-87.85005799557995,36.663730693696934],[-87.85364728957289,36.63366360452604],[-87.69571835388354,36.637099843288425],[-87.64187894398944,36.63795890297902],[-87.33678895458954,36.64139514174141],[-87.11425272702726,36.64225420143201],[-87.06041331713317,36.64311326112261],[-86.76250191571916,36.64912667895678],[-86.59021580405803,36.65256291771917],[-86.56509074610746,36.63366360452604],[-86.50766204222042,36.65256291771917],[-86.41075110441103,36.65084479833798],[-86.20616134681346,36.63967702236022],[-85.97644653126531,36.62850924638246],[-85.78980324363243,36.621636768857684],[-85.48830254822548,36.614764291332904],[-85.43805243232433,36.618200530095294],[-85.29448067260672,36.625932067310664],[-85.27653420264203,36.62679112700126],[-84.97503350723507,36.6156233510235],[-84.78480092560925,36.60359651535515],[-84.77762233762337,36.60359651535515],[-84.54431822808228,36.59586497813977],[-84.26076400264002,36.59156967968679],[-84.22846035670356,36.59242873937739],[-83.9879776591766,36.5898515603056]]]},"properties":{"name":"Tennessee"},"id":"47"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-119.43225583945838,45.9183807404974],[-119.25638043380434,45.93985723276232],[-119.19536243592435,45.92783039709396],[-119.1271658500585,45.93298475523755],[-119.02666561825617,45.969065262242616],[-118.98718338433383,45.999991411104105],[-117.99653824228241,46.0008504707947],[-117.97859177231771,46.0008504707947],[-117.60171590305902,45.99913235141351],[-117.47967990729907,45.99827329172291],[-116.9161607504075,45.99569611265112],[-116.85873204652046,45.90377672575725],[-116.79412475464754,45.85652844277442],[-116.76182110871108,45.816152637316364],[-116.69721381683817,45.82044793576935],[-116.66132087690876,45.7800721303113],[-116.5931242910429,45.7783540109301],[-116.53569558715586,45.73711914578145],[-116.53569558715586,45.691588982179816],[-116.48903476524765,45.649495057340566],[-116.46390970729706,45.603105834048336],[-116.55005276312762,45.51032738746387],[-116.55364205712056,45.46307910448104],[-116.58953499704997,45.44332073159731],[-116.67567805288053,45.314461778007775],[-116.68644593485934,45.26807255471554],[-116.72951746277462,45.1400726608166],[-116.77617828468284,45.10571027319273],[-116.78335687266872,45.07822036309362],[-116.84796416454164,45.022381483204825],[-116.85873204652046,44.97856943898438],[-116.83360698856987,44.92874397692976],[-116.86591063450633,44.87032791796917],[-116.90180357443575,44.841119888488876],[-116.93051792637925,44.786999127981275],[-117.04537533415333,44.744905203142025],[-117.09562545005448,44.66501265191651],[-117.12433980199802,44.58168386192861],[-117.16023274192742,44.52498592234922],[-117.22484003380033,44.483751057200564],[-117.21407215182151,44.42705311762117],[-117.24278650376503,44.39612696875968],[-117.18894709387092,44.336851850108495],[-117.22125073980739,44.30163040279402],[-117.17100062390622,44.25867741826418],[-117.10280403804038,44.2801539105291],[-117.04537533415333,44.22946938878388],[-116.97358945429454,44.239778105071046],[-116.96641086630865,44.194247941469406],[-116.90180357443575,44.17964392672926],[-116.8982142804428,44.153013076320754],[-116.9341072203722,44.09975137550375],[-116.97717874828749,44.0851473607636],[-116.97358945429454,44.04906685375853],[-116.9341072203722,44.02157694365943],[-116.93769651436514,43.98463737696376],[-116.98076804228042,43.91505354202541],[-116.98076804228042,43.87983209471094],[-117.02025027620274,43.859214662136615],[-117.02742886418864,43.8085301403914],[-117.02742886418864,43.68053024649246],[-117.02742886418864,42.00020949168491],[-117.62325166701666,41.99849137230372],[-118.19753870588704,41.99677325292252],[-118.69645057090571,41.99161889477894],[-119.32457701967019,41.99419607385073],[-119.36046995959958,41.99419607385073],[-119.88809617656176,41.99763231261312],[-119.9993642903429,41.99505513354133],[-120.32957933769336,41.99333701416013],[-120.87874131861318,41.99419607385073],[-121.03667025430254,41.99333701416013],[-121.44584976949768,41.99677325292252],[-121.99860104441044,42.003645730447296],[-122.28933385783857,42.007941028900284],[-122.50110220342202,42.00880008859088],[-122.6339060811608,42.004504790137894],[-123.0466748903489,42.0027866707567],[-123.14717512215121,42.00965914828148],[-123.22972888398883,42.003645730447296],[-123.34817558575585,41.999350431994316],[-123.51687240342403,42.0010685513755],[-123.65685486914867,41.99505513354133],[-123.82196239282392,41.995914193231926],[-124.21319543805437,41.99849137230372],[-124.28857061190611,42.045739655286546],[-124.34241002180022,42.092987938269374],[-124.36753507975078,42.15226305692056],[-124.36035649176492,42.18061202671026],[-124.41060660766607,42.250195861648606],[-124.40342801968019,42.27768577174771],[-124.42855307763077,42.331806532255314],[-124.43573166561666,42.44004805327052],[-124.38907084370842,42.56632982778827],[-124.41419590165901,42.65824921468214],[-124.47521389953899,42.73298740776407],[-124.51469613346133,42.734705527145266],[-124.55417836738366,42.84036986908868],[-124.47880319353192,42.954624807938075],[-124.43573166561666,43.07145692585925],[-124.43573166561666,43.11612802977029],[-124.40342801968019,43.184852805018046],[-124.38189225572255,43.26989971438714],[-124.40342801968019,43.305980221392204],[-124.34241002180022,43.351510384993844],[-124.31369566985668,43.38844995168951],[-124.25626696596964,43.5018458308483],[-124.22037402604025,43.61094641155411],[-124.15935602816027,43.863509960589596],[-124.14140955819558,43.95800652655526],[-124.116284500245,44.171912389513885],[-124.116284500245,44.275858612076114],[-124.0803915603156,44.441657132361314],[-124.08398085430854,44.5009322510125],[-124.05885579635796,44.65899923408233],[-124.05885579635796,44.73803272561725],[-124.07680226632266,44.77153605355053],[-124.04808791437914,44.849710485394844],[-124.00501638646386,45.044717035160346],[-123.97630203452033,45.145227018960185],[-123.96194485854858,45.280099390383896],[-123.9727127405274,45.33679732996329],[-123.96194485854858,45.430434836238355],[-123.97630203452033,45.48970995488954],[-123.95835556455563,45.51032738746387],[-123.94040909459093,45.661521893008924],[-123.94399838858388,45.726810429494286],[-123.98348062250622,45.76203187680876],[-123.96912344653447,45.78350836907369],[-123.96912344653447,45.908072024210234],[-123.99424850448503,45.946729710287094],[-123.93681980059799,45.977655859148584],[-123.93323050660506,46.07129336542365],[-124.00142709247092,46.23709188570885],[-123.90451615466154,46.169226170151695],[-123.85426603876039,46.15719933448334],[-123.8650339207392,46.18984360272602],[-123.78248015890158,46.19843419963199],[-123.757355100951,46.21303821437213],[-123.71787286702866,46.188984543035424],[-123.67480133911339,46.215615393443926],[-123.62096192921928,46.215615393443926],[-123.54917604936048,46.25942743766437],[-123.47380087550874,46.26801803457034],[-123.42714005360054,46.22936034849348],[-123.43072934759347,46.182112065510644],[-123.3625327617276,46.14603155850558],[-123.27997899988999,46.14517249881498],[-123.21178241402413,46.17266240891408],[-123.16512159211592,46.188984543035424],[-123.11487147621474,46.185548304273034],[-122.90310313063131,46.083320201092],[-122.87797807268072,46.030917559965594],[-122.8133707808078,45.961333725027245],[-122.80978148681487,45.91236732266322],[-122.78465642886428,45.85051502494024],[-122.7954243108431,45.81013921948219],[-122.77029925289253,45.780931190001894],[-122.76312066490664,45.72852854887548],[-122.76312066490664,45.65636753486534],[-122.64467396313962,45.60997831157311],[-122.47956643946438,45.57991122240222],[-122.44008420554205,45.56358908828088],[-122.37906620766208,45.57561592394923],[-122.33240538575384,45.54812601385013],[-122.24985162391623,45.54812601385013],[-122.18524433204331,45.577334043330424],[-122.1026905702057,45.58334746116461],[-121.9232258705587,45.649495057340566],[-121.86579716667165,45.69330710156101],[-121.81195775677756,45.70705205661056],[-121.73658258292582,45.69416616125161],[-121.63249305713057,45.704474877538765],[-121.52481423734237,45.72509231011309],[-121.44226047550475,45.69760240001399],[-121.33817094970948,45.70533393722936],[-121.21613495394953,45.67097154960549],[-121.18383130801308,45.60654207281072],[-121.1335811921119,45.60997831157311],[-121.06538460624606,45.652931296102956],[-120.9433486104861,45.65636753486534],[-120.91463425854258,45.6409044604346],[-120.85720555465554,45.67183060929609],[-120.68850873698736,45.715642653516525],[-120.65261579705796,45.73711914578145],[-120.59159779917798,45.746568802378015],[-120.48391897938978,45.69416616125161],[-120.4049545115451,45.69932051939519],[-120.28291851578516,45.72165607135071],[-120.21113263592636,45.72595136980369],[-120.17165040200402,45.76203187680876],[-120.07115017020169,45.785226488454875],[-119.9993642903429,45.81271639855398],[-119.86656041260412,45.83591101020009],[-119.66914924299243,45.85652844277442],[-119.6224884210842,45.90549484513844],[-119.57223830518305,45.92525321802217],[-119.48609524935249,45.90635390482904],[-119.43225583945838,45.9183807404974]]]},"properties":{"name":"Oregon"},"id":"41"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-79.48700299202991,39.20568831817317],[-79.45111005210052,39.211701736007356],[-79.3326633503335,39.30018488413884],[-79.28959182241822,39.29932582444824],[-79.27164535245352,39.32939291361913],[-79.25369888248882,39.35688282371823],[-79.14243076870768,39.408426405154046],[-79.09576994679946,39.47285588194881],[-79.06705559485594,39.474574001330005],[-78.95578748107481,39.44021161370613],[-78.91630524715247,39.48660083699836],[-78.77991207542075,39.62233226811267],[-78.73325125351253,39.613741671206704],[-78.77991207542075,39.601714835538345],[-78.73325125351253,39.586251761107604],[-78.72607266552666,39.56391620915208],[-78.6578760796608,39.53470817967179],[-78.59326878778788,39.535567239362386],[-78.5681437298373,39.520104164931645],[-78.46764349803497,39.516667926169255],[-78.41739338213382,39.54931219441194],[-78.4425184400844,39.59140611925118],[-78.39585761817618,39.59054705956059],[-78.43533985209852,39.61803696965969],[-78.38508973619736,39.608587313063126],[-78.38150044220441,39.62920474563745],[-78.3348396202962,39.636077223162225],[-78.26664303443034,39.61889602935029],[-78.18408927259273,39.69535234181341],[-78.09794621676217,39.678171148001475],[-78.02257104291043,39.619755089040886],[-78.00821386693866,39.601714835538345],[-77.94360657506574,39.61889602935029],[-77.88258857718577,39.59913765646656],[-77.8323384612846,39.60257389522894],[-77.8323384612846,39.57078868667686],[-77.88976716517165,39.55790279131791],[-77.86105281322813,39.51409074709746],[-77.82515987329873,39.52955382152821],[-77.82515987329873,39.494332374213734],[-77.79644552135521,39.481446478854785],[-77.78567763937639,39.43505725556255],[-77.75337399343994,39.424748539275384],[-77.73542752347524,39.38780897257972],[-77.75696328743287,39.33368821207211],[-77.72107034750347,39.32166137640376],[-77.75337399343994,39.28300369032689],[-77.82874916729168,39.13266824447244],[-78.03333892488925,39.26496343682436],[-78.227160800508,39.39124521134211],[-78.34560750227502,39.46598340442404],[-78.35996467824678,39.412721703607026],[-78.34201820828208,39.38866803227032],[-78.36355397223971,39.35774188340883],[-78.33842891428914,39.34829222681226],[-78.42098267612675,39.25723189960899],[-78.39944691216913,39.24434600425003],[-78.43892914609145,39.1979567809578],[-78.40303620616206,39.16703063209631],[-78.4604649100491,39.1137689312793],[-78.50712573195732,39.088856200251996],[-78.54301867188671,39.05621193200931],[-78.57173302383023,39.0321582606726],[-78.55019725987259,39.01841330562305],[-78.60044737577375,38.96429254511544],[-78.62557243372433,38.98233279861798],[-78.67941184361844,38.92563485903858],[-78.71530478354784,38.905017426464255],[-78.71530478354784,38.935943575325744],[-78.79785854538545,38.87495033729336],[-78.86964442524425,38.76327257751577],[-78.99526971499715,38.850037606266056],[-79.05628771287712,38.761554458134576],[-79.08859135881359,38.72031959298592],[-79.09218065280652,38.65932635495354],[-79.12089500475004,38.66018541464414],[-79.2249845305453,38.478064760237594],[-79.31112758637586,38.411917164061634],[-79.47623511005109,38.45744732766327],[-79.53725310793108,38.55108483393833],[-79.64852122171222,38.59146063939639],[-79.69877133761338,38.48751441683416],[-79.68800345563456,38.43167553694536],[-79.73107498354983,38.38013195550955],[-79.81003945139452,38.30539376242762],[-79.79568227542275,38.26673607635076],[-79.83157521535215,38.24955488253882],[-79.92130756517565,38.17997104760047],[-79.94643262312623,38.13186370492704],[-79.92489685916858,38.106950973899735],[-79.960789799098,38.06399798936989],[-80.01103991499915,37.98582355752557],[-80.05770073690736,37.95232022959229],[-80.18332602666027,37.85266930548305],[-80.25870120051201,37.756454620136196],[-80.25152261252612,37.72552847127471],[-80.2945941404414,37.692025143341425],[-80.28023696446964,37.656803696026955],[-80.21921896658966,37.62759566654666],[-80.26229049450494,37.59323327892278],[-80.32689778637786,37.56402524944249],[-80.3304870803708,37.53653533934339],[-80.28382625846258,37.533099100581],[-80.29818343443434,37.50818636955369],[-80.4740588400884,37.42399851987519],[-80.49559460404603,37.43516629585295],[-80.5099517800178,37.48155551914518],[-80.55302330793307,37.47382398192981],[-80.62121989379894,37.43344817647176],[-80.76838094750947,37.372454938439375],[-80.78273812348124,37.3947904903949],[-80.85811329733298,37.42829381832818],[-80.85811329733298,37.429152878018776],[-80.88323835528355,37.383622714417136],[-80.85093470934709,37.34668314772147],[-80.91913129521295,37.306307342263416],[-80.98014929309292,37.29256238721386],[-80.98014929309292,37.30201204381043],[-81.1129531708317,37.27881743216432],[-81.22422128461284,37.23500538794387],[-81.32113222242222,37.29943486473864],[-81.36061445634456,37.3380925508155],[-81.38932880828808,37.32005229731297],[-81.4180431602316,37.272804014330134],[-81.50059692206922,37.25819999958999],[-81.5077755100551,37.23242820887208],[-81.55443633196332,37.20751547784477],[-81.67647232772327,37.2015020600106],[-81.73749032560325,37.23844162670626],[-81.74466891358914,37.26335435773357],[-81.78774044150441,37.28483084999849],[-81.85234773337733,37.287408029070285],[-81.8774727913279,37.33207913298132],[-81.92772290722907,37.35870998338983],[-81.93490149521494,37.43602535554355],[-81.98874090510905,37.45492466873668],[-81.99233019910199,37.48327363852638],[-81.92772290722907,37.51248166800667],[-81.96720514115141,37.537394399033985],[-82.01745525705256,37.533958160271595],[-82.11795548885489,37.55972995098951],[-82.12872337083371,37.591515159541586],[-82.15743772277723,37.592374219232184],[-82.1825627807278,37.62673660685606],[-82.21486642666426,37.62501848747487],[-82.23999148461485,37.661098994479936],[-82.29383089450894,37.6705486510765],[-82.33331312843129,37.74099154570545],[-82.34049171641716,37.78566264961649],[-82.37638465634656,37.80198478373783],[-82.42304547825478,37.85438742486424],[-82.41945618426183,37.88359545434454],[-82.47329559415594,37.899917588465875],[-82.49842065210652,37.945447752067516],[-82.46252771217712,37.980669199381985],[-82.51636712207122,37.99956851257512],[-82.54867076800768,38.06829328782287],[-82.58456370793708,38.106950973899735],[-82.63840311783117,38.138736182451815],[-82.63840311783117,38.1713804506945],[-82.60968876588765,38.1713804506945],[-82.60609947189472,38.24697770346703],[-82.57379582595826,38.26415889727897],[-82.57020653196531,38.31398435933359],[-82.59892088390883,38.34491050819508],[-82.5953315899159,38.4222258803488],[-82.55226006200061,38.403326567155666],[-82.50918853408534,38.41105810437104],[-82.40509900829008,38.439407074160734],[-82.32254524645246,38.4488567307573],[-82.30459877648777,38.49095065559655],[-82.28665230652307,38.58287004249042],[-82.2184557206572,38.59146063939639],[-82.17179489874898,38.61895054949549],[-82.1825627807278,38.70571557824577],[-82.2184557206572,38.79591684575845],[-82.14308054680546,38.84058794966949],[-82.14308054680546,38.89814494893948],[-82.10000901889019,38.958279127281266],[-82.02822313903138,39.02872202191021],[-81.98156231712316,38.99435963428633],[-81.94208008320084,38.99350057459574],[-81.89900855528555,38.92563485903858],[-81.92772290722907,38.90158118770187],[-81.90977643726437,38.87838657605575],[-81.85593702737027,38.892990590795904],[-81.84516914539145,38.92907109780097],[-81.81286549945499,38.94625229161291],[-81.78056185351853,38.924775799347984],[-81.76620467754677,39.020131425004244],[-81.80209761747618,39.04504415603155],[-81.81286549945499,39.08198372272722],[-81.74825820758207,39.09572867777677],[-81.75543679556796,39.18077558714587],[-81.72672244362444,39.21599703446034],[-81.69082950369503,39.2263057507475],[-81.68006162171622,39.27355403373033],[-81.56879350793507,39.26754061589615],[-81.55802562595626,39.3388425702157],[-81.46829327613275,39.40413110670106],[-81.4359896301963,39.408426405154046],[-81.37138233832339,39.34227880897809],[-81.27088210652106,39.386090853198525],[-81.20986410864109,39.3929633307233],[-81.17038187471874,39.439352554015535],[-81.12013175881758,39.45739280751807],[-81.10218528885288,39.48745989668896],[-81.03757799697996,39.539862537815374],[-80.94425635316352,39.60686919368193],[-80.8796490612906,39.620614148731484],[-80.86529188531885,39.69191610305102],[-80.83298823938239,39.721124132531315],[-80.86888117931178,39.75720463953639],[-80.82580965139651,39.79843950468504],[-80.82222035740357,39.84998308612086],[-80.78991671146711,39.867164279932794],[-80.80427388743887,39.91870786136861],[-80.75761306553065,39.909258204772044],[-80.76479165351654,39.95392930868308],[-80.73966659556595,39.971110502495016],[-80.73248800758007,40.032962800217994],[-80.73966659556595,40.07591578474784],[-80.7073629496295,40.101687575465746],[-80.70377365563655,40.15752645535455],[-80.68223789167891,40.185875425144246],[-80.65352353973539,40.24515054379543],[-80.61763059980599,40.26490891667916],[-80.5996841298413,40.32074779656796],[-80.60686271782717,40.36971419893198],[-80.62839848178481,40.394626929959294],[-80.59609483584836,40.463351705207046],[-80.62839848178481,40.53551271921719],[-80.66788071570716,40.582761002200016],[-80.63557706977069,40.6162643301333],[-80.58532695386954,40.6154052704427],[-80.52071966199662,40.63859988208881],[-80.52071966199662,40.4770966602566],[-80.51713036800368,40.39978128810287],[-80.52071966199662,40.15924457473574],[-80.52071966199662,40.016640666096656],[-80.52071966199662,39.96251990558905],[-80.51713036800368,39.8912179512695],[-80.52071966199662,39.721124132531315],[-80.4202194301943,39.721124132531315],[-79.91771827118271,39.721124132531315],[-79.7633786294863,39.721124132531315],[-79.47623511005109,39.721124132531315],[-79.48700299202991,39.20568831817317]]]},"properties":{"name":"West Virginia"},"id":"54"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-90.40922461254613,34.83307449303492],[-90.43793896448965,34.88461807447074],[-90.47742119841197,34.88633619385193],[-90.48459978639787,34.861423462824625],[-90.45588543445434,34.823624836438356],[-90.47383190441904,34.80214834417344],[-90.4522961404614,34.74029604645046],[-90.50254625636256,34.723973912329114],[-90.52049272632726,34.75318194180941],[-90.51331413834139,34.80214834417344],[-90.54920707827078,34.77895373252732],[-90.54202849028489,34.74888664335643],[-90.56715354823548,34.73685980768807],[-90.54561778427784,34.7024974200642],[-90.47383190441904,34.700779300683],[-90.46665331643317,34.674148450274494],[-90.51690343233432,34.63119546574465],[-90.55638566625666,34.646658540175395],[-90.55279637226371,34.688752465014645],[-90.58868931219311,34.67071221151211],[-90.58510001820018,34.64150418203182],[-90.58868931219311,34.615732391313905],[-90.54561778427784,34.5633297501875],[-90.57074284222841,34.52467206411063],[-90.58868931219311,34.496323094320935],[-90.56715354823548,34.42502114000139],[-90.65688589805897,34.37605473763737],[-90.65688589805897,34.32193397712977],[-90.69277883798837,34.322793036820364],[-90.68201095600956,34.369182260112595],[-90.75020754187541,34.368323200422],[-90.76815401184011,34.34512858877588],[-90.73943965989659,34.30647090269902],[-90.76456471784718,34.280699111981114],[-90.83276130371303,34.26781321662216],[-90.8471184796848,34.20681997858978],[-90.90454718357184,34.24375954528545],[-90.93685082950829,34.218846814258136],[-90.88660071360714,34.18190724756247],[-90.81481483374833,34.18276630725307],[-90.80763624576245,34.161289814988145],[-90.85429706767067,34.13723614365143],[-90.91172577155771,34.165585113441125],[-90.95479729947299,34.12005494983949],[-90.95479729947299,34.119195890148895],[-90.92249365353653,34.09428315912159],[-90.88301141961419,34.09686033819337],[-90.87224353763537,34.07624290561905],[-90.90095788957889,34.02384026449264],[-90.98710094540945,34.018685906349056],[-90.96197588745888,33.980028220272196],[-91.0014581213812,33.96628326522265],[-91.0194045913459,34.003222831918315],[-91.07683329523294,33.983464459034586],[-91.08760117721177,33.95855172800727],[-91.0086367093671,33.92934369852698],[-91.07324400124001,33.86233704266042],[-91.04811894328942,33.81508875967759],[-90.99069023940238,33.79275320772207],[-91.0265831793318,33.76354517824178],[-91.05529753127531,33.77900825267252],[-91.14144058710586,33.777290133291324],[-91.14502988109881,33.72660561154611],[-91.10913694116941,33.70427005959059],[-91.06247611926119,33.71629689525895],[-91.03376176731767,33.6733439107291],[-91.07683329523294,33.657880836298354],[-91.13426199911999,33.67678014949149],[-91.15938705707056,33.706847238662384],[-91.22040505495055,33.69310228361283],[-91.22758364293642,33.669048612276114],[-91.13785129311293,33.625236568055676],[-91.13067270512705,33.59688759826598],[-91.23117293692937,33.5616661509515],[-91.2168157609576,33.52902188270882],[-91.18451211502115,33.5075453904439],[-91.2347622309223,33.43882061519614],[-91.17015493904938,33.452565570245696],[-91.17374423304233,33.49637761446614],[-91.12349411714116,33.47318300282002],[-91.13785129311293,33.42679377952779],[-91.1988692909929,33.41820318262182],[-91.20963717297172,33.40188104850048],[-91.17374423304233,33.38126361592615],[-91.11272623516234,33.39329045159451],[-91.07683329523294,33.456001809008086],[-91.05888682526825,33.42851189890899],[-91.14144058710586,33.35119652675526],[-91.14144058710586,33.29621670655706],[-91.09836905919059,33.23780064759647],[-91.08760117721177,33.27388115460154],[-91.05170823728237,33.2850489305793],[-91.04452964929649,33.26529055769557],[-91.09119047120471,33.22061945378453],[-91.08401188321884,33.156189976989765],[-91.09477976519764,33.136431604106036],[-91.14502988109881,33.12955912658126],[-91.18451211502115,33.141585962249614],[-91.20245858498585,33.10808263431634],[-91.11990482314823,33.05482093349933],[-91.16656564505645,33.011008889278884],[-91.16656564505645,33.00413641175411],[-91.26347658286582,33.00499547144471],[-91.43576269452694,33.005854531135306],[-91.46088775247752,33.005854531135306],[-92.06747843728436,33.0084317102071],[-92.72431923799238,33.014445128041274],[-92.98992699346994,33.017022307113066],[-93.23758827898278,33.017881366803664],[-93.48883885848858,33.01874042649426],[-93.52114250442504,33.01874042649426],[-93.80469672986729,33.01959948618486],[-93.81546461184611,33.01959948618486],[-94.04159013340133,33.01959948618486],[-94.04159013340133,33.297934825938256],[-94.04159013340133,33.541907778067774],[-94.04517942739427,33.55135743466434],[-94.10260813128131,33.57025674785747],[-94.12414389523894,33.55221649435494],[-94.14209036520364,33.57798828507285],[-94.18516189311893,33.59259229981299],[-94.22464412704127,33.553075554045535],[-94.300019300893,33.57627016569165],[-94.31078718287182,33.55135743466434],[-94.33950153481534,33.56682050909509],[-94.35744800478004,33.54362589744897],[-94.39334094470944,33.55135743466434],[-94.38616235672356,33.58228358352583],[-94.41846600266003,33.57712922538225],[-94.45794823658237,33.59860571764717],[-94.45794823658237,33.644994940939405],[-94.48666258852587,33.638122463414625],[-94.47589470654707,33.94051147450474],[-94.46871611856118,34.18963878477784],[-94.4615375305753,34.507490870298696],[-94.45435894258942,34.7291282704727],[-94.44718035460355,34.93358447683476],[-94.43282317863178,35.38630893377933],[-94.43641247262472,35.42840285861858],[-94.47230541255412,35.638872482814826],[-94.49384117651176,35.759140839498386],[-94.5512698803988,36.101905656046554],[-94.56203776237761,36.16203983438834],[-94.61946646626465,36.49965029279292],[-94.07748307333073,36.498791233102324],[-93.86571472774727,36.498791233102324],[-93.58574979629796,36.498791233102324],[-93.31655274682747,36.498791233102324],[-93.29501698286983,36.497932173411726],[-92.85353382173821,36.497932173411726],[-92.7709800599006,36.497932173411726],[-92.53049736237362,36.498791233102324],[-92.15003219912198,36.498791233102324],[-92.12131784717847,36.498791233102324],[-91.67265609806098,36.49965029279292],[-91.4501198704987,36.497932173411726],[-91.40704834258342,36.49707311372113],[-91.12708341113411,36.497932173411726],[-90.78610048180481,36.498791233102324],[-90.5779214302143,36.498791233102324],[-90.2189920309203,36.497932173411726],[-90.15079544505444,36.497932173411726],[-90.13284897508974,36.436938935379345],[-90.14361685706857,36.4240530400204],[-90.0646523892239,36.38625441363413],[-90.0825988591886,36.27199947478474],[-90.11490250512504,36.26598605695057],[-90.12567038710387,36.229046490254895],[-90.19027767897678,36.2006975204652],[-90.2189920309203,36.18437538634386],[-90.236938500885,36.13970428243282],[-90.31949226272262,36.089878820378196],[-90.37692096660966,35.99538225441254],[-90.28718861678617,35.99624131410314],[-89.96056286342863,35.99881849317492],[-89.73443734187342,36.00053661255612],[-89.72008016590165,35.967892344313434],[-89.65547287402873,35.92579841947419],[-89.64470499204991,35.90432192720927],[-89.65547287402873,35.88714073339733],[-89.7416159298593,35.90689910628106],[-89.77391957579576,35.86480518144181],[-89.70213369593695,35.83387903258032],[-89.7416159298593,35.80553006279062],[-89.78109816378164,35.804671003100026],[-89.81340180971809,35.75999989918898],[-89.87441980759807,35.74110058599585],[-89.90672345353452,35.759140839498386],[-89.96056286342863,35.723919392183916],[-89.93902709947099,35.66550333322333],[-89.90672345353452,35.65089931848318],[-89.86365192561925,35.670657691366905],[-89.85288404364043,35.63801342312423],[-89.94620568745687,35.601932916119154],[-89.95697356943569,35.58131548354483],[-89.91031274752747,35.53836249901499],[-89.92108062950629,35.51344976798767],[-90.00004509735096,35.5615571106611],[-90.03234874328743,35.55382557344573],[-90.05029521325213,35.50400011139111],[-90.01799156731568,35.46791960438604],[-90.05029521325213,35.407785426044256],[-90.057473801238,35.40349012759127],[-90.08618815318152,35.4790873803638],[-90.14002756307562,35.43613439583395],[-90.16874191501914,35.4215303810938],[-90.17950979699796,35.382013635326345],[-90.13643826908269,35.37685927718277],[-90.12925968109681,35.41379884387843],[-90.0754202712027,35.38373175470754],[-90.10772391713917,35.343355949249485],[-90.10772391713917,35.304698263172625],[-90.16515262102621,35.29610766626666],[-90.15079544505444,35.2557318608086],[-90.09695603516035,35.24971844297443],[-90.0754202712027,35.22480571194711],[-90.11849179911799,35.18786614525145],[-90.0646523892239,35.13804068319683],[-90.10054532915329,35.1165641909319],[-90.14361685706857,35.13460444443444],[-90.17592050300503,35.112268892478916],[-90.20822414894148,35.02636292341923],[-90.29795649876499,35.03753069939699],[-90.3087243807438,34.99543677455774],[-90.24770638286383,34.94818849157491],[-90.24770638286383,34.90953080549805],[-90.31231367473674,34.87173217911179],[-90.30513508675087,34.86056440313403],[-90.34102802668026,34.86056440313403],[-90.40922461254613,34.83307449303492]]]},"properties":{"name":"Arkansas"},"id":"05"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-122.39701267762678,47.7782449706397],[-122.39342338363383,47.80745300011999],[-122.33958397373974,47.84696974588745],[-122.30728032780327,47.94919784906848],[-122.2283158599586,47.97067434133341],[-122.23190515395153,48.02994945998459],[-122.2821552698527,48.04970783286832],[-122.36470903169031,48.12358696625965],[-122.36111973769738,48.187157383363825],[-122.39701267762678,48.22839224851248],[-122.45085208752087,48.232687546965465],[-122.44008420554205,48.21207011439114],[-122.47956643946438,48.18801644305442],[-122.44367349953498,48.13045944378443],[-122.37906620766208,48.087506459254584],[-122.37547691366913,48.05743937008369],[-122.46879855748557,48.13045944378443],[-122.51187008540084,48.133895682546814],[-122.53699514335142,48.183721144601435],[-122.52981655536556,48.2498687407774],[-122.46520926349262,48.27048617335173],[-122.40419126561264,48.252445919849194],[-122.37906620766208,48.29797608345083],[-122.40778055960558,48.326325053240524],[-122.50828079140791,48.364982739317384],[-122.55494161331612,48.406217604466036],[-122.55135231932319,48.43972093239932],[-122.65544184511845,48.41137196260962],[-122.68056690306902,48.43972093239932],[-122.66620972709725,48.47837861847618],[-122.71287054900549,48.46377460373603],[-122.70210266702667,48.49727793166931],[-122.6159596111961,48.521331603006026],[-122.56929878928788,48.50844570764707],[-122.53699514335142,48.46635178280782],[-122.46879855748557,48.472365200641995],[-122.50469149741497,48.56514364722646],[-122.44367349953498,48.57029800537005],[-122.42572702957028,48.59950603485034],[-122.49033432144321,48.645036198451976],[-122.51904867338672,48.71290191400913],[-122.49033432144321,48.75070054039539],[-122.53699514335142,48.776472331113304],[-122.5980131412314,48.77131797296972],[-122.63749537515375,48.73609652565525],[-122.60519172921728,48.69829789926899],[-122.67338831508314,48.73266028689286],[-122.64467396313962,48.78162668925688],[-122.68056690306902,48.803103181521806],[-122.71287054900549,48.79107634585345],[-122.71645984299843,48.84691522574225],[-122.79183501685016,48.89330444903448],[-122.75235278292783,48.911344702537015],[-122.77029925289253,48.942270851398504],[-122.81696007480073,48.95601580644806],[-122.75953137091369,49.00240502974029],[-122.09910127621276,49.00240502974029],[-121.75093975889757,48.99725067159671],[-121.23049212992129,49.00154597004969],[-120.85002696666966,49.00068691035909],[-120.0352572302723,48.999827850668495],[-119.42866654546545,48.999827850668495],[-118.83643303663035,49.00068691035909],[-118.19753870588704,49.00068691035909],[-117.42942979139791,49.00068691035909],[-117.03101815818158,48.998968790977905],[-117.03101815818158,48.84691522574225],[-117.03460745217451,48.7498414807048],[-117.03460745217451,48.370996157151566],[-117.04178604016039,48.045412534415334],[-117.04178604016039,47.97754681885818],[-117.04178604016039,47.36589631915319],[-117.04178604016039,47.259372917519165],[-117.03819674616746,47.12707772516725],[-117.03819674616746,46.54205807587075],[-117.03819674616746,46.42608501764017],[-117.05255392213921,46.343615287342864],[-116.99153592425924,46.299803243122426],[-116.96282157231572,46.25341401983019],[-116.96282157231572,46.19929325932259],[-116.91975004440044,46.16493087169871],[-116.98076804228042,46.085038320473195],[-116.95564298432984,46.07558866387663],[-116.9161607504075,45.99569611265112],[-117.47967990729907,45.99827329172291],[-117.60171590305902,45.99913235141351],[-117.97859177231771,46.0008504707947],[-117.99653824228241,46.0008504707947],[-118.98718338433383,45.999991411104105],[-119.02666561825617,45.969065262242616],[-119.1271658500585,45.93298475523755],[-119.19536243592435,45.92783039709396],[-119.25638043380434,45.93985723276232],[-119.43225583945838,45.9183807404974],[-119.48609524935249,45.90635390482904],[-119.57223830518305,45.92525321802217],[-119.6224884210842,45.90549484513844],[-119.66914924299243,45.85652844277442],[-119.86656041260412,45.83591101020009],[-119.9993642903429,45.81271639855398],[-120.07115017020169,45.785226488454875],[-120.17165040200402,45.76203187680876],[-120.21113263592636,45.72595136980369],[-120.28291851578516,45.72165607135071],[-120.4049545115451,45.69932051939519],[-120.48391897938978,45.69416616125161],[-120.59159779917798,45.746568802378015],[-120.65261579705796,45.73711914578145],[-120.68850873698736,45.715642653516525],[-120.85720555465554,45.67183060929609],[-120.91463425854258,45.6409044604346],[-120.9433486104861,45.65636753486534],[-121.06538460624606,45.652931296102956],[-121.1335811921119,45.60997831157311],[-121.18383130801308,45.60654207281072],[-121.21613495394953,45.67097154960549],[-121.33817094970948,45.70533393722936],[-121.44226047550475,45.69760240001399],[-121.52481423734237,45.72509231011309],[-121.63249305713057,45.704474877538765],[-121.73658258292582,45.69416616125161],[-121.81195775677756,45.70705205661056],[-121.86579716667165,45.69330710156101],[-121.9232258705587,45.649495057340566],[-122.1026905702057,45.58334746116461],[-122.18524433204331,45.577334043330424],[-122.24985162391623,45.54812601385013],[-122.33240538575384,45.54812601385013],[-122.37906620766208,45.57561592394923],[-122.44008420554205,45.56358908828088],[-122.47956643946438,45.57991122240222],[-122.64467396313962,45.60997831157311],[-122.76312066490664,45.65636753486534],[-122.76312066490664,45.72852854887548],[-122.77029925289253,45.780931190001894],[-122.7954243108431,45.81013921948219],[-122.78465642886428,45.85051502494024],[-122.80978148681487,45.91236732266322],[-122.8133707808078,45.961333725027245],[-122.87797807268072,46.030917559965594],[-122.90310313063131,46.083320201092],[-123.11487147621474,46.185548304273034],[-123.16512159211592,46.188984543035424],[-123.21178241402413,46.17266240891408],[-123.27997899988999,46.14517249881498],[-123.3625327617276,46.14603155850558],[-123.43072934759347,46.182112065510644],[-123.42714005360054,46.22936034849348],[-123.47380087550874,46.26801803457034],[-123.54917604936048,46.25942743766437],[-123.67121204512044,46.26715897487974],[-123.68197992709926,46.296367004360036],[-123.72864074900748,46.28949452683526],[-123.76094439494395,46.27489051209511],[-123.80760521685215,46.28348110900108],[-123.87580180271803,46.23966906478064],[-123.90810544865448,46.24568248261482],[-123.98348062250622,46.30925289971899],[-124.01937356243562,46.316125377243765],[-124.0444986203862,46.27574957178571],[-124.0803915603156,46.26715897487974],[-124.05885579635796,46.38656827187271],[-124.05526650236501,46.493091673506726],[-124.06962367833677,46.63483652245522],[-124.02296285642856,46.582433881328804],[-124.03014144441443,46.496527912269116],[-124.01578426844267,46.37883673465734],[-123.9547662705627,46.37883673465734],[-123.95117697656976,46.41062194320943],[-123.98706991649917,46.4449843308333],[-123.98706991649917,46.49738697195971],[-123.94399838858388,46.465601763407626],[-123.89374827268273,46.53690371772717],[-123.96194485854858,46.63655464183641],[-123.92246262462623,46.67263514884148],[-123.83273027480274,46.71816531244312],[-123.89374827268273,46.7499505209952],[-123.91528403664036,46.72675590934909],[-123.97989132851328,46.72503778996789],[-123.96553415254152,46.705279417084164],[-124.02296285642856,46.708715655846554],[-124.09474873628736,46.746514282232816],[-124.0983380302803,46.793762565215644],[-124.13782026420263,46.90544032499324],[-124.10910591225911,46.91231280251802],[-124.08757014830147,46.86764169860698],[-124.04808791437914,46.89427254901548],[-123.86144462674626,46.94839330952309],[-123.89733756667566,46.9715879211692],[-124.01937356243562,46.99134629405293],[-124.0265521504215,47.03000398012979],[-124.12346308823088,47.04203081579815],[-124.1521774401744,47.02141338322382],[-124.12346308823088,46.9440980110701],[-124.1808917921179,46.92605775756757],[-124.1701239101391,46.95870202581025],[-124.18448108611085,47.135668322073215],[-124.23473120201201,47.28686282761827],[-124.32087425784258,47.355587602866024],[-124.35317790377903,47.53341295881958],[-124.37112437374373,47.59956055499554],[-124.42496378363782,47.73872822487224],[-124.47521389953899,47.76965437373373],[-124.48957107551075,47.81690265671656],[-124.5398211914119,47.836661029600286],[-124.5577676613766,47.863291880008795],[-124.6116070712707,47.88047307382073],[-124.66903577515774,47.982701177001765],[-124.69775012710127,48.06946620575205],[-124.69416083310833,48.11499636935368],[-124.73364306703067,48.163103712027116],[-124.69057153911538,48.21292917408174],[-124.65826789317893,48.33147941138411],[-124.72646447904478,48.370996157151566],[-124.71569659706597,48.3898954703447],[-124.65467859918598,48.390754530035295],[-124.5111068394684,48.34350624705246],[-124.39624943169432,48.28852642685426],[-124.36035649176492,48.287667367163664],[-124.27062414194141,48.25416403923038],[-124.24908837798378,48.264472755517545],[-124.10192732427323,48.21722447253472],[-124.10551661826617,48.20004327872278],[-123.97989132851328,48.164821831408304],[-123.77889086490865,48.15537217481174],[-123.70351569105691,48.1665399507895],[-123.59224757727577,48.13475474223741],[-123.5599439313393,48.15107687635876],[-123.52405099140991,48.13561380192801],[-123.43790793557935,48.14162721976219],[-123.39483640766406,48.114137309663086],[-123.24767535395353,48.11585542904428],[-123.13281794617944,48.17684866707666],[-123.14358582815828,48.156231234502336],[-123.0646213603136,48.12015072749727],[-123.039496302363,48.08149304142041],[-122.97847830448305,48.09609705616055],[-122.91746030660306,48.09180175770757],[-122.92822818858187,48.06517090729906],[-122.87797807268072,48.04713065379653],[-122.87438877868777,47.99644613205131],[-122.83849583875838,48.001600490194896],[-122.82772795677957,48.04713065379653],[-122.87797807268072,48.07633868327682],[-122.87797807268072,48.1107010709007],[-122.83490654476543,48.13475474223741],[-122.75953137091369,48.14334533914338],[-122.74876348893488,48.11671448873488],[-122.80260289882898,48.087506459254584],[-122.76670995889958,48.04455347472474],[-122.741584900949,48.04970783286832],[-122.73440631296313,48.090942698016974],[-122.69851337303372,48.10296953368533],[-122.6697990210902,48.01706356462564],[-122.7236384309843,48.00847296771967],[-122.68415619706195,47.9723924607146],[-122.65544184511845,47.90538580484804],[-122.60878102321023,47.887345551345504],[-122.63749537515375,47.86586905908058],[-122.69492407904079,47.867587178461775],[-122.6877454910549,47.83150667145671],[-122.74876348893488,47.80058052259522],[-122.78106713487134,47.70350677755777],[-122.8313172507725,47.69577524034239],[-122.79183501685016,47.79284898537985],[-122.8133707808078,47.80745300011999],[-122.88156736667366,47.720687971369706],[-122.89592454264542,47.67515780776807],[-122.97847830448305,47.606433032520314],[-123.10769288822888,47.45781570604705],[-123.15435371013709,47.355587602866024],[-123.11128218222181,47.3624600803908],[-123.0287284203842,47.351292304413036],[-122.98565689246891,47.374486916059155],[-122.91028171861717,47.3890909307993],[-122.89951383663836,47.42173519904198],[-123.05744277232772,47.36847349822497],[-123.11846077020769,47.39166810987109],[-123.01796053840538,47.52052706346063],[-122.96771042250421,47.58581559994599],[-122.85644230872308,47.64938601705016],[-122.75235278292783,47.67343968838688],[-122.741584900949,47.73615104580045],[-122.68415619706195,47.798862403214024],[-122.57288808328082,47.85727846217461],[-122.60519172921728,47.940607252162515],[-122.52622726137261,47.906244864538635],[-122.47597714547145,47.74560070239701],[-122.55494161331612,47.74560070239701],[-122.54417373133731,47.71123831477314],[-122.50469149741497,47.69921147910478],[-122.51904867338672,47.65110413643136],[-122.49392361543615,47.63478200231002],[-122.49392361543615,47.58925183870838],[-122.54417373133731,47.556607570465694],[-122.54776302533026,47.52396330222302],[-122.49392361543615,47.51021834717346],[-122.52981655536556,47.46898348202481],[-122.54776302533026,47.40369494553945],[-122.53699514335142,47.37620503544035],[-122.57288808328082,47.32723863307632],[-122.54776302533026,47.28514470823708],[-122.60160243522435,47.21727899267992],[-122.69851337303372,47.28428564854648],[-122.6697990210902,47.366755378843784],[-122.72722772497724,47.33067487183871],[-122.74876348893488,47.27655411133111],[-122.6410846691467,47.205252157011564],[-122.67697760907609,47.19150720196201],[-122.67338831508314,47.15027233681336],[-122.71287054900549,47.12793678485784],[-122.77029925289253,47.1674535306253],[-122.84208513275132,47.25765479813797],[-122.79901360483603,47.28944000669006],[-122.80260289882898,47.35301042379423],[-122.86362089670897,47.270540693496926],[-122.83849583875838,47.20868839577395],[-122.86003160271602,47.1674535306253],[-122.8133707808078,47.17948036629365],[-122.77388854688546,47.12278242671426],[-122.69492407904079,47.10388311352113],[-122.63749537515375,47.135668322073215],[-122.63749537515375,47.16401729186291],[-122.59083455324551,47.17776224691246],[-122.56212020130201,47.24562796246962],[-122.52622726137261,47.29115812607125],[-122.53340584935849,47.316929916789164],[-122.44367349953498,47.26710445473454],[-122.40778055960558,47.28858094699946],[-122.44367349953498,47.30060778266782],[-122.4185484415844,47.32036615555155],[-122.32522679776797,47.34871512534124],[-122.32522679776797,47.39166810987109],[-122.35394114971149,47.44149357192571],[-122.38265550165501,47.45094322852228],[-122.36111973769738,47.48101031769317],[-122.39701267762678,47.51537270531705],[-122.42213773557735,47.57636594334942],[-122.34317326773267,47.60901021159211],[-122.42931632356323,47.65883567364673],[-122.37188761967619,47.729278568275674],[-122.39701267762678,47.7782449706397]]],[[[-122.52622726137261,47.35902384162841],[-122.51187008540084,47.44922510914108],[-122.47597714547145,47.51107740686406],[-122.43290561755617,47.46640630295302],[-122.44008420554205,47.4165808408984],[-122.37188761967619,47.3890909307993],[-122.4364949115491,47.36589631915319],[-122.45444138151382,47.343560767197665],[-122.51904867338672,47.3332520509105],[-122.52622726137261,47.35902384162841]]],[[[-122.6518525511255,48.548821513105125],[-122.6518525511255,48.583183900729],[-122.5800666712667,48.54796245341453],[-122.6410846691467,48.525626901459006],[-122.6518525511255,48.548821513105125]]],[[[-122.741584900949,48.584042960419595],[-122.71287054900549,48.60895569144691],[-122.6697990210902,48.568579885988854],[-122.7236384309843,48.54023091619916],[-122.741584900949,48.584042960419595]]],[[[-122.97847830448305,48.79365352492524],[-122.9389960705607,48.79021728616286],[-122.81696007480073,48.74468712256122],[-122.84567442674427,48.737814645036444],[-122.92463889458894,48.75499583884838],[-122.97847830448305,48.79365352492524]]],[[[-123.07179994829949,48.70001601865018],[-123.0107819504195,48.722351570605696],[-123.00360336243361,48.694002600816],[-123.07179994829949,48.70001601865018]]],[[[-123.20460382603825,48.59606979608795],[-123.17947876808768,48.62184158680586],[-123.10769288822888,48.622700646496455],[-123.10051430024299,48.59778791546915],[-123.0466748903489,48.56943894567945],[-122.98565689246891,48.56170740846407],[-123.05026418434184,48.62098252711527],[-122.91746030660306,48.71376097369973],[-122.87438877868777,48.71204285431853],[-122.741584900949,48.66221739226391],[-122.80978148681487,48.61926440773407],[-122.77029925289253,48.56256646815467],[-122.7774778408784,48.50930476733767],[-122.81696007480073,48.487828275072744],[-122.80260289882898,48.42855315642156],[-122.87438877868777,48.418244440134394],[-122.92822818858187,48.46119742466424],[-122.96053183451833,48.45088870837708],[-123.039496302363,48.460338364973644],[-123.15076441614416,48.51360006579065],[-123.17230018010179,48.57888860227602],[-123.20460382603825,48.59606979608795]]],[[[-123.23690747197472,48.68884824267242],[-123.17230018010179,48.68025764576645],[-123.10769288822888,48.633868422474215],[-123.21537170801707,48.66908986978869],[-123.23690747197472,48.68884824267242]]],[[[-122.7236384309843,48.73180122720226],[-122.70210266702667,48.74382806287062],[-122.60878102321023,48.645036198451976],[-122.67338831508314,48.68111670545704],[-122.7236384309843,48.73180122720226]]],[[[-123.08974641826418,49.00240502974029],[-123.03590700837007,49.00240502974029],[-123.0215498323983,48.97749229871298],[-123.0825678302783,48.975774179331786],[-123.08974641826418,49.00240502974029]]],[[[-122.77029925289253,48.22753318882188],[-122.7236384309843,48.303989501285],[-122.67338831508314,48.35467402303022],[-122.66620972709725,48.401922306013056],[-122.60878102321023,48.41137196260962],[-122.58365596525965,48.395049828488276],[-122.58365596525965,48.352955903649026],[-122.51545937939379,48.32031163540635],[-122.50469149741497,48.29797608345083],[-122.55853090730906,48.28165394932949],[-122.61954890518905,48.29453984468844],[-122.623138199182,48.26962711366113],[-122.6697990210902,48.240419084180836],[-122.72004913699136,48.23440566634665],[-122.70928125501254,48.21378823377233],[-122.62672749317493,48.2223788306783],[-122.58724525925258,48.18629832367323],[-122.55853090730906,48.114137309663086],[-122.57288808328082,48.102110473994735],[-122.53699514335142,48.01620450493504],[-122.50828079140791,48.03939911658116],[-122.52622726137261,48.09695611585115],[-122.49033432144321,48.09437893677936],[-122.43290561755617,48.045412534415334],[-122.37547691366913,48.03424475843757],[-122.35035185571854,47.95349314752147],[-122.37906620766208,47.90366768546685],[-122.42931632356323,47.9148354614446],[-122.47238785147852,47.98871459483594],[-122.54776302533026,47.96723810257102],[-122.54058443734436,47.99300989328893],[-122.60878102321023,48.03080851967519],[-122.5980131412314,48.1107010709007],[-122.6159596111961,48.15880841357413],[-122.68056690306902,48.15537217481174],[-122.69133478504784,48.18114396552965],[-122.77029925289253,48.22753318882188]]]]},"properties":{"name":"Washington"},"id":"53"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-79.13884147471474,36.54174421763217],[-78.79785854538545,36.54174421763217],[-78.73325125351253,36.54174421763217],[-78.45687561605615,36.54260327732277],[-78.32407173831739,36.543462337013366],[-78.047696100861,36.544321396703964],[-77.90053504715047,36.544321396703964],[-77.76773116941169,36.545180456394554],[-77.29753365633655,36.544321396703964],[-77.16472977859779,36.54603951608515],[-76.91706849308493,36.543462337013366],[-76.91706849308493,36.552052933919335],[-76.54019262382623,36.55033481453814],[-76.48994250792508,36.55033481453814],[-76.31406710227103,36.55033481453814],[-76.1238345206452,36.55033481453814],[-75.86540535315353,36.55033481453814],[-75.85822676516764,36.50050935248352],[-75.79720876728767,36.290039728287276],[-75.7720837093371,36.23162366932669],[-75.73978006340063,36.15430829717297],[-75.65722630156301,36.02029498543985],[-75.53160101181011,35.78748980928809],[-75.56390465774658,35.79951664495644],[-75.6285119496195,35.92493935978359],[-75.67876206552066,35.993664135031345],[-75.72542288742888,36.00311379162791],[-75.75772653336533,36.15259017779177],[-75.79361947329473,36.2273283708737],[-75.81515523725237,36.285744429834295],[-75.84386958919589,36.305502802718024],[-75.83310170721707,36.3390061306513],[-75.85104817718177,36.41546244311443],[-75.88694111711116,36.44123423383233],[-75.90129829308293,36.482469098980985],[-75.99103064290642,36.493636874958746],[-75.99461993689937,36.52799926258262],[-76.04128075880759,36.51081806877068],[-76.01974499484994,36.45841542764427],[-75.9623162909629,36.417180562495616],[-75.92283405704057,36.425771159401584],[-75.92283405704057,36.36821416013159],[-75.86899464714647,36.252241101901014],[-75.83669100121001,36.1998384607746],[-75.84028029520294,36.17750290881908],[-75.80079806128062,36.113073432024315],[-75.80079806128062,36.07269762656626],[-75.86899464714647,36.12767744676446],[-75.86540535315353,36.159462655316545],[-75.91206617506175,36.21186529644296],[-75.92283405704057,36.24450956468564],[-75.95872699696997,36.255677340663404],[-75.95513770297703,36.198120341393405],[-75.90488758707586,36.16461701346013],[-76.01615570085701,36.186093505725054],[-76.13101310863108,36.28746254921548],[-76.18485251852519,36.29261690735907],[-76.14895957859578,36.26426793756937],[-76.11665593265933,36.21444247551475],[-76.08076299272993,36.1998384607746],[-76.05922722877229,36.155167356863565],[-76.09153087470874,36.135408983979836],[-76.1776739305393,36.12338214831148],[-76.25304910439104,36.18437538634386],[-76.27458486834868,36.18867068479684],[-76.22792404644046,36.13025462583625],[-76.19203110651107,36.10706001419013],[-76.21715616446164,36.09503317852178],[-76.32842427824278,36.13369086459864],[-76.375085100151,36.13798616305162],[-76.3930315701157,36.162898894078936],[-76.45763886198861,36.18351632665326],[-76.375085100151,36.120804969239686],[-76.29970992629926,36.10104659635596],[-76.32483498424985,36.08472446223462],[-76.4109780400804,36.07527480563805],[-76.45763886198861,36.024590283892834],[-76.51506756587565,36.0056909706997],[-76.57608556375564,36.0065500303903],[-76.60479991569916,36.0331808807988],[-76.67658579555795,36.043489597085966],[-76.71965732347323,36.14743581964819],[-76.71965732347323,36.1998384607746],[-76.67658579555795,36.26684511664116],[-76.69094297152971,36.27715383292832],[-76.71965732347323,36.243650504995045],[-76.74478238142382,36.212724356133556],[-76.7519609694097,36.14743581964819],[-76.72324661746617,36.066684208732084],[-76.68376438354383,36.00053661255612],[-76.69094297152971,35.94469773266732],[-76.67299650156501,35.935248076070756],[-76.52942474184742,35.943838672976725],[-76.39662086410864,35.98421447843478],[-76.36431721817218,35.94469773266732],[-76.31765639626396,35.947274911739115],[-76.27099557435574,35.97304670245702],[-76.1776739305393,35.993664135031345],[-76.06281652276523,35.99280507534075],[-76.01256640686407,35.95758362802627],[-76.01256640686407,35.920644061330606],[-76.06281652276523,35.85363740546405],[-76.05204864078641,35.80638912248122],[-76.04487005280052,35.66550333322333],[-76.01256640686407,35.66893957198571],[-75.98744134891349,35.76859049609495],[-75.97667346693467,35.897449449684494],[-75.9264233510335,35.931811837308366],[-75.94795911499115,35.96016080709806],[-75.89770899908999,35.97734200091001],[-75.8079766492665,35.959301747407466],[-75.75054794537945,35.878550136491356],[-75.72542288742888,35.82271125660256],[-75.73978006340063,35.778040152691524],[-75.71465500545006,35.693852303013024],[-75.74336935739358,35.6723758107481],[-75.72901218142181,35.62598658745587],[-75.77567300333003,35.57959736416363],[-75.83669100121001,35.571006767257664],[-75.86899464714647,35.58303360292602],[-75.91565546905468,35.53836249901499],[-75.95154840898408,35.53063096179961],[-75.9623162909629,35.493691395103944],[-75.98744134891349,35.48424173850738],[-76.01256640686407,35.423248500475],[-76.05922722877229,35.41036260511604],[-76.06999511075111,35.370845859348584],[-76.13101310863108,35.34936936708367],[-76.1417809906099,35.32875193450934],[-76.23510263442634,35.350228426774265],[-76.3391921602216,35.346792188011875],[-76.43251380403804,35.362255262442616],[-76.45046027400274,35.38373175470754],[-76.48635321393213,35.37170491903918],[-76.54019262382623,35.41036260511604],[-76.58685344573445,35.50915446953469],[-76.47558533195331,35.51173164860648],[-76.46840674396744,35.55554369282692],[-76.4827639199392,35.53836249901499],[-76.55813909379094,35.52891284241842],[-76.60121062170622,35.53836249901499],[-76.63351426764268,35.51001352922528],[-76.60121062170622,35.46104712686126],[-76.57967485774857,35.38716799346993],[-76.60479991569916,35.38716799346993],[-76.7088894414944,35.427543798927985],[-76.75913955739557,35.41895320202202],[-76.83092543725436,35.44816123150231],[-76.9421935510355,35.473933022220216],[-77.02474731287313,35.51516788736887],[-77.02833660686606,35.490255156341554],[-76.96731860898609,35.43785251521515],[-76.89194343513435,35.43355721676216],[-76.66581791357913,35.34593312832128],[-76.60838920969209,35.33734253141531],[-76.5007103899039,35.32187945698456],[-76.47199603796038,35.29524860657606],[-76.46840674396744,35.26088621895218],[-76.49353180191801,35.212778876278755],[-76.54019262382623,35.166389652986524],[-76.5366033298333,35.14233598164981],[-76.56890697576975,35.096805818048175],[-76.62274638566386,35.06072531104311],[-76.80221108531084,34.96451062569625],[-76.96014002100021,35.04783941568415],[-76.98885437294372,35.04526223661236],[-76.97808649096491,35.004886431154304],[-76.89194343513435,34.957638148171476],[-76.76272885138852,34.92069858147581],[-76.68376438354383,34.962792506315054],[-76.63351426764268,34.98942335672356],[-76.58685344573445,34.99114147610476],[-76.48994250792508,35.01691326682266],[-76.47558533195331,35.07017496763967],[-76.43610309803098,35.058148131971315],[-76.42533521605216,35.00145019239192],[-76.39662086410864,34.97481934198341],[-76.33201357223572,34.97052404353043],[-76.36431721817218,35.034953520325196],[-76.29253133831338,35.01004078929789],[-76.2853527503275,34.93702071559715],[-76.34637074820748,34.87259123880238],[-76.4109780400804,34.861423462824625],[-76.4109780400804,34.83221543334433],[-76.45046027400274,34.81503423953239],[-76.5007103899039,34.74287322552225],[-76.52583544785448,34.68187998748987],[-76.58685344573445,34.69906118130181],[-76.58326415174152,34.76778595654956],[-76.61915709167091,34.7841080906709],[-76.61556779767797,34.71366519604195],[-76.67299650156501,34.707651778207776],[-76.52224615386153,34.65267195800958],[-76.43969239202391,34.758336299952994],[-76.3212456902569,34.861423462824625],[-76.23510263442634,34.92585293961939],[-76.06640581675816,35.077047445164446],[-76.03769146481464,35.05900719166191],[-76.13819169661696,34.98770523734237],[-76.23151334043341,34.90523550704506],[-76.31047780827808,34.85197380622806],[-76.38585298212982,34.784967150361496],[-76.45046027400274,34.71452425573255],[-76.52583544785448,34.615732391313905],[-76.5366033298333,34.588242481214806],[-76.55096050580505,34.6457994804848],[-76.67658579555795,34.69304776346763],[-76.81656826128261,34.69390682315822],[-77.03192590085901,34.661262554915545],[-77.10730107471075,34.64064512234122],[-77.17549766057661,34.619168630076295],[-77.32265871428714,34.53583984008839],[-77.4626411800118,34.47141036329363],[-77.5164805899059,34.44048421443214],[-77.58108788177881,34.400108408974084],[-77.71030246552465,34.29702124610245],[-77.76414187541876,34.24461860497605],[-77.82874916729168,34.16300793436934],[-77.87899928319283,34.06765230871308],[-77.93642798707987,33.92934369852698],[-77.96155304503044,33.852887386063856],[-78.00821386693866,33.85890080389803],[-78.01898174891748,33.888108833378325],[-78.09435692276922,33.906149086880866],[-78.17691068460684,33.91388062409624],[-78.27741091640917,33.91216250471504],[-78.38508973619736,33.90185378842788],[-78.51071502595026,33.86577328142281],[-78.53942937789378,33.85116926668266],[-78.65069749167492,33.94394771326713],[-79.07064488884889,34.299598425174246],[-79.24652029450294,34.44563857257572],[-79.35778840828408,34.54528949668496],[-79.45111005210052,34.62088674945749],[-79.46187793407934,34.630336406054056],[-79.67364627966279,34.804725523245224],[-79.69159274962749,34.804725523245224],[-79.92848615316153,34.80644364262642],[-80.31971919839198,34.81417517984179],[-80.56020189591895,34.81761141860418],[-80.79709529945299,34.82018859767597],[-80.78273812348124,34.93616165590655],[-80.84016682736826,35.00145019239192],[-80.9047741192412,35.07618838547385],[-80.9334884711847,35.10711453433534],[-81.04116729097291,35.04440317692176],[-81.0591137609376,35.062443430424295],[-81.03398870298703,35.10367829557295],[-81.04116729097291,35.14920845917459],[-81.3283108104081,35.16381247391473],[-81.36779304433044,35.16467153360533],[-81.76979397153971,35.18013460803608],[-81.87388349733497,35.18442990648906],[-81.97079443514434,35.18700708556085],[-82.21486642666426,35.196456742157416],[-82.35484889238892,35.19216144370443],[-82.39074183231833,35.21535605535055],[-82.4338133602336,35.17068495143951],[-82.45893841818418,35.17841648865488],[-82.57379582595826,35.144054101031],[-82.65634958779587,35.119141370003696],[-82.76402840758408,35.06845684825848],[-82.78197487754878,35.085638042070414],[-82.89683228532284,35.05643001259012],[-83.008100399104,35.027221983109825],[-83.10860063090631,35.000591132701324],[-83.48188720617206,34.993718655176544],[-83.55008379203792,34.992859595485946],[-83.61828037790377,34.98684617765177],[-83.93772754327543,34.98770523734237],[-84.00592412914129,34.98770523734237],[-84.12796012490125,34.98770523734237],[-84.32178200052,34.988564297032966],[-84.29306764857648,35.20676545844458],[-84.28947835458354,35.22480571194711],[-84.21051388673887,35.266040577095765],[-84.19974600476004,35.243705025140244],[-84.09924577295773,35.247141263902634],[-84.02745989309892,35.29181236781367],[-84.03822777507774,35.350228426774265],[-84.00592412914129,35.37170491903918],[-84.02028130511304,35.40950354542545],[-83.95926330723307,35.46362430593305],[-83.9520847192472,35.46104712686126],[-83.91260248532485,35.47565114160141],[-83.88388813338133,35.51688600675006],[-83.82645942949429,35.523758484274836],[-83.7726200196002,35.562416170351696],[-83.66135190581906,35.569288647876476],[-83.60392320193202,35.57959736416363],[-83.58238743797438,35.562416170351696],[-83.48547650016499,35.56842958818588],[-83.44599426624266,35.61138257271572],[-83.36702979839798,35.638872482814826],[-83.34908332843328,35.66120803477034],[-83.31319038850388,35.655194616936164],[-83.25576168461684,35.69642948208482],[-83.25576168461684,35.71532879527795],[-83.18397580475805,35.72993281001809],[-83.15526145281453,35.76429519764197],[-83.07988627896279,35.78920792866928],[-82.99374322313223,35.77374485423854],[-82.96143957719578,35.79178510774107],[-82.94708240122401,35.824429375983755],[-82.90042157931579,35.87253671865718],[-82.91118946129461,35.92665747916479],[-82.89683228532284,35.94469773266732],[-82.85017146341463,35.948133971429705],[-82.8214571114711,35.9215031210212],[-82.74967123161231,36.0056909706997],[-82.6312245298453,36.06582514904149],[-82.60251017790178,36.040053358323576],[-82.6132780598806,35.971328583075824],[-82.5594386499865,35.95414738926389],[-82.5055992400924,35.97734200091001],[-82.45893841818418,36.00740909008089],[-82.4158668902689,36.07269762656626],[-82.35125959839598,36.117368730477295],[-82.290241600516,36.135408983979836],[-82.24717007260072,36.13111368552685],[-82.22204501465015,36.15688547624475],[-82.14666984079841,36.14915393902938],[-82.13231266482664,36.10620095449954],[-82.08206254892549,36.105341894808944],[-82.02822313903138,36.13025462583625],[-81.93131220122201,36.26512699725997],[-81.91695502525025,36.28746254921548],[-81.83440126341263,36.34759672755727],[-81.79491902949029,36.35790544384443],[-81.76620467754677,36.3381470709607],[-81.7051866796668,36.3381470709607],[-81.73031173761737,36.390549712087115],[-81.71595456164562,36.45755636795367],[-81.69441879768797,36.467865084240835],[-81.70877597365974,36.536589859488586],[-81.67647232772327,36.5881334409244],[-81.35343586835869,36.574388485874856],[-81.17756046270462,36.57181130680306],[-80.90118482524825,36.5615025905159],[-80.83657753337533,36.55892541144411],[-80.70377365563655,36.5623616502065],[-80.61045201182012,36.55806635175351],[-80.44175519415194,36.55033481453814],[-80.2945941404414,36.544321396703964],[-80.05411144291443,36.54260327732277],[-80.02898638496384,36.54260327732277],[-79.71312851358513,36.54174421763217],[-79.5121280499805,36.540885157941574],[-79.46905652206522,36.540885157941574],[-79.34343123231233,36.540885157941574],[-79.21780594255942,36.54174421763217],[-79.13884147471474,36.54174421763217]]],[[[-75.75054794537945,35.185288966179655],[-75.9443698209982,35.10539641495414],[-76.01256640686407,35.0615843707337],[-75.98385205492055,35.120000429694294],[-75.95513770297703,35.120000429694294],[-75.78644088530885,35.19387956308562],[-75.7541372393724,35.199892980919806],[-75.68235135951359,35.23253724916248],[-75.63927983159832,35.23425536854368],[-75.58185112771127,35.26432245771457],[-75.53519030580306,35.27291305462054],[-75.51724383583836,35.33648347172471],[-75.47776160191601,35.55296651375513],[-75.47776160191601,35.59935573704736],[-75.50647595385954,35.68096640765407],[-75.52801171781718,35.771167675166744],[-75.51724383583836,35.76944955578555],[-75.47776160191601,35.67838922858228],[-75.45981513195132,35.596778557975576],[-75.47058301393014,35.47994644005439],[-75.52442242382423,35.23425536854368],[-75.6105654796548,35.227382891018905],[-75.75054794537945,35.185288966179655]]],[[[-75.72542288742888,35.936107135761354],[-75.66081559555596,35.91978500164001],[-75.61774406764067,35.85621458453584],[-75.61415477364774,35.81583877907779],[-75.66799418354184,35.82357031629316],[-75.66081559555596,35.86222800237002],[-75.72542288742888,35.936107135761354]]]]},"properties":{"name":"North Carolina"},"id":"37"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-79.64852122171222,38.59146063939639],[-79.53725310793108,38.55108483393833],[-79.47623511005109,38.45744732766327],[-79.31112758637586,38.411917164061634],[-79.2249845305453,38.478064760237594],[-79.12089500475004,38.66018541464414],[-79.09218065280652,38.65932635495354],[-79.08859135881359,38.72031959298592],[-79.05628771287712,38.761554458134576],[-78.99526971499715,38.850037606266056],[-78.86964442524425,38.76327257751577],[-78.79785854538545,38.87495033729336],[-78.71530478354784,38.935943575325744],[-78.71530478354784,38.905017426464255],[-78.67941184361844,38.92563485903858],[-78.62557243372433,38.98233279861798],[-78.60044737577375,38.96429254511544],[-78.55019725987259,39.01841330562305],[-78.57173302383023,39.0321582606726],[-78.54301867188671,39.05621193200931],[-78.50712573195732,39.088856200251996],[-78.4604649100491,39.1137689312793],[-78.40303620616206,39.16703063209631],[-78.43892914609145,39.1979567809578],[-78.39944691216913,39.24434600425003],[-78.42098267612675,39.25723189960899],[-78.33842891428914,39.34829222681226],[-78.36355397223971,39.35774188340883],[-78.34201820828208,39.38866803227032],[-78.35996467824678,39.412721703607026],[-78.34560750227502,39.46598340442404],[-78.227160800508,39.39124521134211],[-78.03333892488925,39.26496343682436],[-77.82874916729168,39.13266824447244],[-77.75337399343994,39.28300369032689],[-77.72107034750347,39.32166137640376],[-77.6779988195882,39.324238555475546],[-77.61698082170821,39.30276206321062],[-77.56314141181412,39.30362112290122],[-77.54160564785647,39.26496343682436],[-77.49494482594825,39.25121848177481],[-77.45905188601886,39.220292332913324],[-77.5164805899059,39.170466870858704],[-77.52006988389884,39.12064140880408],[-77.48417694396943,39.10947363282632],[-77.4626411800118,39.07597030489304],[-77.32983730227302,39.05793005139051],[-77.2472835404354,39.02700390252902],[-77.25087283442834,38.985769037380365],[-77.22215848248483,38.97116502264022],[-77.15037260262602,38.966010664496636],[-77.11806895668957,38.934225455944556],[-77.03910448884488,38.87151409853098],[-77.04269378283783,38.83972888997889],[-77.03910448884488,38.79162154730547],[-77.03910448884488,38.785608129471285],[-77.04269378283783,38.71860147360473],[-77.0857653107531,38.70571557824577],[-77.13242613266132,38.67393036969369],[-77.12883683866839,38.63527268361683],[-77.20062271852719,38.61723243011429],[-77.22215848248483,38.63784986268862],[-77.2472835404354,38.63527268361683],[-77.2472835404354,38.59060157970579],[-77.3011229503295,38.5046956106461],[-77.32624800828007,38.4488567307573],[-77.31189083230832,38.39129973148731],[-77.28676577435775,38.34920580664806],[-77.24010495244953,38.33202461283612],[-77.16114048460484,38.345769567885675],[-77.1396047206472,38.36810511984119],[-77.0857653107531,38.36810511984119],[-77.04269378283783,38.400749388083874],[-77.01039013690136,38.37497759736597],[-77.03192590085901,38.311407180261796],[-76.99603296092961,38.277903852328514],[-76.96372931499315,38.2564273600636],[-76.96372931499315,38.21433343522435],[-76.83810402524026,38.16364891347913],[-76.74837167541675,38.161930794097934],[-76.72324661746617,38.13787712276122],[-76.70171085350853,38.15591737626376],[-76.61556779767797,38.14818583904838],[-76.60121062170622,38.11038721266212],[-76.54378191781917,38.076883884728844],[-76.5186568598686,38.03478995988959],[-76.46840674396744,38.01331346762467],[-76.41456733407334,37.96692424433244],[-76.34278145421455,37.94716587144871],[-76.23510263442634,37.88874981248812],[-76.25304910439104,37.83291093259932],[-76.30688851428513,37.81229350002499],[-76.3212456902569,37.680857367363664],[-76.3391921602216,37.65594463633636],[-76.29253133831338,37.63618626345263],[-76.36072792417924,37.61041447273472],[-76.47199603796038,37.66539429293292],[-76.51147827188272,37.642199681286804],[-76.5366033298333,37.66367617355173],[-76.5366033298333,37.698897620866205],[-76.58326415174152,37.768481455804555],[-76.64069285562856,37.792535127141264],[-76.6801750895509,37.826038455074546],[-76.72324661746617,37.83634717136171],[-76.79862179131791,37.92483031949319],[-76.83810402524026,37.934279976089755],[-76.85246120121201,37.972937662166615],[-76.9063006111061,37.99870945288452],[-76.9063006111061,37.972937662166615],[-76.80580037930379,37.89648134970349],[-76.734014499445,37.798548544975446],[-76.68376438354383,37.77019957518574],[-76.61915709167091,37.74442778446784],[-76.58326415174152,37.66195805417053],[-76.54378191781917,37.6164278905689],[-76.43610309803098,37.61299165180651],[-76.4109780400804,37.58206550294502],[-76.29970992629926,37.561448070370695],[-76.35354933619335,37.52708568274682],[-76.32842427824278,37.495300474194735],[-76.29253133831338,37.51677696645966],[-76.26381698636986,37.48155551914518],[-76.24587051640516,37.387058953179526],[-76.27458486834868,37.309743581025806],[-76.3391921602216,37.36386434153341],[-76.40379945209452,37.39994484853848],[-76.44687098000979,37.3664415206052],[-76.40738874608746,37.33293819267192],[-76.38226368813687,37.28568990968909],[-76.34996004220042,37.27366307402073],[-76.41815662806628,37.264213417424166],[-76.49712109591096,37.241018805778054],[-76.47199603796038,37.21610607475074],[-76.3930315701157,37.225555731347306],[-76.39662086410864,37.164562493314925],[-76.34996004220042,37.17057591114911],[-76.33560286622865,37.1439450607406],[-76.28894204432044,37.1173142103321],[-76.27099557435574,37.08466994208941],[-76.3032992202922,37.00134115210152],[-76.31765639626396,37.014227047460466],[-76.38944227612276,36.98931431643316],[-76.42892451004509,36.96955594354943],[-76.4648174499745,37.02797200251002],[-76.56890697576975,37.08037464363643],[-76.61915709167091,37.11903232971329],[-76.61197850368504,37.16713967238672],[-76.65146073760738,37.221260432894326],[-76.73042520545205,37.21352889567895],[-76.75913955739557,37.19205240341403],[-76.79503249732497,37.23156914918149],[-76.85963978919789,37.241018805778054],[-76.87399696516965,37.26077717866178],[-76.9421935510355,37.234146328253274],[-76.90988990509905,37.20236111970119],[-76.86681837718378,37.20923359722597],[-76.80221108531084,37.19806582124821],[-76.74837167541675,37.15081753826538],[-76.7160680294803,37.149099418884184],[-76.68735367753678,37.198924880938804],[-76.66222861958619,37.17401214991149],[-76.67299650156501,37.14222694135941],[-76.65505003160031,37.03913977848778],[-76.57608556375564,37.02281764436644],[-76.48635321393213,36.952374749737494],[-76.4827639199392,36.929180138091375],[-76.4827639199392,36.89653586984869],[-76.40738874608746,36.89739492953929],[-76.38585298212982,36.9231667202572],[-76.35354933619335,36.9231667202572],[-76.33201357223572,36.88880433263332],[-76.31765639626396,36.88536809387093],[-76.32842427824278,36.95924722726227],[-76.2674062803628,36.964401585405845],[-76.18485251852519,36.93089825747257],[-76.09512016870168,36.90856270551705],[-76.03410217082171,36.93175731716317],[-75.99461993689937,36.9223076605666],[-75.96590558495585,36.8123480201702],[-75.92283405704057,36.69207966348663],[-75.89053041110411,36.63108642545425],[-75.86540535315353,36.55033481453814],[-76.1238345206452,36.55033481453814],[-76.31406710227103,36.55033481453814],[-76.48994250792508,36.55033481453814],[-76.54019262382623,36.55033481453814],[-76.91706849308493,36.552052933919335],[-76.91706849308493,36.543462337013366],[-77.16472977859779,36.54603951608515],[-77.29753365633655,36.544321396703964],[-77.76773116941169,36.545180456394554],[-77.90053504715047,36.544321396703964],[-78.047696100861,36.544321396703964],[-78.32407173831739,36.543462337013366],[-78.45687561605615,36.54260327732277],[-78.73325125351253,36.54174421763217],[-78.79785854538545,36.54174421763217],[-79.13884147471474,36.54174421763217],[-79.21780594255942,36.54174421763217],[-79.34343123231233,36.540885157941574],[-79.46905652206522,36.540885157941574],[-79.5121280499805,36.540885157941574],[-79.71312851358513,36.54174421763217],[-80.02898638496384,36.54260327732277],[-80.05411144291443,36.54260327732277],[-80.2945941404414,36.544321396703964],[-80.44175519415194,36.55033481453814],[-80.61045201182012,36.55806635175351],[-80.70377365563655,36.5623616502065],[-80.83657753337533,36.55892541144411],[-80.90118482524825,36.5615025905159],[-81.17756046270462,36.57181130680306],[-81.35343586835869,36.574388485874856],[-81.67647232772327,36.5881334409244],[-81.64775797577975,36.61218711226112],[-81.82722267542675,36.61390523164231],[-81.92413361323612,36.6164824107141],[-81.93490149521494,36.594146858758585],[-82.14666984079841,36.595005918449175],[-82.24358077860778,36.59586497813977],[-82.29383089450894,36.59586497813977],[-82.60968876588765,36.594146858758585],[-82.83222499344993,36.594146858758585],[-82.98656463514635,36.594146858758585],[-83.25935097860979,36.594146858758585],[-83.27729744857449,36.598442157211565],[-83.47111932419324,36.59758309752097],[-83.67570908179081,36.60101933628336],[-83.6469947298473,36.624213947929476],[-83.52854802808028,36.66630787276872],[-83.46035144221442,36.664589753387524],[-83.4316370902709,36.66630787276872],[-83.31319038850388,36.70926085729857],[-83.19474368673687,36.73932794646946],[-83.13731498284983,36.74276418523185],[-83.13013639486394,36.78571716976169],[-83.07270769097691,36.85444194500944],[-82.96861816518165,36.85787818377183],[-82.87888581535815,36.89309963108631],[-82.85735005140052,36.92746201871018],[-82.86811793337932,36.97385124200241],[-82.82504640546405,37.006495510245095],[-82.78197487754878,37.00821362962629],[-82.72454617366174,37.04171695755957],[-82.72454617366174,37.1155960909509],[-82.63481382383823,37.15425377702776],[-82.56661723797238,37.19634770186701],[-82.55226006200061,37.203220179391785],[-82.4876527701277,37.23156914918149],[-82.35484889238892,37.265072477114764],[-82.31536665846659,37.29599862597625],[-81.96720514115141,37.537394399033985],[-81.92772290722907,37.51248166800667],[-81.99233019910199,37.48327363852638],[-81.98874090510905,37.45492466873668],[-81.93490149521494,37.43602535554355],[-81.92772290722907,37.35870998338983],[-81.8774727913279,37.33207913298132],[-81.85234773337733,37.287408029070285],[-81.78774044150441,37.28483084999849],[-81.74466891358914,37.26335435773357],[-81.73749032560325,37.23844162670626],[-81.67647232772327,37.2015020600106],[-81.55443633196332,37.20751547784477],[-81.5077755100551,37.23242820887208],[-81.50059692206922,37.25819999958999],[-81.4180431602316,37.272804014330134],[-81.38932880828808,37.32005229731297],[-81.36061445634456,37.3380925508155],[-81.32113222242222,37.29943486473864],[-81.22422128461284,37.23500538794387],[-81.1129531708317,37.27881743216432],[-80.98014929309292,37.30201204381043],[-80.98014929309292,37.29256238721386],[-80.91913129521295,37.306307342263416],[-80.85093470934709,37.34668314772147],[-80.88323835528355,37.383622714417136],[-80.85811329733298,37.429152878018776],[-80.85811329733298,37.42829381832818],[-80.78273812348124,37.3947904903949],[-80.76838094750947,37.372454938439375],[-80.62121989379894,37.43344817647176],[-80.55302330793307,37.47382398192981],[-80.5099517800178,37.48155551914518],[-80.49559460404603,37.43516629585295],[-80.4740588400884,37.42399851987519],[-80.29818343443434,37.50818636955369],[-80.28382625846258,37.533099100581],[-80.3304870803708,37.53653533934339],[-80.32689778637786,37.56402524944249],[-80.26229049450494,37.59323327892278],[-80.21921896658966,37.62759566654666],[-80.28023696446964,37.656803696026955],[-80.2945941404414,37.692025143341425],[-80.25152261252612,37.72552847127471],[-80.25870120051201,37.756454620136196],[-80.18332602666027,37.85266930548305],[-80.05770073690736,37.95232022959229],[-80.01103991499915,37.98582355752557],[-79.960789799098,38.06399798936989],[-79.92489685916858,38.106950973899735],[-79.94643262312623,38.13186370492704],[-79.92130756517565,38.17997104760047],[-79.83157521535215,38.24955488253882],[-79.79568227542275,38.26673607635076],[-79.81003945139452,38.30539376242762],[-79.73107498354983,38.38013195550955],[-79.68800345563456,38.43167553694536],[-79.69877133761338,38.48751441683416],[-79.64852122171222,38.59146063939639]]],[[[-75.66799418354184,37.95060211021109],[-75.64645841958419,37.94716587144871],[-75.62492265562655,37.99441415443154],[-75.24086819838197,38.02705842267422],[-75.29829690226902,37.95919270711706],[-75.35213631216313,37.87500485743857],[-75.38085066410665,37.85181024579245],[-75.39879713407134,37.869850499294984],[-75.45263654396544,37.86383708146081],[-75.5208331298313,37.79683042559425],[-75.56390465774658,37.73669624725247],[-75.60338689166892,37.62845472623726],[-75.59979759767597,37.57347490603905],[-75.67158347753477,37.48327363852638],[-75.67517277152771,37.46351526564265],[-75.65722630156301,37.45148842997429],[-75.72183359343593,37.37331399812997],[-75.7649051213512,37.30544828257282],[-75.79720876728767,37.29599862597625],[-75.79361947329473,37.24703222361223],[-75.83310170721707,37.17315309022089],[-75.89770899908999,37.118173270022695],[-75.95513770297703,37.11989138940389],[-75.94078052700527,37.089824300233],[-75.97308417294173,37.08552900178001],[-75.97667346693467,37.15769001579015],[-76.01256640686407,37.20493829877298],[-76.02692358283582,37.25734093989939],[-76.01974499484994,37.31747511824118],[-75.98744134891349,37.368159639986395],[-75.97667346693467,37.44461595244952],[-75.93719123301233,37.54942123470234],[-75.9264233510335,37.60010575644756],[-75.86899464714647,37.667971472004716],[-75.80438735527355,37.76246803797037],[-75.81874453124531,37.791676067450666],[-75.74336935739358,37.80628008219082],[-75.68952994749947,37.86211896207961],[-75.68594065350653,37.88617263341633],[-75.75772653336533,37.90421288691886],[-75.66799418354184,37.95060211021109]]],[[[-75.9982092308923,37.84837400703007],[-75.97308417294173,37.83548811167111],[-75.9982092308923,37.81229350002499],[-75.9982092308923,37.84837400703007]]],[[[-75.99461993689937,37.953179289282886],[-76.03410217082171,37.915380662896624],[-76.04487005280052,37.953179289282886],[-75.99461993689937,37.953179289282886]]]]},"properties":{"name":"Virginia"},"id":"51"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-107.9178007101071,41.00198213121131],[-108.17981917159172,41.00026401183011],[-109.04842831788318,41.00026401183011],[-109.536572300923,40.99854589244892],[-109.99959122601226,40.99768683275832],[-110.0498413419134,40.99768683275832],[-110.23648462954628,40.995109653686534],[-110.7138607306073,40.995968713377124],[-111.04766507195072,40.99768683275832],[-111.04766507195072,41.25196850117501],[-111.04407577795777,41.580129302983025],[-111.04766507195072,42.0019276110661],[-111.04766507195072,42.51392718666186],[-111.04407577795777,42.72267869147691],[-111.04407577795777,43.01905428473284],[-111.04407577795777,43.31542987798877],[-111.04407577795777,43.500986771157706],[-111.04766507195072,43.68138930618306],[-111.04766507195072,43.98377831727316],[-111.05125436594365,44.35403304392043],[-111.04766507195072,44.474301400604],[-111.0548436599366,44.66587171160711],[-111.05843295392954,44.86689167920679],[-111.0548436599366,45.0009049909399],[-111.04407577795777,45.0017640506305],[-110.7856466104661,45.002623110321096],[-110.70668214262142,44.99231439403393],[-110.40159215322153,44.99403251341513],[-110.36210991929919,45.0009049909399],[-110.20059168961689,44.99660969248692],[-110.1108593397934,45.003482170011694],[-109.79859076240761,45.0017640506305],[-109.10226772777727,45.006059349083486],[-109.06278549385493,45.0000459312493],[-108.62130233272332,45.0000459312493],[-108.24801575745757,44.999186871558706],[-107.91062212212121,45.0009049909399],[-107.13533461964619,45.0000459312493],[-107.08508450374504,44.99660969248692],[-106.2631361793618,44.99403251341513],[-106.02624277582775,44.99403251341513],[-105.84677807618075,45.0000459312493],[-105.07507986769868,45.0000459312493],[-105.03918692776928,45.0000459312493],[-104.47207847688476,44.99832781186811],[-104.05930966769667,44.99746875217751],[-104.05572037370374,44.87462321642216],[-104.05572037370374,44.57137514564145],[-104.05572037370374,44.18050298641986],[-104.05572037370374,44.1409862406524],[-104.05572037370374,43.85320124430243],[-104.05572037370374,43.5035639502295],[-104.05572037370374,43.47779215951159],[-104.05213107971079,43.297389624486236],[-104.05213107971079,43.001014031230305],[-104.05213107971079,42.611859991389906],[-104.05213107971079,42.0019276110661],[-104.05213107971079,41.6978204805948],[-104.05213107971079,41.56466622855228],[-104.05213107971079,41.3928542904329],[-104.05213107971079,41.00112307152071],[-104.49720353483534,41.00198213121131],[-104.9422759899599,40.99768683275832],[-105.2760803313033,40.99854589244892],[-105.7247420804208,40.99682777306772],[-106.19135029950299,40.99768683275832],[-106.32056488324882,40.999404952139514],[-106.85895898218982,41.002841190901904],[-107.31838861328613,41.002841190901904],[-107.9178007101071,41.00198213121131]]]},"properties":{"name":"Wyoming"},"id":"56"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-86.68712674186742,30.99479579544795],[-86.7840376796768,30.99737297451974],[-87.16450284292843,30.999091093900937],[-87.59880741607415,30.99737297451974],[-87.58803953409534,30.964728706277057],[-87.63470035600356,30.865936841858414],[-87.62752176801767,30.846178468974685],[-87.54496800618006,30.77831275341753],[-87.53420012420123,30.743091306103054],[-87.4049855404554,30.674366530855302],[-87.39421765847658,30.615091412204116],[-87.44805706837069,30.527467323763233],[-87.43728918639187,30.480219040780405],[-87.36550330653306,30.43640699655996],[-87.43011059840597,30.406339907389068],[-87.4588249503495,30.33589701276012],[-87.49112859628596,30.323011117401165],[-87.46600353833539,30.302393684826846],[-87.51984294822948,30.280058132871325],[-87.65623611996119,30.249991043700433],[-87.7998078796788,30.229373611126107],[-88.00080834328342,30.225937372363717],[-87.9362010514105,30.261158819678194],[-87.89312952349523,30.238823267722672],[-87.76750423374233,30.26201787936879],[-87.75673635176351,30.291225908849086],[-87.81057576165762,30.332460773997738],[-87.83570081960819,30.369400340693403],[-87.90748669946699,30.409776146151458],[-87.93261175741758,30.487091518305178],[-87.90030811148111,30.55066193540935],[-87.91107599345993,30.615950471894713],[-87.9362010514105,30.657185337043366],[-88.00798693126931,30.684675247142465],[-88.06182634116341,30.645158501375008],[-88.05464775317753,30.612514233132323],[-88.08695139911399,30.5635478307683],[-88.08336210512105,30.52832638345383],[-88.10489786907868,30.50083647335473],[-88.10848716307163,30.377131877908774],[-88.13720151501515,30.32043393832938],[-88.19104092490925,30.31699769956699],[-88.1874516309163,30.34792384842848],[-88.25923751077511,30.38228623605236],[-88.3130769206692,30.368541281002805],[-88.3310233906339,30.388299653886534],[-88.39563068250682,30.369400340693403],[-88.41357715247152,30.735359768887683],[-88.42434503445034,30.99823203421034],[-88.43152362243622,31.11420509244092],[-88.44947009240092,31.435493416724164],[-88.46382726837268,31.698365682046813],[-88.4745951503515,31.894231291502912],[-88.43152362243622,32.22754645145451],[-88.4207557404574,32.30829806237062],[-88.38845209452094,32.57804280521805],[-88.3669163305633,32.74727756426564],[-88.3489698605986,32.92939821867218],[-88.34179127261272,32.991250516395155],[-88.30589833268333,33.28848516934169],[-88.27359468674686,33.5341762408524],[-88.24846962879629,33.744645865048646],[-88.20898739487394,34.05820265211651],[-88.205398100881,34.08655162190621],[-88.17309445494455,34.32107491743917],[-88.15514798497985,34.46281976638766],[-88.14079080900808,34.58137000369003],[-88.09771928109281,34.89234961168611],[-88.15514798497985,34.922416700857],[-88.20180880688807,34.99543677455774],[-88.20180880688807,35.008322669916694],[-87.98645116731167,35.0057454908449],[-87.60598600406004,35.00402737146371],[-87.2255208408084,34.999732073010726],[-87.21116366483665,34.99887301332013],[-86.8378770895709,34.99200053579535],[-86.7840376796768,34.99200053579535],[-86.3174294605946,34.99114147610476],[-86.31025087260872,34.99114147610476],[-85.86517841748417,34.988564297032966],[-85.60674924999249,34.98426899857998],[-85.58162419204191,34.86056440313403],[-85.5349633701337,34.62346392852928],[-85.52778478214782,34.5891015409054],[-85.51342760617605,34.52381300442004],[-85.4631774902749,34.28671252981529],[-85.42010596235961,34.080538204072035],[-85.39857019840198,33.96370608615086],[-85.38780231642316,33.90185378842788],[-85.337552200522,33.652726478154776],[-85.30524855458555,33.48263265941659],[-85.29448067260672,33.42765283921839],[-85.23705196871968,33.12955912658126],[-85.23346267472674,33.10808263431634],[-85.18680185281852,32.870123100021],[-85.15449820688207,32.84263318992189],[-85.16885538285382,32.8117070410604],[-85.1221945609456,32.77304935498354],[-85.12937314893149,32.751572862718625],[-85.1042480909809,32.645049461084604],[-85.08271232702327,32.60810989438894],[-85.02169432914329,32.54282135790357],[-85.00374785917859,32.51017708966089],[-84.99656927119271,32.45347915008149],[-84.96426562525625,32.42255300122001],[-84.98221209522094,32.37788189730897],[-85.00015856518564,32.32204301742017],[-84.93555127331273,32.297989346083455],[-84.89247974539745,32.26362695845958],[-84.92119409734097,32.2309826902169],[-84.96785491924919,32.21895585454854],[-84.96067633126331,32.19833842197421],[-85.01092644716447,32.18029816847168],[-85.05758726907268,32.13562706456064],[-85.05040868108681,32.062606990859905],[-85.06117656306563,31.990445976849763],[-85.07912303303033,31.939761455104545],[-85.12937314893149,31.877909157381566],[-85.1401410309103,31.839251471304706],[-85.12578385493855,31.77997635265352],[-85.12578385493855,31.762795158841584],[-85.12578385493855,31.69492944328443],[-85.05758726907268,31.620191250202495],[-85.04681938709386,31.51710408733087],[-85.07194444504445,31.46813768496684],[-85.06476585705856,31.431198118271176],[-85.09348020900208,31.362473343023424],[-85.08989091500915,31.308352582515816],[-85.11501597295972,31.276567373963736],[-85.09706950299503,31.23275532974329],[-85.10783738497385,31.18636610645106],[-85.03605150511505,31.108191674606744],[-85.02528362313623,31.07554740636406],[-85.00374785917859,31.000809213282125],[-85.48830254822548,30.99737297451974],[-85.4990704302043,30.996513914829144],[-86.03387523515235,30.993077676066754],[-86.18821487684876,30.99393673575735],[-86.3892153404534,30.99393673575735],[-86.68712674186742,30.99479579544795]]],[[[-88.3310233906339,30.235387028960282],[-88.13002292702927,30.26201787936879],[-88.12643363303633,30.283494371633708],[-88.07618351713516,30.249131984009836],[-88.10848716307163,30.22507831267312],[-88.14438010300103,30.238823267722672],[-88.20898739487394,30.237105148341477],[-88.28077327473274,30.222501133601334],[-88.3310233906339,30.235387028960282]]]]},"properties":{"name":"Alabama"},"id":"01"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-81.87388349733497,35.18442990648906],[-81.76979397153971,35.18013460803608],[-81.36779304433044,35.16467153360533],[-81.3283108104081,35.16381247391473],[-81.04116729097291,35.14920845917459],[-81.03398870298703,35.10367829557295],[-81.0591137609376,35.062443430424295],[-81.04116729097291,35.04440317692176],[-80.9334884711847,35.10711453433534],[-80.9047741192412,35.07618838547385],[-80.84016682736826,35.00145019239192],[-80.78273812348124,34.93616165590655],[-80.79709529945299,34.82018859767597],[-80.56020189591895,34.81761141860418],[-80.31971919839198,34.81417517984179],[-79.92848615316153,34.80644364262642],[-79.69159274962749,34.804725523245224],[-79.67364627966279,34.804725523245224],[-79.46187793407934,34.630336406054056],[-79.45111005210052,34.62088674945749],[-79.35778840828408,34.54528949668496],[-79.24652029450294,34.44563857257572],[-79.07064488884889,34.299598425174246],[-78.65069749167492,33.94394771326713],[-78.53942937789378,33.85116926668266],[-78.586090199802,33.84429678915789],[-78.71530478354784,33.80048474493744],[-78.8122157213572,33.74378680535805],[-78.93784101111011,33.63984058279582],[-79.00244830298303,33.571974867238666],[-79.0275733609336,33.533317181161806],[-79.08500206482064,33.483491719107185],[-79.1352521807218,33.40359916788167],[-79.18191300263003,33.25412278171781],[-79.1711451206512,33.20687449873498],[-79.19627017860178,33.16563963358633],[-79.24652029450294,33.125263828128276],[-79.28959182241822,33.109800753697535],[-79.32907405634056,33.090042380813806],[-79.36137770227703,33.0067135908259],[-79.422395700157,33.01530418773187],[-79.48341369803698,33.00155923268232],[-79.52289593195931,33.0350625606156],[-79.58032463584635,33.0067135908259],[-79.61621757577575,32.952592830318295],[-79.60544969379694,32.92596197990979],[-79.57673534185342,32.93455257681576],[-79.57673534185342,32.906203607026065],[-79.63057475174752,32.88902241321413],[-79.69518204362043,32.85036472713727],[-79.72748568955689,32.805693623226226],[-79.84952168531684,32.75500910148101],[-79.88541462524626,32.78765336972369],[-79.92489685916858,32.78163995188952],[-79.92848615316153,32.75415004179041],[-79.86746815528156,32.73525072859728],[-79.88541462524626,32.68456620685206],[-79.97514697506975,32.639895102941026],[-80.00027203302032,32.605532715317146],[-80.03616497294972,32.609828013770134],[-80.12230802878028,32.590928700577],[-80.18332602666027,32.540244178831784],[-80.2048617906179,32.555707253262526],[-80.2766476704767,32.517049567185666],[-80.33407637436375,32.478391881108806],[-80.36279072630727,32.49643213461134],[-80.41663013620136,32.47237846327463],[-80.42380872418724,32.498150253992534],[-80.47764813408133,32.48526435863358],[-80.48123742807428,32.447465732247316],[-80.43098731217312,32.389908732977325],[-80.4561123701237,32.32633831587315],[-80.57096977789777,32.27307661505615],[-80.63916636376364,32.255895421244205],[-80.64634495174951,32.29111686855868],[-80.71454153761537,32.325479256182554],[-80.75402377153772,32.30657994298942],[-80.7612023595236,32.27994909258092],[-80.71813083160832,32.267063197221965],[-80.66788071570716,32.21637867547675],[-80.72172012560125,32.16053979558795],[-80.81145247542476,32.10985527384273],[-80.84375612136121,32.10985527384273],[-80.8796490612906,32.07978818467184],[-80.9047741192412,32.05229827457274],[-80.88682764927648,32.03425802107021],[-80.91913129521295,32.03769425983259],[-80.99809576305763,32.09868749786497],[-81.03757799697996,32.08408348312483],[-81.1129531708317,32.11329151260512],[-81.1308996407964,32.16655321342213],[-81.11654246482465,32.18888876537765],[-81.14525681676817,32.22668739176391],[-81.15602469874699,32.24129140650406],[-81.12013175881758,32.2842443910339],[-81.14166752277522,32.34953292751927],[-81.15602469874699,32.34609668875688],[-81.20986410864109,32.436297956269556],[-81.19550693266932,32.46550598574985],[-81.27806069450695,32.5350898206882],[-81.28164998849988,32.55656631295312],[-81.32113222242222,32.559143492024916],[-81.38932880828808,32.59522399902998],[-81.4180431602316,32.62958638665386],[-81.39291810228102,32.65364005799057],[-81.40727527825278,32.694874923139224],[-81.42881104221041,32.701747400664004],[-81.41086457224571,32.744700385193845],[-81.42522174821748,32.76789499683996],[-81.42522174821748,32.8409150705407],[-81.45752539415393,32.85380096589965],[-81.46470398213982,32.8958948907389],[-81.5077755100551,32.95087471093711],[-81.4898290400904,33.0084317102071],[-81.5436684499845,33.04537127690276],[-81.6154543298433,33.094337679266786],[-81.64775797577975,33.094337679266786],[-81.74466891358914,33.141585962249614],[-81.77338326553266,33.180243648326474],[-81.75543679556796,33.198283901829015],[-81.78056185351853,33.22147851347513],[-81.80568691146911,33.211169797187964],[-81.85234773337733,33.24725030419304],[-81.83799055740558,33.27302209491094],[-81.93849078920789,33.34346498953989],[-81.92413361323612,33.37095489963899],[-81.93849078920789,33.40445822757227],[-81.91336573125731,33.441397794267935],[-81.92772290722907,33.46201522684226],[-81.98156231712316,33.48435077879778],[-82.01386596305963,33.53245812147121],[-82.02822313903138,33.545344016830164],[-82.11436619486194,33.59688759826598],[-82.15025913479134,33.59774665795658],[-82.19691995669956,33.630390926199254],[-82.2184557206572,33.68622980608806],[-82.24717007260072,33.75237740226402],[-82.35125959839598,33.83656525194252],[-82.45534912419124,33.88123635585355],[-82.52354571005709,33.94308865357653],[-82.56302794397944,33.95597454893549],[-82.5953315899159,34.01353154820548],[-82.5953315899159,34.030712742017414],[-82.64558170581705,34.07194760716607],[-82.67429605776057,34.12950460643606],[-82.71736758567586,34.150122039010384],[-82.74249264362643,34.20853809797097],[-82.74249264362643,34.25235014219142],[-82.77479628956289,34.288430649196485],[-82.7927427595276,34.3399742306323],[-82.83581428744287,34.365746021350205],[-82.8465821694217,34.42072584154841],[-82.87529652136521,34.47570566174661],[-82.90401087330874,34.48601437803377],[-82.99374322313223,34.479141900509],[-83.05117192701927,34.49546403463034],[-83.10501133691336,34.53669889977899],[-83.16961862878628,34.60542367502674],[-83.23063662666627,34.611437092860925],[-83.33831544645446,34.68703434563345],[-83.35267262242623,34.716242375113744],[-83.32036897648976,34.75919535964359],[-83.3239582704827,34.79012150850508],[-83.23063662666627,34.880322776017756],[-83.11936851288513,34.938738834978345],[-83.10860063090631,35.000591132701324],[-83.008100399104,35.027221983109825],[-82.89683228532284,35.05643001259012],[-82.78197487754878,35.085638042070414],[-82.76402840758408,35.06845684825848],[-82.65634958779587,35.119141370003696],[-82.57379582595826,35.144054101031],[-82.45893841818418,35.17841648865488],[-82.4338133602336,35.17068495143951],[-82.39074183231833,35.21535605535055],[-82.35484889238892,35.19216144370443],[-82.21486642666426,35.196456742157416],[-81.97079443514434,35.18700708556085],[-81.87388349733497,35.18442990648906]]]},"properties":{"name":"South Carolina"},"id":"45"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-107.29685284932849,31.78341259141591],[-108.20853352353522,31.78341259141591],[-108.20853352353522,31.33326531354313],[-109.04842831788318,31.332406253852533],[-109.04842831788318,32.42598923998239],[-109.04842831788318,32.77820371312713],[-109.04842831788318,33.20859261811618],[-109.04842831788318,33.77814919298192],[-109.04483902389023,33.87522293801938],[-109.04842831788318,33.999786593155925],[-109.04483902389023,34.57965188430884],[-109.04483902389023,34.96021532724327],[-109.04483902389023,35.31672509884098],[-109.04842831788318,35.34249688955889],[-109.04483902389023,35.54609403623036],[-109.04483902389023,36.00311379162791],[-109.04483902389023,36.998763973029725],[-108.38081963519635,36.99962303272032],[-108.24801575745757,36.998763973029725],[-107.48349613696136,36.99962303272032],[-107.42247813908139,36.99962303272032],[-106.87690545215452,37.00048209241092],[-106.86972686416864,36.99275055519555],[-106.47490452494525,36.99360961488614],[-106.00470701187011,36.995327734267335],[-105.71756349243492,36.99618679395793],[-105.22224092140921,36.995327734267335],[-105.15404433554335,36.995327734267335],[-104.99970469384694,36.99360961488614],[-104.33927459914598,36.99360961488614],[-104.00905955179552,36.99618679395793],[-103.08661099560995,37.00048209241092],[-103.0004679397794,37.00048209241092],[-103.0004679397794,36.60273745566455],[-103.00405723377233,36.50050935248352],[-103.04353946769467,36.50050935248352],[-103.03995017370173,36.317529638386375],[-103.03995017370173,36.055516432754324],[-103.03995017370173,35.73938246661466],[-103.03995017370173,35.62255034869348],[-103.04353946769467,35.18357084679846],[-103.04353946769467,34.954201909409086],[-103.04353946769467,34.74716852397523],[-103.04353946769467,34.3124843205332],[-103.04353946769467,34.303034663936636],[-103.04353946769467,33.945665832648324],[-103.04712876168762,33.82453841627416],[-103.0543073496735,33.57025674785747],[-103.05789664366642,33.38813609345093],[-103.05789664366642,33.26013619955199],[-103.06507523165232,32.959465307843075],[-103.06507523165232,32.52220392532925],[-103.06507523165232,32.086660662196614],[-103.06507523165232,32.000754693136926],[-103.32709369313693,32.000754693136926],[-103.72191603236031,31.99989563344633],[-103.980345199852,31.99989563344633],[-104.02341672776727,31.99989563344633],[-104.53309647476475,31.99989563344633],[-104.84895434614346,32.000754693136926],[-104.91715093200932,32.000754693136926],[-105.43041997299973,32.000754693136926],[-105.99752842388423,32.00247281251812],[-106.37799358713586,32.000754693136926],[-106.61847628466285,32.000754693136926],[-106.62206557865578,31.91398966438664],[-106.64719063660635,31.898526589955893],[-106.63642275462755,31.865882321713208],[-106.60052981469813,31.84440582944829],[-106.60411910869108,31.824647456564563],[-106.54669040480404,31.80746626275262],[-106.52874393483934,31.78341259141591],[-107.29685284932849,31.78341259141591]]]},"properties":{"name":"New Mexico"},"id":"35"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-70.96242975879758,43.54136257661576],[-70.95884046480465,43.466624383533826],[-70.98755481674817,43.37985935478354],[-70.9552511708117,43.33432919118191],[-70.80809011710117,43.224369550785504],[-70.8296258810588,43.18828904378043],[-70.81885799908,43.12300050729507],[-70.70400059130591,43.059430090190894],[-70.8116794110941,42.90995370402703],[-70.81885799908,42.87215507764077],[-70.84757235102352,42.86098730166301],[-70.90141176091761,42.88675909238091],[-71.03062634466345,42.859269182281814],[-71.0629299905999,42.80600748146481],[-71.13112657646576,42.82147055589555],[-71.18496598635986,42.79054440703406],[-71.18137669236692,42.73728270621706],[-71.24598398423984,42.74243706436064],[-71.25675186621866,42.73642364652646],[-71.29264480614806,42.696906900759004],[-71.89923549095491,42.71151091549915],[-71.92794984289843,42.712369975189745],[-72.28328994819948,42.72181963178631],[-72.45916535385354,42.726973989929895],[-72.49146899979,42.77250415353153],[-72.51300476374763,42.76391355662556],[-72.55607629166292,42.85153764506644],[-72.52377264572645,42.91424900248002],[-72.52018335173352,42.96321540484404],[-72.4735225298253,42.97180600175001],[-72.44480817788178,43.01046368782687],[-72.46634394183941,43.05513479173791],[-72.43404029590296,43.08348376152761],[-72.45198676586766,43.16165819337193],[-72.43404029590296,43.23296014769147],[-72.39455806198062,43.312852698916984],[-72.41609382593826,43.3643962803528],[-72.38020088600886,43.48036933858338],[-72.39814735597356,43.51043642775427],[-72.38020088600886,43.57400684485844],[-72.3299507701077,43.59977863557635],[-72.30482571215713,43.6959933209232],[-72.27252206622066,43.73379194730946],[-72.2043254803548,43.770731514005135],[-72.18278971639717,43.8085301403914],[-72.1863790103901,43.863509960589596],[-72.11818242452425,43.921066959859594],[-72.11818242452425,43.99408703356033],[-72.07511089660896,44.03188565994659],[-72.03203936869369,44.09116077859778],[-72.05357513265132,44.11006009179091],[-72.03921795667956,44.15816743446434],[-72.06793230862309,44.189952643016426],[-72.04639654466544,44.23891904538045],[-72.06793230862309,44.26812707486074],[-72.03203936869369,44.32052971598715],[-71.98178925279252,44.33771090979909],[-71.83821749307494,44.348019626086256],[-71.81309243512435,44.35489210361103],[-71.79514596515965,44.39956320752207],[-71.76643161321613,44.406435685046844],[-71.70900290932909,44.41159004319042],[-71.65875279342794,44.445093371123704],[-71.63362773547735,44.483751057200564],[-71.57619903159032,44.502650370393695],[-71.59773479554795,44.55333489213891],[-71.55825256162561,44.564502668116674],[-71.55107397363973,44.62721402553025],[-71.58696691356913,44.65985829377293],[-71.62644914749147,44.74748238221382],[-71.57260973759738,44.79215348612485],[-71.55825256162561,44.84713330632306],[-71.49364526975269,44.91156278311782],[-71.54030609166091,44.988019095580945],[-71.50082385773858,45.01379088629886],[-71.49005597575976,45.072206945259445],[-71.42544868388684,45.127186765457644],[-71.43621656586566,45.1400726608166],[-71.39673433194332,45.20364307792077],[-71.44339515385154,45.23456922678226],[-71.37878786197862,45.24401888337883],[-71.36443068600686,45.26635443533434],[-71.28546621816218,45.30243494233942],[-71.23162680826808,45.250032301213004],[-71.13112657646576,45.24573700276002],[-71.08446575455754,45.30587118110181],[-71.03062634466345,44.65556299531995],[-71.0090905807058,44.28530826867268],[-70.98755481674817,43.79220800627006],[-70.9731976407764,43.570570606096055],[-70.96242975879758,43.54136257661576]]]},"properties":{"name":"New Hampshire"},"id":"33"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-169.5208535109351,-14.220951959429593],[-169.42753186711866,-14.211502302833027],[-169.42394257312571,-14.255314347053469],[-169.45624621906217,-14.248441869528694],[-169.4849605710057,-14.272495540865409],[-169.5208535109351,-14.220951959429593]]],[[[-169.68596103461033,-14.164254019850198],[-169.6105858607586,-14.157381542325423],[-169.62494303673034,-14.175421795827958],[-169.67160385863858,-14.18573051211512],[-169.68596103461033,-14.164254019850198]]],[[[-170.70532052860528,-14.330911599825997],[-170.75915993849938,-14.373864584355843],[-170.79864217242172,-14.333488778897788],[-170.84530299432993,-14.319743823848238],[-170.79864217242172,-14.289676734677347],[-170.74480276252763,-14.288817674986749],[-170.6730168826688,-14.229542556335563],[-170.65865970669705,-14.2467237501475],[-170.56174876888767,-14.245005630766308],[-170.54739159291591,-14.28280425715257],[-170.5725166508665,-14.271636481174811],[-170.67660617666175,-14.297408271892717],[-170.70532052860528,-14.330911599825997]]]]},"properties":{"name":"American Samoa"},"id":"60"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-71.89923549095491,45.00863652815527],[-71.50082385773858,45.01379088629886],[-71.54030609166091,44.988019095580945],[-71.49364526975269,44.91156278311782],[-71.55825256162561,44.84713330632306],[-71.57260973759738,44.79215348612485],[-71.62644914749147,44.74748238221382],[-71.58696691356913,44.65985829377293],[-71.55107397363973,44.62721402553025],[-71.55825256162561,44.564502668116674],[-71.59773479554795,44.55333489213891],[-71.57619903159032,44.502650370393695],[-71.63362773547735,44.483751057200564],[-71.65875279342794,44.445093371123704],[-71.70900290932909,44.41159004319042],[-71.76643161321613,44.406435685046844],[-71.79514596515965,44.39956320752207],[-71.81309243512435,44.35489210361103],[-71.83821749307494,44.348019626086256],[-71.98178925279252,44.33771090979909],[-72.03203936869369,44.32052971598715],[-72.06793230862309,44.26812707486074],[-72.04639654466544,44.23891904538045],[-72.06793230862309,44.189952643016426],[-72.03921795667956,44.15816743446434],[-72.05357513265132,44.11006009179091],[-72.03203936869369,44.09116077859778],[-72.07511089660896,44.03188565994659],[-72.11818242452425,43.99408703356033],[-72.11818242452425,43.921066959859594],[-72.1863790103901,43.863509960589596],[-72.18278971639717,43.8085301403914],[-72.2043254803548,43.770731514005135],[-72.27252206622066,43.73379194730946],[-72.30482571215713,43.6959933209232],[-72.3299507701077,43.59977863557635],[-72.38020088600886,43.57400684485844],[-72.39814735597356,43.51043642775427],[-72.38020088600886,43.48036933858338],[-72.41609382593826,43.3643962803528],[-72.39455806198062,43.312852698916984],[-72.43404029590296,43.23296014769147],[-72.45198676586766,43.16165819337193],[-72.43404029590296,43.08348376152761],[-72.46634394183941,43.05513479173791],[-72.44480817788178,43.01046368782687],[-72.4735225298253,42.97180600175001],[-72.52018335173352,42.96321540484404],[-72.52377264572645,42.91424900248002],[-72.55607629166292,42.85153764506644],[-72.51300476374763,42.76391355662556],[-72.49146899979,42.77250415353153],[-72.45916535385354,42.726973989929895],[-72.92936286692867,42.73900082559825],[-73.02268451074511,42.74071894497944],[-73.26316720827208,42.74587330312303],[-73.2918815602156,42.80171218301182],[-73.27752438424385,42.83349739156391],[-73.2739350902509,42.943457031960314],[-73.2559886202862,43.31457081829818],[-73.24881003230033,43.55424847197471],[-73.29547085420855,43.57916120300202],[-73.30264944219442,43.624691366603656],[-73.37084602806028,43.624691366603656],[-73.39597108601086,43.56799342702426],[-73.43186402594026,43.590328978979784],[-73.40673896798968,43.68826178370783],[-73.3636674400744,43.75355032019319],[-73.34931026410264,43.77159057369573],[-73.37802461604616,43.8085301403914],[-73.37443532205322,43.875536796257954],[-73.41032826198261,43.933093795527945],[-73.40673896798968,44.02157694365943],[-73.43904261392613,44.044771555305545],[-73.41032826198261,44.1126372708627],[-73.39238179201791,44.18909358332583],[-73.31341732417324,44.263831776407756],[-73.33495308813087,44.372073297422965],[-73.2918815602156,44.44079807267072],[-73.30623873618735,44.5000731913219],[-73.33854238212382,44.54646241461414],[-73.36007814608146,44.56364360842608],[-73.38879249802498,44.63580462243622],[-73.37443532205322,44.66243547284472],[-73.36725673406734,44.741468964379635],[-73.33136379413794,44.78871724736246],[-73.37802461604616,44.83768364972649],[-73.3636674400744,44.891804410234094],[-73.33854238212382,44.917576200952006],[-73.34213167611676,45.011213707227064],[-73.19138132841329,45.01379088629886],[-72.67452299342993,45.01550900568005],[-72.55607629166292,45.00863652815527],[-72.30841500615006,45.003482170011694],[-71.89923549095491,45.00863652815527]]]},"properties":{"name":"Vermont"},"id":"50"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-117.16741132991329,36.971274062930625],[-117.83143071860718,37.46523338502384],[-118.05396694616945,37.62501848747487],[-118.4272535214352,37.89648134970349],[-118.857968800588,38.20488377862778],[-119.08409432214322,38.361232642316416],[-119.15588020200201,38.41449434313343],[-119.32816631366313,38.534762699816994],[-119.5865954811548,38.71344711546115],[-119.90604264652646,38.93336639625396],[-119.9993642903429,38.99951399242992],[-120.00295358433584,39.06737970798707],[-120.00295358433584,39.11290987158871],[-120.00295358433584,39.16531251271512],[-120.00654287832877,39.316507018260175],[-120.00295358433584,39.44536597184971],[-120.00295358433584,39.72284225191251],[-119.9993642903429,39.73401002789027],[-119.99577499634995,40.071620486294854],[-119.99577499634995,40.72106961238612],[-119.9993642903429,40.75027764186641],[-119.9993642903429,41.18410278561785],[-119.9993642903429,41.99419607385073],[-119.9993642903429,41.99505513354133],[-119.88809617656176,41.99763231261312],[-119.36046995959958,41.99419607385073],[-119.32457701967019,41.99419607385073],[-118.69645057090571,41.99161889477894],[-118.19753870588704,41.99677325292252],[-117.62325166701666,41.99849137230372],[-117.02742886418864,42.00020949168491],[-117.01666098220981,41.999350431994316],[-116.36699876948768,41.995914193231926],[-115.31533562955629,41.995914193231926],[-115.03895999209992,41.995914193231926],[-114.80565588255882,42.0019276110661],[-114.5974768309683,41.99419607385073],[-114.2816189595896,41.99419607385073],[-114.04113626206261,41.99333701416013],[-114.04113626206261,41.00026401183011],[-114.04472555605555,40.771754134131335],[-114.04472555605555,40.23226464843648],[-114.0483148500485,40.117150649896494],[-114.0483148500485,39.905821966009654],[-114.0483148500485,39.54243971688716],[-114.0483148500485,38.677366608456076],[-114.05190414404143,38.57256132620326],[-114.0483148500485,38.14904489873898],[-114.05190414404143,37.99956851257512],[-114.0483148500485,37.76590427673276],[-114.05190414404143,37.60440105490054],[-114.05190414404143,37.00048209241092],[-114.05190414404143,36.84327416903169],[-114.05190414404143,36.62507300762007],[-114.04472555605555,36.39140877177771],[-114.0483148500485,36.193825042940425],[-114.0662613200132,36.18093914758147],[-114.15240437584376,36.02373122420224],[-114.2385474316743,36.01428156760567],[-114.31392260552605,36.05809361182611],[-114.30674401754017,36.082147283162826],[-114.37135130941309,36.14314052119521],[-114.4180121313213,36.145717700267],[-114.50415518715187,36.129395566145654],[-114.51133377513774,36.15087205841058],[-114.57235177301773,36.151731118101175],[-114.615423300933,36.13025462583625],[-114.6333697708977,36.14228146150461],[-114.66567341683417,36.117368730477295],[-114.75540576665766,36.090737880068794],[-114.73028070870708,36.02201310482104],[-114.74463788467884,35.98507353812538],[-114.70156635676356,35.901744748137475],[-114.66567341683417,35.87511389772897],[-114.69797706277062,35.85449646515465],[-114.71233423874239,35.80638912248122],[-114.69438776877769,35.755704600736],[-114.7051556507565,35.71189255651556],[-114.68003059280592,35.685261706107056],[-114.69079847478474,35.651758378173774],[-114.65849482884828,35.61911410993109],[-114.65849482884828,35.53063096179961],[-114.68003059280592,35.49970481293812],[-114.66567341683417,35.4498793508835],[-114.62619118291182,35.40950354542545],[-114.60465541895418,35.35366466553665],[-114.57235177301773,35.2007520406104],[-114.57235177301773,35.138899742887425],[-114.64772694686947,35.10196017619175],[-114.61183400694006,35.08306086299862],[-114.6333697708977,35.00145019239192],[-115.16099598785988,35.424107560165595],[-115.41224656736566,35.62512752776527],[-115.64913997089971,35.809825361243604],[-115.8465511405114,35.96445610555105],[-116.25214136171361,36.27715383292832],[-117.16741132991329,36.971274062930625]]]},"properties":{"name":"Nevada"},"id":"32"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-156.69989536815368,20.920602803818035],[-156.68194889818898,20.97987792246922],[-156.64246666426664,21.027985265142647],[-156.59221654836546,21.03313962328623],[-156.54555572645725,21.004790653496528],[-156.50966278652785,20.93778399762997],[-156.47376984659846,20.894831013100124],[-156.3876267907679,20.919743744127437],[-156.32301949889498,20.94981083329833],[-156.22969785507854,20.931770579795796],[-156.22969785507854,20.918025624746242],[-156.16867985719855,20.874213580525804],[-156.13278691726916,20.86132768516685],[-156.11484044730446,20.82696529754297],[-156.00357233352332,20.795180088990882],[-155.98562586355862,20.767690178891783],[-155.98562586355862,20.723019074980748],[-156.01434021550216,20.686079508285076],[-156.06100103741036,20.651717120661203],[-156.082536801368,20.654294299732996],[-156.14355479924797,20.623368150871507],[-156.19380491514914,20.631958747777475],[-156.30148373493734,20.586428584175835],[-156.37685890878907,20.578697046960464],[-156.43787690666906,20.601032598915985],[-156.46300196461965,20.781435133941336],[-156.4881270225702,20.798616327753273],[-156.53837713847136,20.777998895178946],[-156.6316987822878,20.820951879708794],[-156.67835960419603,20.870777341763414],[-156.69989536815368,20.920602803818035]]],[[[-156.70348466214662,20.532307823668233],[-156.67835960419603,20.55722055469554],[-156.5778593723937,20.606186957059563],[-156.5419664324643,20.58041516634166],[-156.55632360843606,20.542616539955397],[-156.53837713847136,20.528012525215246],[-156.5850379603796,20.511690391093907],[-156.6029844303443,20.524576286452863],[-156.6675917222172,20.504817913569134],[-156.70348466214662,20.532307823668233]]],[[[-157.0624140614406,20.904280669696696],[-157.03728900349003,20.927475281342808],[-156.9906281815818,20.931770579795796],[-156.89730653776536,20.91544844567445],[-156.8362885398854,20.86390486423864],[-156.80757418794187,20.820092820018196],[-156.83987783387832,20.7642539401294],[-156.9080744197442,20.739341209102086],[-156.96909241762415,20.735045910649106],[-156.99421747557474,20.786589492084914],[-157.00498535755355,20.84930084949849],[-157.05523547345473,20.87679075959759],[-157.0624140614406,20.904280669696696]]],[[[-156.918842301723,21.168011994709943],[-156.86859218582185,21.164575755947553],[-156.77168124801247,21.1800388303783],[-156.71066325013248,21.158562338113377],[-156.73937760207602,21.11131405513055],[-156.80398489394892,21.067502010910104],[-156.87577077380772,21.04946175740757],[-157.00139606356063,21.07695166750667],[-157.09471770737707,21.10358251791518],[-157.14855711727117,21.09155568224682],[-157.2526466430664,21.087260383793833],[-157.31007534695345,21.101864398533984],[-157.2885395829958,21.14653550244502],[-157.25623593705936,21.171448233472333],[-157.26341452504525,21.221273695526953],[-157.20239652716526,21.21955557614576],[-157.19162864518643,21.2075287404774],[-157.0157532395324,21.18519318852188],[-156.9619138296383,21.211824038930388],[-156.94755665366654,21.175743531925313],[-156.918842301723,21.168011994709943]]],[[[-156.05741174341742,19.742831968009675],[-156.05023315543156,19.780630594395937],[-155.98203656956568,19.845919130881306],[-155.93896504165042,19.85193254871548],[-155.8923042197422,19.931825099940994],[-155.83487551585515,19.976496203852037],[-155.82410763387634,20.026321665906657],[-155.8851256317563,20.107073276822767],[-155.89948280772808,20.145730962899627],[-155.903072101721,20.235932230412303],[-155.8743577497775,20.267717438964382],[-155.80975045790456,20.259985901749012],[-155.74514316603165,20.232495991649913],[-155.73437528405282,20.205006081550813],[-155.65541081620816,20.16720745516455],[-155.60157140631406,20.126831649706496],[-155.55849987839878,20.131986007850074],[-155.46876752857528,20.104496097750975],[-155.3287850628506,20.038348501575015],[-155.2821242409424,20.02202636745367],[-155.20315977309772,19.969623726327256],[-155.14573106921068,19.920657323963233],[-155.0847130713307,19.85536878747787],[-155.09548095330953,19.814992982019817],[-155.0918916593166,19.737677609866097],[-155.06317730737305,19.72908701296013],[-155.005748603486,19.739395729247292],[-154.98062354553545,19.69042932688326],[-154.98421283952837,19.64146292451924],[-154.9052483716837,19.571020029890292],[-154.82628390383903,19.537516701957017],[-154.80833743387433,19.519476448454483],[-154.82269460984608,19.481677822068214],[-154.86935543175431,19.437865777847776],[-154.93037342963427,19.39748997238972],[-154.98062354553545,19.349382629716295],[-155.06317730737305,19.31673836147361],[-155.13496318723185,19.276362556015556],[-155.20674906709067,19.260899481584815],[-155.2641777709777,19.273785376943763],[-155.29648141691416,19.266053839728393],[-155.36108870878707,19.209355900149],[-155.4185174126741,19.187879407884076],[-155.46517823458234,19.146644542735423],[-155.5154283504835,19.13289958768587],[-155.55849987839878,19.08221506594066],[-155.55491058440583,19.053866096150955],[-155.58362493634934,19.022080887598875],[-155.60157140631406,18.971396365853657],[-155.67335728617286,18.91727560534605],[-155.72719669606695,18.969678246472462],[-155.80616116391164,19.014349350383497],[-155.8851256317563,19.03926208141081],[-155.9210185716857,19.12087275201752],[-155.903072101721,19.217946497054967],[-155.88871492574924,19.3476645103351],[-155.92460786567864,19.438724837538373],[-155.9210185716857,19.47824158330583],[-155.95332221762217,19.488550299592994],[-155.97126868758687,19.58648310432104],[-155.99639374553743,19.643181043900434],[-156.0286973914739,19.650053521425214],[-156.05741174341742,19.742831968009675]]],[[[-158.27918472504723,21.578642526815266],[-158.1248450833508,21.586374064030636],[-158.0781842614426,21.628467988869886],[-158.06382708547085,21.658535078040778],[-158.01716626356261,21.69976994318943],[-157.96691614766146,21.71265583854838],[-157.94538038370382,21.689461226902267],[-157.92384461974618,21.629327048560484],[-157.85205873988738,21.55716603455034],[-157.83770156391563,21.5124949306393],[-157.85205873988738,21.49960903528035],[-157.84129085790858,21.459233229822296],[-157.77668356603564,21.411984946839468],[-157.76591568405684,21.46095134920349],[-157.72284415614155,21.459233229822296],[-157.7372013321133,21.40425340962409],[-157.7084869801698,21.383635977049764],[-157.71207627416274,21.358723246022457],[-157.65105827628275,21.298589067680673],[-157.69412980419804,21.266803859128586],[-157.73361203812038,21.282266933559335],[-157.80898721197212,21.25735420253202],[-157.83052297592974,21.279689754487542],[-157.89154097380973,21.306320604896044],[-157.98127332363322,21.31577026149261],[-158.0889521434214,21.298589067680673],[-158.114077201372,21.302025306443063],[-158.1392022593226,21.374186320453198],[-158.17868449324493,21.403394349933492],[-158.18227378723788,21.430025200342],[-158.23252390313903,21.487582199611992],[-158.23252390313903,21.539984840738406],[-158.27918472504723,21.578642526815266]]],[[[-159.78668820208202,22.030507924069234],[-159.78309890808907,22.064870311693113],[-159.74361667416673,22.097514579935797],[-159.72925949819498,22.13960850477504],[-159.61081279642795,22.20146080249802],[-159.58209844448444,22.22379635445354],[-159.4995446826468,22.2083332800228],[-159.488776800668,22.229809772287716],[-159.43134809678097,22.22036011569115],[-159.40263374483743,22.23238695135951],[-159.34879433494334,22.215205757547572],[-159.31290139501394,22.183420548995485],[-159.29495492504924,22.144762862918626],[-159.29495492504924,22.105246117151168],[-159.33443715897158,22.05112535664356],[-159.33084786497864,21.960065029440287],[-159.3452050409504,21.936011358103578],[-159.44570527275272,21.86900470223702],[-159.47441962469622,21.88189059759597],[-159.6036342084421,21.892199313883133],[-159.668241500315,21.953192551915514],[-159.75438455614554,21.978105282942828],[-159.78668820208202,22.030507924069234]]],[[[-160.24611783317832,21.849246329353292],[-160.23176065720656,21.886185896048957],[-160.18868912929128,21.92398452243522],[-160.12049254342543,21.96264220851208],[-160.11331395543954,21.995286476754764],[-160.0738317215172,22.003018013970134],[-160.06665313353133,21.976387163561633],[-160.08459960349603,21.92742076119761],[-160.07742101551014,21.89649461233612],[-160.14920689536893,21.872440940999404],[-160.20663559925597,21.78911215101151],[-160.24970712717126,21.814883941729413],[-160.24611783317832,21.849246329353292]]]]},"properties":{"name":"Hawaii"},"id":"15"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-71.25675186621866,42.73642364652646],[-71.24598398423984,42.74243706436064],[-71.18137669236692,42.73728270621706],[-71.18496598635986,42.79054440703406],[-71.13112657646576,42.82147055589555],[-71.0629299905999,42.80600748146481],[-71.03062634466345,42.859269182281814],[-70.90141176091761,42.88675909238091],[-70.84757235102352,42.86098730166301],[-70.81885799908,42.87215507764077],[-70.8116794110941,42.81030277991779],[-70.77937576515765,42.693470661996614],[-70.68964341533415,42.65309485653856],[-70.64657188741887,42.689175363543626],[-70.59632177151771,42.65996733406333],[-70.65375047540475,42.58265196190961],[-70.73630423724236,42.576638544075436],[-70.87269740897409,42.546571454904544],[-70.8296258810588,42.5036184703747],[-70.89423317293173,42.46066548584485],[-70.91935823088231,42.46839702306023],[-70.93730470084701,42.41771250131501],[-70.96242975879758,42.44348429203291],[-70.9911441107411,42.407403785027846],[-70.95166187681876,42.34383336792367],[-70.99832269872698,42.35242396482964],[-70.9911441107411,42.31290721906218],[-70.98755481674817,42.26737705546055],[-70.9552511708117,42.284558249272486],[-70.88346529095291,42.3086119206092],[-70.86192952699527,42.27596765236652],[-70.82603658706587,42.265658936079355],[-70.77937576515765,42.2519139810298],[-70.72194706127061,42.20810193680936],[-70.71476847328474,42.168585191041906],[-70.639393299433,42.088692639816394],[-70.64298259342593,42.045739655286546],[-70.66810765137652,42.012236327353264],[-70.71117917929179,42.007941028900284],[-70.70041129731297,41.98732359632596],[-70.62503612346123,41.94351155210551],[-70.58196459554595,41.95038402963029],[-70.55325024360243,41.929766597055966],[-70.52453589165891,41.85846464273642],[-70.53889306763068,41.811216359753594],[-70.4958215397154,41.77427679305792],[-70.41326777787778,41.74420970388703],[-70.29123178211782,41.73390098759987],[-70.25892813618135,41.71414261471614],[-70.1907315503155,41.7519412411024],[-70.12253496444964,41.75881371862718],[-70.02562402664026,41.78716268841688],[-70.00408826268263,41.8086391806818],[-70.00767755667556,41.876504896238956],[-70.0292133206332,41.92890753736537],[-70.07587414254142,41.90227668695686],[-70.07587414254142,41.98560547694476],[-70.09382061250612,42.03285375992759],[-70.14766002240022,42.062061789407885],[-70.17996366833668,42.05604837157371],[-70.19791013830138,42.02254504364043],[-70.23739237222372,42.073229565385645],[-70.1907315503155,42.08267922198221],[-70.11535637646377,42.06721614755147],[-70.03280261462615,42.01739068549685],[-69.96819532275323,41.911726343553426],[-69.93589167681677,41.8094982403724],[-69.92871308883089,41.691807062760624],[-69.98255249872498,41.58098836267362],[-69.98973108671086,41.54318973628735],[-70.01485614466145,41.55092127350273],[-69.97178461674616,41.64713595884958],[-69.99690967469675,41.66689433173331],[-70.09023131851319,41.66259903328032],[-70.2445709602096,41.62823664565645],[-70.3522497799978,41.63510912318122],[-70.37737483794838,41.611055451844514],[-70.43839283582835,41.60504203401033],[-70.49223224572246,41.55178033319333],[-70.61067894748948,41.54318973628735],[-70.66810765137652,41.51312264711646],[-70.73271494324943,41.48649179670796],[-70.79014364713647,41.446115991249904],[-70.86551882098821,41.422062319913195],[-70.94807258282583,41.40917642455424],[-70.92653681886819,41.43151197650976],[-70.8009115291153,41.460720005990055],[-70.69323270932709,41.52600854247542],[-70.6573397693977,41.54318973628735],[-70.639393299433,41.57755212391123],[-70.64298259342593,41.718437913169126],[-70.71835776727767,41.73561910698106],[-70.71835776727767,41.684934585235844],[-70.74348282522826,41.6969614209042],[-70.75784000120001,41.654008436374355],[-70.80809011710117,41.65658561544615],[-70.8009115291153,41.62909570534705],[-70.84398305703057,41.62823664565645],[-70.85475093900939,41.58184742236422],[-70.86910811498115,41.62565946658466],[-70.91217964289643,41.61964604875048],[-70.93730470084701,41.57755212391123],[-70.93012611286113,41.53975349752497],[-70.95166187681876,41.514840766497656],[-71.04139422664227,41.49508239361393],[-71.08446575455754,41.50968640835408],[-71.12035869448694,41.49765957268572],[-71.13112657646576,41.66002185420854],[-71.19573386833868,41.67548492863928],[-71.2244482202822,41.710706375953755],[-71.2603411602116,41.7519412411024],[-71.31776986409864,41.77599491243912],[-71.34648421604216,41.82839755356553],[-71.33930562805628,41.89798138850388],[-71.38237715597155,41.892827030360294],[-71.38237715597155,41.984746417254165],[-71.38237715597155,42.019108804878044],[-71.49723456374564,42.01739068549685],[-71.7987352591526,42.007941028900284],[-71.80232455314552,42.023404103331025],[-72.10382524855248,42.02855846147461],[-72.13612889448895,42.030276580855805],[-72.5094154697547,42.034571879308785],[-72.60632640756407,42.031135640546395],[-72.75707675526755,42.03628999868998],[-72.76784463724637,42.0027866707567],[-72.81809475314753,41.99763231261312],[-72.81450545915459,42.03628999868998],[-73.00832733477334,42.03886717776177],[-73.05498815668156,42.03972623745237],[-73.43186402594026,42.050894013430124],[-73.48570343583435,42.050034953739534],[-73.49647131781317,42.050034953739534],[-73.507239199792,42.0861154607446],[-73.35289955809557,42.50963188820887],[-73.26316720827208,42.74587330312303],[-73.02268451074511,42.74071894497944],[-72.92936286692867,42.73900082559825],[-72.45916535385354,42.726973989929895],[-72.28328994819948,42.72181963178631],[-71.92794984289843,42.712369975189745],[-71.89923549095491,42.71151091549915],[-71.29264480614806,42.696906900759004],[-71.25675186621866,42.73642364652646]]],[[[-70.27687460614607,41.310384560135596],[-70.23021378423785,41.28976712756127],[-70.12612425844259,41.29406242601425],[-70.06151696656967,41.3086664407544],[-70.01844543865438,41.368800619096184],[-69.96101673476734,41.27859935158351],[-69.96460602876029,41.252827560865605],[-70.00049896868968,41.23908260581605],[-70.1189456704567,41.24251884457844],[-70.26610672416724,41.29406242601425],[-70.27687460614607,41.310384560135596]]],[[[-70.83321517505175,41.35333754466544],[-70.76860788317883,41.35333754466544],[-70.70041129731297,41.43065291681916],[-70.6035003595036,41.48219649825498],[-70.56401812558126,41.46931060289602],[-70.53889306763068,41.40917642455424],[-70.48505365773657,41.38598181290812],[-70.44916071780717,41.420344200532],[-70.45275001180012,41.34818318652186],[-70.59991106551065,41.349042246212456],[-70.71117917929179,41.341310708997085],[-70.77578647116471,41.30093490353903],[-70.83321517505175,41.35333754466544]]]]},"properties":{"name":"Massachusetts"},"id":"25"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-64.84268350083501,18.35029620955209],[-64.82114773687736,18.31249758316583],[-64.8785764407644,18.303047926569263],[-64.9324158506585,18.322806299452992],[-64.95754090860909,18.305625105641056],[-65.00061243652436,18.3477190304803],[-65.08675549235492,18.335692194811948],[-65.06163043440435,18.38208141810418],[-65.02573749447494,18.36232304522045],[-64.98266596655967,18.38465859717597],[-64.9144693806938,18.36661834367343],[-64.84268350083501,18.36661834367343],[-64.79602267892679,18.371772701817015],[-64.80320126691267,18.352014328933286],[-64.84268350083501,18.35029620955209]]],[[[-64.90729079270793,17.6810887105771],[-64.88216573475735,17.71201485943859],[-64.8965229107291,17.74637724706247],[-64.87139785277853,17.772149037780373],[-64.83550491284913,17.760981261802613],[-64.80679056090561,17.779880574995744],[-64.74577256302562,17.782457754067536],[-64.724236799068,17.75754502304023],[-64.58425433334334,17.76184032149321],[-64.57707574535745,17.74637724706247],[-64.69193315313153,17.705142381913817],[-64.83909420684206,17.679370591195905],[-64.90729079270793,17.6810887105771]]],[[[-64.79961197291973,18.337410314193136],[-64.75295115101152,18.370913642126418],[-64.71346891708917,18.367477403364028],[-64.65962950719508,18.34342373202732],[-64.7062903291033,18.33998749326493],[-64.70270103511035,18.29789356842568],[-64.7350046810468,18.31507476223762],[-64.78166550295502,18.310779463784634],[-64.79961197291973,18.337410314193136]]]]},"properties":{"name":"United States Virgin Islands"},"id":"78"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-71.19573386833868,41.67548492863928],[-71.13112657646576,41.66002185420854],[-71.12035869448694,41.49765957268572],[-71.19214457434575,41.45814282691826],[-71.21368033830338,41.545766915359145],[-71.2065017503175,41.60074673555735],[-71.2423946902469,41.61964604875048],[-71.23521610226102,41.48305555794557],[-71.296234100141,41.484773677326764],[-71.30341268812688,41.45470658815587],[-71.33930562805628,41.4486931703217],[-71.34289492204923,41.495941453304525],[-71.28546621816218,41.57755212391123],[-71.25675186621866,41.63596818287182],[-71.19573386833868,41.67548492863928]]],[[[-71.36443068600686,41.660880913899135],[-71.34648421604216,41.66689433173331],[-71.30700198211981,41.622223227822275],[-71.32494845208451,41.61620980998809],[-71.36443068600686,41.660880913899135]]],[[[-71.40032362593625,41.460720005990055],[-71.37878786197862,41.50453205021049],[-71.39314503795038,41.52429042309422],[-71.37519856798568,41.573256825458245],[-71.36084139201392,41.55607563164631],[-71.36084139201392,41.48305555794557],[-71.40032362593625,41.460720005990055]]],[[[-71.36084139201392,41.75623653955539],[-71.3859664499645,41.757095599245986],[-71.36443068600686,41.71757885347853],[-71.37160927399273,41.672907749567486],[-71.45057374183742,41.68751176430764],[-71.40750221392214,41.654008436374355],[-71.4039129199292,41.58957895957959],[-71.44698444784447,41.580129302983025],[-71.41827009590095,41.534599139381385],[-71.41827009590095,41.47274684165841],[-71.45416303583036,41.434089155581546],[-71.48287738777388,41.37137779816798],[-71.52594891568916,41.376532156311555],[-71.62285985349854,41.361069081880814],[-71.71977079130791,41.33186105240052],[-71.85616396303963,41.30608926168261],[-71.85975325703257,41.31983421673216],[-71.83103890508904,41.34474694775947],[-71.84180678706787,41.41003548424484],[-71.7987352591526,41.41690796176961],[-71.78796737717377,41.59645143710436],[-71.78796737717377,41.64026348132481],[-71.78796737717377,41.7253103906939],[-71.7987352591526,41.91602164200641],[-71.7987352591526,42.007941028900284],[-71.49723456374564,42.01739068549685],[-71.38237715597155,42.019108804878044],[-71.38237715597155,41.984746417254165],[-71.38237715597155,41.892827030360294],[-71.33930562805628,41.89798138850388],[-71.34648421604216,41.82839755356553],[-71.31776986409864,41.77599491243912],[-71.2603411602116,41.7519412411024],[-71.2244482202822,41.710706375953755],[-71.23521610226102,41.672048689876895],[-71.28546621816218,41.63682724256242],[-71.30700198211981,41.672907749567486],[-71.29264480614806,41.70297483873838],[-71.36084139201392,41.75623653955539]]],[[[-71.61209197151972,41.160049114281136],[-71.57260973759738,41.22877388952889],[-71.55466326763268,41.21674705386053],[-71.55107397363973,41.15145851737517],[-71.61209197151972,41.160049114281136]]]]},"properties":{"name":"Rhode Island"},"id":"44"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.41674360403604,39.801875743447425],[-75.35572560615606,39.839674369833695],[-75.2695825503255,39.84912402643026],[-75.21215384643847,39.8654461605516],[-75.14036796657966,39.88864077219772],[-75.12960008460084,39.959083666826665],[-75.06140349873499,39.99172793506934],[-74.97526044290443,40.04928493433934],[-74.86040303513035,40.08364732196321],[-74.81733150721507,40.12745936618366],[-74.78143856728568,40.12058688865888],[-74.72400986339863,40.15065397782977],[-74.77067068530685,40.21508345462454],[-74.84245656516565,40.25030490193901],[-74.86758162311622,40.29497600585005],[-74.94295679696796,40.34136522914228],[-74.96808185491855,40.39978128810287],[-75.05781420474204,40.41610342222422],[-75.07217138071381,40.45476110830108],[-75.06499279272792,40.536371778907785],[-75.10088573265732,40.568156987459865],[-75.1619037305373,40.563861689006885],[-75.19061808248082,40.591351599105984],[-75.1977966704667,40.60853279291792],[-75.20138596445965,40.64719047899478],[-75.17626090650906,40.67296226971269],[-75.20497525845258,40.69186158290582],[-75.17267161251613,40.77776755196551],[-75.13318937859378,40.77347225351253],[-75.05063561675617,40.87054599854998],[-75.09729643866439,40.92380769936699],[-75.11883220262203,40.968478803278025],[-75.13318937859378,40.98909623585235],[-75.02551055880559,41.03978075759757],[-74.96808185491855,41.09476057779577],[-74.99320691286913,41.09218339872398],[-74.92142103301033,41.13857262201621],[-74.88193879908799,41.18066654685546],[-74.83168868318683,41.28718994848948],[-74.75272421534216,41.34646506714066],[-74.69529551145511,41.357632843118424],[-74.36866975809758,41.20386115850158],[-74.2358658803588,41.1428679204692],[-74.21074082240823,41.133418263872635],[-73.90565083300832,40.99768683275832],[-73.8948829510295,40.99682777306772],[-73.91641871498715,40.91779428153281],[-73.93436518495184,40.88171377452774],[-73.98461530085301,40.799244044230434],[-74.00974035880358,40.76488165660656],[-74.02409753477535,40.70904277671776],[-74.04563329873298,40.69014346352463],[-74.07075835668357,40.66093543404433],[-74.16049070650706,40.644613299922995],[-74.20356223442234,40.63086834487344],[-74.20356223442234,40.59306971848718],[-74.2179194103941,40.5587073308633],[-74.25022305633055,40.54496237581375],[-74.26099093830938,40.502009391283906],[-74.26099093830938,40.46506982458824],[-74.22509799837998,40.45304298891988],[-74.13536564855649,40.45647922768227],[-74.04922259272593,40.418680601296],[-73.99897247682476,40.41094906408063],[-73.98461530085301,40.448747690466895],[-73.97025812488124,40.371432318313175],[-73.98102600686006,40.279512931419305],[-74.03127612276123,40.12316406773067],[-74.03127612276123,40.10082851577515],[-74.07793694466945,39.91097632415323],[-74.09588341463414,39.76235899767997],[-74.23945517435175,39.555325612246115],[-74.31124105421054,39.49948673235732],[-74.30047317223172,39.47886929978299],[-74.33636611216112,39.431621016800165],[-74.45840210792107,39.34485598804987],[-74.54095586975869,39.30018488413884],[-74.63786680756807,39.22115139260392],[-74.71324198141981,39.119782349113486],[-74.79220644926448,38.99178245521455],[-74.86399232912329,38.94023887377873],[-74.93218891498915,38.928212038110374],[-74.97167114891148,38.94023887377873],[-74.95013538495385,39.01583612655126],[-74.89629597505974,39.09916491653916],[-74.88552809308094,39.158440035190345],[-74.91424244502444,39.17733934838348],[-75.02551055880559,39.193661482504815],[-75.04704632276322,39.21513797476974],[-75.11165361463614,39.212560795697954],[-75.13677867258673,39.181634646836464],[-75.16908231852318,39.20225207941079],[-75.17626090650906,39.242627884868845],[-75.24086819838197,39.274413093420925],[-75.2516360803608,39.30018488413884],[-75.28752902029021,39.28987616785167],[-75.3413684301843,39.34829222681226],[-75.36649348813488,39.34141974928749],[-75.40597572205722,39.381795554745544],[-75.4311007800078,39.39124521134211],[-75.4669937199372,39.439352554015535],[-75.53519030580306,39.46082904628046],[-75.51365454184541,39.581097402964026],[-75.5567260697607,39.60601013399133],[-75.56031536375363,39.63006380532805],[-75.51006524785248,39.685902685216845],[-75.47776160191601,39.713392595315945],[-75.45981513195132,39.76579523644236],[-75.4131543100431,39.794144206232055],[-75.41674360403604,39.801875743447425]]]},"properties":{"name":"New Jersey"},"id":"34"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.72183359343593,38.83027923338233],[-75.7469586513865,39.142976960759604],[-75.75772653336533,39.24606412363123],[-75.76131582735827,39.29674864537645],[-75.76849441534415,39.37750025629256],[-75.7900301793018,39.64810405883058],[-75.7900301793018,39.72198319222191],[-75.71824429944299,39.79242608685086],[-75.66440488954889,39.821634116331154],[-75.59620830368303,39.8370971907619],[-75.49929736587366,39.83366095199951],[-75.41674360403604,39.801875743447425],[-75.4131543100431,39.794144206232055],[-75.45981513195132,39.76579523644236],[-75.47776160191601,39.713392595315945],[-75.51006524785248,39.685902685216845],[-75.53160101181011,39.69191610305102],[-75.6105654796548,39.62233226811267],[-75.60338689166892,39.5888289401794],[-75.56390465774658,39.56219808977089],[-75.56031536375363,39.520104164931645],[-75.58902971569715,39.49605049359493],[-75.58902971569715,39.46082904628046],[-75.538779599796,39.416157942369416],[-75.51365454184541,39.3654734206242],[-75.43827936799367,39.313070779497785],[-75.40238642806428,39.2546547205372],[-75.39161854608545,39.204829258482576],[-75.40956501605015,39.174762169311684],[-75.40238642806428,39.066520648296475],[-75.34495772417723,39.02528578314782],[-75.31265407824078,38.94625229161291],[-75.3054754902549,38.91274896367963],[-75.19061808248082,38.80708462173621],[-75.13318937859378,38.7821718907089],[-75.09729643866439,38.80278932328323],[-75.08293926269262,38.77186317442174],[-75.06499279272792,38.66104447433474],[-75.05063561675617,38.45143390982909],[-75.3413684301843,38.45229296951969],[-75.69311924149241,38.46002450673506],[-75.70029782947829,38.5605344905349],[-75.70747641746418,38.63527268361683],[-75.72183359343593,38.83027923338233]]]},"properties":{"name":"Delaware"},"id":"10"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-72.34071865208652,41.280317470964704],[-72.38737947399474,41.26141815777157],[-72.39814735597356,41.27859935158351],[-72.45198676586766,41.27859935158351],[-72.53812982169822,41.25540473993739],[-72.57043346763467,41.268290635296346],[-72.66375511145111,41.26914969498694],[-72.6888801694017,41.24681414303142],[-72.75348746127462,41.26657251591515],[-72.8970592209922,41.24337790426904],[-72.90782710297103,41.29492148570485],[-72.94013074890749,41.280317470964704],[-73.00832733477334,41.20987457633576],[-73.05139886268863,41.20987457633576],[-73.10882756657567,41.168639711187105],[-73.1303633305333,41.14716321892218],[-73.17702415244152,41.16692159180591],[-73.26316720827208,41.11709612975129],[-73.28829226622265,41.12826390572905],[-73.37084602806028,41.10421023439234],[-73.35289955809557,41.0853109211992],[-73.38879249802498,41.0578210111001],[-73.49288202382024,41.04837135450354],[-73.57184649166491,41.00198213121131],[-73.60415013760138,41.01486802657026],[-73.65798954749548,40.98480093739937],[-73.65440025350253,41.01314990718907],[-73.72618613336134,41.10077399562995],[-73.48211414184142,41.21245175540755],[-73.55031072770727,41.295780545395445],[-73.5431321397214,41.36622344002439],[-73.52877496374964,41.526867602166014],[-73.51800708177082,41.66689433173331],[-73.48570343583435,42.050034953739534],[-73.43186402594026,42.050894013430124],[-73.05498815668156,42.03972623745237],[-73.00832733477334,42.03886717776177],[-72.81450545915459,42.03628999868998],[-72.81809475314753,41.99763231261312],[-72.76784463724637,42.0027866707567],[-72.75707675526755,42.03628999868998],[-72.60632640756407,42.031135640546395],[-72.5094154697547,42.034571879308785],[-72.13612889448895,42.030276580855805],[-72.10382524855248,42.02855846147461],[-71.80232455314552,42.023404103331025],[-71.7987352591526,42.007941028900284],[-71.7987352591526,41.91602164200641],[-71.78796737717377,41.7253103906939],[-71.78796737717377,41.64026348132481],[-71.78796737717377,41.59645143710436],[-71.7987352591526,41.41690796176961],[-71.84180678706787,41.41003548424484],[-71.83103890508904,41.34474694775947],[-71.85975325703257,41.31983421673216],[-71.88487831498315,41.3361563508535],[-71.94589631286313,41.337874470234695],[-72.02127148671487,41.31725703766037],[-72.08587877858778,41.31983421673216],[-72.132539600496,41.299216784157835],[-72.18996830438304,41.32327045549455],[-72.21150406834069,41.291485246942464],[-72.34071865208652,41.280317470964704]]]},"properties":{"name":"Connecticut"},"id":"09"},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[145.68735565505654,15.132258608576084],[145.70171283102826,15.156312279912797],[145.70889141901415,15.243077308663082],[145.7411950649506,15.232768592375919],[145.8129809448094,15.290325591645914],[145.83092741477412,15.271426278452783],[145.78067729887294,15.202701503205027],[145.79503447484473,15.148580742697423],[145.7483736529365,15.154594160531602],[145.7483736529365,15.091882803118029],[145.7053021250212,15.107345877548774],[145.68735565505654,15.132258608576084]]],[[[145.5832661292613,15.0162855503455],[145.59762330523301,15.05494323642236],[145.64428412714125,15.101332459714595],[145.66223059710597,15.05494323642236],[145.6478734211342,15.034325803848034],[145.67299847908475,14.999963416224158],[145.66581989109886,14.947560775097749],[145.6335162451624,14.922648044070439],[145.5832661292613,15.0162855503455]]],[[[146.03192787837878,16.00420419453194],[146.06782081830818,16.04114376122761],[146.0821779942799,16.02739880617806],[146.0534636423364,15.9887411201012],[146.03192787837878,16.00420419453194]]],[[[145.81657023880234,17.60377333842338],[145.83451670876707,17.620954532235316],[145.83810600276001,17.578860607396074],[145.81657023880234,17.60377333842338]]],[[[145.70889141901415,18.068524631036304],[145.75914153491533,18.114054794637944],[145.75914153491533,18.164739316383162],[145.79862376883767,18.164739316383162],[145.79862376883767,18.10804137680376],[145.76632012290122,18.096873600826008],[145.73042718297182,18.049625317843173],[145.70889141901415,18.068524631036304]]],[[[145.63710553915536,18.778966995159948],[145.65864130311303,18.81247032309323],[145.69812353703537,18.788416651756513],[145.69453424304243,18.74460460753607],[145.66581989109886,18.72484623465234],[145.6406948331483,18.746322726917263],[145.63710553915536,18.778966995159948]]],[[[145.6335162451624,16.36758644365443],[145.7053021250212,16.369304563035627],[145.71607000700004,16.338378414174137],[145.6478734211342,16.331505936649364],[145.6335162451624,16.36758644365443]]],[[[145.12024720417202,14.124581591505912],[145.15972943809436,14.168393635726353],[145.2351046119461,14.198460724897245],[145.28894402184017,14.190729187681875],[145.28176543385433,14.160662098510983],[145.23869390593904,14.149494322533222],[145.20997955399554,14.115990994599944],[145.1704973200732,14.110836636456362],[145.15255085010847,14.130595009340091],[145.12024720417202,14.124581591505912]]]]},"properties":{"name":"Commonwealth of the Northern Mariana Islands"},"id":"69"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[144.62133533915335,13.451937853768534],[144.63928180911807,13.46482374912749],[144.76131780487805,13.47856870417704],[144.8366929787298,13.596259881788814],[144.8582287426874,13.652098761677614],[144.88335380063796,13.642649105081048],[144.90847885858858,13.60570953838538],[144.9587289744897,13.596259881788814],[144.9228360345603,13.520662629016286],[144.80797862678622,13.427025122741224],[144.77567498084977,13.389226496354961],[144.76849639286388,13.293870870698704],[144.72542486494865,13.245763528025279],[144.6608175730757,13.271535318743183],[144.63569251512513,13.358300347493472],[144.66440686706864,13.401253332023316],[144.62133533915335,13.451937853768534]]]},"properties":{"name":"Guam"},"id":"66"},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-77.11806895668957,38.934225455944556],[-77.04269378283783,38.99435963428633],[-77.00321154891549,38.96515160480604],[-76.90988990509905,38.892990590795904],[-77.03910448884488,38.79162154730547],[-77.04269378283783,38.83972888997889],[-77.03910448884488,38.87151409853098],[-77.11806895668957,38.934225455944556]]]},"properties":{"name":"District of Columbia"},"id":"11"}
]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment