Skip to content

Instantly share code, notes, and snippets.

@emagee
Created November 20, 2015 22:06
Show Gist options
  • Save emagee/9fcb9e67331c342b5cc7 to your computer and use it in GitHub Desktop.
Save emagee/9fcb9e67331c342b5cc7 to your computer and use it in GitHub Desktop.
Average Annual Wages by State
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Average annual wages per employee - by US state</title>
<script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
<link href='https://fonts.googleapis.com/css?family=Amaranth:400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<style type="text/css">
div.tooltip {
text-align: center;
width: auto;
pointer-events: none;
margin-top: 40px;
}
body {
background-color: ivory;
position: relative;
}
#container {
width: 900px;
position: relative;
margin-left: auto;
margin-right: auto;
}
svg {
width: 900px;
position: relative;
padding: 0;
margin-top: -60px;
margin-bottom: -50px;
}
h1 {
font-size: 1.5em;
color: #004080;
text-align: center;
font-family: 'Amaranth', sans-serif;
font-weight: normal;
margin-bottom: 15px;
}
p {
font-size: 0.8em;
padding: 0px 120px 0px 120px;
color: black;
text-align: center;
font-family: Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: normal;
}
.tooltip p {
font-size: 0.95em;
color: #e6550d;
text-align: center;
font-family: Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: normal;
}
span.dataValue {
font-weight: bold;
color: #004080;
}
a:link {
text-decoration: none;
color: #004080;
font-weight: bold;
}
a:hover {
text-decoration: underline;
color: #004080;
}
a:visited {
color:004080;
}
a:active {
color: steelBlue;
}
</style>
</head>
<body>
<div id="container">
<h1>2014 Average Annual Wages, by US State</h1>
<p>This chart uses data from the US Bureau of Labor Statistics's <a href="http://www.bls.gov/cew/">Quarterly Census of Employment and Wages</a>, &ldquo;a quarterly count of employment and wages reported by employers covering 98 percent of US jobs, available at the county, Metropolitan Statistical Area (MSA), state and national levels by industry.&rdquo;</p>
<div class="tooltip"><p>Hover over any state to see the annual average wage for that state.<p></div>
</div>
<script type="text/javascript">
/*
The addCommas function is from http://www.mredkj.com/javascript/nfbasic.html. It's used to format the dollar amounts in the titles/tooltips.
*/
function addCommas(nStr) {
nStr += '';
x = nStr.split('.');
x1 = x[0];
x2 = x.length > 1 ? '.' + x[1] : '';
var rgx = /(\d+)(\d{3})/;
while (rgx.test(x1)) {
x1 = x1.replace(rgx, '$1' + ',' + '$2');
}
return x1 + x2;
}
//Data column used for mapping
var datapoint = "Annual_Wages_per_Employee";
//Width and height
var w = 900;
var h = 500;
//Define map projection
var projection = d3.geo.albersUsa()
.translate([ w/2, h/2 ])
.scale([ 900 ]);
//Define path generator
var path = d3.geo.path()
.projection(projection);
//Define threshold scale to sort data values into meaningful buckets of color
//Colors by Cynthia Brewer (colorbrewer2.org)
var color = d3.scale.threshold()
.domain([30000, 40000, 50000, 60000, 70000, 80000,90000])
.range(["#feedde","#fdd0a2","#fdae6b","#fd8d3c","#f16913","#d94801","#8c2d04"]);
//Create SVG
var svg = d3.select("#container")
.insert("svg")
.attr("width", w)
.attr("height", h);
//Load in salary data
d3.csv("salary_data-national-condensed.csv", function(data) {
//console.log(+data[0][datapoint]);
//Set input domain for color scale
/*color.domain([
d3.min(data, function(d) { return +d[datapoint]; }),
d3.max(data, function(d) { return +d[datapoint]; })
]);*/
//Load in GeoJSON data
d3.json("states.json", function(json) {
//Merge the salary data and GeoJSON into a single array
//
//Loop through once for each state data value
for (var i = 0; i < data.length; i++) {
//Grab state name
var dataStateName = data[i].State;
//Grab data value, and convert from string to float
var dataValue = +data[i][datapoint];
//Find the corresponding country inside the GeoJSON
for (var j = 0; j < json.features.length; j++) {
//We'll check by state names
var jsonStateName = json.features[j].properties["STATE_NAME"];
if (dataStateName == jsonStateName) {
//Copy the data value into the GeoJSON
json.features[j].properties["ANNUAL_WAGE"] = dataValue;
//Stop looking through the JSON
break;
}
}
}
//Bind data and create one path per GeoJSON feature
// Code borrowed from unsuspecting classmate . . .
var groups = svg.selectAll("g")
.data(json.features)
.enter()
.append("g")
.attr("class", "area");
var paths = groups.append("path")
.attr("d", path)
.attr("stroke", "ivory")
.attr("stroke-width", "1")
.on("mouseover", function(d){
d3.select(this)
.style("fill", "#004080");
var value = d.properties["ANNUAL_WAGE"];
var state = d.properties["STATE_NAME"];
// Though the coordinates were coming through correctly, I could not use
// them to position tooltips, so I aborted that endeavor
// and used a stationary div instead.
/*var xPosition = d3.mouse(d3.select("svg").node())[0] + 5;
var yPosition = d3.mouse(d3.select("svg").node())[1] + 5;
console.log(xPosition, yPosition);*/
d3.select(".tooltip")
.html("<p>In <span class='dataValue'>" + state + ", </span>the average wage in 2014 was <span class='dataValue'>$" + addCommas(value) + "</span>.</p>");
})
.on("mouseout", function(){
d3.select(this).style("fill", function(d) {
//Get data value
var value = d.properties["ANNUAL_WAGE"];
if (value) {
//If value exists…
return color(value);
} else {
//If value is undefined…
return "#ccc";
};
});
d3.select("div.tooltip").html("<p>Hover over any state to see the annual average wage for that state.<p>");
})
.style("fill", function(d) {
//Get data value
var value = d.properties["ANNUAL_WAGE"];
if (value) {
//If value exists…
return color(value);
} else {
//If value is undefined…
return "#ccc";
}
});
}); //End d3.json()
}); //End d3.csv()
d3.select("#container")
.insert("img")
.attr("src", "legendCheat-d4.svg");
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
State Annual_Establishments Annual_Average_Employment Total_Annual_Wages Annual_Average_Weekly_Wage Annual_Wages_per_Employee
Alabama 117452 1863561 80668352987 832 43287
Alaska 22088 330105 17633468733 1027 53418
Arizona 146954 2539253 119138234452 902 46919
Arkansas 86833 1157630 46275850668 769 39975
California 1372950 15809082 933404857793 1135 59042
Colorado 179397 2417735 127473603671 1014 52724
Connecticut 113925 1653573 105694291522 1229 63919
Delaware 29975 423598 22540466748 1023 53212
District of Columbia 36246 729349 62634039161 1651 85877
Florida 637262 7755371 347460505024 862 44803
Georgia 280833 4032488 194116221925 926 48138
Hawaii 38412 626146 28307980376 869 45210
Idaho 54669 646305 24548286537 730 37982
Illinois 413479 5762156 311766666166 1040 54106
Indiana 158333 2890758 123010512990 818 42553
Iowa 99418 1515822 64480480136 818 42538
Kansas 85306 1357090 57968996125 821 42716
Kentucky 121114 1807068 75789850050 807 41941
Louisiana 124300 1923745 87215044364 872 45336
Maine 49253 590377 23876157421 778 40442
Maryland 167210 2552623 141387861365 1065 55389
Massachusetts 231749 3360035 215387225022 1233 64103
Michigan 236461 4090009 198310706147 932 48487
Minnesota 164799 2730301 140889422423 992 51602
Mississippi 71280 1102603 40918312781 714 37111
Missouri 184766 2667996 118080711856 851 44258
Montana 43902 440198 17114080042 748 38878
Nebraska 70336 946110 38965264975 792 41185
Nevada 76209 1202475 53783064306 860 44727
New Hampshire 49877 626566 32058224157 984 51165
New Jersey 260037 3841854 232804629204 1165 60597
New Mexico 56201 798912 33494759043 806 41925
New York 619870 8846774 582826673281 1267 65880
North Carolina 259966 4057439 182476291382 865 44973
North Dakota 31587 444652 22612622757 978 50855
Ohio 288995 5183462 238441262372 885 46000
Oklahoma 107012 1582712 69280452781 842 43773
Oregon 134891 1725906 80304610422 895 46529
Pennsylvania 346303 5644443 285425202246 972 50567
Rhode Island 35770 463303 22839461189 948 49297
South Carolina 117766 1895420 77326946258 785 40797
South Dakota 31976 410929 15898806373 744 38690
Tennessee 145729 2750032 124306750659 869 45202
Texas 623544 11379184 605573335013 1023 53218
Utah 90150 1291859 55474674847 826 42942
Vermont 24400 304472 13099942909 827 43025
Virginia 240112 3654831 193445363445 1018 52929
Washington 242942 3043562 167444529426 1058 55016
West Virginia 49866 700846 28875807243 792 41201
Wisconsin 163938 2758496 120902369229 843 43829
Wyoming 25518 284394 13222059999 894 46492
Puerto Rico 46942 907001 24577122510 521 27097
Virgin Islands 3454 37966 1455809247 737 38345
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"STATE_NAME":"Hawaii","DRAWSEQ":1,"STATE_FIPS":"15","SUB_REGION":"Pacific","STATE_ABBR":"HI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-160.07380334546815,22.00417734795773],[-160.0497093454457,21.988164347942817],[-160.0898583454831,21.915870347875487],[-160.17013734555786,21.867596347830528],[-160.20225934558778,21.795308347763203],[-160.24240634562517,21.803280347770627],[-160.2263363456102,21.891592347852875],[-160.121962345513,21.96397834792029],[-160.07380334546815,22.00417734795773]]],[[[-159.33517434478023,21.94834334790573],[-159.43954534487744,21.86807134783097],[-159.57602134500453,21.88413634784593],[-159.64024734506435,21.94836534790575],[-159.7365923451541,21.9644203479207],[-159.8008143452139,22.036666347987985],[-159.71250634513166,22.14905934809266],[-159.57601234500453,22.213179348152376],[-159.39136734483256,22.229120348167225],[-159.34319534478772,22.197016348137325],[-159.29502534474284,22.12481234807008],[-159.32713034477274,22.044639347995414],[-159.33517434478023,21.94834334790573]]],[[[-157.67333034323252,21.298027347300074],[-157.68137134324002,21.273942347277643],[-157.7215013432774,21.281971347285122],[-157.8258713433746,21.249863347255218],[-157.89813434344188,21.330144347329988],[-157.94630634348675,21.30606134730756],[-158.0988333436288,21.290008347292606],[-158.13095134365872,21.354232347352422],[-158.23531834375592,21.47465234746457],[-158.24334234376337,21.538879347524386],[-158.26743134378583,21.58704234756924],[-158.11489434364375,21.579016347561765],[-158.04262634357644,21.675350347651484],[-157.98642834352412,21.699433347673914],[-157.91417934345682,21.6352083476141],[-157.84995934339702,21.506758347494472],[-157.80981534335962,21.43450534742718],[-157.76164334331477,21.45858734744961],[-157.7134723432699,21.386335347382317],[-157.67333034323252,21.298027347300074]]],[[[-156.71787234234267,21.137419347150498],[-156.76604834238753,21.065176347083217],[-156.88648434249973,21.049134347068275],[-157.0711323426717,21.105331347120615],[-157.28789734287355,21.081250347098187],[-157.3039483428885,21.137448347150524],[-157.24774734283616,21.161530347172953],[-157.2316943428212,21.233776347240237],[-157.16747134276142,21.19364034720286],[-157.00690334261185,21.18561034719538],[-156.9925463425985,21.195420347204514],[-156.958733342567,21.209693347217808],[-156.94334634255267,21.172778347183428],[-156.91424234252557,21.167372347178393],[-156.9102143425218,21.158045347169708],[-156.71787234234267,21.137419347150498]]],[[[-157.03905034264181,20.92870734695612],[-156.91058634252215,20.92871834695613],[-156.80620534242496,20.840418346873893],[-156.81422534243242,20.792252346829034],[-156.88648734249972,20.736049346776692],[-156.9667653425745,20.728020346769213],[-156.99086334259692,20.792237346829022],[-156.98282634258945,20.832377346866405],[-157.05509834265675,20.88053834691126],[-157.03905034264181,20.92870734695612]]],[[[-156.1960453418567,20.631649346679463],[-156.27631734193145,20.583484346634606],[-156.3967353420436,20.567427346619652],[-156.436879342081,20.623621346671985],[-156.46097234210342,20.727981346769177],[-156.49307434213333,20.792204346828992],[-156.52519334216322,20.776149346814037],[-156.63758634226792,20.808261346843945],[-156.69378234232025,20.91262434694114],[-156.65363634228285,21.016985347038336],[-156.59743934223053,21.04106434706076],[-156.52519134216323,20.984870347008425],[-156.47702234211837,20.896565346926185],[-156.35660334200622,20.944726346971038],[-156.2602633419165,20.928671346956087],[-156.0113923416847,20.800225346836463],[-155.9873173416623,20.752061346791606],[-156.04351134171463,20.655732346701893],[-156.13180934179687,20.623623346671987],[-156.1960453418567,20.631649346679463]]],[[[-155.66619234136323,18.92178634508703],[-155.7785853414679,19.01009234516927],[-155.85886134154265,19.01010134516928],[-155.90703134158753,19.130513345281422],[-155.87492734155762,19.371358345505726],[-155.94717834162492,19.4837503456104],[-155.97125834164734,19.628252345744976],[-156.04352434171466,19.78078334588703],[-155.97930134165483,19.820922345924416],[-155.88295834156511,19.933312346029084],[-155.82676134151276,20.005563346096373],[-155.83478634152024,20.06175734614871],[-155.89097834157258,20.174149346253383],[-155.85885834154266,20.270479346343098],[-155.73844234143053,20.206256346283283],[-155.56182634126603,20.134007346216],[-155.20055034092957,19.99752834608889],[-155.09618534083236,19.877114345976747],[-155.07210634080994,19.724585345834694],[-154.97576334072022,19.740643345849648],[-154.97576234072022,19.652335345767405],[-154.79109634054822,19.53996034566275],[-154.81518734057067,19.459676345587976],[-154.92758134067535,19.41951834555058],[-155.01588134075757,19.331211345468336],[-155.1523723408847,19.266992345408525],[-155.30489934102675,19.23487834537862],[-155.52167834122864,19.122484345273943],[-155.5377293412436,19.04221034519918],[-155.66619234136323,18.92178634508703]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Washington","DRAWSEQ":2,"STATE_FIPS":"53","SUB_REGION":"Pacific","STATE_ABBR":"WA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-117.03204930538237,48.999931373099486],[-117.02911130537964,48.838075372948744],[-117.03886830538872,48.04618637221124],[-117.03747230538742,47.9710923721413],[-117.04179430539145,47.36144137157352],[-117.04239230539201,47.25850137147765],[-117.04096830539069,47.11931937134803],[-117.04192630539157,46.53660137080533],[-117.03855830538843,46.42798037070417],[-117.04447030539394,46.38857437066747],[-117.06418430541231,46.34869837063033],[-117.02797330537858,46.33542737061797],[-117.00164230535405,46.30244837058726],[-116.97272530532712,46.24930937053777],[-116.96749030532226,46.19755437048957],[-116.9294263052868,46.1654833704597],[-116.9616373053168,46.09727437039618],[-116.98721130534062,46.0785093703787],[-116.95772330531315,46.06568737036676],[-116.91913230527722,45.995175370301084],[-117.4816633058011,45.99983437030543],[-117.60282630591395,46.00026837030583],[-117.98267730626772,45.99988037030547],[-117.99252730627688,46.0016393703071],[-118.98213330719852,45.99905837030471],[-119.03222130724518,45.96627437027417],[-119.14025030734578,45.92570837023639],[-119.17874230738164,45.922351370233265],[-119.30276330749714,45.932662370242866],[-119.37944130756856,45.91761037022885],[-119.4388613076239,45.91426837022574],[-119.51222030769222,45.8992003702117],[-119.58929430776399,45.91331537022485],[-119.62211630779456,45.899410370211896],[-119.67844530784703,45.852539370168245],[-119.83355630799147,45.84160937015807],[-119.86973530802518,45.83169837014884],[-119.9943203081412,45.81114037012969],[-120.06864830821043,45.78020237010088],[-120.1559083082917,45.76126137008324],[-120.20744530833969,45.71978437004461],[-120.28363530841065,45.71658337004163],[-120.44338330855942,45.6892793700162],[-120.49915630861136,45.695630370022116],[-120.57008230867743,45.74091837006429],[-120.62375730872742,45.743610370066804],[-120.65840330875969,45.73261237005656],[-120.69699430879562,45.71050937003597],[-120.86141930894875,45.66518636999376],[-120.90793730899208,45.6354773699661],[-120.94857330902992,45.65031636997991],[-120.96847830904846,45.6451543699751],[-121.033482309109,45.65284436998227],[-121.07353030914629,45.64661036997646],[-121.12520430919443,45.60705936993963],[-121.17431630924017,45.60051636993353],[-121.19205430925669,45.61324236994538],[-121.20330830926716,45.657287369986406],[-121.21427130927736,45.66564536999419],[-121.27639130933522,45.67834037000601],[-121.31997730937582,45.696642370023056],[-121.36781430942037,45.699686370025894],[-121.42202930947087,45.690603370017435],[-121.44255230948997,45.6949673700215],[-121.52905430957054,45.71956737004441],[-121.70641730973571,45.688793370015745],[-121.7586943097844,45.68971637001661],[-121.81104130983316,45.70068337002682],[-121.88828330990509,45.67685637000463],[-121.92682030994098,45.642028369972195],[-121.97265930998367,45.63577636996637],[-122.00001131000914,45.61782436994965],[-122.08203731008555,45.590504369924204],[-122.24492231023724,45.54811236988473],[-122.30315031029147,45.54309236988006],[-122.35645731034111,45.56617136990155],[-122.43715431041628,45.56477936990025],[-122.56542931053573,45.59481836992823],[-122.65120931061563,45.606830369939416],[-122.69632331065765,45.63104536996197],[-122.76054131071746,45.649397369979056],[-122.77255131072863,45.72768537005197],[-122.76428831072094,45.760568370082595],[-122.78800931074304,45.800343370119634],[-122.78451631073978,45.8504493701663],[-122.78407331073936,45.867886370182546],[-122.80622331076,45.90407237021624],[-122.8077413107614,45.94389037025333],[-122.87541731082445,46.0271833703309],[-122.89975731084711,46.07932937037946],[-122.97416931091641,46.110483370408474],[-123.05059631098759,46.155736370450626],[-123.11855431105087,46.17931037047258],[-123.17619631110456,46.18358637047656],[-123.2124373111383,46.17000637046391],[-123.24879931117218,46.14402037043971],[-123.30471731122425,46.14473737044038],[-123.4707733113789,46.27502337056171],[-123.62007631151795,46.25866537054648],[-123.7254593116161,46.28542337057141],[-123.88577131176541,46.2404383705295],[-123.99332931186558,46.31027437059455],[-124.07910731194546,46.267259370554484],[-124.0655103119328,46.639745370901394],[-124.02304331189325,46.58354137084905],[-124.0130023118839,46.383680370662915],[-123.84145131172413,46.404343370682156],[-123.94069331181655,46.481115370753656],[-123.89356731177267,46.51107937078156],[-123.95771231183241,46.61722537088042],[-123.92647031180331,46.67306037093242],[-123.84096631172368,46.71828837097454],[-123.8955423117745,46.7449863709994],[-124.04315831191198,46.71585537097228],[-124.09104931195658,46.72902237098454],[-124.10206731196683,46.78946937104083],[-124.13882731200107,46.89998537114376],[-124.10576031197029,46.908148371151356],[-124.10473831196933,46.874145371119695],[-124.02880831189862,46.823767371072776],[-124.04692931191549,46.887253371131905],[-123.81265531169731,46.963965371203344],[-123.99586431186793,46.97638537121491],[-124.03439431190381,47.031033371265806],[-124.11236131197643,47.042675371276644],[-124.16203631202269,46.92961237117135],[-124.19273331205127,47.16698237139242],[-124.23142531208731,47.275070371493086],[-124.31942731216927,47.34923837156216],[-124.34908031219689,47.526910371727624],[-124.37360531221972,47.6387633718318],[-124.48403531232259,47.80825537198965],[-124.60668531243681,47.87373537205063],[-124.73276931255424,48.149989372307914],[-124.70520931252857,48.23199637238429],[-124.71717531253971,48.37755737251986],[-124.56354731239662,48.35727837250097],[-123.99121531186361,48.15916137231646],[-123.39685731131007,48.11103037227163],[-123.12322231105523,48.14873337230675],[-122.92159431086745,48.09417937225594],[-122.92484431087047,48.066796372230435],[-122.84111131079248,48.13313637229222],[-122.76888231072522,48.14399437230233],[-122.80293131075693,48.08532137224769],[-122.66156031062528,47.91715737209107],[-122.65358531061784,47.86443137204197],[-122.7458703107038,47.80898837199034],[-122.7898013107447,47.80254837198434],[-122.80951731076306,47.85707537203512],[-122.85880431080896,47.827328372007415],[-122.89936331084674,47.672517371863236],[-122.9827443109244,47.605474371800796],[-123.11391531104655,47.45627337166184],[-123.15406031108395,47.348547371561516],[-123.01047131095021,47.35302737156569],[-122.83324731078517,47.43846437164525],[-123.03620631097418,47.3560513715685],[-123.11268531104541,47.37156937158295],[-123.026336310965,47.51593637171741],[-122.91696931086314,47.6146063718093],[-122.75294231071038,47.66068837185222],[-122.72306231068254,47.75689937194182],[-122.61116231057832,47.85000837202854],[-122.61321731058024,47.9361893721088],[-122.5318883105045,47.90946137208391],[-122.4735883104502,47.754980371940036],[-122.62150931058797,47.69696837188601],[-122.58646031055532,47.57119137176887],[-122.55526231052627,47.58350537178033],[-122.54270231051457,47.52273437172374],[-122.50446131047896,47.50721637170929],[-122.55844631052923,47.398363371607914],[-122.5441253105159,47.373927371585154],[-122.588254310557,47.333929371547896],[-122.55315631052432,47.28333237150078],[-122.5805303105498,47.251387371471026],[-122.61154631057869,47.29339837151015],[-122.60691431057438,47.2705713714889],[-122.69974431066083,47.29208537150893],[-122.62875431059472,47.39855337160809],[-122.6374363106028,47.39858037160811],[-122.74154931069975,47.341450371554906],[-122.76970831072599,47.26615637148478],[-122.71980131067951,47.22313137144471],[-122.7612383107181,47.162496371388244],[-122.82510831077758,47.234826371455604],[-122.77333531072937,47.3373603715511],[-122.80218431075623,47.360740371572874],[-122.88037331082904,47.299233371515584],[-123.11543631104797,47.207981371430606],[-123.08120031101609,47.09005837132078],[-123.03134831096966,47.10077437133076],[-122.92315031086889,47.04796337128157],[-122.79004831074494,47.125859371354125],[-122.72818631068732,47.082441371313685],[-122.70007931066114,47.09832537132848],[-122.5918063105603,47.18006037140459],[-122.53076331050346,47.28745637150462],[-122.54658831051819,47.31627637153146],[-122.42409431040412,47.25947237147855],[-122.39284331037501,47.27772237149556],[-122.44160431042042,47.301125371517344],[-122.42083731040108,47.31884437153385],[-122.32537631031218,47.34432337155758],[-122.31973831030692,47.39011537160023],[-122.3926333103748,47.5102423717121],[-122.38222031036511,47.59540937179142],[-122.41481531039547,47.664180371855466],[-122.39449231037653,47.77417637195791],[-122.30292231029125,47.95021437212186],[-122.23012131022347,47.96911337213946],[-122.21699231021123,48.007439372175156],[-122.36833331035217,48.12814137228757],[-122.40201531038355,48.22521637237797],[-122.4628553104402,48.22836337238091],[-122.45441931043234,48.128492372287894],[-122.36133331034566,48.06009737222419],[-122.51451131048832,48.133973372293],[-122.54207431051398,48.21046037236424],[-122.5091303104833,48.25379337240459],[-122.40440431038577,48.24659437239789],[-122.37832031036149,48.28972137243805],[-122.56436631053475,48.414246372554025],[-122.66703231063036,48.41289537255277],[-122.69941331066052,48.4943283726286],[-122.60817831057555,48.51882437265142],[-122.52322831049644,48.45840337259515],[-122.47383331045043,48.46219537259868],[-122.50529931047973,48.55944437268925],[-122.4295453104092,48.59939737272646],[-122.48779831046343,48.63857037276294],[-122.52655831049954,48.71172437283107],[-122.51685331049049,48.757921372874094],[-122.69740431065864,48.80301537291609],[-122.75424231071159,48.90998837301572],[-122.82242131077507,48.95072537305366],[-122.74394031070199,48.95580837305839],[-122.76511931072172,48.99974637309931],[-120.85705930894468,48.99983037309939],[-118.84360330706951,48.999898373099455],[-118.20035430647044,48.999908373099466],[-117.43858030576098,48.999918373099476],[-117.03204930538237,48.999931373099486]]],[[[-122.96797831091064,48.44379437258154],[-123.09523331102915,48.47942237261472],[-123.15972031108922,48.521842372654234],[-123.1698993110987,48.56256437269215],[-123.14105331107183,48.62364737274905],[-123.10372131103706,48.60837737273482],[-123.01209531095174,48.557477372687416],[-123.00869831094857,48.53371937266529],[-122.96798031091063,48.526933372658974],[-123.0222713109612,48.513359372646335],[-123.01888331095805,48.48960537262421],[-122.96797831091064,48.44379437258154]]],[[[-122.73318731069197,48.27664737242587],[-122.66561231062904,48.396777372537755],[-122.60438431057202,48.40478937254522],[-122.52575031049878,48.32104337246722],[-122.52864831050148,48.28351037243227],[-122.62350931058984,48.29635037244422],[-122.73203431069089,48.22541437237816],[-122.61092531057811,48.20632137236038],[-122.54620231051783,48.07685837223981],[-122.49621231047126,48.09407137225584],[-122.37999431036303,48.03214637219817],[-122.35540031034013,47.963886372134596],[-122.38696131036953,47.90454937207933],[-122.44278831042152,47.91805637209191],[-122.47161631044837,47.987509372156595],[-122.54496131051667,47.967531372137984],[-122.60862831057597,48.0314303721975],[-122.69555431065692,48.18118537233697],[-122.76877831072511,48.21881837237201],[-122.73318731069197,48.27664737242587]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Montana","DRAWSEQ":3,"STATE_FIPS":"30","SUB_REGION":"Mountain","STATE_ABBR":"MT"},"geometry":{"type":"Polygon","coordinates":[[[-116.06353130448036,48.9999503730995],[-114.7293253032378,48.99997037309952],[-114.06346330261766,48.999977373099526],[-112.18838730087137,48.999992373099545],[-111.28267930002785,49.00001137309956],[-110.75079729953251,49.000005373099555],[-109.50073729836829,49.000005373099555],[-108.25067529720408,49.00000937309956],[-107.1881212962145,49.00001737309957],[-106.12557929522494,49.00002137309957],[-105.06303429423536,49.00002137309957],[-104.062991293304,49.00002637309957],[-104.05231729329405,48.645824372769695],[-104.05211129329386,48.39101937253239],[-104.04842529329044,48.0000813721683],[-104.04730729328939,47.40001737160945],[-104.0459262932881,47.333832371547814],[-104.04743729328952,46.64294737090437],[-104.04670529328884,46.54253937081086],[-104.04783629328989,46.28088137056717],[-104.04890629329088,45.942993370252495],[-104.04951729329144,45.883052370196665],[-104.04385129328617,45.212875369572515],[-104.04307229328545,44.997805369372216],[-104.05984229330106,44.99733636937178],[-105.04179629421559,45.00107636937526],[-105.08500329425583,44.999817369374085],[-106.02115029512768,44.997213369371664],[-106.25923129534941,44.99616236937068],[-107.89437429687226,44.99977336937405],[-108.25923829721206,45.00011536937437],[-108.62525629755294,44.99759336937201],[-109.79938529864643,44.999522369373814],[-109.99552929882911,45.00279336937686],[-110.39276029919905,44.998625369372974],[-110.42964929923342,44.992285369367075],[-111.05342829981436,44.99569536937025],[-111.05161629981266,44.664490369061795],[-111.0515602998126,44.473323368883754],[-111.09463029985272,44.48612436889567],[-111.12891829988466,44.500757368909305],[-111.13435929988972,44.52790236893458],[-111.17024229992315,44.54518636895068],[-111.17876429993107,44.564851368968995],[-111.21950729996902,44.57317036897675],[-111.23423329998273,44.60256236900412],[-111.2197972999693,44.61798136901848],[-111.22397129997319,44.62690836902679],[-111.27066530001667,44.64221236904105],[-111.27020830001624,44.673802369070465],[-111.29566830003995,44.68293836907897],[-111.3154753000584,44.7051933690997],[-111.31922130006188,44.72786436912081],[-111.34997730009053,44.72617736911924],[-111.37230930011133,44.745087369136854],[-111.38495930012311,44.73769436912997],[-111.39508430013254,44.70886936910313],[-111.44363230017775,44.71317936910714],[-111.47542530020736,44.702162369096875],[-111.48080430021237,44.691416369086866],[-111.46069230019364,44.67002336906694],[-111.45826530019139,44.652555369050674],[-111.47016830020247,44.640710369039645],[-111.50769030023741,44.63768836903683],[-111.50174730023188,44.615971369016606],[-111.51452630024379,44.59319736899539],[-111.49290430022364,44.55118936895627],[-111.46282730019563,44.549942368955115],[-111.45932530019238,44.53792136894391],[-111.48257330021403,44.53614336894226],[-111.49024130022117,44.528697368935326],[-111.56723130029286,44.55286636895784],[-111.60524830032827,44.54298936894864],[-111.68486230040241,44.55075236895587],[-111.71699730043235,44.53376036894004],[-111.76691830047884,44.51882536892613],[-111.79260830050276,44.518462368925796],[-111.80783730051695,44.503982368912304],[-111.87250230057717,44.556265368961],[-111.9403863006404,44.54972636895491],[-111.97781830067525,44.52967636893624],[-112.02361330071791,44.53504336894123],[-112.02707730072113,44.52284336892987],[-112.0593673007512,44.528611368935245],[-112.09989730078895,44.518231368925576],[-112.12419030081158,44.52825336893491],[-112.19965830088186,44.531449368937885],[-112.21776330089872,44.53849536894445],[-112.2303983009105,44.559491368964004],[-112.25667530093496,44.55997236896445],[-112.28234130095886,44.54170236894744],[-112.3425073010149,44.52510036893197],[-112.3405773010131,44.49718036890597],[-112.36758330103825,44.44927036886135],[-112.42075330108777,44.44928436886136],[-112.45851930112295,44.46883436887957],[-112.50183930116329,44.462997368874134],[-112.53932430119819,44.47749736888764],[-112.65318930130424,44.48080236889072],[-112.71432630136118,44.49693536890574],[-112.73371230137924,44.48432036889399],[-112.77986330142222,44.47392236888431],[-112.79622830143747,44.45801136886949],[-112.82669130146583,44.4210843688351],[-112.8187103014584,44.394819368810644],[-112.81739630145718,44.36420236878213],[-112.84427530148221,44.35363936877229],[-112.8707813015069,44.36997836878751],[-112.88730730152228,44.3928523688088],[-112.93828130156976,44.407192368822166],[-112.98524930161349,44.435540368848564],[-113.01201430163843,44.43771536885059],[-113.00665830163344,44.45261536886447],[-113.02030930164615,44.48177636889163],[-113.00771330163442,44.51061236891848],[-113.03782130166246,44.532959368939295],[-113.03966030166417,44.55629436896103],[-113.08303730170456,44.582681368985604],[-113.0542893016778,44.62428936902435],[-113.07314430169536,44.67552536907207],[-113.0989563017194,44.69591636909106],[-113.10170330172195,44.715173369108996],[-113.12743130174591,44.73737936912967],[-113.13827430175601,44.761439369152086],[-113.24033830185107,44.81184136919902],[-113.25715430186673,44.81048636919776],[-113.31868030192403,44.78022836916958],[-113.34063130194447,44.779000369168436],[-113.35002430195323,44.80756836919504],[-113.42137930201967,44.833699369219374],[-113.4455733020422,44.851239369235714],[-113.49619130208936,44.930670369309695],[-113.48734830208112,44.93957436931798],[-113.46341330205883,44.9407753693191],[-113.44876530204519,44.94952236932725],[-113.44102930203798,44.99819436937258],[-113.45885330205458,45.02744936939982],[-113.4554353020514,45.04334936941463],[-113.48630530208014,45.058321369428576],[-113.49015930208374,45.071219369440584],[-113.52060930211209,45.08206336945069],[-113.51022530210243,45.107835369474685],[-113.55227230214157,45.10754936947443],[-113.57437630216216,45.117711369483885],[-113.57158430215956,45.13454536949956],[-113.59409930218054,45.14974236951372],[-113.6009283021869,45.18099236954282],[-113.6455923022285,45.206790369566846],[-113.69012030226996,45.26228136961853],[-113.68870930226865,45.27778836963297],[-113.73908030231556,45.32153036967371],[-113.74131030231763,45.38238636973038],[-113.77502630234903,45.41017236975626],[-113.78566230235894,45.44563336978929],[-113.76916830234359,45.47770736981916],[-113.7723043023465,45.507054369846486],[-113.78093330235454,45.51686536985562],[-113.83371530240369,45.514908369853806],[-113.8037543023758,45.583729369917904],[-113.82248530239323,45.600636369933646],[-113.85202730242075,45.609562369941955],[-113.90330530246851,45.61349136994562],[-113.90219930246748,45.63725336996775],[-113.92353230248735,45.65512436998439],[-113.9266983024903,45.67121136999937],[-113.96414430252517,45.67937837000698],[-113.97114930253169,45.69737637002374],[-114.00947230256737,45.68633237001346],[-114.01987830257707,45.67237837000046],[-114.0109903025688,45.65251136998196],[-114.01803230257535,45.64077336997103],[-114.05651530261119,45.62514436995647],[-114.08296730263582,45.58637836992037],[-114.11813930266858,45.571127369906165],[-114.13204830268154,45.55038236988685],[-114.17266730271938,45.54392436988083],[-114.19480830273999,45.52791736986592],[-114.24199830278394,45.53529036987278],[-114.24788030278941,45.502945369842664],[-114.26223930280278,45.485859369826755],[-114.32643430286257,45.457424369800265],[-114.35024630288476,45.46338336980582],[-114.3714573029045,45.485740369826644],[-114.41905130294883,45.499008369839],[-114.43355530296233,45.527633369865654],[-114.46270830298948,45.54784736988448],[-114.49659130302105,45.54664936988337],[-114.52739230304974,45.55819336989411],[-114.56092430308095,45.54874036988531],[-114.54095830306237,45.5963973699297],[-114.56467830308446,45.62427136995566],[-114.50174130302585,45.65239336998185],[-114.5107063030342,45.674057370002025],[-114.49756130302194,45.69440137002097],[-114.5349763030568,45.7229963700476],[-114.5419583030633,45.74599937006903],[-114.56354230308341,45.7623983700843],[-114.51737530304041,45.81006737012869],[-114.49916430302343,45.842683370159065],[-114.47380330299983,45.83946837015607],[-114.44323130297136,45.85262137016832],[-114.4075253029381,45.84645337016258],[-114.39283830292442,45.87088637018533],[-114.41353030294368,45.91065137022237],[-114.42946030295852,45.92147737023245],[-114.40529030293601,45.95397937026272],[-114.41244730294268,45.97197337027948],[-114.48445530300975,45.98980637029609],[-114.47452930300051,46.009765370314675],[-114.49432130301894,46.02341037032738],[-114.46575630299233,46.05081537035291],[-114.45602930298327,46.082229370382166],[-114.47737030300314,46.107357370405566],[-114.50656830303033,46.11614237041375],[-114.51894430304186,46.136063370432296],[-114.50961330303318,46.15741737045219],[-114.4670183029935,46.15526237045018],[-114.44087930296917,46.168969370462946],[-114.43955330296792,46.22025437051071],[-114.47283330299892,46.243783370532626],[-114.47379530299982,46.25296137054117],[-114.4317953029607,46.28471137057074],[-114.40979630294021,46.39291137067151],[-114.3970173029283,46.399545370677686],[-114.38402530291621,46.428179370704356],[-114.41071530294107,46.48737137075948],[-114.36046830289428,46.50612537077694],[-114.35011530288463,46.51738937078744],[-114.3433193028783,46.58788137085309],[-114.32471230286097,46.62283937088564],[-114.33468530287027,46.65422737091488],[-114.3840173029162,46.66159637092174],[-114.44153630296978,46.645715370906956],[-114.48471830301,46.62357437088633],[-114.54039130306184,46.637891370899666],[-114.61082630312744,46.629048370891425],[-114.64474030315901,46.66082437092102],[-114.6450383031593,46.67092137093043],[-114.6259263031415,46.6871073709455],[-114.67388730318616,46.734721370989845],[-114.69843130320902,46.733760370988946],[-114.74810530325529,46.695132370952976],[-114.78291930328771,46.70304037096034],[-114.77783230328296,46.755717371009396],[-114.79403030329806,46.76653137101947],[-114.8407923033416,46.77553837102786],[-114.86660330336565,46.797045371047886],[-114.90232530339892,46.799433371050114],[-114.94840930344184,46.85244637109949],[-114.94056630343454,46.89088837113529],[-114.92412530341922,46.90716537115044],[-114.96473030345703,46.92521337116725],[-115.00157430349134,46.95880937119854],[-115.03733430352466,46.963001371202445],[-115.0556383035417,46.97335837121209],[-115.08133630356564,47.02652437126161],[-115.13550730361608,47.06355037129609],[-115.14868430362836,47.09174237132235],[-115.17249630365053,47.09757037132778],[-115.1930733036697,47.124026371352414],[-115.29623430376577,47.17955037140412],[-115.32522830379278,47.245150371465215],[-115.34366130380994,47.25502237147441],[-115.40820730387006,47.26359337148239],[-115.42664130388722,47.274374371492435],[-115.50193030395735,47.281644371499205],[-115.52306430397702,47.29198237150884],[-115.55552030400725,47.33461337154854],[-115.59953630404824,47.3700033715815],[-115.6387823040848,47.38004437159085],[-115.66647730411059,47.399167371608655],[-115.75032630418868,47.42247537163037],[-115.75010530418848,47.43396637164106],[-115.73248130417207,47.445303371651626],[-115.65608730410091,47.44918037165523],[-115.64318530408889,47.45779337166326],[-115.64014230408605,47.4752353716795],[-115.69277030413508,47.489540371692826],[-115.70152230414323,47.520893371722025],[-115.7428293041817,47.533691371733944],[-115.69208830413444,47.590721371787055],[-115.6982843041402,47.616080371810675],[-115.73406730417354,47.63987937183283],[-115.73366530417316,47.69555437188469],[-115.77572730421232,47.70973237189789],[-115.79053730422612,47.744838371930584],[-115.83674230426917,47.75628137194124],[-115.84932430428088,47.80518237198679],[-115.86980930429996,47.82745237200753],[-115.90392130433173,47.841074372020216],[-115.93784230436331,47.86712437204447],[-115.99893230442021,47.92514037209851],[-116.02531630444479,47.964939372135575],[-116.05349230447102,47.976191372146054],[-116.0554973044729,48.208483372362394],[-116.05669230447401,48.498665372632644],[-116.06353130448036,48.9999503730995]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Maine","DRAWSEQ":4,"STATE_FIPS":"23","SUB_REGION":"New England","STATE_ABBR":"ME"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-70.81866826234281,43.12187136762512],[-70.83054826235387,43.15917436765986],[-70.81320726233773,43.235222367730685],[-70.90108626241957,43.28102036777334],[-70.90580126242396,43.30206936779294],[-70.96969926248347,43.36638036785283],[-70.97909926249223,43.39618436788059],[-70.96148326247581,43.43812636791965],[-70.97079126248448,43.47021136794953],[-70.95927826247376,43.51638836799253],[-70.96426826247841,43.53198936800707],[-70.94961926246476,43.548953368022865],[-70.95652426247119,43.56414336803701],[-70.97387426248736,43.571830368044175],[-70.9844422624972,43.79116336824844],[-71.00859626251969,44.28214636870571],[-71.02872626253844,44.66853836906556],[-71.08750926259319,45.301469369655024],[-70.95938226247385,45.338865369689856],[-70.87644426239662,45.22544536958422],[-70.84287526236535,45.2781373696333],[-70.81266626233722,45.35467836970458],[-70.82913226235256,45.39072636973815],[-70.7969672623226,45.42517236977023],[-70.63492926217168,45.391967369739305],[-70.71991026225083,45.51295436985198],[-70.55227026209471,45.66066436998955],[-70.39638326194952,45.72204637004671],[-70.416214261968,45.79030937011029],[-70.25396426181689,45.89900437021152],[-70.24746426181083,45.944619370254],[-70.31029526186934,45.96878237027651],[-70.28002226184115,46.05315437035509],[-70.30484926186428,46.06665837036766],[-70.22932526179395,46.13743437043358],[-70.28349626184439,46.19024937048276],[-70.1910582617583,46.33483937061742],[-70.04660726162378,46.42611537070243],[-70.01414426159354,46.57059837083699],[-69.98497726156637,46.69136537094947],[-69.23029626086353,47.4533343716591],[-69.04697626069279,47.42203037162995],[-69.03671426068324,47.25736137147659],[-68.89487226055114,47.182256371406645],[-68.51467326019704,47.296964371513475],[-68.3912572600821,47.28509737150242],[-68.33481426002953,47.35737437156973],[-68.23080725993267,47.352148371564866],[-67.79101125952309,47.06100337129372],[-67.7802892595131,45.947062370256276],[-67.75561525949011,45.91658037022789],[-67.79457125952639,45.878475370192405],[-67.75936725949362,45.8277983701452],[-67.8030532595343,45.7945083701142],[-67.80343325953466,45.6781133700058],[-67.75295525948763,45.65928936998827],[-67.71803425945512,45.68129937000877],[-67.6151402593593,45.60519936993789],[-67.43930125919553,45.59256136992612],[-67.4160842591739,45.50355436984323],[-67.50410625925588,45.48581636982671],[-67.4185552591762,45.3758523697243],[-67.47795025923152,45.28028036963529],[-67.43943525919565,45.18958436955082],[-67.34560525910827,45.122252369488116],[-67.27409525904167,45.18278336954449],[-67.16590525894091,45.15626436951979],[-67.1506612589267,45.121990369487875],[-67.06535825884727,44.959295369336346],[-67.14670625892303,44.904581369285395],[-66.96927125875777,44.82865536921469],[-67.00771925879359,44.780625369169954],[-67.200364258973,44.65378136905181],[-67.30846825907368,44.653521369051575],[-67.38851025914822,44.69140036908685],[-67.57099325931817,44.59833336900017],[-67.61883825936273,44.540239368946075],[-67.8112192595419,44.5540093689589],[-67.858560259586,44.5360773689422],[-67.90004225962463,44.45239936886426],[-67.96834225968823,44.4712283688818],[-67.96343625968366,44.505327368913555],[-67.98652325970517,44.48481236889445],[-68.01639325973298,44.384956368801454],[-68.074379259787,44.38137436879812],[-68.13626425984462,44.47523736888554],[-68.24561425994646,44.49064836889988],[-68.3637652600565,44.4313863688447],[-68.42857126011685,44.465306368876284],[-68.55218626023198,44.39904936881458],[-68.53007526021139,44.28983636871287],[-68.55942726023872,44.25988736868497],[-68.74031026040718,44.34633036876548],[-68.81285126047474,44.32743236874788],[-68.8137682604756,44.41399036882849],[-68.74134826040816,44.50728536891538],[-68.74527926041182,44.552320368957325],[-68.82355226048472,44.60890636901003],[-68.82381326048495,44.664089369061415],[-68.86060926051923,44.61097036901195],[-68.80790326047014,44.56965436897347],[-68.81167826047366,44.494593368903566],[-68.95917926061102,44.43033136884371],[-68.9850282606351,44.27111236869543],[-69.02148226066905,44.24409336867026],[-69.07445826071839,44.06906636850726],[-69.21914026085314,43.94678736839337],[-69.29365026092252,43.94219036838909],[-69.3464542609717,44.01596936845781],[-69.39448826101643,44.02512836846634],[-69.48323326109909,43.887160368337845],[-69.5893262611979,43.84486236829845],[-69.66445326126787,43.85222436830531],[-69.65524526125928,43.98025036842454],[-69.61293226121988,44.03361236847424],[-69.72063526132018,43.93797936838517],[-69.74852826134617,43.893375368343634],[-69.72467126132395,43.784477368242214],[-69.75035926134787,43.761704368221004],[-69.77767326137331,43.79127036824854],[-69.80001326139411,44.02686636846796],[-69.76675526136314,44.04773236848739],[-69.77727626137293,44.07414836851199],[-69.85992826144991,44.00000136844294],[-69.7915282613862,43.75608536821577],[-69.8303922614224,43.727986368189605],[-69.85178526144233,43.74432836820482],[-69.84615526143709,43.84234436829611],[-69.88679126147493,43.87671336832811],[-69.90313226149014,43.790732368248044],[-69.97290326155513,43.768847368227654],[-69.9995002615799,43.78620736824382],[-69.9873702615686,43.845738368299266],[-70.02640326160495,43.84560136829914],[-70.15662826172624,43.78981036824718],[-70.23579826179997,43.68579636815031],[-70.22223926178734,43.57724036804921],[-70.34161026189851,43.53490836800978],[-70.36592526192116,43.430303367912366],[-70.45697726200596,43.349470367837085],[-70.53894126208229,43.33571836782427],[-70.66567226220032,43.09105036759641],[-70.81866826234281,43.12187136762512]]],[[[-68.387921260079,44.377253368794285],[-68.35025426004391,44.398951368814494],[-68.35544926004876,44.428857368842344],[-68.23870925994004,44.43756336885045],[-68.16476925987118,44.33449536875446],[-68.3047052600015,44.290031368713045],[-68.32071126001641,44.22507936865256],[-68.40289026009295,44.27080136869514],[-68.387921260079,44.377253368794285]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"North Dakota","DRAWSEQ":5,"STATE_FIPS":"38","SUB_REGION":"West North Central","STATE_ABBR":"ND"},"geometry":{"type":"Polygon","coordinates":[[[-104.04890629329088,45.942993370252495],[-104.04783629328989,46.28088137056717],[-104.04670529328884,46.54253937081086],[-104.04743729328952,46.64294737090437],[-104.0459262932881,47.333832371547814],[-104.04730729328939,47.40001737160945],[-104.04842529329044,48.0000813721683],[-104.05211129329386,48.39101937253239],[-104.05231729329405,48.645824372769695],[-104.062991293304,49.00002637309957],[-102.93795929225622,49.00002637309957],[-102.02226429140342,49.000015373099565],[-101.50043729091743,49.000020373099574],[-100.18790828969505,49.00000237309955],[-99.53356628908564,49.00000837309956],[-99.0004032885891,49.00000637309955],[-97.93786728759953,48.999992373099545],[-97.22943628693976,48.999987373099536],[-97.21636928692759,48.931830373036064],[-97.17572728688974,48.87375737298198],[-97.17120428688553,48.83598037294679],[-97.1804222868941,48.81553737292775],[-97.16471228687948,48.81036837292294],[-97.17394428688807,48.801514372914696],[-97.14751628686346,48.781170372895744],[-97.13924628685575,48.76354237287933],[-97.14789828686382,48.75565337287198],[-97.13250228684947,48.747218372864126],[-97.13480628685163,48.72623837284459],[-97.11010128682861,48.708583372828144],[-97.1167392868348,48.695243372815725],[-97.09716928681657,48.67452937279643],[-97.1076302868263,48.629946372754915],[-97.12744428684476,48.62979437275477],[-97.12295828684059,48.62076837274636],[-97.14471828686085,48.61402437274008],[-97.14081228685721,48.586905372714824],[-97.1581922868734,48.583640372711784],[-97.15212728686775,48.572856372701736],[-97.16794328688249,48.56226337269187],[-97.14661828686262,48.54953737268002],[-97.1604352868755,48.545078372675874],[-97.15553728687092,48.53839837266965],[-97.13938528685588,48.534648372666155],[-97.14832728686422,48.51795137265061],[-97.13459428685142,48.51731437265001],[-97.14361328685983,48.43810937257625],[-97.1196332868375,48.43710237257531],[-97.12260128684025,48.416110372555764],[-97.1516472868673,48.41961237255902],[-97.14982328686561,48.40999137255006],[-97.12912428684633,48.4078853725481],[-97.15881928687399,48.38820637252977],[-97.135205286852,48.38441037252623],[-97.13378628685068,48.3724543725151],[-97.15039628686614,48.3632153725065],[-97.1311232868482,48.361491372504894],[-97.13713628685379,48.32599137247183],[-97.11259128683093,48.319926372466185],[-97.1326342868496,48.31096937245784],[-97.11475128683294,48.303618372451],[-97.11372128683199,48.294882372442856],[-97.13051328684763,48.29304037244114],[-97.11268328683101,48.286147372434726],[-97.11171428683012,48.277876372427016],[-97.13665528685334,48.264483372414546],[-97.12378428684136,48.259173372409606],[-97.12755428684487,48.23352337238571],[-97.10923528682781,48.22804937238061],[-97.13975428685623,48.22175537237475],[-97.11089928682935,48.20760537236157],[-97.13082828684792,48.20374237235798],[-97.13727528685392,48.19506337234989],[-97.13629128685301,48.17522737233142],[-97.13744328685408,48.16776937232447],[-97.11606528683417,48.15922337231652],[-97.13651328685322,48.14839837230643],[-97.12091828683869,48.1427743723012],[-97.12187328683957,48.11636937227661],[-97.0990302868183,48.10097237226226],[-97.09272128681243,48.07034437223374],[-97.06707128678855,48.04816437221308],[-97.04805328677082,47.95492437212624],[-97.01533128674035,47.917890372091755],[-97.02056628674522,47.87556937205234],[-97.0003402867264,47.87019737204734],[-96.97723128670486,47.82802937200807],[-96.98389328671108,47.809661371990956],[-96.9578302866868,47.79444037197678],[-96.93201228666275,47.763506371947976],[-96.92365928665498,47.71409437190196],[-96.8894252866231,47.67392537186454],[-96.87333528660811,47.61525537180991],[-96.85221728658844,47.601151371796774],[-96.85866428659445,47.56297837176122],[-96.84918828658562,47.54456837174408],[-96.86068728659633,47.521356371722455],[-96.85161528658789,47.50061937170314],[-96.86668428660191,47.46153737166674],[-96.8558272865918,47.43675337164366],[-96.86724828660245,47.41308737162162],[-96.85000528658638,47.408936371617756],[-96.8398272865769,47.38411737159464],[-96.85063128658696,47.36095437157307],[-96.83846128657564,47.34224337155564],[-96.84674728658335,47.3146023715299],[-96.83771428657494,47.2938843715106],[-96.84962328658602,47.25684337147611],[-96.83706528657433,47.240458371460846],[-96.82649128656448,47.17006337139529],[-96.83916428657629,47.15188637137836],[-96.81915128655764,47.09260437132315],[-96.82696428656492,47.07883237131033],[-96.82260828656086,47.033932371268506],[-96.83529628657269,47.010231371246434],[-96.82453128656266,47.003436371240106],[-96.81677228655543,46.96977937120876],[-96.79342528653369,46.96964137120863],[-96.80188728654157,46.95584337119578],[-96.78971028653022,46.948202371188664],[-96.78792528652856,46.93218437117375],[-96.76306828650542,46.936261371177544],[-96.75691128649969,46.92278037116499],[-96.77806128651937,46.86734937111336],[-96.76825028651024,46.84486137109242],[-96.7971972865372,46.812033371061844],[-96.78038228652154,46.76231237101554],[-96.78155628652263,46.70704437096407],[-96.79369528653393,46.67880437093777],[-96.79024628653073,46.6297733708921],[-96.78431728652521,46.624112370886834],[-96.77104128651284,46.59998337086436],[-96.75122728649438,46.58861937085378],[-96.74031628648423,46.4894323707614],[-96.71489428646055,46.46871837074211],[-96.70968228645569,46.42716837070341],[-96.68822828643572,46.41221837068949],[-96.65210128640207,46.35943337064033],[-96.61486128636739,46.3508123706323],[-96.60207428635547,46.33632437061881],[-96.59818328635185,46.23868237052787],[-96.58645628634093,46.2154133705062],[-96.58789028634227,46.191918370484316],[-96.57116628632669,46.17717437047059],[-96.55193128630877,46.09552937039455],[-96.57621528633139,46.0212793703254],[-96.56180228631797,45.947683370256854],[-96.56692128632274,45.93411037024421],[-97.23331028694336,45.936502370246444],[-97.97872228763758,45.93082237024116],[-98.0147092876711,45.93149837024178],[-98.73043728833767,45.93827137024809],[-99.00683328859509,45.93955537024929],[-99.7173452892568,45.94276137025227],[-99.87578328940435,45.94354737025301],[-100.51440628999912,45.94038837025006],[-102.00277529138528,45.942505370252036],[-102.9463972922641,45.94166537025126],[-102.99482329230919,45.94111537025074],[-104.04890629329088,45.942993370252495]]]}},
{"type":"Feature","properties":{"STATE_NAME":"South Dakota","DRAWSEQ":6,"STATE_FIPS":"46","SUB_REGION":"West North Central","STATE_ABBR":"SD"},"geometry":{"type":"Polygon","coordinates":[[[-104.05619929329767,43.00306236751447],[-104.05915729330043,43.47913436795784],[-104.05791429329928,43.50371236798073],[-104.05947929330073,43.852906368305945],[-104.05973129330096,44.14582536857875],[-104.06103629330218,44.18182536861227],[-104.05946529330072,44.57435236897784],[-104.05984229330106,44.99733636937178],[-104.04307229328545,44.997805369372216],[-104.04385129328617,45.212875369572515],[-104.04951729329144,45.883052370196665],[-104.04890629329088,45.942993370252495],[-102.99482329230919,45.94111537025074],[-102.9463972922641,45.94166537025126],[-102.00277529138528,45.942505370252036],[-100.51440628999912,45.94038837025006],[-99.87578328940435,45.94354737025301],[-99.7173452892568,45.94276137025227],[-99.00683328859509,45.93955537024929],[-98.73043728833767,45.93827137024809],[-98.0147092876711,45.93149837024178],[-97.97872228763758,45.93082237024116],[-97.23331028694336,45.936502370246444],[-96.56692128632274,45.93411037024421],[-96.58795528634232,45.81785437013595],[-96.60461028635784,45.80826437012701],[-96.65739128640699,45.738970370062475],[-96.83279628657036,45.65068736998026],[-96.85499028659102,45.609122369941545],[-96.84308728657994,45.584090369918236],[-96.76924628651116,45.5174783698562],[-96.7380322864821,45.45819536980099],[-96.69316928644032,45.4106383697567],[-96.60508428635828,45.39652436974355],[-96.53254928629073,45.37513236972363],[-96.47759228623954,45.328509369680205],[-96.45760228622093,45.298850369652584],[-96.45449628621803,45.27519536963055],[-96.4560802862195,44.97199436934818],[-96.45521728621871,44.801347369189244],[-96.45671828622011,44.62880836902856],[-96.45510628621861,44.53834336894431],[-96.45739728622074,44.19906136862833],[-96.45660228621999,43.848741368302065],[-96.46045428622358,43.49971836797701],[-96.59831528635198,43.499849367977134],[-96.58379628633845,43.48192036796044],[-96.5891132863434,43.435539367917244],[-96.55770828631415,43.40072736788482],[-96.52505328628375,43.38422536786945],[-96.52289428628174,43.356966367844066],[-96.5405632862982,43.307659367798145],[-96.5791312863341,43.29007436778177],[-96.57072228632627,43.26361236775712],[-96.5595672863159,43.25326336774748],[-96.5669912863228,43.23963336773479],[-96.558605286315,43.22548936772162],[-96.48724528624854,43.217909367714554],[-96.47311428623537,43.20908236770634],[-96.45150528621525,43.12630836762925],[-96.46080528622392,43.08787236759345],[-96.46209428622511,43.075582367582],[-96.47957328624139,43.06188436756925],[-96.52001028627905,43.051508367559585],[-96.4990202862595,43.01205036752283],[-96.51714828627638,42.986458367499],[-96.51493528627432,42.952382367467266],[-96.54426328630164,42.913866367431396],[-96.53751128629536,42.896906367415596],[-96.55621128631276,42.846660367368806],[-96.57312628632852,42.83434736735734],[-96.58764528634204,42.8353813673583],[-96.60087528635437,42.799558367324934],[-96.63298028638427,42.776835367303775],[-96.64070928639146,42.74860336727748],[-96.62654028637826,42.70835436724],[-96.56303928631912,42.66851336720289],[-96.54116528629875,42.66240536719721],[-96.51284428627237,42.629755367166794],[-96.48849828624971,42.580480367120906],[-96.50094228626129,42.57388536711476],[-96.48933728625049,42.56402836710558],[-96.48024328624201,42.51713036706191],[-96.43939428620396,42.48924036703593],[-96.49470128625548,42.488459367035205],[-96.5472152863044,42.52049936706504],[-96.58475328633935,42.51828736706298],[-96.60546728635863,42.50723636705269],[-96.62929428638083,42.52269336706709],[-96.6366722863877,42.5507313670932],[-96.71405928645977,42.61230236715054],[-96.7152732864609,42.62190736715949],[-96.69459628644165,42.64116336717742],[-96.6990602864458,42.657715367192836],[-96.72265828646778,42.66859236720296],[-96.7993442865392,42.67001936720429],[-96.81043728654953,42.68134136721484],[-96.81014028654926,42.70408436723602],[-96.9082342866406,42.73169936726174],[-96.97077328669886,42.721147367251916],[-96.97786928670547,42.72730836725765],[-96.97000328669814,42.75206536728071],[-96.97959328670707,42.758313367286526],[-97.01513928674018,42.759542367287665],[-97.13046928684759,42.773923367301066],[-97.16142228687642,42.798619367324065],[-97.21183128692336,42.81257336733706],[-97.2244432869351,42.84120236736372],[-97.24318928695256,42.85182636737362],[-97.27145728697889,42.85001436737193],[-97.3114142870161,42.86177136738288],[-97.38930628708864,42.86743336738815],[-97.45726328715193,42.85044336737233],[-97.48315928717605,42.857157367378576],[-97.50613228719745,42.86013636738136],[-97.57065428725754,42.847990367370045],[-97.63497028731744,42.86128536738242],[-97.68575228736474,42.83683736735966],[-97.72525028740152,42.85800836737937],[-97.77218628744522,42.846164367368345],[-97.79702828746836,42.849597367371544],[-97.8186432874885,42.86658736738737],[-97.88865928755371,42.855807367377324],[-97.88994128755489,42.831271367354475],[-97.92947728759172,42.7923243673182],[-97.96355828762346,42.773690367300844],[-97.99514428765288,42.76681236729444],[-98.03314028768825,42.769192367296654],[-98.12182028777084,42.80836036733314],[-98.12311728777206,42.820223367344184],[-98.14486928779232,42.83579436735869],[-98.1678262878137,42.839571367362204],[-98.31033928794642,42.881794367401525],[-98.39120428802174,42.92013536743723],[-98.45744428808342,42.93716036745309],[-98.49765128812088,42.991778367503954],[-99.25397128882526,42.99238936750453],[-99.53279028908491,42.992335367504474],[-100.19814228970458,42.99109536750332],[-101.23173729066718,42.98684336749936],[-102.08670129146344,42.98988736750219],[-102.78838429211693,42.99530336750724],[-103.00587529231949,42.99935436751102],[-103.50146429278104,42.99861836751033],[-104.05619929329767,43.00306236751447]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Wyoming","DRAWSEQ":7,"STATE_FIPS":"56","SUB_REGION":"Mountain","STATE_ABBR":"WY"},"geometry":{"type":"Polygon","coordinates":[[[-104.0517052932935,41.003211365651964],[-104.93449329411565,40.99428936564365],[-105.2787972944363,40.99634936564557],[-106.20347129529748,41.00008536564905],[-106.3291252954145,41.001289365650166],[-106.86543829591398,40.99845736564753],[-107.30405129632247,41.00013336564909],[-107.91867129689489,41.00337536565211],[-109.04831429794694,40.998433365647514],[-110.00216529883528,40.997599365646735],[-110.06318529889211,40.997892365647004],[-111.0510222998121,40.99658336564579],[-111.05165129981269,41.25842536588965],[-111.05106829981216,41.57859236618782],[-111.04869729980994,41.99620336657675],[-111.04678029980816,42.50325236704899],[-111.04921529981043,43.01988336753013],[-111.04749829980882,43.28473436777679],[-111.04677129980816,43.515528367991735],[-111.05040529981153,43.98255336842669],[-111.0515602998126,44.473323368883754],[-111.05161629981266,44.664490369061795],[-111.05342829981436,44.99569536937025],[-110.42964929923342,44.992285369367075],[-110.39276029919905,44.998625369372974],[-109.99552929882911,45.00279336937686],[-109.79938529864643,44.999522369373814],[-108.62525629755294,44.99759336937201],[-108.25923829721206,45.00011536937437],[-107.89437429687226,44.99977336937405],[-106.25923129534941,44.99616236937068],[-106.02115029512768,44.997213369371664],[-105.08500329425583,44.999817369374085],[-105.04179629421559,45.00107636937526],[-104.05984229330106,44.99733636937178],[-104.05946529330072,44.57435236897784],[-104.06103629330218,44.18182536861227],[-104.05973129330096,44.14582536857875],[-104.05947929330073,43.852906368305945],[-104.05791429329928,43.50371236798073],[-104.05915729330043,43.47913436795784],[-104.05619929329767,43.00306236751447],[-104.05621929329769,42.61466936715274],[-104.05351329329517,41.99981536658012],[-104.05361529329527,41.69821836629923],[-104.05550029329702,41.56422236617444],[-104.05401229329564,41.3880853660104],[-104.0517052932935,41.003211365651964]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Wisconsin","DRAWSEQ":8,"STATE_FIPS":"55","SUB_REGION":"East North Central","STATE_ABBR":"WI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.79738227815547,42.48915236703585],[-88.19479027852559,42.489631367036296],[-88.2979892786217,42.49198836703849],[-88.70662327900227,42.48967136703634],[-88.76505827905669,42.4909223670375],[-88.93918727921886,42.49087936703746],[-89.35955927961037,42.49791736704401],[-89.4006132796486,42.49750236704362],[-89.8347392800529,42.50346836704918],[-89.92369128013574,42.504115367049785],[-90.42010328059807,42.50836536705374],[-90.63845628080142,42.509363367054675],[-90.62570728078956,42.52856236707255],[-90.63921928080214,42.55571436709784],[-90.66438028082557,42.57139136711244],[-90.69479128085389,42.63792836717441],[-90.74561028090122,42.65700136719217],[-90.89254528103807,42.678240367211956],[-90.91940928106308,42.68067736721422],[-90.99918228113738,42.70705836723879],[-91.06616828119977,42.744913367274044],[-91.08203028121454,42.783365367309855],[-91.09342828122514,42.871440367391884],[-91.1391212812677,42.9258933674426],[-91.1522142812799,43.00131636751284],[-91.15975228128691,43.08118236758722],[-91.16857128129513,43.08288836758881],[-91.16135428128841,43.14757636764905],[-91.06905228120245,43.2578983677518],[-91.0664282812,43.28068336777302],[-91.07849828121125,43.31329736780339],[-91.17704828130303,43.35394636784125],[-91.19824328132277,43.37051336785668],[-91.21091628133458,43.42405136790654],[-91.23590328135784,43.464684367944386],[-91.22356628134635,43.500808367978024],[-91.24055828136218,43.54871236802264],[-91.23299028135513,43.59889036806938],[-91.25838928137878,43.67732236814242],[-91.25891628137927,43.722395368184394],[-91.251105281372,43.788075368245565],[-91.29194828141004,43.847190368300616],[-91.37335728148585,43.94719136839375],[-91.42590228153479,43.98561936842954],[-91.52842028163028,44.034215368474804],[-91.56916228166821,44.034955368475494],[-91.6017862816986,44.04082236848096],[-91.65223328174558,44.066895368505236],[-91.75321928183963,44.137227368570734],[-91.84874428192859,44.191187368620994],[-91.8886942819658,44.25749536868275],[-91.92234928199714,44.28834136871147],[-91.92275428199753,44.31752036873865],[-91.93886828201254,44.33911136875876],[-91.97238628204374,44.36448736878239],[-92.09133328215452,44.415589368829984],[-92.20613728226144,44.43839436885122],[-92.24910028230146,44.45621636886782],[-92.29668728234577,44.49218236890132],[-92.32047828236793,44.540491368946306],[-92.34087228238693,44.5528353689578],[-92.5092152825437,44.575159368978596],[-92.60897328263661,44.61029236901132],[-92.63036728265654,44.64265236904146],[-92.73714528275598,44.713594369107525],[-92.80558428281972,44.746160369137854],[-92.76102828277823,44.83537136922094],[-92.76426328278124,44.862234369245954],[-92.77187128278833,44.899496369280655],[-92.75392628277162,44.915002369295095],[-92.74976828276773,44.93565536931433],[-92.7671262827839,45.00100536937519],[-92.76299128278005,45.02211936939486],[-92.7967622828115,45.06561036943536],[-92.74542228276368,45.1130043694795],[-92.74493528276324,45.15642236951994],[-92.76258328277967,45.18661236954806],[-92.755419282773,45.21237636957205],[-92.74659328276478,45.297603369651426],[-92.70738428272827,45.318201369670604],[-92.6848692827073,45.3630763697124],[-92.64875128267366,45.395466369742564],[-92.64497528267015,45.43945236978353],[-92.6548172826793,45.45522136979822],[-92.68542128270781,45.470053369812035],[-92.72815428274761,45.54724236988392],[-92.7621752827793,45.56426336989977],[-92.83503728284715,45.56340236989897],[-92.87683128288607,45.57883636991335],[-92.88539728289405,45.64495536997492],[-92.86001928287041,45.71056237003602],[-92.83363628284584,45.73089037005495],[-92.77910728279507,45.763340370085174],[-92.7487622827668,45.837302370154056],[-92.73409728275314,45.84498037016121],[-92.7062402827272,45.89095837020403],[-92.66620828268992,45.91570337022708],[-92.55267228258418,45.9512693702602],[-92.52397728255745,45.98258337028936],[-92.46234528250005,45.98119737028807],[-92.42499928246528,46.02550437032933],[-92.36496328240936,46.01624837032071],[-92.34622528239191,46.022596370326625],[-92.32737228237436,46.056878370358554],[-92.28937028233896,46.07323137037378],[-92.28894428233856,46.15660037045143],[-92.28868528233832,46.415984370692996],[-92.287271282337,46.658786370919124],[-92.20915428226425,46.64687237090803],[-92.09597028215885,46.74262737099721],[-92.00415728207334,46.68380037094242],[-91.92146128199632,46.680134370939],[-91.55577328165575,46.75686037101046],[-90.86173028100937,46.95247937119265],[-90.77448628092812,46.92023537116262],[-90.77744528093086,46.88312237112805],[-90.92624428106944,46.58550337085087],[-90.73071428088734,46.64569637090693],[-90.54087728071055,46.58752637085276],[-90.40820028058698,46.568610370835145],[-90.38552528056586,46.53965737080817],[-90.31370828049899,46.55156337081927],[-90.30239328048845,46.544296370812496],[-90.30018128048638,46.52505137079457],[-90.26978528045808,46.52248037079218],[-90.25840128044747,46.508789370779425],[-90.21152628040382,46.50629537077711],[-90.16139128035712,46.44238037071758],[-90.14179728033888,46.39389937067243],[-90.11517728031409,46.36515537064566],[-90.1116592803108,46.34042937062263],[-89.9251362801371,46.30402537058873],[-89.09980627936845,46.14564237044122],[-88.9853012792618,46.10039137039908],[-88.92519527920582,46.07360137037413],[-88.80439727909332,46.026804370330545],[-88.79381527908347,46.036360370339445],[-88.77748027906826,46.032614370335956],[-88.7730172790641,46.02114737032528],[-88.72640927902069,46.02958137033313],[-88.70360527899946,46.01892337032321],[-88.67738427897504,46.020144370324346],[-88.64366927894363,45.99338837029943],[-88.6155022789174,45.99412037030011],[-88.59753627890068,46.01551637032003],[-88.57535727888002,46.008959370313924],[-88.54835827885486,46.019300370323556],[-88.51561327882438,46.01860937032291],[-88.49408327880433,46.01296037031766],[-88.48381427879475,45.99915137030479],[-88.45431927876729,46.00076037030629],[-88.40352227871998,45.98342237029014],[-88.3699382786887,45.994587370300536],[-88.32132327864343,45.96671237027458],[-88.29915227862278,45.96194437027014],[-88.25716827858368,45.9670553702749],[-88.2149922785444,45.94790137025706],[-88.18019427851199,45.95351637026229],[-88.15043827848427,45.93629337024625],[-88.11139027844791,45.926287370236935],[-88.09385027843157,45.920615370231644],[-88.09576427843336,45.89180337020481],[-88.0654212784051,45.8736423701879],[-88.12178627845759,45.8348783701518],[-88.12994927846519,45.81940237013738],[-88.08873427842681,45.791532370111426],[-88.05163927839226,45.78611237010638],[-87.99007027833493,45.795046370114704],[-87.96917927831547,45.76644837008807],[-87.87362927822647,45.750699370073406],[-87.84236227819736,45.722418370047066],[-87.80155327815935,45.71139137003679],[-87.80115627815898,45.70132437002742],[-87.77747327813692,45.684101370011376],[-87.78094527814017,45.67591537000375],[-87.81705427817379,45.66539036999395],[-87.81993827817648,45.65445036998376],[-87.7760452781356,45.613200369945346],[-87.7750752781347,45.600387369933415],[-87.78631227814516,45.56851936990373],[-87.82860227818455,45.5685913699038],[-87.8051412781627,45.544525369881384],[-87.78938527814802,45.499067369839054],[-87.81361427817059,45.466460369808686],[-87.86026727821404,45.44509836978879],[-87.84953127820404,45.40611736975249],[-87.88361027823578,45.36585436971499],[-87.8739742782268,45.36208536971148],[-87.86853527822174,45.37207236972078],[-87.86209627821574,45.370165369719004],[-87.84128227819636,45.34614936969663],[-87.82800827818399,45.35832136970797],[-87.76003827812069,45.352897369702916],[-87.68959827805509,45.39126936973865],[-87.64368427801233,45.36185636971126],[-87.64536227801389,45.34816936969852],[-87.70447127806894,45.27220536962777],[-87.70514227806956,45.247086369604375],[-87.71966827808309,45.23677136959477],[-87.72162827808492,45.211672369571396],[-87.7362002780985,45.19907236955966],[-87.7296692780924,45.17660436953874],[-87.67281427803945,45.14067236950527],[-87.66488627803207,45.10905436947583],[-87.5812762779542,45.0946403694624],[-87.61852127798889,45.05680736942716],[-87.62033527799058,44.99199736936681],[-87.74855527810999,44.961616369338515],[-87.83999227819515,44.92732336930658],[-87.8310202781868,44.8733463692563],[-87.98579127833094,44.72047436911393],[-87.98318227832851,44.67726536907369],[-88.01328827835654,44.63911836903816],[-87.97575827832159,44.595814368997836],[-88.0130212783563,44.622234369022436],[-88.04041727838181,44.57144936897514],[-87.96622827831271,44.53549636894166],[-87.92640827827563,44.539139368945044],[-87.86878227822197,44.61690636901747],[-87.7642262781246,44.64404836904275],[-87.72382127808696,44.68928736908488],[-87.6144642779851,44.833047369218775],[-87.55278727792768,44.851335369235805],[-87.55167227792663,44.82302336920944],[-87.4337472778168,44.89109636927283],[-87.36745927775507,44.81156736919877],[-87.31446527770572,44.79471836918307],[-87.37307027776029,44.67691836907336],[-87.47352827785386,44.533946368940214],[-87.53748927791342,44.32785136874827],[-87.51732227789465,44.17575436860662],[-87.64437027801297,44.09783036853405],[-87.72612227808911,43.893904368344124],[-87.70273027806732,43.673176368138556],[-87.78604527814491,43.54629736802039],[-87.80295927816066,43.458714367938825],[-87.87533227822807,43.358592367845574],[-87.88983427824157,43.19721636769529],[-87.86006927821386,43.07587536758228],[-87.89198327824357,43.02577436753562],[-87.83643827819185,42.96459236747864],[-87.81984927817639,42.84156336736406],[-87.75680327811767,42.77754636730444],[-87.79150927815,42.66664236720115],[-87.79738227815547,42.48915236703585]]],[[[-87.034524277445,45.290405369644716],[-86.98625327740005,45.2986573696524],[-86.96771227738277,45.24027736959803],[-86.99573427740887,45.218411369577666],[-87.04511227745486,45.249019369606174],[-87.02544827743655,45.149974369513934],[-87.07987627748724,45.14730736951145],[-87.04490127745467,45.09551336946321],[-87.0876782774945,45.09217836946011],[-87.08390027749098,45.05328536942389],[-87.11255727751768,45.06476336943457],[-87.17869227757927,44.982806369358244],[-87.16878827757004,44.93332336931216],[-87.20565027760438,44.873239369256204],[-87.3111232777026,44.79877336918685],[-87.37873727776558,44.83774236922314],[-87.40541927779043,44.91120036929156],[-87.3421612777315,45.01521336938843],[-87.28348427767686,45.05261936942327],[-87.2309152776279,45.1750633695373],[-87.17791327757854,45.154973369518586],[-87.06606427747438,45.29646236965036],[-87.034524277445,45.290405369644716]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Idaho","DRAWSEQ":9,"STATE_FIPS":"16","SUB_REGION":"Mountain","STATE_ABBR":"ID"},"geometry":{"type":"Polygon","coordinates":[[[-116.91913230527722,45.995175370301084],[-116.95772330531315,46.06568737036676],[-116.98721130534062,46.0785093703787],[-116.9616373053168,46.09727437039618],[-116.9294263052868,46.1654833704597],[-116.96749030532226,46.19755437048957],[-116.97272530532712,46.24930937053777],[-117.00164230535405,46.30244837058726],[-117.02797330537858,46.33542737061797],[-117.06418430541231,46.34869837063033],[-117.04447030539394,46.38857437066747],[-117.03855830538843,46.42798037070417],[-117.04192630539157,46.53660137080533],[-117.04096830539069,47.11931937134803],[-117.04239230539201,47.25850137147765],[-117.04179430539145,47.36144137157352],[-117.03747230538742,47.9710923721413],[-117.03886830538872,48.04618637221124],[-117.02911130537964,48.838075372948744],[-117.03204930538237,48.999931373099486],[-116.06353130448036,48.9999503730995],[-116.05669230447401,48.498665372632644],[-116.0554973044729,48.208483372362394],[-116.05349230447102,47.976191372146054],[-116.02531630444479,47.964939372135575],[-115.99893230442021,47.92514037209851],[-115.93784230436331,47.86712437204447],[-115.90392130433173,47.841074372020216],[-115.86980930429996,47.82745237200753],[-115.84932430428088,47.80518237198679],[-115.83674230426917,47.75628137194124],[-115.79053730422612,47.744838371930584],[-115.77572730421232,47.70973237189789],[-115.73366530417316,47.69555437188469],[-115.73406730417354,47.63987937183283],[-115.6982843041402,47.616080371810675],[-115.69208830413444,47.590721371787055],[-115.7428293041817,47.533691371733944],[-115.70152230414323,47.520893371722025],[-115.69277030413508,47.489540371692826],[-115.64014230408605,47.4752353716795],[-115.64318530408889,47.45779337166326],[-115.65608730410091,47.44918037165523],[-115.73248130417207,47.445303371651626],[-115.75010530418848,47.43396637164106],[-115.75032630418868,47.42247537163037],[-115.66647730411059,47.399167371608655],[-115.6387823040848,47.38004437159085],[-115.59953630404824,47.3700033715815],[-115.55552030400725,47.33461337154854],[-115.52306430397702,47.29198237150884],[-115.50193030395735,47.281644371499205],[-115.42664130388722,47.274374371492435],[-115.40820730387006,47.26359337148239],[-115.34366130380994,47.25502237147441],[-115.32522830379278,47.245150371465215],[-115.29623430376577,47.17955037140412],[-115.1930733036697,47.124026371352414],[-115.17249630365053,47.09757037132778],[-115.14868430362836,47.09174237132235],[-115.13550730361608,47.06355037129609],[-115.08133630356564,47.02652437126161],[-115.0556383035417,46.97335837121209],[-115.03733430352466,46.963001371202445],[-115.00157430349134,46.95880937119854],[-114.96473030345703,46.92521337116725],[-114.92412530341922,46.90716537115044],[-114.94056630343454,46.89088837113529],[-114.94840930344184,46.85244637109949],[-114.90232530339892,46.799433371050114],[-114.86660330336565,46.797045371047886],[-114.8407923033416,46.77553837102786],[-114.79403030329806,46.76653137101947],[-114.77783230328296,46.755717371009396],[-114.78291930328771,46.70304037096034],[-114.74810530325529,46.695132370952976],[-114.69843130320902,46.733760370988946],[-114.67388730318616,46.734721370989845],[-114.6259263031415,46.6871073709455],[-114.6450383031593,46.67092137093043],[-114.64474030315901,46.66082437092102],[-114.61082630312744,46.629048370891425],[-114.54039130306184,46.637891370899666],[-114.48471830301,46.62357437088633],[-114.44153630296978,46.645715370906956],[-114.3840173029162,46.66159637092174],[-114.33468530287027,46.65422737091488],[-114.32471230286097,46.62283937088564],[-114.3433193028783,46.58788137085309],[-114.35011530288463,46.51738937078744],[-114.36046830289428,46.50612537077694],[-114.41071530294107,46.48737137075948],[-114.38402530291621,46.428179370704356],[-114.3970173029283,46.399545370677686],[-114.40979630294021,46.39291137067151],[-114.4317953029607,46.28471137057074],[-114.47379530299982,46.25296137054117],[-114.47283330299892,46.243783370532626],[-114.43955330296792,46.22025437051071],[-114.44087930296917,46.168969370462946],[-114.4670183029935,46.15526237045018],[-114.50961330303318,46.15741737045219],[-114.51894430304186,46.136063370432296],[-114.50656830303033,46.11614237041375],[-114.47737030300314,46.107357370405566],[-114.45602930298327,46.082229370382166],[-114.46575630299233,46.05081537035291],[-114.49432130301894,46.02341037032738],[-114.47452930300051,46.009765370314675],[-114.48445530300975,45.98980637029609],[-114.41244730294268,45.97197337027948],[-114.40529030293601,45.95397937026272],[-114.42946030295852,45.92147737023245],[-114.41353030294368,45.91065137022237],[-114.39283830292442,45.87088637018533],[-114.4075253029381,45.84645337016258],[-114.44323130297136,45.85262137016832],[-114.47380330299983,45.83946837015607],[-114.49916430302343,45.842683370159065],[-114.51737530304041,45.81006737012869],[-114.56354230308341,45.7623983700843],[-114.5419583030633,45.74599937006903],[-114.5349763030568,45.7229963700476],[-114.49756130302194,45.69440137002097],[-114.5107063030342,45.674057370002025],[-114.50174130302585,45.65239336998185],[-114.56467830308446,45.62427136995566],[-114.54095830306237,45.5963973699297],[-114.56092430308095,45.54874036988531],[-114.52739230304974,45.55819336989411],[-114.49659130302105,45.54664936988337],[-114.46270830298948,45.54784736988448],[-114.43355530296233,45.527633369865654],[-114.41905130294883,45.499008369839],[-114.3714573029045,45.485740369826644],[-114.35024630288476,45.46338336980582],[-114.32643430286257,45.457424369800265],[-114.26223930280278,45.485859369826755],[-114.24788030278941,45.502945369842664],[-114.24199830278394,45.53529036987278],[-114.19480830273999,45.52791736986592],[-114.17266730271938,45.54392436988083],[-114.13204830268154,45.55038236988685],[-114.11813930266858,45.571127369906165],[-114.08296730263582,45.58637836992037],[-114.05651530261119,45.62514436995647],[-114.01803230257535,45.64077336997103],[-114.0109903025688,45.65251136998196],[-114.01987830257707,45.67237837000046],[-114.00947230256737,45.68633237001346],[-113.97114930253169,45.69737637002374],[-113.96414430252517,45.67937837000698],[-113.9266983024903,45.67121136999937],[-113.92353230248735,45.65512436998439],[-113.90219930246748,45.63725336996775],[-113.90330530246851,45.61349136994562],[-113.85202730242075,45.609562369941955],[-113.82248530239323,45.600636369933646],[-113.8037543023758,45.583729369917904],[-113.83371530240369,45.514908369853806],[-113.78093330235454,45.51686536985562],[-113.7723043023465,45.507054369846486],[-113.76916830234359,45.47770736981916],[-113.78566230235894,45.44563336978929],[-113.77502630234903,45.41017236975626],[-113.74131030231763,45.38238636973038],[-113.73908030231556,45.32153036967371],[-113.68870930226865,45.27778836963297],[-113.69012030226996,45.26228136961853],[-113.6455923022285,45.206790369566846],[-113.6009283021869,45.18099236954282],[-113.59409930218054,45.14974236951372],[-113.57158430215956,45.13454536949956],[-113.57437630216216,45.117711369483885],[-113.55227230214157,45.10754936947443],[-113.51022530210243,45.107835369474685],[-113.52060930211209,45.08206336945069],[-113.49015930208374,45.071219369440584],[-113.48630530208014,45.058321369428576],[-113.4554353020514,45.04334936941463],[-113.45885330205458,45.02744936939982],[-113.44102930203798,44.99819436937258],[-113.44876530204519,44.94952236932725],[-113.46341330205883,44.9407753693191],[-113.48734830208112,44.93957436931798],[-113.49619130208936,44.930670369309695],[-113.4455733020422,44.851239369235714],[-113.42137930201967,44.833699369219374],[-113.35002430195323,44.80756836919504],[-113.34063130194447,44.779000369168436],[-113.31868030192403,44.78022836916958],[-113.25715430186673,44.81048636919776],[-113.24033830185107,44.81184136919902],[-113.13827430175601,44.761439369152086],[-113.12743130174591,44.73737936912967],[-113.10170330172195,44.715173369108996],[-113.0989563017194,44.69591636909106],[-113.07314430169536,44.67552536907207],[-113.0542893016778,44.62428936902435],[-113.08303730170456,44.582681368985604],[-113.03966030166417,44.55629436896103],[-113.03782130166246,44.532959368939295],[-113.00771330163442,44.51061236891848],[-113.02030930164615,44.48177636889163],[-113.00665830163344,44.45261536886447],[-113.01201430163843,44.43771536885059],[-112.98524930161349,44.435540368848564],[-112.93828130156976,44.407192368822166],[-112.88730730152228,44.3928523688088],[-112.8707813015069,44.36997836878751],[-112.84427530148221,44.35363936877229],[-112.81739630145718,44.36420236878213],[-112.8187103014584,44.394819368810644],[-112.82669130146583,44.4210843688351],[-112.79622830143747,44.45801136886949],[-112.77986330142222,44.47392236888431],[-112.73371230137924,44.48432036889399],[-112.71432630136118,44.49693536890574],[-112.65318930130424,44.48080236889072],[-112.53932430119819,44.47749736888764],[-112.50183930116329,44.462997368874134],[-112.45851930112295,44.46883436887957],[-112.42075330108777,44.44928436886136],[-112.36758330103825,44.44927036886135],[-112.3405773010131,44.49718036890597],[-112.3425073010149,44.52510036893197],[-112.28234130095886,44.54170236894744],[-112.25667530093496,44.55997236896445],[-112.2303983009105,44.559491368964004],[-112.21776330089872,44.53849536894445],[-112.19965830088186,44.531449368937885],[-112.12419030081158,44.52825336893491],[-112.09989730078895,44.518231368925576],[-112.0593673007512,44.528611368935245],[-112.02707730072113,44.52284336892987],[-112.02361330071791,44.53504336894123],[-111.97781830067525,44.52967636893624],[-111.9403863006404,44.54972636895491],[-111.87250230057717,44.556265368961],[-111.80783730051695,44.503982368912304],[-111.79260830050276,44.518462368925796],[-111.76691830047884,44.51882536892613],[-111.71699730043235,44.53376036894004],[-111.68486230040241,44.55075236895587],[-111.60524830032827,44.54298936894864],[-111.56723130029286,44.55286636895784],[-111.49024130022117,44.528697368935326],[-111.48257330021403,44.53614336894226],[-111.45932530019238,44.53792136894391],[-111.46282730019563,44.549942368955115],[-111.49290430022364,44.55118936895627],[-111.51452630024379,44.59319736899539],[-111.50174730023188,44.615971369016606],[-111.50769030023741,44.63768836903683],[-111.47016830020247,44.640710369039645],[-111.45826530019139,44.652555369050674],[-111.46069230019364,44.67002336906694],[-111.48080430021237,44.691416369086866],[-111.47542530020736,44.702162369096875],[-111.44363230017775,44.71317936910714],[-111.39508430013254,44.70886936910313],[-111.38495930012311,44.73769436912997],[-111.37230930011133,44.745087369136854],[-111.34997730009053,44.72617736911924],[-111.31922130006188,44.72786436912081],[-111.3154753000584,44.7051933690997],[-111.29566830003995,44.68293836907897],[-111.27020830001624,44.673802369070465],[-111.27066530001667,44.64221236904105],[-111.22397129997319,44.62690836902679],[-111.2197972999693,44.61798136901848],[-111.23423329998273,44.60256236900412],[-111.21950729996902,44.57317036897675],[-111.17876429993107,44.564851368968995],[-111.17024229992315,44.54518636895068],[-111.13435929988972,44.52790236893458],[-111.12891829988466,44.500757368909305],[-111.09463029985272,44.48612436889567],[-111.0515602998126,44.473323368883754],[-111.05040529981153,43.98255336842669],[-111.04677129980816,43.515528367991735],[-111.04749829980882,43.28473436777679],[-111.04921529981043,43.01988336753013],[-111.04678029980816,42.50325236704899],[-111.04869729980994,41.99620336657675],[-111.49458630022521,42.000171366580446],[-112.10051430078953,42.00230036658243],[-112.14711630083293,41.999054366579415],[-112.98957530161753,42.00114636658136],[-114.03907230259495,41.995391366576],[-114.26947130280954,41.995924366576496],[-115.02486330351303,41.99650636657704],[-115.94754430437234,41.99459936657526],[-116.99231330534536,41.99479436657545],[-117.0188643053701,41.99479436657545],[-117.02629530537702,43.67903136814401],[-117.02379430537468,43.753701368213555],[-117.0371173053871,43.8001423682568],[-117.02762630537825,43.83156736828607],[-117.0105053053623,43.83976936829371],[-117.01622030536763,43.852972368306006],[-116.98577030533927,43.85935136831195],[-116.97814830533218,43.8734693683251],[-116.97814130533217,43.90444136835394],[-116.95971630531501,43.92857736837642],[-116.96795730532268,43.96319536840866],[-116.93359330529069,44.01420236845617],[-116.97681730533094,44.07389436851176],[-116.96344330531849,44.09029836852703],[-116.94688630530305,44.093025368529574],[-116.9022543052615,44.1463133685792],[-116.91305130527155,44.17730436860806],[-116.98187130533564,44.19784236862719],[-116.9761273053303,44.22518236865265],[-116.99270730534573,44.24706336867303],[-117.0303523053808,44.249336368675145],[-117.05202730540098,44.23155636865859],[-117.08138730542832,44.243846368670035],[-117.10056030544618,44.26707836869167],[-117.11269230545747,44.26980536869421],[-117.14327930548598,44.25063236867636],[-117.17072330551153,44.25333236867887],[-117.21357230555142,44.2847193687081],[-117.21745530555505,44.30066536872295],[-117.20160230554029,44.33943836875906],[-117.23692130557318,44.38998236880613],[-117.21722130555483,44.427855368841406],[-117.22441030556152,44.47298736888344],[-117.20396230554249,44.485785368895364],[-117.18739130552706,44.511805368919596],[-117.14516030548772,44.534655368940875],[-117.14394030548658,44.55928736896381],[-117.13050430547406,44.572523368976135],[-117.07935430542643,44.68933636908493],[-117.06651330541447,44.697557369092586],[-117.03957230538938,44.749115369140604],[-116.95149430530736,44.776035369165676],[-116.90962030526836,44.82894036921495],[-116.89736730525695,44.84855536923321],[-116.86707630522874,44.86860836925189],[-116.83539630519923,44.92014436929989],[-116.84755630521056,44.954850369332206],[-116.83139630519551,44.97263336934877],[-116.84815930521111,44.97174136934794],[-116.85588730521832,44.9799653693556],[-116.84809730521106,45.0000423693743],[-116.85451330521704,45.016945369390044],[-116.80730730517307,45.049755369420595],[-116.78721030515436,45.075752369444814],[-116.77809230514586,45.0994803694669],[-116.76126830513019,45.10630036947326],[-116.73658530510721,45.13730736950214],[-116.68881330506271,45.26235036961859],[-116.6722653050473,45.335410369686635],[-116.56577230494813,45.45986336980254],[-116.55450330493763,45.49364736983401],[-116.4785513048669,45.56605836990144],[-116.47041830485932,45.60625736993888],[-116.51491530490075,45.664491369993115],[-116.5282753049132,45.71072837003618],[-116.56063230494334,45.74742437007035],[-116.65439830503067,45.78063037010128],[-116.7031803050761,45.819169370137175],[-116.77370730514178,45.81976337013772],[-116.79126230515813,45.84586737016203],[-116.85647230521886,45.9035973702158],[-116.89819730525772,45.98051637028743],[-116.91913230527722,45.995175370301084]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Vermont","DRAWSEQ":10,"STATE_FIPS":"50","SUB_REGION":"New England","STATE_ABBR":"VT"},"geometry":{"type":"Polygon","coordinates":[[[-73.25806026461467,42.74605836727511],[-73.26927526462511,42.747481367276436],[-73.29616926465016,42.80354936732866],[-73.27958326463471,42.8371033673599],[-73.27600526463138,42.940294367456005],[-73.25007126460723,43.31085436780112],[-73.23839126459634,43.512832367989226],[-73.25998426461646,43.55938236803258],[-73.29140226464573,43.57503336804716],[-73.28173626463672,43.593187368064065],[-73.29410426464824,43.619653368088706],[-73.30353426465702,43.62471436809342],[-73.36368526471304,43.61499836808437],[-73.38811426473579,43.569143368041665],[-73.41832026476392,43.582479368054095],[-73.42296026476825,43.63211436810032],[-73.37098926471984,43.71428136817684],[-73.35666926470651,43.75655836821622],[-73.35899726470868,43.77842736823658],[-73.38474026473266,43.80450836826087],[-73.37512126472369,43.88597736833674],[-73.40533426475183,43.9148073683636],[-73.41740626476307,43.98819736843194],[-73.40825126475454,44.0182223684599],[-73.43600026478039,44.04567936848548],[-73.43521526477966,44.063897368502445],[-73.40875726475501,44.10661036854222],[-73.4078652647542,44.136227368569806],[-73.38206226473015,44.17210736860322],[-73.37733226472575,44.20124736863036],[-73.30532526465869,44.26014236868521],[-73.32978826468147,44.367390368785095],[-73.29999526465373,44.40553336882061],[-73.29331926464751,44.43285336884606],[-73.33445226468581,44.54432836894988],[-73.34781226469826,44.55397136895886],[-73.37129626472013,44.579167368982326],[-73.38182526472994,44.61980736902018],[-73.37013626471905,44.63434936903372],[-73.3730972647218,44.6612763690588],[-73.35815126470789,44.680368369076575],[-73.37315826472187,44.724236369117435],[-73.32678626467867,44.79929336918734],[-73.36905426471805,44.819118369205796],[-73.38230626473039,44.847933369232635],[-73.33641426468765,44.93260436931149],[-73.350758264701,44.98197336935747],[-73.34472326469538,45.006138369379975],[-73.18854626454993,45.00848636938216],[-72.54723126395265,45.005370369379264],[-71.90186826335162,45.0073403693811],[-71.50537226298235,45.0133513693867],[-71.54092726301546,44.976563369352434],[-71.51697726299317,44.94369636932182],[-71.50636526298328,44.899671369280824],[-71.57510126304729,44.81601936920291],[-71.58350126305511,44.77919736916862],[-71.63113326309947,44.741710369133706],[-71.60767826307763,44.67786236907425],[-71.58874926306,44.650599369048855],[-71.5680272630407,44.6374463690366],[-71.55410226302773,44.59658936899855],[-71.53679126301161,44.57893136898211],[-71.5922882630633,44.55120336895628],[-71.5914412630625,44.5388743689448],[-71.57524326304743,44.52580536893263],[-71.58661926305801,44.49453736890351],[-71.61422326308373,44.47450736888486],[-71.63655426310453,44.47673136888693],[-71.64770926311492,44.46917436887989],[-71.656399263123,44.440137368852845],[-71.67688426314209,44.42134236883534],[-71.76657026322562,44.39824836881384],[-71.79772926325462,44.384172368800726],[-71.82119726327649,44.35036036876923],[-71.83481626328917,44.3441993687635],[-71.92836126337629,44.33611236875596],[-71.9389052633861,44.32578636874635],[-71.99443326343783,44.32754836874799],[-72.03549526347607,44.299434368721805],[-72.05956626349848,44.26149436868647],[-72.04439026348435,44.23437936866122],[-72.05928226349822,44.1821763686126],[-72.04472426348467,44.15643536858863],[-72.03492026347553,44.12074636855539],[-72.04951526348913,44.100452368536494],[-72.03244726347323,44.096099368532435],[-72.03472826347536,44.08337436852058],[-72.07691926351464,44.03204036847278],[-72.08520426352236,44.00892436845125],[-72.10990926354538,43.9892293684329],[-72.11280826354808,43.97651536842106],[-72.09171126352842,43.95799136840381],[-72.11320426354844,43.93916636838628],[-72.12164926355631,43.909217368358384],[-72.17008926360141,43.878917368330164],[-72.18483626361515,43.80169036825825],[-72.20609226363494,43.764635368223736],[-72.21912326364708,43.75069236821075],[-72.2600552636852,43.73530036819642],[-72.30404026372616,43.69853036816217],[-72.33308526375322,43.59736436806796],[-72.37349826379085,43.57237436804468],[-72.39499826381088,43.517554367993625],[-72.38251526379925,43.48462936796296],[-72.39624826381204,43.410156367893606],[-72.41213926382684,43.37712536786284],[-72.39762826381333,43.351006367838515],[-72.41023126382507,43.323404367812806],[-72.40241926381779,43.307382367797885],[-72.43559826384869,43.23225336772792],[-72.45239826386434,43.15602236765692],[-72.43760526385056,43.1162703676199],[-72.44346426385601,43.079039367585224],[-72.46175226387305,43.046504367554924],[-72.45715926386877,42.99960336751124],[-72.47334126388384,42.9761433674894],[-72.50426326391263,42.965584367479565],[-72.5202172639275,42.9516723674666],[-72.52481026393178,42.91261436743023],[-72.55342826395842,42.860643367381826],[-72.53891726394491,42.80773336733255],[-72.51306826392084,42.789259367315346],[-72.50726926391545,42.768732367296224],[-72.47932226388942,42.761588367289576],[-72.46217126387344,42.74684036727584],[-72.45577026386748,42.725852367256294],[-72.92299726430262,42.73736436726702],[-73.01969526439268,42.74039636726984],[-73.25806026461467,42.74605836727511]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Minnesota","DRAWSEQ":11,"STATE_FIPS":"27","SUB_REGION":"West North Central","STATE_ABBR":"MN"},"geometry":{"type":"Polygon","coordinates":[[[-96.46045428622358,43.49971836797701],[-96.45660228621999,43.848741368302065],[-96.45739728622074,44.19906136862833],[-96.45510628621861,44.53834336894431],[-96.45671828622011,44.62880836902856],[-96.45521728621871,44.801347369189244],[-96.4560802862195,44.97199436934818],[-96.45449628621803,45.27519536963055],[-96.45760228622093,45.298850369652584],[-96.47759228623954,45.328509369680205],[-96.53254928629073,45.37513236972363],[-96.60508428635828,45.39652436974355],[-96.69316928644032,45.4106383697567],[-96.7380322864821,45.45819536980099],[-96.76924628651116,45.5174783698562],[-96.84308728657994,45.584090369918236],[-96.85499028659102,45.609122369941545],[-96.83279628657036,45.65068736998026],[-96.65739128640699,45.738970370062475],[-96.60461028635784,45.80826437012701],[-96.58795528634232,45.81785437013595],[-96.56692128632274,45.93411037024421],[-96.56180228631797,45.947683370256854],[-96.57621528633139,46.0212793703254],[-96.55193128630877,46.09552937039455],[-96.57116628632669,46.17717437047059],[-96.58789028634227,46.191918370484316],[-96.58645628634093,46.2154133705062],[-96.59818328635185,46.23868237052787],[-96.60207428635547,46.33632437061881],[-96.61486128636739,46.3508123706323],[-96.65210128640207,46.35943337064033],[-96.68822828643572,46.41221837068949],[-96.70968228645569,46.42716837070341],[-96.71489428646055,46.46871837074211],[-96.74031628648423,46.4894323707614],[-96.75122728649438,46.58861937085378],[-96.77104128651284,46.59998337086436],[-96.78431728652521,46.624112370886834],[-96.79024628653073,46.6297733708921],[-96.79369528653393,46.67880437093777],[-96.78155628652263,46.70704437096407],[-96.78038228652154,46.76231237101554],[-96.7971972865372,46.812033371061844],[-96.76825028651024,46.84486137109242],[-96.77806128651937,46.86734937111336],[-96.75691128649969,46.92278037116499],[-96.76306828650542,46.936261371177544],[-96.78792528652856,46.93218437117375],[-96.78971028653022,46.948202371188664],[-96.80188728654157,46.95584337119578],[-96.79342528653369,46.96964137120863],[-96.81677228655543,46.96977937120876],[-96.82453128656266,47.003436371240106],[-96.83529628657269,47.010231371246434],[-96.82260828656086,47.033932371268506],[-96.82696428656492,47.07883237131033],[-96.81915128655764,47.09260437132315],[-96.83916428657629,47.15188637137836],[-96.82649128656448,47.17006337139529],[-96.83706528657433,47.240458371460846],[-96.84962328658602,47.25684337147611],[-96.83771428657494,47.2938843715106],[-96.84674728658335,47.3146023715299],[-96.83846128657564,47.34224337155564],[-96.85063128658696,47.36095437157307],[-96.8398272865769,47.38411737159464],[-96.85000528658638,47.408936371617756],[-96.86724828660245,47.41308737162162],[-96.8558272865918,47.43675337164366],[-96.86668428660191,47.46153737166674],[-96.85161528658789,47.50061937170314],[-96.86068728659633,47.521356371722455],[-96.84918828658562,47.54456837174408],[-96.85866428659445,47.56297837176122],[-96.85221728658844,47.601151371796774],[-96.87333528660811,47.61525537180991],[-96.8894252866231,47.67392537186454],[-96.92365928665498,47.71409437190196],[-96.93201228666275,47.763506371947976],[-96.9578302866868,47.79444037197678],[-96.98389328671108,47.809661371990956],[-96.97723128670486,47.82802937200807],[-97.0003402867264,47.87019737204734],[-97.02056628674522,47.87556937205234],[-97.01533128674035,47.917890372091755],[-97.04805328677082,47.95492437212624],[-97.06707128678855,48.04816437221308],[-97.09272128681243,48.07034437223374],[-97.0990302868183,48.10097237226226],[-97.12187328683957,48.11636937227661],[-97.12091828683869,48.1427743723012],[-97.13651328685322,48.14839837230643],[-97.11606528683417,48.15922337231652],[-97.13744328685408,48.16776937232447],[-97.13629128685301,48.17522737233142],[-97.13727528685392,48.19506337234989],[-97.13082828684792,48.20374237235798],[-97.11089928682935,48.20760537236157],[-97.13975428685623,48.22175537237475],[-97.10923528682781,48.22804937238061],[-97.12755428684487,48.23352337238571],[-97.12378428684136,48.259173372409606],[-97.13665528685334,48.264483372414546],[-97.11171428683012,48.277876372427016],[-97.11268328683101,48.286147372434726],[-97.13051328684763,48.29304037244114],[-97.11372128683199,48.294882372442856],[-97.11475128683294,48.303618372451],[-97.1326342868496,48.31096937245784],[-97.11259128683093,48.319926372466185],[-97.13713628685379,48.32599137247183],[-97.1311232868482,48.361491372504894],[-97.15039628686614,48.3632153725065],[-97.13378628685068,48.3724543725151],[-97.135205286852,48.38441037252623],[-97.15881928687399,48.38820637252977],[-97.12912428684633,48.4078853725481],[-97.14982328686561,48.40999137255006],[-97.1516472868673,48.41961237255902],[-97.12260128684025,48.416110372555764],[-97.1196332868375,48.43710237257531],[-97.14361328685983,48.43810937257625],[-97.13459428685142,48.51731437265001],[-97.14832728686422,48.51795137265061],[-97.13938528685588,48.534648372666155],[-97.15553728687092,48.53839837266965],[-97.1604352868755,48.545078372675874],[-97.14661828686262,48.54953737268002],[-97.16794328688249,48.56226337269187],[-97.15212728686775,48.572856372701736],[-97.1581922868734,48.583640372711784],[-97.14081228685721,48.586905372714824],[-97.14471828686085,48.61402437274008],[-97.12295828684059,48.62076837274636],[-97.12744428684476,48.62979437275477],[-97.1076302868263,48.629946372754915],[-97.09716928681657,48.67452937279643],[-97.1167392868348,48.695243372815725],[-97.11010128682861,48.708583372828144],[-97.13480628685163,48.72623837284459],[-97.13250228684947,48.747218372864126],[-97.14789828686382,48.75565337287198],[-97.13924628685575,48.76354237287933],[-97.14751628686346,48.781170372895744],[-97.17394428688807,48.801514372914696],[-97.16471228687948,48.81036837292294],[-97.1804222868941,48.81553737292775],[-97.17120428688553,48.83598037294679],[-97.17572728688974,48.87375737298198],[-97.21636928692759,48.931830373036064],[-97.22943628693976,48.999987373099536],[-96.40691528617373,48.999982373099535],[-95.27665728512109,48.99999137309954],[-95.15775028501035,48.99999637309955],[-95.15186728500487,49.37173037344575],[-94.83203928470701,49.33080637340764],[-94.68125028456657,48.87716137298514],[-94.69443228457885,48.77761537289244],[-94.57031228446326,48.71367637283289],[-94.43063428433317,48.7107853728302],[-94.29233728420436,48.70771137282733],[-94.23082728414708,48.65198737277544],[-93.84390428378673,48.62473737275006],[-93.81268528375766,48.52540837265755],[-93.78110628372825,48.51159037264468],[-93.51413928347961,48.534271372665806],[-93.46533928343416,48.54952037268001],[-93.45776928342711,48.592710372720234],[-93.30423628328413,48.637163372761634],[-93.09144228308595,48.62658437275178],[-92.94692628295135,48.62835537275343],[-92.7290002827484,48.54021137267134],[-92.6418202826672,48.54034937267147],[-92.62638028265282,48.50282437263652],[-92.69882128272029,48.49472137262897],[-92.70664328272757,48.460370372596984],[-92.49752928253282,48.44007237257807],[-92.45634528249447,48.40216937254277],[-92.47332228251028,48.357499372501174],[-92.37011628241416,48.22077937237384],[-92.27691828232736,48.24434037239578],[-92.30027228234911,48.29831137244605],[-92.27613128232663,48.35231937249635],[-92.12596228218678,48.3667563725098],[-92.03518328210222,48.355508372499315],[-91.9795342820504,48.25039837240143],[-91.78881528187279,48.20614537236021],[-91.71193828180118,48.19677537235149],[-91.70373128179354,48.11483537227518],[-91.56877528166785,48.104457372265514],[-91.57156228167045,48.0435713722088],[-91.23944628136114,48.08129837224394],[-91.02714828116342,48.19533937235015],[-90.86449528101194,48.25419837240497],[-90.74336528089913,48.088443372250595],[-90.5674552807353,48.12169937228157],[-90.55683528072541,48.092750372254606],[-90.1452702803421,48.11277037227325],[-90.02670028023168,48.08607937224839],[-89.98702028019473,48.023556372190164],[-89.90038928011404,47.99250537216125],[-89.74931027997334,48.0264843721929],[-89.53067327976972,48.00165637216977],[-89.62564527985818,47.9925613721613],[-89.63637327986817,47.95939037213041],[-89.99967728020651,47.82456437200484],[-90.50963328068146,47.70993837189809],[-91.02147528115815,47.4610583716663],[-91.46865728157461,47.12493537135326],[-91.8009692818841,46.927086371169],[-92.08849228215188,46.79189737104309],[-92.21462428226934,46.668204370927896],[-92.30314828235178,46.66657537092638],[-92.287271282337,46.658786370919124],[-92.28868528233832,46.415984370692996],[-92.28894428233856,46.15660037045143],[-92.28937028233896,46.07323137037378],[-92.32737228237436,46.056878370358554],[-92.34622528239191,46.022596370326625],[-92.36496328240936,46.01624837032071],[-92.42499928246528,46.02550437032933],[-92.46234528250005,45.98119737028807],[-92.52397728255745,45.98258337028936],[-92.55267228258418,45.9512693702602],[-92.66620828268992,45.91570337022708],[-92.7062402827272,45.89095837020403],[-92.73409728275314,45.84498037016121],[-92.7487622827668,45.837302370154056],[-92.77910728279507,45.763340370085174],[-92.83363628284584,45.73089037005495],[-92.86001928287041,45.71056237003602],[-92.88539728289405,45.64495536997492],[-92.87683128288607,45.57883636991335],[-92.83503728284715,45.56340236989897],[-92.7621752827793,45.56426336989977],[-92.72815428274761,45.54724236988392],[-92.68542128270781,45.470053369812035],[-92.6548172826793,45.45522136979822],[-92.64497528267015,45.43945236978353],[-92.64875128267366,45.395466369742564],[-92.6848692827073,45.3630763697124],[-92.70738428272827,45.318201369670604],[-92.74659328276478,45.297603369651426],[-92.755419282773,45.21237636957205],[-92.76258328277967,45.18661236954806],[-92.74493528276324,45.15642236951994],[-92.74542228276368,45.1130043694795],[-92.7967622828115,45.06561036943536],[-92.76299128278005,45.02211936939486],[-92.7671262827839,45.00100536937519],[-92.74976828276773,44.93565536931433],[-92.75392628277162,44.915002369295095],[-92.77187128278833,44.899496369280655],[-92.76426328278124,44.862234369245954],[-92.76102828277823,44.83537136922094],[-92.80558428281972,44.746160369137854],[-92.73714528275598,44.713594369107525],[-92.63036728265654,44.64265236904146],[-92.60897328263661,44.61029236901132],[-92.5092152825437,44.575159368978596],[-92.34087228238693,44.5528353689578],[-92.32047828236793,44.540491368946306],[-92.29668728234577,44.49218236890132],[-92.24910028230146,44.45621636886782],[-92.20613728226144,44.43839436885122],[-92.09133328215452,44.415589368829984],[-91.97238628204374,44.36448736878239],[-91.93886828201254,44.33911136875876],[-91.92275428199753,44.31752036873865],[-91.92234928199714,44.28834136871147],[-91.8886942819658,44.25749536868275],[-91.84874428192859,44.191187368620994],[-91.75321928183963,44.137227368570734],[-91.65223328174558,44.066895368505236],[-91.6017862816986,44.04082236848096],[-91.56916228166821,44.034955368475494],[-91.52842028163028,44.034215368474804],[-91.42590228153479,43.98561936842954],[-91.37335728148585,43.94719136839375],[-91.29194828141004,43.847190368300616],[-91.251105281372,43.788075368245565],[-91.25891628137927,43.722395368184394],[-91.25838928137878,43.67732236814242],[-91.23299028135513,43.59889036806938],[-91.24055828136218,43.54871236802264],[-91.22356628134635,43.500808367978024],[-91.61109928170727,43.50062636797786],[-91.73036628181835,43.49957136797688],[-92.07753228214168,43.49915336797649],[-92.45316928249152,43.499462367976776],[-92.55800828258914,43.50025936797752],[-93.02721128302613,43.501278367978465],[-93.05438028305143,43.50145736797863],[-93.50083028346722,43.50048836797773],[-93.65369928360958,43.500762367977984],[-93.97395028390784,43.50029836797755],[-94.24678728416194,43.4989483679763],[-94.45523828435608,43.498102367975505],[-94.8598392847329,43.5000303679773],[-94.92046428478936,43.49937136797669],[-95.39655828523276,43.50033436797759],[-95.46477528529628,43.499541367976846],[-95.86691228567081,43.49894436797629],[-96.0610392858516,43.49853336797591],[-96.46045428622358,43.49971836797701]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Oregon","DRAWSEQ":12,"STATE_FIPS":"41","SUB_REGION":"Pacific","STATE_ABBR":"OR"},"geometry":{"type":"Polygon","coordinates":[[[-124.20644431206405,41.997648366578105],[-124.35224631219984,42.09867736667219],[-124.41506231225834,42.245894366809296],[-124.43781831227955,42.429608366980396],[-124.39176331223663,42.55302736709534],[-124.40107831224532,42.62269936716022],[-124.55961731239297,42.83245736735557],[-124.4853463123238,42.955454367470125],[-124.386772312232,43.261589367755235],[-124.40607631224998,43.3001973677912],[-124.27399431212697,43.45910536793919],[-124.22600431208227,43.60500436807507],[-124.15832531201923,43.85711836830987],[-124.11831931198198,44.269515368693945],[-124.05440531192245,44.6621393690596],[-124.07556831194216,44.81473836920172],[-124.00757231187885,45.03610336940788],[-123.95660731183138,45.292965369647106],[-123.98056031185368,45.485084369826026],[-123.93667431181281,45.50796636984734],[-123.8921083117713,45.47405036981576],[-123.85950731174094,45.499082369839066],[-123.9534153118284,45.568528369903746],[-123.93607631181226,45.70283537002882],[-123.97662931185002,45.77548237009648],[-123.95627431183107,45.87104137018548],[-123.99650531186853,45.94192237025149],[-123.92118731179838,46.01232337031706],[-123.97734031185068,46.20270637049437],[-123.79409631168002,46.11144837040938],[-123.77708331166417,46.14443037044009],[-123.82097831170506,46.19364937048593],[-123.76141431164959,46.209939370501104],[-123.71716131160838,46.16989337046381],[-123.67024631156468,46.1744983704681],[-123.517029311422,46.23609137052546],[-123.36355731127905,46.144154370439836],[-123.30471731122425,46.14473737044038],[-123.24879931117218,46.14402037043971],[-123.2124373111383,46.17000637046391],[-123.17619631110456,46.18358637047656],[-123.11855431105087,46.17931037047258],[-123.05059631098759,46.155736370450626],[-122.97416931091641,46.110483370408474],[-122.89975731084711,46.07932937037946],[-122.87541731082445,46.0271833703309],[-122.8077413107614,45.94389037025333],[-122.80622331076,45.90407237021624],[-122.78407331073936,45.867886370182546],[-122.78451631073978,45.8504493701663],[-122.78800931074304,45.800343370119634],[-122.76428831072094,45.760568370082595],[-122.77255131072863,45.72768537005197],[-122.76054131071746,45.649397369979056],[-122.69632331065765,45.63104536996197],[-122.65120931061563,45.606830369939416],[-122.56542931053573,45.59481836992823],[-122.43715431041628,45.56477936990025],[-122.35645731034111,45.56617136990155],[-122.30315031029147,45.54309236988006],[-122.24492231023724,45.54811236988473],[-122.08203731008555,45.590504369924204],[-122.00001131000914,45.61782436994965],[-121.97265930998367,45.63577636996637],[-121.92682030994098,45.642028369972195],[-121.88828330990509,45.67685637000463],[-121.81104130983316,45.70068337002682],[-121.7586943097844,45.68971637001661],[-121.70641730973571,45.688793370015745],[-121.52905430957054,45.71956737004441],[-121.44255230948997,45.6949673700215],[-121.42202930947087,45.690603370017435],[-121.36781430942037,45.699686370025894],[-121.31997730937582,45.696642370023056],[-121.27639130933522,45.67834037000601],[-121.21427130927736,45.66564536999419],[-121.20330830926716,45.657287369986406],[-121.19205430925669,45.61324236994538],[-121.17431630924017,45.60051636993353],[-121.12520430919443,45.60705936993963],[-121.07353030914629,45.64661036997646],[-121.033482309109,45.65284436998227],[-120.96847830904846,45.6451543699751],[-120.94857330902992,45.65031636997991],[-120.90793730899208,45.6354773699661],[-120.86141930894875,45.66518636999376],[-120.69699430879562,45.71050937003597],[-120.65840330875969,45.73261237005656],[-120.62375730872742,45.743610370066804],[-120.57008230867743,45.74091837006429],[-120.49915630861136,45.695630370022116],[-120.44338330855942,45.6892793700162],[-120.28363530841065,45.71658337004163],[-120.20744530833969,45.71978437004461],[-120.1559083082917,45.76126137008324],[-120.06864830821043,45.78020237010088],[-119.9943203081412,45.81114037012969],[-119.86973530802518,45.83169837014884],[-119.83355630799147,45.84160937015807],[-119.67844530784703,45.852539370168245],[-119.62211630779456,45.899410370211896],[-119.58929430776399,45.91331537022485],[-119.51222030769222,45.8992003702117],[-119.4388613076239,45.91426837022574],[-119.37944130756856,45.91761037022885],[-119.30276330749714,45.932662370242866],[-119.17874230738164,45.922351370233265],[-119.14025030734578,45.92570837023639],[-119.03222130724518,45.96627437027417],[-118.98213330719852,45.99905837030471],[-117.99252730627688,46.0016393703071],[-117.98267730626772,45.99988037030547],[-117.60282630591395,46.00026837030583],[-117.4816633058011,45.99983437030543],[-116.91913230527722,45.995175370301084],[-116.89819730525772,45.98051637028743],[-116.85647230521886,45.9035973702158],[-116.79126230515813,45.84586737016203],[-116.77370730514178,45.81976337013772],[-116.7031803050761,45.819169370137175],[-116.65439830503067,45.78063037010128],[-116.56063230494334,45.74742437007035],[-116.5282753049132,45.71072837003618],[-116.51491530490075,45.664491369993115],[-116.47041830485932,45.60625736993888],[-116.4785513048669,45.56605836990144],[-116.55450330493763,45.49364736983401],[-116.56577230494813,45.45986336980254],[-116.6722653050473,45.335410369686635],[-116.68881330506271,45.26235036961859],[-116.73658530510721,45.13730736950214],[-116.76126830513019,45.10630036947326],[-116.77809230514586,45.0994803694669],[-116.78721030515436,45.075752369444814],[-116.80730730517307,45.049755369420595],[-116.85451330521704,45.016945369390044],[-116.84809730521106,45.0000423693743],[-116.85588730521832,44.9799653693556],[-116.84815930521111,44.97174136934794],[-116.83139630519551,44.97263336934877],[-116.84755630521056,44.954850369332206],[-116.83539630519923,44.92014436929989],[-116.86707630522874,44.86860836925189],[-116.89736730525695,44.84855536923321],[-116.90962030526836,44.82894036921495],[-116.95149430530736,44.776035369165676],[-117.03957230538938,44.749115369140604],[-117.06651330541447,44.697557369092586],[-117.07935430542643,44.68933636908493],[-117.13050430547406,44.572523368976135],[-117.14394030548658,44.55928736896381],[-117.14516030548772,44.534655368940875],[-117.18739130552706,44.511805368919596],[-117.20396230554249,44.485785368895364],[-117.22441030556152,44.47298736888344],[-117.21722130555483,44.427855368841406],[-117.23692130557318,44.38998236880613],[-117.20160230554029,44.33943836875906],[-117.21745530555505,44.30066536872295],[-117.21357230555142,44.2847193687081],[-117.17072330551153,44.25333236867887],[-117.14327930548598,44.25063236867636],[-117.11269230545747,44.26980536869421],[-117.10056030544618,44.26707836869167],[-117.08138730542832,44.243846368670035],[-117.05202730540098,44.23155636865859],[-117.0303523053808,44.249336368675145],[-116.99270730534573,44.24706336867303],[-116.9761273053303,44.22518236865265],[-116.98187130533564,44.19784236862719],[-116.91305130527155,44.17730436860806],[-116.9022543052615,44.1463133685792],[-116.94688630530305,44.093025368529574],[-116.96344330531849,44.09029836852703],[-116.97681730533094,44.07389436851176],[-116.93359330529069,44.01420236845617],[-116.96795730532268,43.96319536840866],[-116.95971630531501,43.92857736837642],[-116.97814130533217,43.90444136835394],[-116.97814830533218,43.8734693683251],[-116.98577030533927,43.85935136831195],[-117.01622030536763,43.852972368306006],[-117.0105053053623,43.83976936829371],[-117.02762630537825,43.83156736828607],[-117.0371173053871,43.8001423682568],[-117.02379430537468,43.753701368213555],[-117.02629530537702,43.67903136814401],[-117.0188643053701,41.99479436657545],[-118.18531730645644,41.99663736657716],[-119.31094230750476,41.98913536657017],[-119.35169230754272,41.98885336656991],[-119.9934593081404,41.98920536657024],[-120.87190830895852,41.98767236656881],[-121.441509309489,41.99433436657502],[-122.28470531027429,42.000764366581],[-123.22210231114731,42.00219136658233],[-123.51320431141842,41.99783336657828],[-123.81914631170335,41.99294836657373],[-124.20644431206405,41.997648366578105]]]}},
{"type":"Feature","properties":{"STATE_NAME":"New Hampshire","DRAWSEQ":13,"STATE_FIPS":"33","SUB_REGION":"New England","STATE_ABBR":"NH"},"geometry":{"type":"Polygon","coordinates":[[[-72.45577026386748,42.725852367256294],[-72.46217126387344,42.74684036727584],[-72.47932226388942,42.761588367289576],[-72.50726926391545,42.768732367296224],[-72.51306826392084,42.789259367315346],[-72.53891726394491,42.80773336733255],[-72.55342826395842,42.860643367381826],[-72.52481026393178,42.91261436743023],[-72.5202172639275,42.9516723674666],[-72.50426326391263,42.965584367479565],[-72.47334126388384,42.9761433674894],[-72.45715926386877,42.99960336751124],[-72.46175226387305,43.046504367554924],[-72.44346426385601,43.079039367585224],[-72.43760526385056,43.1162703676199],[-72.45239826386434,43.15602236765692],[-72.43559826384869,43.23225336772792],[-72.40241926381779,43.307382367797885],[-72.41023126382507,43.323404367812806],[-72.39762826381333,43.351006367838515],[-72.41213926382684,43.37712536786284],[-72.39624826381204,43.410156367893606],[-72.38251526379925,43.48462936796296],[-72.39499826381088,43.517554367993625],[-72.37349826379085,43.57237436804468],[-72.33308526375322,43.59736436806796],[-72.30404026372616,43.69853036816217],[-72.2600552636852,43.73530036819642],[-72.21912326364708,43.75069236821075],[-72.20609226363494,43.764635368223736],[-72.18483626361515,43.80169036825825],[-72.17008926360141,43.878917368330164],[-72.12164926355631,43.909217368358384],[-72.11320426354844,43.93916636838628],[-72.09171126352842,43.95799136840381],[-72.11280826354808,43.97651536842106],[-72.10990926354538,43.9892293684329],[-72.08520426352236,44.00892436845125],[-72.07691926351464,44.03204036847278],[-72.03472826347536,44.08337436852058],[-72.03244726347323,44.096099368532435],[-72.04951526348913,44.100452368536494],[-72.03492026347553,44.12074636855539],[-72.04472426348467,44.15643536858863],[-72.05928226349822,44.1821763686126],[-72.04439026348435,44.23437936866122],[-72.05956626349848,44.26149436868647],[-72.03549526347607,44.299434368721805],[-71.99443326343783,44.32754836874799],[-71.9389052633861,44.32578636874635],[-71.92836126337629,44.33611236875596],[-71.83481626328917,44.3441993687635],[-71.82119726327649,44.35036036876923],[-71.79772926325462,44.384172368800726],[-71.76657026322562,44.39824836881384],[-71.67688426314209,44.42134236883534],[-71.656399263123,44.440137368852845],[-71.64770926311492,44.46917436887989],[-71.63655426310453,44.47673136888693],[-71.61422326308373,44.47450736888486],[-71.58661926305801,44.49453736890351],[-71.57524326304743,44.52580536893263],[-71.5914412630625,44.5388743689448],[-71.5922882630633,44.55120336895628],[-71.53679126301161,44.57893136898211],[-71.55410226302773,44.59658936899855],[-71.5680272630407,44.6374463690366],[-71.58874926306,44.650599369048855],[-71.60767826307763,44.67786236907425],[-71.63113326309947,44.741710369133706],[-71.58350126305511,44.77919736916862],[-71.57510126304729,44.81601936920291],[-71.50636526298328,44.899671369280824],[-71.51697726299317,44.94369636932182],[-71.54092726301546,44.976563369352434],[-71.50537226298235,45.0133513693867],[-71.50299926298014,45.059890369430036],[-71.43041026291253,45.116992369483214],[-71.40252226288656,45.202803369563135],[-71.44656026292758,45.23608236959413],[-71.38637826287153,45.23493036959306],[-71.2972352627885,45.2934943696476],[-71.15308926265426,45.23796936959589],[-71.08750926259319,45.301469369655024],[-71.02872626253844,44.66853836906556],[-71.00859626251969,44.28214636870571],[-70.9844422624972,43.79116336824844],[-70.97387426248736,43.571830368044175],[-70.95652426247119,43.56414336803701],[-70.94961926246476,43.548953368022865],[-70.96426826247841,43.53198936800707],[-70.95927826247376,43.51638836799253],[-70.97079126248448,43.47021136794953],[-70.96148326247581,43.43812636791965],[-70.97909926249223,43.39618436788059],[-70.96969926248347,43.36638036785283],[-70.90580126242396,43.30206936779294],[-70.90108626241957,43.28102036777334],[-70.81320726233773,43.235222367730685],[-70.83054826235387,43.15917436765986],[-70.81866826234281,43.12187136762512],[-70.88474826240434,43.12770636763055],[-70.87463126239493,43.10152736760617],[-70.9054162624236,43.08402136758987],[-70.88649426240598,43.05888336756645],[-70.81042726233514,43.08974036759519],[-70.73413926226408,43.05876336756634],[-70.81388026233834,42.86706536738781],[-70.84974026237174,42.86342936738443],[-70.89811126241679,42.88687736740626],[-70.92133626243843,42.88514936740465],[-71.02542626253536,42.851171367373006],[-71.06556426257275,42.80431936732937],[-71.12060426262401,42.81828136734238],[-71.18106126268032,42.80731736733216],[-71.18634726268523,42.73876036726831],[-71.24047926273565,42.743555367272776],[-71.25241126274676,42.7260693672565],[-71.28719426277915,42.698603367230916],[-71.90094226335076,42.70537836723723],[-71.93021626337801,42.70720936723893],[-72.27991726370371,42.720467367251274],[-72.45577026386748,42.725852367256294]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Iowa","DRAWSEQ":14,"STATE_FIPS":"19","SUB_REGION":"West North Central","STATE_ABBR":"IA"},"geometry":{"type":"Polygon","coordinates":[[[-91.44874728155607,40.37194636506405],[-91.47703828158241,40.39101236508181],[-91.49031428159478,40.390806365081616],[-91.50037728160414,40.405160365094986],[-91.52769128162959,40.41016936509965],[-91.52960728163137,40.43508636512286],[-91.53884628163998,40.44128836512863],[-91.53320828163473,40.45544136514181],[-91.57938328167774,40.463760365149554],[-91.58602828168392,40.48451936516889],[-91.61686028171263,40.50487336518785],[-91.62253628171793,40.532903365213954],[-91.69208128178269,40.551677365231434],[-91.68995928178072,40.58120236525893],[-91.71697628180587,40.593435365270324],[-91.74171128182891,40.60978436528555],[-91.94637028201952,40.60826636528414],[-92.19317428224937,40.60008836527652],[-92.36151328240615,40.59957636527604],[-92.6464322826715,40.591462365268484],[-92.71781528273797,40.58966736526682],[-93.10093828309479,40.58434736526186],[-93.37027128334563,40.58049136525827],[-93.56291028352504,40.58081336525857],[-93.78630328373309,40.578448365256364],[-94.01805928394893,40.57402236525225],[-94.23839228415413,40.570966365249404],[-94.48523128438401,40.57420536525242],[-94.63987628452804,40.575744365253854],[-94.9206162847895,40.57721836525522],[-95.21742828506592,40.58189236525958],[-95.38255528521971,40.58433436526185],[-95.7674792855782,40.58904836526624],[-95.75754628556895,40.62090436529591],[-95.76799928557868,40.6431173653166],[-95.87661628567984,40.73043636539792],[-95.85179028565672,40.79260036545581],[-95.84643528565174,40.848332365507716],[-95.83439628564052,40.87030036552818],[-95.83654128564253,40.901108365556865],[-95.83760328564351,40.97425836562499],[-95.8608972856652,41.002650365651434],[-95.85953928566394,41.035002365681564],[-95.87880428568188,41.065871365710315],[-95.85827428566276,41.10918736575066],[-95.87668528567991,41.1642023658019],[-95.85980128566418,41.16686536580437],[-95.85919828566362,41.1805373658171],[-95.91610028571661,41.194063365829706],[-95.92225028572234,41.20785436584255],[-95.91098128571184,41.22524536585874],[-95.93023028572978,41.302056365930284],[-95.91120228571205,41.308469365936254],[-95.89759128569938,41.28686336591613],[-95.88910728569148,41.30138936592966],[-95.94289528574157,41.34007736596569],[-95.94005628573892,41.394805366016655],[-95.93506528573428,41.4623813660796],[-95.95318528575115,41.47238736608891],[-96.00689728580117,41.481954366097824],[-96.01345128580728,41.49299436610811],[-95.99668828579166,41.51151736612536],[-95.99396528578913,41.528103366140805],[-96.00459228579903,41.53666336614877],[-96.05017228584148,41.524335366137294],[-96.0858402858747,41.537522366149574],[-96.09193628588038,41.56314536617344],[-96.08083528587004,41.57600036618541],[-96.11130728589842,41.59900636620684],[-96.09930628588724,41.65468036625869],[-96.12026428590676,41.68409436628608],[-96.12220228590856,41.694913366296156],[-96.08555728587443,41.70498736630554],[-96.09977128588767,41.73156336633029],[-96.09932128588726,41.75297536635023],[-96.07641728586592,41.79146936638608],[-96.13562328592106,41.86262036645235],[-96.15997028594374,41.90415136649102],[-96.1458702859306,41.924907366510354],[-96.14732828593196,41.96625436654887],[-96.18521728596725,41.9806853665623],[-96.20284228598366,41.99661536657714],[-96.23609328601464,42.00125836658147],[-96.23872528601709,42.02843836660678],[-96.265483286042,42.04889736662583],[-96.2851232860603,42.12345236669526],[-96.35216528612273,42.16818536673692],[-96.3635122861333,42.21404236677964],[-96.33770828610926,42.22952236679405],[-96.33265828610456,42.26030736682272],[-96.34288128611408,42.282081366843],[-96.36870028613814,42.29802336685785],[-96.38978128615777,42.3287893668865],[-96.4241752861898,42.349279366905584],[-96.41176128617823,42.38091836693505],[-96.4176282861837,42.41477736696658],[-96.39789028616532,42.441793366991746],[-96.39607428616362,42.4674013670156],[-96.43939428620396,42.48924036703593],[-96.48024328624201,42.51713036706191],[-96.48933728625049,42.56402836710558],[-96.50094228626129,42.57388536711476],[-96.48849828624971,42.580480367120906],[-96.51284428627237,42.629755367166794],[-96.54116528629875,42.66240536719721],[-96.56303928631912,42.66851336720289],[-96.62654028637826,42.70835436724],[-96.64070928639146,42.74860336727748],[-96.63298028638427,42.776835367303775],[-96.60087528635437,42.799558367324934],[-96.58764528634204,42.8353813673583],[-96.57312628632852,42.83434736735734],[-96.55621128631276,42.846660367368806],[-96.53751128629536,42.896906367415596],[-96.54426328630164,42.913866367431396],[-96.51493528627432,42.952382367467266],[-96.51714828627638,42.986458367499],[-96.4990202862595,43.01205036752283],[-96.52001028627905,43.051508367559585],[-96.47957328624139,43.06188436756925],[-96.46209428622511,43.075582367582],[-96.46080528622392,43.08787236759345],[-96.45150528621525,43.12630836762925],[-96.47311428623537,43.20908236770634],[-96.48724528624854,43.217909367714554],[-96.558605286315,43.22548936772162],[-96.5669912863228,43.23963336773479],[-96.5595672863159,43.25326336774748],[-96.57072228632627,43.26361236775712],[-96.5791312863341,43.29007436778177],[-96.5405632862982,43.307659367798145],[-96.52289428628174,43.356966367844066],[-96.52505328628375,43.38422536786945],[-96.55770828631415,43.40072736788482],[-96.5891132863434,43.435539367917244],[-96.58379628633845,43.48192036796044],[-96.59831528635198,43.499849367977134],[-96.46045428622358,43.49971836797701],[-96.0610392858516,43.49853336797591],[-95.86691228567081,43.49894436797629],[-95.46477528529628,43.499541367976846],[-95.39655828523276,43.50033436797759],[-94.92046428478936,43.49937136797669],[-94.8598392847329,43.5000303679773],[-94.45523828435608,43.498102367975505],[-94.24678728416194,43.4989483679763],[-93.97395028390784,43.50029836797755],[-93.65369928360958,43.500762367977984],[-93.50083028346722,43.50048836797773],[-93.05438028305143,43.50145736797863],[-93.02721128302613,43.501278367978465],[-92.55800828258914,43.50025936797752],[-92.45316928249152,43.499462367976776],[-92.07753228214168,43.49915336797649],[-91.73036628181835,43.49957136797688],[-91.61109928170727,43.50062636797786],[-91.22356628134635,43.500808367978024],[-91.23590328135784,43.464684367944386],[-91.21091628133458,43.42405136790654],[-91.19824328132277,43.37051336785668],[-91.17704828130303,43.35394636784125],[-91.07849828121125,43.31329736780339],[-91.0664282812,43.28068336777302],[-91.06905228120245,43.2578983677518],[-91.16135428128841,43.14757636764905],[-91.16857128129513,43.08288836758881],[-91.15975228128691,43.08118236758722],[-91.1522142812799,43.00131636751284],[-91.1391212812677,42.9258933674426],[-91.09342828122514,42.871440367391884],[-91.08203028121454,42.783365367309855],[-91.06616828119977,42.744913367274044],[-90.99918228113738,42.70705836723879],[-90.91940928106308,42.68067736721422],[-90.89254528103807,42.678240367211956],[-90.74561028090122,42.65700136719217],[-90.69479128085389,42.63792836717441],[-90.66438028082557,42.57139136711244],[-90.63921928080214,42.55571436709784],[-90.62570728078956,42.52856236707255],[-90.63845628080142,42.509363367054675],[-90.65189928081395,42.49470036704102],[-90.64847328081075,42.47564736702327],[-90.60595528077116,42.460564367009226],[-90.56371128073181,42.421843366973164],[-90.49117128066426,42.388791366942385],[-90.4417252806182,42.360083366915646],[-90.42780928060525,42.34064536689754],[-90.41811228059622,42.26393936682611],[-90.40730128058614,42.24266136680629],[-90.36785828054941,42.210226366776084],[-90.32373028050831,42.197337366764074],[-90.231063280422,42.159741366729065],[-90.19170228038536,42.12271036669458],[-90.17621428037093,42.120524366692536],[-90.16677628036214,42.103767366676934],[-90.16822628036348,42.061066366637164],[-90.15066328034713,42.03345336661145],[-90.14279628033981,41.98398936656538],[-90.15464528035083,41.93080236651585],[-90.19596528038932,41.80616736639977],[-90.25543828044471,41.78176936637705],[-90.30501628049089,41.756497366353514],[-90.32615728051057,41.7227683663221],[-90.34126228052465,41.64912236625351],[-90.33947628052297,41.602831366210395],[-90.34849428053138,41.586882366195546],[-90.42313528060089,41.56730536617731],[-90.43509828061204,41.543612366155244],[-90.45512628063068,41.527579366140316],[-90.54097528071064,41.52600336613885],[-90.6008382807664,41.50961836612359],[-90.65892928082049,41.46235036607956],[-90.70835428086653,41.450093366068145],[-90.78004228093329,41.44985236606793],[-90.84428428099312,41.44465236606308],[-90.94980028109138,41.4212633660413],[-91.00084228113893,41.43111236605047],[-91.02763728116388,41.42353636604342],[-91.05593528119023,41.40140736602281],[-91.07342928120653,41.33492536596089],[-91.1024962812336,41.267848365898416],[-91.10167228123282,41.231552365864616],[-91.05646628119072,41.17629036581315],[-91.01840228115528,41.16585736580343],[-90.99048528112928,41.14440436578346],[-90.95793028109895,41.10439336574619],[-90.95479428109604,41.07039736571453],[-90.96085128110168,40.9505413656029],[-90.98341928112269,40.923965365578155],[-91.0493532811841,40.87962336553686],[-91.08905028122108,40.833767365494154],[-91.09289528122466,40.761587365426934],[-91.12013228125002,40.70544336537464],[-91.12930328125856,40.68218936535298],[-91.16264428128962,40.65635236532892],[-91.21506028133842,40.64385936531728],[-91.26221128138235,40.639587365313304],[-91.3757622814881,40.60348036527968],[-91.41127128152117,40.5730123652513],[-91.4130262815228,40.54803436522804],[-91.38225528149414,40.52853836520988],[-91.37494628148734,40.50369736518675],[-91.38555128149721,40.447294365134226],[-91.37290828148544,40.403032365093],[-91.38590928149755,40.39240536508311],[-91.41896828152834,40.38691936507799],[-91.44874728155607,40.37194636506405]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Massachusetts","DRAWSEQ":15,"STATE_FIPS":"25","SUB_REGION":"New England","STATE_ABBR":"MA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.79783126325472,42.00427436658427],[-71.80234026325893,42.01797736659704],[-72.09497126353146,42.02579936660432],[-72.13634626356999,42.026402366604884],[-72.50757226391572,42.030766366608944],[-72.571226263975,42.030125366608345],[-72.58190726398496,42.02160736660041],[-72.6078252640091,42.02280036660153],[-72.60952626401067,42.03053636660873],[-72.75589426414699,42.03384736661181],[-72.76757526415787,42.00216736658231],[-72.81767926420453,41.99718536657767],[-72.8164512642034,42.0335073666115],[-73.00609526438001,42.036009366613825],[-73.04563226441682,42.0363103666141],[-73.4842302648253,42.04742836662446],[-73.49884026483892,42.07746036665243],[-73.35082426470106,42.50475536705038],[-73.25806026461467,42.74605836727511],[-73.01969526439268,42.74039636726984],[-72.92299726430262,42.73736436726702],[-72.45577026386748,42.725852367256294],[-72.27991726370371,42.720467367251274],[-71.93021626337801,42.70720936723893],[-71.90094226335076,42.70537836723723],[-71.28719426277915,42.698603367230916],[-71.25241126274676,42.7260693672565],[-71.24047926273565,42.743555367272776],[-71.18634726268523,42.73876036726831],[-71.18106126268032,42.80731736733216],[-71.12060426262401,42.81828136734238],[-71.06556426257275,42.80431936732937],[-71.02542626253536,42.851171367373006],[-70.92133626243843,42.88514936740465],[-70.89811126241679,42.88687736740626],[-70.84974026237174,42.86342936738443],[-70.81388026233834,42.86706536738781],[-70.73969526226927,42.663523367198245],[-70.59319926213283,42.64630536718221],[-70.63345226217031,42.582642367122915],[-70.81312826233764,42.5464363670892],[-70.8936042624126,42.44806836699759],[-70.96062226247501,42.43239336698299],[-71.0341622625435,42.2856283668463],[-70.92320426244017,42.2345173667987],[-70.89267126241172,42.265766366827805],[-70.82466126234839,42.26050736682291],[-70.77459526230176,42.248640366811856],[-70.68603726221929,42.15316636672294],[-70.61870326215657,41.96818936655066],[-70.5403382620836,41.930951366515984],[-70.53770526208115,41.80576236639939],[-70.4235112619748,41.74362236634152],[-70.27383426183539,41.72166336632107],[-70.34112726189807,41.7118133663119],[-70.20525926177153,41.712573366312604],[-70.01921426159826,41.78151936637681],[-70.00044826158079,41.856350366446506],[-70.10049726167396,42.00219436658233],[-70.255148261818,42.060119366636286],[-70.13509026170618,42.0724943666478],[-70.05047126162737,42.026298366604784],[-69.964170261547,41.90409436649097],[-69.9177802615038,41.7676533663639],[-69.95442326153791,41.67149536627434],[-70.39761626195067,41.61257136621947],[-70.43291926198356,41.5697563661796],[-70.63713926217375,41.5398043661517],[-70.66488826219958,41.556127366166905],[-70.61976126215757,41.735636366334084],[-70.83943026236214,41.62669236623262],[-70.89212826241122,41.63391236623934],[-71.00118526251279,41.52012436613337],[-71.11713226262077,41.49306236610817],[-71.1412122626432,41.65527336625924],[-71.19880826269684,41.67850036628087],[-71.22897626272494,41.70769436630806],[-71.26662826276001,41.74974336634722],[-71.31932826280908,41.77219536636813],[-71.33979826282815,41.78442536637952],[-71.34548326283344,41.813161366406284],[-71.33454226282325,41.85790336644796],[-71.34249326283066,41.8757833664646],[-71.3330862628219,41.89603136648346],[-71.38395326286927,41.88843936647639],[-71.38240526286783,41.97926336656098],[-71.37864426286433,42.013713366593066],[-71.49743026297496,42.00925336658891],[-71.79783126325472,42.00427436658427]]],[[[-70.60433126214319,41.42966336604913],[-70.56769426210907,41.46456636608163],[-70.55283126209522,41.41738836603769],[-70.57585726211667,41.410285366031076],[-70.51515726206014,41.39866036602025],[-70.48614126203312,41.34156136596707],[-70.73867626226831,41.33415536596017],[-70.76971326229722,41.29816436592665],[-70.84392026236632,41.34859936597363],[-70.78252426230915,41.35251736597728],[-70.77092626229835,41.32498036595163],[-70.7517692622805,41.38216936600489],[-70.66748826220201,41.45493736607266],[-70.60584226214459,41.474663366091036],[-70.60433126214319,41.42966336604913]]],[[[-70.0317162616099,41.31193136593947],[-70.00650826158642,41.32477436595144],[-70.02662026160516,41.33721036596302],[-70.08763326166198,41.29684836592543],[-70.03448626161249,41.34971836597467],[-70.04926426162625,41.391961366014016],[-69.96598026154868,41.294891365923604],[-69.96844426155097,41.25181636588349],[-70.10310526167639,41.23827936587088],[-70.21326826177899,41.270205365900615],[-70.20709626177323,41.29408736592286],[-70.09787226167151,41.27763136590753],[-70.0317162616099,41.31193136593947]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Nebraska","DRAWSEQ":16,"STATE_FIPS":"31","SUB_REGION":"West North Central","STATE_ABBR":"NE"},"geometry":{"type":"Polygon","coordinates":[[[-102.05153529143068,39.99891836471664],[-102.04754529142697,40.34264436503676],[-102.04762029142704,40.43107736511912],[-102.04603129142556,40.69731936536708],[-102.04699229142645,40.74313036540974],[-102.04773929142715,40.99807136564717],[-102.62125729196129,41.00021436564917],[-102.65227129199016,40.99812436564722],[-103.38295629267067,41.00031636564926],[-103.57231629284702,40.99964836564864],[-104.0517052932935,41.003211365651964],[-104.05401229329564,41.3880853660104],[-104.05550029329702,41.56422236617444],[-104.05361529329527,41.69821836629923],[-104.05351329329517,41.99981536658012],[-104.05621929329769,42.61466936715274],[-104.05619929329767,43.00306236751447],[-103.50146429278104,42.99861836751033],[-103.00587529231949,42.99935436751102],[-102.78838429211693,42.99530336750724],[-102.08670129146344,42.98988736750219],[-101.23173729066718,42.98684336749936],[-100.19814228970458,42.99109536750332],[-99.53279028908491,42.992335367504474],[-99.25397128882526,42.99238936750453],[-98.49765128812088,42.991778367503954],[-98.45744428808342,42.93716036745309],[-98.39120428802174,42.92013536743723],[-98.31033928794642,42.881794367401525],[-98.1678262878137,42.839571367362204],[-98.14486928779232,42.83579436735869],[-98.12311728777206,42.820223367344184],[-98.12182028777084,42.80836036733314],[-98.03314028768825,42.769192367296654],[-97.99514428765288,42.76681236729444],[-97.96355828762346,42.773690367300844],[-97.92947728759172,42.7923243673182],[-97.88994128755489,42.831271367354475],[-97.88865928755371,42.855807367377324],[-97.8186432874885,42.86658736738737],[-97.79702828746836,42.849597367371544],[-97.77218628744522,42.846164367368345],[-97.72525028740152,42.85800836737937],[-97.68575228736474,42.83683736735966],[-97.63497028731744,42.86128536738242],[-97.57065428725754,42.847990367370045],[-97.50613228719745,42.86013636738136],[-97.48315928717605,42.857157367378576],[-97.45726328715193,42.85044336737233],[-97.38930628708864,42.86743336738815],[-97.3114142870161,42.86177136738288],[-97.27145728697889,42.85001436737193],[-97.24318928695256,42.85182636737362],[-97.2244432869351,42.84120236736372],[-97.21183128692336,42.81257336733706],[-97.16142228687642,42.798619367324065],[-97.13046928684759,42.773923367301066],[-97.01513928674018,42.759542367287665],[-96.97959328670707,42.758313367286526],[-96.97000328669814,42.75206536728071],[-96.97786928670547,42.72730836725765],[-96.97077328669886,42.721147367251916],[-96.9082342866406,42.73169936726174],[-96.81014028654926,42.70408436723602],[-96.81043728654953,42.68134136721484],[-96.7993442865392,42.67001936720429],[-96.72265828646778,42.66859236720296],[-96.6990602864458,42.657715367192836],[-96.69459628644165,42.64116336717742],[-96.7152732864609,42.62190736715949],[-96.71405928645977,42.61230236715054],[-96.6366722863877,42.5507313670932],[-96.62929428638083,42.52269336706709],[-96.60546728635863,42.50723636705269],[-96.58475328633935,42.51828736706298],[-96.5472152863044,42.52049936706504],[-96.49470128625548,42.488459367035205],[-96.43939428620396,42.48924036703593],[-96.39607428616362,42.4674013670156],[-96.39789028616532,42.441793366991746],[-96.4176282861837,42.41477736696658],[-96.41176128617823,42.38091836693505],[-96.4241752861898,42.349279366905584],[-96.38978128615777,42.3287893668865],[-96.36870028613814,42.29802336685785],[-96.34288128611408,42.282081366843],[-96.33265828610456,42.26030736682272],[-96.33770828610926,42.22952236679405],[-96.3635122861333,42.21404236677964],[-96.35216528612273,42.16818536673692],[-96.2851232860603,42.12345236669526],[-96.265483286042,42.04889736662583],[-96.23872528601709,42.02843836660678],[-96.23609328601464,42.00125836658147],[-96.20284228598366,41.99661536657714],[-96.18521728596725,41.9806853665623],[-96.14732828593196,41.96625436654887],[-96.1458702859306,41.924907366510354],[-96.15997028594374,41.90415136649102],[-96.13562328592106,41.86262036645235],[-96.07641728586592,41.79146936638608],[-96.09932128588726,41.75297536635023],[-96.09977128588767,41.73156336633029],[-96.08555728587443,41.70498736630554],[-96.12220228590856,41.694913366296156],[-96.12026428590676,41.68409436628608],[-96.09930628588724,41.65468036625869],[-96.11130728589842,41.59900636620684],[-96.08083528587004,41.57600036618541],[-96.09193628588038,41.56314536617344],[-96.0858402858747,41.537522366149574],[-96.05017228584148,41.524335366137294],[-96.00459228579903,41.53666336614877],[-95.99396528578913,41.528103366140805],[-95.99668828579166,41.51151736612536],[-96.01345128580728,41.49299436610811],[-96.00689728580117,41.481954366097824],[-95.95318528575115,41.47238736608891],[-95.93506528573428,41.4623813660796],[-95.94005628573892,41.394805366016655],[-95.94289528574157,41.34007736596569],[-95.88910728569148,41.30138936592966],[-95.89759128569938,41.28686336591613],[-95.91120228571205,41.308469365936254],[-95.93023028572978,41.302056365930284],[-95.91098128571184,41.22524536585874],[-95.92225028572234,41.20785436584255],[-95.91610028571661,41.194063365829706],[-95.85919828566362,41.1805373658171],[-95.85980128566418,41.16686536580437],[-95.87668528567991,41.1642023658019],[-95.85827428566276,41.10918736575066],[-95.87880428568188,41.065871365710315],[-95.85953928566394,41.035002365681564],[-95.8608972856652,41.002650365651434],[-95.83760328564351,40.97425836562499],[-95.83654128564253,40.901108365556865],[-95.83439628564052,40.87030036552818],[-95.84643528565174,40.848332365507716],[-95.85179028565672,40.79260036545581],[-95.87661628567984,40.73043636539792],[-95.76799928557868,40.6431173653166],[-95.75754628556895,40.62090436529591],[-95.7674792855782,40.58904836526624],[-95.76341228557442,40.5497073652296],[-95.73703628554985,40.53237336521346],[-95.69206628550796,40.52412936520578],[-95.68741328550364,40.56117036524027],[-95.67569328549271,40.565835365244624],[-95.66294428548085,40.55872936523801],[-95.6580602854763,40.53033236521156],[-95.68497028550136,40.512205365194674],[-95.69536128551104,40.48533836516965],[-95.63681728545652,40.396390365086816],[-95.63418528545407,40.358800365051806],[-95.61620128543731,40.34649736504035],[-95.61793328543892,40.3314183650263],[-95.64555328546464,40.32234636501785],[-95.64682728546583,40.309109365005526],[-95.59553228541806,40.309776365006144],[-95.547137285373,40.266215364965575],[-95.4768222853075,40.22685536492892],[-95.46663628529802,40.21325536491625],[-95.46095228529272,40.17399536487969],[-95.42247628525689,40.13174336484035],[-95.39281328522927,40.11541636482514],[-95.38454228522156,40.09536236480646],[-95.40378428523948,40.080379364792506],[-95.41376428524877,40.04811136476245],[-95.39053228522714,40.043750364758395],[-95.37124428520917,40.02875136474442],[-95.3450672851848,40.024974364740906],[-95.30869728515093,39.999407364717094],[-95.32970128517049,39.99259536471075],[-95.78070028559051,39.99348936471158],[-96.00125328579593,39.99515936471314],[-96.24059828601882,39.99450336471253],[-96.45403828621761,39.99417236471221],[-96.80142028654113,39.9944763647125],[-96.90828728664066,39.996154364714066],[-97.36191228706313,39.997380364715205],[-97.81658928748658,39.999729364717396],[-97.92958828759183,39.9984523647162],[-98.26416528790342,39.99843436471619],[-98.50447928812723,39.99712936471497],[-98.72063228832855,39.99846136471621],[-99.06474728864902,39.9983383647161],[-99.17820128875468,39.999577364717254],[-99.62785928917346,40.002987364720425],[-100.18091028968853,40.00047836471809],[-100.19111128969803,40.00058536471819],[-100.73504929020461,39.99917236471687],[-100.75485629022306,40.00019836471783],[-101.32214829075139,40.00182136471934],[-101.40739329083078,40.001003364718585],[-102.05153529143068,39.99891836471664]]]}},
{"type":"Feature","properties":{"STATE_NAME":"New York","DRAWSEQ":17,"STATE_FIPS":"36","SUB_REGION":"Middle Atlantic","STATE_ABBR":"NY"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-79.76323527067309,42.267327366829264],[-79.44402027037579,42.41936136697085],[-79.35488427029279,42.49346136703986],[-79.14223327009474,42.57461636711544],[-79.04375227000301,42.69924636723151],[-78.85920026983113,42.79274536731859],[-78.93655126990318,42.97423136748762],[-78.88279326985311,43.022357367532436],[-78.92559626989298,43.06662636757366],[-79.06111427001919,43.090605367596],[-79.0393252699989,43.14473936764641],[-79.06223927002023,43.26821636776141],[-78.46465326946368,43.37199336785806],[-77.9920092690235,43.36557136785208],[-77.74500726879346,43.335170367823764],[-77.5757112686358,43.24154736773657],[-77.37731626845103,43.27571336776839],[-76.91452726802002,43.27859636777107],[-76.73682926785453,43.34273336783081],[-76.71847126783743,43.323442367812845],[-76.61962826774537,43.41415236789732],[-76.45465526759173,43.500721367977945],[-76.22276426737577,43.55415336802771],[-76.18457026734019,43.63319736810132],[-76.20566626735985,43.68270036814743],[-76.23999226739181,43.83512736828939],[-76.19371826734871,43.91249036836143],[-76.12906626728851,43.932208368379804],[-76.13452226729358,44.01322936845526],[-76.201542267356,44.06559836850403],[-76.2968832674448,44.042017368482064],[-76.36288126750625,44.09835436853454],[-75.84803026702677,44.3902623688064],[-75.75865726694353,44.51753336892493],[-75.32886226654325,44.8106293691979],[-74.9684692662076,44.94862536932641],[-74.73610726599121,44.99291636936766],[-74.02153926532571,44.99084736936574],[-73.34472326469538,45.006138369379975],[-73.350758264701,44.98197336935747],[-73.33641426468765,44.93260436931149],[-73.38230626473039,44.847933369232635],[-73.36905426471805,44.819118369205796],[-73.32678626467867,44.79929336918734],[-73.37315826472187,44.724236369117435],[-73.35815126470789,44.680368369076575],[-73.3730972647218,44.6612763690588],[-73.37013626471905,44.63434936903372],[-73.38182526472994,44.61980736902018],[-73.37129626472013,44.579167368982326],[-73.34781226469826,44.55397136895886],[-73.33445226468581,44.54432836894988],[-73.29331926464751,44.43285336884606],[-73.29999526465373,44.40553336882061],[-73.32978826468147,44.367390368785095],[-73.30532526465869,44.26014236868521],[-73.37733226472575,44.20124736863036],[-73.38206226473015,44.17210736860322],[-73.4078652647542,44.136227368569806],[-73.40875726475501,44.10661036854222],[-73.43521526477966,44.063897368502445],[-73.43600026478039,44.04567936848548],[-73.40825126475454,44.0182223684599],[-73.41740626476307,43.98819736843194],[-73.40533426475183,43.9148073683636],[-73.37512126472369,43.88597736833674],[-73.38474026473266,43.80450836826087],[-73.35899726470868,43.77842736823658],[-73.35666926470651,43.75655836821622],[-73.37098926471984,43.71428136817684],[-73.42296026476825,43.63211436810032],[-73.41832026476392,43.582479368054095],[-73.38811426473579,43.569143368041665],[-73.36368526471304,43.61499836808437],[-73.30353426465702,43.62471436809342],[-73.29410426464824,43.619653368088706],[-73.28173626463672,43.593187368064065],[-73.29140226464573,43.57503336804716],[-73.25998426461646,43.55938236803258],[-73.23839126459634,43.512832367989226],[-73.25007126460723,43.31085436780112],[-73.27600526463138,42.940294367456005],[-73.27958326463471,42.8371033673599],[-73.29616926465016,42.80354936732866],[-73.26927526462511,42.747481367276436],[-73.25806026461467,42.74605836727511],[-73.35082426470106,42.50475536705038],[-73.49884026483892,42.07746036665243],[-73.4842302648253,42.04742836662446],[-73.51714726485596,41.665686366268936],[-73.5303922648683,41.52274536613581],[-73.54429326488125,41.365298365989176],[-73.5502592648868,41.29362036592242],[-73.47812026481962,41.210755365845245],[-73.72523726504976,41.10035436574243],[-73.65372426498315,41.01261736566072],[-73.65315126498263,40.998392365647476],[-73.7800412651008,40.886688365543435],[-73.79634626511599,40.83233436549281],[-73.91986226523102,40.80280436546532],[-74.0061832653114,40.7040023653733],[-74.00626026531148,40.737730365404715],[-73.97706126528429,40.79748736546036],[-73.92239426523338,40.88604036554284],[-73.90896626522087,40.927314365581275],[-73.89614826520894,40.960871365612526],[-73.89669726520944,40.9985293656476],[-74.21303826550407,41.12361136576409],[-74.24235926553136,41.137626365777145],[-74.3719812656521,41.19585036583137],[-74.70006226595764,41.350573365975464],[-74.70527326596249,41.37505936599827],[-74.74043726599524,41.401635366023015],[-74.74004026599486,41.42205936604204],[-74.75482626600864,41.43014636604957],[-74.792799266044,41.42991736604936],[-74.86406626611038,41.44715436606541],[-74.89527926613945,41.444671366063105],[-74.8985592661425,41.461894366079136],[-74.93256426617417,41.48435036610006],[-74.97178826621071,41.48360236609936],[-75.01488726625084,41.53955636615147],[-75.02508726626034,41.56580136617591],[-75.06986526630205,41.604478366211936],[-75.07245126630445,41.61308036621995],[-75.05132526628478,41.637314366242514],[-75.06540126629788,41.714836366314714],[-75.05697026629004,41.72670836632577],[-75.06131826629408,41.77026036636633],[-75.09715526632746,41.77904136637451],[-75.09682626632716,41.797207366391426],[-75.07984326631134,41.8141483664072],[-75.11777726634666,41.83698636642848],[-75.12475126635316,41.849182366439834],[-75.14828026637507,41.85578936644598],[-75.1712842663965,41.867839366457204],[-75.25451526647402,41.868873366458175],[-75.28369026650118,41.947603366531496],[-75.3240662665388,41.96127536654423],[-75.3456572665589,41.99284536657363],[-75.3828132665935,41.99835636657876],[-75.47973226668377,41.996367366576905],[-76.10483426726593,41.99949836657983],[-76.14502026730337,42.0006543665809],[-76.56391526769349,42.003011366583095],[-76.92839526803293,42.00253436658265],[-76.96857326807036,42.00298136658307],[-77.61284726867038,41.9988293665792],[-77.74500826879347,41.997333366577806],[-78.20426226922118,41.998200366578615],[-78.30508826931508,41.999420366579756],[-78.9185382698864,41.999846366580144],[-79.05948927001766,42.00115736658137],[-79.61236727053257,42.000585366580836],[-79.76165927067161,42.003105366583185],[-79.76323527067309,42.267327366829264]]],[[[-73.75220926507488,40.594587365271394],[-73.92759026523822,40.557650365236995],[-73.76139526508344,40.61823836529342],[-73.76493526508673,40.63693336531084],[-73.8460602651623,40.652600365325426],[-73.91573426522717,40.631131365305436],[-73.87981426519373,40.590269365267375],[-74.00403926530942,40.58125936525899],[-74.02772126533146,40.63933636531307],[-73.9556072652643,40.73938236540625],[-73.89901726521161,40.79711736546002],[-73.75391826507648,40.78885136545232],[-73.74947726507234,40.84499836550461],[-73.59827226493151,40.90314436555876],[-73.47808926481959,40.87974436553697],[-73.4306482647754,40.92255636557684],[-73.21452326457413,40.90104136555681],[-73.14097926450563,40.9513963656037],[-73.02126926439414,40.968433365619575],[-72.6315722640312,40.981285365631535],[-72.31703126373827,41.149333365788046],[-72.28114926370485,41.14253536578171],[-72.35427926377295,41.110202365751604],[-72.41634526383076,41.026040365673225],[-72.55097126395614,40.966180365617475],[-72.60481526400629,40.90530036556078],[-72.47610926388641,40.920148365574605],[-72.29308226371596,41.02401736567134],[-72.20335026363239,41.03537436568192],[-72.07701126351473,41.0005743656495],[-71.92370026337196,41.084871365728006],[-71.86998626332192,41.07450736571836],[-71.9187022633673,41.03057436567744],[-72.52116426392838,40.815041365476716],[-73.42252626476784,40.66132536533355],[-73.75220926507488,40.594587365271394]]],[[[-73.29305926464727,40.62638236530101],[-73.29114426464548,40.633077365307244],[-73.24043726459826,40.63307636530725],[-73.05102326442186,40.67516736534644],[-72.87690626425969,40.73734636540435],[-72.7821992641715,40.7641333654293],[-72.75732626414832,40.76795936543286],[-72.76402526415457,40.75839236542396],[-72.95631526433365,40.70003836536961],[-73.03093426440314,40.67134136534288],[-73.24905126460628,40.62542436530012],[-73.29305926464727,40.62638236530101]]],[[[-74.23693926552632,40.5060033651889],[-74.23694026552633,40.537905365218606],[-74.16629826546053,40.624497365299256],[-74.07286626537352,40.6495633653226],[-74.05919326536078,40.601709365278026],[-74.1229992654202,40.54474136522498],[-74.19364226548599,40.510562365193145],[-74.23693926552632,40.5060033651889]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Pennsylvania","DRAWSEQ":18,"STATE_FIPS":"42","SUB_REGION":"Middle Atlantic","STATE_ABBR":"PA"},"geometry":{"type":"Polygon","coordinates":[[[-79.48097127041021,39.720274364457126],[-79.76513227067485,39.721807364458556],[-79.91826827081748,39.721667364458426],[-80.42908227129321,39.719842364456724],[-80.52426927138185,39.721209364458005],[-80.52465027138221,39.95841936467892],[-80.5249622713825,40.02282536473891],[-80.52604527138351,40.16252136486901],[-80.5235642713812,40.403033365092995],[-80.52435727138193,40.47878436516355],[-80.52199927137974,40.63720336531109],[-80.52030627137816,40.854168365513154],[-80.52092427137873,40.8972703655533],[-80.52293227138061,41.12962736576969],[-80.51999627137788,41.48928836610465],[-80.52392527138153,41.49510236611007],[-80.52264427138034,41.850774366441314],[-80.52059227137843,41.986872366568065],[-79.76323527067309,42.267327366829264],[-79.76165927067161,42.003105366583185],[-79.61236727053257,42.000585366580836],[-79.05948927001766,42.00115736658137],[-78.9185382698864,41.999846366580144],[-78.30508826931508,41.999420366579756],[-78.20426226922118,41.998200366578615],[-77.74500826879347,41.997333366577806],[-77.61284726867038,41.9988293665792],[-76.96857326807036,42.00298136658307],[-76.92839526803293,42.00253436658265],[-76.56391526769349,42.003011366583095],[-76.14502026730337,42.0006543665809],[-76.10483426726593,41.99949836657983],[-75.47973226668377,41.996367366576905],[-75.3828132665935,41.99835636657876],[-75.3456572665589,41.99284536657363],[-75.3240662665388,41.96127536654423],[-75.28369026650118,41.947603366531496],[-75.25451526647402,41.868873366458175],[-75.1712842663965,41.867839366457204],[-75.14828026637507,41.85578936644598],[-75.12475126635316,41.849182366439834],[-75.11777726634666,41.83698636642848],[-75.07984326631134,41.8141483664072],[-75.09682626632716,41.797207366391426],[-75.09715526632746,41.77904136637451],[-75.06131826629408,41.77026036636633],[-75.05697026629004,41.72670836632577],[-75.06540126629788,41.714836366314714],[-75.05132526628478,41.637314366242514],[-75.07245126630445,41.61308036621995],[-75.06986526630205,41.604478366211936],[-75.02508726626034,41.56580136617591],[-75.01488726625084,41.53955636615147],[-74.97178826621071,41.48360236609936],[-74.93256426617417,41.48435036610006],[-74.8985592661425,41.461894366079136],[-74.89527926613945,41.444671366063105],[-74.86406626611038,41.44715436606541],[-74.792799266044,41.42991736604936],[-74.75482626600864,41.43014636604957],[-74.74004026599486,41.42205936604204],[-74.74043726599524,41.401635366023015],[-74.70527326596249,41.37505936599827],[-74.70006226595764,41.350573365975464],[-74.79166326604295,41.31196436593951],[-74.79414326604525,41.29521436592391],[-74.82519626607417,41.28270636591226],[-74.86641126611256,41.226817365860214],[-74.86288626610929,41.20677136584154],[-74.9147682661576,41.14110536578038],[-74.9499942661904,41.111854365753146],[-74.98459526622263,41.099380365741524],[-74.98888326622662,41.081761365725114],[-74.96629126620559,41.082676365725966],[-75.00115126623805,41.06248536570716],[-75.03525626626981,41.02820336567524],[-75.06997926630216,41.01071636565895],[-75.11661926634558,41.0002483656492],[-75.13930226636671,40.977527365628035],[-75.13552526636319,40.96293636561445],[-75.07973626631124,40.903348365558955],[-75.0736852663056,40.88462636554152],[-75.05648826628959,40.8720453655298],[-75.05461926628784,40.855673365514555],[-75.09954226632968,40.83928536549929],[-75.08921126632006,40.82139036548263],[-75.10054126633061,40.79165936545493],[-75.13031926635834,40.772707365437284],[-75.1703132663956,40.77480936543924],[-75.19364426641732,40.74800336541428],[-75.18775426641184,40.723857365391794],[-75.20535526642823,40.68606136535659],[-75.1840602664084,40.669792365341436],[-75.20891726643154,40.65073836532369],[-75.19793826642132,40.6342053653083],[-75.2003872664236,40.61474336529017],[-75.1935132664172,40.58376836526132],[-75.19757226642098,40.570684365249136],[-75.18228226640674,40.5567993652362],[-75.12452626635294,40.564798365243654],[-75.07978626631129,40.545356365225544],[-75.06367926629628,40.52100336520287],[-75.07011826630227,40.45625436514257],[-75.05745326629048,40.420171365108956],[-75.02126626625679,40.40132336509141],[-75.00047526623742,40.4086213650982],[-74.97284126621169,40.40444836509432],[-74.95018826619058,40.345473365039396],[-74.93250326617411,40.333774365028496],[-74.92115026616354,40.31403336501011],[-74.88065926612583,40.29959136499666],[-74.84276326609054,40.24845236494903],[-74.73882426599374,40.177725364883166],[-74.7254802659813,40.1493063648567],[-74.74629426600069,40.12435836483346],[-74.82902226607774,40.11616136482583],[-74.8719242661177,40.07805636479034],[-74.95620126619619,40.05801436477168],[-74.98348526622159,40.034073364749375],[-75.04567526627952,40.00763436472475],[-75.06804526630035,39.98539136470404],[-75.08458726631575,39.97573236469505],[-75.11096326634032,39.97669036469594],[-75.13986426636724,39.95591936467659],[-75.14715826637403,39.93474036465687],[-75.13580526636346,39.89688736462162],[-75.14290126637006,39.881602364607375],[-75.18560526640984,39.877405364603476],[-75.24699526646701,39.85040536457832],[-75.25374026647329,39.84553736457379],[-75.34593226655915,39.84851636457657],[-75.42046826662857,39.798983364530436],[-75.46998626667468,39.826547364556106],[-75.58344326678035,39.84011936456875],[-75.64399426683674,39.83830636456706],[-75.69477126688403,39.820457364550435],[-75.74559226693137,39.77492936450803],[-75.77492726695868,39.72455236446112],[-75.79109426697374,39.72386636446048],[-76.13922326729796,39.722229364458954],[-76.23312226738541,39.7218533644586],[-76.569834267699,39.72026536445712],[-76.7904912679045,39.72125636445804],[-76.99681226809665,39.72089136445771],[-77.22105126830549,39.72067936445751],[-77.46443326853216,39.720073364456944],[-77.47579326854274,39.719623364456524],[-78.0959482691203,39.725461364461964],[-78.33455026934251,39.72409636446069],[-78.3847832693893,39.72374836446036],[-78.81775826979255,39.72311536445977],[-78.93017326989724,39.72233736445905],[-79.39661027033164,39.71931336445624],[-79.48097127041021,39.720274364457126]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Connecticut","DRAWSEQ":19,"STATE_FIPS":"09","SUB_REGION":"New England","STATE_ABBR":"CT"},"geometry":{"type":"Polygon","coordinates":[[[-73.4842302648253,42.04742836662446],[-73.04563226441682,42.0363103666141],[-73.00609526438001,42.036009366613825],[-72.8164512642034,42.0335073666115],[-72.81767926420453,41.99718536657767],[-72.76757526415787,42.00216736658231],[-72.75589426414699,42.03384736661181],[-72.60952626401067,42.03053636660873],[-72.6078252640091,42.02280036660153],[-72.58190726398496,42.02160736660041],[-72.571226263975,42.030125366608345],[-72.50757226391572,42.030766366608944],[-72.13634626356999,42.026402366604884],[-72.09497126353146,42.02579936660432],[-71.80234026325893,42.01797736659704],[-71.79783126325472,42.00427436658427],[-71.7882492632458,41.72160336632101],[-71.79260526324985,41.64175836624665],[-71.79019426324761,41.60130736620898],[-71.8027432632593,41.415829366036235],[-71.84599526329959,41.40385436602509],[-71.83686926329108,41.34196136596745],[-71.84777226330124,41.32534836595197],[-71.86667826331885,41.32276936594957],[-72.2814162637051,41.2811453659108],[-72.32635526374695,41.28964136591872],[-72.37841226379544,41.35834836598271],[-72.3781532637952,41.27810236590797],[-72.52724526393405,41.26370236589456],[-72.90673426428746,41.270063365900484],[-73.10441826447158,41.16103936579895],[-73.65315126498263,40.998392365647476],[-73.65372426498315,41.01261736566072],[-73.72523726504976,41.10035436574243],[-73.47812026481962,41.210755365845245],[-73.5502592648868,41.29362036592242],[-73.54429326488125,41.365298365989176],[-73.5303922648683,41.52274536613581],[-73.51714726485596,41.665686366268936],[-73.4842302648253,42.04742836662446]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Rhode Island","DRAWSEQ":20,"STATE_FIPS":"44","SUB_REGION":"New England","STATE_ABBR":"RI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.79783126325472,42.00427436658427],[-71.49743026297496,42.00925336658891],[-71.37864426286433,42.013713366593066],[-71.38240526286783,41.97926336656098],[-71.38395326286927,41.88843936647639],[-71.3330862628219,41.89603136648346],[-71.34249326283066,41.8757833664646],[-71.33454226282325,41.85790336644796],[-71.34548326283344,41.813161366406284],[-71.33979826282815,41.78442536637952],[-71.31932826280908,41.77219536636813],[-71.26662826276001,41.74974336634722],[-71.22897626272494,41.70769436630806],[-71.28400126277619,41.67954936628185],[-71.36738726285384,41.741350366339404],[-71.39358026287823,41.761155366357855],[-71.36901226285535,41.70329136630396],[-71.41924726290215,41.65221236625639],[-71.42731826290965,41.48668936610223],[-71.48988826296792,41.39208536601413],[-71.72226426318434,41.32726436595375],[-71.86667826331885,41.32276936594957],[-71.84777226330124,41.32534836595197],[-71.83686926329108,41.34196136596745],[-71.84599526329959,41.40385436602509],[-71.8027432632593,41.415829366036235],[-71.79019426324761,41.60130736620898],[-71.79260526324985,41.64175836624665],[-71.7882492632458,41.72160336632101],[-71.79783126325472,42.00427436658427]]],[[[-71.19880826269684,41.67850036628087],[-71.1412122626432,41.65527336625924],[-71.11713226262077,41.49306236610817],[-71.19993726269789,41.46331836608047],[-71.19880826269684,41.67850036628087]]],[[[-71.26916926276238,41.62126836622757],[-71.21944726271606,41.63564236624096],[-71.23867326273397,41.474849366091206],[-71.28800726277991,41.483619366099376],[-71.3495252628372,41.4458573660642],[-71.26916926276238,41.62126836622757]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"New Jersey","DRAWSEQ":21,"STATE_FIPS":"34","SUB_REGION":"Middle Atlantic","STATE_ABBR":"NJ"},"geometry":{"type":"Polygon","coordinates":[[[-75.48928026669266,39.714858364452084],[-75.47597426668027,39.72008436445695],[-75.47476826667913,39.741832364477204],[-75.46039426666576,39.763362364497254],[-75.42764726663525,39.77824336451112],[-75.41175426662045,39.78977036452186],[-75.42046826662857,39.798983364530436],[-75.34593226655915,39.84851636457657],[-75.25374026647329,39.84553736457379],[-75.24699526646701,39.85040536457832],[-75.18560526640984,39.877405364603476],[-75.14290126637006,39.881602364607375],[-75.13580526636346,39.89688736462162],[-75.14715826637403,39.93474036465687],[-75.13986426636724,39.95591936467659],[-75.11096326634032,39.97669036469594],[-75.08458726631575,39.97573236469505],[-75.06804526630035,39.98539136470404],[-75.04567526627952,40.00763436472475],[-74.98348526622159,40.034073364749375],[-74.95620126619619,40.05801436477168],[-74.8719242661177,40.07805636479034],[-74.82902226607774,40.11616136482583],[-74.74629426600069,40.12435836483346],[-74.7254802659813,40.1493063648567],[-74.73882426599374,40.177725364883166],[-74.84276326609054,40.24845236494903],[-74.88065926612583,40.29959136499666],[-74.92115026616354,40.31403336501011],[-74.93250326617411,40.333774365028496],[-74.95018826619058,40.345473365039396],[-74.97284126621169,40.40444836509432],[-75.00047526623742,40.4086213650982],[-75.02126626625679,40.40132336509141],[-75.05745326629048,40.420171365108956],[-75.07011826630227,40.45625436514257],[-75.06367926629628,40.52100336520287],[-75.07978626631129,40.545356365225544],[-75.12452626635294,40.564798365243654],[-75.18228226640674,40.5567993652362],[-75.19757226642098,40.570684365249136],[-75.1935132664172,40.58376836526132],[-75.2003872664236,40.61474336529017],[-75.19793826642132,40.6342053653083],[-75.20891726643154,40.65073836532369],[-75.1840602664084,40.669792365341436],[-75.20535526642823,40.68606136535659],[-75.18775426641184,40.723857365391794],[-75.19364426641732,40.74800336541428],[-75.1703132663956,40.77480936543924],[-75.13031926635834,40.772707365437284],[-75.10054126633061,40.79165936545493],[-75.08921126632006,40.82139036548263],[-75.09954226632968,40.83928536549929],[-75.05461926628784,40.855673365514555],[-75.05648826628959,40.8720453655298],[-75.0736852663056,40.88462636554152],[-75.07973626631124,40.903348365558955],[-75.13552526636319,40.96293636561445],[-75.13930226636671,40.977527365628035],[-75.11661926634558,41.0002483656492],[-75.06997926630216,41.01071636565895],[-75.03525626626981,41.02820336567524],[-75.00115126623805,41.06248536570716],[-74.96629126620559,41.082676365725966],[-74.98888326622662,41.081761365725114],[-74.98459526622263,41.099380365741524],[-74.9499942661904,41.111854365753146],[-74.9147682661576,41.14110536578038],[-74.86288626610929,41.20677136584154],[-74.86641126611256,41.226817365860214],[-74.82519626607417,41.28270636591226],[-74.79414326604525,41.29521436592391],[-74.79166326604295,41.31196436593951],[-74.70006226595764,41.350573365975464],[-74.3719812656521,41.19585036583137],[-74.24235926553136,41.137626365777145],[-74.21303826550407,41.12361136576409],[-73.89669726520944,40.9985293656476],[-73.89614826520894,40.960871365612526],[-73.90896626522087,40.927314365581275],[-73.92239426523338,40.88604036554284],[-73.97706126528429,40.79748736546036],[-74.00626026531148,40.737730365404715],[-74.0061832653114,40.7040023653733],[-74.12905826542585,40.647072365320284],[-74.11553126541325,40.70562636537481],[-74.14685826544243,40.67547936534673],[-74.20825326549961,40.59118736526823],[-74.27891026556541,40.514303365196625],[-74.2689152655561,40.46374836514954],[-74.22450326551474,40.44358436513076],[-74.12188526541917,40.451458365138095],[-73.97844026528557,40.323616365019035],[-74.0392312653422,40.1018423648125],[-74.09142626539081,40.11608536482576],[-74.08377326538367,40.088181364799766],[-74.03429426533759,40.091367364802736],[-74.04979026535203,40.056856364770596],[-74.12218026541944,40.05156136476566],[-74.07733326537767,40.042273364757015],[-74.15922826545395,39.87860536460459],[-74.17142726546531,39.71827436445527],[-74.237675265527,39.624046364367516],[-74.3233422656068,39.57208636431912],[-74.32885026561192,39.52362736427399],[-74.41238826568973,39.542621364291676],[-74.40111926567923,39.50262736425443],[-74.46041826573445,39.426756364183774],[-74.44750126572242,39.381075364141225],[-74.65823426591868,39.287251364053844],[-74.62252726588542,39.28163236404862],[-74.62458726588734,39.250828364019924],[-74.80229226605285,39.02637336381089],[-74.87925326612452,38.98984336377686],[-74.87630126612177,38.95668236374598],[-74.9681252662073,38.971738363760004],[-74.89020226613472,39.113860363892364],[-74.91665426615936,39.170638363945244],[-75.0144072662504,39.19836336397106],[-75.1199582663487,39.18469136395833],[-75.4156722666241,39.37497136413555],[-75.55276326675178,39.490514364243154],[-75.51668926671819,39.56656836431398],[-75.57023426676805,39.617735364361636],[-75.48928026669266,39.714858364452084]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Indiana","DRAWSEQ":22,"STATE_FIPS":"18","SUB_REGION":"East North Central","STATE_ABBR":"IN"},"geometry":{"type":"Polygon","coordinates":[[[-88.03560727837733,37.805728362674074],[-88.08606227842432,37.81765736268518],[-88.08929727842734,37.83129436269788],[-88.04216927838344,37.82756736269441],[-88.0342722783761,37.843791362709524],[-88.07577027841474,37.86785436273193],[-88.10149027843869,37.89535136275754],[-88.10011627843741,37.906215362767654],[-88.04490027838598,37.89604936275819],[-88.02662027836897,37.90580336276727],[-88.03047327837255,37.917636362778296],[-88.08403327842244,37.92370536278395],[-88.07897527841773,37.94404536280289],[-88.06465427840439,37.92982836278965],[-88.0418032783831,37.93454336279404],[-88.04254327838379,37.95631036281431],[-88.02173727836441,37.97510136283181],[-88.02924427837141,38.00828136286272],[-88.0217292783644,38.03357736288628],[-88.04150627838283,38.03834936289071],[-88.04312327838433,38.04516636289706],[-88.03476127837655,38.05413036290541],[-87.97532627832119,38.073352362923316],[-87.96489727831148,38.09679436294515],[-88.01236127835568,38.09239236294105],[-88.01857927836147,38.10334836295125],[-87.97353427831952,38.13180536297776],[-87.95059927829816,38.13695936298255],[-87.93202127828086,38.15757336300175],[-87.93231927828114,38.17117736301442],[-87.97796027832365,38.20076036304197],[-87.98604027833117,38.234860363073736],[-87.98005027832559,38.241131363079575],[-87.92595027827521,38.304818363138885],[-87.91368127826378,38.302392363136626],[-87.9141392782642,38.28109436311679],[-87.88849627824032,38.30070536313505],[-87.88347627823565,38.31559836314892],[-87.87406927822688,38.31683436315008],[-87.86303627821661,38.28540836312081],[-87.85011227820458,38.286144363121494],[-87.83453327819007,38.35257036318336],[-87.78404827814305,38.378170363207204],[-87.7484562781099,38.418011363244304],[-87.73898027810108,38.44552736326993],[-87.75868827811944,38.45714336328075],[-87.75612427811704,38.46617236328916],[-87.6928442780581,38.48158036330351],[-87.67993527804609,38.50405336332444],[-87.65355927802152,38.50049036332112],[-87.65141527801953,38.51541736333502],[-87.6729692780396,38.54747136336488],[-87.65288027802089,38.57391936338951],[-87.64061927800947,38.593225363407484],[-87.61985127799014,38.599256363413105],[-87.62867127799835,38.62296436343518],[-87.62521527799512,38.64285836345371],[-87.58850127796093,38.67221536348105],[-87.5439132779194,38.68602136349391],[-87.50833627788627,38.73668036354108],[-87.50802327788598,38.7697683635719],[-87.51904827789625,38.7767453635784],[-87.50790927788587,38.79560536359597],[-87.55052927792556,38.85793636365402],[-87.55908127793353,38.86985636366512],[-87.53922227791504,38.90490536369776],[-87.53020427790663,38.93196336372296],[-87.5334922779097,38.96374636375256],[-87.54792727792315,38.97712036376501],[-87.59188127796408,38.99412636378085],[-87.58177227795467,38.9957853637824],[-87.58534327795799,39.06247736384451],[-87.61203127798285,39.08464736386516],[-87.63089227800042,39.08901536386922],[-87.63169327800117,39.10398336388317],[-87.66228727802965,39.113509363892035],[-87.65948027802703,39.13069336390804],[-87.67035227803716,39.14671936392297],[-87.64428227801288,39.16854636394329],[-87.60795027797904,39.19610736396896],[-87.59423227796627,39.19816736397088],[-87.58861727796103,39.20850536398051],[-87.5845882779573,39.24879136401803],[-87.60692027797809,39.25820236402679],[-87.61582427798638,39.28145636404845],[-87.61064327798155,39.297699364063575],[-87.62526227799518,39.30744136407265],[-87.5976882779695,39.338305364101394],[-87.54023727791598,39.35056236411281],[-87.53858927791445,39.47748336423101],[-87.53559727791166,39.60937636435385],[-87.53579327791185,39.88733936461272],[-87.53535727791144,40.16623136487246],[-87.53569527791176,40.48328236516774],[-87.53719127791315,40.494646365178326],[-87.53269627790895,40.7454483654119],[-87.53205227790836,41.00996336565825],[-87.5317652779081,41.173790365810824],[-87.53248427790876,41.30133836592961],[-87.53268627790895,41.46975036608646],[-87.52990627790636,41.7236263663229],[-87.46371127784471,41.67162436627447],[-87.41930727780336,41.676366366278884],[-87.44197427782447,41.65811336626189],[-87.39474627778048,41.634191366239605],[-87.23385427763064,41.62618836623216],[-86.94246027735926,41.71650336631626],[-86.83482927725902,41.765504366361895],[-86.52518127697064,41.76554036636193],[-86.23456527669998,41.76486436636131],[-86.06830227654514,41.76462836636108],[-85.79922727629454,41.76353536636007],[-85.65945927616437,41.76262736635922],[-85.297209275827,41.763581366360114],[-85.19314027573007,41.762867366359444],[-84.82600827538816,41.761875366358524],[-84.78847827535321,41.76095936635767],[-84.79037727535497,41.69749436629856],[-84.7913702753559,41.53049236614303],[-84.79189727535639,41.427899366047484],[-84.79097527535554,41.28381836591329],[-84.7915862753561,41.25313236588472],[-84.79052727535512,40.98834136563811],[-84.79102327535558,40.93770836559095],[-84.79306127535747,40.72886036539645],[-84.79325227535766,40.588738365265954],[-84.79455627535887,40.35305036504645],[-84.79538827535964,40.3195003650152],[-84.80356427536726,40.013990364730674],[-84.80614927536966,39.9171663646405],[-84.80869627537204,39.73329936446926],[-84.81103727537422,39.56405036431164],[-84.81110527537429,39.513163364264244],[-84.81202527537513,39.312333364077205],[-84.81207027537518,39.30302936406854],[-84.81148027537463,39.102585363881865],[-84.82786127538989,39.10368736388289],[-84.88670827544469,39.065045363846906],[-84.88999627544776,39.05064836383349],[-84.87629327543499,39.03289536381696],[-84.84422527540512,39.005831363791756],[-84.83444427539602,38.98277536377028],[-84.84631627540708,38.95463136374407],[-84.87588027543461,38.9276043637189],[-84.87525427543403,38.90943136370197],[-84.85974327541958,38.90204236369509],[-84.80322427536694,38.89719036369057],[-84.78866727535339,38.884385363678646],[-84.78744627535225,38.86664336366212],[-84.82442627538668,38.83446336363215],[-84.81878027538143,38.79341036359392],[-84.97561127552748,38.78064136358203],[-85.02507327557356,38.7642913635668],[-85.06845427561396,38.75042436355389],[-85.11965727566164,38.71413936352009],[-85.16093327570009,38.69517636350243],[-85.20516227574127,38.69581736350303],[-85.27139427580296,38.744376363548255],[-85.3350092758622,38.73700636354139],[-85.41818627593968,38.73841736354271],[-85.44669027596622,38.72484036353006],[-85.45367927597273,38.69467436350197],[-85.42440427594546,38.58484036339968],[-85.41746127593899,38.561475363377916],[-85.43237027595288,38.537016363355136],[-85.46638227598456,38.51817536333759],[-85.50720027602257,38.471419363294046],[-85.61264027612077,38.446670363271],[-85.6435932761496,38.38368836321234],[-85.6542282761595,38.337753363169554],[-85.6813892761848,38.300953363135285],[-85.74692627624583,38.27031536310675],[-85.78621127628242,38.282391363117995],[-85.80655127630136,38.286179363121526],[-85.83990727633243,38.27629136311232],[-85.85233527634401,38.23856136307718],[-85.91207427639964,38.18000136302264],[-85.91475127640213,38.06487436291542],[-85.93087227641715,38.03404936288671],[-85.95858227644295,38.011840362866025],[-86.00666327648773,38.00176736285665],[-86.03162027651098,37.99295036284843],[-86.05271527653062,37.966784362824065],[-86.1049862765793,38.01133636286556],[-86.19062127665906,38.01775836287154],[-86.25215527671637,38.040721362892924],[-86.27769927674015,38.05817336290918],[-86.29144027675295,38.078489362928096],[-86.29767427675876,38.15030436299499],[-86.34160627679967,38.17728836302011],[-86.36435027682086,38.19329036303502],[-86.38830727684316,38.19480836303643],[-86.38710127684205,38.16802136301148],[-86.34312427680109,38.15555936299988],[-86.3354182767939,38.14402836298913],[-86.34403927680194,38.13427036298005],[-86.39367727684817,38.12329436296983],[-86.40718127686074,38.10821836295578],[-86.45252427690298,38.12975536297584],[-86.46484627691444,38.12915636297529],[-86.4743372769233,38.11170736295904],[-86.44252127689366,38.088698362937606],[-86.44246727689361,38.07599536292578],[-86.45836727690842,38.0591613629101],[-86.50311427695009,38.0516483629031],[-86.51909127696497,38.04704836289882],[-86.52783427697311,38.01869336287241],[-86.53084827697592,37.987477362843336],[-86.51690127696293,37.94224236280121],[-86.52273827696837,37.927871362787826],[-86.54108727698545,37.9215153627819],[-86.58178427702336,37.92566536278577],[-86.59831027703875,37.921072362781494],[-86.61478227705409,37.857975362722726],[-86.64556827708276,37.84600036271158],[-86.66592427710172,37.847381362712866],[-86.67067027710614,37.86064136272521],[-86.66030827709649,37.902573362764265],[-86.66865527710426,37.91319636277416],[-86.68912627712332,37.9118533627729],[-86.72887627716034,37.89462136275686],[-86.75382527718358,37.898359362760345],[-86.8028152772292,37.97880036283526],[-86.82630727725109,37.99155936284714],[-86.86327227728552,37.986920362842824],[-86.90007827731979,37.95369736281188],[-86.93157327734912,37.938040362797295],[-86.98903127740263,37.93061636279038],[-87.0131562774251,37.92476436278493],[-87.03648027744683,37.90800536276932],[-87.07130827747926,37.80713636267538],[-87.10642727751197,37.78425136265407],[-87.13187927753567,37.78973636265918],[-87.15808027756007,37.82696736269385],[-87.17578027757655,37.83864036270472],[-87.22676227762403,37.84911836271448],[-87.27274627766687,37.87081936273469],[-87.31055927770208,37.89371836275602],[-87.38755027777378,37.93496936279443],[-87.45228827783407,37.93652036279588],[-87.50480327788298,37.91562736277642],[-87.60432527797568,37.97115736282814],[-87.62713727799692,37.923454362783716],[-87.59471827796672,37.89076636275327],[-87.59363427796572,37.86491036272919],[-87.6075882779787,37.843819362709546],[-87.65169627801978,37.82817536269498],[-87.68471727805054,37.83637236270261],[-87.67972127804589,37.89704936275912],[-87.70940827807354,37.89975436276164],[-87.72820027809104,37.89458536275683],[-87.75378227811487,37.898128362760126],[-87.82364727817993,37.87825536274161],[-87.85718727821117,37.89094736275344],[-87.89903627825014,37.92459736278478],[-87.92189527827144,37.91990936278041],[-87.93448427828315,37.90420436276578],[-87.93684927828535,37.875223362738794],[-87.91022827826056,37.8386133627047],[-87.92017027826982,37.809728362677795],[-87.93961027828793,37.79955136266832],[-87.95873827830574,37.776224362646595],[-88.01122327835462,37.801352362669995],[-88.03560727837733,37.805728362674074]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Nevada","DRAWSEQ":23,"STATE_FIPS":"32","SUB_REGION":"Mountain","STATE_ABBR":"NV"},"geometry":{"type":"Polygon","coordinates":[[[-119.9934593081404,41.98920536657024],[-119.35169230754272,41.98885336656991],[-119.31094230750476,41.98913536657017],[-118.18531730645644,41.99663736657716],[-117.0188643053701,41.99479436657545],[-116.99231330534536,41.99479436657545],[-115.94754430437234,41.99459936657526],[-115.02486330351303,41.99650636657704],[-114.26947130280954,41.995924366576496],[-114.03907230259495,41.995391366576],[-114.03815130259409,40.997686365646814],[-114.03810830259405,40.111046364821064],[-114.03984430259567,39.90877836463269],[-114.0401053025959,39.538685364288014],[-114.04426730259979,38.678996363487364],[-114.04509030260056,38.571095363386874],[-114.04727330260259,38.137652362983204],[-114.04726030260258,37.59847836248105],[-114.04393930259948,36.99653836192046],[-114.04371630259928,36.84184936177639],[-114.03739230259339,36.21602336119354],[-114.04510530260056,36.19397836117301],[-114.10777530265894,36.12109036110513],[-114.12902330267872,36.04173036103122],[-114.20676930275113,36.017255361008424],[-114.233472302776,36.01833136100943],[-114.30758730284502,36.06223336105032],[-114.30385730284155,36.08710836107348],[-114.31609530285294,36.11143836109614],[-114.34423430287916,36.137480361120396],[-114.38080330291321,36.15099136113298],[-114.44394530297203,36.1210533611051],[-114.46661330299312,36.1247113611085],[-114.5305733030527,36.15509036113679],[-114.59893530311636,36.13833536112119],[-114.62161030313749,36.141966361124574],[-114.71276130322238,36.10518136109032],[-114.7281503032367,36.08596236107242],[-114.72896630323746,36.058753361047074],[-114.71767330322695,36.036758361026585],[-114.7362123032442,35.987648360980856],[-114.69927630320981,35.91161236091004],[-114.66160030317472,35.88047336088104],[-114.66246230317552,35.870960360872175],[-114.68986730320105,35.84744236085027],[-114.68273930319441,35.76470336077322],[-114.68882030320007,35.73259536074332],[-114.66509130317797,35.69309936070653],[-114.66848630318114,35.65639936067235],[-114.65406630316771,35.64658436066321],[-114.63986630315449,35.611348360630394],[-114.65313430316684,35.5848333606057],[-114.64979230316374,35.54663736057013],[-114.6722153031846,35.515754360541365],[-114.64539630315963,35.450760360480835],[-114.58958430310764,35.358378360394795],[-114.58789030310608,35.304768360344866],[-114.5595833030797,35.22018336026609],[-114.56104030308107,35.17434636022341],[-114.57225530309151,35.14006736019148],[-114.58261630310116,35.132560360184485],[-114.62644130314197,35.13390636018575],[-114.6359093031508,35.11865536017154],[-114.59563230311329,35.07605836013187],[-114.63378030314881,35.041863360100024],[-114.62106830313698,34.99891436006002],[-115.62619730407307,35.795698360802085],[-115.88576930431482,36.0012263609935],[-117.16042330550194,36.95959436188605],[-117.83868630613361,37.45729836234957],[-118.4174193066726,37.886676362749455],[-119.15245030735716,38.411801363238524],[-119.3188253075121,38.52710836334591],[-119.57568730775132,38.70291036350964],[-119.88934130804344,38.92225136371391],[-119.99525430814208,38.99410636378083],[-119.99515030814197,39.06349136384546],[-119.99454130814141,39.10613136388517],[-119.99552730814233,39.15871336393414],[-119.99530430814212,39.31154536407647],[-119.99601130814278,39.44350136419936],[-119.99616530814293,39.72061036445744],[-119.99632430814307,41.17756636581434],[-119.9934593081404,41.98920536657024]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Utah","DRAWSEQ":24,"STATE_FIPS":"49","SUB_REGION":"Mountain","STATE_ABBR":"UT"},"geometry":{"type":"Polygon","coordinates":[[[-114.03907230259495,41.995391366576],[-112.98957530161753,42.00114636658136],[-112.14711630083293,41.999054366579415],[-112.10051430078953,42.00230036658243],[-111.49458630022521,42.000171366580446],[-111.04869729980994,41.99620336657675],[-111.05106829981216,41.57859236618782],[-111.05165129981269,41.25842536588965],[-111.0510222998121,40.99658336564579],[-110.06318529889211,40.997892365647004],[-110.00216529883528,40.997599365646735],[-109.04831429794694,40.998433365647514],[-109.04615529794494,40.66529136533725],[-109.05126329794969,40.2105113649137],[-109.05255129795088,39.65738236439856],[-109.0535282979518,39.51817036426891],[-109.05141729794983,39.360966364122504],[-109.05394829795219,38.49465136331568],[-109.05586129795397,38.2449203630831],[-109.04346429794242,38.15293336299743],[-109.04320629794219,37.88742036275015],[-109.04560229794441,37.63082036251117],[-109.0484802979471,36.99664136192055],[-109.99707629883055,36.99206736191629],[-110.45223629925445,36.991746361915986],[-110.48408929928411,37.003926361927334],[-110.7400632995225,37.002488361926],[-111.3561643000963,37.001709361925265],[-112.23725830091688,36.995492361919474],[-112.54252130120118,36.99799436192181],[-112.89998330153409,36.99622736192016],[-114.04393930259948,36.99653836192046],[-114.04726030260258,37.59847836248105],[-114.04727330260259,38.137652362983204],[-114.04509030260056,38.571095363386874],[-114.04426730259979,38.678996363487364],[-114.0401053025959,39.538685364288014],[-114.03984430259567,39.90877836463269],[-114.03810830259405,40.111046364821064],[-114.03815130259409,40.997686365646814],[-114.03907230259495,41.995391366576]]]}},
{"type":"Feature","properties":{"STATE_NAME":"California","DRAWSEQ":25,"STATE_FIPS":"06","SUB_REGION":"Pacific","STATE_ABBR":"CA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-124.20644431206405,41.997648366578105],[-123.81914631170335,41.99294836657373],[-123.51320431141842,41.99783336657828],[-123.22210231114731,42.00219136658233],[-122.28470531027429,42.000764366581],[-121.441509309489,41.99433436657502],[-120.87190830895852,41.98767236656881],[-119.9934593081404,41.98920536657024],[-119.99632430814307,41.17756636581434],[-119.99616530814293,39.72061036445744],[-119.99601130814278,39.44350136419936],[-119.99530430814212,39.31154536407647],[-119.99552730814233,39.15871336393414],[-119.99454130814141,39.10613136388517],[-119.99515030814197,39.06349136384546],[-119.99525430814208,38.99410636378083],[-119.88934130804344,38.92225136371391],[-119.57568730775132,38.70291036350964],[-119.3188253075121,38.52710836334591],[-119.15245030735716,38.411801363238524],[-118.4174193066726,37.886676362749455],[-117.83868630613361,37.45729836234957],[-117.16042330550194,36.95959436188605],[-115.88576930431482,36.0012263609935],[-115.62619730407307,35.795698360802085],[-114.62106830313698,34.99891436006002],[-114.63227630314742,34.997651360058846],[-114.62100730313692,34.943609360008516],[-114.63047530314574,34.919501359986064],[-114.62726330314274,34.875533359945116],[-114.5702173030896,34.83186035990444],[-114.54204030306337,34.759958359837476],[-114.52555330304801,34.74891135982719],[-114.49780430302218,34.74475735982332],[-114.46563730299222,34.70987335979083],[-114.42227030295183,34.61089535969865],[-114.43430230296303,34.59896335968754],[-114.40974230294016,34.58372335967334],[-114.3768283029095,34.536563359629426],[-114.38386230291606,34.47708535957403],[-114.3765073029092,34.45967935955782],[-114.33263630286835,34.454873359553346],[-114.30286530284062,34.43575435953554],[-114.2833943028225,34.41206935951348],[-114.2578423027987,34.40548835950735],[-114.18208030272814,34.36520635946984],[-114.15341530270143,34.33644735944305],[-114.13412730268348,34.31454835942266],[-114.12523030267519,34.272621359383606],[-114.14991230269818,34.266979359378354],[-114.23577630277813,34.186222359303144],[-114.28536830282434,34.17123135928918],[-114.32279930285918,34.1412973592613],[-114.41016630294055,34.10265435922531],[-114.42402930295347,34.07833235920266],[-114.42898030295808,34.02984435915751],[-114.51820830304118,33.96506335909717],[-114.5256323030481,33.95241335908539],[-114.49818830302253,33.925036359059895],[-114.52096230304375,33.862926359002046],[-114.51172230303513,33.84196535898253],[-114.5211223030439,33.82603135896769],[-114.50455830302846,33.7717143589171],[-114.5102873030338,33.74320035889055],[-114.49567630302019,33.70836935885811],[-114.53643330305815,33.682735358834236],[-114.52526330304775,33.66550435881818],[-114.52717030304953,33.622136358777794],[-114.5402473030617,33.58050735873903],[-114.52942030305162,33.56007335872],[-114.5870613031053,33.50944535867285],[-114.59808630311556,33.48612735865113],[-114.621089303137,33.468599358634805],[-114.63057330314584,33.439425358607636],[-114.64509230315934,33.419116358588724],[-114.7249363032337,33.41105935858121],[-114.70360330321384,33.352418358526606],[-114.73542730324348,33.3057083584831],[-114.67769330318971,33.268016358447994],[-114.68771130319904,33.23925835842121],[-114.6800513031919,33.224595358407555],[-114.6781203031901,33.16725035835415],[-114.70946330321931,33.122375358312354],[-114.71135530322107,33.09538235828722],[-114.66395130317692,33.038922358234636],[-114.6451593031594,33.044412358239754],[-114.63396730314898,33.03356735822965],[-114.6099253031266,33.027002358223534],[-114.55908930307925,33.03678235823264],[-114.52062730304343,33.02770735822419],[-114.46838730299478,32.9777893581777],[-114.47644430300228,32.9359083581387],[-114.4614363029883,32.84542235805443],[-114.52621930304863,32.80991235802135],[-114.53507730305688,32.788047358000995],[-114.53009530305225,32.7714113579855],[-114.54318730306444,32.77123235798533],[-114.54300430306427,32.76074935797557],[-114.56158230308156,32.760753357975574],[-114.56075130308079,32.74893635796457],[-114.57221030309148,32.74882935796447],[-114.57195930309123,32.73743935795386],[-114.60352230312063,32.73588635795241],[-114.60394230312102,32.72628535794347],[-114.69404030320493,32.74142535795757],[-114.71269530322232,32.7350133579516],[-114.72204930323102,32.720857357938414],[-116.10697330452084,32.619470357843994],[-117.12809830547184,32.53578135776605],[-117.19981230553861,32.71844235793617],[-117.12060630546486,32.60287235782853],[-117.12452930546851,32.67893135789937],[-117.19877430553765,32.73893435795525],[-117.24820730558369,32.68009435790045],[-117.28532530561826,32.85122035805983],[-117.2548683055899,32.88817235809424],[-117.3284393056584,33.11148235830221],[-117.4101443057345,33.2340893584164],[-117.59733130590884,33.39453435856583],[-118.10671730638325,33.74756435889461],[-118.24661630651353,33.77392535891916],[-118.28689230655104,33.703907358853954],[-118.40508930666113,33.738450358886126],[-118.42895430668335,33.77544835892058],[-118.38817530664537,33.812324358954925],[-118.41211030666766,33.88296735902071],[-118.5418543067885,34.0372513591644],[-118.78811530701785,34.018257359146716],[-118.9393603071587,34.04008135916704],[-119.21633430741664,34.146340359266],[-119.26676730746362,34.238098359351454],[-119.48301030766501,34.374862359478826],[-119.60629330777982,34.41643535951755],[-119.8694333080249,34.404796359506705],[-120.01149530815721,34.46166135955966],[-120.14016330827704,34.4719023595692],[-120.45620230857136,34.44249935954182],[-120.50940630862092,34.52137435961528],[-120.64129330874374,34.57233735966274],[-120.60162730870681,34.704022359785384],[-120.63167330873479,34.75990635983743],[-120.60815930871289,34.85561535992656],[-120.6659463087667,34.90380935997145],[-120.64433930874658,34.97263736003555],[-120.6167653087209,35.07481636013071],[-120.63841030874106,35.140028360191444],[-120.86134230894868,35.209253360255914],[-120.8835973089694,35.25940536030262],[-120.84999630893812,35.36453736040053],[-120.87521230896161,35.42776536045942],[-120.99194830907032,35.456581360486254],[-121.14655930921431,35.62932236064714],[-121.27026130932953,35.663535360679],[-121.3290803093843,35.80103436080705],[-121.44554130949277,35.879850360880454],[-121.68981130972026,36.18113436116105],[-121.88227730989951,36.306943361278215],[-121.9552833099675,36.582773361535104],[-121.91142030992665,36.6404273615888],[-121.86738130988563,36.60771336155833],[-121.80856430983084,36.64822136159606],[-121.76139130978692,36.8189903617551],[-121.79171230981515,36.85032736178428],[-121.88353630990068,36.96209836188838],[-122.06133231006626,36.94750636187479],[-122.17344231017067,37.00086936192449],[-122.2746333102649,37.106782362023125],[-122.4146383103953,37.23912636214638],[-122.38925331037166,37.35241236225188],[-122.44146331042029,37.479482362370234],[-122.5056823104801,37.52290436241067],[-122.49820831047313,37.70025436257584],[-122.49821431047314,37.78294236265285],[-122.40093131038253,37.808625362676764],[-122.34647131033182,37.725223362599095],[-122.36633131035032,37.702450362577885],[-122.35967131034411,37.60978636249159],[-122.08930831009232,37.452541362345144],[-121.97533730998617,37.46072036235276],[-122.09302331009577,37.49731336238683],[-122.19973231019516,37.735201362608386],[-122.3124133103001,37.77846236264868],[-122.30755331029557,37.8917633627542],[-122.37149731035512,37.90934536277057],[-122.37968431036275,37.97344536283027],[-122.29552231028437,38.01479536286878],[-122.00062331000973,38.05715136290823],[-121.69895630972877,38.023496362876884],[-121.65775030969039,38.08610136293519],[-121.57688530961508,38.09413836294267],[-121.56954530960826,38.063667362914295],[-121.5474733095877,38.06347336291411],[-121.57283430961131,38.113798362960985],[-121.55414930959391,38.13736136298293],[-121.6595813096921,38.09646536294484],[-121.66522030969736,38.16928536301266],[-121.78236230980644,38.06677536291719],[-121.90276630991858,38.0729093629229],[-121.98454930999475,38.13950036298492],[-122.23224331022544,38.071079362921196],[-122.2730013102634,38.15941836300347],[-122.3157593103032,38.205933363046796],[-122.33890731032477,38.19358236303529],[-122.2853543102749,38.15931136300337],[-122.27277231026318,38.09748436294579],[-122.39846431038023,38.16133736300526],[-122.42920231040887,38.11380736296099],[-122.4889353104645,38.113414362960626],[-122.52864831050148,38.150671362995325],[-122.4745453104511,38.08545736293459],[-122.5064503104808,38.01865236287237],[-122.44178131042058,37.98295536283913],[-122.49002231046552,37.931767362791454],[-122.45825931043592,37.8342213627006],[-122.51572531048944,37.822106362689325],[-122.66639231062976,37.90691936276831],[-122.69172331065336,37.89439236275665],[-122.82219331077488,38.007672362862145],[-122.92118131086706,38.03062336288352],[-122.95659731090004,37.990757362846395],[-123.01073031095046,37.99446636284985],[-122.93927231088391,38.15326536299774],[-122.99464931093547,38.29722736313181],[-123.0487963109859,38.294141363128944],[-123.12154431105367,38.43360036325882],[-123.29794131121794,38.54733336336474],[-123.52388631142837,38.75765936356063],[-123.72190131161278,38.92477136371626],[-123.68344731157697,39.04180636382526],[-123.8137183116983,39.34780636411024],[-123.75465131164329,39.551879364300305],[-123.78353231167019,39.687108364426244],[-123.83810831172102,39.826397364555966],[-124.0076383118789,39.998580364716325],[-124.09456031195985,40.10037736481113],[-124.34530631219337,40.252430364952744],[-124.33610731218481,40.327555365022704],[-124.39263831223747,40.43523736512299],[-124.10944631197371,40.97821136562868],[-124.14970331201121,41.12883236576896],[-124.07160231193848,41.31383236594125],[-124.05795431192576,41.458164366075664],[-124.1442103120061,41.72719336632622],[-124.2430993120982,41.77675736637238],[-124.20750131206503,41.84832736643904],[-124.20644431206405,41.997648366578105]]],[[[-119.86782330802339,34.07522835919977],[-119.66792230783722,34.02134335914959],[-119.57258930774844,34.05578135918166],[-119.52309530770233,34.034590359161925],[-119.5393773077175,34.00649635913576],[-119.71253930787879,33.96528435909738],[-119.84727530800426,33.968416359100296],[-119.88906130804318,34.004669359134056],[-119.87398730802914,34.0318753591594],[-119.92769030807915,34.05918035918482],[-119.86782330802339,34.07522835919977]]],[[[-120.16738630830238,33.92416235905908],[-120.23854830836866,34.01088535913985],[-120.04680130819008,34.04110535916799],[-119.9633863081124,33.94776335908106],[-120.10917930824817,33.89481435903175],[-120.16738630830238,33.92416235905908]]],[[[-118.59478030683778,33.48081835864618],[-118.36239530662135,33.41101135858117],[-118.2945913065582,33.33444835850987],[-118.30403630656701,33.30749435848476],[-118.45538630670796,33.324786358500866],[-118.48134230673213,33.41955235858913],[-118.55643430680206,33.434482358603034],[-118.59478030683778,33.48081835864618]]],[[[-118.3509583066107,32.81919535803],[-118.42010630667511,32.806114358017815],[-118.51167730676039,32.892076358097874],[-118.59951730684219,33.02102235821796],[-118.5714863068161,33.03597135823189],[-118.54158530678825,32.98738435818664],[-118.3509583066107,32.81919535803]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Ohio","DRAWSEQ":26,"STATE_FIPS":"39","SUB_REGION":"East North Central","STATE_ABBR":"OH"},"geometry":{"type":"Polygon","coordinates":[[[-84.81148027537463,39.102585363881865],[-84.81207027537518,39.30302936406854],[-84.81202527537513,39.312333364077205],[-84.81110527537429,39.513163364264244],[-84.81103727537422,39.56405036431164],[-84.80869627537204,39.73329936446926],[-84.80614927536966,39.9171663646405],[-84.80356427536726,40.013990364730674],[-84.79538827535964,40.3195003650152],[-84.79455627535887,40.35305036504645],[-84.79325227535766,40.588738365265954],[-84.79306127535747,40.72886036539645],[-84.79102327535558,40.93770836559095],[-84.79052727535512,40.98834136563811],[-84.7915862753561,41.25313236588472],[-84.79097527535554,41.28381836591329],[-84.79189727535639,41.427899366047484],[-84.7913702753559,41.53049236614303],[-84.79037727535497,41.69749436629856],[-84.38439327497687,41.70715036630755],[-84.35920827495342,41.708039366308384],[-83.86863927449654,41.715993366315786],[-83.76395427439904,41.71704236631676],[-83.4826912741371,41.725130366324294],[-83.15374627383075,41.62608936623206],[-83.00343327369076,41.538193366150196],[-82.79583027349742,41.537648366149696],[-82.78470727348706,41.50741736612154],[-83.07039827375313,41.45611036607376],[-82.90893227360274,41.42946836604894],[-82.71694627342394,41.45052436606855],[-82.54883727326738,41.39133736601343],[-82.34138227307417,41.43150136605084],[-82.01560527277077,41.51531036612889],[-81.96190827272076,41.50191836611641],[-81.73850227251269,41.49115436610639],[-81.47826327227033,41.6317163662373],[-81.36226427216229,41.724283366323505],[-80.9997722718247,41.85025736644083],[-80.52059227137843,41.986872366568065],[-80.52264427138034,41.850774366441314],[-80.52392527138153,41.49510236611007],[-80.51999627137788,41.48928836610465],[-80.52293227138061,41.12962736576969],[-80.52092427137873,40.8972703655533],[-80.52030627137816,40.854168365513154],[-80.52199927137974,40.63720336531109],[-80.57441627142856,40.615974365291315],[-80.61154927146313,40.620063365295124],[-80.63733827148715,40.61398236528946],[-80.66772727151546,40.582137365259804],[-80.66862027151629,40.568279365246894],[-80.63344027148352,40.53920436521982],[-80.6252532714759,40.50446436518747],[-80.60183027145409,40.480539365165185],[-80.62784827147831,40.39822636508852],[-80.62924427147962,40.388663365079616],[-80.609247271461,40.37327536506528],[-80.60451727145659,40.306244365002854],[-80.61468827146606,40.27650236497516],[-80.65011327149905,40.245679364946454],[-80.67855727152555,40.19415136489846],[-80.70089027154634,40.16818136487427],[-80.70206527154744,40.154090364861155],[-80.73823927158112,40.03566436475086],[-80.73888827158173,39.983476364702256],[-80.76306027160425,39.9470153646683],[-80.75888727160036,39.92126636464432],[-80.76812727160896,39.91331336463691],[-80.79602127163494,39.91983936464299],[-80.80784027164594,39.91590336463932],[-80.81213627164995,39.90490136462908],[-80.79084927163012,39.87234736459876],[-80.79852527163727,39.85672236458421],[-80.82591627166279,39.83966736456833],[-80.81910427165644,39.80900136453977],[-80.87072727170452,39.75999336449412],[-80.85645327169122,39.73633536447209],[-80.83229827166873,39.71883436445579],[-80.83278727166919,39.703400364441414],[-80.8634142716977,39.68035136441995],[-80.8727462717064,39.66241136440324],[-80.88111027171419,39.62408136436754],[-80.91259027174351,39.607353364351965],[-80.93261127176216,39.606941364351584],[-80.98364627180968,39.581805364328176],[-81.03256827185524,39.544142364293094],[-81.03738327185972,39.532664364282404],[-81.09824527191641,39.49645136424868],[-81.11709027193396,39.467784364221984],[-81.18056727199308,39.43780036419406],[-81.20030527201146,39.41589636417366],[-81.22494827203441,39.40835836416664],[-81.23762127204621,39.388472364148114],[-81.28401727208943,39.38707236414682],[-81.33883627214048,39.35364436411568],[-81.37591627217502,39.34569036410827],[-81.43397827222908,39.40602336416446],[-81.44795627224211,39.41102736416912],[-81.46500827225799,39.40685836416524],[-81.54064827232843,39.35270936411481],[-81.55738827234403,39.332655364096134],[-81.57268527235827,39.26591736403398],[-81.66752227244659,39.27049536403824],[-81.68952627246708,39.26022636402868],[-81.69790327247489,39.22002036399123],[-81.72307427249832,39.213268363984945],[-81.75891027253171,39.17575136395],[-81.74470327251848,39.12587536390355],[-81.75356127252672,39.09472036387454],[-81.78636127255727,39.07725736385828],[-81.81956527258819,39.07701736385805],[-81.82427327259258,39.06641636384818],[-81.81346227258251,39.044108363827405],[-81.77567927254732,39.016829363801996],[-81.78173027255296,38.968529363757014],[-81.76229727253485,38.9301813637213],[-81.78322527255435,38.923562363715135],[-81.82377727259211,38.94846736373833],[-81.84091327260808,38.93788936372847],[-81.86680027263219,38.88570936367988],[-81.8926952726563,38.87345336366847],[-81.9152482726773,38.884446363678705],[-81.93185127269277,38.894742363688295],[-81.8986082726618,38.9322243637232],[-81.92783027268902,38.984271363771676],[-81.93773327269824,38.991175363778105],[-81.97518727273312,38.99300636377981],[-81.99967827275593,39.01526136380053],[-82.04288527279617,39.01413936379949],[-82.05850327281073,38.989065363776135],[-82.08501627283542,38.97719836376508],[-82.10120727285049,38.95209436374171],[-82.13931727288599,38.899398363692626],[-82.1460992728923,38.838787363636186],[-82.19772227294038,38.80461936360436],[-82.2167502729581,38.77893936358045],[-82.18397327292757,38.71030336351652],[-82.18897727293223,38.677893363486334],[-82.17365727291796,38.63219036344377],[-82.18424727292783,38.59503236340917],[-82.21365927295523,38.58483536339967],[-82.27089727300853,38.594890363409036],[-82.2899712730263,38.580081363395244],[-82.3142402730489,38.46522936328828],[-82.3291792730628,38.4419523632666],[-82.39476427312388,38.42847036325405],[-82.41489127314263,38.430392363255834],[-82.49498727321723,38.40583236323296],[-82.54754827326617,38.400511363228006],[-82.57541927329214,38.40390236323117],[-82.58660427330256,38.412519363239184],[-82.61374327332783,38.472668363295206],[-82.66976027337999,38.50214036332265],[-82.69557927340405,38.539142363357115],[-82.74194527344723,38.553066363370085],[-82.8023642735035,38.55728836337401],[-82.82699227352643,38.571662363387404],[-82.85385627355146,38.60045836341422],[-82.8600292735572,38.65239536346259],[-82.8800112735758,38.683301363491374],[-82.87319127356946,38.71900636352463],[-82.89031227358541,38.74277536354676],[-82.92130427361427,38.74641436355015],[-82.97248327366194,38.71964336352522],[-83.02694327371265,38.71451236352044],[-83.06088027374426,38.68572636349363],[-83.11124327379116,38.66483336347417],[-83.14315027382088,38.619339363431806],[-83.181939273857,38.60984136342296],[-83.24501327391575,38.6241723634363],[-83.27275527394158,38.609257363422415],[-83.29004327395768,38.59663836341066],[-83.30653127397304,38.596317363410364],[-83.32032527398589,38.60656336341991],[-83.33002327399491,38.63198836344358],[-83.37142227403348,38.654997363465014],[-83.45361627411002,38.66377436347319],[-83.5000732741533,38.69013736349774],[-83.52655627417795,38.696111363503306],[-83.61837827426346,38.67797236348641],[-83.63324127427731,38.664972363474305],[-83.64318927428657,38.63586236344719],[-83.65575527429827,38.62388036343603],[-83.67853027431948,38.620928363433286],[-83.71282527435143,38.6355533634469],[-83.77022327440488,38.650819363461125],[-83.79046527442374,38.69384436350119],[-83.83753227446758,38.71188036351799],[-83.85755227448621,38.74491836354876],[-83.91253927453742,38.757960363560905],[-83.96216327458365,38.77764736357924],[-84.05380127466898,38.76373536356628],[-84.08886727470164,38.76550436356793],[-84.1767522747835,38.78849836358935],[-84.22870227483187,38.81269036361188],[-84.23529427483801,38.874555363669494],[-84.26152527486245,38.917477363709466],[-84.2901362748891,38.944538363734665],[-84.31331527491068,39.01407436379943],[-84.34577927494091,39.03781236382154],[-84.39131227498332,39.03574436381962],[-84.4197402750098,39.04733736383041],[-84.42568327501533,39.08472436386523],[-84.44491827503325,39.11182736389047],[-84.49205327507714,39.107363363886314],[-84.51530127509879,39.09419536387405],[-84.59306827517122,39.07026536385176],[-84.62264827519877,39.074934363856116],[-84.66748727524053,39.08962436386979],[-84.74287527531074,39.14206336391863],[-84.78992727535456,39.107033363886],[-84.81148027537463,39.102585363881865]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Illinois","DRAWSEQ":27,"STATE_FIPS":"17","SUB_REGION":"East North Central","STATE_ABBR":"IL"},"geometry":{"type":"Polygon","coordinates":[[[-89.1299302793965,36.98816536191266],[-89.19358427945578,36.98682236191141],[-89.21012627947118,37.029023361950706],[-89.23775327949691,37.04178336196259],[-89.26413027952148,37.087174362004866],[-89.28431127954028,37.0912943620087],[-89.30336927955803,37.08543436200324],[-89.309777279564,37.06095936198045],[-89.26431927952166,37.02778336194955],[-89.26207627951958,37.00873636193181],[-89.28284327953891,36.999257361922986],[-89.31105827956519,37.00973236193274],[-89.38302827963221,37.04926336196956],[-89.38007027962946,37.099133362016005],[-89.42388027967026,37.13725336205151],[-89.44060627968584,37.16536736207769],[-89.46830427971163,37.22431636213258],[-89.46539827970894,37.253781362160026],[-89.48968327973155,37.25605136216214],[-89.51397627975417,37.276452362181146],[-89.51397727975417,37.30501236220775],[-89.50067227974178,37.32949136223054],[-89.46883327971213,37.33945936223982],[-89.43582827968139,37.35576636225501],[-89.42766527967379,37.411068362306516],[-89.45371427969805,37.45323536234579],[-89.49487727973639,37.49177536238168],[-89.5250682797645,37.5720063624564],[-89.5134632797537,37.61597836249735],[-89.51927727975911,37.65042536252943],[-89.5134712797537,37.679890362556876],[-89.5216192797613,37.69484836257081],[-89.58153527981709,37.706155362581335],[-89.66656127989627,37.74550536261798],[-89.67596027990503,37.78402136265386],[-89.69115827991918,37.804846362673246],[-89.728551279954,37.84104336270696],[-89.85182228006882,37.90511536276664],[-89.8611532800775,37.90553936276703],[-89.86692128008288,37.89192836275435],[-89.9006592801143,37.87595636273947],[-89.93798328014906,37.87809736274147],[-89.97902328018728,37.91193736277299],[-89.95833828016802,37.96368636282118],[-90.01092228021699,37.96937136282648],[-90.04203528024597,37.99325836284872],[-90.11945328031807,38.0323253628851],[-90.13482728033239,38.054004362905296],[-90.2076442804002,38.08895936293785],[-90.25417728044354,38.122223362968825],[-90.28975328047667,38.16687036301041],[-90.33683528052052,38.188767363030806],[-90.36488928054665,38.234353363073254],[-90.36946628055091,38.32361336315639],[-90.35880728054099,38.36538336319529],[-90.33972528052321,38.39090036321905],[-90.30195828048804,38.42741036325306],[-90.26589928045445,38.518741363338115],[-90.26134428045022,38.53282036335123],[-90.24105728043132,38.5628573633792],[-90.18381928037802,38.61032236342341],[-90.18368928037789,38.65882236346857],[-90.20235028039527,38.70041336350731],[-90.19668128039,38.72401536352929],[-90.1635072803591,38.77314736357505],[-90.13528528033281,38.78553336358658],[-90.12183428032029,38.800559363600584],[-90.11322828031227,38.83051536362848],[-90.13292028033061,38.85307936364949],[-90.2440382804341,38.91455736370675],[-90.2790432804667,38.924765363716254],[-90.3198532805047,38.92495636371643],[-90.41318628059163,38.962378363751284],[-90.4699572806445,38.959227363748354],[-90.53054528070092,38.89165936368542],[-90.57044828073809,38.87137736366653],[-90.62733528079107,38.88084536367535],[-90.66899928082987,38.93530336372607],[-90.70619328086451,39.03784136382157],[-90.70771228086592,39.05822736384055],[-90.69052228084992,39.093749363873634],[-90.71686028087444,39.144259363920675],[-90.71831728087581,39.19592136396879],[-90.73246228088898,39.224794363995684],[-90.73820728089433,39.24785836401716],[-90.77946928093276,39.29685036406279],[-90.85062428099903,39.35049936411275],[-90.94802428108973,39.40063236415944],[-91.03647528117212,39.44445836420026],[-91.06452128119822,39.4740303642278],[-91.09375028122545,39.52897336427897],[-91.15632928128373,39.55263936430101],[-91.20338928132756,39.60006736434518],[-91.31781228143413,39.68596236442518],[-91.36723728148016,39.72468536446124],[-91.37356928148606,39.76131836449535],[-91.38186328149378,39.803817364534936],[-91.44934028155662,39.86309436459014],[-91.4511412815583,39.885288364610815],[-91.43420328154252,39.90187436462626],[-91.43054028153911,39.921882364644894],[-91.4473952815548,39.94611036466746],[-91.4874432815921,40.00579836472305],[-91.50416028160768,40.06675736477982],[-91.51628428161897,40.134589364842995],[-91.50670128161003,40.200504364904376],[-91.49908728160295,40.2514223649518],[-91.48684928159155,40.30966836500605],[-91.44874728155607,40.37194636506405],[-91.41896828152834,40.38691936507799],[-91.38590928149755,40.39240536508311],[-91.37290828148544,40.403032365093],[-91.38555128149721,40.447294365134226],[-91.37494628148734,40.50369736518675],[-91.38225528149414,40.52853836520988],[-91.4130262815228,40.54803436522804],[-91.41127128152117,40.5730123652513],[-91.3757622814881,40.60348036527968],[-91.26221128138235,40.639587365313304],[-91.21506028133842,40.64385936531728],[-91.16264428128962,40.65635236532892],[-91.12930328125856,40.68218936535298],[-91.12013228125002,40.70544336537464],[-91.09289528122466,40.761587365426934],[-91.08905028122108,40.833767365494154],[-91.0493532811841,40.87962336553686],[-90.98341928112269,40.923965365578155],[-90.96085128110168,40.9505413656029],[-90.95479428109604,41.07039736571453],[-90.95793028109895,41.10439336574619],[-90.99048528112928,41.14440436578346],[-91.01840228115528,41.16585736580343],[-91.05646628119072,41.17629036581315],[-91.10167228123282,41.231552365864616],[-91.1024962812336,41.267848365898416],[-91.07342928120653,41.33492536596089],[-91.05593528119023,41.40140736602281],[-91.02763728116388,41.42353636604342],[-91.00084228113893,41.43111236605047],[-90.94980028109138,41.4212633660413],[-90.84428428099312,41.44465236606308],[-90.78004228093329,41.44985236606793],[-90.70835428086653,41.450093366068145],[-90.65892928082049,41.46235036607956],[-90.6008382807664,41.50961836612359],[-90.54097528071064,41.52600336613885],[-90.45512628063068,41.527579366140316],[-90.43509828061204,41.543612366155244],[-90.42313528060089,41.56730536617731],[-90.34849428053138,41.586882366195546],[-90.33947628052297,41.602831366210395],[-90.34126228052465,41.64912236625351],[-90.32615728051057,41.7227683663221],[-90.30501628049089,41.756497366353514],[-90.25543828044471,41.78176936637705],[-90.19596528038932,41.80616736639977],[-90.15464528035083,41.93080236651585],[-90.14279628033981,41.98398936656538],[-90.15066328034713,42.03345336661145],[-90.16822628036348,42.061066366637164],[-90.16677628036214,42.103767366676934],[-90.17621428037093,42.120524366692536],[-90.19170228038536,42.12271036669458],[-90.231063280422,42.159741366729065],[-90.32373028050831,42.197337366764074],[-90.36785828054941,42.210226366776084],[-90.40730128058614,42.24266136680629],[-90.41811228059622,42.26393936682611],[-90.42780928060525,42.34064536689754],[-90.4417252806182,42.360083366915646],[-90.49117128066426,42.388791366942385],[-90.56371128073181,42.421843366973164],[-90.60595528077116,42.460564367009226],[-90.64847328081075,42.47564736702327],[-90.65189928081395,42.49470036704102],[-90.63845628080142,42.509363367054675],[-90.42010328059807,42.50836536705374],[-89.92369128013574,42.504115367049785],[-89.8347392800529,42.50346836704918],[-89.4006132796486,42.49750236704362],[-89.35955927961037,42.49791736704401],[-88.93918727921886,42.49087936703746],[-88.76505827905669,42.4909223670375],[-88.70662327900227,42.48967136703634],[-88.2979892786217,42.49198836703849],[-88.19479027852559,42.489631367036296],[-87.79738227815547,42.48915236703585],[-87.83701527819238,42.31423536687295],[-87.76030227812093,42.156482366726024],[-87.6706062780374,42.059852366636036],[-87.61267627798345,41.84736536643814],[-87.52990627790636,41.7236263663229],[-87.53268627790895,41.46975036608646],[-87.53248427790876,41.30133836592961],[-87.5317652779081,41.173790365810824],[-87.53205227790836,41.00996336565825],[-87.53269627790895,40.7454483654119],[-87.53719127791315,40.494646365178326],[-87.53569527791176,40.48328236516774],[-87.53535727791144,40.16623136487246],[-87.53579327791185,39.88733936461272],[-87.53559727791166,39.60937636435385],[-87.53858927791445,39.47748336423101],[-87.54023727791598,39.35056236411281],[-87.5976882779695,39.338305364101394],[-87.62526227799518,39.30744136407265],[-87.61064327798155,39.297699364063575],[-87.61582427798638,39.28145636404845],[-87.60692027797809,39.25820236402679],[-87.5845882779573,39.24879136401803],[-87.58861727796103,39.20850536398051],[-87.59423227796627,39.19816736397088],[-87.60795027797904,39.19610736396896],[-87.64428227801288,39.16854636394329],[-87.67035227803716,39.14671936392297],[-87.65948027802703,39.13069336390804],[-87.66228727802965,39.113509363892035],[-87.63169327800117,39.10398336388317],[-87.63089227800042,39.08901536386922],[-87.61203127798285,39.08464736386516],[-87.58534327795799,39.06247736384451],[-87.58177227795467,38.9957853637824],[-87.59188127796408,38.99412636378085],[-87.54792727792315,38.97712036376501],[-87.5334922779097,38.96374636375256],[-87.53020427790663,38.93196336372296],[-87.53922227791504,38.90490536369776],[-87.55908127793353,38.86985636366512],[-87.55052927792556,38.85793636365402],[-87.50790927788587,38.79560536359597],[-87.51904827789625,38.7767453635784],[-87.50802327788598,38.7697683635719],[-87.50833627788627,38.73668036354108],[-87.5439132779194,38.68602136349391],[-87.58850127796093,38.67221536348105],[-87.62521527799512,38.64285836345371],[-87.62867127799835,38.62296436343518],[-87.61985127799014,38.599256363413105],[-87.64061927800947,38.593225363407484],[-87.65288027802089,38.57391936338951],[-87.6729692780396,38.54747136336488],[-87.65141527801953,38.51541736333502],[-87.65355927802152,38.50049036332112],[-87.67993527804609,38.50405336332444],[-87.6928442780581,38.48158036330351],[-87.75612427811704,38.46617236328916],[-87.75868827811944,38.45714336328075],[-87.73898027810108,38.44552736326993],[-87.7484562781099,38.418011363244304],[-87.78404827814305,38.378170363207204],[-87.83453327819007,38.35257036318336],[-87.85011227820458,38.286144363121494],[-87.86303627821661,38.28540836312081],[-87.87406927822688,38.31683436315008],[-87.88347627823565,38.31559836314892],[-87.88849627824032,38.30070536313505],[-87.9141392782642,38.28109436311679],[-87.91368127826378,38.302392363136626],[-87.92595027827521,38.304818363138885],[-87.98005027832559,38.241131363079575],[-87.98604027833117,38.234860363073736],[-87.97796027832365,38.20076036304197],[-87.93231927828114,38.17117736301442],[-87.93202127828086,38.15757336300175],[-87.95059927829816,38.13695936298255],[-87.97353427831952,38.13180536297776],[-88.01857927836147,38.10334836295125],[-88.01236127835568,38.09239236294105],[-87.96489727831148,38.09679436294515],[-87.97532627832119,38.073352362923316],[-88.03476127837655,38.05413036290541],[-88.04312327838433,38.04516636289706],[-88.04150627838283,38.03834936289071],[-88.0217292783644,38.03357736288628],[-88.02924427837141,38.00828136286272],[-88.02173727836441,37.97510136283181],[-88.04254327838379,37.95631036281431],[-88.0418032783831,37.93454336279404],[-88.06465427840439,37.92982836278965],[-88.07897527841773,37.94404536280289],[-88.08403327842244,37.92370536278395],[-88.03047327837255,37.917636362778296],[-88.02662027836897,37.90580336276727],[-88.04490027838598,37.89604936275819],[-88.10011627843741,37.906215362767654],[-88.10149027843869,37.89535136275754],[-88.07577027841474,37.86785436273193],[-88.0342722783761,37.843791362709524],[-88.04216927838344,37.82756736269441],[-88.08929727842734,37.83129436269788],[-88.08606227842432,37.81765736268518],[-88.03560727837733,37.805728362674074],[-88.0725042784117,37.73544636260861],[-88.13367027846866,37.70079036257634],[-88.15940427849263,37.660733362539034],[-88.15766427849101,37.628526362509035],[-88.13420227846916,37.583620362467215],[-88.07159127841085,37.51103836239962],[-88.08791027842605,37.47632136236729],[-88.3117422786345,37.44290336233617],[-88.35921427867872,37.40936136230492],[-88.41989327873523,37.42034336231515],[-88.46768627877974,37.40080836229696],[-88.51136527882042,37.29690536220019],[-88.5014692788112,37.25783636216381],[-88.45073927876396,37.20572436211528],[-88.4225552787377,37.15696536206986],[-88.45051127876374,37.09872736201562],[-88.47684127878827,37.07220036199092],[-88.4907432788012,37.06823736198723],[-88.51731727882596,37.06482636198405],[-88.55931927886508,37.072871361991545],[-88.61426827891626,37.10910236202528],[-88.68842127898532,37.13546536204984],[-88.73916627903257,37.14123636205521],[-88.74656027903946,37.152161362065385],[-88.86335027914824,37.20224736211203],[-88.93256727921269,37.218459362127135],[-88.9932402792692,37.22008836212865],[-89.06510427933613,37.18591136209682],[-89.11689327938436,37.112188362028164],[-89.14641927941186,37.09323736201051],[-89.16962127943347,37.064287361983546],[-89.17440427943792,37.02576236194767],[-89.15031627941549,36.99849136192228],[-89.1299302793965,36.98816536191266]]]}},
{"type":"Feature","properties":{"STATE_NAME":"District of Columbia","DRAWSEQ":28,"STATE_FIPS":"11","SUB_REGION":"South Atlantic","STATE_ABBR":"DC"},"geometry":{"type":"Polygon","coordinates":[[[-77.04514726814168,38.7882343635891],[-77.03494626813217,38.81402836361312],[-77.04488826814143,38.82947736362751],[-77.04010426813697,38.838526363635935],[-77.03877726813573,38.862543363658304],[-77.06758626816257,38.88621236368035],[-77.07864926817287,38.91571136370783],[-77.12232826821355,38.93217136372316],[-77.04208826813883,38.99354136378031],[-77.007930268107,38.96666736375528],[-76.91090426801665,38.89010036368397],[-77.04514726814168,38.7882343635891]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Delaware","DRAWSEQ":29,"STATE_FIPS":"10","SUB_REGION":"South Atlantic","STATE_ABBR":"DE"},"geometry":{"type":"Polygon","coordinates":[[[-75.79109426697374,39.72386636446048],[-75.77492726695868,39.72455236446112],[-75.74559226693137,39.77492936450803],[-75.69477126688403,39.820457364550435],[-75.64399426683674,39.83830636456706],[-75.58344326678035,39.84011936456875],[-75.46998626667468,39.826547364556106],[-75.42046826662857,39.798983364530436],[-75.41175426662045,39.78977036452186],[-75.42764726663525,39.77824336451112],[-75.46039426666576,39.763362364497254],[-75.47476826667913,39.741832364477204],[-75.47597426668027,39.72008436445695],[-75.48928026669266,39.714858364452084],[-75.61037426680544,39.61290536435713],[-75.56264326676099,39.56683536431423],[-75.5898362667863,39.46388036421834],[-75.51521726671682,39.367051364128166],[-75.40212226661149,39.25775036402637],[-75.39736826660706,39.07314936385445],[-75.32448826653918,39.012499363797964],[-75.30753526652339,38.94602436373606],[-75.19057126641447,38.80878236360824],[-75.08276226631405,38.799924363599985],[-75.04562326627946,38.449602363273726],[-75.06792426630024,38.450075363274166],[-75.09272126632332,38.450563363274625],[-75.34984226656279,38.45532236327905],[-75.69880226688778,38.46318236328637],[-75.70707326689549,38.5575913633743],[-75.71071226689888,38.649665363460045],[-75.7245902669118,38.83028336362826],[-75.75257626693787,39.141660363918255],[-75.761313266946,39.24786436401716],[-75.7643192669488,39.29595936406196],[-75.77235326695629,39.38311836414313],[-75.79109426697374,39.72386636446048]]]}},
{"type":"Feature","properties":{"STATE_NAME":"West Virginia","DRAWSEQ":30,"STATE_FIPS":"54","SUB_REGION":"South Atlantic","STATE_ABBR":"WV"},"geometry":{"type":"Polygon","coordinates":[[[-81.95957527271858,37.531172362418374],[-81.97657427273442,37.543253362429624],[-82.02635127278077,37.53051936241776],[-82.049134272802,37.55145336243726],[-82.05566527280808,37.52534236241294],[-82.08439227283483,37.548310362434336],[-82.14250927288896,37.557452362442845],[-82.1465222728927,37.56592136245074],[-82.13747327288426,37.569896362454436],[-82.13178127287897,37.590537362473654],[-82.1593102729046,37.59356936247649],[-82.18554927292904,37.64066736252035],[-82.20544027294757,37.62401636250484],[-82.23837127297824,37.65677636253535],[-82.29562527303156,37.66905836254679],[-82.32940127306301,37.74417136261674],[-82.3194982730538,37.75842636263002],[-82.33984627307274,37.78440036265421],[-82.40580527313418,37.81171936267965],[-82.4215082731488,37.87235636273613],[-82.43760727316379,37.89485436275707],[-82.5002092732221,37.922262362782604],[-82.49339627321575,37.94251336280146],[-82.48017427320343,37.95439636281253],[-82.47577927319934,37.97590736283256],[-82.52467827324487,38.01566236286959],[-82.5932082733087,38.10996236295741],[-82.64612827335799,38.14633036299128],[-82.64715827335895,38.169435363012795],[-82.61376327332785,38.178095363020866],[-82.60664527332122,38.19382636303551],[-82.61622827333014,38.23881136307741],[-82.58911327330489,38.245388363083535],[-82.57457927329135,38.25597336309339],[-82.58004927329645,38.29251036312742],[-82.57229827328923,38.30781136314167],[-82.59823927331338,38.36846436319816],[-82.58660427330256,38.412519363239184],[-82.57541927329214,38.40390236323117],[-82.54754827326617,38.400511363228006],[-82.49498727321723,38.40583236323296],[-82.41489127314263,38.430392363255834],[-82.39476427312388,38.42847036325405],[-82.3291792730628,38.4419523632666],[-82.3142402730489,38.46522936328828],[-82.2899712730263,38.580081363395244],[-82.27089727300853,38.594890363409036],[-82.21365927295523,38.58483536339967],[-82.18424727292783,38.59503236340917],[-82.17365727291796,38.63219036344377],[-82.18897727293223,38.677893363486334],[-82.18397327292757,38.71030336351652],[-82.2167502729581,38.77893936358045],[-82.19772227294038,38.80461936360436],[-82.1460992728923,38.838787363636186],[-82.13931727288599,38.899398363692626],[-82.10120727285049,38.95209436374171],[-82.08501627283542,38.97719836376508],[-82.05850327281073,38.989065363776135],[-82.04288527279617,39.01413936379949],[-81.99967827275593,39.01526136380053],[-81.97518727273312,38.99300636377981],[-81.93773327269824,38.991175363778105],[-81.92783027268902,38.984271363771676],[-81.8986082726618,38.9322243637232],[-81.93185127269277,38.894742363688295],[-81.9152482726773,38.884446363678705],[-81.8926952726563,38.87345336366847],[-81.86680027263219,38.88570936367988],[-81.84091327260808,38.93788936372847],[-81.82377727259211,38.94846736373833],[-81.78322527255435,38.923562363715135],[-81.76229727253485,38.9301813637213],[-81.78173027255296,38.968529363757014],[-81.77567927254732,39.016829363801996],[-81.81346227258251,39.044108363827405],[-81.82427327259258,39.06641636384818],[-81.81956527258819,39.07701736385805],[-81.78636127255727,39.07725736385828],[-81.75356127252672,39.09472036387454],[-81.74470327251848,39.12587536390355],[-81.75891027253171,39.17575136395],[-81.72307427249832,39.213268363984945],[-81.69790327247489,39.22002036399123],[-81.68952627246708,39.26022636402868],[-81.66752227244659,39.27049536403824],[-81.57268527235827,39.26591736403398],[-81.55738827234403,39.332655364096134],[-81.54064827232843,39.35270936411481],[-81.46500827225799,39.40685836416524],[-81.44795627224211,39.41102736416912],[-81.43397827222908,39.40602336416446],[-81.37591627217502,39.34569036410827],[-81.33883627214048,39.35364436411568],[-81.28401727208943,39.38707236414682],[-81.23762127204621,39.388472364148114],[-81.22494827203441,39.40835836416664],[-81.20030527201146,39.41589636417366],[-81.18056727199308,39.43780036419406],[-81.11709027193396,39.467784364221984],[-81.09824527191641,39.49645136424868],[-81.03738327185972,39.532664364282404],[-81.03256827185524,39.544142364293094],[-80.98364627180968,39.581805364328176],[-80.93261127176216,39.606941364351584],[-80.91259027174351,39.607353364351965],[-80.88111027171419,39.62408136436754],[-80.8727462717064,39.66241136440324],[-80.8634142716977,39.68035136441995],[-80.83278727166919,39.703400364441414],[-80.83229827166873,39.71883436445579],[-80.85645327169122,39.73633536447209],[-80.87072727170452,39.75999336449412],[-80.81910427165644,39.80900136453977],[-80.82591627166279,39.83966736456833],[-80.79852527163727,39.85672236458421],[-80.79084927163012,39.87234736459876],[-80.81213627164995,39.90490136462908],[-80.80784027164594,39.91590336463932],[-80.79602127163494,39.91983936464299],[-80.76812727160896,39.91331336463691],[-80.75888727160036,39.92126636464432],[-80.76306027160425,39.9470153646683],[-80.73888827158173,39.983476364702256],[-80.73823927158112,40.03566436475086],[-80.70206527154744,40.154090364861155],[-80.70089027154634,40.16818136487427],[-80.67855727152555,40.19415136489846],[-80.65011327149905,40.245679364946454],[-80.61468827146606,40.27650236497516],[-80.60451727145659,40.306244365002854],[-80.609247271461,40.37327536506528],[-80.62924427147962,40.388663365079616],[-80.62784827147831,40.39822636508852],[-80.60183027145409,40.480539365165185],[-80.6252532714759,40.50446436518747],[-80.63344027148352,40.53920436521982],[-80.66862027151629,40.568279365246894],[-80.66772727151546,40.582137365259804],[-80.63733827148715,40.61398236528946],[-80.61154927146313,40.620063365295124],[-80.57441627142856,40.615974365291315],[-80.52199927137974,40.63720336531109],[-80.52435727138193,40.47878436516355],[-80.5235642713812,40.403033365092995],[-80.52604527138351,40.16252136486901],[-80.5249622713825,40.02282536473891],[-80.52465027138221,39.95841936467892],[-80.52426927138185,39.721209364458005],[-80.42908227129321,39.719842364456724],[-79.91826827081748,39.721667364458426],[-79.76513227067485,39.721807364458556],[-79.48097127041021,39.720274364457126],[-79.48986527041849,39.19739536397016],[-79.46119227039179,39.21326436398494],[-79.44928227038069,39.212093363983854],[-79.38484727032069,39.26930036403713],[-79.34619427028468,39.292092364058355],[-79.29527327023726,39.30054136406622],[-79.27982227022287,39.32524336408923],[-79.26016827020457,39.34864136411102],[-79.1630182701141,39.3934953641528],[-79.15812727010953,39.41396036417186],[-79.13140027008464,39.41703136417472],[-79.1040782700592,39.44730636420291],[-79.09671527005234,39.46462836421904],[-79.10459727005968,39.47087236422486],[-79.07062927002805,39.47084936422483],[-79.06441127002226,39.48582536423878],[-79.04885427000777,39.48381536423691],[-78.97043626993474,39.43852536419473],[-78.95539126992072,39.46045836421516],[-78.87081526984196,39.525790364276006],[-78.8381142698115,39.56331836431096],[-78.80655026978211,39.56682336431422],[-78.82241226979687,39.5856983643318],[-78.79847126977458,39.61541836435948],[-78.79815026977428,39.63083336437383],[-78.77270526975059,39.64424136438632],[-78.76761626974584,39.6266143643699],[-78.73238326971303,39.62696536437023],[-78.73049826971128,39.62154436436518],[-78.73625126971663,39.608792364353306],[-78.77374326975155,39.60161736434662],[-78.7614512697401,39.58179236432816],[-78.73271826971335,39.57664236432336],[-78.71631526969807,39.55957236430747],[-78.6664252696516,39.53692936428638],[-78.64914426963551,39.537998364287375],[-78.63708226962427,39.52994936427987],[-78.60436626959381,39.53568336428522],[-78.56418826955638,39.521073364271615],[-78.50878326950479,39.52515936427542],[-78.48127826947918,39.519937364270554],[-78.45581126945545,39.5337353642834],[-78.44587026944619,39.54831836429699],[-78.42082226942287,39.549409364298],[-78.46181626946104,39.580834364327266],[-78.45063126945062,39.59270536433832],[-78.4039992694072,39.58761336433358],[-78.43189426943317,39.620952364364626],[-78.38463626938916,39.61449436435862],[-78.37767026938268,39.63131736437428],[-78.35678126936322,39.63237036437526],[-78.34792326935498,39.640590364382916],[-78.27301626928521,39.618409364362265],[-78.25772626927098,39.641167364383456],[-78.22923026924443,39.65856636439966],[-78.22759826924292,39.67398836441402],[-78.20430426922121,39.67593836441584],[-78.18297226920136,39.69464136443326],[-78.09433826911881,39.67560036441553],[-78.02641826905555,39.622867364366414],[-77.99520526902648,39.59896936434416],[-77.96423626899764,39.611325364355665],[-77.94497926897971,39.58601136433209],[-77.93545826897083,39.591939364337605],[-77.94754326898209,39.6150133643591],[-77.93860926897376,39.61821836436208],[-77.90325326894084,39.596124364341506],[-77.89074126892919,39.60070136434577],[-77.88843726892705,39.61657036436055],[-77.85552326889639,39.602166364347134],[-77.84240726888417,39.605374364350126],[-77.8398672688818,39.57274036431973],[-77.852959268894,39.56545436431294],[-77.885171268924,39.564451364312006],[-77.88991626892842,39.55809236430609],[-77.86956126890946,39.54591236429474],[-77.86463226890487,39.51465136426563],[-77.84384926888552,39.53193136428172],[-77.83546426887771,39.525610364275835],[-77.82892526887161,39.52925336427923],[-77.82526326886821,39.51203836426319],[-77.84787726888926,39.50200536425385],[-77.82518726886813,39.49390736424631],[-77.77155126881819,39.498115364250225],[-77.79949826884422,39.48082736423413],[-77.78510926883081,39.45910236421389],[-77.80419026884859,39.463138364217656],[-77.79579826884077,39.45091636420627],[-77.80469426884905,39.44001836419612],[-77.8022752688468,39.43231636418895],[-77.75698626880462,39.42516336418228],[-77.74083426878958,39.403439364162054],[-77.73723326878623,39.396195364155304],[-77.75622326880391,39.378476364138805],[-77.74545026879387,39.36037236412194],[-77.75430026880213,39.33859436410167],[-77.75008926879819,39.3268183640907],[-77.72746726877713,39.3177963640823],[-77.75945826880692,39.28464336405142],[-77.7682322688151,39.246550364015945],[-77.80544926884976,39.19660636396942],[-77.82004426886334,39.14172536391831],[-77.83068026887325,39.132181363909424],[-78.03332826906198,39.26563936403372],[-78.22950826924469,39.39111336415058],[-78.27688126928881,39.4234643641807],[-78.34754626935462,39.45699836421194],[-78.35023126935712,39.380828364140996],[-78.36547426937132,39.36168636412317],[-78.34392826935125,39.35095636411317],[-78.34084626934839,39.34145836410433],[-78.41354726941609,39.25754036402618],[-78.39912726940265,39.24495236401445],[-78.42306926942496,39.2121433639839],[-78.42406826942589,39.19762836397038],[-78.40236226940567,39.1705943639452],[-78.43056926943194,39.14862636392474],[-78.44797926944815,39.11903636389718],[-78.48525026948288,39.11194436389058],[-78.5016002694981,39.09368436387358],[-78.53665126953074,39.05713236383953],[-78.56417926955638,39.035145363819055],[-78.54920226954243,39.0234883638082],[-78.55320826954616,39.0139363637993],[-78.59869626958853,38.967306363755874],[-78.63084726961847,38.97971236376743],[-78.64696926963349,38.95055336374027],[-78.68022726966446,38.92168436371338],[-78.71898626970055,38.90499136369784],[-78.72414326970535,38.93032436372143],[-78.73773226971801,38.92928236372046],[-78.74925326972874,38.91149136370389],[-78.79305526976954,38.88021936367477],[-78.81586126979077,38.833745363631486],[-78.86656026983799,38.763404363565975],[-78.98745326995058,38.84676136364361],[-79.0337422699937,38.799959363600024],[-79.0548002700133,38.79063336359134],[-79.05655527001494,38.76205336356472],[-79.08723427004351,38.70726836351369],[-79.08854627004473,38.659205363468935],[-79.12106427007502,38.663767363473184],[-79.12742727008094,38.65824436346804],[-79.23166327017802,38.48049636330249],[-79.27235927021592,38.43730636326227],[-79.3169992702575,38.412633363239294],[-79.48634727041521,38.46214536328541],[-79.53651327046194,38.55380536337077],[-79.64240627056056,38.592355363406675],[-79.66943027058572,38.550177363367396],[-79.66561427058217,38.520778363340014],[-79.69265327060735,38.500354363320994],[-79.68409227059938,38.43023836325569],[-79.72003527063285,38.39468536322258],[-79.73282927064477,38.351840363182674],[-79.76400427067381,38.353991363184676],[-79.80032927070764,38.31432636314774],[-79.80277827070991,38.29887036313335],[-79.78651127069476,38.28511836312054],[-79.79362227070139,38.26866636310521],[-79.83115227073634,38.25027936308809],[-79.91616127081551,38.17926436302196],[-79.91034027081008,38.16260636300644],[-79.93532727083335,38.12130836296798],[-79.9282922708268,38.10331136295122],[-79.95751327085402,38.06736536291774],[-79.96649327086239,38.038621362890964],[-80.00049927089405,37.989870362845565],[-80.05480727094464,37.95564836281369],[-80.10649027099277,37.91465836277552],[-80.11850727100396,37.891278362753745],[-80.1600052710426,37.87722836274066],[-80.17222027105399,37.86018436272479],[-80.1715942710534,37.84296836270875],[-80.22373527110196,37.80236436267094],[-80.220546271099,37.778858362649046],[-80.25468927113079,37.757232362628905],[-80.25003327112645,37.726052362599866],[-80.30310927117588,37.68267136255946],[-80.29570027116898,37.67150236254906],[-80.30486227117751,37.65224636253113],[-80.30093227117385,37.64054736252024],[-80.25442227113054,37.640703362520384],[-80.21892827109748,37.62426636250507],[-80.24639327112307,37.59689636247958],[-80.31672127118856,37.566718362451475],[-80.32590627119711,37.53340136242045],[-80.30830327118072,37.52837036241576],[-80.28073027115504,37.53625936242311],[-80.28791627116173,37.51115136239973],[-80.34751127121723,37.49117736238112],[-80.35215727122156,37.47610136236708],[-80.38830627125523,37.46572536235742],[-80.42537827128976,37.43490636232872],[-80.47476427133574,37.422821362317464],[-80.48679727134696,37.43386036232774],[-80.48788127134796,37.460597362352644],[-80.50876527136741,37.4750473623661],[-80.54275527139907,37.46921036236066],[-80.59749127145005,37.4460543623391],[-80.70520727155036,37.38837836228538],[-80.72973727157321,37.39271936228943],[-80.74632427158866,37.38773736228478],[-80.74768927158993,37.37908136227672],[-80.76299527160418,37.37141436226958],[-80.77002227161073,37.386195362283345],[-80.79924427163795,37.391753362288526],[-80.79961127163828,37.413062362308374],[-80.8505252716857,37.42346036231805],[-80.87735827171069,37.38869736228568],[-80.84841827168374,37.35094336225052],[-80.85542927169027,37.33941136223978],[-80.93418327176362,37.30137036220435],[-80.96789227179501,37.291791362195426],[-80.97853527180492,37.29647536219979],[-80.98593627181181,37.30624136220889],[-81.02493227184813,37.2860613621901],[-81.14073727195598,37.27492536217972],[-81.22293327203253,37.2402143621474],[-81.31187327211536,37.29370736219721],[-81.35879527215907,37.338952362239354],[-81.39094627218901,37.31115436221346],[-81.40334427220056,37.282624362186894],[-81.47536027226762,37.254422362160625],[-81.49553327228641,37.252850362159165],[-81.50553627229573,37.234372362141954],[-81.55665427234334,37.20635236211586],[-81.66588527244507,37.20491036211452],[-81.70172827247845,37.23543436214294],[-81.73845627251265,37.250491362156964],[-81.75185427252514,37.272257362177236],[-81.79265927256313,37.287153362191106],[-81.81538127258429,37.27953936218402],[-81.8388892726062,37.285505362189575],[-81.85868127262462,37.30703136220963],[-81.86381527262941,37.32545636222678],[-81.89715827266046,37.34058836224088],[-81.92682227268809,37.37172736226988],[-81.92073327268241,37.415516362310655],[-81.98820227274524,37.46658636235822],[-81.97642227273428,37.482905362373415],[-81.9479932727078,37.49302636238285],[-81.93545027269612,37.50664436239553],[-81.95957527271858,37.531172362418374]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Maryland","DRAWSEQ":31,"STATE_FIPS":"24","SUB_REGION":"South Atlantic","STATE_ABBR":"MD"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.09272126632332,38.450563363274625],[-75.15487326638122,38.36973936319934],[-75.15061726637725,38.27388136311007],[-75.26249926648146,38.20153336304269],[-75.37306826658443,38.0690413629193],[-75.37242026658382,38.01683336287068],[-75.62608426682006,37.99654136285178],[-75.64786626684035,37.9702553628273],[-75.86538526704292,37.979780362836166],[-75.76920626695336,38.09737136294568],[-75.8974512670728,38.175057363018034],[-75.83772626701717,38.2317163630708],[-75.86132526703915,38.24016636307867],[-75.79382626697628,38.263724363100614],[-75.89461326707016,38.258995363096204],[-75.87209226704918,38.35735136318781],[-75.88648126706258,38.37558136320479],[-75.94958426712135,38.282177363117796],[-75.9949422671636,38.28264636311823],[-76.02046426718736,38.3220173631549],[-76.06512026722895,38.25905736309627],[-76.29394226744205,38.43705736326204],[-76.29165326743993,38.47885136330096],[-76.191881267347,38.54346336336114],[-76.2507212674018,38.59520136340932],[-76.03159726719772,38.57204036338776],[-76.02772226719412,38.6221233634344],[-76.04658226721168,38.59197636340632],[-76.07565926723876,38.610900363423944],[-76.1237032672835,38.70809436351446],[-76.17370826733008,38.7092133635155],[-76.22298126737597,38.762908363565515],[-76.26679126741676,38.77000436357213],[-76.33729526748243,38.679494363487834],[-76.35020426749445,38.699143363506124],[-76.27208826742171,38.83411536363183],[-76.19484326734977,38.765372363567806],[-76.16552326732246,38.78872536358956],[-76.1140392672745,38.88557036367975],[-76.07553226723864,38.88966336368357],[-76.10256426726382,38.89813236369145],[-76.09516426725693,38.94824436373813],[-76.11353626727404,38.920829363712585],[-76.19934226735396,38.973467363761614],[-76.11095226727163,39.11870536389688],[-76.22144626737453,39.093029363872965],[-76.23856726739048,39.130935363908264],[-76.21811226737144,39.20496236397721],[-76.11204526727265,39.32140736408566],[-76.03709126720284,39.35848036412018],[-75.84939926702805,39.37925136413953],[-75.97846426714824,39.394663364153885],[-75.95230326712388,39.471295364225256],[-75.97443026714448,39.524137364274466],[-76.03108026719724,39.57004136431722],[-76.07817826724111,39.54247536429155],[-76.15420026731191,39.40204636416075],[-76.22633826737909,39.374998364135564],[-76.36371026750703,39.3933883641527],[-76.39872126753964,39.23125236400169],[-76.53098126766281,39.242726364012384],[-76.60371526773055,39.259460364027966],[-76.56481926769433,39.231553364001975],[-76.57666726770536,39.19822836397094],[-76.60701826773364,39.181092363954974],[-76.59482626772227,39.158796363934215],[-76.56360526769319,39.19637436396921],[-76.42361626756282,39.11846436389665],[-76.47171826760763,38.90835136370097],[-76.54880526767941,38.759089363561955],[-76.52493126765718,38.709751363516006],[-76.50857126764194,38.52222136334136],[-76.38548226752731,38.39140436321952],[-76.4051292675456,38.346143363177376],[-76.42113626756051,38.3206233631536],[-76.4715982676075,38.33578336316772],[-76.51975726765237,38.41026136323708],[-76.64693726777081,38.450548363274606],[-76.34345026748817,38.21318736305355],[-76.32983826747548,38.04583036289768],[-76.57695026770563,38.22276436306247],[-76.75992726787604,38.23440936307331],[-76.86387326797285,38.39147136321959],[-76.90827026801419,38.29997836313437],[-76.97272526807421,38.33115536316341],[-77.00209226810158,38.426977363252654],[-77.2206262683051,38.39078736321895],[-77.25557726833765,38.41371736324031],[-77.27745926835803,38.487220363308765],[-77.1296902682204,38.64824236345872],[-77.12481526821587,38.67791536348636],[-77.09284726818609,38.70409936351074],[-77.0815782681756,38.71539436352126],[-77.05682026815253,38.712136363518226],[-77.04616926814262,38.718895363524524],[-77.04514726814168,38.7882343635891],[-76.91090426801665,38.89010036368397],[-77.007930268107,38.96666736375528],[-77.04208826813883,38.99354136378031],[-77.12232826821355,38.93217136372316],[-77.15174726824095,38.96488936375363],[-77.24343226832633,38.97598936376396],[-77.25569226833775,39.02768136381211],[-77.32430626840166,39.062696363844715],[-77.34622626842207,39.06862036385023],[-77.43274626850265,39.066884363848615],[-77.45940426852748,39.080944363861704],[-77.4789592685457,39.10406436388324],[-77.51275826857716,39.11675936389506],[-77.5163282685805,39.15754936393306],[-77.47834726854512,39.1770373639512],[-77.46170726852962,39.218735363990035],[-77.46466726853238,39.229160363999746],[-77.49377326855948,39.250014364019165],[-77.5419012686043,39.26904236403689],[-77.56867326862924,39.29849536406432],[-77.61623626867353,39.29981836406555],[-77.67930226873227,39.31878136408321],[-77.72746726877713,39.3177963640823],[-77.75008926879819,39.3268183640907],[-77.75430026880213,39.33859436410167],[-77.74545026879387,39.36037236412194],[-77.75622326880391,39.378476364138805],[-77.73723326878623,39.396195364155304],[-77.74083426878958,39.403439364162054],[-77.75698626880462,39.42516336418228],[-77.8022752688468,39.43231636418895],[-77.80469426884905,39.44001836419612],[-77.79579826884077,39.45091636420627],[-77.80419026884859,39.463138364217656],[-77.78510926883081,39.45910236421389],[-77.79949826884422,39.48082736423413],[-77.77155126881819,39.498115364250225],[-77.82518726886813,39.49390736424631],[-77.84787726888926,39.50200536425385],[-77.82526326886821,39.51203836426319],[-77.82892526887161,39.52925336427923],[-77.83546426887771,39.525610364275835],[-77.84384926888552,39.53193136428172],[-77.86463226890487,39.51465136426563],[-77.86956126890946,39.54591236429474],[-77.88991626892842,39.55809236430609],[-77.885171268924,39.564451364312006],[-77.852959268894,39.56545436431294],[-77.8398672688818,39.57274036431973],[-77.84240726888417,39.605374364350126],[-77.85552326889639,39.602166364347134],[-77.88843726892705,39.61657036436055],[-77.89074126892919,39.60070136434577],[-77.90325326894084,39.596124364341506],[-77.93860926897376,39.61821836436208],[-77.94754326898209,39.6150133643591],[-77.93545826897083,39.591939364337605],[-77.94497926897971,39.58601136433209],[-77.96423626899764,39.611325364355665],[-77.99520526902648,39.59896936434416],[-78.02641826905555,39.622867364366414],[-78.09433826911881,39.67560036441553],[-78.18297226920136,39.69464136443326],[-78.20430426922121,39.67593836441584],[-78.22759826924292,39.67398836441402],[-78.22923026924443,39.65856636439966],[-78.25772626927098,39.641167364383456],[-78.27301626928521,39.618409364362265],[-78.34792326935498,39.640590364382916],[-78.35678126936322,39.63237036437526],[-78.37767026938268,39.63131736437428],[-78.38463626938916,39.61449436435862],[-78.43189426943317,39.620952364364626],[-78.4039992694072,39.58761336433358],[-78.45063126945062,39.59270536433832],[-78.46181626946104,39.580834364327266],[-78.42082226942287,39.549409364298],[-78.44587026944619,39.54831836429699],[-78.45581126945545,39.5337353642834],[-78.48127826947918,39.519937364270554],[-78.50878326950479,39.52515936427542],[-78.56418826955638,39.521073364271615],[-78.60436626959381,39.53568336428522],[-78.63708226962427,39.52994936427987],[-78.64914426963551,39.537998364287375],[-78.6664252696516,39.53692936428638],[-78.71631526969807,39.55957236430747],[-78.73271826971335,39.57664236432336],[-78.7614512697401,39.58179236432816],[-78.77374326975155,39.60161736434662],[-78.73625126971663,39.608792364353306],[-78.73049826971128,39.62154436436518],[-78.73238326971303,39.62696536437023],[-78.76761626974584,39.6266143643699],[-78.77270526975059,39.64424136438632],[-78.79815026977428,39.63083336437383],[-78.79847126977458,39.61541836435948],[-78.82241226979687,39.5856983643318],[-78.80655026978211,39.56682336431422],[-78.8381142698115,39.56331836431096],[-78.87081526984196,39.525790364276006],[-78.95539126992072,39.46045836421516],[-78.97043626993474,39.43852536419473],[-79.04885427000777,39.48381536423691],[-79.06441127002226,39.48582536423878],[-79.07062927002805,39.47084936422483],[-79.10459727005968,39.47087236422486],[-79.09671527005234,39.46462836421904],[-79.1040782700592,39.44730636420291],[-79.13140027008464,39.41703136417472],[-79.15812727010953,39.41396036417186],[-79.1630182701141,39.3934953641528],[-79.26016827020457,39.34864136411102],[-79.27982227022287,39.32524336408923],[-79.29527327023726,39.30054136406622],[-79.34619427028468,39.292092364058355],[-79.38484727032069,39.26930036403713],[-79.44928227038069,39.212093363983854],[-79.46119227039179,39.21326436398494],[-79.48986527041849,39.19739536397016],[-79.48097127041021,39.720274364457126],[-79.39661027033164,39.71931336445624],[-78.93017326989724,39.72233736445905],[-78.81775826979255,39.72311536445977],[-78.3847832693893,39.72374836446036],[-78.33455026934251,39.72409636446069],[-78.0959482691203,39.725461364461964],[-77.47579326854274,39.719623364456524],[-77.46443326853216,39.720073364456944],[-77.22105126830549,39.72067936445751],[-76.99681226809665,39.72089136445771],[-76.7904912679045,39.72125636445804],[-76.569834267699,39.72026536445712],[-76.23312226738541,39.7218533644586],[-76.13922326729796,39.722229364458954],[-75.79109426697374,39.72386636446048],[-75.77235326695629,39.38311836414313],[-75.7643192669488,39.29595936406196],[-75.761313266946,39.24786436401716],[-75.75257626693787,39.141660363918255],[-75.7245902669118,38.83028336362826],[-75.71071226689888,38.649665363460045],[-75.70707326689549,38.5575913633743],[-75.69880226688778,38.46318236328637],[-75.34984226656279,38.45532236327905],[-75.09272126632332,38.450563363274625]]],[[[-76.292804267441,38.90783636370049],[-76.29418626744229,38.96768036375622],[-76.33874326748378,38.956774363746064],[-76.31413026746085,38.94203836373234],[-76.32230826746847,38.91220036370456],[-76.34222126748702,38.9241703637157],[-76.32938726747507,38.87600336367085],[-76.37524026751777,38.85421836365055],[-76.35647426750029,38.95830036374748],[-76.29949026744723,39.04070736382424],[-76.2478222673991,38.97900936376678],[-76.24640926739778,38.923694363715256],[-76.27318926742272,38.949343363739146],[-76.292804267441,38.90783636370049]]],[[[-75.06792426630024,38.450075363274166],[-75.04562326627946,38.449602363273726],[-75.0873202663183,38.32305936315588],[-75.06792426630024,38.450075363274166]]],[[[-75.27035726648877,38.027709362880806],[-75.24409626646431,38.038023362890414],[-75.20938826643199,38.094297362942825],[-75.16437326639006,38.20496236304589],[-75.09402726632455,38.32031636315332],[-75.17281226639793,38.12430636297077],[-75.24221926646256,38.028647362881685],[-75.27035726648877,38.027709362880806]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Colorado","DRAWSEQ":32,"STATE_FIPS":"08","SUB_REGION":"Mountain","STATE_ABBR":"CO"},"geometry":{"type":"Polygon","coordinates":[[[-102.03720729141735,36.98899436191343],[-102.99770929231188,36.9985233619223],[-103.07786629238653,36.99976036192345],[-103.99363529323941,36.994469361918526],[-105.14617229431279,36.99320736191736],[-105.21309129437512,36.99260436191679],[-105.71346029484111,36.994560361918616],[-105.99200029510052,36.9922893619165],[-106.47217729554772,36.991504361915766],[-106.86124929591008,36.989501361913895],[-106.8903702959372,36.99908336192283],[-107.4108202964219,36.997525361921376],[-107.47246029647931,36.99877636192254],[-108.37247329731751,36.999471361923185],[-109.0484802979471,36.99664136192055],[-109.04560229794441,37.63082036251117],[-109.04320629794219,37.88742036275015],[-109.04346429794242,38.15293336299743],[-109.05586129795397,38.2449203630831],[-109.05394829795219,38.49465136331568],[-109.05141729794983,39.360966364122504],[-109.0535282979518,39.51817036426891],[-109.05255129795088,39.65738236439856],[-109.05126329794969,40.2105113649137],[-109.04615529794494,40.66529136533725],[-109.04831429794694,40.998433365647514],[-107.91867129689489,41.00337536565211],[-107.30405129632247,41.00013336564909],[-106.86543829591398,40.99845736564753],[-106.3291252954145,41.001289365650166],[-106.20347129529748,41.00008536564905],[-105.2787972944363,40.99634936564557],[-104.93449329411565,40.99428936564365],[-104.0517052932935,41.003211365651964],[-103.57231629284702,40.99964836564864],[-103.38295629267067,41.00031636564926],[-102.65227129199016,40.99812436564722],[-102.62125729196129,41.00021436564917],[-102.04773929142715,40.99807136564717],[-102.04699229142645,40.74313036540974],[-102.04603129142556,40.69731936536708],[-102.04762029142704,40.43107736511912],[-102.04754529142697,40.34264436503676],[-102.05153529143068,39.99891836471664],[-102.04944229142873,39.56869336431596],[-102.04880129142813,39.562803364310476],[-102.04787429142728,39.12675336390437],[-102.0489722914283,39.03700336382079],[-102.04756829142698,38.69255036349999],[-102.047584291427,38.61549936342823],[-102.0455492914251,38.26334336310026],[-102.04606129142559,38.25382236309139],[-102.04397629142365,37.734398362607635],[-102.0444562914241,37.641474362521095],[-102.04201029142182,37.38627936228343],[-102.03720729141735,36.98899436191343]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Kentucky","DRAWSEQ":33,"STATE_FIPS":"21","SUB_REGION":"East South Central","STATE_ABBR":"KY"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-89.41478427966179,36.50267936146051],[-89.41821027966498,36.510625361467916],[-89.37395127962377,36.61624736156628],[-89.36362127961414,36.625761361575144],[-89.34239527959437,36.62890836157807],[-89.3223452795757,36.62207636157171],[-89.28349527953952,36.575309361528156],[-89.24168427950057,36.56932836152258],[-89.21012827947119,36.58195436153434],[-89.20018727946193,36.631357361580356],[-89.17716127944048,36.65306236160057],[-89.16789927943186,36.67162836161786],[-89.19756327945949,36.71342536165679],[-89.19636527945838,36.72747836166987],[-89.1772692794406,36.760982361701075],[-89.15143527941653,36.75909736169932],[-89.12554027939241,36.7680883617077],[-89.12590627939275,36.7924683617304],[-89.16444427942865,36.80447636174158],[-89.17353127943711,36.82943936176483],[-89.16656527943061,36.8434763617779],[-89.12965327939624,36.86649436179934],[-89.10503427937331,36.953922361880764],[-89.10721627937535,36.97750436190273],[-89.1299302793965,36.98816536191266],[-89.15031627941549,36.99849136192228],[-89.17440427943792,37.02576236194767],[-89.16962127943347,37.064287361983546],[-89.14641927941186,37.09323736201051],[-89.11689327938436,37.112188362028164],[-89.06510427933613,37.18591136209682],[-88.9932402792692,37.22008836212865],[-88.93256727921269,37.218459362127135],[-88.86335027914824,37.20224736211203],[-88.74656027903946,37.152161362065385],[-88.73916627903257,37.14123636205521],[-88.68842127898532,37.13546536204984],[-88.61426827891626,37.10910236202528],[-88.55931927886508,37.072871361991545],[-88.51731727882596,37.06482636198405],[-88.4907432788012,37.06823736198723],[-88.47684127878827,37.07220036199092],[-88.45051127876374,37.09872736201562],[-88.4225552787377,37.15696536206986],[-88.45073927876396,37.20572436211528],[-88.5014692788112,37.25783636216381],[-88.51136527882042,37.29690536220019],[-88.46768627877974,37.40080836229696],[-88.41989327873523,37.42034336231515],[-88.35921427867872,37.40936136230492],[-88.3117422786345,37.44290336233617],[-88.08791027842605,37.47632136236729],[-88.07159127841085,37.51103836239962],[-88.13420227846916,37.583620362467215],[-88.15766427849101,37.628526362509035],[-88.15940427849263,37.660733362539034],[-88.13367027846866,37.70079036257634],[-88.0725042784117,37.73544636260861],[-88.03560727837733,37.805728362674074],[-88.01122327835462,37.801352362669995],[-87.95873827830574,37.776224362646595],[-87.93961027828793,37.79955136266832],[-87.92017027826982,37.809728362677795],[-87.91022827826056,37.8386133627047],[-87.93684927828535,37.875223362738794],[-87.93448427828315,37.90420436276578],[-87.92189527827144,37.91990936278041],[-87.89903627825014,37.92459736278478],[-87.85718727821117,37.89094736275344],[-87.82364727817993,37.87825536274161],[-87.75378227811487,37.898128362760126],[-87.72820027809104,37.89458536275683],[-87.70940827807354,37.89975436276164],[-87.67972127804589,37.89704936275912],[-87.68471727805054,37.83637236270261],[-87.65169627801978,37.82817536269498],[-87.6075882779787,37.843819362709546],[-87.59363427796572,37.86491036272919],[-87.59471827796672,37.89076636275327],[-87.62713727799692,37.923454362783716],[-87.60432527797568,37.97115736282814],[-87.50480327788298,37.91562736277642],[-87.45228827783407,37.93652036279588],[-87.38755027777378,37.93496936279443],[-87.31055927770208,37.89371836275602],[-87.27274627766687,37.87081936273469],[-87.22676227762403,37.84911836271448],[-87.17578027757655,37.83864036270472],[-87.15808027756007,37.82696736269385],[-87.13187927753567,37.78973636265918],[-87.10642727751197,37.78425136265407],[-87.07130827747926,37.80713636267538],[-87.03648027744683,37.90800536276932],[-87.0131562774251,37.92476436278493],[-86.98903127740263,37.93061636279038],[-86.93157327734912,37.938040362797295],[-86.90007827731979,37.95369736281188],[-86.86327227728552,37.986920362842824],[-86.82630727725109,37.99155936284714],[-86.8028152772292,37.97880036283526],[-86.75382527718358,37.898359362760345],[-86.72887627716034,37.89462136275686],[-86.68912627712332,37.9118533627729],[-86.66865527710426,37.91319636277416],[-86.66030827709649,37.902573362764265],[-86.67067027710614,37.86064136272521],[-86.66592427710172,37.847381362712866],[-86.64556827708276,37.84600036271158],[-86.61478227705409,37.857975362722726],[-86.59831027703875,37.921072362781494],[-86.58178427702336,37.92566536278577],[-86.54108727698545,37.9215153627819],[-86.52273827696837,37.927871362787826],[-86.51690127696293,37.94224236280121],[-86.53084827697592,37.987477362843336],[-86.52783427697311,38.01869336287241],[-86.51909127696497,38.04704836289882],[-86.50311427695009,38.0516483629031],[-86.45836727690842,38.0591613629101],[-86.44246727689361,38.07599536292578],[-86.44252127689366,38.088698362937606],[-86.4743372769233,38.11170736295904],[-86.46484627691444,38.12915636297529],[-86.45252427690298,38.12975536297584],[-86.40718127686074,38.10821836295578],[-86.39367727684817,38.12329436296983],[-86.34403927680194,38.13427036298005],[-86.3354182767939,38.14402836298913],[-86.34312427680109,38.15555936299988],[-86.38710127684205,38.16802136301148],[-86.38830727684316,38.19480836303643],[-86.36435027682086,38.19329036303502],[-86.34160627679967,38.17728836302011],[-86.29767427675876,38.15030436299499],[-86.29144027675295,38.078489362928096],[-86.27769927674015,38.05817336290918],[-86.25215527671637,38.040721362892924],[-86.19062127665906,38.01775836287154],[-86.1049862765793,38.01133636286556],[-86.05271527653062,37.966784362824065],[-86.03162027651098,37.99295036284843],[-86.00666327648773,38.00176736285665],[-85.95858227644295,38.011840362866025],[-85.93087227641715,38.03404936288671],[-85.91475127640213,38.06487436291542],[-85.91207427639964,38.18000136302264],[-85.85233527634401,38.23856136307718],[-85.83990727633243,38.27629136311232],[-85.80655127630136,38.286179363121526],[-85.78621127628242,38.282391363117995],[-85.74692627624583,38.27031536310675],[-85.6813892761848,38.300953363135285],[-85.6542282761595,38.337753363169554],[-85.6435932761496,38.38368836321234],[-85.61264027612077,38.446670363271],[-85.50720027602257,38.471419363294046],[-85.46638227598456,38.51817536333759],[-85.43237027595288,38.537016363355136],[-85.41746127593899,38.561475363377916],[-85.42440427594546,38.58484036339968],[-85.45367927597273,38.69467436350197],[-85.44669027596622,38.72484036353006],[-85.41818627593968,38.73841736354271],[-85.3350092758622,38.73700636354139],[-85.27139427580296,38.744376363548255],[-85.20516227574127,38.69581736350303],[-85.16093327570009,38.69517636350243],[-85.11965727566164,38.71413936352009],[-85.06845427561396,38.75042436355389],[-85.02507327557356,38.7642913635668],[-84.97561127552748,38.78064136358203],[-84.81878027538143,38.79341036359392],[-84.82442627538668,38.83446336363215],[-84.78744627535225,38.86664336366212],[-84.78866727535339,38.884385363678646],[-84.80322427536694,38.89719036369057],[-84.85974327541958,38.90204236369509],[-84.87525427543403,38.90943136370197],[-84.87588027543461,38.9276043637189],[-84.84631627540708,38.95463136374407],[-84.83444427539602,38.98277536377028],[-84.84422527540512,39.005831363791756],[-84.87629327543499,39.03289536381696],[-84.88999627544776,39.05064836383349],[-84.88670827544469,39.065045363846906],[-84.82786127538989,39.10368736388289],[-84.81148027537463,39.102585363881865],[-84.78992727535456,39.107033363886],[-84.74287527531074,39.14206336391863],[-84.66748727524053,39.08962436386979],[-84.62264827519877,39.074934363856116],[-84.59306827517122,39.07026536385176],[-84.51530127509879,39.09419536387405],[-84.49205327507714,39.107363363886314],[-84.44491827503325,39.11182736389047],[-84.42568327501533,39.08472436386523],[-84.4197402750098,39.04733736383041],[-84.39131227498332,39.03574436381962],[-84.34577927494091,39.03781236382154],[-84.31331527491068,39.01407436379943],[-84.2901362748891,38.944538363734665],[-84.26152527486245,38.917477363709466],[-84.23529427483801,38.874555363669494],[-84.22870227483187,38.81269036361188],[-84.1767522747835,38.78849836358935],[-84.08886727470164,38.76550436356793],[-84.05380127466898,38.76373536356628],[-83.96216327458365,38.77764736357924],[-83.91253927453742,38.757960363560905],[-83.85755227448621,38.74491836354876],[-83.83753227446758,38.71188036351799],[-83.79046527442374,38.69384436350119],[-83.77022327440488,38.650819363461125],[-83.71282527435143,38.6355533634469],[-83.67853027431948,38.620928363433286],[-83.65575527429827,38.62388036343603],[-83.64318927428657,38.63586236344719],[-83.63324127427731,38.664972363474305],[-83.61837827426346,38.67797236348641],[-83.52655627417795,38.696111363503306],[-83.5000732741533,38.69013736349774],[-83.45361627411002,38.66377436347319],[-83.37142227403348,38.654997363465014],[-83.33002327399491,38.63198836344358],[-83.32032527398589,38.60656336341991],[-83.30653127397304,38.596317363410364],[-83.29004327395768,38.59663836341066],[-83.27275527394158,38.609257363422415],[-83.24501327391575,38.6241723634363],[-83.181939273857,38.60984136342296],[-83.14315027382088,38.619339363431806],[-83.11124327379116,38.66483336347417],[-83.06088027374426,38.68572636349363],[-83.02694327371265,38.71451236352044],[-82.97248327366194,38.71964336352522],[-82.92130427361427,38.74641436355015],[-82.89031227358541,38.74277536354676],[-82.87319127356946,38.71900636352463],[-82.8800112735758,38.683301363491374],[-82.8600292735572,38.65239536346259],[-82.85385627355146,38.60045836341422],[-82.82699227352643,38.571662363387404],[-82.8023642735035,38.55728836337401],[-82.74194527344723,38.553066363370085],[-82.69557927340405,38.539142363357115],[-82.66976027337999,38.50214036332265],[-82.61374327332783,38.472668363295206],[-82.58660427330256,38.412519363239184],[-82.59823927331338,38.36846436319816],[-82.57229827328923,38.30781136314167],[-82.58004927329645,38.29251036312742],[-82.57457927329135,38.25597336309339],[-82.58911327330489,38.245388363083535],[-82.61622827333014,38.23881136307741],[-82.60664527332122,38.19382636303551],[-82.61376327332785,38.178095363020866],[-82.64715827335895,38.169435363012795],[-82.64612827335799,38.14633036299128],[-82.5932082733087,38.10996236295741],[-82.52467827324487,38.01566236286959],[-82.47577927319934,37.97590736283256],[-82.48017427320343,37.95439636281253],[-82.49339627321575,37.94251336280146],[-82.5002092732221,37.922262362782604],[-82.43760727316379,37.89485436275707],[-82.4215082731488,37.87235636273613],[-82.40580527313418,37.81171936267965],[-82.33984627307274,37.78440036265421],[-82.3194982730538,37.75842636263002],[-82.32940127306301,37.74417136261674],[-82.29562527303156,37.66905836254679],[-82.23837127297824,37.65677636253535],[-82.20544027294757,37.62401636250484],[-82.18554927292904,37.64066736252035],[-82.1593102729046,37.59356936247649],[-82.13178127287897,37.590537362473654],[-82.13747327288426,37.569896362454436],[-82.1465222728927,37.56592136245074],[-82.14250927288896,37.557452362442845],[-82.08439227283483,37.548310362434336],[-82.05566527280808,37.52534236241294],[-82.049134272802,37.55145336243726],[-82.02635127278077,37.53051936241776],[-81.97657427273442,37.543253362429624],[-81.95957527271858,37.531172362418374],[-82.28895127302535,37.3048613622076],[-82.35384227308577,37.260519362166306],[-82.40588527313425,37.250704362157165],[-82.55004027326851,37.199378362109364],[-82.56802227328525,37.19391936210428],[-82.71909627342595,37.11001736202614],[-82.72137727342808,37.0931173620104],[-82.7091702734167,37.07548236199398],[-82.72005727342685,37.065929361985084],[-82.72359827343014,37.033992361955335],[-82.81222227351267,37.0056003619289],[-82.86656027356328,36.97458536190001],[-82.86063227355775,36.9321623618605],[-82.87804327357398,36.89369436182467],[-82.95080527364175,36.86407836179709],[-83.04663427373099,36.858793361792166],[-83.06795227375085,36.85099636178491],[-83.12822027380697,36.779152361718],[-83.12439127380341,36.751167361691934],[-83.13851327381656,36.74005936168159],[-83.20365627387723,36.73426036167619],[-83.32138327398687,36.70953336165316],[-83.38585527404692,36.68821936163331],[-83.40415027406395,36.672327361618514],[-83.46022127411618,36.66183236160873],[-83.53089527418199,36.66148136160841],[-83.64680227428994,36.61697736156696],[-83.67517727431637,36.59870436154994],[-83.6956082743354,36.58424936153648],[-83.93560027455891,36.59129036154304],[-84.00674627462516,36.59208836154378],[-84.25448827485589,36.59545236154692],[-84.25677727485802,36.59549836154696],[-84.78187127534706,36.605076361555874],[-84.79105727535561,36.60543836155621],[-84.99846127554876,36.62098236157069],[-85.27249827580398,36.625616361575005],[-85.3000942758297,36.62610136157546],[-85.43737427595754,36.6181993615681],[-85.78547627628174,36.626685361576],[-85.98061027646347,36.633112361581986],[-86.19899227666686,36.64329036159147],[-86.41544327686844,36.650932361598585],[-86.51066827695712,36.655074361602445],[-86.77053527719914,36.65210036159967],[-87.06818427747635,36.65081136159847],[-87.11270227751781,36.65130736159893],[-87.34661127773566,36.64927736159704],[-87.6406552780095,36.64521736159326],[-87.69352827805875,36.64448836159258],[-87.85353727820777,36.64152236158982],[-87.87071127822377,36.669423361615806],[-88.07134127841061,36.67968336162536],[-88.04109127838244,36.58272136153506],[-88.03507927837684,36.538200361493594],[-88.042763278384,36.49657036145482],[-88.49602527880613,36.49820736145635],[-88.51268127882165,36.49954636145759],[-88.8107182790992,36.49904536145713],[-88.82635927911377,36.499908361457926],[-88.83037227911751,36.49985436145788],[-89.34666727959835,36.50261036146045],[-89.41478427966179,36.50267936146051]]],[[[-89.53327227977215,36.49817036145632],[-89.56706427980362,36.51879936147553],[-89.5682312798047,36.54146936149664],[-89.55621427979351,36.55780336151185],[-89.5304422797695,36.56461636151819],[-89.49320227973483,36.55917736151313],[-89.48174927972416,36.54783636150257],[-89.47144927971456,36.52561636148187],[-89.48175727972416,36.50475836146245],[-89.47589727971871,36.49860936145672],[-89.53327227977215,36.49817036145632]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Kansas","DRAWSEQ":34,"STATE_FIPS":"20","SUB_REGION":"West North Central","STATE_ABBR":"KS"},"geometry":{"type":"Polygon","coordinates":[[[-102.03720729141735,36.98899436191343],[-102.04201029142182,37.38627936228343],[-102.0444562914241,37.641474362521095],[-102.04397629142365,37.734398362607635],[-102.04606129142559,38.25382236309139],[-102.0455492914251,38.26334336310026],[-102.047584291427,38.61549936342823],[-102.04756829142698,38.69255036349999],[-102.0489722914283,39.03700336382079],[-102.04787429142728,39.12675336390437],[-102.04880129142813,39.562803364310476],[-102.04944229142873,39.56869336431596],[-102.05153529143068,39.99891836471664],[-101.40739329083078,40.001003364718585],[-101.32214829075139,40.00182136471934],[-100.75485629022306,40.00019836471783],[-100.73504929020461,39.99917236471687],[-100.19111128969803,40.00058536471819],[-100.18091028968853,40.00047836471809],[-99.62785928917346,40.002987364720425],[-99.17820128875468,39.999577364717254],[-99.06474728864902,39.9983383647161],[-98.72063228832855,39.99846136471621],[-98.50447928812723,39.99712936471497],[-98.26416528790342,39.99843436471619],[-97.92958828759183,39.9984523647162],[-97.81658928748658,39.999729364717396],[-97.36191228706313,39.997380364715205],[-96.90828728664066,39.996154364714066],[-96.80142028654113,39.9944763647125],[-96.45403828621761,39.99417236471221],[-96.24059828601882,39.99450336471253],[-96.00125328579593,39.99515936471314],[-95.78070028559051,39.99348936471158],[-95.32970128517049,39.99259536471075],[-95.30869728515093,39.999407364717094],[-95.24096128508785,39.94210536466373],[-95.20759728505676,39.938176364660066],[-95.19396328504408,39.910180364633995],[-95.15055128500364,39.908054364632015],[-95.10072228495723,39.86986536459645],[-95.06324628492233,39.86653836459335],[-95.03350628489463,39.87784436460388],[-95.02177228488371,39.8969783646217],[-94.96502328483085,39.90082336462528],[-94.93824328480592,39.89608136462087],[-94.9365112848043,39.84938636457738],[-94.92387628479253,39.833131364562234],[-94.89832428476873,39.82833236455777],[-94.88850528475959,39.81740036454759],[-94.89932328476966,39.79377536452559],[-94.93326728480127,39.782773364515336],[-94.935114284803,39.77542636450849],[-94.9218002847906,39.75784136449212],[-94.87706728474895,39.76067936449476],[-94.87118528474346,39.75411836448865],[-94.87786028474967,39.73930536447486],[-94.90567828477559,39.726755364463166],[-94.93085628479903,39.72702636446342],[-94.95314228481979,39.73650136447225],[-94.96178628482784,39.73203836446808],[-94.97857028484347,39.68498836442427],[-95.02829228488977,39.66191336440278],[-95.0560172849156,39.62568936436904],[-95.05361328491337,39.586776364332806],[-95.10898828496494,39.56069236430851],[-95.10203728495846,39.53284836428257],[-95.04759928490776,39.48532836423832],[-95.04051128490116,39.462940364217474],[-94.98620428485059,39.43946136419561],[-94.95849428482478,39.41144736416952],[-94.92574828479428,39.3812663641414],[-94.8982812847687,39.380640364140824],[-94.91134328478086,39.340121364103084],[-94.90768128477745,39.323028364087165],[-94.8811072847527,39.28604636405272],[-94.83347628470834,39.26176636403011],[-94.82081928469655,39.21100436398284],[-94.7900492846679,39.19688336396969],[-94.73053128461247,39.171256363945815],[-94.67551428456123,39.174922363949236],[-94.64640728453412,39.15842736393387],[-94.61265328450268,39.15164936392756],[-94.60122428449205,39.14122736391785],[-94.60813728449848,39.11280136389138],[-94.60928128449954,39.04466736382793],[-94.61246928450251,38.837109363634625],[-94.61314828450314,38.73722236354159],[-94.61871728450834,38.471473363294095],[-94.61905328450865,38.39203236322011],[-94.61733028450703,38.055784362906955],[-94.61673528450649,38.0303873628833],[-94.61929328450887,37.67986936255686],[-94.6189962845086,37.65037436252939],[-94.61876428450837,37.36076636225967],[-94.61897728450857,37.3277323622289],[-94.62066428451014,37.060147361979695],[-94.62037928450988,36.99704636192092],[-95.03274528489392,37.0007793619244],[-95.07193128493041,37.00147836192505],[-95.40662228524212,37.00061536192425],[-95.52601928535333,37.00101836192462],[-95.78574828559522,36.99811436192192],[-95.9579612857556,37.00008336192376],[-96.00604928580039,36.99833336192212],[-96.51918728627828,37.000577361924215],[-96.74869628649203,37.00016636192383],[-97.13769328685432,36.9998083619235],[-97.46540528715951,36.99646736192039],[-97.80425028747509,36.99856736192234],[-98.10452928775474,36.99867136192244],[-98.3471432879807,36.9990613619228],[-98.54021928816051,36.99837636192217],[-98.99951628858827,36.998072361921885],[-99.43747328899615,36.99455836191861],[-99.54463928909595,36.99546336191945],[-99.99926128951935,36.99541736191941],[-100.08857428960253,36.997652361921496],[-100.63424529011073,36.99783236192166],[-100.95058729040535,36.99666136192057],[-101.07160429051805,36.99746636192132],[-101.55367629096702,36.9966933619206],[-102.02451929140553,36.988875361913315],[-102.03720729141735,36.98899436191343]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Virginia","DRAWSEQ":35,"STATE_FIPS":"51","SUB_REGION":"South Atlantic","STATE_ABBR":"VA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.66983527244875,36.58976736154162],[-81.65227227243238,36.6076733615583],[-81.82889827259689,36.61159636156195],[-81.91829427268014,36.61360836156382],[-81.92930327269039,36.59595036154738],[-82.15418127289983,36.59515036154663],[-82.21666127295802,36.59407236154563],[-82.29685827303271,36.59180136154352],[-82.61083927332513,36.591545361543275],[-82.84982227354769,36.59104136154281],[-82.98669727367516,36.59128936154303],[-83.210926273884,36.58808936154006],[-83.24838827391889,36.58993536154178],[-83.2750312739437,36.60046736155158],[-83.46421027411989,36.59884036155007],[-83.67517727431637,36.59870436154994],[-83.64680227428994,36.61697736156696],[-83.53089527418199,36.66148136160841],[-83.46022127411618,36.66183236160873],[-83.40415027406395,36.672327361618514],[-83.38585527404692,36.68821936163331],[-83.32138327398687,36.70953336165316],[-83.20365627387723,36.73426036167619],[-83.13851327381656,36.74005936168159],[-83.12439127380341,36.751167361691934],[-83.12822027380697,36.779152361718],[-83.06795227375085,36.85099636178491],[-83.04663427373099,36.858793361792166],[-82.95080527364175,36.86407836179709],[-82.87804327357398,36.89369436182467],[-82.86063227355775,36.9321623618605],[-82.86656027356328,36.97458536190001],[-82.81222227351267,37.0056003619289],[-82.72359827343014,37.033992361955335],[-82.72005727342685,37.065929361985084],[-82.7091702734167,37.07548236199398],[-82.72137727342808,37.0931173620104],[-82.71909627342595,37.11001736202614],[-82.56802227328525,37.19391936210428],[-82.55004027326851,37.199378362109364],[-82.40588527313425,37.250704362157165],[-82.35384227308577,37.260519362166306],[-82.28895127302535,37.3048613622076],[-81.95957527271858,37.531172362418374],[-81.93545027269612,37.50664436239553],[-81.9479932727078,37.49302636238285],[-81.97642227273428,37.482905362373415],[-81.98820227274524,37.46658636235822],[-81.92073327268241,37.415516362310655],[-81.92682227268809,37.37172736226988],[-81.89715827266046,37.34058836224088],[-81.86381527262941,37.32545636222678],[-81.85868127262462,37.30703136220963],[-81.8388892726062,37.285505362189575],[-81.81538127258429,37.27953936218402],[-81.79265927256313,37.287153362191106],[-81.75185427252514,37.272257362177236],[-81.73845627251265,37.250491362156964],[-81.70172827247845,37.23543436214294],[-81.66588527244507,37.20491036211452],[-81.55665427234334,37.20635236211586],[-81.50553627229573,37.234372362141954],[-81.49553327228641,37.252850362159165],[-81.47536027226762,37.254422362160625],[-81.40334427220056,37.282624362186894],[-81.39094627218901,37.31115436221346],[-81.35879527215907,37.338952362239354],[-81.31187327211536,37.29370736219721],[-81.22293327203253,37.2402143621474],[-81.14073727195598,37.27492536217972],[-81.02493227184813,37.2860613621901],[-80.98593627181181,37.30624136220889],[-80.97853527180492,37.29647536219979],[-80.96789227179501,37.291791362195426],[-80.93418327176362,37.30137036220435],[-80.85542927169027,37.33941136223978],[-80.84841827168374,37.35094336225052],[-80.87735827171069,37.38869736228568],[-80.8505252716857,37.42346036231805],[-80.79961127163828,37.413062362308374],[-80.79924427163795,37.391753362288526],[-80.77002227161073,37.386195362283345],[-80.76299527160418,37.37141436226958],[-80.74768927158993,37.37908136227672],[-80.74632427158866,37.38773736228478],[-80.72973727157321,37.39271936228943],[-80.70520727155036,37.38837836228538],[-80.59749127145005,37.4460543623391],[-80.54275527139907,37.46921036236066],[-80.50876527136741,37.4750473623661],[-80.48788127134796,37.460597362352644],[-80.48679727134696,37.43386036232774],[-80.47476427133574,37.422821362317464],[-80.42537827128976,37.43490636232872],[-80.38830627125523,37.46572536235742],[-80.35215727122156,37.47610136236708],[-80.34751127121723,37.49117736238112],[-80.28791627116173,37.51115136239973],[-80.28073027115504,37.53625936242311],[-80.30830327118072,37.52837036241576],[-80.32590627119711,37.53340136242045],[-80.31672127118856,37.566718362451475],[-80.24639327112307,37.59689636247958],[-80.21892827109748,37.62426636250507],[-80.25442227113054,37.640703362520384],[-80.30093227117385,37.64054736252024],[-80.30486227117751,37.65224636253113],[-80.29570027116898,37.67150236254906],[-80.30310927117588,37.68267136255946],[-80.25003327112645,37.726052362599866],[-80.25468927113079,37.757232362628905],[-80.220546271099,37.778858362649046],[-80.22373527110196,37.80236436267094],[-80.1715942710534,37.84296836270875],[-80.17222027105399,37.86018436272479],[-80.1600052710426,37.87722836274066],[-80.11850727100396,37.891278362753745],[-80.10649027099277,37.91465836277552],[-80.05480727094464,37.95564836281369],[-80.00049927089405,37.989870362845565],[-79.96649327086239,38.038621362890964],[-79.95751327085402,38.06736536291774],[-79.9282922708268,38.10331136295122],[-79.93532727083335,38.12130836296798],[-79.91034027081008,38.16260636300644],[-79.91616127081551,38.17926436302196],[-79.83115227073634,38.25027936308809],[-79.79362227070139,38.26866636310521],[-79.78651127069476,38.28511836312054],[-79.80277827070991,38.29887036313335],[-79.80032927070764,38.31432636314774],[-79.76400427067381,38.353991363184676],[-79.73282927064477,38.351840363182674],[-79.72003527063285,38.39468536322258],[-79.68409227059938,38.43023836325569],[-79.69265327060735,38.500354363320994],[-79.66561427058217,38.520778363340014],[-79.66943027058572,38.550177363367396],[-79.64240627056056,38.592355363406675],[-79.53651327046194,38.55380536337077],[-79.48634727041521,38.46214536328541],[-79.3169992702575,38.412633363239294],[-79.27235927021592,38.43730636326227],[-79.23166327017802,38.48049636330249],[-79.12742727008094,38.65824436346804],[-79.12106427007502,38.663767363473184],[-79.08854627004473,38.659205363468935],[-79.08723427004351,38.70726836351369],[-79.05655527001494,38.76205336356472],[-79.0548002700133,38.79063336359134],[-79.0337422699937,38.799959363600024],[-78.98745326995058,38.84676136364361],[-78.86656026983799,38.763404363565975],[-78.81586126979077,38.833745363631486],[-78.79305526976954,38.88021936367477],[-78.74925326972874,38.91149136370389],[-78.73773226971801,38.92928236372046],[-78.72414326970535,38.93032436372143],[-78.71898626970055,38.90499136369784],[-78.68022726966446,38.92168436371338],[-78.64696926963349,38.95055336374027],[-78.63084726961847,38.97971236376743],[-78.59869626958853,38.967306363755874],[-78.55320826954616,39.0139363637993],[-78.54920226954243,39.0234883638082],[-78.56417926955638,39.035145363819055],[-78.53665126953074,39.05713236383953],[-78.5016002694981,39.09368436387358],[-78.48525026948288,39.11194436389058],[-78.44797926944815,39.11903636389718],[-78.43056926943194,39.14862636392474],[-78.40236226940567,39.1705943639452],[-78.42406826942589,39.19762836397038],[-78.42306926942496,39.2121433639839],[-78.39912726940265,39.24495236401445],[-78.41354726941609,39.25754036402618],[-78.34084626934839,39.34145836410433],[-78.34392826935125,39.35095636411317],[-78.36547426937132,39.36168636412317],[-78.35023126935712,39.380828364140996],[-78.34754626935462,39.45699836421194],[-78.27688126928881,39.4234643641807],[-78.22950826924469,39.39111336415058],[-78.03332826906198,39.26563936403372],[-77.83068026887325,39.132181363909424],[-77.82004426886334,39.14172536391831],[-77.80544926884976,39.19660636396942],[-77.7682322688151,39.246550364015945],[-77.75945826880692,39.28464336405142],[-77.72746726877713,39.3177963640823],[-77.67930226873227,39.31878136408321],[-77.61623626867353,39.29981836406555],[-77.56867326862924,39.29849536406432],[-77.5419012686043,39.26904236403689],[-77.49377326855948,39.250014364019165],[-77.46466726853238,39.229160363999746],[-77.46170726852962,39.218735363990035],[-77.47834726854512,39.1770373639512],[-77.5163282685805,39.15754936393306],[-77.51275826857716,39.11675936389506],[-77.4789592685457,39.10406436388324],[-77.45940426852748,39.080944363861704],[-77.43274626850265,39.066884363848615],[-77.34622626842207,39.06862036385023],[-77.32430626840166,39.062696363844715],[-77.25569226833775,39.02768136381211],[-77.24343226832633,38.97598936376396],[-77.15174726824095,38.96488936375363],[-77.12232826821355,38.93217136372316],[-77.07864926817287,38.91571136370783],[-77.06758626816257,38.88621236368035],[-77.03877726813573,38.862543363658304],[-77.04010426813697,38.838526363635935],[-77.04488826814143,38.82947736362751],[-77.03494626813217,38.81402836361312],[-77.04514726814168,38.7882343635891],[-77.04616926814262,38.718895363524524],[-77.05682026815253,38.712136363518226],[-77.0815782681756,38.71539436352126],[-77.09284726818609,38.70409936351074],[-77.12481526821587,38.67791536348636],[-77.1296902682204,38.64824236345872],[-77.19696126828306,38.62281736343505],[-77.19445126828072,38.6608833634705],[-77.2272962683113,38.650839363461145],[-77.30332326838212,38.50203336332255],[-77.33818926841458,38.43694836326194],[-77.28918526836895,38.362796363192885],[-77.32152626839907,38.34410936317548],[-77.24040126832351,38.331497363163734],[-77.05423226815013,38.37547636320469],[-76.99905426809875,38.280402363116146],[-76.93615526804017,38.20260336304369],[-76.5952832677227,38.12035236296708],[-76.54871126767932,38.074240362924144],[-76.55772226768772,38.025459362878706],[-76.57337026770229,38.00330036285807],[-76.52422026765652,38.012874362866995],[-76.36741426751048,37.95708036281503],[-76.25886626740939,37.8901583627527],[-76.25158826740261,37.850306362715585],[-76.32420726747024,37.79894536266775],[-76.30961126745665,37.719245362593526],[-76.35667026750048,37.70026536257585],[-76.32272626746887,37.67794836255507],[-76.34453826748917,37.62305936250395],[-76.50676026764026,37.65652336253511],[-76.5801362677086,37.77025436264103],[-76.63145326775638,37.79648736266546],[-76.77153226788684,37.916810362777525],[-76.8181882679303,37.91964136278016],[-76.73203426785005,37.79861936266745],[-76.68141226780291,37.77489336264536],[-76.56917126769838,37.642046362521626],[-76.31430926746103,37.55133536243715],[-76.34830626749269,37.52528536241289],[-76.51252826764564,37.55271336243843],[-76.43385026757235,37.515338362403625],[-76.35533326749923,37.51588936240414],[-76.2542552674051,37.3903253622872],[-76.27485526742427,37.33046036223144],[-76.30063626744828,37.3347103622354],[-76.33868526748373,37.39368436229033],[-76.44653826758417,37.45810436235032],[-76.46360626760007,37.41903136231393],[-76.41675226755643,37.41227436230764],[-76.40342326754401,37.37316736227122],[-76.45522126759225,37.37763136227537],[-76.39240626753376,37.29356736219708],[-76.46080726759746,37.2555753621617],[-76.65316626777661,37.41234436230771],[-76.70436126782428,37.41863636231356],[-76.66966126779197,37.37179136226993],[-76.59471526772217,37.291442362195106],[-76.4243372675635,37.20744136211687],[-76.41266326755262,37.15253736206574],[-76.39654226753761,37.173174362084964],[-76.36345126750679,37.146571362060186],[-76.33698426748214,37.17715236208866],[-76.28533826743404,37.12224036203752],[-76.3953592675365,37.10785336202412],[-76.27859426742776,37.07448936199305],[-76.29300626744119,37.020635361942894],[-76.38422026752613,36.990561361914885],[-76.42578626756485,36.965407361891465],[-76.53079426766264,37.06778936198681],[-76.51494026764787,37.08851436200611],[-76.56416626769372,37.117917362033495],[-76.5681182676974,37.08032036199848],[-76.62459326775,37.132421362047005],[-76.60970726773613,37.178723362090125],[-76.64777126777159,37.22598436213414],[-76.69683026781728,37.232668362140366],[-76.74578226786286,37.193537362103925],[-76.79561126790927,37.24053436214769],[-76.85685426796631,37.24404836215096],[-76.87517326798337,37.323092362224585],[-76.8781102679861,37.259574362165424],[-76.94117726804484,37.23675836214417],[-76.900549268007,37.20120236211106],[-76.79707626791064,37.20745036211688],[-76.72889026784713,37.15081736206414],[-76.68564526780686,37.19813336210821],[-76.67121726779342,37.14786036206138],[-76.66532026778793,37.05428236197423],[-76.57750326770613,37.02464236194663],[-76.61304926773924,36.99499136191901],[-76.55472126768493,37.00634336192958],[-76.48918126762389,36.96187136188817],[-76.51684626764965,36.91233436184203],[-76.48184926761705,36.91923436184846],[-76.48628926762119,36.895717361826556],[-76.56018926769002,36.841949361776486],[-76.56152426769125,36.79576536173347],[-76.50686626764036,36.86962136180225],[-76.41047326755059,36.901561361831995],[-76.34781026749222,36.913489361843105],[-76.34158426748643,36.8603353617936],[-76.39375526753501,36.83607436177101],[-76.40085126754163,36.826286361761895],[-76.31710026746362,36.84599236178025],[-76.29236426744059,36.82849036176395],[-76.30728126745447,36.9421483618698],[-76.2838892674327,36.96288136188911],[-76.20199126735642,36.935217361863344],[-76.19132526734649,36.90458936183482],[-76.11808826727828,36.93176436186013],[-75.99501426716365,36.92328136185223],[-75.8778112670545,36.5560283615102],[-75.90163126707668,36.5563523615105],[-75.89249926706819,36.59917536155038],[-75.95044826712216,36.721716361664505],[-75.99831426716673,36.556805361510925],[-76.02681926719328,36.55687036151098],[-76.06151226722558,36.60374436155463],[-76.04561126721077,36.5571063615112],[-76.12705026728662,36.5573153615114],[-76.32991626747555,36.556208361510365],[-76.49722826763139,36.555964361510135],[-76.56325526769287,36.555404361509616],[-76.92131426802634,36.5543093615086],[-76.92381626802867,36.554298361508586],[-77.1770422682645,36.556437361510575],[-77.31974626839741,36.55406836150837],[-77.76363826881082,36.553589361507925],[-77.89856826893647,36.55309236150747],[-78.0513812690788,36.55262136150702],[-78.32096926932986,36.54567536150056],[-78.45852926945798,36.54162336149678],[-78.73711626971743,36.54621436150106],[-78.79642826977268,36.54367436149869],[-79.14406327009644,36.54619836150104],[-79.21680327016418,36.54992136150451],[-79.51004827043728,36.54779536150253],[-79.71720127063021,36.548028361502745],[-80.02382227091577,36.54516336150007],[-80.04786327093817,36.54727236150204],[-80.4350922712988,36.551181361505684],[-80.61084127146248,36.55743036151151],[-80.837953271674,36.56356836151722],[-80.9032402717348,36.56534236151887],[-81.34512127214633,36.572988361525994],[-81.66983527244875,36.58976736154162]]],[[[-75.27035726648877,38.027709362880806],[-75.24221926646256,38.028647362881685],[-75.29849626651497,37.96299836282054],[-75.33882026655253,37.88890736275154],[-75.38572026659621,37.87577736273931],[-75.34445126655777,37.902037362763764],[-75.37821226658922,37.901098362762895],[-75.34632826655952,37.91892036277949],[-75.27035726648877,38.027709362880806]]],[[[-75.64786626684035,37.9702553628273],[-75.62608426682006,37.99654136285178],[-75.37242026658382,38.01683336287068],[-75.61757026681214,37.697262362573056],[-75.58955426678604,37.67732336255449],[-75.6991432668881,37.58964536247283],[-75.64991726684227,37.559888362445115],[-75.7271742669142,37.55831636244365],[-75.75615026694119,37.51067536239928],[-75.70491826689349,37.49360936238339],[-75.81267726699384,37.469179362360634],[-75.82013826700079,37.42634136232074],[-75.79042026697311,37.40824536230389],[-75.82632626700655,37.41828436231324],[-75.89676226707215,37.36753036226597],[-75.93104026710408,37.14264436205653],[-75.97063826714096,37.126374362041375],[-76.01812726718518,37.30891836221138],[-75.93410326710693,37.48477636237516],[-75.9651022671358,37.479485362370234],[-75.9543602671258,37.52196436240979],[-75.9304112671035,37.55702136244244],[-75.86702426704446,37.55231436243806],[-75.94075726711313,37.56168636244679],[-75.92921426710238,37.586015362469446],[-75.886930267063,37.58047736246429],[-75.90564626708043,37.592306362475306],[-75.79937426698146,37.711922362586705],[-75.78225426696551,37.78996136265938],[-75.69573526688492,37.82464336269169],[-75.6863582668762,37.858250362722984],[-75.73363026692023,37.930694362790454],[-75.65809826684988,37.94130636280033],[-75.64786626684035,37.9702553628273]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Missouri","DRAWSEQ":36,"STATE_FIPS":"29","SUB_REGION":"West North Central","STATE_ABBR":"MO"},"geometry":{"type":"Polygon","coordinates":[[[-89.41478427966179,36.50267936146051],[-89.44859127969328,36.45644236141745],[-89.47090827971407,36.44601736140774],[-89.49206427973377,36.465524361425906],[-89.47589727971871,36.49860936145672],[-89.48175727972416,36.50475836146245],[-89.47144927971456,36.52561636148187],[-89.48174927972416,36.54783636150257],[-89.49320227973483,36.55917736151313],[-89.5304422797695,36.56461636151819],[-89.55621427979351,36.55780336151185],[-89.5682312798047,36.54146936149664],[-89.56706427980362,36.51879936147553],[-89.53327227977215,36.49817036145632],[-89.51609827975615,36.47187236143182],[-89.54525827978331,36.44102336140309],[-89.52008027975985,36.40112236136593],[-89.51940927975923,36.3559963613239],[-89.54463227978272,36.34578836131439],[-89.60576827983967,36.3548173613228],[-89.6228742798556,36.334847361304206],[-89.60684427984066,36.308103361279294],[-89.54231327978056,36.280932361253996],[-89.53545427977417,36.26460536123879],[-89.54172527978001,36.257346361232024],[-89.6181592798512,36.24096636121678],[-89.6706662799001,36.2549613612298],[-89.69462327992241,36.25220336122724],[-89.69573727992345,36.240863361216675],[-89.67686927990587,36.220935361198116],[-89.61863927985165,36.18381136116354],[-89.58953227982454,36.152089361134],[-89.5895012798245,36.1298613611133],[-89.66746827989712,36.09938636108492],[-89.67824927990716,36.08304036106969],[-89.68892227991711,36.025867361016445],[-89.72183627994775,35.99995136099231],[-89.96329128017263,35.99690836098948],[-90.2835542804709,35.99122836098418],[-90.37906228055985,35.98965636098272],[-90.3153392805005,36.09172336107778],[-90.28485128047211,36.11597236110036],[-90.2638012804525,36.118829361103025],[-90.23493928042562,36.137155361120094],[-90.23232228042319,36.1612133611425],[-90.21932128041108,36.17263136115313],[-90.16140528035714,36.19700636117583],[-90.13131328032911,36.21213536118992],[-90.11001228030928,36.2580593612327],[-90.06618728026845,36.272338361245986],[-90.04984528025324,36.30053636127225],[-90.06772928026989,36.325395361295406],[-90.05029528025366,36.362668361330115],[-90.05215728025539,36.3826153613487],[-90.08027228028158,36.39745036136251],[-90.11692528031571,36.40497636136952],[-90.12392928032223,36.42262636138595],[-90.11732228031609,36.45395536141513],[-90.13737228033476,36.457476361418415],[-90.15025928034676,36.491873361450445],[-90.22447328041588,36.49281136145132],[-90.5817322807486,36.49102236144965],[-90.804434280956,36.48926536144802],[-91.1339562812629,36.488015361446855],[-91.41179628152166,36.49110136144973],[-91.45298928156002,36.49043836144911],[-91.68856028177942,36.49101836144965],[-92.12764228218833,36.491435361450044],[-92.14631928220574,36.49166036145025],[-92.5230502825566,36.490921361449566],[-92.7776352827937,36.48998336144869],[-92.8522752828632,36.489884361448595],[-93.29732428327769,36.49068136144933],[-93.32834628330659,36.490261361448944],[-93.59644928355627,36.489958361448664],[-93.85752028379942,36.48978636144851],[-94.0810522840076,36.49102436144966],[-94.61725728450698,36.489414361448155],[-94.62107328451053,36.67054336161685],[-94.62168428451109,36.76360736170352],[-94.62037928450988,36.99704636192092],[-94.62066428451014,37.060147361979695],[-94.61897728450857,37.3277323622289],[-94.61876428450837,37.36076636225967],[-94.6189962845086,37.65037436252939],[-94.61929328450887,37.67986936255686],[-94.61673528450649,38.0303873628833],[-94.61733028450703,38.055784362906955],[-94.61905328450865,38.39203236322011],[-94.61871728450834,38.471473363294095],[-94.61314828450314,38.73722236354159],[-94.61246928450251,38.837109363634625],[-94.60928128449954,39.04466736382793],[-94.60813728449848,39.11280136389138],[-94.60122428449205,39.14122736391785],[-94.61265328450268,39.15164936392756],[-94.64640728453412,39.15842736393387],[-94.67551428456123,39.174922363949236],[-94.73053128461247,39.171256363945815],[-94.7900492846679,39.19688336396969],[-94.82081928469655,39.21100436398284],[-94.83347628470834,39.26176636403011],[-94.8811072847527,39.28604636405272],[-94.90768128477745,39.323028364087165],[-94.91134328478086,39.340121364103084],[-94.8982812847687,39.380640364140824],[-94.92574828479428,39.3812663641414],[-94.95849428482478,39.41144736416952],[-94.98620428485059,39.43946136419561],[-95.04051128490116,39.462940364217474],[-95.04759928490776,39.48532836423832],[-95.10203728495846,39.53284836428257],[-95.10898828496494,39.56069236430851],[-95.05361328491337,39.586776364332806],[-95.0560172849156,39.62568936436904],[-95.02829228488977,39.66191336440278],[-94.97857028484347,39.68498836442427],[-94.96178628482784,39.73203836446808],[-94.95314228481979,39.73650136447225],[-94.93085628479903,39.72702636446342],[-94.90567828477559,39.726755364463166],[-94.87786028474967,39.73930536447486],[-94.87118528474346,39.75411836448865],[-94.87706728474895,39.76067936449476],[-94.9218002847906,39.75784136449212],[-94.935114284803,39.77542636450849],[-94.93326728480127,39.782773364515336],[-94.89932328476966,39.79377536452559],[-94.88850528475959,39.81740036454759],[-94.89832428476873,39.82833236455777],[-94.92387628479253,39.833131364562234],[-94.9365112848043,39.84938636457738],[-94.93824328480592,39.89608136462087],[-94.96502328483085,39.90082336462528],[-95.02177228488371,39.8969783646217],[-95.03350628489463,39.87784436460388],[-95.06324628492233,39.86653836459335],[-95.10072228495723,39.86986536459645],[-95.15055128500364,39.908054364632015],[-95.19396328504408,39.910180364633995],[-95.20759728505676,39.938176364660066],[-95.24096128508785,39.94210536466373],[-95.30869728515093,39.999407364717094],[-95.3450672851848,40.024974364740906],[-95.37124428520917,40.02875136474442],[-95.39053228522714,40.043750364758395],[-95.41376428524877,40.04811136476245],[-95.40378428523948,40.080379364792506],[-95.38454228522156,40.09536236480646],[-95.39281328522927,40.11541636482514],[-95.42247628525689,40.13174336484035],[-95.46095228529272,40.17399536487969],[-95.46663628529802,40.21325536491625],[-95.4768222853075,40.22685536492892],[-95.547137285373,40.266215364965575],[-95.59553228541806,40.309776365006144],[-95.64682728546583,40.309109365005526],[-95.64555328546464,40.32234636501785],[-95.61793328543892,40.3314183650263],[-95.61620128543731,40.34649736504035],[-95.63418528545407,40.358800365051806],[-95.63681728545652,40.396390365086816],[-95.69536128551104,40.48533836516965],[-95.68497028550136,40.512205365194674],[-95.6580602854763,40.53033236521156],[-95.66294428548085,40.55872936523801],[-95.67569328549271,40.565835365244624],[-95.68741328550364,40.56117036524027],[-95.69206628550796,40.52412936520578],[-95.73703628554985,40.53237336521346],[-95.76341228557442,40.5497073652296],[-95.7674792855782,40.58904836526624],[-95.38255528521971,40.58433436526185],[-95.21742828506592,40.58189236525958],[-94.9206162847895,40.57721836525522],[-94.63987628452804,40.575744365253854],[-94.48523128438401,40.57420536525242],[-94.23839228415413,40.570966365249404],[-94.01805928394893,40.57402236525225],[-93.78630328373309,40.578448365256364],[-93.56291028352504,40.58081336525857],[-93.37027128334563,40.58049136525827],[-93.10093828309479,40.58434736526186],[-92.71781528273797,40.58966736526682],[-92.6464322826715,40.591462365268484],[-92.36151328240615,40.59957636527604],[-92.19317428224937,40.60008836527652],[-91.94637028201952,40.60826636528414],[-91.74171128182891,40.60978436528555],[-91.71697628180587,40.593435365270324],[-91.68995928178072,40.58120236525893],[-91.69208128178269,40.551677365231434],[-91.62253628171793,40.532903365213954],[-91.61686028171263,40.50487336518785],[-91.58602828168392,40.48451936516889],[-91.57938328167774,40.463760365149554],[-91.53320828163473,40.45544136514181],[-91.53884628163998,40.44128836512863],[-91.52960728163137,40.43508636512286],[-91.52769128162959,40.41016936509965],[-91.50037728160414,40.405160365094986],[-91.49031428159478,40.390806365081616],[-91.47703828158241,40.39101236508181],[-91.44874728155607,40.37194636506405],[-91.48684928159155,40.30966836500605],[-91.49908728160295,40.2514223649518],[-91.50670128161003,40.200504364904376],[-91.51628428161897,40.134589364842995],[-91.50416028160768,40.06675736477982],[-91.4874432815921,40.00579836472305],[-91.4473952815548,39.94611036466746],[-91.43054028153911,39.921882364644894],[-91.43420328154252,39.90187436462626],[-91.4511412815583,39.885288364610815],[-91.44934028155662,39.86309436459014],[-91.38186328149378,39.803817364534936],[-91.37356928148606,39.76131836449535],[-91.36723728148016,39.72468536446124],[-91.31781228143413,39.68596236442518],[-91.20338928132756,39.60006736434518],[-91.15632928128373,39.55263936430101],[-91.09375028122545,39.52897336427897],[-91.06452128119822,39.4740303642278],[-91.03647528117212,39.44445836420026],[-90.94802428108973,39.40063236415944],[-90.85062428099903,39.35049936411275],[-90.77946928093276,39.29685036406279],[-90.73820728089433,39.24785836401716],[-90.73246228088898,39.224794363995684],[-90.71831728087581,39.19592136396879],[-90.71686028087444,39.144259363920675],[-90.69052228084992,39.093749363873634],[-90.70771228086592,39.05822736384055],[-90.70619328086451,39.03784136382157],[-90.66899928082987,38.93530336372607],[-90.62733528079107,38.88084536367535],[-90.57044828073809,38.87137736366653],[-90.53054528070092,38.89165936368542],[-90.4699572806445,38.959227363748354],[-90.41318628059163,38.962378363751284],[-90.3198532805047,38.92495636371643],[-90.2790432804667,38.924765363716254],[-90.2440382804341,38.91455736370675],[-90.13292028033061,38.85307936364949],[-90.11322828031227,38.83051536362848],[-90.12183428032029,38.800559363600584],[-90.13528528033281,38.78553336358658],[-90.1635072803591,38.77314736357505],[-90.19668128039,38.72401536352929],[-90.20235028039527,38.70041336350731],[-90.18368928037789,38.65882236346857],[-90.18381928037802,38.61032236342341],[-90.24105728043132,38.5628573633792],[-90.26134428045022,38.53282036335123],[-90.26589928045445,38.518741363338115],[-90.30195828048804,38.42741036325306],[-90.33972528052321,38.39090036321905],[-90.35880728054099,38.36538336319529],[-90.36946628055091,38.32361336315639],[-90.36488928054665,38.234353363073254],[-90.33683528052052,38.188767363030806],[-90.28975328047667,38.16687036301041],[-90.25417728044354,38.122223362968825],[-90.2076442804002,38.08895936293785],[-90.13482728033239,38.054004362905296],[-90.11945328031807,38.0323253628851],[-90.04203528024597,37.99325836284872],[-90.01092228021699,37.96937136282648],[-89.95833828016802,37.96368636282118],[-89.97902328018728,37.91193736277299],[-89.93798328014906,37.87809736274147],[-89.9006592801143,37.87595636273947],[-89.86692128008288,37.89192836275435],[-89.8611532800775,37.90553936276703],[-89.85182228006882,37.90511536276664],[-89.728551279954,37.84104336270696],[-89.69115827991918,37.804846362673246],[-89.67596027990503,37.78402136265386],[-89.66656127989627,37.74550536261798],[-89.58153527981709,37.706155362581335],[-89.5216192797613,37.69484836257081],[-89.5134712797537,37.679890362556876],[-89.51927727975911,37.65042536252943],[-89.5134632797537,37.61597836249735],[-89.5250682797645,37.5720063624564],[-89.49487727973639,37.49177536238168],[-89.45371427969805,37.45323536234579],[-89.42766527967379,37.411068362306516],[-89.43582827968139,37.35576636225501],[-89.46883327971213,37.33945936223982],[-89.50067227974178,37.32949136223054],[-89.51397727975417,37.30501236220775],[-89.51397627975417,37.276452362181146],[-89.48968327973155,37.25605136216214],[-89.46539827970894,37.253781362160026],[-89.46830427971163,37.22431636213258],[-89.44060627968584,37.16536736207769],[-89.42388027967026,37.13725336205151],[-89.38007027962946,37.099133362016005],[-89.38302827963221,37.04926336196956],[-89.31105827956519,37.00973236193274],[-89.28284327953891,36.999257361922986],[-89.26207627951958,37.00873636193181],[-89.26431927952166,37.02778336194955],[-89.309777279564,37.06095936198045],[-89.30336927955803,37.08543436200324],[-89.28431127954028,37.0912943620087],[-89.26413027952148,37.087174362004866],[-89.23775327949691,37.04178336196259],[-89.21012627947118,37.029023361950706],[-89.19358427945578,36.98682236191141],[-89.1299302793965,36.98816536191266],[-89.10721627937535,36.97750436190273],[-89.10503427937331,36.953922361880764],[-89.12965327939624,36.86649436179934],[-89.16656527943061,36.8434763617779],[-89.17353127943711,36.82943936176483],[-89.16444427942865,36.80447636174158],[-89.12590627939275,36.7924683617304],[-89.12554027939241,36.7680883617077],[-89.15143527941653,36.75909736169932],[-89.1772692794406,36.760982361701075],[-89.19636527945838,36.72747836166987],[-89.19756327945949,36.71342536165679],[-89.16789927943186,36.67162836161786],[-89.17716127944048,36.65306236160057],[-89.20018727946193,36.631357361580356],[-89.21012827947119,36.58195436153434],[-89.24168427950057,36.56932836152258],[-89.28349527953952,36.575309361528156],[-89.3223452795757,36.62207636157171],[-89.34239527959437,36.62890836157807],[-89.36362127961414,36.625761361575144],[-89.37395127962377,36.61624736156628],[-89.41821027966498,36.510625361467916],[-89.41478427966179,36.50267936146051]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Arizona","DRAWSEQ":37,"STATE_FIPS":"04","SUB_REGION":"Mountain","STATE_ABBR":"AZ"},"geometry":{"type":"Polygon","coordinates":[[[-114.62106830313698,34.99891436006002],[-114.63378030314881,35.041863360100024],[-114.59563230311329,35.07605836013187],[-114.6359093031508,35.11865536017154],[-114.62644130314197,35.13390636018575],[-114.58261630310116,35.132560360184485],[-114.57225530309151,35.14006736019148],[-114.56104030308107,35.17434636022341],[-114.5595833030797,35.22018336026609],[-114.58789030310608,35.304768360344866],[-114.58958430310764,35.358378360394795],[-114.64539630315963,35.450760360480835],[-114.6722153031846,35.515754360541365],[-114.64979230316374,35.54663736057013],[-114.65313430316684,35.5848333606057],[-114.63986630315449,35.611348360630394],[-114.65406630316771,35.64658436066321],[-114.66848630318114,35.65639936067235],[-114.66509130317797,35.69309936070653],[-114.68882030320007,35.73259536074332],[-114.68273930319441,35.76470336077322],[-114.68986730320105,35.84744236085027],[-114.66246230317552,35.870960360872175],[-114.66160030317472,35.88047336088104],[-114.69927630320981,35.91161236091004],[-114.7362123032442,35.987648360980856],[-114.71767330322695,36.036758361026585],[-114.72896630323746,36.058753361047074],[-114.7281503032367,36.08596236107242],[-114.71276130322238,36.10518136109032],[-114.62161030313749,36.141966361124574],[-114.59893530311636,36.13833536112119],[-114.5305733030527,36.15509036113679],[-114.46661330299312,36.1247113611085],[-114.44394530297203,36.1210533611051],[-114.38080330291321,36.15099136113298],[-114.34423430287916,36.137480361120396],[-114.31609530285294,36.11143836109614],[-114.30385730284155,36.08710836107348],[-114.30758730284502,36.06223336105032],[-114.233472302776,36.01833136100943],[-114.20676930275113,36.017255361008424],[-114.12902330267872,36.04173036103122],[-114.10777530265894,36.12109036110513],[-114.04510530260056,36.19397836117301],[-114.03739230259339,36.21602336119354],[-114.04371630259928,36.84184936177639],[-114.04393930259948,36.99653836192046],[-112.89998330153409,36.99622736192016],[-112.54252130120118,36.99799436192181],[-112.23725830091688,36.995492361919474],[-111.3561643000963,37.001709361925265],[-110.7400632995225,37.002488361926],[-110.48408929928411,37.003926361927334],[-110.45223629925445,36.991746361915986],[-109.99707629883055,36.99206736191629],[-109.0484802979471,36.99664136192055],[-109.0478462979465,35.99666436098925],[-109.04664129794538,34.95464636001879],[-109.04865229794726,34.59178035968085],[-109.05034929794884,33.7833023589279],[-109.050526297949,33.20516435838946],[-109.05134629794976,32.779550357993074],[-109.04949529794804,32.44204435767875],[-109.04561529794442,31.34345335665561],[-110.45257829925477,31.33766035665021],[-111.07196429983162,31.335634356648328],[-111.36952130010873,31.431531356737636],[-113.32911130193375,32.04362135730769],[-114.82176130332388,32.487169357720774],[-114.80939430331236,32.6160443578408],[-114.72204930323102,32.720857357938414],[-114.71269530322232,32.7350133579516],[-114.69404030320493,32.74142535795757],[-114.60394230312102,32.72628535794347],[-114.60352230312063,32.73588635795241],[-114.57195930309123,32.73743935795386],[-114.57221030309148,32.74882935796447],[-114.56075130308079,32.74893635796457],[-114.56158230308156,32.760753357975574],[-114.54300430306427,32.76074935797557],[-114.54318730306444,32.77123235798533],[-114.53009530305225,32.7714113579855],[-114.53507730305688,32.788047358000995],[-114.52621930304863,32.80991235802135],[-114.4614363029883,32.84542235805443],[-114.47644430300228,32.9359083581387],[-114.46838730299478,32.9777893581777],[-114.52062730304343,33.02770735822419],[-114.55908930307925,33.03678235823264],[-114.6099253031266,33.027002358223534],[-114.63396730314898,33.03356735822965],[-114.6451593031594,33.044412358239754],[-114.66395130317692,33.038922358234636],[-114.71135530322107,33.09538235828722],[-114.70946330321931,33.122375358312354],[-114.6781203031901,33.16725035835415],[-114.6800513031919,33.224595358407555],[-114.68771130319904,33.23925835842121],[-114.67769330318971,33.268016358447994],[-114.73542730324348,33.3057083584831],[-114.70360330321384,33.352418358526606],[-114.7249363032337,33.41105935858121],[-114.64509230315934,33.419116358588724],[-114.63057330314584,33.439425358607636],[-114.621089303137,33.468599358634805],[-114.59808630311556,33.48612735865113],[-114.5870613031053,33.50944535867285],[-114.52942030305162,33.56007335872],[-114.5402473030617,33.58050735873903],[-114.52717030304953,33.622136358777794],[-114.52526330304775,33.66550435881818],[-114.53643330305815,33.682735358834236],[-114.49567630302019,33.70836935885811],[-114.5102873030338,33.74320035889055],[-114.50455830302846,33.7717143589171],[-114.5211223030439,33.82603135896769],[-114.51172230303513,33.84196535898253],[-114.52096230304375,33.862926359002046],[-114.49818830302253,33.925036359059895],[-114.5256323030481,33.95241335908539],[-114.51820830304118,33.96506335909717],[-114.42898030295808,34.02984435915751],[-114.42402930295347,34.07833235920266],[-114.41016630294055,34.10265435922531],[-114.32279930285918,34.1412973592613],[-114.28536830282434,34.17123135928918],[-114.23577630277813,34.186222359303144],[-114.14991230269818,34.266979359378354],[-114.12523030267519,34.272621359383606],[-114.13412730268348,34.31454835942266],[-114.15341530270143,34.33644735944305],[-114.18208030272814,34.36520635946984],[-114.2578423027987,34.40548835950735],[-114.2833943028225,34.41206935951348],[-114.30286530284062,34.43575435953554],[-114.33263630286835,34.454873359553346],[-114.3765073029092,34.45967935955782],[-114.38386230291606,34.47708535957403],[-114.3768283029095,34.536563359629426],[-114.40974230294016,34.58372335967334],[-114.43430230296303,34.59896335968754],[-114.42227030295183,34.61089535969865],[-114.46563730299222,34.70987335979083],[-114.49780430302218,34.74475735982332],[-114.52555330304801,34.74891135982719],[-114.54204030306337,34.759958359837476],[-114.5702173030896,34.83186035990444],[-114.62726330314274,34.875533359945116],[-114.63047530314574,34.919501359986064],[-114.62100730313692,34.943609360008516],[-114.63227630314742,34.997651360058846],[-114.62106830313698,34.99891436006002]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Oklahoma","DRAWSEQ":38,"STATE_FIPS":"40","SUB_REGION":"West South Central","STATE_ABBR":"OK"},"geometry":{"type":"Polygon","coordinates":[[[-94.47669128437606,33.63208135878706],[-94.50081628439852,33.62316235877876],[-94.5107652844078,33.63092535878598],[-94.52526128442129,33.621136358776866],[-94.51819628441471,33.643124358797344],[-94.5504012844447,33.63280935878774],[-94.56235628445584,33.635650358790386],[-94.56240228445589,33.64294435879717],[-94.54213828443702,33.64836135880222],[-94.54562528444026,33.661735358814674],[-94.57666928446918,33.65227135880586],[-94.58859428448028,33.65556235880893],[-94.58536728447727,33.66224635881515],[-94.56541628445869,33.66312735881597],[-94.56093028445451,33.67202735882426],[-94.57871428447108,33.67058535882292],[-94.58531428447722,33.67909535883084],[-94.60115328449197,33.66572135881839],[-94.63194628452065,33.68401135883542],[-94.6389732845272,33.670217358822576],[-94.65874828454561,33.663850358816646],[-94.66963628455575,33.66617335881881],[-94.66816328455438,33.67157135882384],[-94.64453528453238,33.677762358829604],[-94.65568928454276,33.69240335884324],[-94.66866728455486,33.69664835884719],[-94.69119728457584,33.690399358841375],[-94.74186528462302,33.701377358851595],[-94.75469028463496,33.707881358857655],[-94.74232328462345,33.71915735886816],[-94.76293028464264,33.716906358866055],[-94.74998328463059,33.7368153588846],[-94.78337028466167,33.73377435888177],[-94.78224128466063,33.74237635888978],[-94.764388284644,33.75295135889963],[-94.783722284662,33.753370358900014],[-94.80343728468037,33.73969135888728],[-94.81937528469521,33.74951335889642],[-94.85809628473127,33.74942935889635],[-94.8818552847534,33.77507235892023],[-94.91409928478343,33.78970535893386],[-94.90876628477847,33.80358635894679],[-94.91845628478748,33.81630435895863],[-94.94062028480813,33.815915358958264],[-94.94010928480765,33.84093235898157],[-94.9601292848263,33.84818435898832],[-94.96892728483449,33.86632235900521],[-94.98950428485365,33.85629035899587],[-95.01299628487553,33.870053359008686],[-95.03758628489844,33.866559359005436],[-95.04308728490356,33.88455335902219],[-95.06336628492244,33.8968013590336],[-95.06370228492275,33.917756359053115],[-95.0838292849415,33.88856935902593],[-95.08994028494719,33.89702335903381],[-95.08249428494025,33.91856035905386],[-95.09558628495245,33.921845359056924],[-95.11945228497468,33.912388359048116],[-95.12690628498162,33.91725235905265],[-95.12819628498282,33.94097535907474],[-95.14854428500178,33.94365335907723],[-95.2342702850816,33.96496935909708],[-95.25152128509768,33.936550359070615],[-95.2512232850974,33.905128359041356],[-95.26384928510916,33.89790735903463],[-95.27758328512195,33.91804535905338],[-95.2866622851304,33.88700835902448],[-95.30218828514487,33.88673035902422],[-95.33646028517678,33.89722035903399],[-95.33027228517102,33.871024359009596],[-95.45184128528425,33.86585835900478],[-95.46835928529963,33.88653735902404],[-95.49909128532825,33.88182235901965],[-95.51312228534131,33.89784035903457],[-95.54427428537032,33.8858463590234],[-95.54773028537355,33.8932623590303],[-95.52697028535421,33.89792035903464],[-95.51981328534754,33.90674735904286],[-95.54655528537245,33.90413735904043],[-95.56301328538778,33.93617735907027],[-95.6063122854281,33.94465635907817],[-95.61507028543626,33.936794359070845],[-95.61322428543454,33.92034135905552],[-95.63373228545363,33.9202073590554],[-95.69995028551531,33.89492635903186],[-95.74710928555923,33.90349735903983],[-95.76094228557211,33.893541359030564],[-95.76449728557542,33.879106359017115],[-95.7687612855794,33.85150335899141],[-95.7957252856045,33.864774359003775],[-95.82622128563291,33.84312535898361],[-95.84680528565208,33.84113835898176],[-95.93332828573266,33.89062835902785],[-95.94332328574197,33.89007135902733],[-95.95901628575659,33.86513935900411],[-95.97764828577394,33.858051358997514],[-95.99446428578959,33.87547635901374],[-96.00287228579742,33.873489359011884],[-96.00204828579666,33.8570783589966],[-96.01432428580809,33.84430735898471],[-96.0270042858199,33.856121358995715],[-96.04823028583967,33.84137735898198],[-96.09178028588023,33.84467735898505],[-96.10970128589692,33.82935735897079],[-96.14922328593373,33.835690358976684],[-96.16946428595257,33.829083358970536],[-96.18338828596555,33.815892358958244],[-96.1809852859633,33.80853435895139],[-96.1547772859389,33.824044358965835],[-96.1416772859267,33.820420358962465],[-96.16157528594523,33.79832935894189],[-96.16907428595222,33.769457358915],[-96.18728628596918,33.758684358904965],[-96.21280728599294,33.756792358903205],[-96.27833828605398,33.77348935891875],[-96.28994328606478,33.76203435890809],[-96.30105028607512,33.7141533588635],[-96.31653828608955,33.70190435885209],[-96.34785028611871,33.705631358855555],[-96.37108328614035,33.74049735888803],[-96.41973028618565,33.78842835893267],[-96.4876412862489,33.77823235892318],[-96.50101628626136,33.78819235893245],[-96.51084328627051,33.81578735895815],[-96.56240428631853,33.82552235896721],[-96.60146828635492,33.84305835898355],[-96.61443928636699,33.86300135900212],[-96.58476028633935,33.89624535903308],[-96.6665122864155,33.913644359049286],[-96.67797928642617,33.904424359040696],[-96.69365728644077,33.84800635898816],[-96.71195328645781,33.83397235897509],[-96.7491022864924,33.831840358973096],[-96.79787128653783,33.870051359008684],[-96.81439728655322,33.871871359010385],[-96.84429028658106,33.85813435899759],[-96.8612962865969,33.861781359000986],[-96.87921928661359,33.88410435902178],[-96.88313328661724,33.92469235905958],[-96.89873628663176,33.95012735908326],[-96.92985028666074,33.9618733590942],[-96.93648728666692,33.947949359081235],[-96.96847128669671,33.93742135907143],[-96.98814828671503,33.944303359077836],[-96.98799528671489,33.876525359014714],[-97.0061382867318,33.850616358990585],[-97.02588328675019,33.840664358981314],[-97.07118828679238,33.856830358996376],[-97.08246528680287,33.85120335899113],[-97.07853528679922,33.83791335897875],[-97.05031328677293,33.823551358965375],[-97.08795828680799,33.80767535895059],[-97.08375428680408,33.74251835888991],[-97.09078828681062,33.731776358879905],[-97.11585228683397,33.72603835887456],[-97.15276428686835,33.728773358877106],[-97.18945528690251,33.752874358899554],[-97.20861328692037,33.81975235896184],[-97.19530728690796,33.83626135897722],[-97.16888528688337,33.84789635898805],[-97.16446028687925,33.86325035900235],[-97.18805928690122,33.89930535903593],[-97.21162628692316,33.90579035904197],[-97.24635628695552,33.89433935903131],[-97.25098028695982,33.8730723590115],[-97.26420228697214,33.858832358998235],[-97.27257228697992,33.872675359011126],[-97.31438228701887,33.8959413590328],[-97.31525228701967,33.8704943590091],[-97.34210028704469,33.8620173590012],[-97.36361628706472,33.83112735897244],[-97.4104162871083,33.820812358962826],[-97.453035287148,33.83631535897727],[-97.45736028715203,33.89053235902776],[-97.46306028715733,33.90248335903889],[-97.47783128717109,33.90780835904385],[-97.51850428720897,33.916871359052294],[-97.55489028724286,33.90400435904031],[-97.57597028726249,33.90263135903903],[-97.59265628727803,33.917985359053326],[-97.60048428728533,33.969535359101336],[-97.67137128735133,33.98871135911919],[-97.70456728738226,33.9716443591033],[-97.72932628740531,33.93939135907326],[-97.75667028743078,33.93219735906656],[-97.7905152874623,33.890556359027784],[-97.85285728752037,33.857171358996695],[-97.87006228753638,33.85521435899487],[-97.909377287573,33.87412335901248],[-97.95504828761554,33.88357935902128],[-97.9766932876357,33.902603359039006],[-97.97644228763546,33.9121513590479],[-97.95099728761176,33.932616359066955],[-97.96331128762323,33.948748359081975],[-97.94806728760904,33.95984935909232],[-97.95053928761133,33.97125835910294],[-97.98299528764156,34.001382359131],[-98.02380628767956,33.98708135911768],[-98.05587328770943,33.9898963591203],[-98.08652228773798,34.00541035913475],[-98.11100528776078,34.06991535919482],[-98.09444128774535,34.134649359255114],[-98.11518628776467,34.149079359268555],[-98.13718228778517,34.138524359258724],[-98.17316428781866,34.115461359237244],[-98.27732428791568,34.12296435924423],[-98.32081428795618,34.13951235925964],[-98.35073028798404,34.14221335926216],[-98.38458328801556,34.115873359237625],[-98.39128228802181,34.08732435921104],[-98.40746428803688,34.08254835920659],[-98.42167028805011,34.06592435919111],[-98.44851928807512,34.05446935918044],[-98.49985228812292,34.06650835919165],[-98.557914288177,34.1054283592279],[-98.57666828819445,34.14202235926198],[-98.60758428822325,34.1514893592708],[-98.62633028824071,34.15852735927735],[-98.662059288274,34.147129359266735],[-98.68255228829307,34.150089359269494],[-98.70563228831458,34.13080635925154],[-98.77887728838279,34.132053359252694],[-98.81141028841309,34.146026359265704],[-98.89168928848785,34.16091035927957],[-98.95285728854482,34.194653359311],[-98.9965442885855,34.209583359324895],[-99.03557028862184,34.199009359315056],[-99.07878428866209,34.208446359323844],[-99.1283002887082,34.20155635931742],[-99.1765112887531,34.21281635932791],[-99.19084028876645,34.22382135933816],[-99.2049552887796,34.255730359367874],[-99.19666328877187,34.305205359413954],[-99.20584928878043,34.33207535943898],[-99.25446528882571,34.36829435947271],[-99.26753528883788,34.39836435950072],[-99.32365928889016,34.41278735951415],[-99.36456928892825,34.45027235954906],[-99.39315728895488,34.42907035952931],[-99.39452228895615,34.39682235949928],[-99.41032328897086,34.36918535947354],[-99.43874328899733,34.36478335946944],[-99.47980628903558,34.38360035948696],[-99.50250428905672,34.4041453595061],[-99.55423228910489,34.41525635951645],[-99.57821928912723,34.40898835951061],[-99.58558928913409,34.384934359488206],[-99.60181728914921,34.36863435947303],[-99.68527728922693,34.3775203594813],[-99.77806028931334,34.444064359543276],[-99.83030828936201,34.50184635959709],[-99.86094928939055,34.51869435961278],[-99.88097728940919,34.5482423596403],[-99.93228728945698,34.579173359669106],[-99.94512028946893,34.57963435966954],[-99.97248028949441,34.56192635965304],[-99.99647528951677,34.56238435965347],[-99.99926028951936,34.74724335982563],[-99.99645528951675,35.03105136008995],[-99.99757028951778,35.18223536023075],[-99.99474328951514,35.424622360456496],[-100.0003922895204,35.61885636063739],[-99.99812328951829,35.88383736088417],[-99.99755328951777,36.05759136104599],[-100.00155028952149,36.492554361451084],[-100.00727328952682,36.493912361452345],[-100.54983929003212,36.48947936144822],[-100.95734129041163,36.48963736144837],[-101.09010229053528,36.48805036144689],[-101.62075529102948,36.4920313614506],[-102.03465829141497,36.492981361451484],[-102.16567329153699,36.49023436144893],[-102.9974012923116,36.49237036145091],[-102.99770929231188,36.9985233619223],[-102.03720729141735,36.98899436191343],[-102.02451929140553,36.988875361913315],[-101.55367629096702,36.9966933619206],[-101.07160429051805,36.99746636192132],[-100.95058729040535,36.99666136192057],[-100.63424529011073,36.99783236192166],[-100.08857428960253,36.997652361921496],[-99.99926128951935,36.99541736191941],[-99.54463928909595,36.99546336191945],[-99.43747328899615,36.99455836191861],[-98.99951628858827,36.998072361921885],[-98.54021928816051,36.99837636192217],[-98.3471432879807,36.9990613619228],[-98.10452928775474,36.99867136192244],[-97.80425028747509,36.99856736192234],[-97.46540528715951,36.99646736192039],[-97.13769328685432,36.9998083619235],[-96.74869628649203,37.00016636192383],[-96.51918728627828,37.000577361924215],[-96.00604928580039,36.99833336192212],[-95.9579612857556,37.00008336192376],[-95.78574828559522,36.99811436192192],[-95.52601928535333,37.00101836192462],[-95.40662228524212,37.00061536192425],[-95.07193128493041,37.00147836192505],[-95.03274528489392,37.0007793619244],[-94.62037928450988,36.99704636192092],[-94.62168428451109,36.76360736170352],[-94.62107328451053,36.67054336161685],[-94.61725728450698,36.489414361448155],[-94.60745328449784,36.478790361438264],[-94.55311328444724,36.16452536114558],[-94.54241728443728,36.10683536109185],[-94.48593528438467,35.760310360769125],[-94.46848528436841,35.64108836065809],[-94.42855228433123,35.40054636043407],[-94.43932228434126,34.929151359995046],[-94.44596128434745,34.7356083598148],[-94.45262428435365,34.508432359603226],[-94.46169128436209,34.19676535931296],[-94.46858528436852,33.93931135907319],[-94.47669128437606,33.63208135878706]]]}},
{"type":"Feature","properties":{"STATE_NAME":"North Carolina","DRAWSEQ":39,"STATE_FIPS":"37","SUB_REGION":"South Atlantic","STATE_ABBR":"NC"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-84.32377327492041,34.989090360050874],[-84.29095927488986,35.21062236025719],[-84.22586327482924,35.261683360304744],[-84.17964227478619,35.24106936028555],[-84.10156027471346,35.2456333602898],[-84.04268927465864,35.27265836031496],[-84.03077127464753,35.29260536033354],[-84.029115274646,35.325374360364066],[-84.00621727462467,35.372943360408364],[-84.01255627463057,35.40770636044074],[-83.9546082745766,35.45554436048529],[-83.90991227453497,35.47656436050487],[-83.88112527450816,35.51067236053663],[-83.83009827446065,35.51914936054453],[-83.77577427441005,35.55269336057577],[-83.67276627431411,35.56506236058729],[-83.61375027425916,35.57183136059359],[-83.56092227420996,35.55526836057817],[-83.50568327415851,35.559645360582245],[-83.45817327411426,35.59737336061738],[-83.38697227404795,35.6253133606434],[-83.34290327400691,35.65335536066952],[-83.29829127396536,35.65642336067238],[-83.25899927392877,35.69110636070468],[-83.25317727392334,35.70080336071371],[-83.24372427391454,35.718313360730015],[-83.18522027386005,35.72898336073995],[-83.14353327382123,35.762782360771425],[-83.1180572737975,35.76390736077248],[-83.05982827374328,35.78267636078996],[-82.98687427367534,35.774091360781966],[-82.96261927365275,35.7919523607986],[-82.90668927360066,35.87231736087344],[-82.9139382736074,35.927969360925275],[-82.89584227359056,35.94846236094436],[-82.85613727355357,35.94752836094349],[-82.80853527350924,35.92097536091876],[-82.77630827347923,35.95667736095201],[-82.77346327347658,35.98760736098082],[-82.76309527346692,35.99965036099203],[-82.64375527335578,36.051829361040625],[-82.62790927334102,36.05444636104306],[-82.604264273319,36.04309436103249],[-82.59209427330767,36.02255636101336],[-82.60566627332031,36.00365436099575],[-82.59916527331426,35.963405360958276],[-82.5540052732722,35.95621636095158],[-82.50679427322822,35.97265036096688],[-82.47505527319866,35.9932843609861],[-82.40828327313648,36.0754263610626],[-82.37371327310429,36.098807361084376],[-82.3117832730466,36.122260361106214],[-82.26216027300039,36.120487361104566],[-82.20758427294956,36.14712736112938],[-82.15390127289956,36.1397373611225],[-82.11792527286606,36.09637436108211],[-82.07760227282851,36.10026036108573],[-82.02029527277514,36.12983436111327],[-81.93295127269378,36.2634443612377],[-81.91099427267335,36.290875361263254],[-81.83041027259829,36.33477936130414],[-81.73032427250509,36.329467361299194],[-81.70929027248549,36.33385036130328],[-81.7402132725143,36.36198236132948],[-81.74090827251494,36.39190736135735],[-81.69811527247508,36.47190036143185],[-81.70263227247929,36.51946036147614],[-81.66983527244875,36.58976736154162],[-81.34512127214633,36.572988361525994],[-80.9032402717348,36.56534236151887],[-80.837953271674,36.56356836151722],[-80.61084127146248,36.55743036151151],[-80.4350922712988,36.551181361505684],[-80.04786327093817,36.54727236150204],[-80.02382227091577,36.54516336150007],[-79.71720127063021,36.548028361502745],[-79.51004827043728,36.54779536150253],[-79.21680327016418,36.54992136150451],[-79.14406327009644,36.54619836150104],[-78.79642826977268,36.54367436149869],[-78.73711626971743,36.54621436150106],[-78.45852926945798,36.54162336149678],[-78.32096926932986,36.54567536150056],[-78.0513812690788,36.55262136150702],[-77.89856826893647,36.55309236150747],[-77.76363826881082,36.553589361507925],[-77.31974626839741,36.55406836150837],[-77.1770422682645,36.556437361510575],[-76.92381626802867,36.554298361508586],[-76.92131426802634,36.5543093615086],[-76.56325526769287,36.555404361509616],[-76.49722826763139,36.555964361510135],[-76.32991626747555,36.556208361510365],[-76.12705026728662,36.5573153615114],[-76.04561126721077,36.5571063615112],[-76.03286126719891,36.51452736147155],[-76.09071726725278,36.50372036146148],[-75.97572126714569,36.43637036139876],[-75.96941126713982,36.41527536137911],[-76.00125826716948,36.419070361382644],[-75.95090126712257,36.365628361332874],[-75.92776826710103,36.42340136138668],[-75.92423426709773,36.35110636131935],[-75.79968726698175,36.11297936109757],[-75.79848026698062,36.072982361060326],[-75.85479726703306,36.10582936109091],[-75.91340626708765,36.24496136122049],[-75.9571552671284,36.25961236123413],[-75.94157626711389,36.29449736126663],[-76.00861926717633,36.319753361290154],[-75.9568262671281,36.19393136117297],[-75.98098126715058,36.169886361150574],[-76.18282126733857,36.31539536128609],[-76.21855826737185,36.29676436126874],[-76.11235826727294,36.17457836115494],[-76.14158726730017,36.147848361130045],[-76.23463326738681,36.163519361144644],[-76.29858526744638,36.214387361192024],[-76.27516126742456,36.11053036109529],[-76.48019226761551,36.079952361066816],[-76.42008526755953,36.058766361047084],[-76.52267326765508,36.00732936099918],[-76.59366626772119,36.01029336100194],[-76.64868426777244,36.0658683610537],[-76.63287526775771,36.03727736102707],[-76.68982326781075,36.04977036103871],[-76.72618026784461,36.15698036113855],[-76.68840826780944,36.29467336126679],[-76.7763182678913,36.35848436132622],[-76.92376126802861,36.39259836135799],[-76.74102226785843,36.31532236128602],[-76.7071682678269,36.266288361240356],[-76.7447362678619,36.23407336121035],[-76.76034526787643,36.144750361127166],[-76.6934312678141,35.99313036098596],[-76.74079426785822,35.93678736093348],[-76.69688626781732,35.94170436093806],[-76.40912826754933,35.97762936097152],[-76.37113926751395,35.9325053609295],[-76.21342026736706,35.97703736097097],[-76.08928226725145,35.963073360957964],[-76.02568726719223,35.920585360918395],[-76.07555226723866,35.756964360766005],[-76.04270426720807,35.68401436069807],[-76.16694626732378,35.697007360710174],[-76.1043822672655,35.66380536067925],[-76.02084426718771,35.66925936068433],[-75.98749126715666,35.89286736089258],[-75.8176812669985,35.923684360921285],[-75.74858426693415,35.869508360870825],[-75.7289892669159,35.66534636068069],[-75.77867326696217,35.578859360600134],[-75.8911222670669,35.6314373606491],[-76.0526082672173,35.41477536044732],[-76.1812522673371,35.34170236037927],[-76.49845126763252,35.41638336044882],[-76.53340226766507,35.45036536048047],[-76.45808226759492,35.504591360530966],[-76.44617326758383,35.55103136057422],[-76.51859526765128,35.57781036059916],[-76.49218826762669,35.541952360565766],[-76.63785326776235,35.520501360545786],[-76.62842126775357,35.438063360469016],[-76.70502926782491,35.41210136044484],[-77.10344426819596,35.55034836057358],[-76.98285426808366,35.436663360467705],[-76.69455226781515,35.35059436038755],[-76.61416726774029,35.27308636031536],[-76.59085926771859,35.31224736035183],[-76.5406272676718,35.30385436034402],[-76.50677526764026,35.24893336029287],[-76.63974126776411,35.17268636022186],[-76.60487526773163,35.13872636019023],[-76.62387326774933,35.06451336012111],[-76.67766226779942,35.02424836008362],[-76.84912526795911,34.98238036004462],[-76.94115526804482,35.02758736008673],[-76.94291026804645,35.07019436012641],[-77.0475522681439,35.09231536014701],[-77.1043472681968,35.08814536014312],[-77.11026026820231,35.06619536012268],[-77.00085826810042,35.053046360110436],[-76.91277326801838,34.93663036000201],[-76.64670126777058,34.906495359973945],[-76.66971226779202,34.97015836003324],[-76.52942626766136,34.974797360037556],[-76.44467426758243,35.0168213600767],[-76.4236992675629,34.94641036001112],[-76.36365226750698,34.9432753600082],[-76.32904426747474,34.97612036003879],[-76.31434826746106,34.94897936001352],[-76.4695462676056,34.78522335986101],[-76.62496326775035,34.71991535980018],[-77.05019926814637,34.69907935978078],[-77.14863026823805,34.7644933598417],[-77.12906726821983,34.68507535976774],[-77.15627426824517,34.66079935974513],[-77.53832626860098,34.457175359555485],[-77.5864552686458,34.42110435952189],[-77.6094202686672,34.43521135953503],[-77.60230926866056,34.41279635951416],[-77.75022826879832,34.305215359413964],[-77.86409426890437,34.19290835930937],[-77.89410926893233,34.0693513591943],[-77.92646726896247,34.062207359187646],[-77.9604422689941,34.189413359306116],[-77.95823626899205,33.99275335912296],[-78.0345182690631,33.91446535905005],[-78.5794532695706,33.88216435901997],[-78.65545326964138,33.94884535908207],[-79.07425727003142,34.30473835941352],[-79.44691327037849,34.619222359706406],[-79.45574127038671,34.634252359720406],[-79.66728227058373,34.80082035987553],[-79.68573827060091,34.80541235987981],[-79.91973627081885,34.80807435988228],[-80.32506527119634,34.814916359888656],[-80.56133527141637,34.81537935988909],[-80.79985627163852,34.81626035988991],[-80.7854442716251,34.94078836000588],[-80.83995927167587,35.00216636006305],[-80.89451027172667,35.0598803601168],[-80.92759227175748,35.10139436015547],[-81.03968527186187,35.03734536009581],[-81.06535027188578,35.06662536012308],[-81.02824027185122,35.10555136015934],[-81.04883927187039,35.132153360184105],[-81.04909927187065,35.151672360202284],[-81.32262527212538,35.16389136021367],[-81.36198027216203,35.16298636021283],[-81.76518127253755,35.18259636023109],[-81.87041627263555,35.183237360231686],[-81.97127227272948,35.18840036023649],[-82.21001027295182,35.193241360241004],[-82.2781652730153,35.19512136024275],[-82.32060927305483,35.184303360232676],[-82.35070027308285,35.192788360240584],[-82.35996227309148,35.183064360231526],[-82.37121627310196,35.18283936023131],[-82.38945027311894,35.20835636025508],[-82.43776127316393,35.16967636021906],[-82.46658627319077,35.17361736022272],[-82.5244792732447,35.154677360205085],[-82.56987627328698,35.14960736020036],[-82.65434427336564,35.11957436017239],[-82.68590027339503,35.12158036017426],[-82.68788427339688,35.09791836015222],[-82.69720827340556,35.09134936014611],[-82.77120127347447,35.08553736014069],[-82.88755627358283,35.0554733601127],[-83.00714627369422,35.02429336008366],[-83.10615727378642,35.00036636006138],[-83.51288727416522,34.99211536005369],[-83.54929727419913,34.98962836005137],[-83.93789927456105,34.98947736005123],[-83.98845427460813,34.989151360050926],[-84.11815227472891,34.98830736005014],[-84.32377327492041,34.989090360050874]]],[[[-76.02681926719328,36.55687036151098],[-75.99831426716673,36.556805361510925],[-75.91156426708594,36.54268436149777],[-75.92445026709794,36.474131361433926],[-75.9769272671468,36.47817036143769],[-75.97593626714588,36.518079361474854],[-76.02681926719328,36.55687036151098]]],[[[-75.90163126707668,36.5563523615105],[-75.8778112670545,36.5560283615102],[-75.7727882669567,36.229418361206015],[-75.54457826674415,35.788538360795414],[-75.7023592668911,36.05002836103895],[-75.74049226692661,36.05048836103938],[-75.78280626696602,36.22535536120223],[-75.90163126707668,36.5563523615105]]],[[[-75.49082426669409,35.67067836068565],[-75.53323326673359,35.769034360777255],[-75.4565802666622,35.6175773606362],[-75.52589326672675,35.22809436027346],[-75.74889826693445,35.190001360237986],[-75.69117126688069,35.235164360280045],[-75.52108026672227,35.281534360323235],[-75.47502026667938,35.56467536058693],[-75.49082426669409,35.67067836068565]]],[[[-76.01662826718379,35.06960536012586],[-75.97531326714531,35.11635536016939],[-75.85354926703191,35.16745536021699],[-75.76331126694787,35.19245836024027],[-75.81115026699241,35.164194360213955],[-75.90356226707848,35.132664360184584],[-76.00249726717063,35.06960536012586],[-76.01662826718379,35.06960536012586]]],[[[-76.54391926767487,34.587994359677324],[-76.55479126768499,34.61082435969858],[-76.53739526766878,34.61408635970162],[-76.48412526761918,34.69779535977958],[-76.43193826757057,34.760848359838306],[-76.37431826751691,34.81303335988691],[-76.28733926743591,34.87717535994664],[-76.468904267605,34.693446359775535],[-76.54391926767487,34.587994359677324]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Tennessee","DRAWSEQ":40,"STATE_FIPS":"47","SUB_REGION":"East South Central","STATE_ABBR":"TN"},"geometry":{"type":"Polygon","coordinates":[[[-84.32377327492041,34.989090360050874],[-84.61868427519508,34.988759360050565],[-84.77113427533706,34.99075736005243],[-84.80041727536432,34.99283236005436],[-84.96785727552027,34.992683360054215],[-84.97279327552486,34.99262936005417],[-85.26771727579954,34.98914936005093],[-85.35994427588543,34.989978360051694],[-85.4673842759855,34.99012336005183],[-85.60896027611734,34.99016436005187],[-85.86956727636004,34.99238436005394],[-86.30350027676418,34.99546436005681],[-86.31305227677308,34.99527336005663],[-86.78237227721017,34.997075360058304],[-86.83342227725771,34.9982463600594],[-87.20758827760618,35.007960360068445],[-87.22276427762031,35.00734636006787],[-87.60781327797892,35.010546360070855],[-87.9860782783312,35.016033360075966],[-88.19496227852575,35.013544360073645],[-88.19399327852484,35.004453360065185],[-88.35172727867175,35.00383236006461],[-88.383146278701,35.00504136006573],[-88.7850432790753,35.003182360063995],[-88.81254827910091,35.00243836006331],[-89.00619627928127,35.00023436006125],[-89.19813427946002,35.000883360061856],[-89.34237327959436,34.99980536006085],[-89.64655827987765,35.000733360061716],[-89.7172702799435,34.999261360060345],[-90.30544828049129,35.00078836006176],[-90.29190628047867,35.048551360106245],[-90.19580428038917,35.04099036009921],[-90.16917628036437,35.0779193601336],[-90.178439280373,35.108738360162306],[-90.16456828036009,35.12970336018183],[-90.14382328034077,35.136626360188274],[-90.08301628028413,35.12514036017758],[-90.064628280267,35.14747436019838],[-90.06252228026504,35.167005360216564],[-90.07339428027517,35.19192236023977],[-90.06905328027112,35.21282636025924],[-90.09019528029081,35.254486360298046],[-90.10603428030556,35.263935360306846],[-90.15221628034858,35.26414536030704],[-90.169840280365,35.282653360324275],[-90.1570832803531,35.30633136034633],[-90.10643828030595,35.31477236035418],[-90.09879328029882,35.34567836038297],[-90.10571328030527,35.366067360401956],[-90.08722628028805,35.38159336041642],[-90.0755682802772,35.40661336043972],[-90.08525028028622,35.418365360450665],[-90.11233528031144,35.41777436045011],[-90.13256228033028,35.40768536044072],[-90.14026028033744,35.38313036041785],[-90.1679102803632,35.38433936041898],[-90.17277028036771,35.42380136045573],[-90.13736828033475,35.44260736047325],[-90.10205128030186,35.47365136050216],[-90.08232028028348,35.47828936050647],[-90.0749352802766,35.47242636050102],[-90.07402728027576,35.42659036045833],[-90.06038528026305,35.41349436044613],[-90.04687328025047,35.41718736044957],[-89.99965328020649,35.44553736047597],[-90.04190628024584,35.51252136053836],[-90.040991280245,35.54292836056668],[-90.03314028023767,35.552495360575584],[-89.9896742801972,35.56175636058421],[-89.96236028017177,35.532373360556846],[-89.94763428015804,35.52698236055183],[-89.93126128014279,35.529313360554],[-89.92174728013394,35.546140360569666],[-89.95811828016781,35.57867436059996],[-89.9571332801669,35.60318336062279],[-89.87752628009275,35.633414360650946],[-89.86392228008009,35.6298253606476],[-89.84928128006645,35.64530136066202],[-89.85733028007394,35.67114136068608],[-89.86526528008133,35.673384360688175],[-89.89348728010762,35.656050360672026],[-89.92982728014147,35.676344360690926],[-89.95212128016223,35.712564360724656],[-89.95112128016129,35.734345360744946],[-89.90986828012288,35.754914360764104],[-89.85995528007639,35.74826936075792],[-89.82712428004581,35.7583473607673],[-89.79998628002053,35.774300360782156],[-89.79046428001168,35.805630360811335],[-89.75987727998319,35.81749736082239],[-89.73601927996097,35.80711436081272],[-89.70090827992827,35.827590360831785],[-89.70151827992883,35.84211336084531],[-89.75779427998124,35.87149336087268],[-89.76635527998921,35.884177360884486],[-89.76299027998608,35.89688736089633],[-89.73805627996286,35.915087360913276],[-89.71476327994117,35.91150136090994],[-89.66472827989458,35.885721360885924],[-89.64941627988031,35.89436236089397],[-89.64547927987664,35.91387336091215],[-89.66427127989415,35.937894360934514],[-89.71321527993973,35.96639736096106],[-89.72183627994775,35.99995136099231],[-89.68892227991711,36.025867361016445],[-89.67824927990716,36.08304036106969],[-89.66746827989712,36.09938636108492],[-89.5895012798245,36.1298613611133],[-89.58953227982454,36.152089361134],[-89.61863927985165,36.18381136116354],[-89.67686927990587,36.220935361198116],[-89.69573727992345,36.240863361216675],[-89.69462327992241,36.25220336122724],[-89.6706662799001,36.2549613612298],[-89.6181592798512,36.24096636121678],[-89.54172527978001,36.257346361232024],[-89.53545427977417,36.26460536123879],[-89.54231327978056,36.280932361253996],[-89.60684427984066,36.308103361279294],[-89.6228742798556,36.334847361304206],[-89.60576827983967,36.3548173613228],[-89.54463227978272,36.34578836131439],[-89.51940927975923,36.3559963613239],[-89.52008027975985,36.40112236136593],[-89.54525827978331,36.44102336140309],[-89.51609827975615,36.47187236143182],[-89.53327227977215,36.49817036145632],[-89.47589727971871,36.49860936145672],[-89.49206427973377,36.465524361425906],[-89.47090827971407,36.44601736140774],[-89.44859127969328,36.45644236141745],[-89.41478427966179,36.50267936146051],[-89.34666727959835,36.50261036146045],[-88.83037227911751,36.49985436145788],[-88.82635927911377,36.499908361457926],[-88.8107182790992,36.49904536145713],[-88.51268127882165,36.49954636145759],[-88.49602527880613,36.49820736145635],[-88.042763278384,36.49657036145482],[-88.03507927837684,36.538200361493594],[-88.04109127838244,36.58272136153506],[-88.07134127841061,36.67968336162536],[-87.87071127822377,36.669423361615806],[-87.85353727820777,36.64152236158982],[-87.69352827805875,36.64448836159258],[-87.6406552780095,36.64521736159326],[-87.34661127773566,36.64927736159704],[-87.11270227751781,36.65130736159893],[-87.06818427747635,36.65081136159847],[-86.77053527719914,36.65210036159967],[-86.51066827695712,36.655074361602445],[-86.41544327686844,36.650932361598585],[-86.19899227666686,36.64329036159147],[-85.98061027646347,36.633112361581986],[-85.78547627628174,36.626685361576],[-85.43737427595754,36.6181993615681],[-85.3000942758297,36.62610136157546],[-85.27249827580398,36.625616361575005],[-84.99846127554876,36.62098236157069],[-84.79105727535561,36.60543836155621],[-84.78187127534706,36.605076361555874],[-84.25677727485802,36.59549836154696],[-84.25448827485589,36.59545236154692],[-84.00674627462516,36.59208836154378],[-83.93560027455891,36.59129036154304],[-83.6956082743354,36.58424936153648],[-83.67517727431637,36.59870436154994],[-83.46421027411989,36.59884036155007],[-83.2750312739437,36.60046736155158],[-83.24838827391889,36.58993536154178],[-83.210926273884,36.58808936154006],[-82.98669727367516,36.59128936154303],[-82.84982227354769,36.59104136154281],[-82.61083927332513,36.591545361543275],[-82.29685827303271,36.59180136154352],[-82.21666127295802,36.59407236154563],[-82.15418127289983,36.59515036154663],[-81.92930327269039,36.59595036154738],[-81.91829427268014,36.61360836156382],[-81.82889827259689,36.61159636156195],[-81.65227227243238,36.6076733615583],[-81.66983527244875,36.58976736154162],[-81.70263227247929,36.51946036147614],[-81.69811527247508,36.47190036143185],[-81.74090827251494,36.39190736135735],[-81.7402132725143,36.36198236132948],[-81.70929027248549,36.33385036130328],[-81.73032427250509,36.329467361299194],[-81.83041027259829,36.33477936130414],[-81.91099427267335,36.290875361263254],[-81.93295127269378,36.2634443612377],[-82.02029527277514,36.12983436111327],[-82.07760227282851,36.10026036108573],[-82.11792527286606,36.09637436108211],[-82.15390127289956,36.1397373611225],[-82.20758427294956,36.14712736112938],[-82.26216027300039,36.120487361104566],[-82.3117832730466,36.122260361106214],[-82.37371327310429,36.098807361084376],[-82.40828327313648,36.0754263610626],[-82.47505527319866,35.9932843609861],[-82.50679427322822,35.97265036096688],[-82.5540052732722,35.95621636095158],[-82.59916527331426,35.963405360958276],[-82.60566627332031,36.00365436099575],[-82.59209427330767,36.02255636101336],[-82.604264273319,36.04309436103249],[-82.62790927334102,36.05444636104306],[-82.64375527335578,36.051829361040625],[-82.76309527346692,35.99965036099203],[-82.77346327347658,35.98760736098082],[-82.77630827347923,35.95667736095201],[-82.80853527350924,35.92097536091876],[-82.85613727355357,35.94752836094349],[-82.89584227359056,35.94846236094436],[-82.9139382736074,35.927969360925275],[-82.90668927360066,35.87231736087344],[-82.96261927365275,35.7919523607986],[-82.98687427367534,35.774091360781966],[-83.05982827374328,35.78267636078996],[-83.1180572737975,35.76390736077248],[-83.14353327382123,35.762782360771425],[-83.18522027386005,35.72898336073995],[-83.24372427391454,35.718313360730015],[-83.25317727392334,35.70080336071371],[-83.25899927392877,35.69110636070468],[-83.29829127396536,35.65642336067238],[-83.34290327400691,35.65335536066952],[-83.38697227404795,35.6253133606434],[-83.45817327411426,35.59737336061738],[-83.50568327415851,35.559645360582245],[-83.56092227420996,35.55526836057817],[-83.61375027425916,35.57183136059359],[-83.67276627431411,35.56506236058729],[-83.77577427441005,35.55269336057577],[-83.83009827446065,35.51914936054453],[-83.88112527450816,35.51067236053663],[-83.90991227453497,35.47656436050487],[-83.9546082745766,35.45554436048529],[-84.01255627463057,35.40770636044074],[-84.00621727462467,35.372943360408364],[-84.029115274646,35.325374360364066],[-84.03077127464753,35.29260536033354],[-84.04268927465864,35.27265836031496],[-84.10156027471346,35.2456333602898],[-84.17964227478619,35.24106936028555],[-84.22586327482924,35.261683360304744],[-84.29095927488986,35.21062236025719],[-84.32377327492041,34.989090360050874]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Texas","DRAWSEQ":41,"STATE_FIPS":"48","SUB_REGION":"West South Central","STATE_ABBR":"TX"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-106.53951429561045,31.786305357068045],[-106.61498629568072,31.81783435709741],[-106.61612329568179,31.84474035712247],[-106.64407929570783,31.895205357169466],[-106.63374929569821,31.914101357187064],[-106.63260529569713,31.97222035724119],[-106.6500622957134,31.980329357248745],[-106.62362529568877,32.001088357268074],[-106.37838729546039,32.00074735726776],[-106.003240295111,32.00165835726861],[-104.92230529410429,32.00438235727115],[-104.85106829403796,32.00326535727011],[-104.0192972932633,32.00740335727396],[-103.981377293228,32.006015357272666],[-103.72944429299336,32.006229357272865],[-103.33254929262372,32.004281357271054],[-103.05841329236841,32.00202235726895],[-103.05564029236584,32.08511635734634],[-103.0600182923699,32.5155453577472],[-103.04933129235995,32.953639358155215],[-103.04310129235415,33.37783135855027],[-103.03873629235008,33.565843358725374],[-103.03325829234498,33.82618135896783],[-103.02964629234162,34.30782035941639],[-103.02265729233511,34.745332359823855],[-103.02525129233753,34.96478036002823],[-103.02615129233837,35.17726536022612],[-103.02229429233478,35.62364836064185],[-103.02261229233507,35.742327360752384],[-103.0240482923364,36.05606136104457],[-103.02728629233943,36.49159136145019],[-102.9974012923116,36.49237036145091],[-102.16567329153699,36.49023436144893],[-102.03465829141497,36.492981361451484],[-101.62075529102948,36.4920313614506],[-101.09010229053528,36.48805036144689],[-100.95734129041163,36.48963736144837],[-100.54983929003212,36.48947936144822],[-100.00727328952682,36.493912361452345],[-100.00155028952149,36.492554361451084],[-99.99755328951777,36.05759136104599],[-99.99812328951829,35.88383736088417],[-100.0003922895204,35.61885636063739],[-99.99474328951514,35.424622360456496],[-99.99757028951778,35.18223536023075],[-99.99645528951675,35.03105136008995],[-99.99926028951936,34.74724335982563],[-99.99647528951677,34.56238435965347],[-99.97248028949441,34.56192635965304],[-99.94512028946893,34.57963435966954],[-99.93228728945698,34.579173359669106],[-99.88097728940919,34.5482423596403],[-99.86094928939055,34.51869435961278],[-99.83030828936201,34.50184635959709],[-99.77806028931334,34.444064359543276],[-99.68527728922693,34.3775203594813],[-99.60181728914921,34.36863435947303],[-99.58558928913409,34.384934359488206],[-99.57821928912723,34.40898835951061],[-99.55423228910489,34.41525635951645],[-99.50250428905672,34.4041453595061],[-99.47980628903558,34.38360035948696],[-99.43874328899733,34.36478335946944],[-99.41032328897086,34.36918535947354],[-99.39452228895615,34.39682235949928],[-99.39315728895488,34.42907035952931],[-99.36456928892825,34.45027235954906],[-99.32365928889016,34.41278735951415],[-99.26753528883788,34.39836435950072],[-99.25446528882571,34.36829435947271],[-99.20584928878043,34.33207535943898],[-99.19666328877187,34.305205359413954],[-99.2049552887796,34.255730359367874],[-99.19084028876645,34.22382135933816],[-99.1765112887531,34.21281635932791],[-99.1283002887082,34.20155635931742],[-99.07878428866209,34.208446359323844],[-99.03557028862184,34.199009359315056],[-98.9965442885855,34.209583359324895],[-98.95285728854482,34.194653359311],[-98.89168928848785,34.16091035927957],[-98.81141028841309,34.146026359265704],[-98.77887728838279,34.132053359252694],[-98.70563228831458,34.13080635925154],[-98.68255228829307,34.150089359269494],[-98.662059288274,34.147129359266735],[-98.62633028824071,34.15852735927735],[-98.60758428822325,34.1514893592708],[-98.57666828819445,34.14202235926198],[-98.557914288177,34.1054283592279],[-98.49985228812292,34.06650835919165],[-98.44851928807512,34.05446935918044],[-98.42167028805011,34.06592435919111],[-98.40746428803688,34.08254835920659],[-98.39128228802181,34.08732435921104],[-98.38458328801556,34.115873359237625],[-98.35073028798404,34.14221335926216],[-98.32081428795618,34.13951235925964],[-98.27732428791568,34.12296435924423],[-98.17316428781866,34.115461359237244],[-98.13718228778517,34.138524359258724],[-98.11518628776467,34.149079359268555],[-98.09444128774535,34.134649359255114],[-98.11100528776078,34.06991535919482],[-98.08652228773798,34.00541035913475],[-98.05587328770943,33.9898963591203],[-98.02380628767956,33.98708135911768],[-97.98299528764156,34.001382359131],[-97.95053928761133,33.97125835910294],[-97.94806728760904,33.95984935909232],[-97.96331128762323,33.948748359081975],[-97.95099728761176,33.932616359066955],[-97.97644228763546,33.9121513590479],[-97.9766932876357,33.902603359039006],[-97.95504828761554,33.88357935902128],[-97.909377287573,33.87412335901248],[-97.87006228753638,33.85521435899487],[-97.85285728752037,33.857171358996695],[-97.7905152874623,33.890556359027784],[-97.75667028743078,33.93219735906656],[-97.72932628740531,33.93939135907326],[-97.70456728738226,33.9716443591033],[-97.67137128735133,33.98871135911919],[-97.60048428728533,33.969535359101336],[-97.59265628727803,33.917985359053326],[-97.57597028726249,33.90263135903903],[-97.55489028724286,33.90400435904031],[-97.51850428720897,33.916871359052294],[-97.47783128717109,33.90780835904385],[-97.46306028715733,33.90248335903889],[-97.45736028715203,33.89053235902776],[-97.453035287148,33.83631535897727],[-97.4104162871083,33.820812358962826],[-97.36361628706472,33.83112735897244],[-97.34210028704469,33.8620173590012],[-97.31525228701967,33.8704943590091],[-97.31438228701887,33.8959413590328],[-97.27257228697992,33.872675359011126],[-97.26420228697214,33.858832358998235],[-97.25098028695982,33.8730723590115],[-97.24635628695552,33.89433935903131],[-97.21162628692316,33.90579035904197],[-97.18805928690122,33.89930535903593],[-97.16446028687925,33.86325035900235],[-97.16888528688337,33.84789635898805],[-97.19530728690796,33.83626135897722],[-97.20861328692037,33.81975235896184],[-97.18945528690251,33.752874358899554],[-97.15276428686835,33.728773358877106],[-97.11585228683397,33.72603835887456],[-97.09078828681062,33.731776358879905],[-97.08375428680408,33.74251835888991],[-97.08795828680799,33.80767535895059],[-97.05031328677293,33.823551358965375],[-97.07853528679922,33.83791335897875],[-97.08246528680287,33.85120335899113],[-97.07118828679238,33.856830358996376],[-97.02588328675019,33.840664358981314],[-97.0061382867318,33.850616358990585],[-96.98799528671489,33.876525359014714],[-96.98814828671503,33.944303359077836],[-96.96847128669671,33.93742135907143],[-96.93648728666692,33.947949359081235],[-96.92985028666074,33.9618733590942],[-96.89873628663176,33.95012735908326],[-96.88313328661724,33.92469235905958],[-96.87921928661359,33.88410435902178],[-96.8612962865969,33.861781359000986],[-96.84429028658106,33.85813435899759],[-96.81439728655322,33.871871359010385],[-96.79787128653783,33.870051359008684],[-96.7491022864924,33.831840358973096],[-96.71195328645781,33.83397235897509],[-96.69365728644077,33.84800635898816],[-96.67797928642617,33.904424359040696],[-96.6665122864155,33.913644359049286],[-96.58476028633935,33.89624535903308],[-96.61443928636699,33.86300135900212],[-96.60146828635492,33.84305835898355],[-96.56240428631853,33.82552235896721],[-96.51084328627051,33.81578735895815],[-96.50101628626136,33.78819235893245],[-96.4876412862489,33.77823235892318],[-96.41973028618565,33.78842835893267],[-96.37108328614035,33.74049735888803],[-96.34785028611871,33.705631358855555],[-96.31653828608955,33.70190435885209],[-96.30105028607512,33.7141533588635],[-96.28994328606478,33.76203435890809],[-96.27833828605398,33.77348935891875],[-96.21280728599294,33.756792358903205],[-96.18728628596918,33.758684358904965],[-96.16907428595222,33.769457358915],[-96.16157528594523,33.79832935894189],[-96.1416772859267,33.820420358962465],[-96.1547772859389,33.824044358965835],[-96.1809852859633,33.80853435895139],[-96.18338828596555,33.815892358958244],[-96.16946428595257,33.829083358970536],[-96.14922328593373,33.835690358976684],[-96.10970128589692,33.82935735897079],[-96.09178028588023,33.84467735898505],[-96.04823028583967,33.84137735898198],[-96.0270042858199,33.856121358995715],[-96.01432428580809,33.84430735898471],[-96.00204828579666,33.8570783589966],[-96.00287228579742,33.873489359011884],[-95.99446428578959,33.87547635901374],[-95.97764828577394,33.858051358997514],[-95.95901628575659,33.86513935900411],[-95.94332328574197,33.89007135902733],[-95.93332828573266,33.89062835902785],[-95.84680528565208,33.84113835898176],[-95.82622128563291,33.84312535898361],[-95.7957252856045,33.864774359003775],[-95.7687612855794,33.85150335899141],[-95.76449728557542,33.879106359017115],[-95.76094228557211,33.893541359030564],[-95.74710928555923,33.90349735903983],[-95.69995028551531,33.89492635903186],[-95.63373228545363,33.9202073590554],[-95.61322428543454,33.92034135905552],[-95.61507028543626,33.936794359070845],[-95.6063122854281,33.94465635907817],[-95.56301328538778,33.93617735907027],[-95.54655528537245,33.90413735904043],[-95.51981328534754,33.90674735904286],[-95.52697028535421,33.89792035903464],[-95.54773028537355,33.8932623590303],[-95.54427428537032,33.8858463590234],[-95.51312228534131,33.89784035903457],[-95.49909128532825,33.88182235901965],[-95.46835928529963,33.88653735902404],[-95.45184128528425,33.86585835900478],[-95.33027228517102,33.871024359009596],[-95.33646028517678,33.89722035903399],[-95.30218828514487,33.88673035902422],[-95.2866622851304,33.88700835902448],[-95.27758328512195,33.91804535905338],[-95.26384928510916,33.89790735903463],[-95.2512232850974,33.905128359041356],[-95.25152128509768,33.936550359070615],[-95.2342702850816,33.96496935909708],[-95.14854428500178,33.94365335907723],[-95.12819628498282,33.94097535907474],[-95.12690628498162,33.91725235905265],[-95.11945228497468,33.912388359048116],[-95.09558628495245,33.921845359056924],[-95.08249428494025,33.91856035905386],[-95.08994028494719,33.89702335903381],[-95.0838292849415,33.88856935902593],[-95.06370228492275,33.917756359053115],[-95.06336628492244,33.8968013590336],[-95.04308728490356,33.88455335902219],[-95.03758628489844,33.866559359005436],[-95.01299628487553,33.870053359008686],[-94.98950428485365,33.85629035899587],[-94.96892728483449,33.86632235900521],[-94.9601292848263,33.84818435898832],[-94.94010928480765,33.84093235898157],[-94.94062028480813,33.815915358958264],[-94.91845628478748,33.81630435895863],[-94.90876628477847,33.80358635894679],[-94.91409928478343,33.78970535893386],[-94.8818552847534,33.77507235892023],[-94.85809628473127,33.74942935889635],[-94.81937528469521,33.74951335889642],[-94.80343728468037,33.73969135888728],[-94.783722284662,33.753370358900014],[-94.764388284644,33.75295135889963],[-94.78224128466063,33.74237635888978],[-94.78337028466167,33.73377435888177],[-94.74998328463059,33.7368153588846],[-94.76293028464264,33.716906358866055],[-94.74232328462345,33.71915735886816],[-94.75469028463496,33.707881358857655],[-94.74186528462302,33.701377358851595],[-94.69119728457584,33.690399358841375],[-94.66866728455486,33.69664835884719],[-94.65568928454276,33.69240335884324],[-94.64453528453238,33.677762358829604],[-94.66816328455438,33.67157135882384],[-94.66963628455575,33.66617335881881],[-94.65874828454561,33.663850358816646],[-94.6389732845272,33.670217358822576],[-94.63194628452065,33.68401135883542],[-94.60115328449197,33.66572135881839],[-94.58531428447722,33.67909535883084],[-94.57871428447108,33.67058535882292],[-94.56093028445451,33.67202735882426],[-94.56541628445869,33.66312735881597],[-94.58536728447727,33.66224635881515],[-94.58859428448028,33.65556235880893],[-94.57666928446918,33.65227135880586],[-94.54562528444026,33.661735358814674],[-94.54213828443702,33.64836135880222],[-94.56240228445589,33.64294435879717],[-94.56235628445584,33.635650358790386],[-94.5504012844447,33.63280935878774],[-94.51819628441471,33.643124358797344],[-94.52526128442129,33.621136358776866],[-94.5107652844078,33.63092535878598],[-94.50081628439852,33.62316235877876],[-94.47669128437606,33.63208135878706],[-94.43611728433827,33.63656135879123],[-94.43653628433866,33.616961358772976],[-94.45175728435284,33.60446435876134],[-94.44353228434518,33.596621358754035],[-94.42867028433133,33.59725835875463],[-94.40677228431095,33.573604358732595],[-94.3936192842987,33.57507735873397],[-94.37931428428537,33.59344435875107],[-94.37082928427746,33.590160358748015],[-94.37250828427904,33.57278035873183],[-94.39546528430041,33.56042135872032],[-94.37095928427759,33.547802358708566],[-94.32895028423846,33.57325435873227],[-94.30258228421391,33.55705435871718],[-94.29901928421059,33.57997235873853],[-94.27918228419212,33.58945235874736],[-94.27227828418569,33.584726358742955],[-94.27474228418798,33.56185735872166],[-94.23743328415324,33.592543358750234],[-94.22323428414,33.585840358743994],[-94.2355642841515,33.56165635872147],[-94.21108028412868,33.558108358718165],[-94.20554128412353,33.5852003587434],[-94.15971028408084,33.5938943587515],[-94.15536028407679,33.56720635872664],[-94.09889328402421,33.57312035873215],[-94.08684628401299,33.58407535874235],[-94.0616222839895,33.57733535873607],[-94.03611628396574,33.55603435871623],[-94.03669128396628,33.27045335845027],[-94.03893128396837,33.0234223582202],[-94.04178528397102,32.88248535808894],[-94.04038228396972,32.69495735791429],[-94.03541828396509,32.3893813576297],[-94.03495528396466,32.199609357452964],[-94.03525528396494,31.994679357262108],[-94.0100782839415,31.9893003572571],[-94.00458428393638,31.978108357246676],[-93.97740028391107,31.94632735721708],[-93.97017528390433,31.92333235719566],[-93.93591928387242,31.909624357182896],[-93.91811128385584,31.909870357183124],[-93.92365028386101,31.892762357167193],[-93.89944928383846,31.894623357168925],[-93.8927132838322,31.87023435714621],[-93.8814512838217,31.871588357147473],[-93.8775912838181,31.85028235712763],[-93.86501028380638,31.817442357097043],[-93.83451428377799,31.802187357082836],[-93.82225428376657,31.77480835705734],[-93.83134828377504,31.75345235703745],[-93.81017628375533,31.730524357016094],[-93.81513528375994,31.71252335699933],[-93.80895528375419,31.707738356994874],[-93.79245228373881,31.71156835699844],[-93.81203028375705,31.674740356964143],[-93.806613283752,31.65394135694477],[-93.81491428375973,31.64814135693937],[-93.81977428376426,31.61826735691155],[-93.83576528377915,31.615364356908845],[-93.8328052837764,31.590360356885558],[-93.81650828376122,31.577287356873384],[-93.81070228375582,31.559240356856577],[-93.78031328372751,31.53391335683299],[-93.76348928371183,31.530902356830182],[-93.74772728369716,31.537896356836697],[-93.73184228368237,31.522055356821944],[-93.70597728365827,31.520747356820728],[-93.71917628367056,31.49558235679729],[-93.75061828369985,31.490736356792777],[-93.75142728370061,31.485680356788066],[-93.72696628367783,31.459654356763828],[-93.6985992836514,31.461638356765675],[-93.70210828365467,31.446431356751514],[-93.68718528364077,31.438311356743952],[-93.69631028364927,31.42791735673427],[-93.6946232836477,31.41610335672327],[-93.68767328364123,31.40631135671415],[-93.66419628361936,31.398510356706886],[-93.66125128361662,31.372577356682733],[-93.6350352835922,31.374009356684063],[-93.67721928363149,31.328570356641748],[-93.68176628363572,31.31286335662712],[-93.65630628361201,31.2868553566029],[-93.6457702836022,31.290447356606244],[-93.63100628358845,31.274088356591008],[-93.61663228357507,31.275989356592778],[-93.6120542835708,31.270218356587403],[-93.61117628356999,31.24237335656147],[-93.59072128355093,31.229873356549827],[-93.60309628356246,31.19925335652131],[-93.5941162835541,31.18038635650374],[-93.57711728353827,31.172328356496237],[-93.55076428351373,31.19111635651373],[-93.52909628349354,31.185961356508933],[-93.5271052834917,31.178263356501763],[-93.53719128350109,31.176527356500145],[-93.52850128349299,31.16313035648767],[-93.54436328350776,31.15935435648415],[-93.53767928350153,31.13262935645926],[-93.52826428349277,31.126114356453193],[-93.53526028349928,31.11626135644402],[-93.55685228351939,31.109532356437754],[-93.56015628352247,31.10072635642955],[-93.54329428350677,31.094941356424165],[-93.54427828350768,31.082563356412635],[-93.51717028348244,31.074861356405464],[-93.52591328349058,31.057171356388984],[-93.50738928347333,31.039099356372155],[-93.54729128351049,31.014334356349092],[-93.5651142835271,31.018256356352744],[-93.56806728352984,31.01311735634796],[-93.57101928353259,30.99746435633338],[-93.56112428352337,30.99188335632818],[-93.57262928353408,30.97637235631374],[-93.54884828351194,30.97038435630816],[-93.53751028350138,30.95707935629577],[-93.53236028349659,30.960926356299353],[-93.52579128349046,30.93601435627615],[-93.53015528349454,30.927167356267912],[-93.54979428351282,30.925080356265966],[-93.54668928350993,30.90553035624776],[-93.56464928352665,30.902128356244592],[-93.5686702835304,30.886431356229973],[-93.56101728352327,30.872077356216607],[-93.55297628351579,30.860480356205805],[-93.56661828352848,30.845346356191712],[-93.55581428351843,30.842540356189097],[-93.55085528351381,30.828542356176058],[-93.58204528354285,30.802239356151563],[-93.58534828354593,30.77238435612376],[-93.61862928357692,30.745989356099177],[-93.60782528356687,30.732211356086346],[-93.61796528357631,30.732749356086845],[-93.61258528357129,30.71053035606615],[-93.61778128357614,30.687003356044244],[-93.6601632836156,30.673060356031257],[-93.67814528363236,30.63989435600037],[-93.69305328364624,30.640243356000692],[-93.68475928363851,30.623626355985216],[-93.69286928364608,30.61599735597811],[-93.6717582836264,30.598033355961384],[-93.69359428364675,30.599037355962317],[-93.71798528366946,30.587582355951646],[-93.71805428366953,30.56835535593374],[-93.73547928368575,30.54571935591266],[-93.70563228365796,30.52306035589156],[-93.71481028366651,30.50531635587503],[-93.70744728365965,30.496443355866766],[-93.7150232836667,30.48883135585968],[-93.69814628365098,30.470249355842373],[-93.70359328365606,30.462715355835357],[-93.69674128364967,30.44283535581684],[-93.72170528367292,30.433183355807852],[-93.7427312836925,30.409027355785355],[-93.75511328370403,30.38199335576018],[-93.74800228369742,30.367615355746786],[-93.75950728370813,30.354350355734432],[-93.75934728370798,30.34107735572207],[-93.72994128368059,30.30512235568859],[-93.69937728365213,30.297593355681574],[-93.70752428365972,30.239578355627543],[-93.71500828366669,30.22051335560979],[-93.70452528365692,30.181068355573053],[-93.6963312836493,30.175884355568222],[-93.69982628365256,30.151017355545065],[-93.68330728363716,30.148440355542665],[-93.68612328363979,30.141461355536165],[-93.6988032836516,30.14143435553614],[-93.69708728364999,30.118139355514444],[-93.70854628366067,30.114950355511475],[-93.71602328366764,30.095878355493713],[-93.71264428366449,30.06073135546098],[-93.76036728370893,30.006176355410172],[-93.85744728379935,29.990867355395913],[-93.85650028379847,29.964815355371652],[-93.95193628388735,29.818579355235457],[-93.83512528377855,29.674792355101545],[-94.06558128399318,29.674297355101086],[-94.35718228426475,29.560129354994757],[-94.37719428428339,29.55219835498737],[-94.68271228456793,29.43313835487649],[-94.7667432846462,29.36422735481231],[-94.78544428466361,29.383495354830252],[-94.68210928456737,29.475343354915793],[-94.57288528446564,29.533283354969754],[-94.50147228439914,29.517754354955294],[-94.46998528436981,29.557009354991852],[-94.51100228440802,29.54537735498102],[-94.53389028442933,29.554213354989248],[-94.56463028445796,29.579227355012545],[-94.78828328466625,29.53878635497488],[-94.7066172845902,29.658741355086597],[-94.70047528458447,29.754791355176053],[-94.73592328461748,29.793207355211827],[-94.82961528470474,29.76008135518098],[-94.88736328475854,29.668766355095933],[-94.93279028480083,29.682436355108663],[-95.08847228494582,29.804205355222074],[-95.04060428490125,29.71180635513602],[-94.98953928485369,29.679928355106327],[-95.01432728487677,29.559494354994165],[-94.91135728478088,29.500564354939286],[-94.98301528484761,29.46075835490221],[-94.94395828481123,29.46491235490608],[-94.95270928481939,29.424466354868414],[-94.913645284783,29.420345354864573],[-94.91719328478631,29.44805435489038],[-94.89133628476223,29.399557354845214],[-94.81555028469165,29.371166354818772],[-94.89167228476254,29.394065354840098],[-94.89898728476935,29.309011354760884],[-94.9513342848181,29.326157354776853],[-95.06657228492543,29.196116354655743],[-95.16073028501312,29.200271354659613],[-95.16498828501709,29.117790354582798],[-95.19755128504741,29.10546535457132],[-95.24861828509498,28.978637354453202],[-95.52680728535405,28.80349635429009],[-95.68326428549977,28.727214354219043],[-95.67155228548886,28.752941354243006],[-95.786592285596,28.739132354230144],[-95.9375492857366,28.690720354185057],[-95.95638728575413,28.622942354121932],[-95.70238428551758,28.719247354211625],[-96.20682828598737,28.488663353996877],[-95.9918882857872,28.59669535409749],[-95.98399028577984,28.6534013541503],[-96.23783328601625,28.571595354074113],[-96.2392752860176,28.597389354098137],[-96.15771528594163,28.61150235411128],[-96.24070128601892,28.635130354133285],[-96.15130528593566,28.762938354252316],[-96.21241828599258,28.686989354181584],[-96.28621928606131,28.661995354158307],[-96.2706242860468,28.709249354202313],[-96.32640428609874,28.63436135413257],[-96.36440828613414,28.618254354117568],[-96.39202628615986,28.67052335416625],[-96.39297928616074,28.726298354218194],[-96.42733628619274,28.71228335420514],[-96.44992728621378,28.755304354245204],[-96.43250928619756,28.69751935419139],[-96.40364628617068,28.719763354212105],[-96.41903528618501,28.63893735413683],[-96.3756462861446,28.61036235411022],[-96.49145628625246,28.557220354060725],[-96.43740728620212,28.59726535409802],[-96.45463528621816,28.656206354152914],[-96.48352128624506,28.598330354099012],[-96.51214728627173,28.60845635410844],[-96.51198628627158,28.649815354146963],[-96.57065028632621,28.6365403541346],[-96.57081028632636,28.692113354186354],[-96.5724652863279,28.808442354294694],[-96.57673828633189,28.690961354185283],[-96.59175328634586,28.71763035421012],[-96.6467702863971,28.714413354207124],[-96.66026728640968,28.679348354174465],[-96.60696028636004,28.623908354122833],[-96.61060028636342,28.559217354062586],[-96.56695828632277,28.574374354076703],[-96.48683228624814,28.50650035401349],[-96.56344928631951,28.46990635397941],[-96.51875528627788,28.46110635397121],[-96.47675428623876,28.499733354007187],[-96.39097528615888,28.434339353946285],[-96.66156828641088,28.30654735382727],[-96.70262228644913,28.340479353858868],[-96.70407128645047,28.396166353910733],[-96.74102928648489,28.403738353917785],[-96.78735528652804,28.477785353986746],[-96.82413828656229,28.449920353960795],[-96.78859928652919,28.44653435395764],[-96.75936328650197,28.411192353924726],[-96.7756222865171,28.39191135390677],[-96.85375628658987,28.405277353919217],[-96.78849328652909,28.352753353870302],[-96.78653328652727,28.313142353833413],[-96.79359828653385,28.271657353794772],[-96.77819428651951,28.22963535375564],[-96.8039512865435,28.21173435373897],[-96.9511712866806,28.114646353648546],[-96.91298628664504,28.2570823537812],[-96.97557128670333,28.21103735373832],[-96.94133728667144,28.187059353715988],[-96.97537228670313,28.11533635364919],[-97.03388328675763,28.137687353670003],[-97.02383528674828,28.200083353728118],[-97.13210428684911,28.130717353663513],[-97.13568328685244,28.16209935369274],[-97.16826128688278,28.15974935369055],[-97.1573272868726,28.116672353650436],[-97.26055428696874,28.06501735360233],[-97.24150328695099,28.04894735358736],[-97.27056328697806,28.0262273535662],[-97.23648328694631,28.040814353579783],[-97.12334528684094,28.054560353592585],[-97.02667328675092,28.108041353642395],[-97.0240712867485,28.020532353560895],[-97.11489128683307,27.91568735346325],[-97.19573228690837,27.812525353367175],[-97.24729228695638,27.822624353376582],[-97.21360828692501,27.831415353384767],[-97.28375428699034,27.87144735342205],[-97.36131528706258,27.840257353393],[-97.34588928704821,27.873480353423943],[-97.47962628717276,27.853264353405116],[-97.4969522871889,27.875769353426076],[-97.5219692872122,27.863927353415047],[-97.49980628719156,27.843544353396062],[-97.48008328717319,27.820585353374682],[-97.38881228708819,27.831730353385062],[-97.39683028709565,27.77114635332864],[-97.3180632870223,27.71253435327405],[-97.34977928705183,27.71563735327694],[-97.32028328702437,27.690944353253943],[-97.35363228705542,27.641112353207532],[-97.39948528709813,27.633498353200444],[-97.34777228704996,27.631752353198817],[-97.3094802870143,27.70817335326999],[-97.25006128695897,27.689143353252266],[-97.33172728703502,27.562636353134447],[-97.41252828711028,27.321345352909727],[-97.5007032871924,27.319988352908464],[-97.50780828719901,27.439531353019795],[-97.52865028721843,27.344420352931216],[-97.60038228728523,27.300455352890275],[-97.7503492874249,27.41998335300159],[-97.68027928735964,27.294693352884906],[-97.78501728745718,27.28804035287871],[-97.54842428723684,27.23053035282515],[-97.4274812871242,27.26545535285768],[-97.50376728719525,27.081868352686698],[-97.47926028717242,26.996838352607504],[-97.56883128725585,26.978188352590138],[-97.55831728724606,26.84638735246739],[-97.49583728718785,26.79411735241871],[-97.451958287147,26.60132735223916],[-97.42611528712293,26.518569352162086],[-97.47496828716842,26.47715035212351],[-97.42144728711858,26.38540735203807],[-97.3689552870697,26.359409352013856],[-97.35361928705541,26.182802351849375],[-97.25337328696205,26.068672351743086],[-97.27657528698366,26.00263335168158],[-97.21334828692477,26.009425351687906],[-97.17247428688671,25.954927351637153],[-97.30739928701236,25.965482351646983],[-97.30469028700983,25.939022351622338],[-97.38124628708114,25.917379351602182],[-97.38589928708546,25.845721351535445],[-97.43460728713083,25.84555735153529],[-97.59035328727589,25.93358935161728],[-97.57520128726178,25.95452935163678],[-97.61318928729715,25.962359351644075],[-97.6482402873298,26.023801351701294],[-97.86770828753419,26.06049635173547],[-98.04035228769497,26.059750351734777],[-98.07663128772876,26.034982351711708],[-98.08349828773517,26.066113351740704],[-98.20097928784458,26.055732351731034],[-98.29223728792957,26.098459351770828],[-98.27164528791039,26.121249351792052],[-98.29256628792987,26.133162351803147],[-98.32822628796308,26.112000351783436],[-98.34748428798102,26.15903235182724],[-98.38481528801579,26.156383351824772],[-98.45368928807993,26.221261351885197],[-98.48881528811265,26.201895351867158],[-98.60026828821644,26.26080335192202],[-98.67821928828904,26.242404351904884],[-98.82013628842121,26.375413352028758],[-98.90920328850416,26.360671352015032],[-98.93957628853245,26.395651352047608],[-99.1070362886884,26.41986935207016],[-99.10178028868351,26.488676352134245],[-99.1689892887461,26.54606135218769],[-99.16612828874344,26.580220352219502],[-99.28583728885492,26.857678352477905],[-99.39083528895272,26.94694335256104],[-99.39303228895476,26.995861352606596],[-99.45538128901283,27.02895835263742],[-99.43747528899615,27.19950235279625],[-99.46559028902233,27.270186352862083],[-99.54390828909527,27.3189543529075],[-99.49081328904583,27.49105135306778],[-99.52706128907958,27.504579353080377],[-99.54950728910049,27.612919353181276],[-99.71481828925445,27.66184935322685],[-99.81605528934872,27.78039435333725],[-99.87506328940368,27.79797235335362],[-99.9421892894662,27.98716235352982],[-99.99364328951413,28.003739353545257],[-100.09726228961063,28.154555353685716],[-100.21441628971974,28.20220635373009],[-100.22380828972848,28.2417273537669],[-100.29826628979782,28.280622353803125],[-100.29323928979315,28.32062735384038],[-100.3519192898478,28.394447353909133],[-100.37712028987126,28.4789133539878],[-100.34615128984242,28.501072354008436],[-100.4198842899111,28.54445135404883],[-100.40352628989585,28.589991354091246],[-100.49826428998409,28.661243354157605],[-100.59014929006966,28.894469354374813],[-100.64758529012316,28.922595354401007],[-100.66913229014322,29.080312354547893],[-100.7689742902362,29.166807354628446],[-100.79735729026264,29.24273635469916],[-101.00943129046014,29.37348235482093],[-101.06773729051444,29.473776354914335],[-101.26181129069519,29.526692354963615],[-101.25496929068882,29.628964355058866],[-101.30931329073944,29.58112435501431],[-101.30624729073658,29.65264435508092],[-101.36878629079483,29.657373355085323],[-101.41648729083924,29.74564135516753],[-101.40166329082544,29.770111355190316],[-101.44881329086935,29.760791355181638],[-101.47085629088988,29.788895355207814],[-101.5387352909531,29.763222355183903],[-101.54434429095832,29.81032235522777],[-101.58188129099328,29.765354355185888],[-101.64006429104747,29.75716335517826],[-101.7594912911587,29.787367355206392],[-101.80560429120165,29.780199355199713],[-101.81949829121459,29.814324355231495],[-101.92462729131249,29.788701355207632],[-101.97372429135822,29.818971355235824],[-102.06440229144266,29.78476935520397],[-102.32475129168513,29.88030935529295],[-102.3679802917254,29.845483355260512],[-102.38521529174145,29.768141355188483],[-102.50352129185163,29.78564935520479],[-102.55237329189713,29.749694355171304],[-102.57692629191999,29.778441355198076],[-102.63803929197691,29.73253235515532],[-102.676790292013,29.74441835516639],[-102.80516029213256,29.530343354967016],[-102.82264029214883,29.412045354856843],[-102.88344829220546,29.353572354802388],[-102.90876429222904,29.269406354724],[-102.86660929218978,29.229241354686593],[-102.98853929230334,29.19106735465104],[-103.15391129245735,28.978891354453438],[-103.2670372925627,29.00766235448023],[-103.28080029257552,28.9865823544606],[-103.33597029262691,29.05054535452017],[-103.37590329266409,29.032314354503193],[-103.47453129275596,29.072338354540467],[-103.52669629280453,29.14684835460986],[-103.72077929298528,29.190832354650823],[-103.74031929300348,29.230548354687812],[-103.78262529304288,29.229994354687296],[-103.76822929302948,29.281438354735208],[-103.7874632930474,29.267457354722186],[-104.04610529328828,29.328313354778864],[-104.16485929339888,29.40090535484647],[-104.20521229343645,29.48422835492407],[-104.37807429359744,29.550794354986063],[-104.53572929374427,29.67964235510606],[-104.57804129378367,29.808107355225705],[-104.67485229387384,29.909449355320085],[-104.69697729389445,30.057462355457936],[-104.6752402938742,30.149120355543296],[-104.70309729390014,30.23864135562667],[-104.81444429400385,30.35061835573096],[-104.80696029399688,30.376596355755154],[-104.8534852940402,30.39241135576988],[-104.8911692940753,30.570700355935926],[-104.98742529416495,30.641467356001833],[-104.99803929417483,30.684474356041886],[-105.06106029423353,30.68801035604518],[-105.21484429437675,30.812223356160864],[-105.25869129441759,30.79779135614742],[-105.28810429444498,30.83208635617936],[-105.31428829446936,30.81664435616498],[-105.39082129454064,30.85321735619904],[-105.40957529455811,30.902645356245074],[-105.55489729469345,30.99841835633427],[-105.60373329473893,31.086558356416354],[-105.77025029489401,31.170908356494913],[-105.99888629510694,31.39394035670263],[-106.21328529530662,31.478246356781142],[-106.38358129546522,31.733872357019216],[-106.53951429561045,31.786305357068045]]],[[[-94.91362828478299,29.2578103547132],[-94.76757528464697,29.34268635479225],[-94.74860028462929,29.319727354770865],[-95.1056212849618,29.097200354563622],[-94.91362828478299,29.2578103547132]]],[[[-96.39813328616555,28.34612835386413],[-96.8348892865723,28.066615353603815],[-96.80410428654363,28.17245035370238],[-96.73916928648316,28.183823353712974],[-96.53239128629058,28.318528353838428],[-96.46330528622624,28.326115353845495],[-96.42280628618852,28.391720353906592],[-96.39813328616555,28.34612835386413]]],[[[-96.94023028667041,28.046227353584825],[-96.8726862866075,28.131695353664426],[-96.83768928657491,28.10213235363689],[-96.85407028659017,28.049696353588057],[-97.04987228677253,27.841258353393933],[-97.02469528674908,27.914681353462313],[-96.94965228667918,27.98482235352764],[-96.97326628670118,28.001149353542843],[-96.94023028667041,28.046227353584825]]],[[[-97.35938028706077,27.284040352874985],[-97.37964328707965,27.21077735280675],[-97.37635628707659,27.284965352875844],[-97.33576928703879,27.441138353021294],[-97.24893928695792,27.581449353151967],[-97.25894928696724,27.652061353217732],[-97.20384928691593,27.612379353180774],[-97.17044728688482,27.707771353269614],[-97.07556028679645,27.811579353366294],[-97.1133032868316,27.81952135337369],[-97.05383228677621,27.83077735338417],[-97.22398228693467,27.57432335314533],[-97.35938028706077,27.284040352874985]]],[[[-97.30138728700676,26.601365352239192],[-97.35828228705975,26.70698535233756],[-97.38159228708146,26.820711352443475],[-97.39557028709447,26.922320352538108],[-97.4011722870997,27.111554352714343],[-97.38905028708841,27.201975352798556],[-97.37879628707886,27.204773352801162],[-97.38718728708668,27.097571352701323],[-97.38159328708146,26.949354352563283],[-97.35828328705975,26.80300035242698],[-97.29609228700183,26.601012352238865],[-97.23236128694248,26.41849035206888],[-97.19524228690791,26.259593351920895],[-97.17204828688631,26.078076351751843],[-97.17958628689333,26.072276351746442],[-97.20916728692087,26.25089435191279],[-97.22656228693708,26.348900352004065],[-97.25150428696031,26.41965235206996],[-97.26750328697521,26.479251352125466],[-97.27880328698573,26.540307352182328],[-97.30138728700676,26.601365352239192]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"New Mexico","DRAWSEQ":42,"STATE_FIPS":"35","SUB_REGION":"Mountain","STATE_ABBR":"NM"},"geometry":{"type":"Polygon","coordinates":[[[-109.0484802979471,36.99664136192055],[-108.37247329731751,36.999471361923185],[-107.47246029647931,36.99877636192254],[-107.4108202964219,36.997525361921376],[-106.8903702959372,36.99908336192283],[-106.86124929591008,36.989501361913895],[-106.47217729554772,36.991504361915766],[-105.99200029510052,36.9922893619165],[-105.71346029484111,36.994560361918616],[-105.21309129437512,36.99260436191679],[-105.14617229431279,36.99320736191736],[-103.99363529323941,36.994469361918526],[-103.07786629238653,36.99976036192345],[-102.99770929231188,36.9985233619223],[-102.9974012923116,36.49237036145091],[-103.02728629233943,36.49159136145019],[-103.0240482923364,36.05606136104457],[-103.02261229233507,35.742327360752384],[-103.02229429233478,35.62364836064185],[-103.02615129233837,35.17726536022612],[-103.02525129233753,34.96478036002823],[-103.02265729233511,34.745332359823855],[-103.02964629234162,34.30782035941639],[-103.03325829234498,33.82618135896783],[-103.03873629235008,33.565843358725374],[-103.04310129235415,33.37783135855027],[-103.04933129235995,32.953639358155215],[-103.0600182923699,32.5155453577472],[-103.05564029236584,32.08511635734634],[-103.05841329236841,32.00202235726895],[-103.33254929262372,32.004281357271054],[-103.72944429299336,32.006229357272865],[-103.981377293228,32.006015357272666],[-104.0192972932633,32.00740335727396],[-104.85106829403796,32.00326535727011],[-104.92230529410429,32.00438235727115],[-106.003240295111,32.00165835726861],[-106.37838729546039,32.00074735726776],[-106.62362529568877,32.001088357268074],[-106.6500622957134,31.980329357248745],[-106.63260529569713,31.97222035724119],[-106.63374929569821,31.914101357187064],[-106.64407929570783,31.895205357169466],[-106.61612329568179,31.84474035712247],[-106.61498629568072,31.81783435709741],[-106.53951429561045,31.786305357068045],[-107.28356729630339,31.78508335706691],[-108.20325529715991,31.786903357068603],[-108.2106472971668,31.34385335665598],[-109.04561529794442,31.34345335665561],[-109.04949529794804,32.44204435767875],[-109.05134629794976,32.779550357993074],[-109.050526297949,33.20516435838946],[-109.05034929794884,33.7833023589279],[-109.04865229794726,34.59178035968085],[-109.04664129794538,34.95464636001879],[-109.0478462979465,35.99666436098925],[-109.0484802979471,36.99664136192055]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Alabama","DRAWSEQ":43,"STATE_FIPS":"01","SUB_REGION":"East South Central","STATE_ABBR":"AL"},"geometry":{"type":"Polygon","coordinates":[[[-85.0016072755517,31.00125335633691],[-85.4850102760019,31.001001356336673],[-85.48659727600338,31.000998356336673],[-86.03182227651116,30.99332735632953],[-86.18147627665054,30.995225356331296],[-86.38391927683908,30.99153835632786],[-86.70185227713517,30.998092356333963],[-86.77936127720736,30.998191356334058],[-87.16311727756477,31.003157356338683],[-87.59858027797031,31.00263035633819],[-87.5898672779622,30.954361356293237],[-87.62571127799559,30.8769023562211],[-87.61591527798646,30.848296356194457],[-87.54190027791753,30.785695356136156],[-87.52660327790329,30.748491356101507],[-87.46014027784139,30.70580235606175],[-87.41889427780298,30.692810356049648],[-87.39864527778411,30.668015356026558],[-87.39328127777912,30.62009835598193],[-87.42206727780592,30.556493355922694],[-87.44535327782762,30.531389355899314],[-87.4188162778029,30.481700355853036],[-87.40525127779027,30.440360355814537],[-87.46644027784725,30.35972135573944],[-87.58756827796006,30.319254355701748],[-87.5934052779655,30.278415355663714],[-87.79533027815356,30.233931355622286],[-88.00256027834655,30.233604355621978],[-87.77994127813922,30.272638355658334],[-87.75750327811834,30.299422355683276],[-87.90346527825426,30.421296355796784],[-87.9133852782635,30.62118435598294],[-88.0197892783626,30.7441903560975],[-88.13568127847053,30.337158355718422],[-88.3203262786425,30.404293355780947],[-88.40141527871802,30.393551355770942],[-88.41724227873276,30.7364573560903],[-88.4291992787439,31.00069535633639],[-88.4345632787489,31.12087935644832],[-88.45080327876401,31.435617356741442],[-88.46509727877732,31.702245356989756],[-88.47295227878465,31.888876357163575],[-88.43772427875183,32.22775535747918],[-88.42579227874072,32.30922435755505],[-88.39383227871096,32.58047035780767],[-88.3480412786683,32.924758358128315],[-88.33946627866032,32.987497358186744],[-88.30482927862806,33.288894358467445],[-88.2745862785999,33.538801358700184],[-88.24819527857532,33.7427263588901],[-88.2026442785329,34.05912235918477],[-88.19934927852982,34.090448359213944],[-88.16761327850027,34.32414735943159],[-88.15125627848504,34.46527335956303],[-88.13640127847121,34.58049735967034],[-88.09046827842843,34.89562935996383],[-88.10888627844558,34.89993635996784],[-88.14310527847745,34.93031235999613],[-88.19399327852484,35.004453360065185],[-88.19496227852575,35.013544360073645],[-87.9860782783312,35.016033360075966],[-87.60781327797892,35.010546360070855],[-87.22276427762031,35.00734636006787],[-87.20758827760618,35.007960360068445],[-86.83342227725771,34.9982463600594],[-86.78237227721017,34.997075360058304],[-86.31305227677308,34.99527336005663],[-86.30350027676418,34.99546436005681],[-85.86956727636004,34.99238436005394],[-85.60896027611734,34.99016436005187],[-85.58305827609321,34.86232235993281],[-85.53469227604818,34.62248835970945],[-85.52583427603993,34.58468535967424],[-85.5118562760269,34.52301435961681],[-85.46028627597887,34.290161359399946],[-85.41656727593816,34.08692035921066],[-85.39573827591876,33.959829359092296],[-85.38401127590784,33.90540935904161],[-85.33528727586247,33.65492335880833],[-85.30498027583424,33.49059435865529],[-85.29382527582385,33.425875358595015],[-85.23384627576799,33.12923735831875],[-85.23350327576767,33.120139358310276],[-85.18071927571852,32.871813358079],[-85.16230127570135,32.80744535801906],[-85.12809027566949,32.777070357990766],[-85.13330027567434,32.75631535797144],[-85.12488527566651,32.744383357960324],[-85.11386827565624,32.73438935795102],[-85.10773327565053,32.68997235790965],[-85.09047527563446,32.67615235789678],[-85.10380327564688,32.645910357868615],[-85.0863242756306,32.628451357852356],[-85.08414927562858,32.60300435782865],[-85.07077427561612,32.5812533578084],[-84.99565227554615,32.518928357750355],[-84.98981527554072,32.45483635769067],[-84.96538527551796,32.42945035766702],[-84.97096227552316,32.39681235763663],[-84.98448927553576,32.38709335762758],[-84.97166327552381,32.37150335761305],[-85.00209027555215,32.347078357590306],[-85.00533227555518,32.32959235757402],[-84.92107127547669,32.29313735754007],[-84.89460327545204,32.26873535751734],[-84.89401627545149,32.25917635750844],[-84.90536127546207,32.24955535749948],[-84.92367927547913,32.24738935749747],[-84.91600427547198,32.228556357479924],[-84.9283712754835,32.21797835747007],[-84.97574427552762,32.21224835746474],[-84.9603852755133,32.19192835744581],[-85.00782627555749,32.17887835743366],[-85.0243822755729,32.166275357421924],[-85.05331327559986,32.12663735738501],[-85.04618727559321,32.09089535735172],[-85.05665527560296,32.069644357331924],[-85.06201027560796,32.05001035731364],[-85.056700275603,32.01737635728325],[-85.07006727561546,31.98070335724909],[-85.11515027565744,31.907424357180847],[-85.13556727567646,31.854884357131915],[-85.13156127567272,31.783814357065726],[-85.13016527567143,31.778853357061106],[-85.11528727565758,31.731566357017066],[-85.11867427566072,31.708571356995648],[-85.11120527565377,31.684242356972995],[-85.05928527560542,31.621265356914343],[-85.04272127559,31.554389356852056],[-85.04269827558997,31.519660356819713],[-85.06631227561196,31.476089356779134],[-85.0614062756074,31.440663356746143],[-85.0879422756321,31.367234356677756],[-85.0825632756271,31.332334356645255],[-85.08122827562585,31.303080356618008],[-85.10336127564646,31.271436356588538],[-85.09360327563738,31.22707435654722],[-85.10295727564609,31.19692235651914],[-85.09336727563716,31.172211356496128],[-85.06866227561414,31.162364356486954],[-85.03806827558566,31.126713356453752],[-85.01699527556603,31.080102356410343],[-85.0016072755517,31.00125335633691]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Mississippi","DRAWSEQ":44,"STATE_FIPS":"28","SUB_REGION":"East South Central","STATE_ABBR":"MS"},"geometry":{"type":"Polygon","coordinates":[[[-88.40141527871802,30.393551355770942],[-88.39922527871597,30.35288635573307],[-88.46423727877652,30.326076355708103],[-88.57776027888225,30.380749355759022],[-88.68326427898052,30.342322355723233],[-88.87378627915795,30.430276355805148],[-88.93022327921051,30.416801355792597],[-88.88572627916906,30.398289355775354],[-89.27612127953265,30.314840355697637],[-89.27352827953024,30.37238635575123],[-89.33504627958753,30.380423355758715],[-89.35753127960847,30.365284355744617],[-89.31854227957216,30.318853355701375],[-89.41561427966256,30.256485355643292],[-89.43812127968353,30.200967355591587],[-89.57388427980996,30.19493535558597],[-89.61000327984361,30.241419355629258],[-89.60631027984016,30.247828355635228],[-89.62166127985446,30.25696435564374],[-89.62594227985845,30.290355355674834],[-89.63917227987076,30.29582935567993],[-89.63708227986882,30.311843355694847],[-89.6185882798516,30.323760355705943],[-89.6201982798531,30.34342935572426],[-89.63345127986544,30.355307355735327],[-89.64668927987778,30.35529035573531],[-89.65467027988521,30.37906535575745],[-89.67536927990449,30.40007435577702],[-89.67546227990456,30.445352355819185],[-89.68345027991201,30.46271835583536],[-89.69459827992239,30.46818635584045],[-89.69568127992339,30.47824635584982],[-89.7131842799397,30.481416355852772],[-89.71905927994517,30.49603735586639],[-89.73231927995752,30.49783835586807],[-89.75517827997881,30.51562235588463],[-89.77279627999522,30.55124735591781],[-89.79084828001203,30.553943355920318],[-89.82030728003946,30.624270355985814],[-89.8055362800257,30.649456356009274],[-89.81935428003858,30.65124535601094],[-89.82952428004805,30.67087435602922],[-89.84544728006288,30.666252356024913],[-89.83539228005351,30.675882356033885],[-89.84178528005947,30.67951935603727],[-89.84134328005905,30.70055035605686],[-89.83072328004917,30.703781356059867],[-89.84405228006158,30.712425356067918],[-89.83561428005372,30.72936235608369],[-89.82339928004234,30.73305435608713],[-89.82556628004436,30.742648356096062],[-89.81335128003299,30.748168356101203],[-89.82468928004354,30.789724356139907],[-89.81093328003074,30.811699356160375],[-89.79656728001736,30.81265235616126],[-89.79609428001692,30.829105356176584],[-89.77480027999708,30.830532356177912],[-89.78502428000661,30.86157935620683],[-89.76585127998875,30.862084356207298],[-89.76331127998638,30.90047135624305],[-89.74680027997101,30.902794356245213],[-89.74575527997003,30.910107356252023],[-89.7580542799815,30.92104335626221],[-89.74047527996511,30.926109356266927],[-89.74854027997263,30.949848356289035],[-89.73952227996423,30.96540035630352],[-89.71982327994589,30.975493356312917],[-89.72678127995236,30.984616356321414],[-89.72362327994942,31.001524356337164],[-89.7327172799579,31.00744535634268],[-89.8335582800518,31.007184356342435],[-90.25937728044838,31.007370356342605],[-90.34366028052688,31.00539035634076],[-90.5426532807122,31.002330356337914],[-90.5602552807286,31.00170635633733],[-90.82971428097954,31.001545356337182],[-91.05701228119123,31.000418356336134],[-91.17920728130504,31.00046135633617],[-91.632297281727,31.00136535633701],[-91.6277732817228,31.011960356346883],[-91.5727872816716,31.03264835636615],[-91.5520812816523,31.058159356389908],[-91.56497528166432,31.082135356412238],[-91.62011428171567,31.12769435645467],[-91.59148828168901,31.178482356501966],[-91.60096428169783,31.21392935653498],[-91.6369982817314,31.24110435656029],[-91.64368228173761,31.27111835658824],[-91.6342142817288,31.277694356594367],[-91.55691928165682,31.270469356587636],[-91.5170782816197,31.28306935659937],[-91.50247528160611,31.298858356614076],[-91.50575628160917,31.323456356636985],[-91.54279028164365,31.3469863566589],[-91.54440728164516,31.368874356679285],[-91.534573281636,31.382750356692206],[-91.5593772816591,31.38823035669731],[-91.56773128166688,31.421406356728205],[-91.55247228165267,31.4330993567391],[-91.53480228163622,31.43433535674025],[-91.53416928163563,31.409238356716877],[-91.52301428162524,31.392091356700906],[-91.49470828159888,31.37524935668522],[-91.48083828158596,31.377780356687577],[-91.46592228157206,31.40406935671206],[-91.47329228157892,31.420374356727244],[-91.50790028161116,31.45308335675771],[-91.50648228160983,31.525687356825326],[-91.50295728160656,31.534880356833888],[-91.46447328157072,31.542866356841326],[-91.42357828153263,31.56274635685984],[-91.40425228151463,31.586353356881826],[-91.415384281525,31.60259235689695],[-91.49715128160115,31.604358356898594],[-91.50887728161207,31.621946356914975],[-91.50780928161107,31.643870356935395],[-91.49776928160172,31.650895356941938],[-91.4573772815641,31.626966356919652],[-91.40840328151849,31.62553035691831],[-91.38918428150059,31.65460535694539],[-91.38794828149945,31.716682357003204],[-91.36507428147814,31.751741357035854],[-91.37049928148319,31.753475357037473],[-91.3399122814547,31.758542357042188],[-91.28262128140135,31.74988735703413],[-91.263989281384,31.759763357043326],[-91.26268528138279,31.773927357056518],[-91.33625728145131,31.76362235704692],[-91.36713428148006,31.770867357053667],[-91.34723628146153,31.795832357076918],[-91.33484628144998,31.843478357121292],[-91.30347328142076,31.86314435713961],[-91.2926472814107,31.86149235713807],[-91.27680028139594,31.827533357106443],[-91.25072928137165,31.81882135709833],[-91.24138328136294,31.83538735711376],[-91.26469228138465,31.865586357141883],[-91.24448128136584,31.87867235715407],[-91.20154228132584,31.91444935718739],[-91.16314328129008,31.988448357256306],[-91.10811028123882,31.9919843572596],[-91.07248828120565,32.021213357286825],[-91.07324328120636,32.032150357297006],[-91.08699228121915,32.04381135730787],[-91.14312328127143,32.066259357328775],[-91.14569428127383,32.085828357347],[-91.12572728125524,32.088399357349395],[-91.0894102812214,32.05699835732015],[-91.06511828119879,32.05870735732174],[-91.07392228120699,32.09414835735475],[-91.0411912811765,32.10782335736748],[-91.01139028114875,32.134213357392056],[-91.0039362811418,32.169413357424844],[-91.02452128116097,32.17005035742544],[-91.05458128118897,32.18468335743906],[-91.04541828118043,32.158824357414986],[-91.05415428118857,32.13454435739237],[-91.08311628121555,32.14873135740558],[-91.10882028123949,32.13514335739293],[-91.15665028128403,32.14493535740205],[-91.16695828129363,32.172141357427385],[-91.1573752812847,32.206014357458926],[-91.11606128124623,32.22575535747732],[-91.1006792812319,32.21503635746733],[-91.08802228122012,32.232537357483636],[-91.06257028119641,32.23289235748396],[-91.04175628117703,32.24958835749951],[-90.97732428111702,32.223554357475265],[-90.97112228111125,32.26921435751779],[-90.98392428112317,32.28728035753461],[-90.98087228112033,32.29780035754441],[-90.97176328111185,32.30384735755004],[-90.92935028107235,32.29755335754418],[-90.91647928106036,32.30546435755155],[-90.87545528102214,32.37979535762078],[-90.88525928103128,32.381500357622365],[-90.915029281059,32.346043357589345],[-90.98467228112386,32.35654135759912],[-90.99896928113718,32.36637835760828],[-91.00931528114681,32.39722735763701],[-90.97009128111029,32.41916035765744],[-90.96559028110609,32.44017935767701],[-90.98755528112655,32.45310635768905],[-91.0270152811633,32.44255935767923],[-91.05861728119272,32.447140357683494],[-91.11779228124784,32.49870935773153],[-91.11885228124883,32.52420635775527],[-91.08889128122092,32.548775357778155],[-91.03730828117288,32.49709535773002],[-91.01979028115657,32.490954357724306],[-90.99215628113083,32.49542135772846],[-90.99517728113365,32.5117823577437],[-91.063194281197,32.54229835777212],[-91.07337228120647,32.561749357790234],[-91.05897528119307,32.576526357804],[-91.03243228116834,32.58280935780985],[-90.99876328113699,32.61560335784039],[-90.99623728113464,32.626112357850175],[-91.00798728114557,32.642808357865725],[-91.02757228116381,32.64163735786464],[-91.04773728118259,32.61448935783935],[-91.06391928119767,32.60652435783194],[-91.1111002812416,32.597663357823684],[-91.14637228127445,32.64498635786775],[-91.13966528126821,32.663308357884816],[-91.0591352811932,32.72365035794102],[-91.09781728122924,32.74952835796512],[-91.13657528126534,32.751256357966724],[-91.15645028128384,32.76281135797749],[-91.14225928127063,32.841342358050625],[-91.0796352812123,32.8772903580841],[-91.07569828120864,32.953838358155394],[-91.09278128122455,32.987746358186975],[-91.11192428124238,32.98747535818672],[-91.13246328126151,32.97534835817543],[-91.13004428125926,32.93759135814027],[-91.137285281266,32.91791235812194],[-91.16980928129628,32.905148358110054],[-91.19842128132294,32.91428835811856],[-91.20927028133303,32.93597835813876],[-91.16197428128899,33.00041835819878],[-91.16224128128924,33.01316235821065],[-91.16078428128787,33.02183335821872],[-91.15679428128416,33.040555358236155],[-91.1240932812537,33.047395358242525],[-91.11789828124795,33.065693358259566],[-91.14689828127494,33.09077435828293],[-91.1906462813157,33.113345358303945],[-91.19561328132032,33.14058535832932],[-91.17773728130366,33.15040835833847],[-91.12143828125124,33.131190358320566],[-91.09596328122751,33.14520535833362],[-91.08642628121864,33.16172335834901],[-91.09211028122392,33.22581635840869],[-91.05464928118903,33.2459003584274],[-91.0405342811759,33.28204035846106],[-91.05393928118838,33.29369335847191],[-91.07643128120932,33.29247635847078],[-91.10301328123408,33.24932935843059],[-91.12261328125233,33.268623358448565],[-91.14185528127025,33.32250135849874],[-91.1305332812597,33.359518358533215],[-91.10704928123783,33.39352235856488],[-91.07879728121152,33.410295358580505],[-91.06162228119553,33.43191235860064],[-91.06108828119503,33.46012535862691],[-91.07386828120694,33.466320358632686],[-91.08590828121815,33.46297135862956],[-91.09923728123056,33.4150133585849],[-91.13774328126642,33.388994358560666],[-91.18509328131051,33.391946358563416],[-91.20427428132838,33.41441435858434],[-91.19894128132341,33.422226358591615],[-91.1306252812598,33.44323835861118],[-91.11982128124973,33.452946358620224],[-91.11906628124903,33.46978735863591],[-91.12890828125819,33.49330435865781],[-91.16508828129189,33.511893358675124],[-91.17429028130046,33.50448135866822],[-91.17184028129817,33.466758358633086],[-91.18188128130753,33.447502358615154],[-91.2329622813551,33.443557358611486],[-91.2272622813498,33.459567358626394],[-91.20775328133162,33.47351035863938],[-91.18051628130625,33.512126358675346],[-91.18295728130853,33.5234633586859],[-91.20421328132832,33.53861835870001],[-91.21359828133707,33.539388358700734],[-91.22774328135024,33.55646235871663],[-91.2268432813494,33.59059235874842],[-91.18791728131315,33.5747923587337],[-91.16813328129473,33.57735635873609],[-91.15076128127855,33.616272358772335],[-91.15451528128204,33.63714235879177],[-91.20542028132945,33.670054358822426],[-91.21525528133861,33.690832358841774],[-91.21179128133538,33.709074358858764],[-91.16341128129032,33.71842435886747],[-91.12115828125097,33.67763935882949],[-91.08387928121626,33.66269735881557],[-91.03794128117347,33.68332735883479],[-91.0389332811744,33.70560135885553],[-91.05632228119059,33.71946735886844],[-91.10467828123562,33.70834335885809],[-91.12905528125833,33.712550358862],[-91.13811128126676,33.723334358872044],[-91.14300228127132,33.7719283589173],[-91.13709728126582,33.780195358925],[-91.10552628123642,33.7765483589216],[-91.06650028120008,33.786635358931],[-91.04351228117866,33.76966435891519],[-91.01854028115541,33.76408335891],[-90.99548328113393,33.77166035891705],[-90.98414628112337,33.78545035892989],[-90.99047828112927,33.79900735894252],[-91.02896228116511,33.816695358958995],[-91.0549262811893,33.84363335898408],[-91.0614802811954,33.86718835900602],[-91.01857228115544,33.93641335907049],[-91.07581728120876,33.97474935910619],[-91.088963281221,33.99457335912466],[-91.06980528120314,34.00620135913549],[-91.03116928116717,33.98580535911649],[-91.00965328114712,33.99063435912099],[-91.00036828113848,33.96847935910036],[-90.98692428112597,33.960923359093314],[-90.96489728110545,33.9675683590995],[-90.96123528110203,33.978981359110136],[-90.9753812811152,33.99471335912479],[-90.97347328111343,34.01110435914005],[-90.95057728109211,34.03139535915895],[-90.88645028103238,34.04081835916772],[-90.86643828101376,34.101059359223825],[-90.90641828105099,34.1028553592255],[-90.94235428108445,34.1260483592471],[-90.95345528109479,34.15590835927491],[-90.92902528107204,34.185754359302706],[-90.84671628099538,34.14765135926722],[-90.82897028097885,34.14876535926826],[-90.80761528095897,34.16627835928457],[-90.82302728097332,34.19065035930727],[-90.92159428106511,34.20493535932057],[-90.9338172810765,34.23478035934836],[-90.92854528107159,34.250298359362816],[-90.86351828101103,34.21926735933392],[-90.83146628098118,34.22963935934358],[-90.82394428097417,34.2774443593881],[-90.80652628095795,34.29945135940859],[-90.79263328094501,34.30006135940916],[-90.7583602809131,34.27908135938962],[-90.74786328090332,34.3178233594257],[-90.76196428091644,34.36401835946873],[-90.75541828091035,34.37226935947641],[-90.68759028084719,34.37797635948173],[-90.68124228084127,34.36350435946825],[-90.68948128084895,34.32024935942796],[-90.6794402808396,34.318079359425944],[-90.65791828081954,34.330111359437154],[-90.65734628081901,34.36601435947059],[-90.60389428076924,34.40470335950662],[-90.57922828074626,34.43310335953307],[-90.57450528074186,34.45404935955258],[-90.59015528075645,34.49660935959221],[-90.5804502807474,34.5203243596143],[-90.56578628073375,34.53261135962575],[-90.53725128070717,34.54343035963582],[-90.53072028070109,34.555751359647296],[-90.57771928074486,34.604845359693016],[-90.58809528075453,34.627916359714504],[-90.57940528074643,34.645711359731074],[-90.56116228072943,34.700386359781994],[-90.53916628070895,34.686047359768644],[-90.54765028071685,34.65190635973684],[-90.53906728070886,34.63699535972296],[-90.50891428068078,34.638166359724046],[-90.46632628064111,34.67214035975569],[-90.47008028064461,34.70435435978569],[-90.51366828068521,34.702168359783656],[-90.53338328070357,34.71335235979407],[-90.54784928071705,34.790434359865856],[-90.52736328069795,34.80742135988168],[-90.51614728068752,34.80570035988008],[-90.50138428067376,34.78993135986539],[-90.4988362806714,34.765884359843],[-90.51707128068837,34.748470359826776],[-90.50452028067669,34.72995435980953],[-90.48602628065946,34.72693335980672],[-90.45153228062733,34.7412993598201],[-90.44896928062495,34.7608493598383],[-90.46680728064156,34.799761359874545],[-90.45200528062777,34.82531535989835],[-90.47481828064903,34.85782335992862],[-90.47062928064513,34.88102035995023],[-90.43818828061491,34.886277359955116],[-90.42794128060537,34.872739359942514],[-90.43364828061068,34.835451359907786],[-90.42241028060022,34.83236535990491],[-90.4040302805831,34.84113535991308],[-90.34152128052489,34.860674359931274],[-90.32292028050756,34.85036335992167],[-90.30164928048775,34.85187435992308],[-90.29954328048579,34.865057359935356],[-90.29636928048284,34.88278735995187],[-90.2668042804553,34.896608359964745],[-90.24293928043308,34.9208273599873],[-90.2419932804322,34.93900036000422],[-90.24826428043804,34.94985636001434],[-90.29960428048584,34.97857636004108],[-90.30544828049129,35.00078836006176],[-89.7172702799435,34.999261360060345],[-89.64655827987765,35.000733360061716],[-89.34237327959436,34.99980536006085],[-89.19813427946002,35.000883360061856],[-89.00619627928127,35.00023436006125],[-88.81254827910091,35.00243836006331],[-88.7850432790753,35.003182360063995],[-88.383146278701,35.00504136006573],[-88.35172727867175,35.00383236006461],[-88.19399327852484,35.004453360065185],[-88.14310527847745,34.93031235999613],[-88.10888627844558,34.89993635996784],[-88.09046827842843,34.89562935996383],[-88.13640127847121,34.58049735967034],[-88.15125627848504,34.46527335956303],[-88.16761327850027,34.32414735943159],[-88.19934927852982,34.090448359213944],[-88.2026442785329,34.05912235918477],[-88.24819527857532,33.7427263588901],[-88.2745862785999,33.538801358700184],[-88.30482927862806,33.288894358467445],[-88.33946627866032,32.987497358186744],[-88.3480412786683,32.924758358128315],[-88.39383227871096,32.58047035780767],[-88.42579227874072,32.30922435755505],[-88.43772427875183,32.22775535747918],[-88.47295227878465,31.888876357163575],[-88.46509727877732,31.702245356989756],[-88.45080327876401,31.435617356741442],[-88.4345632787489,31.12087935644832],[-88.4291992787439,31.00069535633639],[-88.41724227873276,30.7364573560903],[-88.40141527871802,30.393551355770942]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Georgia","DRAWSEQ":45,"STATE_FIPS":"13","SUB_REGION":"South Atlantic","STATE_ABBR":"GA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-85.60896027611734,34.99016436005187],[-85.4673842759855,34.99012336005183],[-85.35994427588543,34.989978360051694],[-85.26771727579954,34.98914936005093],[-84.97279327552486,34.99262936005417],[-84.96785727552027,34.992683360054215],[-84.80041727536432,34.99283236005436],[-84.77113427533706,34.99075736005243],[-84.61868427519508,34.988759360050565],[-84.32377327492041,34.989090360050874],[-84.11815227472891,34.98830736005014],[-83.98845427460813,34.989151360050926],[-83.93789927456105,34.98947736005123],[-83.54929727419913,34.98962836005137],[-83.51288727416522,34.99211536005369],[-83.10615727378642,35.00036636006138],[-83.1004502737811,34.984162360046284],[-83.11554227379517,34.95468736001883],[-83.12140127380061,34.96089336002461],[-83.12731527380613,34.95437436001854],[-83.11310127379289,34.93612536000154],[-83.12563627380456,34.94079036000589],[-83.13756227381567,34.93047535999628],[-83.15502627383194,34.93228035999796],[-83.15835327383503,34.91765135998434],[-83.18218027385723,34.910647359977816],[-83.20351327387709,34.88417035995316],[-83.21942827389192,34.88918235995783],[-83.23280327390437,34.87382135994352],[-83.24307327391394,34.87808135994749],[-83.23568827390706,34.86238435993287],[-83.25030627392067,34.85016635992149],[-83.25042127392078,34.83971035991175],[-83.26777127393694,34.839230359911305],[-83.27011427393913,34.81507935988881],[-83.30275327396951,34.80553135987992],[-83.32269027398809,34.78724435986289],[-83.32342427398876,34.752233359830285],[-83.35033427401383,34.72738135980714],[-83.35068527401415,34.70964735979062],[-83.33979027400402,34.67769235976086],[-83.29889527396593,34.66294535974713],[-83.23698727390827,34.61332135970091],[-83.16487927384111,34.59893735968751],[-83.15895027383559,34.576831359666926],[-83.13736627381549,34.56786735965858],[-83.10812127378826,34.53501635962798],[-83.07902127376116,34.518972359613045],[-83.05499527373878,34.490061359586115],[-83.00794927369496,34.4708283595682],[-82.98196327367076,34.476497359573486],[-82.90505527359913,34.477985359574866],[-82.86804327356467,34.45754335955583],[-82.84409227354236,34.41267535951404],[-82.83643927353523,34.37104635947527],[-82.80858327350929,34.33990035944627],[-82.78287027348534,34.290515359400274],[-82.76417027346793,34.28096035939137],[-82.7580282734622,34.233373359347055],[-82.74259327344782,34.205553359321144],[-82.73578127344149,34.169796359287844],[-82.66035527337124,34.108356359230626],[-82.60294427331777,34.034636359161965],[-82.59613827331144,34.01342035914221],[-82.57360827329045,33.96890435910075],[-82.57661527329326,33.95928735909179],[-82.51753827323823,33.93102935906548],[-82.4566312731815,33.8782243590163],[-82.4245252731516,33.86025435899956],[-82.39059627312001,33.85414035899387],[-82.36570827309683,33.83600935897698],[-82.35131127308343,33.83539235897641],[-82.31111827304599,33.80391435894709],[-82.30551027304077,33.78264835892729],[-82.26621827300417,33.76159535890768],[-82.234898272975,33.690339358841314],[-82.21420627295574,33.68073435883237],[-82.19218727293523,33.62384035877938],[-82.16713227291189,33.61521535877135],[-82.13897927288566,33.59390735875151],[-82.11640327286464,33.59477635875231],[-82.0656812728174,33.57386535873284],[-82.03854327279213,33.54750535870829],[-82.020140272775,33.53873235870012],[-81.99653427275301,33.52049035868313],[-81.98091727273847,33.490736358655425],[-81.93638327269699,33.47101935863706],[-81.9166382726786,33.451333358618726],[-81.9272742726885,33.436143358604575],[-81.91356327267573,33.4154413585853],[-81.94033627270066,33.40816335857852],[-81.92580927268715,33.37655935854909],[-81.94506627270508,33.377147358549635],[-81.93671227269729,33.35043735852476],[-81.91141227267373,33.34949535852388],[-81.91209127267436,33.33219635850777],[-81.89348327265704,33.335237358510604],[-81.87687427264157,33.30683735848415],[-81.86554427263101,33.315668358492374],[-81.84010727260733,33.308344358485556],[-81.86071427262651,33.29709135847507],[-81.82657327259471,33.26942435844931],[-81.83984027260708,33.27330835845292],[-81.83679627260425,33.260613358441105],[-81.85396327262023,33.24350135842516],[-81.81076427258,33.22644235840928],[-81.80156327257143,33.20792635839203],[-81.77983427255118,33.217368358400826],[-81.76987827254192,33.21388135839758],[-81.75959327253234,33.19538135838035],[-81.7634082725359,33.16983535835656],[-81.74037427251444,33.14469735833315],[-81.70427927248082,33.122939358312884],[-81.61096227239392,33.08787535828023],[-81.59582527237981,33.07079035826432],[-81.56003527234648,33.06081535825503],[-81.54766027233497,33.04368335823907],[-81.52960027231813,33.0439273582393],[-81.50874927229873,33.0127933582103],[-81.49273527228381,33.00481335820287],[-81.49790027228862,32.959676358160834],[-81.50984027229974,32.95541935815687],[-81.5102362723001,32.947221358149235],[-81.4770482722692,32.897571358102994],[-81.465031272258,32.89772835810314],[-81.48320527227493,32.876092358082985],[-81.45853927225195,32.87140035807862],[-81.45531927224896,32.84457635805364],[-81.43233127222756,32.84168135805094],[-81.42396127221976,32.83177135804171],[-81.43030927222567,32.820305358031035],[-81.42083327221684,32.80949435802096],[-81.4302402722256,32.786153357999225],[-81.4160722722124,32.756728357971824],[-81.42303727221889,32.74981235796538],[-81.40762627220454,32.74180635795793],[-81.42053527221657,32.70156735792045],[-81.40719127220414,32.686702357906604],[-81.39947827219696,32.650815357873185],[-81.41210527220872,32.62560935784971],[-81.38490627218339,32.595883357822025],[-81.36626727216603,32.58836535781502],[-81.36670227216644,32.581979357809075],[-81.35148927215226,32.58352835781052],[-81.34040427214194,32.571360357799186],[-81.29898327210336,32.567287357795394],[-81.27430227208038,32.554814357783776],[-81.2679852720745,32.53392935776432],[-81.23624027204492,32.520614357751924],[-81.19515727200667,32.464560357699725],[-81.19992727201111,32.420316357658514],[-81.17825227199093,32.38682935762733],[-81.17912327199173,32.371781357613315],[-81.15747927197158,32.33874035758254],[-81.14188427195705,32.3484673575916],[-81.13189027194774,32.33261835757684],[-81.12404827194044,32.27664435752471],[-81.1481732719629,32.25771335750708],[-81.14769227196246,32.2244463574761],[-81.11471827193175,32.19059335744457],[-81.11911227193585,32.1176143573766],[-81.10487527192258,32.10544635736527],[-80.8947532717269,32.00599435727265],[-80.97355627180029,31.94792835721857],[-80.9708752717978,31.89031435716491],[-81.13985127195517,31.86434035714072],[-81.17999827199255,31.90589135717942],[-81.20725827201794,31.900120357174046],[-81.19730227200867,31.91989535719246],[-81.20391027201482,31.928432357200414],[-81.23968327204814,31.903415357177114],[-81.28429427208968,31.949428357219965],[-81.24494727205304,31.894691357168988],[-81.20648827201722,31.920650357193164],[-81.2201052720299,31.893140357167546],[-81.18025027199279,31.897672357171764],[-81.14146827195667,31.85351635713064],[-81.03901127186124,31.82336035710256],[-81.06104227188176,31.777543357059884],[-81.13682427195234,31.727073357012884],[-81.17401227198697,31.799811357080625],[-81.1963662720078,31.784844357066685],[-81.17517727198806,31.73580235702101],[-81.28972927209475,31.79966535708049],[-81.13493727195058,31.646070356937443],[-81.18718927199924,31.599898356894442],[-81.2407192720491,31.64017335693195],[-81.23914527204764,31.556883356854378],[-81.19477027200631,31.5051523568062],[-81.20857127201916,31.466897356770573],[-81.31306627211647,31.337597356650154],[-81.36558127216539,31.344554356656634],[-81.41034427220707,31.31148035662583],[-81.39477127219257,31.264090356581697],[-81.38881327218702,31.297149356612486],[-81.30083527210509,31.27581935659262],[-81.31024927211385,31.242695356561768],[-81.38100627217975,31.148945356474457],[-81.52838827231702,31.131128356457864],[-81.5252592723141,31.086548356416344],[-81.47533727226761,31.043823356376556],[-81.53542927232357,31.076756356407227],[-81.49085527228206,30.985812356322526],[-81.52856127231718,30.962119356300462],[-81.48482727227645,30.94490035628443],[-81.52926927231783,30.864778356209808],[-81.49838227228906,30.75751435610991],[-81.5285952723172,30.721452356076327],[-81.53659127232466,30.70657735606247],[-81.60117027238479,30.724887356079524],[-81.60477127238815,30.716321356071546],[-81.62798127240977,30.731774356085936],[-81.64247727242326,30.72908135608343],[-81.71676927249246,30.7453693560986],[-81.736675272511,30.763888356115846],[-81.75771027253059,30.769631356121195],[-81.77670827254828,30.7615843561137],[-81.80319827257296,30.78808535613838],[-81.87300227263796,30.799084356148626],[-81.8991412726623,30.828308356175842],[-81.9075182726701,30.81347535616203],[-81.9438052727039,30.82424935617206],[-81.95302927271248,30.820431356168505],[-81.96155127272043,30.796007356145758],[-81.98148027273899,30.778351356129313],[-82.01553827277071,30.791319356141393],[-82.01296727276831,30.76425635611619],[-82.03188127278592,30.757532356109927],[-82.04491127279806,30.650910356010627],[-82.01365227276895,30.598690355961992],[-82.00580127276164,30.570990355936196],[-82.0225092727772,30.47771735584933],[-82.03512027278894,30.44287835581688],[-82.04609927279917,30.434068355808677],[-82.03835427279195,30.3789043557573],[-82.05276727280538,30.36379435574323],[-82.16463927290957,30.361291355740896],[-82.1802342729241,30.368631355747734],[-82.20556527294768,30.423853355799164],[-82.19918727294174,30.49001435586078],[-82.21936727296054,30.502970355872847],[-82.23839627297826,30.531444355899367],[-82.22103927296209,30.56707635593255],[-82.41209227314003,30.57730735594208],[-82.46313527318756,30.58268935594709],[-82.58295727329916,30.58905335595302],[-82.69635627340477,30.595720355959227],[-83.1324402738109,30.62134135598309],[-83.30131527396819,30.63328535599421],[-83.31060027397683,30.634303355995158],[-83.60905627425478,30.65078435601051],[-83.73784427437472,30.66049135601955],[-84.00073027461956,30.675537356033562],[-84.07556227468925,30.678577356036392],[-84.2816632748812,30.69041935604742],[-84.37444827496762,30.694092356050845],[-84.86300327542261,30.71266435606814],[-84.86458327542408,30.714503356069855],[-84.88828927544617,30.74388935609722],[-84.91534327547136,30.754089356106718],[-84.92689527548212,30.776088356127207],[-84.9325642754874,30.80262535615192],[-84.92692627548215,30.846922356193176],[-84.93777627549225,30.894957356237914],[-84.96901227552135,30.927093356267843],[-84.97356727552558,30.9636643563019],[-85.00014227555033,30.97931935631648],[-85.0016072755517,31.00125335633691],[-85.01699527556603,31.080102356410343],[-85.03806827558566,31.126713356453752],[-85.06866227561414,31.162364356486954],[-85.09336727563716,31.172211356496128],[-85.10295727564609,31.19692235651914],[-85.09360327563738,31.22707435654722],[-85.10336127564646,31.271436356588538],[-85.08122827562585,31.303080356618008],[-85.0825632756271,31.332334356645255],[-85.0879422756321,31.367234356677756],[-85.0614062756074,31.440663356746143],[-85.06631227561196,31.476089356779134],[-85.04269827558997,31.519660356819713],[-85.04272127559,31.554389356852056],[-85.05928527560542,31.621265356914343],[-85.11120527565377,31.684242356972995],[-85.11867427566072,31.708571356995648],[-85.11528727565758,31.731566357017066],[-85.13016527567143,31.778853357061106],[-85.13156127567272,31.783814357065726],[-85.13556727567646,31.854884357131915],[-85.11515027565744,31.907424357180847],[-85.07006727561546,31.98070335724909],[-85.056700275603,32.01737635728325],[-85.06201027560796,32.05001035731364],[-85.05665527560296,32.069644357331924],[-85.04618727559321,32.09089535735172],[-85.05331327559986,32.12663735738501],[-85.0243822755729,32.166275357421924],[-85.00782627555749,32.17887835743366],[-84.9603852755133,32.19192835744581],[-84.97574427552762,32.21224835746474],[-84.9283712754835,32.21797835747007],[-84.91600427547198,32.228556357479924],[-84.92367927547913,32.24738935749747],[-84.90536127546207,32.24955535749948],[-84.89401627545149,32.25917635750844],[-84.89460327545204,32.26873535751734],[-84.92107127547669,32.29313735754007],[-85.00533227555518,32.32959235757402],[-85.00209027555215,32.347078357590306],[-84.97166327552381,32.37150335761305],[-84.98448927553576,32.38709335762758],[-84.97096227552316,32.39681235763663],[-84.96538527551796,32.42945035766702],[-84.98981527554072,32.45483635769067],[-84.99565227554615,32.518928357750355],[-85.07077427561612,32.5812533578084],[-85.08414927562858,32.60300435782865],[-85.0863242756306,32.628451357852356],[-85.10380327564688,32.645910357868615],[-85.09047527563446,32.67615235789678],[-85.10773327565053,32.68997235790965],[-85.11386827565624,32.73438935795102],[-85.12488527566651,32.744383357960324],[-85.13330027567434,32.75631535797144],[-85.12809027566949,32.777070357990766],[-85.16230127570135,32.80744535801906],[-85.18071927571852,32.871813358079],[-85.23350327576767,33.120139358310276],[-85.23384627576799,33.12923735831875],[-85.29382527582385,33.425875358595015],[-85.30498027583424,33.49059435865529],[-85.33528727586247,33.65492335880833],[-85.38401127590784,33.90540935904161],[-85.39573827591876,33.959829359092296],[-85.41656727593816,34.08692035921066],[-85.46028627597887,34.290161359399946],[-85.5118562760269,34.52301435961681],[-85.52583427603993,34.58468535967424],[-85.53469227604818,34.62248835970945],[-85.58305827609321,34.86232235993281],[-85.60896027611734,34.99016436005187]]],[[[-81.48505527227665,30.903883356246226],[-81.41640527221271,30.97060035630836],[-81.40305227220028,30.938803356278747],[-81.45571627224933,30.716427356071645],[-81.47946027227144,30.736883356090694],[-81.46988727226253,30.860259356205596],[-81.50330527229366,30.881735356225597],[-81.48505527227665,30.903883356246226]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"South Carolina","DRAWSEQ":46,"STATE_FIPS":"45","SUB_REGION":"South Atlantic","STATE_ABBR":"SC"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-83.10615727378642,35.00036636006138],[-83.00714627369422,35.02429336008366],[-82.88755627358283,35.0554733601127],[-82.77120127347447,35.08553736014069],[-82.69720827340556,35.09134936014611],[-82.68788427339688,35.09791836015222],[-82.68590027339503,35.12158036017426],[-82.65434427336564,35.11957436017239],[-82.56987627328698,35.14960736020036],[-82.5244792732447,35.154677360205085],[-82.46658627319077,35.17361736022272],[-82.43776127316393,35.16967636021906],[-82.38945027311894,35.20835636025508],[-82.37121627310196,35.18283936023131],[-82.35996227309148,35.183064360231526],[-82.35070027308285,35.192788360240584],[-82.32060927305483,35.184303360232676],[-82.2781652730153,35.19512136024275],[-82.21001027295182,35.193241360241004],[-81.97127227272948,35.18840036023649],[-81.87041627263555,35.183237360231686],[-81.76518127253755,35.18259636023109],[-81.36198027216203,35.16298636021283],[-81.32262527212538,35.16389136021367],[-81.04909927187065,35.151672360202284],[-81.04883927187039,35.132153360184105],[-81.02824027185122,35.10555136015934],[-81.06535027188578,35.06662536012308],[-81.03968527186187,35.03734536009581],[-80.92759227175748,35.10139436015547],[-80.89451027172667,35.0598803601168],[-80.83995927167587,35.00216636006305],[-80.7854442716251,34.94078836000588],[-80.79985627163852,34.81626035988991],[-80.56133527141637,34.81537935988909],[-80.32506527119634,34.814916359888656],[-79.91973627081885,34.80807435988228],[-79.68573827060091,34.80541235987981],[-79.66728227058373,34.80082035987553],[-79.45574127038671,34.634252359720406],[-79.44691327037849,34.619222359706406],[-79.07425727003142,34.30473835941352],[-78.65545326964138,33.94884535908207],[-78.5794532695706,33.88216435901997],[-78.62259226961078,33.86570835900464],[-78.58593126957663,33.8535313589933],[-78.85488126982712,33.71636235886555],[-79.00069526996292,33.57262935873169],[-79.12086627007483,33.43077835859958],[-79.1501502701021,33.31725635849386],[-79.15811527010952,33.342433358517304],[-79.27084627021452,33.29703835847503],[-79.20191127015032,33.18368835836946],[-79.22956227017606,33.14150535833018],[-79.34875527028707,33.154994358342734],[-79.29783427023965,33.138961358327805],[-79.28787727023037,33.10469835829589],[-79.41061827034468,33.013868358211305],[-79.58235727050463,33.0160133582133],[-79.61723327053711,32.98096835818066],[-79.58764627050955,32.92510635812864],[-79.6068122705274,32.89924335810455],[-79.75232027066292,32.79423535800675],[-79.90748627080742,32.790707358003466],[-79.79985927070719,32.929956358133154],[-79.9071412708071,32.85938935806743],[-79.93025027082864,32.914221358118496],[-79.96211927085831,32.90441035810936],[-79.94798427084514,32.81079935802218],[-79.89165527079268,32.73403035795069],[-79.8963932707971,32.67742135789796],[-79.99661727089044,32.60578735783125],[-80.21080327108992,32.561601357790096],[-80.29065427116429,32.504070357736516],[-80.34717427121691,32.51195535774386],[-80.39086827125762,32.65540135787745],[-80.41599227128101,32.66916035789027],[-80.39980327126594,32.504960357737346],[-80.48070727134129,32.51043435774244],[-80.55039427140619,32.55784135778659],[-80.53888227139547,32.50986635774191],[-80.64641127149561,32.51887935775031],[-80.64355827149295,32.49846035773129],[-80.48607227134627,32.431031357668495],[-80.44279727130598,32.37350735761492],[-80.46039227132236,32.318685357563865],[-80.62602827147663,32.27282135752115],[-80.67801427152504,32.28566535753311],[-80.7419632715846,32.360212357602535],[-80.79938227163807,32.47330735770787],[-80.78478627162448,32.50505235773743],[-80.83051727166708,32.516281357747886],[-80.86717727170121,32.532695357763174],[-80.82186627165902,32.40071035764026],[-80.78056127162054,32.248123357498145],[-80.89291427172518,32.06817335733056],[-81.10487527192258,32.10544635736527],[-81.11911227193585,32.1176143573766],[-81.11471827193175,32.19059335744457],[-81.14769227196246,32.2244463574761],[-81.1481732719629,32.25771335750708],[-81.12404827194044,32.27664435752471],[-81.13189027194774,32.33261835757684],[-81.14188427195705,32.3484673575916],[-81.15747927197158,32.33874035758254],[-81.17912327199173,32.371781357613315],[-81.17825227199093,32.38682935762733],[-81.19992727201111,32.420316357658514],[-81.19515727200667,32.464560357699725],[-81.23624027204492,32.520614357751924],[-81.2679852720745,32.53392935776432],[-81.27430227208038,32.554814357783776],[-81.29898327210336,32.567287357795394],[-81.34040427214194,32.571360357799186],[-81.35148927215226,32.58352835781052],[-81.36670227216644,32.581979357809075],[-81.36626727216603,32.58836535781502],[-81.38490627218339,32.595883357822025],[-81.41210527220872,32.62560935784971],[-81.39947827219696,32.650815357873185],[-81.40719127220414,32.686702357906604],[-81.42053527221657,32.70156735792045],[-81.40762627220454,32.74180635795793],[-81.42303727221889,32.74981235796538],[-81.4160722722124,32.756728357971824],[-81.4302402722256,32.786153357999225],[-81.42083327221684,32.80949435802096],[-81.43030927222567,32.820305358031035],[-81.42396127221976,32.83177135804171],[-81.43233127222756,32.84168135805094],[-81.45531927224896,32.84457635805364],[-81.45853927225195,32.87140035807862],[-81.48320527227493,32.876092358082985],[-81.465031272258,32.89772835810314],[-81.4770482722692,32.897571358102994],[-81.5102362723001,32.947221358149235],[-81.50984027229974,32.95541935815687],[-81.49790027228862,32.959676358160834],[-81.49273527228381,33.00481335820287],[-81.50874927229873,33.0127933582103],[-81.52960027231813,33.0439273582393],[-81.54766027233497,33.04368335823907],[-81.56003527234648,33.06081535825503],[-81.59582527237981,33.07079035826432],[-81.61096227239392,33.08787535828023],[-81.70427927248082,33.122939358312884],[-81.74037427251444,33.14469735833315],[-81.7634082725359,33.16983535835656],[-81.75959327253234,33.19538135838035],[-81.76987827254192,33.21388135839758],[-81.77983427255118,33.217368358400826],[-81.80156327257143,33.20792635839203],[-81.81076427258,33.22644235840928],[-81.85396327262023,33.24350135842516],[-81.83679627260425,33.260613358441105],[-81.83984027260708,33.27330835845292],[-81.82657327259471,33.26942435844931],[-81.86071427262651,33.29709135847507],[-81.84010727260733,33.308344358485556],[-81.86554427263101,33.315668358492374],[-81.87687427264157,33.30683735848415],[-81.89348327265704,33.335237358510604],[-81.91209127267436,33.33219635850777],[-81.91141227267373,33.34949535852388],[-81.93671227269729,33.35043735852476],[-81.94506627270508,33.377147358549635],[-81.92580927268715,33.37655935854909],[-81.94033627270066,33.40816335857852],[-81.91356327267573,33.4154413585853],[-81.9272742726885,33.436143358604575],[-81.9166382726786,33.451333358618726],[-81.93638327269699,33.47101935863706],[-81.98091727273847,33.490736358655425],[-81.99653427275301,33.52049035868313],[-82.020140272775,33.53873235870012],[-82.03854327279213,33.54750535870829],[-82.0656812728174,33.57386535873284],[-82.11640327286464,33.59477635875231],[-82.13897927288566,33.59390735875151],[-82.16713227291189,33.61521535877135],[-82.19218727293523,33.62384035877938],[-82.21420627295574,33.68073435883237],[-82.234898272975,33.690339358841314],[-82.26621827300417,33.76159535890768],[-82.30551027304077,33.78264835892729],[-82.31111827304599,33.80391435894709],[-82.35131127308343,33.83539235897641],[-82.36570827309683,33.83600935897698],[-82.39059627312001,33.85414035899387],[-82.4245252731516,33.86025435899956],[-82.4566312731815,33.8782243590163],[-82.51753827323823,33.93102935906548],[-82.57661527329326,33.95928735909179],[-82.57360827329045,33.96890435910075],[-82.59613827331144,34.01342035914221],[-82.60294427331777,34.034636359161965],[-82.66035527337124,34.108356359230626],[-82.73578127344149,34.169796359287844],[-82.74259327344782,34.205553359321144],[-82.7580282734622,34.233373359347055],[-82.76417027346793,34.28096035939137],[-82.78287027348534,34.290515359400274],[-82.80858327350929,34.33990035944627],[-82.83643927353523,34.37104635947527],[-82.84409227354236,34.41267535951404],[-82.86804327356467,34.45754335955583],[-82.90505527359913,34.477985359574866],[-82.98196327367076,34.476497359573486],[-83.00794927369496,34.4708283595682],[-83.05499527373878,34.490061359586115],[-83.07902127376116,34.518972359613045],[-83.10812127378826,34.53501635962798],[-83.13736627381549,34.56786735965858],[-83.15895027383559,34.576831359666926],[-83.16487927384111,34.59893735968751],[-83.23698727390827,34.61332135970091],[-83.29889527396593,34.66294535974713],[-83.33979027400402,34.67769235976086],[-83.35068527401415,34.70964735979062],[-83.35033427401383,34.72738135980714],[-83.32342427398876,34.752233359830285],[-83.32269027398809,34.78724435986289],[-83.30275327396951,34.80553135987992],[-83.27011427393913,34.81507935988881],[-83.26777127393694,34.839230359911305],[-83.25042127392078,34.83971035991175],[-83.25030627392067,34.85016635992149],[-83.23568827390706,34.86238435993287],[-83.24307327391394,34.87808135994749],[-83.23280327390437,34.87382135994352],[-83.21942827389192,34.88918235995783],[-83.20351327387709,34.88417035995316],[-83.18218027385723,34.910647359977816],[-83.15835327383503,34.91765135998434],[-83.15502627383194,34.93228035999796],[-83.13756227381567,34.93047535999628],[-83.12563627380456,34.94079036000589],[-83.11310127379289,34.93612536000154],[-83.12731527380613,34.95437436001854],[-83.12140127380061,34.96089336002461],[-83.11554227379517,34.95468736001883],[-83.1004502737811,34.984162360046284],[-83.10615727378642,35.00036636006138]]],[[[-80.76780527160867,32.25864835750795],[-80.71908327156329,32.27220435752058],[-80.66661627151443,32.22011335747206],[-80.8192672716566,32.10469835736457],[-80.76780527160867,32.25864835750795]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Arkansas","DRAWSEQ":47,"STATE_FIPS":"05","SUB_REGION":"West South Central","STATE_ABBR":"AR"},"geometry":{"type":"Polygon","coordinates":[[[-94.61725728450698,36.489414361448155],[-94.0810522840076,36.49102436144966],[-93.85752028379942,36.48978636144851],[-93.59644928355627,36.489958361448664],[-93.32834628330659,36.490261361448944],[-93.29732428327769,36.49068136144933],[-92.8522752828632,36.489884361448595],[-92.7776352827937,36.48998336144869],[-92.5230502825566,36.490921361449566],[-92.14631928220574,36.49166036145025],[-92.12764228218833,36.491435361450044],[-91.68856028177942,36.49101836144965],[-91.45298928156002,36.49043836144911],[-91.41179628152166,36.49110136144973],[-91.1339562812629,36.488015361446855],[-90.804434280956,36.48926536144802],[-90.5817322807486,36.49102236144965],[-90.22447328041588,36.49281136145132],[-90.15025928034676,36.491873361450445],[-90.13737228033476,36.457476361418415],[-90.11732228031609,36.45395536141513],[-90.12392928032223,36.42262636138595],[-90.11692528031571,36.40497636136952],[-90.08027228028158,36.39745036136251],[-90.05215728025539,36.3826153613487],[-90.05029528025366,36.362668361330115],[-90.06772928026989,36.325395361295406],[-90.04984528025324,36.30053636127225],[-90.06618728026845,36.272338361245986],[-90.11001228030928,36.2580593612327],[-90.13131328032911,36.21213536118992],[-90.16140528035714,36.19700636117583],[-90.21932128041108,36.17263136115313],[-90.23232228042319,36.1612133611425],[-90.23493928042562,36.137155361120094],[-90.2638012804525,36.118829361103025],[-90.28485128047211,36.11597236110036],[-90.3153392805005,36.09172336107778],[-90.37906228055985,35.98965636098272],[-90.2835542804709,35.99122836098418],[-89.96329128017263,35.99690836098948],[-89.72183627994775,35.99995136099231],[-89.71321527993973,35.96639736096106],[-89.66427127989415,35.937894360934514],[-89.64547927987664,35.91387336091215],[-89.64941627988031,35.89436236089397],[-89.66472827989458,35.885721360885924],[-89.71476327994117,35.91150136090994],[-89.73805627996286,35.915087360913276],[-89.76299027998608,35.89688736089633],[-89.76635527998921,35.884177360884486],[-89.75779427998124,35.87149336087268],[-89.70151827992883,35.84211336084531],[-89.70090827992827,35.827590360831785],[-89.73601927996097,35.80711436081272],[-89.75987727998319,35.81749736082239],[-89.79046428001168,35.805630360811335],[-89.79998628002053,35.774300360782156],[-89.82712428004581,35.7583473607673],[-89.85995528007639,35.74826936075792],[-89.90986828012288,35.754914360764104],[-89.95112128016129,35.734345360744946],[-89.95212128016223,35.712564360724656],[-89.92982728014147,35.676344360690926],[-89.89348728010762,35.656050360672026],[-89.86526528008133,35.673384360688175],[-89.85733028007394,35.67114136068608],[-89.84928128006645,35.64530136066202],[-89.86392228008009,35.6298253606476],[-89.87752628009275,35.633414360650946],[-89.9571332801669,35.60318336062279],[-89.95811828016781,35.57867436059996],[-89.92174728013394,35.546140360569666],[-89.93126128014279,35.529313360554],[-89.94763428015804,35.52698236055183],[-89.96236028017177,35.532373360556846],[-89.9896742801972,35.56175636058421],[-90.03314028023767,35.552495360575584],[-90.040991280245,35.54292836056668],[-90.04190628024584,35.51252136053836],[-89.99965328020649,35.44553736047597],[-90.04687328025047,35.41718736044957],[-90.06038528026305,35.41349436044613],[-90.07402728027576,35.42659036045833],[-90.0749352802766,35.47242636050102],[-90.08232028028348,35.47828936050647],[-90.10205128030186,35.47365136050216],[-90.13736828033475,35.44260736047325],[-90.17277028036771,35.42380136045573],[-90.1679102803632,35.38433936041898],[-90.14026028033744,35.38313036041785],[-90.13256228033028,35.40768536044072],[-90.11233528031144,35.41777436045011],[-90.08525028028622,35.418365360450665],[-90.0755682802772,35.40661336043972],[-90.08722628028805,35.38159336041642],[-90.10571328030527,35.366067360401956],[-90.09879328029882,35.34567836038297],[-90.10643828030595,35.31477236035418],[-90.1570832803531,35.30633136034633],[-90.169840280365,35.282653360324275],[-90.15221628034858,35.26414536030704],[-90.10603428030556,35.263935360306846],[-90.09019528029081,35.254486360298046],[-90.06905328027112,35.21282636025924],[-90.07339428027517,35.19192236023977],[-90.06252228026504,35.167005360216564],[-90.064628280267,35.14747436019838],[-90.08301628028413,35.12514036017758],[-90.14382328034077,35.136626360188274],[-90.16456828036009,35.12970336018183],[-90.178439280373,35.108738360162306],[-90.16917628036437,35.0779193601336],[-90.19580428038917,35.04099036009921],[-90.29190628047867,35.048551360106245],[-90.30544828049129,35.00078836006176],[-90.29960428048584,34.97857636004108],[-90.24826428043804,34.94985636001434],[-90.2419932804322,34.93900036000422],[-90.24293928043308,34.9208273599873],[-90.2668042804553,34.896608359964745],[-90.29636928048284,34.88278735995187],[-90.29954328048579,34.865057359935356],[-90.30164928048775,34.85187435992308],[-90.32292028050756,34.85036335992167],[-90.34152128052489,34.860674359931274],[-90.4040302805831,34.84113535991308],[-90.42241028060022,34.83236535990491],[-90.43364828061068,34.835451359907786],[-90.42794128060537,34.872739359942514],[-90.43818828061491,34.886277359955116],[-90.47062928064513,34.88102035995023],[-90.47481828064903,34.85782335992862],[-90.45200528062777,34.82531535989835],[-90.46680728064156,34.799761359874545],[-90.44896928062495,34.7608493598383],[-90.45153228062733,34.7412993598201],[-90.48602628065946,34.72693335980672],[-90.50452028067669,34.72995435980953],[-90.51707128068837,34.748470359826776],[-90.4988362806714,34.765884359843],[-90.50138428067376,34.78993135986539],[-90.51614728068752,34.80570035988008],[-90.52736328069795,34.80742135988168],[-90.54784928071705,34.790434359865856],[-90.53338328070357,34.71335235979407],[-90.51366828068521,34.702168359783656],[-90.47008028064461,34.70435435978569],[-90.46632628064111,34.67214035975569],[-90.50891428068078,34.638166359724046],[-90.53906728070886,34.63699535972296],[-90.54765028071685,34.65190635973684],[-90.53916628070895,34.686047359768644],[-90.56116228072943,34.700386359781994],[-90.57940528074643,34.645711359731074],[-90.58809528075453,34.627916359714504],[-90.57771928074486,34.604845359693016],[-90.53072028070109,34.555751359647296],[-90.53725128070717,34.54343035963582],[-90.56578628073375,34.53261135962575],[-90.5804502807474,34.5203243596143],[-90.59015528075645,34.49660935959221],[-90.57450528074186,34.45404935955258],[-90.57922828074626,34.43310335953307],[-90.60389428076924,34.40470335950662],[-90.65734628081901,34.36601435947059],[-90.65791828081954,34.330111359437154],[-90.6794402808396,34.318079359425944],[-90.68948128084895,34.32024935942796],[-90.68124228084127,34.36350435946825],[-90.68759028084719,34.37797635948173],[-90.75541828091035,34.37226935947641],[-90.76196428091644,34.36401835946873],[-90.74786328090332,34.3178233594257],[-90.7583602809131,34.27908135938962],[-90.79263328094501,34.30006135940916],[-90.80652628095795,34.29945135940859],[-90.82394428097417,34.2774443593881],[-90.83146628098118,34.22963935934358],[-90.86351828101103,34.21926735933392],[-90.92854528107159,34.250298359362816],[-90.9338172810765,34.23478035934836],[-90.92159428106511,34.20493535932057],[-90.82302728097332,34.19065035930727],[-90.80761528095897,34.16627835928457],[-90.82897028097885,34.14876535926826],[-90.84671628099538,34.14765135926722],[-90.92902528107204,34.185754359302706],[-90.95345528109479,34.15590835927491],[-90.94235428108445,34.1260483592471],[-90.90641828105099,34.1028553592255],[-90.86643828101376,34.101059359223825],[-90.88645028103238,34.04081835916772],[-90.95057728109211,34.03139535915895],[-90.97347328111343,34.01110435914005],[-90.9753812811152,33.99471335912479],[-90.96123528110203,33.978981359110136],[-90.96489728110545,33.9675683590995],[-90.98692428112597,33.960923359093314],[-91.00036828113848,33.96847935910036],[-91.00965328114712,33.99063435912099],[-91.03116928116717,33.98580535911649],[-91.06980528120314,34.00620135913549],[-91.088963281221,33.99457335912466],[-91.07581728120876,33.97474935910619],[-91.01857228115544,33.93641335907049],[-91.0614802811954,33.86718835900602],[-91.0549262811893,33.84363335898408],[-91.02896228116511,33.816695358958995],[-90.99047828112927,33.79900735894252],[-90.98414628112337,33.78545035892989],[-90.99548328113393,33.77166035891705],[-91.01854028115541,33.76408335891],[-91.04351228117866,33.76966435891519],[-91.06650028120008,33.786635358931],[-91.10552628123642,33.7765483589216],[-91.13709728126582,33.780195358925],[-91.14300228127132,33.7719283589173],[-91.13811128126676,33.723334358872044],[-91.12905528125833,33.712550358862],[-91.10467828123562,33.70834335885809],[-91.05632228119059,33.71946735886844],[-91.0389332811744,33.70560135885553],[-91.03794128117347,33.68332735883479],[-91.08387928121626,33.66269735881557],[-91.12115828125097,33.67763935882949],[-91.16341128129032,33.71842435886747],[-91.21179128133538,33.709074358858764],[-91.21525528133861,33.690832358841774],[-91.20542028132945,33.670054358822426],[-91.15451528128204,33.63714235879177],[-91.15076128127855,33.616272358772335],[-91.16813328129473,33.57735635873609],[-91.18791728131315,33.5747923587337],[-91.2268432813494,33.59059235874842],[-91.22774328135024,33.55646235871663],[-91.21359828133707,33.539388358700734],[-91.20421328132832,33.53861835870001],[-91.18295728130853,33.5234633586859],[-91.18051628130625,33.512126358675346],[-91.20775328133162,33.47351035863938],[-91.2272622813498,33.459567358626394],[-91.2329622813551,33.443557358611486],[-91.18188128130753,33.447502358615154],[-91.17184028129817,33.466758358633086],[-91.17429028130046,33.50448135866822],[-91.16508828129189,33.511893358675124],[-91.12890828125819,33.49330435865781],[-91.11906628124903,33.46978735863591],[-91.11982128124973,33.452946358620224],[-91.1306252812598,33.44323835861118],[-91.19894128132341,33.422226358591615],[-91.20427428132838,33.41441435858434],[-91.18509328131051,33.391946358563416],[-91.13774328126642,33.388994358560666],[-91.09923728123056,33.4150133585849],[-91.08590828121815,33.46297135862956],[-91.07386828120694,33.466320358632686],[-91.06108828119503,33.46012535862691],[-91.06162228119553,33.43191235860064],[-91.07879728121152,33.410295358580505],[-91.10704928123783,33.39352235856488],[-91.1305332812597,33.359518358533215],[-91.14185528127025,33.32250135849874],[-91.12261328125233,33.268623358448565],[-91.10301328123408,33.24932935843059],[-91.07643128120932,33.29247635847078],[-91.05393928118838,33.29369335847191],[-91.0405342811759,33.28204035846106],[-91.05464928118903,33.2459003584274],[-91.09211028122392,33.22581635840869],[-91.08642628121864,33.16172335834901],[-91.09596328122751,33.14520535833362],[-91.12143828125124,33.131190358320566],[-91.17773728130366,33.15040835833847],[-91.19561328132032,33.14058535832932],[-91.1906462813157,33.113345358303945],[-91.14689828127494,33.09077435828293],[-91.11789828124795,33.065693358259566],[-91.1240932812537,33.047395358242525],[-91.15679428128416,33.040555358236155],[-91.16078428128787,33.02183335821872],[-91.16224128128924,33.01316235821065],[-91.25472728137537,33.013601358211055],[-91.42764428153642,33.013545358211005],[-91.4544702815614,33.01399935821142],[-92.06344128212855,33.01015135820784],[-92.71723628273745,33.01683935821407],[-92.97898928298122,33.01827435821541],[-93.23254328321735,33.019375358216436],[-93.47907028344696,33.02152835821843],[-93.51191528347755,33.02128735821822],[-93.80993128375509,33.02272935821956],[-94.03893128396837,33.0234223582202],[-94.03669128396628,33.27045335845027],[-94.03611628396574,33.55603435871623],[-94.0616222839895,33.57733535873607],[-94.08684628401299,33.58407535874235],[-94.09889328402421,33.57312035873215],[-94.15536028407679,33.56720635872664],[-94.15971028408084,33.5938943587515],[-94.20554128412353,33.5852003587434],[-94.21108028412868,33.558108358718165],[-94.2355642841515,33.56165635872147],[-94.22323428414,33.585840358743994],[-94.23743328415324,33.592543358750234],[-94.27474228418798,33.56185735872166],[-94.27227828418569,33.584726358742955],[-94.27918228419212,33.58945235874736],[-94.29901928421059,33.57997235873853],[-94.30258228421391,33.55705435871718],[-94.32895028423846,33.57325435873227],[-94.37095928427759,33.547802358708566],[-94.39546528430041,33.56042135872032],[-94.37250828427904,33.57278035873183],[-94.37082928427746,33.590160358748015],[-94.37931428428537,33.59344435875107],[-94.3936192842987,33.57507735873397],[-94.40677228431095,33.573604358732595],[-94.42867028433133,33.59725835875463],[-94.44353228434518,33.596621358754035],[-94.45175728435284,33.60446435876134],[-94.43653628433866,33.616961358772976],[-94.43611728433827,33.63656135879123],[-94.47669128437606,33.63208135878706],[-94.46858528436852,33.93931135907319],[-94.46169128436209,34.19676535931296],[-94.45262428435365,34.508432359603226],[-94.44596128434745,34.7356083598148],[-94.43932228434126,34.929151359995046],[-94.42855228433123,35.40054636043407],[-94.46848528436841,35.64108836065809],[-94.48593528438467,35.760310360769125],[-94.54241728443728,36.10683536109185],[-94.55311328444724,36.16452536114558],[-94.60745328449784,36.478790361438264],[-94.61725728450698,36.489414361448155]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Louisiana","DRAWSEQ":48,"STATE_FIPS":"22","SUB_REGION":"West South Central","STATE_ABBR":"LA"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-94.03893128396837,33.0234223582202],[-93.80993128375509,33.02272935821956],[-93.51191528347755,33.02128735821822],[-93.47907028344696,33.02152835821843],[-93.23254328321735,33.019375358216436],[-92.97898928298122,33.01827435821541],[-92.71723628273745,33.01683935821407],[-92.06344128212855,33.01015135820784],[-91.4544702815614,33.01399935821142],[-91.42764428153642,33.013545358211005],[-91.25472728137537,33.013601358211055],[-91.16224128128924,33.01316235821065],[-91.16197428128899,33.00041835819878],[-91.20927028133303,32.93597835813876],[-91.19842128132294,32.91428835811856],[-91.16980928129628,32.905148358110054],[-91.137285281266,32.91791235812194],[-91.13004428125926,32.93759135814027],[-91.13246328126151,32.97534835817543],[-91.11192428124238,32.98747535818672],[-91.09278128122455,32.987746358186975],[-91.07569828120864,32.953838358155394],[-91.0796352812123,32.8772903580841],[-91.14225928127063,32.841342358050625],[-91.15645028128384,32.76281135797749],[-91.13657528126534,32.751256357966724],[-91.09781728122924,32.74952835796512],[-91.0591352811932,32.72365035794102],[-91.13966528126821,32.663308357884816],[-91.14637228127445,32.64498635786775],[-91.1111002812416,32.597663357823684],[-91.06391928119767,32.60652435783194],[-91.04773728118259,32.61448935783935],[-91.02757228116381,32.64163735786464],[-91.00798728114557,32.642808357865725],[-90.99623728113464,32.626112357850175],[-90.99876328113699,32.61560335784039],[-91.03243228116834,32.58280935780985],[-91.05897528119307,32.576526357804],[-91.07337228120647,32.561749357790234],[-91.063194281197,32.54229835777212],[-90.99517728113365,32.5117823577437],[-90.99215628113083,32.49542135772846],[-91.01979028115657,32.490954357724306],[-91.03730828117288,32.49709535773002],[-91.08889128122092,32.548775357778155],[-91.11885228124883,32.52420635775527],[-91.11779228124784,32.49870935773153],[-91.05861728119272,32.447140357683494],[-91.0270152811633,32.44255935767923],[-90.98755528112655,32.45310635768905],[-90.96559028110609,32.44017935767701],[-90.97009128111029,32.41916035765744],[-91.00931528114681,32.39722735763701],[-90.99896928113718,32.36637835760828],[-90.98467228112386,32.35654135759912],[-90.915029281059,32.346043357589345],[-90.88525928103128,32.381500357622365],[-90.87545528102214,32.37979535762078],[-90.91647928106036,32.30546435755155],[-90.92935028107235,32.29755335754418],[-90.97176328111185,32.30384735755004],[-90.98087228112033,32.29780035754441],[-90.98392428112317,32.28728035753461],[-90.97112228111125,32.26921435751779],[-90.97732428111702,32.223554357475265],[-91.04175628117703,32.24958835749951],[-91.06257028119641,32.23289235748396],[-91.08802228122012,32.232537357483636],[-91.1006792812319,32.21503635746733],[-91.11606128124623,32.22575535747732],[-91.1573752812847,32.206014357458926],[-91.16695828129363,32.172141357427385],[-91.15665028128403,32.14493535740205],[-91.10882028123949,32.13514335739293],[-91.08311628121555,32.14873135740558],[-91.05415428118857,32.13454435739237],[-91.04541828118043,32.158824357414986],[-91.05458128118897,32.18468335743906],[-91.02452128116097,32.17005035742544],[-91.0039362811418,32.169413357424844],[-91.01139028114875,32.134213357392056],[-91.0411912811765,32.10782335736748],[-91.07392228120699,32.09414835735475],[-91.06511828119879,32.05870735732174],[-91.0894102812214,32.05699835732015],[-91.12572728125524,32.088399357349395],[-91.14569428127383,32.085828357347],[-91.14312328127143,32.066259357328775],[-91.08699228121915,32.04381135730787],[-91.07324328120636,32.032150357297006],[-91.07248828120565,32.021213357286825],[-91.10811028123882,31.9919843572596],[-91.16314328129008,31.988448357256306],[-91.20154228132584,31.91444935718739],[-91.24448128136584,31.87867235715407],[-91.26469228138465,31.865586357141883],[-91.24138328136294,31.83538735711376],[-91.25072928137165,31.81882135709833],[-91.27680028139594,31.827533357106443],[-91.2926472814107,31.86149235713807],[-91.30347328142076,31.86314435713961],[-91.33484628144998,31.843478357121292],[-91.34723628146153,31.795832357076918],[-91.36713428148006,31.770867357053667],[-91.33625728145131,31.76362235704692],[-91.26268528138279,31.773927357056518],[-91.263989281384,31.759763357043326],[-91.28262128140135,31.74988735703413],[-91.3399122814547,31.758542357042188],[-91.37049928148319,31.753475357037473],[-91.36507428147814,31.751741357035854],[-91.38794828149945,31.716682357003204],[-91.38918428150059,31.65460535694539],[-91.40840328151849,31.62553035691831],[-91.4573772815641,31.626966356919652],[-91.49776928160172,31.650895356941938],[-91.50780928161107,31.643870356935395],[-91.50887728161207,31.621946356914975],[-91.49715128160115,31.604358356898594],[-91.415384281525,31.60259235689695],[-91.40425228151463,31.586353356881826],[-91.42357828153263,31.56274635685984],[-91.46447328157072,31.542866356841326],[-91.50295728160656,31.534880356833888],[-91.50648228160983,31.525687356825326],[-91.50790028161116,31.45308335675771],[-91.47329228157892,31.420374356727244],[-91.46592228157206,31.40406935671206],[-91.48083828158596,31.377780356687577],[-91.49470828159888,31.37524935668522],[-91.52301428162524,31.392091356700906],[-91.53416928163563,31.409238356716877],[-91.53480228163622,31.43433535674025],[-91.55247228165267,31.4330993567391],[-91.56773128166688,31.421406356728205],[-91.5593772816591,31.38823035669731],[-91.534573281636,31.382750356692206],[-91.54440728164516,31.368874356679285],[-91.54279028164365,31.3469863566589],[-91.50575628160917,31.323456356636985],[-91.50247528160611,31.298858356614076],[-91.5170782816197,31.28306935659937],[-91.55691928165682,31.270469356587636],[-91.6342142817288,31.277694356594367],[-91.64368228173761,31.27111835658824],[-91.6369982817314,31.24110435656029],[-91.60096428169783,31.21392935653498],[-91.59148828168901,31.178482356501966],[-91.62011428171567,31.12769435645467],[-91.56497528166432,31.082135356412238],[-91.5520812816523,31.058159356389908],[-91.5727872816716,31.03264835636615],[-91.6277732817228,31.011960356346883],[-91.632297281727,31.00136535633701],[-91.17920728130504,31.00046135633617],[-91.05701228119123,31.000418356336134],[-90.82971428097954,31.001545356337182],[-90.5602552807286,31.00170635633733],[-90.5426532807122,31.002330356337914],[-90.34366028052688,31.00539035634076],[-90.25937728044838,31.007370356342605],[-89.8335582800518,31.007184356342435],[-89.7327172799579,31.00744535634268],[-89.72362327994942,31.001524356337164],[-89.72678127995236,30.984616356321414],[-89.71982327994589,30.975493356312917],[-89.73952227996423,30.96540035630352],[-89.74854027997263,30.949848356289035],[-89.74047527996511,30.926109356266927],[-89.7580542799815,30.92104335626221],[-89.74575527997003,30.910107356252023],[-89.74680027997101,30.902794356245213],[-89.76331127998638,30.90047135624305],[-89.76585127998875,30.862084356207298],[-89.78502428000661,30.86157935620683],[-89.77480027999708,30.830532356177912],[-89.79609428001692,30.829105356176584],[-89.79656728001736,30.81265235616126],[-89.81093328003074,30.811699356160375],[-89.82468928004354,30.789724356139907],[-89.81335128003299,30.748168356101203],[-89.82556628004436,30.742648356096062],[-89.82339928004234,30.73305435608713],[-89.83561428005372,30.72936235608369],[-89.84405228006158,30.712425356067918],[-89.83072328004917,30.703781356059867],[-89.84134328005905,30.70055035605686],[-89.84178528005947,30.67951935603727],[-89.83539228005351,30.675882356033885],[-89.84544728006288,30.666252356024913],[-89.82952428004805,30.67087435602922],[-89.81935428003858,30.65124535601094],[-89.8055362800257,30.649456356009274],[-89.82030728003946,30.624270355985814],[-89.79084828001203,30.553943355920318],[-89.77279627999522,30.55124735591781],[-89.75517827997881,30.51562235588463],[-89.73231927995752,30.49783835586807],[-89.71905927994517,30.49603735586639],[-89.7131842799397,30.481416355852772],[-89.69568127992339,30.47824635584982],[-89.69459827992239,30.46818635584045],[-89.68345027991201,30.46271835583536],[-89.67546227990456,30.445352355819185],[-89.67536927990449,30.40007435577702],[-89.65467027988521,30.37906535575745],[-89.64668927987778,30.35529035573531],[-89.63345127986544,30.355307355735327],[-89.6201982798531,30.34342935572426],[-89.6185882798516,30.323760355705943],[-89.63708227986882,30.311843355694847],[-89.63917227987076,30.29582935567993],[-89.62594227985845,30.290355355674834],[-89.62166127985446,30.25696435564374],[-89.60631027984016,30.247828355635228],[-89.61000327984361,30.241419355629258],[-89.57388427980996,30.19493535558597],[-89.72856027995402,30.181013355573],[-89.75921727998256,30.23109335561964],[-89.94353628015423,30.26985335565574],[-90.07556128027719,30.368978355748055],[-90.2397512804301,30.38095135575921],[-90.30902728049462,30.303846355687398],[-90.4245302806022,30.18587735557753],[-90.39556728057522,30.092080355490175],[-90.27598028046384,30.06205335546221],[-90.1115462803107,30.041610355443172],[-89.99054828019801,30.053664355454398],[-89.89122628010551,30.15609135554979],[-89.79826528001894,30.105371355502555],[-89.74008827996475,30.158928355552433],[-89.72492827995063,30.1210953555172],[-89.66920127989873,30.163382355556582],[-89.64939427988028,30.12242635551844],[-89.7168402799431,30.05522635545585],[-89.84896328006616,30.01068535541437],[-89.82084828003997,29.951290355359056],[-89.71501627994141,29.969403355375924],[-89.71220227993878,29.897527355308984],[-89.62741427985982,29.87567935528864],[-89.58586327982113,29.89815735530957],[-89.57437827981043,30.008960355412764],[-89.43585427968141,30.044405355445775],[-89.45362327969796,29.985733355391133],[-89.37779327962734,29.951286355359052],[-89.43104827967694,29.940277355348798],[-89.40220227965007,29.845945355260945],[-89.42115527966773,29.82809835524432],[-89.36403927961453,29.79677435521515],[-89.41742527966426,29.782937355202264],[-89.48223827972461,29.830948355246978],[-89.54050027977887,29.754731355175995],[-89.6505872798814,29.76690135518733],[-89.59287727982765,29.710864355135143],[-89.61183727984532,29.697747355122925],[-89.51194327975227,29.66461435509207],[-89.47918927972178,29.636171355065578],[-89.59795127983237,29.665157355092575],[-89.67670427990572,29.70296135512778],[-89.69532827992307,29.69407935511951],[-89.63526127986712,29.6265313550566],[-89.7283192799538,29.646176355074896],[-89.74854527997263,29.6373783550667],[-89.72320827994903,29.606027355037504],[-89.77177827999427,29.610246355041433],[-89.54462927978273,29.47168535491239],[-89.53707627977569,29.40145335484698],[-89.38452227963361,29.397938354843706],[-89.3370582795894,29.34089335479058],[-89.26477527952208,29.35066335479968],[-89.26255627952001,29.297809354750456],[-89.19340027945562,29.349047354798174],[-89.1299372793965,29.290887354744008],[-89.12022527938747,29.21188435467043],[-89.03326327930647,29.223413354681167],[-89.09827527936702,29.163443354625315],[-89.0218032792958,29.14711835461011],[-89.05775327932928,29.085278354552518],[-89.12654227939335,29.135309354599116],[-89.11140527937924,29.083017354550414],[-89.15402427941893,29.057217354526387],[-89.14439527940998,29.01667835448863],[-89.24116227950009,29.121169354585945],[-89.25749627951531,29.059463354528475],[-89.39489227964327,28.939655354416896],[-89.2632882795207,29.148212354611132],[-89.31909027957266,29.18018835464091],[-89.3397342795919,29.104495354570417],[-89.38866227963746,29.10037835456658],[-89.39313427964163,29.14626535460932],[-89.46707327971049,29.216321354674562],[-89.45911727970308,29.255736354711267],[-89.49319727973482,29.234995354691954],[-89.61959227985254,29.279575354733474],[-89.61071827984426,29.33175835478207],[-89.79494428001584,29.322540354773487],[-89.75370627997744,29.37428835482168],[-89.8217462800408,29.420912354865102],[-89.81752728003687,29.47762535491792],[-89.96673828017583,29.472678354913313],[-89.97192628018067,29.503541354942058],[-90.00669528021305,29.493936354933112],[-90.11308128031213,29.553848354988908],[-90.13729028033468,29.533811354970247],[-90.15179328034819,29.595307355027522],[-90.20814628040067,29.544730354980416],[-90.17413328036899,29.495941354934978],[-90.03608428024042,29.447157354889544],[-90.05532528025834,29.428283354871965],[-90.0299422802347,29.374208354821604],[-90.05594328025892,29.351431354800393],[-90.03300128023756,29.30887235476076],[-90.11163928031078,29.321725354772727],[-90.07787828027935,29.214574354672934],[-90.04311028024696,29.223676354681412],[-90.07780228027927,29.176442354637423],[-90.22776228041894,29.098674354564995],[-90.26395728045264,29.184649354645067],[-90.24291428043304,29.254741354710344],[-90.2788192804665,29.275158354729356],[-90.28409928047141,29.245534354701768],[-90.34764628053058,29.312951354764557],[-90.39643028057603,29.27234735472674],[-90.40682928058571,29.3259913547767],[-90.45051628062639,29.352442354801333],[-90.47647228065057,29.303941354756162],[-90.61109528077594,29.305036354757185],[-90.5831332807499,29.260928354716107],[-90.62126528078541,29.22296535468075],[-90.65005128081222,29.254292354709925],[-90.63812028080112,29.162571354624504],[-90.68385828084371,29.18192035464252],[-90.67679428083713,29.14027735460374],[-90.78289828093595,29.126943354591322],[-90.77268928092644,29.160625354622688],[-90.83937928098855,29.182340354642914],[-90.88263928102884,29.13741235460107],[-90.92041328106401,29.181909354642514],[-90.81429328096519,29.221006354678927],[-90.81855028096915,29.256802354712264],[-90.89734928104254,29.267664354722378],[-90.93652728107902,29.343517354793022],[-91.07838528121114,29.36001835480839],[-91.1021902812333,29.314134354765656],[-91.2137352813372,29.40592335485114],[-91.26272528138283,29.48958735492906],[-91.43302528154142,29.552582354987727],[-91.54786528164838,29.53168635496827],[-91.54849028164897,29.642129355071127],[-91.64354728173748,29.643964355072836],[-91.61576828171162,29.769138355189412],[-91.86325628194211,29.725839355149088],[-91.8811782819588,29.76595535518645],[-91.84663128192662,29.808397355225978],[-91.82393328190548,29.78689235520595],[-91.82750328190882,29.839041355254516],[-91.9670862820388,29.84188835525717],[-91.97332728204462,29.806057355223796],[-92.1371512821972,29.730741355153654],[-92.13010128219062,29.7735263551935],[-92.19969828225544,29.76312035518381],[-92.05975728212512,29.607014355038423],[-92.29737428234641,29.541571354977474],[-92.60742528263518,29.588626355021297],[-93.23365728321839,29.788993355207904],[-93.72199128367319,29.758793355179776],[-93.80182028374753,29.72586535514911],[-93.89990228383888,29.80998135522745],[-93.79145428373788,29.850520355265203],[-93.76036728370893,30.006176355410172],[-93.71264428366449,30.06073135546098],[-93.71602328366764,30.095878355493713],[-93.70854628366067,30.114950355511475],[-93.69708728364999,30.118139355514444],[-93.6988032836516,30.14143435553614],[-93.68612328363979,30.141461355536165],[-93.68330728363716,30.148440355542665],[-93.69982628365256,30.151017355545065],[-93.6963312836493,30.175884355568222],[-93.70452528365692,30.181068355573053],[-93.71500828366669,30.22051335560979],[-93.70752428365972,30.239578355627543],[-93.69937728365213,30.297593355681574],[-93.72994128368059,30.30512235568859],[-93.75934728370798,30.34107735572207],[-93.75950728370813,30.354350355734432],[-93.74800228369742,30.367615355746786],[-93.75511328370403,30.38199335576018],[-93.7427312836925,30.409027355785355],[-93.72170528367292,30.433183355807852],[-93.69674128364967,30.44283535581684],[-93.70359328365606,30.462715355835357],[-93.69814628365098,30.470249355842373],[-93.7150232836667,30.48883135585968],[-93.70744728365965,30.496443355866766],[-93.71481028366651,30.50531635587503],[-93.70563228365796,30.52306035589156],[-93.73547928368575,30.54571935591266],[-93.71805428366953,30.56835535593374],[-93.71798528366946,30.587582355951646],[-93.69359428364675,30.599037355962317],[-93.6717582836264,30.598033355961384],[-93.69286928364608,30.61599735597811],[-93.68475928363851,30.623626355985216],[-93.69305328364624,30.640243356000692],[-93.67814528363236,30.63989435600037],[-93.6601632836156,30.673060356031257],[-93.61778128357614,30.687003356044244],[-93.61258528357129,30.71053035606615],[-93.61796528357631,30.732749356086845],[-93.60782528356687,30.732211356086346],[-93.61862928357692,30.745989356099177],[-93.58534828354593,30.77238435612376],[-93.58204528354285,30.802239356151563],[-93.55085528351381,30.828542356176058],[-93.55581428351843,30.842540356189097],[-93.56661828352848,30.845346356191712],[-93.55297628351579,30.860480356205805],[-93.56101728352327,30.872077356216607],[-93.5686702835304,30.886431356229973],[-93.56464928352665,30.902128356244592],[-93.54668928350993,30.90553035624776],[-93.54979428351282,30.925080356265966],[-93.53015528349454,30.927167356267912],[-93.52579128349046,30.93601435627615],[-93.53236028349659,30.960926356299353],[-93.53751028350138,30.95707935629577],[-93.54884828351194,30.97038435630816],[-93.57262928353408,30.97637235631374],[-93.56112428352337,30.99188335632818],[-93.57101928353259,30.99746435633338],[-93.56806728352984,31.01311735634796],[-93.5651142835271,31.018256356352744],[-93.54729128351049,31.014334356349092],[-93.50738928347333,31.039099356372155],[-93.52591328349058,31.057171356388984],[-93.51717028348244,31.074861356405464],[-93.54427828350768,31.082563356412635],[-93.54329428350677,31.094941356424165],[-93.56015628352247,31.10072635642955],[-93.55685228351939,31.109532356437754],[-93.53526028349928,31.11626135644402],[-93.52826428349277,31.126114356453193],[-93.53767928350153,31.13262935645926],[-93.54436328350776,31.15935435648415],[-93.52850128349299,31.16313035648767],[-93.53719128350109,31.176527356500145],[-93.5271052834917,31.178263356501763],[-93.52909628349354,31.185961356508933],[-93.55076428351373,31.19111635651373],[-93.57711728353827,31.172328356496237],[-93.5941162835541,31.18038635650374],[-93.60309628356246,31.19925335652131],[-93.59072128355093,31.229873356549827],[-93.61117628356999,31.24237335656147],[-93.6120542835708,31.270218356587403],[-93.61663228357507,31.275989356592778],[-93.63100628358845,31.274088356591008],[-93.6457702836022,31.290447356606244],[-93.65630628361201,31.2868553566029],[-93.68176628363572,31.31286335662712],[-93.67721928363149,31.328570356641748],[-93.6350352835922,31.374009356684063],[-93.66125128361662,31.372577356682733],[-93.66419628361936,31.398510356706886],[-93.68767328364123,31.40631135671415],[-93.6946232836477,31.41610335672327],[-93.69631028364927,31.42791735673427],[-93.68718528364077,31.438311356743952],[-93.70210828365467,31.446431356751514],[-93.6985992836514,31.461638356765675],[-93.72696628367783,31.459654356763828],[-93.75142728370061,31.485680356788066],[-93.75061828369985,31.490736356792777],[-93.71917628367056,31.49558235679729],[-93.70597728365827,31.520747356820728],[-93.73184228368237,31.522055356821944],[-93.74772728369716,31.537896356836697],[-93.76348928371183,31.530902356830182],[-93.78031328372751,31.53391335683299],[-93.81070228375582,31.559240356856577],[-93.81650828376122,31.577287356873384],[-93.8328052837764,31.590360356885558],[-93.83576528377915,31.615364356908845],[-93.81977428376426,31.61826735691155],[-93.81491428375973,31.64814135693937],[-93.806613283752,31.65394135694477],[-93.81203028375705,31.674740356964143],[-93.79245228373881,31.71156835699844],[-93.80895528375419,31.707738356994874],[-93.81513528375994,31.71252335699933],[-93.81017628375533,31.730524357016094],[-93.83134828377504,31.75345235703745],[-93.82225428376657,31.77480835705734],[-93.83451428377799,31.802187357082836],[-93.86501028380638,31.817442357097043],[-93.8775912838181,31.85028235712763],[-93.8814512838217,31.871588357147473],[-93.8927132838322,31.87023435714621],[-93.89944928383846,31.894623357168925],[-93.92365028386101,31.892762357167193],[-93.91811128385584,31.909870357183124],[-93.93591928387242,31.909624357182896],[-93.97017528390433,31.92333235719566],[-93.97740028391107,31.94632735721708],[-94.00458428393638,31.978108357246676],[-94.0100782839415,31.9893003572571],[-94.03525528396494,31.994679357262108],[-94.03495528396466,32.199609357452964],[-94.03541828396509,32.3893813576297],[-94.04038228396972,32.69495735791429],[-94.04178528397102,32.88248535808894],[-94.03893128396837,33.0234223582202]]],[[[-92.0163672820847,29.59647835502861],[-91.90254928197871,29.650931355079322],[-91.76984728185512,29.578615355011976],[-91.70161628179157,29.577266355010718],[-91.76496428185057,29.53425335497066],[-91.75811328184419,29.49451335493365],[-91.84908928192891,29.487083354926728],[-92.0163672820847,29.59647835502861]]],[[[-91.34131928145602,29.341911354791527],[-91.300493281418,29.31645735476782],[-91.22655328134913,29.381399354828304],[-91.18927528131441,29.297611354750266],[-91.1615642812886,29.323720354774586],[-91.1712242812976,29.283676354737292],[-91.18802428131325,29.2847583547383],[-91.20046028132484,29.30798535475993],[-91.1950592813198,29.273673354727975],[-91.15259228128025,29.266533354721325],[-91.16366328129057,29.245267354701518],[-91.13469328126358,29.259925354715172],[-91.12830728125763,29.22699935468451],[-91.27616228139533,29.25402835470968],[-91.34131928145602,29.341911354791527]]],[[[-90.9345742810772,29.2590943547144],[-90.970846281111,29.242095354698566],[-90.95362528109494,29.2730573547274],[-90.9813822811208,29.276348354730466],[-90.98038228111987,29.219952354677943],[-90.9449812810869,29.22639235468394],[-90.96202528110277,29.185799354646136],[-91.00324028114116,29.184316354644757],[-90.99456628113307,29.22480235468246],[-91.04444828117954,29.211258354669845],[-91.03310428116897,29.275629354729794],[-91.06768928120118,29.253119354708833],[-91.05555728118988,29.1909153546509],[-91.12256128125229,29.227085354684586],[-91.1275132812569,29.293514354746453],[-91.007369281145,29.297544354750208],[-90.99895328113716,29.32380035477466],[-90.9345742810772,29.2590943547144]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Florida","DRAWSEQ":49,"STATE_FIPS":"12","SUB_REGION":"South Atlantic","STATE_ABBR":"FL"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-87.4188162778029,30.481700355853036],[-87.44535327782762,30.531389355899314],[-87.42206727780592,30.556493355922694],[-87.39328127777912,30.62009835598193],[-87.39864527778411,30.668015356026558],[-87.41889427780298,30.692810356049648],[-87.46014027784139,30.70580235606175],[-87.52660327790329,30.748491356101507],[-87.54190027791753,30.785695356136156],[-87.61591527798646,30.848296356194457],[-87.62571127799559,30.8769023562211],[-87.5898672779622,30.954361356293237],[-87.59858027797031,31.00263035633819],[-87.16311727756477,31.003157356338683],[-86.77936127720736,30.998191356334058],[-86.70185227713517,30.998092356333963],[-86.38391927683908,30.99153835632786],[-86.18147627665054,30.995225356331296],[-86.03182227651116,30.99332735632953],[-85.48659727600338,31.000998356336673],[-85.4850102760019,31.001001356336673],[-85.0016072755517,31.00125335633691],[-85.00014227555033,30.97931935631648],[-84.97356727552558,30.9636643563019],[-84.96901227552135,30.927093356267843],[-84.93777627549225,30.894957356237914],[-84.92692627548215,30.846922356193176],[-84.9325642754874,30.80262535615192],[-84.92689527548212,30.776088356127207],[-84.91534327547136,30.754089356106718],[-84.88828927544617,30.74388935609722],[-84.86458327542408,30.714503356069855],[-84.86300327542261,30.71266435606814],[-84.37444827496762,30.694092356050845],[-84.2816632748812,30.69041935604742],[-84.07556227468925,30.678577356036392],[-84.00073027461956,30.675537356033562],[-83.73784427437472,30.66049135601955],[-83.60905627425478,30.65078435601051],[-83.31060027397683,30.634303355995158],[-83.30131527396819,30.63328535599421],[-83.1324402738109,30.62134135598309],[-82.69635627340477,30.595720355959227],[-82.58295727329916,30.58905335595302],[-82.46313527318756,30.58268935594709],[-82.41209227314003,30.57730735594208],[-82.22103927296209,30.56707635593255],[-82.23839627297826,30.531444355899367],[-82.21936727296054,30.502970355872847],[-82.19918727294174,30.49001435586078],[-82.20556527294768,30.423853355799164],[-82.1802342729241,30.368631355747734],[-82.16463927290957,30.361291355740896],[-82.05276727280538,30.36379435574323],[-82.03835427279195,30.3789043557573],[-82.04609927279917,30.434068355808677],[-82.03512027278894,30.44287835581688],[-82.0225092727772,30.47771735584933],[-82.00580127276164,30.570990355936196],[-82.01365227276895,30.598690355961992],[-82.04491127279806,30.650910356010627],[-82.03188127278592,30.757532356109927],[-82.01296727276831,30.76425635611619],[-82.01553827277071,30.791319356141393],[-81.98148027273899,30.778351356129313],[-81.96155127272043,30.796007356145758],[-81.95302927271248,30.820431356168505],[-81.9438052727039,30.82424935617206],[-81.9075182726701,30.81347535616203],[-81.8991412726623,30.828308356175842],[-81.87300227263796,30.799084356148626],[-81.80319827257296,30.78808535613838],[-81.77670827254828,30.7615843561137],[-81.75771027253059,30.769631356121195],[-81.736675272511,30.763888356115846],[-81.71676927249246,30.7453693560986],[-81.64247727242326,30.72908135608343],[-81.62798127240977,30.731774356085936],[-81.60477127238815,30.716321356071546],[-81.60117027238479,30.724887356079524],[-81.53659127232466,30.70657735606247],[-81.5285952723172,30.721452356076327],[-81.49878427228944,30.598605355961915],[-81.51811727230745,30.556212355922433],[-81.45752827225103,30.45476435582795],[-81.4807982722727,30.380540355758825],[-81.44326027223774,30.357187355737075],[-81.43276727222796,30.246781355634255],[-81.30275827210689,29.913052355323444],[-81.31649027211967,29.82924035524539],[-81.24378427205195,29.73794335516036],[-81.23376627204263,29.669024355096177],[-81.10988027192725,29.43023935487379],[-81.0970542719153,29.351799354800736],[-80.7856622716253,28.785194354273045],[-80.76241527160364,28.736334354227537],[-80.83210427166854,28.786186354273966],[-80.85070527168587,28.785700354273516],[-80.74719027158946,28.398992353913364],[-80.49224427135204,27.87017835342087],[-80.50935827136797,27.825708353379454],[-80.48185327134235,27.84572135339809],[-80.4013772712674,27.703585353265716],[-80.35737827122642,27.55566235312795],[-80.23963827111677,27.264647352856926],[-80.19009127107063,27.185684352783383],[-80.2239892711022,27.215066352810748],[-80.28963527116333,27.241338352835214],[-80.32679127119793,27.248262352841664],[-80.29042027116407,27.212853352808686],[-80.22127327109966,27.202842352799365],[-80.14796727103139,27.10906935271203],[-80.09036327097775,26.97404335258628],[-80.11461027100033,26.973837352586088],[-80.050911270941,26.797197352421577],[-80.08469527097247,26.32637735198309],[-80.1277812710126,25.97753635165821],[-80.19309927107342,25.760032351455642],[-80.30145627117435,25.613751351319408],[-80.32999127120092,25.490015351204168],[-80.30197527117483,25.401200351121453],[-80.41681627128177,25.249902350980545],[-80.4208072712855,25.192219350926823],[-80.55187627140756,25.212318350945544],[-80.69382527153977,25.152299350889646],[-80.85680127169155,25.185631350920687],[-80.97587727180245,25.130501350869345],[-81.11901627193575,25.13418835087278],[-81.14823027196296,25.164690350901186],[-81.18378427199607,25.26887935099822],[-81.14056927195583,25.320765351046543],[-81.01156027183568,25.21442935094751],[-80.95102727177931,25.202537350936435],[-80.915274271746,25.246725350977588],[-80.97428127180096,25.32246035104812],[-81.1433232719584,25.39682735111738],[-81.25837527206555,25.68110035138213],[-81.19994727201113,25.710422351409438],[-81.25620727206352,25.803102351495752],[-81.5307422723192,25.91465835159965],[-81.71829327249388,25.923581351607957],[-81.70569527248215,26.00017235167929],[-81.79471727256505,26.111162351782657],[-81.81385827258288,26.28446735194406],[-81.84935127261593,26.332197351988512],[-81.86421227262977,26.439554352088496],[-81.94201827270224,26.46756235211458],[-81.96811927272654,26.51738235216098],[-81.9287732726899,26.534980352177367],[-81.88427627264846,26.642987352277956],[-81.77391427254568,26.710265352340613],[-81.8971022726604,26.66376735229731],[-81.9444522727045,26.550719352192026],[-82.02147327277623,26.524680352167778],[-82.08366027283415,26.71579035234576],[-82.06827127281981,26.766970352393425],[-82.05176727280445,26.866709352486314],[-82.09787227284738,26.921785352537608],[-81.99144027274826,26.963056352576046],[-81.97919427273686,27.031680352639956],[-81.99285127274958,27.031676352639952],[-82.01268827276805,26.97655035258861],[-82.15321027289892,26.93706535255184],[-82.25745927299602,27.00440935261456],[-82.28217927301904,27.024557352633323],[-82.25758227299613,26.9979073526085],[-82.1764952729206,26.91369335253007],[-82.1538282728995,26.790128352414992],[-82.28984027302617,26.849886352470648],[-82.35543127308726,26.948896352562855],[-82.39817127312706,26.99851535260907],[-82.36866827309959,26.947938352561966],[-82.34362827307626,26.903632352520702],[-82.38003627311018,26.947296352561366],[-82.50693027322835,27.23699135283117],[-82.53113127325089,27.260277352852853],[-82.51448327323538,27.210453352806454],[-82.56995727328705,27.274280352865894],[-82.53274027325239,27.331802352919468],[-82.56556227328295,27.386681352970577],[-82.68592527339506,27.473844353051753],[-82.63888927335125,27.503459353079336],[-82.66582927337633,27.49358735307014],[-82.68170627339113,27.524429353098867],[-82.48826727321097,27.478067353055685],[-82.51419927323512,27.51198935308728],[-82.42717727315407,27.522859353097402],[-82.57557127329228,27.512324353087592],[-82.63876727335114,27.536638353110234],[-82.56960527328673,27.552713353125206],[-82.55426227327243,27.582239353152705],[-82.62637627333959,27.55519435312752],[-82.54004127325919,27.608106353176794],[-82.5525002732708,27.64401435321024],[-82.40437927313285,27.79162835334771],[-82.39881727312766,27.906219353454432],[-82.46099827318557,27.94015535348604],[-82.48313127320618,27.82194735337595],[-82.51059827323176,27.831232353384596],[-82.53899527325821,27.935728353481917],[-82.64556527335746,28.02884735356864],[-82.65068427336223,28.007163353548446],[-82.69833927340662,28.046169353584773],[-82.67271927338275,28.010514353551564],[-82.70066627340879,27.97535335351882],[-82.6447412733567,27.966584353510655],[-82.7254852734319,27.94056235348642],[-82.56426427328175,27.87846235342858],[-82.62365327333706,27.848527353400705],[-82.64461927335658,27.715725353277023],[-82.67832627338798,27.705587353267582],[-82.79383827349555,27.829654353383127],[-82.72816327343439,27.71777335327893],[-82.74100327344635,27.685868353249216],[-82.84428527354254,27.850641353402672],[-82.77914427348188,28.17302735370292],[-82.67347627338346,28.428510353940858],[-82.63607527334862,28.692749354186947],[-82.68138027339081,28.80838235429464],[-82.63651927334904,28.81427835430013],[-82.63661927334914,28.88470835436572],[-82.75532227345968,29.00866035448116],[-82.8021572735033,29.155132354617574],[-83.03674727372179,29.179387354640163],[-83.07392827375641,29.265652354720505],[-83.14220627382,29.299651354752168],[-83.10899527378906,29.32818235477874],[-83.1746332738502,29.343679354793174],[-83.23432827390579,29.43393735487723],[-83.38003127404149,29.519874354957267],[-83.40497427406471,29.669602355096714],[-83.5504482742002,29.73732335515978],[-83.65418227429682,29.910961355321497],[-83.97173827459255,30.07748335547658],[-84.07462527468839,30.099948355497503],[-84.14785527475658,30.081725355480533],[-84.23307127483595,30.108111355505105],[-84.3539252749485,30.069624355469262],[-84.36041627495455,29.977390355383363],[-84.43769027502651,29.991791355396774],[-84.43310427502225,29.959545355366743],[-84.33893827493455,29.947141355355193],[-84.34691127494197,29.910168355320756],[-84.46453827505151,29.92962735533888],[-84.85803027541799,29.746860355168664],[-84.92851327548362,29.77797235519764],[-84.98828327553929,29.719921355143576],[-85.21476027575021,29.701557355126475],[-85.36487927589002,29.68301935510921],[-85.40960427593167,29.776766355196514],[-85.41405227593582,29.86306735527689],[-85.39299427591621,29.875413355288387],[-85.4025462759251,29.794365355212907],[-85.35804327588366,29.691254355116875],[-85.30658927583573,29.701710355126615],[-85.30052427583009,29.809796355227277],[-85.38479227590857,29.923801355333453],[-85.62849727613553,30.092591355490654],[-85.56852827607969,30.09829335549596],[-85.47135827598919,30.02186335542478],[-85.41501327593672,30.031552355433803],[-85.4323862759529,30.04575435544703],[-85.38269427590662,30.02427035542702],[-85.38265627590658,30.036286355438214],[-85.3956722759187,30.058567355458962],[-85.46431627598263,30.05116335545207],[-85.52971627604354,30.131686355527062],[-85.70982927621128,30.178773355570915],[-85.66605827617052,30.251689355638824],[-85.60017627610917,30.25115135563832],[-85.56947527608057,30.311004355694067],[-85.71713127621808,30.265062355651278],[-85.75270827625121,30.29692935568096],[-85.85042027634222,30.280359355665524],[-85.82994227632315,30.232814355621244],[-85.75791927625608,30.22894535561764],[-85.72639327622672,30.128842355524412],[-85.98701327646943,30.27443035566],[-86.38745927684238,30.387659355765457],[-86.50531427695213,30.409973355786235],[-86.38810827684298,30.406012355782547],[-86.24003327670508,30.399887355776844],[-86.24156627670651,30.428527355803517],[-86.11464027658829,30.385802355763726],[-86.12293427659601,30.426461355801592],[-86.21960827668605,30.48785435585877],[-86.38787927684277,30.462167355834847],[-86.45263927690308,30.501237355871233],[-86.61023627704985,30.423651355798974],[-86.79034727721759,30.417963355793677],[-87.19338227759295,30.355221355735246],[-86.93251127734999,30.46356535583615],[-87.01440027742626,30.514434355883523],[-86.98619327739999,30.5904303559543],[-87.01958027743109,30.58746635595154],[-87.06927227747737,30.450564355824042],[-87.12453327752883,30.564666355930306],[-87.17155527757262,30.557735355923853],[-87.16010227756196,30.465033355837516],[-87.27389727766794,30.35738435573726],[-87.4240802778078,30.323671355705862],[-87.409256277794,30.402239355779034],[-87.34680727773583,30.431498355806283],[-87.34739527773638,30.457169355830192],[-87.4188162778029,30.481700355853036]]],[[[-86.83388227725814,30.399735355776702],[-86.79155327721871,30.403969355780646],[-86.62082527705971,30.4145513557905],[-86.53475627697955,30.406791355783273],[-86.52277027696839,30.401147355778015],[-86.5326432769776,30.39338835577079],[-86.73864127716944,30.40255835577933],[-86.79296427722004,30.39056535576816],[-86.8345842772588,30.38703835576488],[-87.24234827763856,30.321431355703776],[-87.26704627766155,30.321432355703777],[-87.29032427768324,30.33271935571429],[-87.2860892776793,30.339772355720857],[-87.2021402776011,30.33483435571626],[-87.13934927754262,30.351766355732025],[-87.04764127745722,30.36940135574845],[-86.92912327734685,30.38139435575962],[-86.83388227725814,30.399735355776702]]],[[[-80.73583327157888,28.788844354276442],[-80.7633302716045,28.822067354307386],[-80.81718027165465,28.89539035437567],[-80.89107927172347,29.013393354485572],[-80.91628727174695,29.071822354539986],[-80.89909827173094,29.06151135453038],[-80.8624382716968,28.9916253544653],[-80.73583327157888,28.788844354276442]]],[[[-80.72589927156963,28.784366354272272],[-80.57968927143347,28.590154354091396],[-80.52594827138341,28.463462353973405],[-80.58765627144089,28.409260353922928],[-80.62163027147253,28.412659353926095],[-80.57744627143138,28.548653354052746],[-80.59912927145157,28.60392235410422],[-80.6600432715083,28.618651354117937],[-80.69188127153795,28.58835035408972],[-80.78044527162044,28.618960354118226],[-80.78593027162555,28.68771635418226],[-80.73499527157811,28.706617354199864],[-80.75406827159587,28.736884354228053],[-80.64119727149075,28.657346354153976],[-80.72589927156963,28.784366354272272]]],[[[-80.68862427153492,28.581764354083585],[-80.65379427150248,28.600890354101395],[-80.60919327146095,28.57356635407595],[-80.66273027151081,28.42741035393983],[-80.66711027151489,28.301841353822887],[-80.60557127145758,28.144944353676763],[-80.72104327156511,28.385401353900708],[-80.68862427153492,28.581764354083585]]],[[[-82.10194127285118,26.586077352224954],[-82.0669532728186,26.497564352142522],[-82.097456272847,26.49394235213915],[-82.13570927288262,26.642630352277624],[-82.18331027292696,26.683432352315624],[-82.12865227287605,26.693691352325178],[-82.10194127285118,26.586077352224954]]],[[[-80.24945327112592,25.35493735107837],[-80.35566527122482,25.158233350895173],[-80.58781927144103,24.956376350707178],[-80.35306327122241,25.21153235094481],[-80.3302972712012,25.26798135099738],[-80.36160127123036,25.296499351023943],[-80.24945327112592,25.35493735107837]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Michigan","DRAWSEQ":50,"STATE_FIPS":"26","SUB_REGION":"East North Central","STATE_ABBR":"MI"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-88.49752727880752,48.17379537233009],[-88.62532727892655,48.03316737219912],[-88.9015472791838,47.960248372131204],[-89.02862227930216,47.85065537202914],[-89.13988527940577,47.824076372004384],[-89.19291627945516,47.84461337202352],[-89.20178727946342,47.88385737206006],[-89.15609927942087,47.93922837211163],[-88.49752727880752,48.17379537233009]]],[[[-88.50068127881046,47.290180371507155],[-88.437901278752,47.35589637156836],[-88.21139227854104,47.44783537165398],[-87.78812027814685,47.47079337167536],[-87.70438327806886,47.41595037162429],[-87.7375102780997,47.393024371602934],[-87.9170422782669,47.358007371570324],[-88.22227927855118,47.200752371423874],[-88.41284327872866,46.98809437122581],[-88.47066427878251,47.111472371340724],[-88.59426227889762,47.13476537136241],[-88.5956322788989,47.24359337146377],[-88.50068127881046,47.290180371507155]]],[[[-87.67281427803945,45.14067236950527],[-87.7296692780924,45.17660436953874],[-87.7362002780985,45.19907236955966],[-87.72162827808492,45.211672369571396],[-87.71966827808309,45.23677136959477],[-87.70514227806956,45.247086369604375],[-87.70447127806894,45.27220536962777],[-87.64536227801389,45.34816936969852],[-87.64368427801233,45.36185636971126],[-87.68959827805509,45.39126936973865],[-87.76003827812069,45.352897369702916],[-87.82800827818399,45.35832136970797],[-87.84128227819636,45.34614936969663],[-87.86209627821574,45.370165369719004],[-87.86853527822174,45.37207236972078],[-87.8739742782268,45.36208536971148],[-87.88361027823578,45.36585436971499],[-87.84953127820404,45.40611736975249],[-87.86026727821404,45.44509836978879],[-87.81361427817059,45.466460369808686],[-87.78938527814802,45.499067369839054],[-87.8051412781627,45.544525369881384],[-87.82860227818455,45.5685913699038],[-87.78631227814516,45.56851936990373],[-87.7750752781347,45.600387369933415],[-87.7760452781356,45.613200369945346],[-87.81993827817648,45.65445036998376],[-87.81705427817379,45.66539036999395],[-87.78094527814017,45.67591537000375],[-87.77747327813692,45.684101370011376],[-87.80115627815898,45.70132437002742],[-87.80155327815935,45.71139137003679],[-87.84236227819736,45.722418370047066],[-87.87362927822647,45.750699370073406],[-87.96917927831547,45.76644837008807],[-87.99007027833493,45.795046370114704],[-88.05163927839226,45.78611237010638],[-88.08873427842681,45.791532370111426],[-88.12994927846519,45.81940237013738],[-88.12178627845759,45.8348783701518],[-88.0654212784051,45.8736423701879],[-88.09576427843336,45.89180337020481],[-88.09385027843157,45.920615370231644],[-88.11139027844791,45.926287370236935],[-88.15043827848427,45.93629337024625],[-88.18019427851199,45.95351637026229],[-88.2149922785444,45.94790137025706],[-88.25716827858368,45.9670553702749],[-88.29915227862278,45.96194437027014],[-88.32132327864343,45.96671237027458],[-88.3699382786887,45.994587370300536],[-88.40352227871998,45.98342237029014],[-88.45431927876729,46.00076037030629],[-88.48381427879475,45.99915137030479],[-88.49408327880433,46.01296037031766],[-88.51561327882438,46.01860937032291],[-88.54835827885486,46.019300370323556],[-88.57535727888002,46.008959370313924],[-88.59753627890068,46.01551637032003],[-88.6155022789174,45.99412037030011],[-88.64366927894363,45.99338837029943],[-88.67738427897504,46.020144370324346],[-88.70360527899946,46.01892337032321],[-88.72640927902069,46.02958137033313],[-88.7730172790641,46.02114737032528],[-88.77748027906826,46.032614370335956],[-88.79381527908347,46.036360370339445],[-88.80439727909332,46.026804370330545],[-88.92519527920582,46.07360137037413],[-88.9853012792618,46.10039137039908],[-89.09980627936845,46.14564237044122],[-89.9251362801371,46.30402537058873],[-90.1116592803108,46.34042937062263],[-90.11517728031409,46.36515537064566],[-90.14179728033888,46.39389937067243],[-90.16139128035712,46.44238037071758],[-90.21152628040382,46.50629537077711],[-90.25840128044747,46.508789370779425],[-90.26978528045808,46.52248037079218],[-90.30018128048638,46.52505137079457],[-90.30239328048845,46.544296370812496],[-90.31370828049899,46.55156337081927],[-90.38552528056586,46.53965737080817],[-90.40820028058698,46.568610370835145],[-90.01886428022439,46.678633370937604],[-89.88625228010088,46.76893537102171],[-89.79124428001239,46.824713371073656],[-89.38671827963566,46.850208371097395],[-89.21459227947535,46.92337837116554],[-89.12518727939208,46.99660637123374],[-88.99487527927072,46.9971033712342],[-88.92968827921001,47.03092637126571],[-88.88483227916824,47.104554371334274],[-88.62950027893044,47.225812371447205],[-88.61810427891983,47.13111437135902],[-88.51121527882027,47.106506371336096],[-88.51299527882193,47.03258937126726],[-88.44116427875504,46.99073437122827],[-88.4459642787595,46.92830437117013],[-88.47652327878797,46.855151371102004],[-88.44661727876012,46.79939637105008],[-88.17782727850978,46.94589037118651],[-88.18918827852036,46.90095837114467],[-88.03668527837834,46.91186537115482],[-87.90065427825165,46.90976137115287],[-87.66376627803103,46.83685137108496],[-87.37153927775887,46.50799137077868],[-87.11067927751593,46.501473370772615],[-87.00640227741881,46.53629337080504],[-86.87138227729307,46.444359370719425],[-86.75949527718886,46.48663137075879],[-86.63822027707592,46.42226337069884],[-86.46239227691217,46.56108537082814],[-86.14810927661946,46.67305337093241],[-86.09673927657163,46.65526837091585],[-85.85753627634885,46.69481537095268],[-85.50385027601945,46.67417437093346],[-85.2300942757645,46.756785371010395],[-84.95475927550807,46.770951371023585],[-85.02697127557532,46.694339370952235],[-85.01897527556788,46.5490243708169],[-85.0516552755983,46.50557637077644],[-85.0166392755657,46.476444370749306],[-84.93132027548624,46.48784337075992],[-84.80365327536734,46.444054370719144],[-84.62981527520544,46.48294337075536],[-84.57266727515221,46.40792637068549],[-84.41596727500628,46.48065837075323],[-84.31161427490909,46.48866937076069],[-84.18164627478805,46.24872037053722],[-84.27313427487326,46.20730937049865],[-84.24703127484895,46.17144737046526],[-84.11973527473039,46.17610837046959],[-84.02957827464643,46.128943370425674],[-84.06198127467661,46.094470370393566],[-83.9895012746091,46.02598537032978],[-83.90195227452757,46.00590237031108],[-83.90646027453177,45.96023937026855],[-84.11327227472438,45.97853837028559],[-84.35448527494903,45.99919037030483],[-84.50163527508606,45.97834237028541],[-84.61684527519336,46.03823037034118],[-84.68902227526058,46.03591837033903],[-84.73173227530036,45.855679370171174],[-84.85110027541153,45.89063637020373],[-85.0616292756076,46.02475137032863],[-85.37824327590246,46.100047370398755],[-85.50954627602475,46.101911370400494],[-85.65538127616057,45.97287037028032],[-85.859844276351,45.969469370277146],[-85.91495527640232,45.957978370266446],[-85.91710427640432,45.91819237022939],[-86.06789127654476,45.964210370272255],[-86.25931927672303,45.94692937025616],[-86.31563827677549,45.90568237021774],[-86.34379527680171,45.83439637015135],[-86.45827527690832,45.762747370084625],[-86.52939027697455,45.74896137007178],[-86.52201027696769,45.724094370048626],[-86.57612427701808,45.71017437003566],[-86.62978427706805,45.621233369952826],[-86.68505327711954,45.650048369979665],[-86.69691927713058,45.69251137001921],[-86.5847352770261,45.81387937013224],[-86.7614692771907,45.82606737014359],[-86.90162427732123,45.71477837003995],[-87.12375927752811,45.69624637002269],[-87.26070727765565,45.55480236989096],[-87.33222727772225,45.42394236976909],[-87.58386427795662,45.16273336952582],[-87.59251427796467,45.108501369475306],[-87.67281427803945,45.14067236950527]]],[[[-83.85468027448354,46.01403137031865],[-83.80110527443365,45.98841237029479],[-83.75642027439203,46.02733837033104],[-83.67359227431488,46.03619237033929],[-83.68031427432115,46.071794370372444],[-83.7324482743697,46.084108370383916],[-83.64988727429281,46.10397137040241],[-83.58949827423658,46.088518370388016],[-83.53399127418487,46.01179037031656],[-83.47318927412825,45.98754737029398],[-83.51615927416827,45.9257143702364],[-83.57981327422755,45.91750137022875],[-83.62970527427402,45.95359637026236],[-83.80488127443716,45.93676437024669],[-83.8528102744818,45.9974493703032],[-83.8858912745126,45.970852370278436],[-83.85468027448354,46.01403137031865]]],[[[-86.83482927725902,41.765504366361895],[-86.6175922770567,41.907448366494094],[-86.4988332769461,42.126446366698055],[-86.3742782768301,42.249421366812584],[-86.28498027674694,42.42232436697361],[-86.21785427668442,42.7748253673019],[-86.27383727673656,43.12104536762435],[-86.46320127691291,43.475166367954145],[-86.54130127698565,43.66318736812926],[-86.44781127689858,43.772665368231216],[-86.4043452768581,43.766642368225604],[-86.43410127688581,43.7814583682394],[-86.42881427688089,43.82012336827542],[-86.45954827690952,43.95018436839654],[-86.43814727688958,43.94559236839227],[-86.51860227696451,44.053619368492875],[-86.38642327684141,44.18320436861356],[-86.2719542767348,44.351228368770045],[-86.23803827670322,44.52227336892934],[-86.2586272767224,44.70073136909554],[-86.10848427658256,44.73444236912694],[-86.08291827655874,44.77792936916744],[-86.09796427657277,44.85061236923513],[-86.06745427654435,44.898257369279506],[-85.79575627629131,44.9859743693612],[-85.61021527611851,45.19652736955729],[-85.56551427607688,45.18056036954242],[-85.65300627615837,44.95836236933548],[-85.63803927614443,44.77843536916791],[-85.52608127604016,44.76316236915369],[-85.45135127597055,44.860540369244376],[-85.38486927590864,45.010603369384135],[-85.39024427591364,45.21159336957132],[-85.37325327589782,45.273541369629015],[-85.3054752758347,45.32038336967264],[-85.09286227563669,45.37022536971906],[-84.98589327553707,45.37317836972181],[-84.92167427547726,45.409899369756005],[-85.0818152756264,45.464650369807],[-85.12044727566237,45.56977936990491],[-85.07801927562286,45.63018536996117],[-84.98341227553476,45.68371337001102],[-84.97203827552416,45.73774537006133],[-84.72418627529333,45.78030437010098],[-84.4652752750522,45.653637369983],[-84.32145827491826,45.665607369994156],[-84.20556027481032,45.63090536996184],[-84.13522927474482,45.57134336990636],[-84.10590727471751,45.498749369838755],[-83.92289227454707,45.49177336983226],[-83.7828092744166,45.40944936975559],[-83.71231827435096,45.41239436975833],[-83.59236327423923,45.34950236969976],[-83.49583227414934,45.360802369710285],[-83.48959827414353,45.3289373696806],[-83.39401927405451,45.27290736962843],[-83.42076127407942,45.25718236961378],[-83.39869527405887,45.213641369573224],[-83.31270727397879,45.098620369466104],[-83.44444127410148,45.052773369423406],[-83.43397227409173,45.01112836938462],[-83.46490327412053,44.99788336937229],[-83.42935527408743,44.926297369305615],[-83.31972427398533,44.86064636924448],[-83.28081227394908,44.70318336909783],[-83.32003627398562,44.515460368922994],[-83.35696327402,44.33513336875505],[-83.52915027418037,44.261274368686266],[-83.56823727421677,44.17011836860137],[-83.59840427424487,44.07049336850859],[-83.70480227434396,43.99716536844029],[-83.87361527450118,43.96284236840833],[-83.91837627454287,43.916997368365635],[-83.93812127456125,43.69828336816194],[-83.6991642743387,43.59964236807008],[-83.65461527429721,43.607420368077314],[-83.53090927418201,43.7259433681877],[-83.49424827414786,43.70284136816619],[-83.46640827412193,43.74574036820614],[-83.36716327402951,43.84445236829807],[-83.32602627399119,43.94045936838749],[-82.94015427363182,44.069959368508094],[-82.80597827350687,44.033564368474195],[-82.72790227343415,43.97250636841733],[-82.61848727333225,43.787866368245375],[-82.60573827332037,43.694568368158485],[-82.50382027322546,43.17225336767204],[-82.41983627314724,42.97246536748597],[-82.47195227319578,42.89868236741725],[-82.47323827319697,42.76289636729079],[-82.51817927323883,42.634052367170796],[-82.64587727335775,42.631728367168634],[-82.6340152733467,42.6693823672037],[-82.72980627343593,42.681226367214734],[-82.8204072735203,42.63579436717242],[-82.8023612735035,42.61292636715112],[-82.88813827358338,42.495756367042],[-82.87490727357105,42.458067367006905],[-82.9293892736218,42.3630403669184],[-83.10758827378775,42.29270536685289],[-83.19387327386812,42.11574936668809],[-83.19006627386457,42.03397936661194],[-83.4826912741371,41.725130366324294],[-83.76395427439904,41.71704236631676],[-83.86863927449654,41.715993366315786],[-84.35920827495342,41.708039366308384],[-84.38439327497687,41.70715036630755],[-84.79037727535497,41.69749436629856],[-84.78847827535321,41.76095936635767],[-84.82600827538816,41.761875366358524],[-85.19314027573007,41.762867366359444],[-85.297209275827,41.763581366360114],[-85.65945927616437,41.76262736635922],[-85.79922727629454,41.76353536636007],[-86.06830227654514,41.76462836636108],[-86.23456527669998,41.76486436636131],[-86.52518127697064,41.76554036636193],[-86.83482927725902,41.765504366361895]]]]}},
{"type":"Feature","properties":{"STATE_NAME":"Alaska","DRAWSEQ":51,"STATE_FIPS":"02","SUB_REGION":"Pacific","STATE_ABBR":"AK"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-161.33378534664158,58.73324838216434],[-161.38249034668695,58.70365238213678],[-161.34946934665618,58.66503238210081],[-161.76527234704344,58.55169938199526],[-161.71275334699453,58.61253838205192],[-161.75108534703023,58.643094382080385],[-161.76658634704467,58.59827438203864],[-162.17360934742374,58.64892438208581],[-161.89360934716296,58.65198138208866],[-161.65779534694335,58.799759382226284],[-161.77279234705043,58.782264382209995],[-161.790573347067,58.96837238238332],[-161.8572453471291,59.02809738243894],[-161.56805534685975,59.10282738250854],[-161.85502134712704,59.11337638251837],[-161.86752234713867,59.06032338246896],[-161.9944623472569,59.143374382546305],[-162.05183434731032,59.271549382665675],[-162.00138834726334,59.30643238269816],[-161.98804934725092,59.24309938263918],[-161.96058934722535,59.379211382765945],[-161.70750634698965,59.495885382874604],[-162.23838934748406,60.05977938339977],[-162.1997863474481,60.14367438347791],[-162.2536833474983,60.19700438352757],[-162.15367734740516,60.24478138357207],[-162.2872843475296,60.238119383565866],[-162.27144334751483,60.16617338349886],[-162.3525593475904,60.140064383474545],[-162.33504434757407,60.208669383538435],[-162.47451334770398,60.29701038362071],[-162.2267153474732,60.505626383815],[-162.22421534747087,60.58090638388511],[-161.8817183471519,60.70146238399739],[-162.08591234734206,60.65784338395676],[-162.16202734741296,60.734794384028426],[-162.12671434738007,60.64923738394875],[-162.27036034751384,60.61201138391408],[-162.44229134767397,60.42562138374049],[-162.4231243476561,60.37617438369444],[-162.60754134782786,60.327565383649166],[-162.55868034778237,60.256451383582935],[-162.7022673479161,60.26034138358656],[-162.45171334768273,60.186726383518],[-162.5114613477384,59.99950538334364],[-162.75395734796422,60.002006383345964],[-162.8167313480227,59.93477538328335],[-163.36644634853465,59.818942383175475],[-164.11031834922744,59.834771383190215],[-164.2208873493304,59.945047383292916],[-164.11395434923082,60.0017213833457],[-164.42700834952237,60.09060038342847],[-164.66397734974308,60.25921138358551],[-164.65065034973065,60.32699138364863],[-164.77731734984863,60.29059938361474],[-165.07840535012903,60.39087238370813],[-165.1464573501924,60.44475138375831],[-165.02787135008197,60.465313383777456],[-164.9859133500429,60.54336938385015],[-165.25088735028967,60.49642438380643],[-165.42758335045423,60.554474383860494],[-165.0067633500623,60.700311383996315],[-165.03371435008742,60.78475938407496],[-164.8723133499371,60.84253138412877],[-164.93927234999944,60.92669738420715],[-164.84149234990838,60.86614438415076],[-164.64539134972577,60.90975538419137],[-164.69983134977645,60.84669838413265],[-164.65817334973767,60.81920238410704],[-164.27179934937783,60.78309938407342],[-164.2206483493302,60.68810238398494],[-164.43148634952655,60.5525433838587],[-163.94733234907565,60.78004938407057],[-163.80676434894474,60.74394338403695],[-163.80175234894006,60.580614383884836],[-163.45369734861592,60.67783938397539],[-163.47146134863246,60.75062438404317],[-163.4109443485761,60.74978538404239],[-163.93122134906065,60.851445384137065],[-163.560091348715,60.88783938417097],[-163.75818634889947,60.93310638421312],[-163.67954334882626,60.9911683842672],[-163.96009134908752,60.854778384140175],[-164.55981834964606,60.850041384135764],[-164.63928834972006,60.92808838420845],[-164.87097634993586,60.94695438422602],[-164.9383433499986,60.95243938423113],[-164.99002235004673,60.93483438421473],[-165.07424835012517,60.90614238418801],[-165.110565350159,60.922557384203294],[-165.19287235023563,60.959753384237935],[-164.76789734983984,61.11031538437816],[-164.99564735005197,61.11197638437971],[-165.04843935010112,61.0568913843284],[-165.18732735023048,61.122807384389795],[-165.0648323501164,61.21058338447154],[-165.14094435018728,61.25586138451371],[-165.08509635013527,61.21308538447387],[-165.15345335019893,61.15530038442006],[-165.37232535040278,61.20002838446171],[-165.2100973502517,61.262811384520184],[-165.20289435024497,61.32308238457632],[-165.2592913502975,61.32752938458046],[-165.15705535020228,61.358359384609166],[-165.1529063501984,61.41613638466298],[-164.8476153499141,61.493643384735165],[-164.7184433497938,61.62475738485727],[-165.16290135020773,61.431098384676915],[-165.28984035032596,61.333076384585624],[-165.22425735026488,61.27391138453052],[-165.4098303504377,61.2075273844687],[-165.34369835037612,61.15641238442109],[-165.3753693504056,61.06947638434013],[-165.60174535061643,61.11225138437997],[-165.64984635066122,61.23696538449611],[-165.61121435062526,61.280018384536206],[-165.87092035086712,61.326401384579405],[-165.92399435091656,61.41278738465986],[-165.7798333507823,61.45668238470074],[-165.7954023507968,61.51889938475868],[-165.89318035088786,61.55389438479128],[-166.1301103511085,61.49667338473798],[-166.2001263511737,61.588065384823096],[-166.16485935114088,61.713066384939516],[-166.13958335111732,61.63390238486579],[-165.76486335076834,61.68778738491597],[-166.00207835098928,61.72639738495193],[-166.10096335108136,61.815287385034715],[-165.59180735060718,61.85029938506732],[-165.75877835076267,61.991960385199256],[-165.70571635071326,62.112804385311804],[-165.08324935013354,62.52892138569934],[-164.86990434993484,62.53447838570452],[-164.85351234991958,62.47058238564501],[-164.6107443496935,62.430875385608026],[-164.75435434982722,62.371142385552396],[-164.57601534966113,62.424482385602076],[-164.68020434975818,62.46420738563907],[-164.63604934971707,62.510594385682275],[-164.83572134990303,62.480867385654584],[-164.7935203498637,62.54031638570995],[-164.8573943499232,62.56447738573245],[-164.4815883495732,62.745040385900616],[-164.79492934986501,62.610872385775664],[-164.8899433499535,62.78058738593372],[-164.76662434983868,62.78864638594123],[-164.88021334994446,62.83475738598417],[-164.71107234978692,63.014213386151305],[-164.31663134941957,63.01060338614794],[-164.59023234967438,63.13282438626177],[-164.3830223494814,63.21976738634274],[-164.1472133492618,63.259504386379746],[-163.72773634887113,63.21394638633732],[-163.63410334878392,63.142558386270835],[-163.66440534881215,63.1111693862416],[-163.54273234869882,63.12199838625168],[-163.80551634894357,62.98283138612208],[-163.54135834869754,63.10533538623617],[-163.34411834851386,63.02116938615778],[-163.06384434825281,63.059226386193224],[-162.6827503478979,63.22978738635207],[-162.61858934783817,63.270583386390065],[-162.27553634751865,63.48868438659319],[-162.31440434755487,63.54036338664132],[-162.0169263472778,63.480918386585955],[-162.15718334740842,63.425080386533956],[-161.15412434647425,63.511764386614686],[-160.7888703461341,63.74011038682735],[-160.77499634612116,63.85428138693368],[-160.94332234627794,64.06705338713184],[-160.9639083462971,64.23705738729016],[-161.25312234656647,64.39206138743452],[-161.1961463465134,64.41484538745574],[-161.54088434683445,64.38567538742858],[-161.4028633467059,64.53401838756673],[-161.00477334633518,64.5215263875551],[-161.08504234640992,64.54957338758122],[-160.82005334616315,64.61485338764201],[-160.78423734612977,64.71570238773594],[-161.15816734647802,64.92262738792866],[-160.99285134632407,64.93790438794288],[-161.19732234651448,64.93430038793952],[-161.3775883466824,64.78735238780267],[-161.5503783468433,64.74483538776306],[-161.80370834707924,64.82123138783422],[-161.71786134699929,64.78761738780292],[-161.89036734715995,64.71067638773125],[-162.11674534737077,64.71511338773539],[-162.57895834780123,64.52010538755377],[-162.6342193478527,64.38676638742959],[-162.7806473479891,64.3361933873825],[-162.87230334807444,64.45730438749528],[-162.82979234803486,64.49508738753048],[-163.05314834824287,64.55119338758273],[-163.15702734833962,64.65591438768026],[-163.39064234855718,64.59231338762103],[-163.03981334823044,64.51536638754936],[-163.17840934835954,64.4067533874482],[-163.5662053487207,64.56563938759618],[-164.36008834946006,64.5789663876086],[-164.72621934980103,64.48423338752036],[-164.66790234974673,64.52229038755581],[-164.89262834995603,64.48505438752113],[-164.9309573499917,64.5331193875659],[-164.9228983499842,64.45673238749475],[-164.7698573498417,64.47451238751131],[-165.0312303500851,64.44310438748207],[-166.23955635121044,64.59532038762381],[-166.49262635144612,64.73420438775317],[-166.38987935135043,64.89059638789882],[-166.70044235163968,64.9922583879935],[-166.92183135184587,65.13084438812257],[-166.96129935188262,65.20975638819607],[-166.8585253517869,65.28309538826437],[-166.92628935185002,65.1450433881358],[-166.68711835162728,65.11587238810863],[-166.54572735149557,65.13115038812285],[-166.46766635142288,65.18532338817332],[-166.487111351441,65.23393838821858],[-166.37654835133802,65.26838138825066],[-166.05406435103768,65.25117438823463],[-166.6296173515737,65.36338038833914],[-167.459919352347,65.41807838839009],[-168.06750435291286,65.57949338854041],[-168.12443235296587,65.6736433886281],[-167.8491593527095,65.76061338870909],[-168.03473835288233,65.6883703886418],[-168.04446835289139,65.63393938859112],[-167.82000935268235,65.71727638866872],[-167.52055835240347,65.72950438868011],[-167.57443335245364,65.79588238874194],[-167.35638535225058,65.88674138882655],[-167.0488803519642,65.87533338881593],[-166.87553935180276,65.93367238887026],[-166.96777035188865,65.97256738890648],[-166.79637835172903,65.98035238891373],[-166.71749635165557,66.06145638898927],[-166.26974535123856,66.17842538909821],[-165.80943035080986,66.10231938902733],[-165.50361335052503,66.1442723890664],[-165.87914635087478,66.22176838913857],[-165.7692003507724,66.31704838922731],[-165.16391435020867,66.44261238934425],[-165.03609935008964,66.39344938929847],[-164.7202803497955,66.54873238944307],[-164.39950734949676,66.58865438948027],[-164.35638534945662,66.59402638948526],[-163.93662134906566,66.60772638949803],[-163.62776034877803,66.56653638945966],[-163.94081534906957,66.58014538947234],[-163.75748734889885,66.51737138941388],[-163.8969163490287,66.39180038929692],[-163.85717434899166,66.2762403891893],[-164.19024634930187,66.19038738910935],[-163.92467534905455,66.20734338912513],[-163.83357134896968,66.11150038903588],[-163.65912534880724,66.06984438899708],[-162.76022534797005,66.10652638903125],[-162.6671673478834,65.99679838892905],[-162.15465534740608,66.07681038900357],[-161.81910734709356,65.97432038890813],[-161.84102234711398,66.01237638894355],[-161.72576334700665,66.07988438900642],[-161.7846623470615,66.07793038900462],[-161.5333063468274,66.2671013891808],[-161.0899513464145,66.24099938915649],[-161.1104723464336,66.13406338905689],[-161.178554346497,66.11681938904083],[-161.06716934639329,66.13209538905505],[-161.00497234633536,66.2510103891658],[-161.12938534645122,66.3390543892478],[-161.72411934700511,66.40377338930807],[-161.91246934718052,66.36571438927263],[-161.85911534713082,66.28127038919399],[-161.91273334718076,66.273762389187],[-161.96468034722915,66.33209738924133],[-161.87524634714586,66.43682338933885],[-161.9088893471772,66.53460438942992],[-162.22666034747314,66.70987738959316],[-162.50391734773135,66.73737038961876],[-162.63417534785268,66.86209538973492],[-162.48336834771223,66.95543838982186],[-162.32696734756655,66.9565553898229],[-162.01753334727837,66.776275389655],[-162.07806534733476,66.65737438954426],[-161.57524834686646,66.44654938934792],[-161.18888234650663,66.53794038943303],[-160.82524434616798,66.37766338928375],[-160.23329234561666,66.39908338930371],[-160.21246034559726,66.52379738941985],[-160.32413334570128,66.60241038949307],[-160.24302134562572,66.64352138953136],[-160.54499034590697,66.58629238947806],[-160.84136034618297,66.6621243895487],[-161.14305834646396,66.64684538953446],[-161.2521753465656,66.54822438944261],[-161.50942334680516,66.53322438942864],[-161.90058834716945,66.72766538960973],[-161.80310134707867,66.89907038976935],[-161.5197793468148,66.98655238985083],[-161.87059034714153,67.05127638991111],[-162.237252347483,67.00656038986946],[-162.30033834754175,67.06822138992689],[-162.2992023475407,67.00266838986585],[-162.45502134768583,66.98821538985237],[-162.33171934757098,67.14906339000218],[-162.3792053476152,67.16294839001512],[-162.5708663477937,67.00821838987102],[-163.72474434886834,67.11012638996593],[-163.82536434896204,67.35402339019306],[-164.02290334914602,67.54625139037209],[-164.70986534978582,67.82763039063414],[-165.28745335032372,68.01367939080743],[-165.36434535039533,68.03845039083049],[-165.92212635091482,68.13009939091584],[-166.29077435125814,68.29148739106614],[-166.83079535176108,68.35008839112072],[-166.31495935128066,68.39871339116601],[-166.3696523513316,68.43843139120301],[-166.2288623512005,68.57178439132718],[-166.20138435117488,68.69593339144282],[-166.2350103512062,68.87428139160892],[-164.32779134942996,68.92987639166068],[-163.56393934871858,69.14434539186044],[-163.18733334836784,69.41824039211552],[-163.27371134844827,69.2932343919991],[-163.1234213483083,69.38409039208372],[-163.06846334825713,69.56743639225448],[-163.14848734833166,69.60186039228653],[-162.9443113481415,69.69214239237061],[-163.0293403482207,69.72798439240398],[-162.9659963481617,69.77771739245031],[-161.9558193472209,70.30302239293954],[-161.7130533469948,70.27026539290904],[-161.8988983471679,70.25581239289556],[-161.78601134706275,70.2214813928636],[-162.00867234727014,70.19243239283654],[-162.12412534737766,70.15497839280167],[-161.703611346986,70.19247539283658],[-161.616647346905,70.2549933928948],[-160.9525093462865,70.28942939292688],[-160.97918734631133,70.32388339295896],[-160.15371534554257,70.60418139322002],[-159.94090134534437,70.59280839320942],[-159.9231243453278,70.53807439315844],[-160.20201834558753,70.47110939309607],[-159.9236593453283,70.48307939310723],[-160.13221634552252,70.3178003929533],[-159.94472034534792,70.36362839299598],[-159.77306734518805,70.19167439283584],[-159.890038345297,70.3911423930216],[-159.81755234522947,70.49501539311834],[-159.67747434509903,70.46633839309163],[-159.28894834473718,70.53004839315096],[-159.73335534515107,70.49280439311629],[-159.94173534534514,70.63223839324614],[-160.12117634551225,70.60445939322028],[-159.67151234509348,70.79753439340008],[-159.16542234462213,70.8803293934772],[-159.3726023448151,70.84338139344278],[-159.15125034460894,70.81950639342054],[-159.44845634488573,70.77921339338303],[-159.22065134467357,70.68726739329739],[-159.28124334473,70.75616139336155],[-159.00286334447074,70.77173339337605],[-159.08093534454346,70.8131143934146],[-158.6845583441743,70.78506039338848],[-158.34233034385556,70.81702039341823],[-158.5118043440134,70.84840539344746],[-157.88388634342863,70.85589639345444],[-157.27874134286503,71.04843739363375],[-156.8198843424377,71.2998443938679],[-156.48569434212644,71.40623539396698],[-156.37958134202762,71.37234639393543],[-156.60485934223743,71.34957639391422],[-156.4504293420936,71.26319739383376],[-156.10484234177176,71.24124639381333],[-156.04651634171742,71.20930939378358],[-156.11288734177924,71.17151139374837],[-155.94928634162687,71.2193053937929],[-155.64791634134622,71.18540539376133],[-155.5504033412554,71.11735039369793],[-155.73922734143125,70.99959139358828],[-156.18590534184725,70.91790139351218],[-155.9861633416612,70.89818939349382],[-155.97698334165267,70.75540839336085],[-155.90477934158542,70.76679339337146],[-155.89786234157899,70.82735739342786],[-155.5867013412892,70.83929639343899],[-155.53868334124448,70.93539939352848],[-155.3906493411066,71.00319839359162],[-155.19617934092548,70.98902839357842],[-155.29065334101347,71.08514439366795],[-155.09841634083443,71.08403439366691],[-155.1048073408404,71.14848939372695],[-155.043155340783,71.13097339371063],[-155.09562634083184,71.0162673936038],[-155.02006234076148,71.01875539360611],[-155.00341634074596,71.11663039369728],[-154.60586134037572,71.01432239360199],[-154.65781634042412,70.91708939351143],[-154.80893734056485,70.87764039347469],[-154.19778533999568,70.77599339338002],[-153.9183503397354,70.88878039348506],[-153.22583333909046,70.9282243935218],[-152.8135813387065,70.88629939348276],[-152.7046753386051,70.81017239341185],[-152.6652553385684,70.85685239345534],[-152.74357033864132,70.88157139347835],[-152.43856633835728,70.86962939346722],[-152.21882033815263,70.81074739341238],[-152.5107683384245,70.6935033933032],[-152.4971163384118,70.64351439325665],[-152.07573433801934,70.58019839319768],[-152.62600733853185,70.55239839317179],[-151.7440243377104,70.55963839317853],[-151.86901733782685,70.5126963931348],[-151.76961633773425,70.49879839312186],[-151.96928433792021,70.44323339307012],[-151.2234343372256,70.37075939300263],[-151.17594933718135,70.37520039300676],[-151.2006823372044,70.43437539306187],[-150.78317433681556,70.50189539312476],[-150.37202633643264,70.48579439310976],[-150.406769336465,70.40911539303835],[-149.89121233598485,70.51470939313668],[-149.49786033561853,70.52248639314394],[-148.61027433479188,70.39833939302831],[-148.5080503346967,70.31110239294706],[-148.22581933443385,70.35888739299156],[-147.86162733409466,70.30972939294578],[-147.69271833393736,70.20889939285188],[-145.84233433221405,70.17032439281596],[-145.61061033199823,70.06477839271766],[-144.97058533140216,69.96867139262815],[-144.11696133060718,70.06424239271715],[-144.07193533056522,69.98423839264265],[-144.0266843305231,70.04619239270033],[-144.06779733056138,70.07898339273089],[-143.77796233029144,70.09975739275023],[-143.35137432989416,70.10870639275856],[-143.29722632984374,70.04176539269622],[-143.2833493298308,70.11815339276737],[-142.5955033291902,70.00400539266106],[-142.27186932888878,69.84843739251616],[-141.73378232838766,69.77537639244812],[-141.3909993280684,69.64092639232291],[-141.26294032794914,69.6342573923167],[-141.2234823279124,69.67231339235215],[-141.3085093279916,69.69091539236948],[-141.00566032770953,69.64219439232409],[-141.00566032770953,69.64211739232402],[-141.00472332770866,68.42791539119321],[-141.00243432770654,65.8400893887831],[-140.99891232770327,61.894541385108525],[-140.99738532770183,60.306829383629854],[-140.99715632770162,60.30679138362982],[-140.5231903272602,60.22186538355073],[-140.4526383271945,60.30936738363222],[-139.98117532675542,60.18744738351867],[-139.67841632647344,60.34023438366096],[-139.06978632590662,60.35191038367184],[-139.19060332601913,60.08857738342659],[-138.69199532555479,59.90662638325714],[-138.61753532548542,59.77385938313349],[-137.59264832453093,59.23825338263467],[-137.46743232441432,58.905722382324974],[-136.81078632380274,59.16487838256633],[-136.5857753235932,59.16294438256453],[-136.4876413235018,59.265141382659706],[-136.4646443234804,59.289079382682004],[-136.46548732348117,59.46937738284992],[-136.2357383232672,59.525508382902196],[-136.34572732336966,59.60245738297386],[-135.72488732279143,59.744530383106174],[-135.4754413225591,59.801613383159335],[-135.0162953221315,59.567173382941],[-135.02294032213769,59.47077138285122],[-135.0934983222034,59.42661238281009],[-134.99098432210795,59.38966338277568],[-134.97721932209512,59.3489913827378],[-134.95374832207327,59.279663382673235],[-134.6898583218275,59.24300538263909],[-134.56820432171418,59.13023038253406],[-134.4631913216164,59.12634238253044],[-134.33459432149664,58.9656603823808],[-134.24732232141534,58.85662938227925],[-133.82869232102547,58.725789382157394],[-133.43172632065577,58.458846381908785],[-133.36284332059162,58.28022938174244],[-133.17104832041298,58.15640238162712],[-133.13868332038285,58.13550538160765],[-132.36361631966102,57.342751380869345],[-132.22834831953503,57.204385380740476],[-132.33864231963776,57.08799538063208],[-132.02918931934954,57.03606138058372],[-132.1047483194199,56.86633138042564],[-131.86307731919484,56.79939838036331],[-131.82583931916017,56.59661038017445],[-131.5594763189121,56.601897380179366],[-131.07461431846053,56.404973379995965],[-131.05670031844386,56.3977023799892],[-130.77615331818257,56.36576637995945],[-130.62890531804544,56.25827237985934],[-130.46365231789153,56.234944379837614],[-130.41589131784704,56.12855437973853],[-130.0902983175438,56.11775237972847],[-130.01677931747534,55.90888737953395],[-130.17641431762402,55.75413637938983],[-130.17641431762402,55.75409437938979],[-130.1455883175953,55.54108237919141],[-129.9922353174525,55.281382378949544],[-130.10307331755573,55.22747737889934],[-130.3613873177963,54.90771137860153],[-130.58860731800792,54.793544378495206],[-130.57750131799756,54.857429378554706],[-130.6877833181003,54.76160337846546],[-130.74302531815172,54.96603637865585],[-130.74109431814992,54.81854537851849],[-130.84915331825056,54.76715937847064],[-130.92776931832378,54.80909937850969],[-130.93806731833337,54.962991378653015],[-131.01030931840063,55.00383437869105],[-130.8411333182431,55.10271937878315],[-130.72028031813053,55.07660537875883],[-130.46336231789127,55.32744937899245],[-130.75559331816342,55.09243237877357],[-130.81809831822164,55.14244037882014],[-130.93030031832615,55.08716237876866],[-131.05780631844488,55.12243237880151],[-131.0675133184539,55.19104137886541],[-130.94557031834034,55.279656378947934],[-130.61558531803303,55.29577337896295],[-130.65586931807056,55.34549337900925],[-130.86585931826613,55.30826637897458],[-130.88753831828632,55.704924379344],[-130.95864431835253,55.77659037941074],[-130.9178133183145,55.81131037944308],[-131.00057531839158,55.79852937943117],[-131.20281231857993,55.973511379594136],[-131.0119923184022,56.10602437971755],[-131.32420731869297,55.96463037958587],[-131.4114243187742,56.00518737962364],[-131.9172463192453,55.85796737948653],[-131.75419031909342,55.807403379439435],[-131.86472231919637,55.7249013793626],[-131.81696131915191,55.66907837931061],[-131.88110731921165,55.59824037924464],[-132.00559031932758,55.661846379303874],[-131.9294783192567,55.59157137923843],[-131.964175319289,55.498242379151506],[-132.1775253194877,55.58990837923688],[-132.26779831957177,55.75573937939132],[-132.2256533195325,55.73895237937569],[-132.17502431948537,55.71879237935691],[-132.17584831948614,55.79963837943221],[-132.04947731936846,55.805468379437634],[-132.0628163193809,55.93686537956001],[-131.94584731927193,55.968247379589236],[-131.96195631928694,56.165192379772655],[-131.49196131884923,56.220467379824136],[-131.9086393192373,56.228523379831636],[-131.97196431929626,56.35687737995118],[-132.15918431947063,56.3768753799698],[-132.19086031950013,56.46048638004767],[-132.34778631964627,56.527149380109755],[-132.3125113196134,56.63743438021246],[-132.54948831983413,56.62743038020315],[-132.4566823197477,56.67159838024428],[-132.52614331981238,56.71437638028412],[-132.36390931966127,56.819939380382436],[-132.50450631979223,56.7502123803175],[-132.77060132004004,56.84354038040441],[-132.9250603201839,56.97659738052833],[-132.76978132003927,56.962156380514884],[-132.793097320061,57.087706380631815],[-132.88617932014768,57.01687338056585],[-133.16008132040278,57.07965438062431],[-133.11616432036186,57.144100380684336],[-133.15895032040171,57.16409638070296],[-133.24476832048165,57.17270838071098],[-133.29811432053134,57.09631538063983],[-133.52813732074554,57.17025138070869],[-133.55479632077038,57.17881938071667],[-133.47365032069482,57.27908938081005],[-133.24421332048112,57.27492638080618],[-133.0453133202959,57.366872380891806],[-133.22586832046403,57.31298138084162],[-133.43394532065784,57.346591380872916],[-133.33670532056726,57.43491838095518],[-133.4708663206922,57.43714238095725],[-133.49698332071654,57.5376993810509],[-133.31283332054505,57.58937338109903],[-133.58533932079882,57.56798738107911],[-133.66395532087205,57.632709381139385],[-133.6434183208529,57.704657381206395],[-133.00477432025815,57.50938438102453],[-133.54701132076315,57.765496381263056],[-133.54701532076314,57.91048838139809],[-133.12308032036833,57.85716838134843],[-133.52594232074352,57.91613738140335],[-133.56895832078357,57.922435381409215],[-133.69310532089918,57.78716238128323],[-133.85757532105237,57.953544381438185],[-133.77453432097502,57.99132638147338],[-133.68285432088965,57.93770838142344],[-133.67089232087852,58.013554381494075],[-133.7681553209691,58.05576838153339],[-133.67257132088008,58.14716638161851],[-133.90008832109197,57.97604338145914],[-134.06620132124667,58.085492381561075],[-134.0681583212485,58.27661538173907],[-133.9778533211644,58.31773238177736],[-134.01176532119598,58.397170381851346],[-133.92259032111292,58.497456381944744],[-133.77091032097167,58.51801138196389],[-133.98091332116724,58.49383838194137],[-134.17646932134937,58.1963263816643],[-134.51178632166165,58.353556381810726],[-134.7632033218958,58.38187938183711],[-134.77764232190924,58.490775381938526],[-134.99069132210766,58.669669382105134],[-134.91262132203497,58.65605838209245],[-134.94903632206888,58.81438838223991],[-135.03125432214546,58.73661438216748],[-135.14907132225517,58.840771382264485],[-135.161778322267,58.97451238238904],[-135.1635003222686,58.992720382406],[-135.36822332245927,59.273278382667286],[-135.360411322452,59.34369738273287],[-135.34655732243908,59.46855338284915],[-135.3831623224732,59.35852938274668],[-135.40099932248978,59.30494038269677],[-135.5546253226329,59.318001382708935],[-135.3570823224489,59.204943382603645],[-135.30654632240183,59.08327638249033],[-135.41405932250194,59.19688638259614],[-135.5523993226308,59.22854638262562],[-135.37847532246883,59.09078138249732],[-135.39103532248052,58.95883838237444],[-135.16458932226962,58.63632738207408],[-135.2231823223242,58.592160382032944],[-135.0934793222034,58.43632038188781],[-135.08734432219768,58.23271038169818],[-135.34595432243853,58.26466138172794],[-135.48226632256547,58.47529838192411],[-135.48292232256608,58.47632138192506],[-135.4740403225578,58.371879381827796],[-135.63600632270865,58.421881381874364],[-135.91738332297072,58.382704381837875],[-135.8746103229309,58.46020038191005],[-135.94821732299943,58.45742238190746],[-135.84571032290395,58.46880738191806],[-135.89077232294594,58.57658638201844],[-135.822138322882,58.59936138203965],[-136.07019832311303,58.81738938224271],[-135.7713403228347,58.89989838231955],[-135.96550332301553,58.91599538233454],[-136.04411032308874,58.85405338227685],[-136.03605932308125,58.91599138233454],[-136.1641183232005,59.033207382443706],[-136.1371643231754,58.950147382366346],[-136.22657632325868,58.92431738234229],[-136.11186332315185,58.92904038234669],[-136.0974213231384,58.855997382278666],[-136.22377432325607,58.749055382179066],[-136.3851803234064,58.80405038223029],[-136.26714732329646,58.8221083822471],[-136.484612323499,58.839042382262875],[-136.49076332350472,58.965157382380326],[-136.58270632359034,58.91543438233402],[-136.70854432370754,59.01848938243],[-136.61020232361597,58.90737638232651],[-136.66131832366355,58.89098638231125],[-137.05601132403115,59.06394238247233],[-136.90577832389124,58.926812382344615],[-137.03187932400868,58.91263938233141],[-137.12743032409765,58.821532382246566],[-136.99019032396984,58.89458938231461],[-136.57546432358362,58.838208382262096],[-136.48295832349746,58.79238038221941],[-136.63741432364128,58.82182738224684],[-136.524357323536,58.69932938213275],[-136.4382303234558,58.66488938210068],[-136.49711332351063,58.74988338217984],[-136.3393293233637,58.683499382118015],[-136.52571832353726,58.61100538205049],[-136.33349432335825,58.59434238203498],[-136.29407232332153,58.662117382098096],[-136.12043132315983,58.55380038199722],[-136.2107253232439,58.51296838195919],[-136.08268032312466,58.511309381957645],[-136.03100432307653,58.38298338183814],[-136.08514332312694,58.33797638179622],[-136.27823432330678,58.3090733817693],[-136.31824332334403,58.399077381853125],[-136.50711932351996,58.44129138189244],[-136.49488832350858,58.38435438183941],[-136.55797632356732,58.37351338182931],[-136.4832363234977,58.33351038179206],[-136.4107463234302,58.37434738183009],[-136.36378032338646,58.29824438175921],[-136.60323932360947,58.356849381813795],[-136.65549132365814,58.338790381796976],[-136.56158832357067,58.255732381719625],[-136.65604332365865,58.214897381681595],[-136.71604632371452,58.251848381716],[-136.67936032368036,58.29823838175921],[-136.84493832383458,58.317131381776804],[-136.866886323855,58.381298381836565],[-136.8946893238809,58.34046438179853],[-136.95188432393417,58.39574038185002],[-137.0944163240669,58.381848381837074],[-137.62832732456417,58.59852238203887],[-137.44248532439107,58.659348382095516],[-137.66945232460245,58.62214038206087],[-137.92851432484372,58.79662738222337],[-137.9668173248794,58.90439738232374],[-138.29814732518798,59.076364382483895],[-138.60507032547383,59.11692138252167],[-138.500061325376,59.119420382524],[-138.44533832532505,59.191365382591],[-138.62755932549476,59.13914738254237],[-139.1980873260261,59.314431382705614],[-139.11502332594875,59.306932382698626],[-139.226984326053,59.37748638276434],[-139.3003143261213,59.343597382732774],[-139.8374833266216,59.5330343829092],[-139.5725103263748,59.60997638298086],[-139.47141832628068,59.70746738307166],[-139.61946732641854,59.88496538323697],[-139.48781532629593,59.98469138332984],[-139.29447432611587,59.85468838320877],[-139.34113532615933,59.72385038308691],[-139.2639273260874,59.622460382992486],[-139.34223032616035,59.60469438297594],[-139.28724432610915,59.571081382944634],[-139.2261203260522,59.61579938298628],[-139.28031332610269,59.82996638318574],[-138.89449632574338,59.806340383163736],[-139.23307132605868,59.86912838322221],[-139.5153493263216,60.050525383391154],[-139.58947132639062,59.9485723832962],[-139.83613232662034,59.82301938317927],[-140.4050563271502,59.69771138306257],[-141.00170932770587,59.80231638315999],[-141.45032932812367,59.88096938323324],[-141.2609513279473,59.976542383322254],[-141.28151932796646,60.07126838341047],[-141.39265632806996,60.13820038347281],[-141.4790183281504,60.11625238345237],[-141.3867933280645,60.023759383366226],[-141.7175873283726,59.95206138329945],[-142.71905132930527,60.10949138344607],[-143.8889313303948,59.99001238333479],[-144.14860233063663,60.03165338337358],[-144.0030953305011,60.042518383383694],[-144.25255433073346,60.145010383479146],[-144.18975133067497,60.202513383532704],[-144.5761273310348,60.18526838351664],[-144.70084633115096,60.276921383602],[-144.93837833137218,60.30111938362454],[-144.79643733123999,60.45167038376475],[-144.78838333123247,60.4930623838033],[-144.8841813313217,60.478063383789326],[-144.76367933120946,60.66279838396138],[-144.6133863310695,60.71502738401002],[-144.76030833120632,60.679081383976545],[-144.82603633126755,60.59291138389629],[-145.2253143316394,60.36834538368715],[-145.35140033175682,60.351658383671605],[-145.65561833204015,60.46694438377897],[-145.94228133230712,60.46749838377949],[-145.62777133201422,60.671387383969375],[-145.8741973322437,60.62054538392203],[-145.8064033321806,60.65721738395618],[-145.87334333224294,60.649714383949195],[-145.84920033222045,60.696105383992396],[-145.99087333235238,60.62860838392954],[-145.92504933229108,60.70584038400146],[-146.25562433259896,60.63777538393807],[-146.01866333237825,60.74280038403589],[-146.0428333324008,60.79808638408738],[-146.26841333261086,60.72194938401647],[-146.30447233264445,60.773338384064324],[-146.4878093328152,60.67805338397559],[-146.65537533297126,60.69917038399525],[-146.68863533300222,60.74458538403755],[-146.09185733244644,60.83369338412054],[-146.23308433257796,60.892234384175055],[-146.36527833270108,60.819998384107784],[-146.6258883329438,60.819174384107015],[-146.6183993329368,60.875835384159785],[-146.75621733306517,60.9491843842281],[-146.585323332906,60.9369523842167],[-146.70423833301675,60.97473238425189],[-146.66258233297796,61.03557838430856],[-146.56370033288587,61.03335338430649],[-146.64509633296169,61.06807438433882],[-146.24560733258963,61.085026384354606],[-146.30287033264295,61.130300384396776],[-146.5870253329076,61.13085438439729],[-146.96480833325944,60.939726384219284],[-147.03289633332284,60.95277638423144],[-146.98730333328038,61.00278138427801],[-147.0998323333852,61.01083238428551],[-147.15927933344054,60.945279384224456],[-147.20290033348118,61.01360738428809],[-147.27459033354793,61.00138938427671],[-147.25373933352853,60.930841384211014],[-147.36482633363198,60.8839103841673],[-147.4523543337135,60.90196238418412],[-147.38067533364674,60.983632384260176],[-147.45650933371735,60.95502738423354],[-147.43374633369615,61.01141438428605],[-147.54623233380093,60.91029738419188],[-147.48122833374038,61.073640384344],[-147.54872133380326,61.15390438441876],[-147.59707133384828,61.02308438429692],[-147.6695753339158,61.01835838429252],[-147.61095933386122,61.00503538428011],[-147.60040433385137,60.864474384149204],[-147.73123533397322,60.886980384170165],[-147.71679133395978,60.94891038422784],[-147.81097333404747,60.873353384157475],[-147.7514993339921,60.8369803841236],[-147.86733733409997,60.83196638411893],[-148.05427033427407,60.94913538422805],[-147.7014643339455,61.20362338446506],[-147.7620343340019,61.211950384472814],[-147.72758933396983,61.27695038453335],[-148.05872833427821,61.01802838429221],[-148.15207433436515,61.117492384384846],[-148.40629233460191,61.053872384325594],[-148.35876633455766,61.04526538431758],[-148.4198913346146,60.9824753842591],[-148.15069433436386,61.06581938433672],[-148.24621833445283,60.95052438422935],[-148.33320633453386,60.96386338424177],[-148.2762503344808,60.91801938419907],[-148.31430733451626,60.84078438412714],[-148.39515933459154,60.854122384139565],[-148.34235433454236,60.81328438410153],[-148.7018683348772,60.78914738407905],[-148.44960633464225,60.803564384092475],[-148.63322233481327,60.74967838404229],[-148.6437953348231,60.72638138402059],[-148.67017333484768,60.668285383966484],[-148.65639333483483,60.67320338397107],[-148.37372933457158,60.77411038406505],[-148.42319033461766,60.62464638392584],[-148.23235133443993,60.76689038405832],[-148.1995623344094,60.625481383926626],[-148.33426933453484,60.53380738384124],[-148.48983933467974,60.57575938388032],[-148.65587033483436,60.467503383779494],[-148.68625233486264,60.44770038376105],[-148.6623703348404,60.45722338376992],[-148.4537283346461,60.54047738384746],[-148.24840733445487,60.444066383757665],[-148.23648133444377,60.514644383823395],[-148.1826253343936,60.556882383862735],[-148.16901733438095,60.49827238380815],[-148.09620233431312,60.600791383903626],[-147.93903833416675,60.46168038377407],[-148.0865223343041,60.38942538370678],[-148.18204833439307,60.413824383729505],[-148.1384803343525,60.35329038367313],[-148.25203433445824,60.377114383695314],[-148.21535833442408,60.337960383658846],[-148.3156583345175,60.25126538357811],[-148.3912333345879,60.28349738360813],[-148.3606503345594,60.23126338355948],[-148.43787533463134,60.176564383508534],[-148.21314933442204,60.254899383581495],[-148.26175733446732,60.22403738355275],[-148.1817533343928,60.19629138352691],[-148.20787333441712,60.149612383483436],[-148.11231133432813,60.22742638355591],[-148.2047303344142,60.12859338346386],[-148.32787233452888,60.17377338350594],[-148.4437513346368,60.02659338336886],[-148.43206933462594,59.95216538329955],[-148.54377533472996,60.0285623833707],[-148.54543233473152,59.95969338330656],[-148.5848383347682,59.94431838329224],[-148.6457323348249,59.92055538327011],[-149.07268633522256,59.96111038330788],[-149.11852533526525,59.9844383833296],[-149.03990933519202,60.04805038338885],[-149.1098893352572,60.05054438339117],[-149.27742533541323,59.866935383220174],[-149.29742633543185,60.014987383358054],[-149.41910633554517,60.11776238345377],[-149.39242733552032,59.996925383341235],[-149.63018533574177,59.82415538318033],[-149.52797933564656,59.716106383079705],[-149.63241333574382,59.743052383104796],[-149.6496543357599,59.89970538325069],[-149.72573433583074,59.962480383309156],[-149.76104433586363,59.835259383190674],[-149.86574933596114,59.84553138320024],[-149.76687333586906,59.779430383138674],[-149.74572533584936,59.658044383025626],[-150.03631233612,59.795815383153936],[-149.9179643360098,59.71414938307788],[-149.95879533604779,59.66637338303338],[-150.02657233611092,59.628308382997936],[-150.13127933620842,59.69442038305951],[-150.08906833616913,59.5874733829599],[-150.18656833625994,59.591362382963524],[-150.17795733625192,59.529976382906355],[-150.37596833643633,59.46496838284581],[-150.23461033630468,59.717474383080976],[-150.4837523365367,59.46108138284219],[-150.55489233660296,59.5207953828978],[-150.49237233654475,59.59663438296843],[-150.65682033669788,59.54551838292083],[-150.57319833662,59.48801838286728],[-150.6373733366798,59.45913038284037],[-150.60181833664666,59.43329038281631],[-150.92345833694623,59.31689738270791],[-150.88290033690845,59.25661738265177],[-150.95946833697974,59.201780382600695],[-151.04653633706084,59.296888382689275],[-151.25794233725773,59.313541382704784],[-151.11346433712316,59.2132703826114],[-151.4168273374057,59.25797238265303],[-151.72544233769312,59.16014538256192],[-151.760750337726,59.22098738261859],[-151.97403533792465,59.27043638266464],[-151.9393283378923,59.343520382732706],[-151.81459533777615,59.35269738274125],[-151.90126833785686,59.40742738279222],[-151.68518633765564,59.47632238285639],[-151.37319133736506,59.44048838282301],[-151.4404333374277,59.53327038290942],[-151.17237333717804,59.59716438296893],[-151.19432533719848,59.64466538301317],[-150.99489133701275,59.77661638313606],[-151.4296153374176,59.659379383026874],[-151.47322233745822,59.633552383002815],[-151.4110203374003,59.60244038297384],[-151.87130133782895,59.743269383105],[-151.72107333768906,60.02133238336397],[-151.43416833742185,60.20607438353602],[-151.39390633738435,60.35968638367908],[-151.3061083373026,60.38496838370263],[-151.27752833727595,60.5385893838457],[-151.4111453374004,60.7269253840211],[-151.05417433706796,60.78721038407725],[-150.441125336497,61.02971638430309],[-150.05580333613815,60.90498238418693],[-149.81746033591617,60.97387538425109],[-149.03125633518397,60.847358384133265],[-149.03023433518302,60.84719438413311],[-149.16413233530773,60.9441443842234],[-149.35355633548411,60.9274963842079],[-150.066392336148,61.153882384418736],[-149.68889933579644,61.39389538464226],[-149.24469033538273,61.49217238473379],[-149.2444313353825,61.49222938473385],[-149.69833333580522,61.471671384714696],[-149.88219233597647,61.38194138463113],[-149.99804433608435,61.23972438449868],[-150.50109833655284,61.25222638451032],[-150.57278533661963,61.36445038461484],[-150.58999633663564,61.28388938453981],[-150.95279033697352,61.208329384469444],[-150.97180333699123,61.194435384456504],[-151.1702993371761,61.04943638432146],[-151.7452833377116,60.915826384197025],[-151.80696733776904,60.83331638412019],[-151.71224133768084,60.72275338401722],[-151.86975233782752,60.75276038404516],[-152.06087933800552,60.67025638396832],[-152.32418733825074,60.498296383808174],[-152.3333693382593,60.42996538374454],[-152.24474133817677,60.393299383710385],[-152.42448533834414,60.291348383615436],[-152.62356633852957,60.21938538354841],[-152.88867233877647,60.24994838357688],[-152.9144983388005,60.30744238363042],[-153.10531833897824,60.28882138361308],[-152.9400383388243,60.28383538360844],[-152.92390133880926,60.23334838356142],[-152.58212733849098,60.081056383419586],[-152.70938433860948,59.92160738327109],[-153.22025433908527,59.86741938322062],[-153.27412533913545,59.83324138318879],[-153.0102733388897,59.8293813831852],[-153.0466783389236,59.706327383070594],[-153.22826133909274,59.64324938301185],[-153.42746933927825,59.65074638301883],[-153.32547433918327,59.7201833830835],[-153.4510343393002,59.78851438314714],[-153.49053833933698,59.6429813830116],[-153.55809933939992,59.627978382997625],[-153.59359033943298,59.69324438305841],[-153.70776733953932,59.63212238300149],[-153.5652903394066,59.60742138297848],[-153.59109433943064,59.55546138293009],[-153.87683533969675,59.54460738291998],[-153.7671533395946,59.51988538289696],[-153.74935033957803,59.435158382818045],[-154.1446513399462,59.37681038276371],[-153.94963733976456,59.35821538274639],[-154.1140663399177,59.30320038269515],[-154.12849233993114,59.20180938260073],[-154.26294834005637,59.14153338254459],[-154.17349833997304,59.121804382526214],[-154.15737133995802,59.023194382434376],[-154.0426613398512,59.07875538248612],[-153.70488433953662,59.068489382476564],[-153.4290223392797,58.98182638239585],[-153.29263133915268,58.87821338229935],[-153.36205633921733,58.867661382289526],[-153.26153433912373,58.8571103822797],[-153.27355733913492,58.85546238227816],[-153.36483233921993,58.8429413822665],[-153.4498543392991,58.7137723821462],[-153.61068333944888,58.63404938207196],[-153.89818533971663,58.613483382052806],[-153.9728903397862,58.52848338197364],[-153.9320623397482,58.504596381951394],[-154.1053873399096,58.48125538192966],[-154.00264633981394,58.3773653818329],[-154.3565213401435,58.287087381748826],[-154.1142933399179,58.28069838174287],[-154.24542034004003,58.25514438171908],[-154.1557333399565,58.2226353816888],[-154.20880634000594,58.189581381658016],[-154.30382234009443,58.188465381656975],[-154.22633234002225,58.13902538161093],[-154.33885834012705,58.15513038162593],[-154.33554434012396,58.076521381552716],[-154.49346834027105,58.19540838166344],[-154.46468734024424,58.091239381566425],[-154.60268334037275,58.1237423815967],[-154.54273634031694,58.0631863815403],[-154.57747534034928,58.02152138150149],[-154.66937434043487,58.06874838154548],[-154.78491534054248,58.001524381482874],[-155.03626334077657,58.01901638149916],[-155.1220763408565,57.949846381434746],[-155.08239234081952,57.88179238137136],[-155.32986434104998,57.83511938132789],[-155.31321034103448,57.73373038123347],[-155.60542434130664,57.79012738128599],[-155.63765434133666,57.71900338121976],[-155.58986334129213,57.66844938117267],[-155.77211734146186,57.64289638114887],[-155.7387613414308,57.54844938106091],[-156.0362643417079,57.57289438108368],[-156.01709634169003,57.52788938104177],[-156.10513934177203,57.525667381039696],[-156.0312523417032,57.43871538095872],[-156.2040133418641,57.476769380994156],[-156.5479083421844,57.31510138084359],[-156.56011234219577,57.27065138080219],[-156.337058341988,57.283717380814366],[-156.44844434209176,57.224266380759],[-156.38215734203,57.19522638073195],[-156.3451083419955,57.178995380716835],[-156.37037434201903,57.14121338068165],[-156.47538334211686,57.1206503806625],[-156.50928334214842,57.04815438059498],[-156.6478963422775,57.05231738059886],[-156.55066234218697,56.97675738052848],[-156.7817783424022,57.044265380591355],[-156.81567634243376,56.89703838045424],[-156.9573173425657,56.978137380529766],[-156.94620434255535,56.907305380463804],[-157.08954434268884,56.822866380385165],[-157.1901023427825,56.847300380407916],[-157.1490243427442,56.81814138038076],[-157.2186933428091,56.770629380336516],[-157.4523443430267,56.848681380409204],[-157.39844434297652,56.76452038033082],[-157.6023333431664,56.71812138028761],[-157.4817533430541,56.66868538024157],[-157.48315434305542,56.61507338019164],[-157.6870493432453,56.608399380185425],[-157.78929134334052,56.67756438024984],[-158.11231034364135,56.56728138014713],[-158.12536934365352,56.5250523801078],[-157.85093034339792,56.556445380137035],[-157.87896934342405,56.46672338005348],[-158.13733134366464,56.51199838009564],[-158.14288234366984,56.45866138004597],[-158.42510934393266,56.443100380031474],[-158.652025344144,56.26365837986436],[-158.53981534403948,56.24643337984832],[-158.56230834406045,56.2936593798923],[-158.45980334396498,56.34032337993576],[-158.20924834373164,56.28255937988196],[-158.40178134391095,56.23338337983616],[-158.33952034385297,56.17227337977925],[-158.1225753436509,56.23283237983565],[-158.35950634387157,56.124215379734494],[-158.412582343921,56.171989379778985],[-158.41813334392617,56.06198837967654],[-158.5034403440056,56.09392937970629],[-158.44203334394842,55.992826379612126],[-158.56843534406616,56.02309737964032],[-158.5109493440126,56.05671337967163],[-158.59729934409305,56.03532637965171],[-158.60450134409973,56.093371379705765],[-158.47591034398,56.183935379790114],[-158.63062834412406,56.19921337980434],[-158.5659333440638,56.16031937976812],[-158.65787334414944,56.10893437972026],[-158.6984013441872,56.144486379753374],[-158.66229534415356,56.05976237967447],[-158.73812734422418,56.03615537965248],[-158.64981234414194,56.0178163796354],[-158.67202634416262,55.95420937957616],[-158.85670834433463,56.01003937962816],[-158.9294893444024,55.913649379538384],[-159.36171834480496,55.8744683795019],[-159.4265233448653,55.78558537941912],[-159.46840234490432,55.89614237952208],[-159.54562934497625,55.88030237950733],[-159.50574334493908,55.75863537939402],[-159.56444734499377,55.66756937930921],[-159.6257023450508,55.57251337922068],[-159.757958345174,55.60167837924784],[-159.6171003450428,55.634182379278116],[-159.70959534512895,55.660846379302946],[-159.63376334505833,55.69418137933399],[-159.68182734510307,55.73723537937409],[-159.62399734504922,55.81307537944472],[-159.84316034525332,55.85029837947939],[-159.8656553452743,55.78280037941653],[-160.04148034543803,55.78723737942066],[-160.06702334546182,55.69584137933554],[-160.15619634554486,55.73028637936762],[-160.1501003455392,55.658064379300356],[-160.43592134580538,55.64528237928845],[-160.36728934574145,55.601673379247835],[-160.5097993458742,55.47722037913193],[-160.59424434595283,55.60750737925327],[-160.76202634610908,55.54361537919377],[-160.65869434601285,55.50250237915548],[-160.6736783460268,55.461112379116926],[-160.8122833461559,55.450834379107356],[-160.90145034623893,55.51805737916997],[-161.24560634655947,55.34803637901162],[-161.50509334680112,55.35859037902145],[-161.4875503467848,55.480259379134765],[-161.3758893466808,55.571930379220134],[-161.14061934646168,55.532219379183154],[-161.56452434685647,55.62192237926669],[-161.71341734699513,55.51331237916555],[-161.70117534698375,55.40469937906439],[-161.90813634717648,55.209690378882776],[-162.04425834730327,55.23190037890346],[-161.9697783472339,55.101073378781614],[-162.08979434734567,55.078007378760134],[-162.14096134739333,55.11244737879221],[-162.10201534735705,55.165224378841366],[-162.2250863474717,55.110229378790144],[-162.22616034747267,55.02384137870969],[-162.43792234766988,55.03365237871883],[-162.5267243477526,55.106903378787045],[-162.36339734760048,55.101906378782395],[-162.60034234782117,55.26884537893787],[-162.56424134778754,55.29245937895986],[-162.64813534786566,55.29440337896167],[-162.723662347936,55.21856437889104],[-162.60698934782735,55.16162037883801],[-162.65035134786774,55.06634137874927],[-162.56449734778778,54.95439437864501],[-162.6545013478716,55.04967137873375],[-162.73753734794894,54.94716537863828],[-162.8797773480814,54.93105437862327],[-162.97670534817166,54.994111378682],[-162.9195163481184,55.01855737870477],[-163.18646134836703,55.13883437881678],[-163.24117834841798,55.09688637877772],[-163.2109013483898,55.014663378701144],[-163.04646834823666,54.93660937862845],[-163.36224834853073,54.81104837851151],[-163.38782334855455,54.85577037855316],[-163.27671334845107,54.91188437860542],[-163.35419834852325,54.91827237861137],[-163.33781534850797,54.95799937864837],[-163.24031234841718,54.95661437864708],[-163.3250673484961,55.12078137879997],[-163.01898534821106,55.243278378914056],[-163.0750723482633,55.17272637884835],[-162.8806143480822,55.18550237886025],[-162.8347783480395,55.226336378898274],[-162.89230734809308,55.2652303789345],[-162.49005834771845,55.3735693790354],[-162.50370434773114,55.443844379100845],[-162.61201134783204,55.42662237908481],[-161.78399934706087,55.89109237951738],[-161.19870334651577,56.00582937962424],[-161.3700883466754,55.95055037957275],[-161.24618534656,55.94165637956447],[-160.87646434621567,55.989721379609236],[-160.86315534620329,55.931944379555425],[-161.0278883463567,55.895831379521795],[-160.9303823462659,55.87527137950264],[-160.94814034628243,55.82305537945402],[-160.7981373461427,55.70999737934872],[-160.66148034601545,55.73083537936813],[-160.76066534610783,55.77583237941003],[-160.78954334613474,55.87916437950627],[-160.50316234586802,55.866390379494376],[-160.46620134583358,55.79279037942583],[-160.25174734563387,55.76972937940435],[-160.3167553456944,55.82140337945248],[-160.2406123456235,55.84528437947472],[-160.57149534593165,55.92889737955259],[-160.36954534574357,56.269175379869495],[-159.83928034524973,56.54002938012175],[-159.2112323446648,56.69336238026455],[-159.26625634471606,56.69697738026792],[-159.23760134468935,56.72725138029611],[-158.86401234434143,56.89254338045006],[-159.0276423444938,56.794211380358476],[-158.9481773444198,56.84004338040116],[-158.79840834428035,56.80097238036477],[-158.64262634413524,56.76032938032692],[-158.7020583441906,56.97643238052818],[-158.65097634414303,57.052545380599064],[-158.2873723438044,57.32340038085132],[-158.0570843435899,57.36284938088806],[-157.94014634348102,57.49118038100758],[-157.6807123432394,57.566749381077955],[-157.65931334321948,57.47395838099154],[-157.39432434297268,57.494251381010436],[-157.39905734297707,57.55924738107097],[-157.45124234302568,57.54452838105726],[-157.4223703429988,57.49257938100888],[-157.59458434315917,57.488409381005],[-157.60237234316645,57.621188381128654],[-157.7087623432655,57.64257938114858],[-157.6120953431755,58.08897238156432],[-157.395729342974,58.20591938167323],[-157.1407233427365,58.1617563816321],[-157.33710734291938,58.2384213817035],[-157.46738334304072,58.211472381678405],[-157.5671223431336,58.302863381763515],[-157.55129334311886,58.39230938184682],[-157.2655213428527,58.61100038205049],[-157.22714634281698,58.64037038207785],[-156.94046534255,58.735095382166065],[-157.07379934267416,58.76342938219245],[-156.94827134255726,58.89896538231868],[-156.85742434247265,58.997070382410044],[-156.7813373424018,59.15066038255309],[-156.8671503424817,59.102883382508594],[-156.88548634249878,59.00871238242089],[-157.11408834271168,58.87370538229516],[-157.15562334275037,58.863481382285634],[-158.201041343724,58.60619038204601],[-158.33578234384947,58.6586803820949],[-158.3682593438797,58.74729738217743],[-158.5669033440647,58.811740382237446],[-158.49690334399952,58.94841038236473],[-158.42219634392995,58.97118538238594],[-158.49467834399746,58.99868838241155],[-158.18189834370617,59.008695382420875],[-158.02578934356077,58.87008438229178],[-157.99493734353203,58.9042503823236],[-158.1316063436593,59.02758738243847],[-158.42552834393305,59.07619838248374],[-158.53915134403888,59.174526382575316],[-158.448019343954,59.05396538246303],[-158.7291123442158,58.87285138229436],[-158.79079434427325,58.96091038237637],[-158.74663634423212,58.992299382405605],[-158.8255253443056,58.97034838238516],[-158.76469934424892,58.91730038233575],[-158.7816263442647,58.770346382198895],[-158.8866383443625,58.732845382163966],[-158.80412034428565,58.79007638221727],[-158.84773334432626,58.81478838224028],[-158.91441234438838,58.768124382196824],[-158.70632534419457,58.491457381939156],[-158.84048234431953,58.40172538185559],[-159.05883934452288,58.42423038187655],[-159.43190734487033,58.78200338220975],[-159.65276734507603,58.83561438225968],[-159.62938934505425,58.95172838236782],[-159.77081434518595,58.933667382351],[-159.76498334518053,58.85339738227624],[-159.92135334532617,58.770333382198885],[-160.0180383454162,58.884782382305474],[-160.25192934563404,58.894775382314776],[-160.32221434569948,58.949776382366004],[-160.25528934563715,58.98143938239549],[-160.3288713457057,59.05894738246767],[-160.83570634617772,58.83605638226009],[-160.89888034623655,58.884774382305466],[-161.29973034660986,58.809208382235084],[-161.26568634657815,58.77463538220289],[-161.33378534664158,58.73324838216434]]],[[[-172.2826423568385,60.30175938362513],[-172.60178235713573,60.32397338364582],[-173.0510293575541,60.49339738380361],[-173.04685135755022,60.537015383844235],[-172.9193463574315,60.60285438390555],[-172.8471023573642,60.483965383794825],[-172.3904413569389,60.39286838370999],[-172.21180835677254,60.316204383638585],[-172.2826423568385,60.30175938362513]]],[[[-166.11143935109112,60.40947038372545],[-166.06648435104927,60.32753138364914],[-165.68370335069275,60.293921383617835],[-165.7328303507385,60.165029383497796],[-165.6750563506847,60.09668638343415],[-165.7278503507339,60.06558038340518],[-165.54284835056157,59.9786313833242],[-165.61446935062827,59.90141238325228],[-166.26781535123675,59.84307938319795],[-166.1189193510981,59.81057138316768],[-166.1047573510849,59.75724238311801],[-167.12892935203874,59.996396383340745],[-167.31811235221494,60.07084838341008],[-167.45313435234067,60.206678383536584],[-166.841435351771,60.203903383534],[-166.810311351742,60.27945738360437],[-166.49812335145126,60.3780713836962],[-166.39866635135863,60.34002438366077],[-166.11143935109112,60.40947038372545]]],[[[-164.17809134929055,54.603271378318006],[-164.3883783494864,54.44186837816768],[-164.6472633497275,54.38993037811932],[-164.85530734992125,54.424365378151386],[-164.95364235001284,54.586309378302204],[-164.70613934978235,54.667431378377756],[-164.49001534958106,54.9155063786088],[-164.22143734933093,54.886623378581895],[-164.13782234925304,54.96495337865485],[-163.77061434891107,55.055223378738916],[-163.53199634868884,55.04551437872988],[-163.36197334853048,54.775495378478396],[-163.14701834833028,54.765215378468824],[-163.0506033482405,54.667442378377764],[-163.37085334853876,54.753553378457966],[-163.43838534860166,54.65743837836845],[-163.60195934875398,54.60993537832421],[-164.17809134929055,54.603271378318006]]],[[[-166.64521935158825,53.52274237731168],[-166.7113193516498,53.54635437733367],[-166.66770835160918,53.48107637727288],[-166.79105935172407,53.56274237734893],[-166.75470935169022,53.44552037723977],[-166.88745935181385,53.47662237726873],[-167.14356535205238,53.41578237721207],[-167.50075835238502,53.255752377063025],[-167.6669473525398,53.236582377045174],[-167.84470535270535,53.303251377107266],[-167.69332435256436,53.38382937718231],[-167.48522835237057,53.37160337717092],[-167.47854735236433,53.434666377229654],[-167.32607135222233,53.404658377201706],[-167.30495235220266,53.46938637726199],[-167.1627323520702,53.46523137725812],[-167.1840963520901,53.51883837730804],[-166.96412035188524,53.525229377314],[-167.16188335206942,53.59245837737661],[-166.99796435191678,53.6146793773973],[-167.06553735197969,53.66496537744414],[-167.03190635194838,53.701077377477766],[-166.9024503518278,53.707192377483466],[-166.80326735173543,53.62468837740663],[-166.82743835175796,53.69968537747647],[-166.70826935164698,53.716631377492256],[-167.03190935194837,53.75080137752408],[-167.16275135207025,53.85275137761903],[-166.75250535168817,54.00829937776389],[-166.5929893515396,53.965233377723784],[-166.63940135158282,53.918010377679806],[-166.60161635154765,53.82747137759548],[-166.45804335141392,53.8843993776485],[-166.37551435133707,54.001343377757415],[-166.37079035133266,53.94411937770412],[-166.26641035123544,53.973286377731284],[-166.26640735123544,53.9080143776705],[-166.2169453511894,53.92746137768861],[-166.53911835148944,53.78190637755305],[-166.49020035144386,53.77163137754348],[-166.57271435152072,53.70942237748554],[-166.48580335143978,53.68886237746639],[-166.41717635137587,53.755536377528486],[-166.3738413513355,53.7144233774902],[-166.33359435129802,53.77801937754943],[-166.2791173512473,53.67775037745604],[-166.54021335149045,53.626911377408696],[-166.59270035153932,53.53441637732256],[-166.66582035160744,53.59246837737662],[-166.64521935158825,53.52274237731168]]],[[[-166.2213533511935,53.703867377480364],[-166.2952373512623,53.79220237756264],[-166.09195135107296,53.83858237760583],[-166.2213533511935,53.703867377480364]]],[[[-167.79725335266116,53.49465337728552],[-167.85084335271108,53.379919377178666],[-168.28753135311777,53.23518737704388],[-168.47231235328985,53.045981376867665],[-169.10957735388337,52.81812337665546],[-168.88237935367175,52.93732437676647],[-168.77040435356747,53.06680137688706],[-168.7959593535913,53.1465253769613],[-168.6234323534306,53.2712943770775],[-168.3609033531861,53.25880037706587],[-168.43064535325107,53.332140377134166],[-168.3539393531796,53.47464837726689],[-168.007523352857,53.56271237734891],[-167.79725335266116,53.49465337728552]]],[[[-174.16132935858818,52.417346376282204],[-173.9918253584303,52.32012637619166],[-174.0654563584989,52.222336376100586],[-174.19653235862094,52.22177537610006],[-174.10097135853195,52.102619375989086],[-174.43436135884244,52.10594137599218],[-174.3770773587891,52.09676537598364],[-174.4160453588254,52.03621337592725],[-174.5235363589255,52.089266375976656],[-174.48764135889206,52.03370737592491],[-174.70405335909362,52.049531375939644],[-174.72214835911046,52.00092137589438],[-175.3382693596843,52.012841375905474],[-175.02435035939192,52.02063537591273],[-174.90688935928253,52.11037337599631],[-174.57963035897774,52.09954137598622],[-174.49936835890298,52.139273376023226],[-174.55131335895138,52.17566537605712],[-174.23462035865643,52.2417873761187],[-174.44853335885566,52.31177537618388],[-174.16132935858818,52.417346376282204]]],[[[-176.94108436117702,51.583032375505184],[-176.97472336120833,51.65636037557348],[-176.81802236106242,51.768591375678],[-176.90775036114596,51.80498137571189],[-176.7049503609571,51.781949375690445],[-176.78165036102854,51.82332837572898],[-176.7030363609553,51.85139437575512],[-176.77417736102157,51.94388337584125],[-176.55836536082057,51.98222137587696],[-176.54858836081146,51.9086073758084],[-176.644714360901,51.85583737575926],[-176.42885336069997,51.83500337573985],[-176.43219836070307,51.72889137564103],[-176.50913736077473,51.7519443756625],[-176.80054536104612,51.60276137552356],[-176.82888036107252,51.712757375626005],[-176.94108436117702,51.583032375505184]]],[[[-177.91031436207967,51.59047537551212],[-178.10336536225947,51.663259375579905],[-177.95779136212388,51.76327137567305],[-178.21759836236586,51.87522037577731],[-177.9486773621154,51.91772837581689],[-177.83672036201114,51.83077537573592],[-177.62198736181116,51.850798375754565],[-177.79975836197673,51.78744837569556],[-177.91031436207967,51.59047537551212]]],[[[-171.08694535572494,63.43185638654026],[-171.45164335606458,63.313510386430046],[-171.73392035632747,63.36960138648229],[-171.85362635643895,63.50767038661087],[-171.74306735633598,63.66656638675885],[-171.73923135633243,63.788792386872686],[-171.6814583562786,63.792128386875795],[-171.63725935623745,63.69350238678394],[-171.40558335602168,63.64212438673609],[-171.51169935612052,63.644074386737906],[-171.54725235615362,63.61379138670971],[-171.4914003561016,63.59573438669289],[-171.3280943559495,63.63296338672756],[-170.91723835556687,63.570475386669365],[-170.6544133553221,63.67687738676846],[-170.30273935499457,63.69326838678372],[-170.0687993547767,63.59466338669189],[-170.03439935474466,63.53577238663704],[-170.08600335479272,63.4849423865897],[-169.1793143539483,63.29802138641562],[-168.69289635349529,63.3021913864195],[-168.85259035364402,63.15441238628188],[-169.32793335408672,63.18217838630773],[-169.6562733543925,62.943274386085236],[-169.80794035453377,63.124379386253906],[-169.98020935469418,63.141986386270304],[-170.23989635493604,63.28160338640033],[-170.85942535551303,63.461031386567434],[-171.08694535572494,63.43185638654026]]],[[[-146.09897533245305,60.39222138370938],[-146.60425533292363,60.237497383565284],[-146.67953333299374,60.287216383611586],[-146.48814633281552,60.36693938368584],[-146.72619733303722,60.37415038369255],[-146.58287133290372,60.481943383792945],[-146.09897533245305,60.39222138370938]]],[[[-146.93983233323618,60.28582338361029],[-147.24086233351653,60.12854238346381],[-147.36759133363455,60.02603438336835],[-147.3540153336219,59.97465038332049],[-147.48239133374148,59.94576538329359],[-147.47186533373167,59.86799438322116],[-147.91232033414187,59.790178383148685],[-147.74309933398428,59.89324738324468],[-147.8028413340399,59.92072838327027],[-147.66951833391573,59.96964238331582],[-147.69893233394313,59.99823838334246],[-147.19499833347382,60.24493638357221],[-147.19554433347432,60.35271238367259],[-147.01098933330243,60.341932383662545],[-147.10035733338566,60.2702593835958],[-146.93983233323618,60.28582338361029]]],[[[-152.09321933803562,58.359562381816325],[-152.14825233808688,58.23177138169731],[-151.99712033794614,58.34677638180441],[-151.96461533791586,58.28038838174258],[-152.0824243380256,58.155653381626415],[-152.19382333812933,58.17371638164324],[-152.24936533818106,58.26677938172991],[-152.3218833382486,58.240112381705075],[-152.30131433822945,58.1867723816554],[-152.36964733829308,58.1962173816642],[-152.27659533820642,58.127046381599776],[-152.54496233845634,58.084541381560186],[-152.56162133847187,58.207053381674285],[-152.62855833853422,58.077884381553986],[-152.77471433867032,58.071502381548044],[-152.78915433868377,57.99176838147379],[-153.23358833909768,58.168458381638345],[-153.18331633905086,58.21595938168258],[-152.90691933879344,58.16455838163471],[-153.10802433898075,58.263742381727084],[-153.0149763388941,58.30290338176356],[-152.76219733865867,58.25734638172113],[-152.7652473386615,58.360963381817626],[-152.88664633877457,58.406797381860315],[-152.6941323385953,58.42179438187428],[-152.6602233385637,58.476515381925246],[-152.49910633841364,58.46206738191179],[-152.52856033844108,58.412899381866],[-152.40132633832258,58.315111381774926],[-152.34965233827447,58.420671381873234],[-152.09321933803562,58.359562381816325]]],[[[-133.9575753211455,57.299930380829466],[-134.17645132134936,57.384097380907846],[-134.0839493212632,57.25410038078678],[-134.36199832152215,57.079938380624576],[-134.61423532175706,57.00910038055861],[-134.58063632172576,57.14882638068874],[-134.63593732177728,57.215492380750824],[-134.51371132166344,57.21854438075366],[-134.58341732172835,57.270493380802044],[-134.45423232160806,57.31215738084085],[-134.55760232170434,57.391329380914584],[-134.3428383215043,57.3279943808556],[-134.30646132147044,57.38854838091199],[-134.47034932162308,57.393274380916395],[-134.57426932171984,57.4893823810059],[-134.3578593215183,57.54605138105868],[-134.5750943217206,57.50549538102091],[-134.6625943218021,57.6071633811156],[-134.8054053219351,58.043821381522264],[-134.73011732186498,58.18104638165006],[-134.7906973219214,58.10437638157866],[-134.91430132203652,58.20493138167231],[-134.88176932200622,58.25410438171811],[-134.94708032206705,58.281600381743715],[-134.95846532207764,58.40743538186091],[-134.80568532193536,58.32327538178253],[-134.6876043218254,58.16243038163273],[-134.17091432134418,58.15938438162989],[-134.17954832135223,58.083270381559004],[-133.893703321086,57.79688138129229],[-133.87755132107097,57.67243038117638],[-133.79228432099157,57.59770738110679],[-133.96199732114962,57.68409538118724],[-134.23368632140264,58.02632238150597],[-134.15787732133205,57.99410338147596],[-134.3114823214751,58.091600381566764],[-134.26344232143038,58.02799338150752],[-134.3217653214847,58.02826738150778],[-134.2253533213949,57.97465538145785],[-134.3200853214831,57.98799038147027],[-134.28757932145282,57.82688038132022],[-134.2386873214073,57.858550381349716],[-134.04534432122725,57.68326338118647],[-134.07616732125595,57.64493338115077],[-133.93840232112765,57.62076338112826],[-133.84200132103786,57.46020938097873],[-134.08144732126087,57.50104938101677],[-134.0436963212257,57.47492538099244],[-134.1000633212782,57.463542380981835],[-133.9728323211597,57.44381338096346],[-133.9970033211822,57.40770338092983],[-133.88365932107666,57.415203380936816],[-133.86504432105932,57.353543380879394],[-133.9575753211455,57.299930380829466]]],[[[-134.51761532166708,58.33771638179598],[-134.26149632142855,58.194662381662745],[-134.60981232175294,58.23743838170258],[-134.68485932182284,58.30271638176338],[-134.51761532166708,58.33771638179598]]],[[[-135.88779032294315,57.98768238146998],[-135.36176532245327,57.79687438129228],[-135.31787832241238,57.754654381252955],[-135.3587143224504,57.72019838122087],[-134.91705732203908,57.752988381251406],[-134.8134413219426,57.48104038099813],[-134.9900803221071,57.450205380969415],[-135.80598032286696,57.76297338126071],[-135.7048673227728,57.673811381177664],[-135.80542932286644,57.639361381145584],[-135.57235132264938,57.58824938109798],[-135.6584743227296,57.55103138106332],[-135.55763932263568,57.538536381051685],[-135.54875432262742,57.459084380977686],[-135.6898383227588,57.36241638088766],[-135.8417873229003,57.387967380911455],[-136.01236332305916,57.511570381026566],[-135.78124732284394,57.435464380955686],[-136.06764332311064,57.59545538110469],[-135.95347532300434,57.616023381123846],[-136.1204123231598,57.616839381124606],[-136.09041832313187,57.68239838118566],[-136.2296133232615,57.783789381280094],[-136.41630032343537,57.82045338131424],[-136.4095713234291,57.833473381326364],[-136.32822132335335,57.99072038147281],[-136.03320032307857,57.842927381335166],[-136.0331093230785,57.842889381335134],[-136.0326823230781,57.84267138133493],[-136.03307832307846,57.84293138133517],[-136.43406632345193,58.10738438158146],[-136.27238932330135,58.104339381578626],[-136.35682032337996,58.21239938167926],[-136.277404323306,58.21851538168496],[-136.19597232323017,58.08045338155638],[-136.10347332314402,58.056842381534395],[-136.18211932321728,58.17741038164668],[-136.11098432315103,58.21880038168523],[-135.96763632301753,58.15963738163013],[-135.79683032285845,58.27714738173957],[-135.48428932256735,58.155208381626004],[-135.60569132268043,58.043539381522],[-135.782393322845,58.04575438152406],[-135.62403332269753,58.009373381490185],[-135.7943253228561,57.9815803814643],[-135.64959732272132,57.944644381429896],[-135.40097532248978,58.13909538161099],[-134.9431653220634,58.035488381514504],[-134.90763632203033,57.928822381415166],[-134.97178232209006,57.88493038137429],[-134.9190153220409,57.83937638133186],[-135.20650032230867,57.94187438142732],[-134.93207532205307,57.80660038130134],[-135.01233532212783,57.7766003812734],[-135.2362133223363,57.779649381276236],[-135.8893313229446,57.988243381470504],[-135.88779032294315,57.98768238146998]]],[[[-153.392819339246,57.15781538069711],[-153.4639263393122,57.11059638065313],[-153.54700533938959,57.17060238070901],[-153.50225933934792,57.063094380608895],[-153.75899633958701,57.04532138059234],[-153.60032333943923,57.04726438059415],[-153.6733983395073,57.00893338055845],[-153.5556123393976,56.97753638052921],[-153.61170933944985,56.933369380488074],[-153.68313433951636,56.96836638052067],[-153.77674033960355,56.8894813804472],[-153.69643433952874,56.865870380425214],[-153.9820083397947,56.73780538030594],[-154.15173833995277,56.745306380312925],[-153.77566233960255,56.989480380540336],[-153.9656623397795,56.98807338053902],[-153.7400733395694,57.13004838067125],[-153.8067713396315,57.1506093806904],[-154.09869233990338,56.962519380515225],[-154.11174933991555,57.043355380590505],[-153.96705933978077,57.11586838065804],[-154.468707340248,57.12616938066763],[-154.4659313402454,57.06449438061019],[-154.38675934017166,57.04476938059182],[-154.26895134006196,57.11616238065832],[-154.10341733990776,57.11559538065779],[-154.16343833996368,56.95613838050928],[-154.2970303400881,56.9069793804635],[-154.2942513400855,56.86198038042159],[-154.23868134003376,56.88170138043996],[-154.30008034009094,56.84808638040865],[-154.32950234011832,56.92642738048161],[-154.53231134030722,56.9897683805406],[-154.52953434030462,57.14701038068704],[-154.60952834037914,57.2598123807921],[-154.80344534055973,57.28538038081591],[-154.75597034051552,57.30009838082962],[-154.80927234056514,57.33899238086584],[-154.70704834046995,57.33482438086196],[-154.73011434049144,57.42150538094269],[-154.5506583403243,57.543729381056515],[-154.51483534029094,57.51428438102909],[-154.5192843402951,57.577894381088335],[-154.40093334018485,57.563723381075135],[-154.4489693402296,57.57900638108937],[-154.35063434013801,57.64456038115043],[-154.21870834001516,57.667611381171895],[-153.99839633980997,57.6345473811411],[-153.9786843397916,57.563430381074866],[-154.11006933991396,57.53787938105107],[-153.9506383397655,57.54121238105417],[-153.88845033970756,57.40425838092663],[-153.63034133946718,57.268684380800366],[-153.81035433963484,57.399811380922486],[-153.85368033967518,57.56677238107798],[-153.68396933951715,57.54398738105676],[-153.8825783397021,57.642328381148346],[-153.58341433942348,57.61176538111988],[-153.9089723397267,57.70705138120862],[-153.93062833974685,57.81039138130487],[-153.64395533947987,57.889277381378335],[-153.50788433935315,57.625363381132544],[-153.52841133937227,57.71565738121664],[-153.43700733928713,57.69926238120137],[-153.50032633934612,57.767042381264496],[-153.31754133917588,57.72508538122542],[-153.47418733932176,57.84176838133409],[-153.21528633908065,57.78759838128364],[-153.178085339046,57.70342038120524],[-153.2419553391055,57.89566638138429],[-153.05057233892725,57.83065138132373],[-153.27807933913914,58.0045593814857],[-152.81916233871172,57.91620738140342],[-152.91390433879997,57.828700381321916],[-152.87859533876707,57.72618538122644],[-152.85387033874406,57.83480938132761],[-152.62246233852852,57.85564438134701],[-152.62133133852748,57.92787238141428],[-152.3285543382548,57.81340638130767],[-152.55303733846387,57.69784138120004],[-152.44829233836631,57.7217313812223],[-152.49050533840563,57.64784138115348],[-152.4008053383221,57.685060381188144],[-152.43746433835625,57.6039443811126],[-152.15356133809183,57.603663381112334],[-152.34746733827242,57.42337238094443],[-152.95889133884185,57.52005738103447],[-152.91250233879865,57.48310238100005],[-153.0455733389226,57.43060438095116],[-152.80666333870008,57.467816380985816],[-152.60527133851252,57.37919838090329],[-152.63613133854125,57.31697838084534],[-152.84056133873165,57.26809038079981],[-152.88221133877045,57.346426380872764],[-153.16420533903306,57.347821380874066],[-153.1753143390434,57.29948638082905],[-152.95836233884137,57.25309138078584],[-153.39117033924444,57.20643138074239],[-153.392819339246,57.15781538069711]]],[[[-134.65539032179538,56.162662379770296],[-135.04843132216143,56.52794138011049],[-134.8495363219762,56.685156380256906],[-134.9673063220859,56.62431338020024],[-134.93898632205952,56.70959438027967],[-134.98232532209988,56.716537380286134],[-135.11702832222534,56.59821138017593],[-135.12426032223206,56.6643193802375],[-134.99398532211075,56.75599038032288],[-135.19008732229338,56.674606380247084],[-135.12175932222974,56.82710838038911],[-135.26705232236503,56.782950380347984],[-135.3706353224615,56.8326803803943],[-135.2900953223865,56.891565380449144],[-135.35314632244524,56.96573738051822],[-135.16622232227115,57.03435938058213],[-135.3667543224579,57.07991438062456],[-135.36870532245973,57.13768538067836],[-135.265950322364,57.16352138070242],[-135.40789232249622,57.14935938068923],[-135.33952832243256,57.24797538078108],[-135.53399632261366,57.22935938076374],[-135.67430132274433,57.3460283808724],[-135.4712273225552,57.35048038087654],[-135.6089933226835,57.39158738091483],[-135.52676332260694,57.43550638095573],[-135.51598032259687,57.50686738102219],[-135.3145603224093,57.53242038104599],[-135.2823633223793,57.503535381019084],[-135.39957732248848,57.438531380958544],[-135.16761432227244,57.47825438099554],[-135.20206432230452,57.42436638094535],[-135.00399332212004,57.39937838092208],[-134.9076133220303,57.329381380856894],[-135.00090732211717,57.34242438086904],[-134.9478663220678,57.32049138084861],[-134.98506632210243,57.29437438082429],[-134.8361983219638,57.24771038078083],[-134.6181443217607,56.72075338029006],[-134.65539032179538,56.162662379770296]]],[[[-135.7020713227702,57.316583380844975],[-135.55761832263565,57.22880238076322],[-135.6264683226998,57.23130438076555],[-135.5478863226266,57.12907538067034],[-135.63094032270394,57.00408238055393],[-135.83956732289823,56.987685380538665],[-135.82594132288557,57.0829673806274],[-135.7106733227782,57.16101838070009],[-135.81983132287985,57.17240038071069],[-135.8487373229068,57.3162953808447],[-135.7020713227702,57.316583380844975]]],[[[-133.0533903203034,56.97714738052885],[-132.92951432018805,56.859932380419686],[-132.9914423202457,56.80686538037026],[-132.9331133201914,56.629636380205206],[-133.02366032027572,56.60158738017908],[-133.35366232058306,56.8382613803995],[-133.3073083205399,56.73103738029964],[-133.21340232045245,56.70854538027869],[-133.24090032047803,56.63131938020677],[-133.0992283203461,56.615486380192024],[-133.1686913204108,56.60187638017935],[-133.0836643203316,56.52353438010639],[-133.16563832040794,56.45325738004094],[-133.430916320655,56.501584380085944],[-133.42062832064542,56.45435738004196],[-133.57731732079137,56.433241380022295],[-133.64928432085838,56.44324238003161],[-133.64678532085605,56.563249380143375],[-133.69177132089794,56.56880438014855],[-133.63677532084674,56.59352338017157],[-133.7086943209137,56.67742538024971],[-133.6745243208819,56.85882138041865],[-133.75814232095976,56.80326738036691],[-133.8922873210847,56.896605380453835],[-133.73784832094086,56.89271338045021],[-134.01979432120345,57.01438038056352],[-133.8747783210684,57.08576838063001],[-133.32701232055825,56.996600380546965],[-133.26396732049955,56.92159738047711],[-133.29533632052875,57.00354338055343],[-133.0533903203034,56.97714738052885]]],[[[-133.96505332115248,56.08128437969451],[-134.03787332122027,56.105169379716756],[-134.05423432123553,56.312115379909486],[-134.10089632127898,56.17432937978116],[-134.18728632135944,56.176274379782974],[-134.09839232127666,56.13405237974365],[-134.10838632128596,55.998774379617664],[-134.22255832139228,56.06627837968053],[-134.19396932136567,56.15543737976357],[-134.2664693214332,56.25572237985697],[-134.16173732133564,56.30711637990483],[-134.28285832144843,56.29100337988982],[-134.2825833214482,56.35572837995011],[-134.18116632135374,56.43628438002513],[-134.16200332133587,56.36683537996045],[-134.10975632128722,56.404894379995895],[-134.05117832123267,56.359060379953206],[-134.03035532121328,56.477961380063945],[-134.07005732125026,56.55491138013561],[-134.13617632131184,56.48657538007197],[-134.308129321472,56.55991438014027],[-134.08785332126683,56.64158938021633],[-134.25313332142076,56.61241638018917],[-134.2192253213892,56.68936538026083],[-134.31923732148232,56.65714338023082],[-134.39507832155294,56.721027380290316],[-134.40148832155893,56.852434380412696],[-134.2750733214412,56.7952063803594],[-134.32311332148595,56.89354438045098],[-134.1086543212862,56.84271238040365],[-134.26536932143216,56.936598380491084],[-133.99531432118064,56.87409738043287],[-133.92756632111755,56.80159338036535],[-133.92424932111447,56.71465138028438],[-134.02646132120967,56.646869380221254],[-133.86394432105828,56.72325838029239],[-133.87058832106447,56.8079873803713],[-133.71950832092378,56.766324380332506],[-133.77759932097788,56.68408738025592],[-133.69314332089922,56.59936138017701],[-133.7403573209432,56.560190380140526],[-133.92231932111267,56.61380638019046],[-133.845364321041,56.57158138015114],[-133.91927032110982,56.50074638008516],[-133.8273313210242,56.43545838002436],[-133.91121832110233,56.42490438001453],[-133.85563932105057,56.278789379878454],[-133.9750813211618,56.35572837995011],[-133.9859143211719,56.26850737986887],[-133.88953832108214,56.222946379826446],[-133.949532321138,56.19933837980446],[-133.96505332115248,56.08128437969451]]],[[[-132.80365332007082,56.78604038035086],[-132.53254931981834,56.577433380156585],[-132.75171232002245,56.5524293801333],[-132.7203073199932,56.51104038009475],[-132.77478532004395,56.494370380079225],[-132.9417223201994,56.5093753800932],[-132.95810732021468,56.59380438017183],[-132.88337132014507,56.636586380211675],[-132.96562332022168,56.79603838036017],[-132.80365332007082,56.78604038035086]]],[[[-132.33780431963697,56.47964838006551],[-132.1625103194737,56.3527103799473],[-132.00532031932732,56.336315379932024],[-131.92335031925097,56.19686137980215],[-132.05781031937622,56.11103137972221],[-132.30389131960538,56.231852379834734],[-132.35141031964963,56.27797337987769],[-132.33780431963697,56.47964838006551]]],[[[-132.70477031997873,56.455755380043264],[-132.61586231989594,56.396037379987646],[-132.67891131995464,56.26519437986579],[-132.84670432011092,56.231302379834226],[-133.05811632030782,56.341866379937194],[-132.94199532019968,56.4474233800355],[-132.70477031997873,56.455755380043264]]],[[[-132.47362931976346,55.49563137914908],[-132.26168931956607,55.44212937909925],[-132.47027731976036,55.38435937904545],[-132.25476131955963,55.409910379069245],[-132.15502631946674,55.362968379025524],[-132.08693931940334,55.262141378931624],[-132.2411143195469,55.25435637892437],[-132.24083431954665,55.19269037886694],[-132.0891633194054,55.200747378874446],[-132.01223331933375,55.27241237894119],[-131.97027231929468,55.22602637889799],[-131.99889831932134,55.10047637878106],[-132.0966613194124,55.103254378783646],[-132.0744393193917,55.038814378723636],[-132.22024231952747,54.99215037868017],[-131.9647133192895,55.02547937871122],[-132.012495319334,54.96770237865741],[-131.97358431929777,54.89465037858937],[-132.0535913193723,54.88964737858471],[-131.95110731927684,54.787988378490034],[-132.0080813193299,54.77937437848201],[-132.00558831932756,54.69020637839897],[-132.29056731959298,54.714374378421475],[-132.21637331952388,54.79354337849521],[-132.35499331965298,54.79909637850038],[-132.26721531957122,54.83909037853763],[-132.38972531968534,54.92382037861654],[-132.38053931967676,55.01604237870242],[-132.46889031975905,54.90214437859635],[-132.45445531974562,54.98492037867344],[-132.53224431981806,54.93242337862455],[-132.5991673198804,54.968249378657916],[-132.53389231981959,55.01575537870216],[-132.57444831985737,55.03686537872182],[-132.46028431975105,55.04326037872777],[-132.55833431984234,55.12157937880072],[-132.6163763198964,55.06102737874432],[-132.56138531984521,55.16518937884133],[-132.64304231992125,55.24992337892024],[-132.61081931989122,55.16770037884367],[-132.66831431994478,55.13769537881572],[-132.7800033200488,55.18214537885712],[-132.80581332007284,55.2676993789368],[-133.00445532025785,55.20270737887627],[-132.9022153201626,55.279366378947664],[-133.22416832046247,55.28270637895078],[-133.26223732049792,55.33854337900278],[-133.19555832043582,55.38438437904547],[-132.8491473201132,55.351309379014666],[-132.99692532025082,55.37548237903718],[-133.06667332031577,55.426876379085044],[-132.978863320234,55.44714137910392],[-133.12916232037398,55.489098379142995],[-133.07029132031914,55.5738183792219],[-132.91001332016987,55.62767937927206],[-133.2553443204915,55.573267379221384],[-133.3547753205841,55.609642379255256],[-133.376151320604,55.72268337936054],[-133.23754232047492,55.74658037938279],[-133.13812732038232,55.88602437951266],[-133.24307432048008,55.904077379529475],[-133.2600813204959,56.15213337976049],[-133.61896132083015,56.207130379811716],[-133.6345023208446,56.27629337987613],[-133.56702432078177,56.296581379895024],[-133.61228732082392,56.34796537994288],[-133.32561432055695,56.326029379922446],[-133.31535732054738,56.26880037986915],[-133.1900493204307,56.32992337992607],[-133.06226332031167,56.2415813798438],[-133.02560932027754,56.176302379783],[-133.13977732038387,56.11657937972738],[-133.079776320328,56.05213037966736],[-132.72724931999966,55.98962637960915],[-132.49445531978287,55.813788379445384],[-132.43750131972982,55.622951379267654],[-132.38165931967782,55.66907437931061],[-132.2925153195948,55.53629737918695],[-132.1458463194582,55.480185379134696],[-132.17083831948148,55.44629537910313],[-132.54167931982684,55.622674379267394],[-132.5641653198478,55.56740537921592],[-132.51140731979865,55.544348379194446],[-132.6797193199554,55.452418379108835],[-132.47362931976346,55.49563137914908]]],[[[-132.39197231968743,56.3357563799315],[-132.39669931969183,56.221573379825166],[-132.4800183197694,56.189628379795415],[-132.35110331964935,56.216302379820256],[-132.10889231942377,56.115478379726355],[-132.20165631951016,56.08519937969815],[-132.12946131944295,55.927985379551735],[-132.18167431949155,55.96575737958692],[-132.340003319639,55.913519379538265],[-132.42725631972027,55.95573837957759],[-132.38165931967782,56.026022379643045],[-132.63670431991534,56.048801379664255],[-132.69752831997198,56.107412379718845],[-132.6961543199707,56.22185737982543],[-132.60502331988585,56.231020379833964],[-132.51752731980434,56.33824937993383],[-132.39197231968743,56.3357563799315]]],[[[-133.28727332052125,56.1285193797385],[-133.319218320551,55.99351637961277],[-133.47893232069973,56.02238837963966],[-133.62004332083114,55.91906137954343],[-133.79172932099104,55.92072637954498],[-133.68144732088834,56.066010379680286],[-133.486714320707,56.08573637969866],[-133.61950232083063,56.1304523797403],[-133.28727332052125,56.1285193797385]]],[[[-131.6063913189558,55.319646378985176],[-131.82529031915965,55.454910379111155],[-131.64502531899177,55.54491437919498],[-131.6163993189651,55.59712837924361],[-131.70584631904842,55.6193513792643],[-131.69363931903706,55.676296379317336],[-131.51475231887045,55.726018379363644],[-131.71112731905333,55.73184537936907],[-131.48252631884043,55.7868533794203],[-131.68558631902954,55.83296237946324],[-131.43669031879773,55.83990737946971],[-131.57392531892555,55.906013379531274],[-131.2333593186084,55.953515379575514],[-130.93697531833234,55.64187537928528],[-130.96809631836135,55.39104237905167],[-131.02836831841745,55.40548437906512],[-131.04975531843738,55.2671573789363],[-131.1444803185256,55.196600378870585],[-131.30835831867822,55.23465137890602],[-131.2175113185936,55.30520937897173],[-131.22752431860295,55.405755379065376],[-131.29474831866554,55.27353737894224],[-131.46085231882023,55.28103437894922],[-131.27171431864411,55.43714837909461],[-131.35057131871753,55.64464237928785],[-131.33445631870254,55.41964537907831],[-131.46363131882282,55.32770337899268],[-131.4450193188055,55.528250379179454],[-131.5217073188769,55.47602737913082],[-131.4683323188272,55.355481379018556],[-131.5236263188787,55.29270637896009],[-131.6063913189558,55.319646378985176]]],[[[-131.8211403191558,55.412410379071574],[-131.6183213189669,55.283261378951295],[-131.7616893191004,55.247423378917915],[-131.72668331906783,55.13437437881263],[-131.8244613191589,55.21131437888429],[-131.86694531919846,55.36796837903018],[-131.8211403191558,55.412410379071574]]],[[[-131.46890731882775,55.235479378906795],[-131.3750053187403,55.196595378870576],[-131.35666031872321,55.03521537872028],[-131.47695631883525,55.00049437868795],[-131.53750531889165,55.090761378772015],[-131.5216963188769,55.03271137871795],[-131.5997273189496,54.99493037868277],[-131.59417631894442,55.1063163787865],[-131.51864631887406,55.12825837880693],[-131.58530031893616,55.251591378921795],[-131.46890731882775,55.235479378906795]]],[[[-133.10385332035042,55.245203378915846],[-132.9574933202141,55.061865378745104],[-133.08135832032946,55.08547437876709],[-132.75666732002708,54.82187437852159],[-132.7166613199898,54.7646543784683],[-132.75889732002915,54.739370378444754],[-132.6702723199466,54.663810378374386],[-132.84193232010648,54.689088378397926],[-132.95527632021202,54.79187537849366],[-132.906935320167,54.83630837853504],[-133.15027032039364,54.94379737863514],[-133.21527032045418,55.094636378775625],[-133.11828232036385,55.1015853787821],[-133.2158243204547,55.16963737884547],[-133.10385332035042,55.245203378915846]]]]}}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment