Skip to content

Instantly share code, notes, and snippets.

@enjalot
Last active November 24, 2015 00:22
Show Gist options
  • Save enjalot/1919bd8c2f574caa17ba to your computer and use it in GitHub Desktop.
Save enjalot/1919bd8c2f574caa17ba to your computer and use it in GitHub Desktop.
State Grid Minimap

Adapting the state grid for use as an overview/minimap. When you zoom in on a state the counties for that state are rendered. This technique could be used to render subsets of larget datasets at the appropriate zoom level.

Map zooming from http://bl.ocks.org/mbostock/2206590

forked from mbostock's block: State Grid

<!DOCTYPE html>
<meta charset="utf-8">
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<style>
body { margin:0;position:fixed;top:0;right:0;bottom:0;left:0; }
#state-grid {
position:absolute;
top: 0;
left: 0;
}
#map {
position: absolute;
width: 100%;
height: 100%;
}
.state {
cursor: pointer;
}
.state rect {
fill: #dedede;
fill-opacity: 0.4;
rx: 3;
ry: 3;
}
.selected rect {
fill: steelblue;
}
.state text {
font: 12px sans-serif;
text-anchor: middle;
}
.state-boundary {
fill: none;
stroke: #111;
}
.county {
fill: #d6fef1;
stroke: #111;
}
</style>
<svg id="map"></svg>
<svg id="state-grid" width=400 height=200></svg>
<script id="grid" type="text/plain">
ME
WI VT NH
WA ID MT ND MN IL MI NY MA
OR NV WY SD IA IN OH PA NJ CT RI
CA UT CO NE MO KY WV VA MD DE
AZ NM KS AR TN NC SC
OK LA MS AL GA
HI AK TX FL
</script>
<script>
var states = [];
d3.select("#grid").text().split("\n").forEach(function(line, i) {
var re = /\w+/g, m;
while (m = re.exec(line)) states.push({
name: m[0],
x: m.index / 3,
y: i
});
});
var minisvg = d3.select("#state-grid");
var miniwidth = 400;
var miniheight = 200;
var mapsvg = d3.select("#map").append("g");
var mapwidth = 960;
var mapheight = 500;
var scale0 = 1000;
var centered;
var selected;
var allCounties = []
var zoom = d3.behavior.zoom()
.translate([mapwidth / 2, mapheight / 2])
.scale(scale0)
.scaleExtent([scale0, 10 * scale0])
.on("zoom", zoomed);
var projection = d3.geo.albersUsa()
.scale(scale0)
.translate([mapwidth / 2, mapheight / 2]);
var path = d3.geo.path()
.projection(projection);
function zoomed() {
projection
.translate(zoom.translate())
.scale(zoom.scale());
mapsvg.selectAll("path")
.attr("d", path);
mapsvg.selectAll("circle.city")
.attr({
cx: getX,
cy: getY
})
}
mapsvg.call(zoom)
function clicked(d) {
var x, y, k;
console.log("clicked", d)
if (d && centered !== d) {
var centroid = path.centroid(d);
x = centroid[0];
y = centroid[1];
k = 4;
centered = d;
} else {
x = mapwidth / 2;
y = mapheight / 2;
k = 1;
centered = null;
}
mapsvg.selectAll("path.state-boundary")
.classed("active", centered && function(d) { return d === centered; });
mapsvg.transition()
.duration(750)
.attr("transform", "translate(" + mapwidth / 2 + "," + mapheight / 2 + ")scale(" + k + ")translate(" + -x + "," + -y + ")")
.style("stroke-width", 1.5 / k + "px");
mapsvg.selectAll("path.county")
.transition().duration(300)
.style("opacity", 0)
.remove();
var counties = [];
allCounties.forEach(function(c) {
var sid = d.id+"";
var cid = c.id+"";
if(cid.slice(0,sid.length) === sid && cid.length - sid.length == 3) counties.push(c);
})
console.log("counties", counties)
var countyPaths = mapsvg
.selectAll("path.county")
.data(counties)
countyPaths
.enter().append("path").classed("county", true)
.style("opacity", 0)
countyPaths.attr("d", path)
.transition()
.duration(800)
.style("opacity", 0.6)
}
var gridWidth = d3.max(states, function(d) { return d.x; }) + 1;
var gridHeight = d3.max(states, function(d) { return d.y; }) + 1;
var cellSize = 25;
var state = minisvg.append("g")
.attr("transform", "translate(" + miniwidth / 2 + "," + miniheight / 2 + ")scale(1)")
.selectAll(".state")
.data(states)
.enter().append("g")
.classed("state", true)
.attr("transform", function(d) { return "translate(" + (d.x - gridWidth / 2) * cellSize + "," + (d.y - gridHeight / 2) * cellSize + ")"; });
state.append("rect")
.attr("x", -cellSize / 2)
.attr("y", -cellSize / 2)
.attr("width", cellSize - 2)
.attr("height", cellSize - 2);
state.append("text")
.attr("dy", ".35em")
.attr("dx", "-.1em")
.text(function(d) { return d.name; });
state.on("click", function(d) {
console.log("clicked", d)
var sel = d3.selectAll(".state-boundary").filter(function(a) { return a.properties.code === d.name})
var state = sel.data()[0]
console.log("state", state)
clicked(state);
if(d3.select(this).classed("selected")) {
d3.select(this).classed("selected", false)
} else {
minisvg.selectAll(".state").classed("selected", false)
d3.select(this).classed("selected", true)
}
});
d3.json("us-named.json", function(error, us) {
console.log("COUNTIES", topojson.feature(us, us.objects.counties).features);
allCounties = topojson.feature(us, us.objects.counties).features;
mapsvg
.selectAll("path")
.data(topojson.feature(us, us.objects.states).features)
.enter().append("path").classed("state-boundary", true)
.attr("d", path)
//visualize # of counties
})
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":53073,"properties":{"id":"53073","name":"Whatcom"},"arcs":[[0,1,2]]},{"type":"Polygon","id":30105,"properties":{"id":"30105","name":"Valley"},"arcs":[[3,4,5,6,7,8]]},{"type":"Polygon","id":30029,"properties":{"id":"30029","name":"Flathead"},"arcs":[[9,10,11,12,13,14,15,16,17,18]]},{"type":"Polygon","id":16021,"properties":{"id":"16021","name":"Boundary"},"arcs":[[19,20,21,22]]},{"type":"Polygon","id":30071,"properties":{"id":"30071","name":"Phillips"},"arcs":[[-8,23,24,25,26,27]]},{"type":"Polygon","id":38079,"properties":{"id":"38079","name":"Rolette"},"arcs":[[28,29,30,31]]},{"type":"Polygon","id":30053,"properties":{"id":"30053","name":"Lincoln"},"arcs":[[-18,32,33,-20,34]]},{"type":"Polygon","id":38009,"properties":{"id":"38009","name":"Bottineau"},"arcs":[[-30,35,36,37,38]]},{"type":"Polygon","id":30035,"properties":{"id":"30035","name":"Glacier"},"arcs":[[39,40,-10,41]]},{"type":"Polygon","id":30041,"properties":{"id":"30041","name":"Hill"},"arcs":[[42,43,44,45]]},{"type":"Polygon","id":30005,"properties":{"id":"30005","name":"Blaine"},"arcs":[[-27,46,47,-46,48]]},{"type":"Polygon","id":30019,"properties":{"id":"30019","name":"Daniels"},"arcs":[[49,50,-4,51]]},{"type":"Polygon","id":38067,"properties":{"id":"38067","name":"Pembina"},"arcs":[[52,53,54,55]]},{"type":"Polygon","id":27069,"properties":{"id":"27069","name":"Kittson"},"arcs":[[56,57,-53,58]]},{"type":"Polygon","id":38095,"properties":{"id":"38095","name":"Towner"},"arcs":[[59,60,61,-32,62,63]]},{"type":"Polygon","id":38019,"properties":{"id":"38019","name":"Cavalier"},"arcs":[[-55,64,65,-64,66]]},{"type":"Polygon","id":53047,"properties":{"id":"53047","name":"Okanogan"},"arcs":[[67,68,69,70,71,72,-1,73]]},{"type":"Polygon","id":53065,"properties":{"id":"53065","name":"Stevens"},"arcs":[[74,75,76,77,78]]},{"type":"Polygon","id":53051,"properties":{"id":"53051","name":"Pend Oreille"},"arcs":[[-22,79,80,-75,81]]},{"type":"Polygon","id":53019,"properties":{"id":"53019","name":"Ferry"},"arcs":[[-78,82,-68,83]]},{"type":"Polygon","id":30051,"properties":{"id":"30051","name":"Liberty"},"arcs":[[84,85,86,-44,87]]},{"type":"Polygon","id":38023,"properties":{"id":"38023","name":"Divide"},"arcs":[[88,89,90,91]]},{"type":"Polygon","id":38013,"properties":{"id":"38013","name":"Burke"},"arcs":[[92,93,94,95,-89,96]]},{"type":"Polygon","id":30101,"properties":{"id":"30101","name":"Toole"},"arcs":[[97,-86,98,-40]]},{"type":"Polygon","id":38075,"properties":{"id":"38075","name":"Renville"},"arcs":[[99,100,-93,101,-38]]},{"type":"Polygon","id":27135,"properties":{"id":"27135","name":"Roseau"},"arcs":[[102,103,-57,104,105]]},{"type":"Polygon","id":30091,"properties":{"id":"30091","name":"Sheridan"},"arcs":[[-91,106,107,-50,108]]},{"type":"Polygon","id":16017,"properties":{"id":"16017","name":"Bonner"},"arcs":[[-34,109,110,111,112,-80,-21]]},{"type":"Polygon","id":38101,"properties":{"id":"38101","name":"Ward"},"arcs":[[-101,113,114,115,-94]]},{"type":"MultiPolygon","id":53055,"properties":{"id":"53055","name":"San Juan"},"arcs":[[[116]],[[117]],[[118]]]},{"type":"Polygon","id":27071,"properties":{"id":"27071","name":"Koochiching"},"arcs":[[119,120,121,122,123]]},{"type":"Polygon","id":53057,"properties":{"id":"53057","name":"Skagit"},"arcs":[[-2,-73,124,125,126]]},{"type":"Polygon","id":38105,"properties":{"id":"38105","name":"Williams"},"arcs":[[-96,127,128,129,-107,-90]]},{"type":"Polygon","id":38049,"properties":{"id":"38049","name":"McHenry"},"arcs":[[130,131,132,-114,-100,-37]]},{"type":"Polygon","id":27137,"properties":{"id":"27137","name":"St. Louis"},"arcs":[[133,134,135,136,137,138,-120,139]]},{"type":"Polygon","id":30085,"properties":{"id":"30085","name":"Roosevelt"},"arcs":[[-108,-130,140,141,-5,-51]]},{"type":"Polygon","id":53007,"properties":{"id":"53007","name":"Chelan"},"arcs":[[-72,142,143,144,145,-125]]},{"type":"Polygon","id":38061,"properties":{"id":"38061","name":"Mountrail"},"arcs":[[146,147,148,-128,-95,-116]]},{"type":"Polygon","id":27089,"properties":{"id":"27089","name":"Marshall"},"arcs":[[149,150,151,152,153,-58,-104]]},{"type":"Polygon","id":38069,"properties":{"id":"38069","name":"Pierce"},"arcs":[[-62,154,155,156,-131,-36,-29]]},{"type":"MultiPolygon","id":38071,"properties":{"id":"38071","name":"Ramsey"},"arcs":[[[157]],[[158,159,160,-60,-66]]]},{"type":"Polygon","id":38099,"properties":{"id":"38099","name":"Walsh"},"arcs":[[-54,-154,161,162,-159,-65]]},{"type":"Polygon","id":27007,"properties":{"id":"27007","name":"Beltrami"},"arcs":[[-122,163,164,165,166,167,-150,-103,168]]},{"type":"Polygon","id":30073,"properties":{"id":"30073","name":"Pondera"},"arcs":[[-99,-85,169,170,-11,-41]]},{"type":"MultiPolygon","id":53029,"properties":{"id":"53029","name":"Island"},"arcs":[[[171,172]],[[173]]]},{"type":"Polygon","id":53009,"properties":{"id":"53009","name":"Clallam"},"arcs":[[174,175]]},{"type":"Polygon","id":38005,"properties":{"id":"38005","name":"Benson"},"arcs":[[-61,-161,176,177,178,-155],[157]]},{"type":"Polygon","id":30015,"properties":{"id":"30015","name":"Chouteau"},"arcs":[[-48,179,180,181,182,-170,-88,-43]]},{"type":"Polygon","id":53061,"properties":{"id":"53061","name":"Snohomish"},"arcs":[[-146,183,184,-172,185,-126]]},{"type":"Polygon","id":30089,"properties":{"id":"30089","name":"Sanders"},"arcs":[[-17,186,187,188,189,-110,-33]]},{"type":"Polygon","id":27075,"properties":{"id":"27075","name":"Lake"},"arcs":[[190,191,-134,192]]},{"type":"Polygon","id":38063,"properties":{"id":"38063","name":"Nelson"},"arcs":[[193,194,195,196,-177,-160,-163]]},{"type":"Polygon","id":38035,"properties":{"id":"38035","name":"Grand Forks"},"arcs":[[-153,197,198,199,-194,-162]]},{"type":"Polygon","id":27119,"properties":{"id":"27119","name":"Polk"},"arcs":[[200,201,202,203,204,205,206,-198,-152]]},{"type":"Polygon","id":27113,"properties":{"id":"27113","name":"Pennington"},"arcs":[[-168,207,-203,208,-201,-151]]},{"type":"Polygon","id":30083,"properties":{"id":"30083","name":"Richland"},"arcs":[[209,210,211,212,-141]]},{"type":"Polygon","id":53017,"properties":{"id":"53017","name":"Douglas"},"arcs":[[213,214,-143,-71]]},{"type":"Polygon","id":38053,"properties":{"id":"38053","name":"McKenzie"},"arcs":[[-149,215,216,217,218,-210,-129]]},{"type":"Polygon","id":53031,"properties":{"id":"53031","name":"Jefferson"},"arcs":[[219,220,221,-175,222]]},{"type":"Polygon","id":30099,"properties":{"id":"30099","name":"Teton"},"arcs":[[-183,223,224,-12,-171]]},{"type":"Polygon","id":30055,"properties":{"id":"30055","name":"McCone"},"arcs":[[-213,225,226,227,-6,-142]]},{"type":"Polygon","id":16079,"properties":{"id":"16079","name":"Shoshone"},"arcs":[[-190,228,229,230,231,232,-111]]},{"type":"Polygon","id":30047,"properties":{"id":"30047","name":"Lake"},"arcs":[[233,-187,-16]]},{"type":"Polygon","id":53063,"properties":{"id":"53063","name":"Spokane"},"arcs":[[-81,-113,234,235,236,237,-76]]},{"type":"Polygon","id":27029,"properties":{"id":"27029","name":"Clearwater"},"arcs":[[238,239,240,-204,-208,-167]]},{"type":"Polygon","id":16055,"properties":{"id":"16055","name":"Kootenai"},"arcs":[[-233,241,-235,-112]]},{"type":"Polygon","id":30033,"properties":{"id":"30033","name":"Garfield"},"arcs":[[-228,242,243,244,245,-24,-7]]},{"type":"Polygon","id":27125,"properties":{"id":"27125","name":"Red Lake"},"arcs":[[-202,-209]]},{"type":"Polygon","id":53025,"properties":{"id":"53025","name":"Grant"},"arcs":[[-70,246,247,248,249,250,251,-214]]},{"type":"Polygon","id":53043,"properties":{"id":"53043","name":"Lincoln"},"arcs":[[-83,-77,-238,252,253,-247,-69]]},{"type":"Polygon","id":30049,"properties":{"id":"30049","name":"Lewis and Clark"},"arcs":[[254,255,256,257,258,-13,-225]]},{"type":"MultiPolygon","id":53035,"properties":{"id":"53035","name":"Kitsap"},"arcs":[[[259]],[[260,261,262,263,264]]]},{"type":"Polygon","id":27061,"properties":{"id":"27061","name":"Itasca"},"arcs":[[-139,265,266,-164,-121]]},{"type":"Polygon","id":38055,"properties":{"id":"38055","name":"McLean"},"arcs":[[267,268,269,270,271,-147,-115,-133]]},{"type":"Polygon","id":38027,"properties":{"id":"38027","name":"Eddy"},"arcs":[[-197,272,273,274,-178]]},{"type":"Polygon","id":38103,"properties":{"id":"38103","name":"Wells"},"arcs":[[-179,-275,275,276,277,278,-156]]},{"type":"Polygon","id":38083,"properties":{"id":"38083","name":"Sheridan"},"arcs":[[-157,-279,279,280,-268,-132]]},{"type":"Polygon","id":38025,"properties":{"id":"38025","name":"Dunn"},"arcs":[[-272,281,282,283,-216,-148]]},{"type":"Polygon","id":30027,"properties":{"id":"30027","name":"Fergus"},"arcs":[[-26,284,285,286,287,288,-180,-47]]},{"type":"Polygon","id":30021,"properties":{"id":"30021","name":"Dawson"},"arcs":[[-212,289,290,-226]]},{"type":"MultiPolygon","id":53033,"properties":{"id":"53033","name":"King"},"arcs":[[[291]],[[-145,292,293,294,-184]]]},{"type":"Polygon","id":30013,"properties":{"id":"30013","name":"Cascade"},"arcs":[[295,296,-255,-224,-182]]},{"type":"Polygon","id":38091,"properties":{"id":"38091","name":"Steele"},"arcs":[[-200,297,298,299,300,-195]]},{"type":"Polygon","id":38039,"properties":{"id":"38039","name":"Griggs"},"arcs":[[-301,301,302,303,-273,-196]]},{"type":"Polygon","id":38097,"properties":{"id":"38097","name":"Traill"},"arcs":[[304,305,-298,-199,-207]]},{"type":"Polygon","id":53045,"properties":{"id":"53045","name":"Mason"},"arcs":[[306,-264,307,308,309,310,-220]]},{"type":"Polygon","id":30063,"properties":{"id":"30063","name":"Missoula"},"arcs":[[-15,311,312,313,314,315,316,-188,-234]]},{"type":"Polygon","id":30077,"properties":{"id":"30077","name":"Powell"},"arcs":[[-259,317,318,319,-312,-14]]},{"type":"Polygon","id":30069,"properties":{"id":"30069","name":"Petroleum"},"arcs":[[-246,320,321,-285,-25]]},{"type":"Polygon","id":53037,"properties":{"id":"53037","name":"Kittitas"},"arcs":[[-215,-252,322,-293,-144]]},{"type":"Polygon","id":38031,"properties":{"id":"38031","name":"Foster"},"arcs":[[-304,323,-276,-274]]},{"type":"Polygon","id":38057,"properties":{"id":"38057","name":"Mercer"},"arcs":[[324,325,326,-282,-271]]},{"type":"Polygon","id":53027,"properties":{"id":"53027","name":"Grays Harbor"},"arcs":[[-311,327,328,329,330,-221]]},{"type":"Polygon","id":27087,"properties":{"id":"27087","name":"Mahnomen"},"arcs":[[331,332,-205,-241]]},{"type":"Polygon","id":27107,"properties":{"id":"27107","name":"Norman"},"arcs":[[-206,-333,333,334,335,-305]]},{"type":"Polygon","id":30061,"properties":{"id":"30061","name":"Mineral"},"arcs":[[-317,336,-229,-189]]},{"type":"Polygon","id":27021,"properties":{"id":"27021","name":"Cass"},"arcs":[[337,338,339,340,341,342,-165,-267]]},{"type":"Polygon","id":23003,"properties":{"id":"23003","name":"Aroostook"},"arcs":[[343,344,345,346,347]]},{"type":"Polygon","id":30045,"properties":{"id":"30045","name":"Judith Basin"},"arcs":[[-289,348,349,-296,-181]]},{"type":"Polygon","id":16009,"properties":{"id":"16009","name":"Benewah"},"arcs":[[-232,350,351,-236,-242]]},{"type":"Polygon","id":27057,"properties":{"id":"27057","name":"Hubbard"},"arcs":[[-343,352,353,-239,-166]]},{"type":"MultiPolygon","id":53053,"properties":{"id":"53053","name":"Pierce"},"arcs":[[[-294,354,355,356,357]],[[-261,358]],[[-308,-263,359]]]},{"type":"Polygon","id":30109,"properties":{"id":"30109","name":"Wibaux"},"arcs":[[-219,360,361,362,-290,-211]]},{"type":"Polygon","id":38007,"properties":{"id":"38007","name":"Billings"},"arcs":[[-284,363,364,365,-217]]},{"type":"Polygon","id":38033,"properties":{"id":"38033","name":"Golden Valley"},"arcs":[[-366,366,367,-361,-218]]},{"type":"Polygon","id":38043,"properties":{"id":"38043","name":"Kidder"},"arcs":[[368,369,370,371,-280,-278]]},{"type":"Polygon","id":38093,"properties":{"id":"38093","name":"Stutsman"},"arcs":[[-303,372,373,374,-369,-277,-324]]},{"type":"Polygon","id":38015,"properties":{"id":"38015","name":"Burleigh"},"arcs":[[-372,375,376,377,-269,-281]]},{"type":"Polygon","id":38065,"properties":{"id":"38065","name":"Oliver"},"arcs":[[-378,378,-325,-270]]},{"type":"Polygon","id":53001,"properties":{"id":"53001","name":"Adams"},"arcs":[[379,380,-248,-254]]},{"type":"Polygon","id":53075,"properties":{"id":"53075","name":"Whitman"},"arcs":[[-237,-352,381,382,383,384,385,386,-380,-253]]},{"type":"Polygon","id":38003,"properties":{"id":"38003","name":"Barnes"},"arcs":[[-300,387,388,389,-373,-302]]},{"type":"Polygon","id":38017,"properties":{"id":"38017","name":"Cass"},"arcs":[[-306,-336,390,391,392,-388,-299]]},{"type":"Polygon","id":53067,"properties":{"id":"53067","name":"Thurston"},"arcs":[[-357,393,-328,-310,394]]},{"type":"Polygon","id":30079,"properties":{"id":"30079","name":"Prairie"},"arcs":[[-363,395,396,-243,-227,-291]]},{"type":"Polygon","id":27005,"properties":{"id":"27005","name":"Becker"},"arcs":[[-354,397,398,399,-334,-332,-240]]},{"type":"Polygon","id":27027,"properties":{"id":"27027","name":"Clay"},"arcs":[[-400,400,401,402,-391,-335]]},{"type":"Polygon","id":16057,"properties":{"id":"16057","name":"Latah"},"arcs":[[-231,403,404,-382,-351]]},{"type":"Polygon","id":53077,"properties":{"id":"53077","name":"Yakima"},"arcs":[[-251,405,406,407,408,-355,-323]]},{"type":"Polygon","id":30059,"properties":{"id":"30059","name":"Meagher"},"arcs":[[-350,409,410,411,412,413,-256,-297]]},{"type":"Polygon","id":27001,"properties":{"id":"27001","name":"Aitkin"},"arcs":[[-138,414,415,416,417,418,-338,-266]]},{"type":"Polygon","id":26131,"properties":{"id":"26131","name":"Ontonagon"},"arcs":[[419,420,421,422]]},{"type":"Polygon","id":38089,"properties":{"id":"38089","name":"Stark"},"arcs":[[-327,423,424,425,426,-364,-283]]},{"type":"Polygon","id":38059,"properties":{"id":"38059","name":"Morton"},"arcs":[[-377,427,428,429,-424,-326,-379]]},{"type":"Polygon","id":26013,"properties":{"id":"26013","name":"Baraga"},"arcs":[[430,431,432,433]]},{"type":"Polygon","id":16035,"properties":{"id":"16035","name":"Clearwater"},"arcs":[[-337,-316,434,435,436,-404,-230]]},{"type":"Polygon","id":30017,"properties":{"id":"30017","name":"Custer"},"arcs":[[437,438,439,440,-244,-397]]},{"type":"Polygon","id":30087,"properties":{"id":"30087","name":"Rosebud"},"arcs":[[-441,441,442,443,444,445,-321,-245]]},{"type":"Polygon","id":30039,"properties":{"id":"30039","name":"Granite"},"arcs":[[446,447,-313,-320]]},{"type":"Polygon","id":27159,"properties":{"id":"27159","name":"Wadena"},"arcs":[[-342,448,449,-398,-353]]},{"type":"Polygon","id":27035,"properties":{"id":"27035","name":"Crow Wing"},"arcs":[[-419,450,451,-339]]},{"type":"Polygon","id":53049,"properties":{"id":"53049","name":"Pacific"},"arcs":[[452,453,454,-330]]},{"type":"Polygon","id":53041,"properties":{"id":"53041","name":"Lewis"},"arcs":[[-394,-356,-409,455,456,457,-453,-329]]},{"type":"Polygon","id":30007,"properties":{"id":"30007","name":"Broadwater"},"arcs":[[-414,458,459,-257]]},{"type":"Polygon","id":27017,"properties":{"id":"27017","name":"Carlton"},"arcs":[[460,461,-415,-137]]},{"type":"Polygon","id":26053,"properties":{"id":"26053","name":"Gogebic"},"arcs":[[462,463,464,465,-421]]},{"type":"Polygon","id":30065,"properties":{"id":"30065","name":"Musselshell"},"arcs":[[-446,466,467,-286,-322]]},{"type":"Polygon","id":26095,"properties":{"id":"26095","name":"Luce"},"arcs":[[468,469,470,471,472]]},{"type":"Polygon","id":30037,"properties":{"id":"30037","name":"Golden Valley"},"arcs":[[-468,473,474,475,476,-287]]},{"type":"Polygon","id":30107,"properties":{"id":"30107","name":"Wheatland"},"arcs":[[-288,-477,477,-410,-349]]},{"type":"Polygon","id":53021,"properties":{"id":"53021","name":"Franklin"},"arcs":[[478,479,480,-249,-381,-387]]},{"type":"Polygon","id":53005,"properties":{"id":"53005","name":"Benton"},"arcs":[[481,482,483,484,-406,-250,-481]]},{"type":"Polygon","id":27111,"properties":{"id":"27111","name":"Otter Tail"},"arcs":[[-450,485,486,487,488,-401,-399]]},{"type":"Polygon","id":38037,"properties":{"id":"38037","name":"Grant"},"arcs":[[489,490,491,-425,-430]]},{"type":"Polygon","id":53023,"properties":{"id":"53023","name":"Garfield"},"arcs":[[492,493,494,-385]]},{"type":"Polygon","id":30025,"properties":{"id":"30025","name":"Fallon"},"arcs":[[-368,495,496,497,498,-438,-396,-362]]},{"type":"Polygon","id":16049,"properties":{"id":"16049","name":"Idaho"},"arcs":[[499,500,501,502,503,504,505,-435,-315]]},{"type":"Polygon","id":30081,"properties":{"id":"30081","name":"Ravalli"},"arcs":[[-448,506,507,508,-500,-314]]},{"type":"Polygon","id":38029,"properties":{"id":"38029","name":"Emmons"},"arcs":[[-371,509,510,511,512,-428,-376]]},{"type":"Polygon","id":38047,"properties":{"id":"38047","name":"Logan"},"arcs":[[-375,513,514,-510,-370]]},{"type":"Polygon","id":16069,"properties":{"id":"16069","name":"Nez Perce"},"arcs":[[-437,515,-505,516,517,-383,-405]]},{"type":"Polygon","id":38087,"properties":{"id":"38087","name":"Slope"},"arcs":[[518,519,520,-496,-367,-365,-427]]},{"type":"Polygon","id":38045,"properties":{"id":"38045","name":"La Moure"},"arcs":[[521,522,523,-514,-374,-390]]},{"type":"Polygon","id":38041,"properties":{"id":"38041","name":"Hettinger"},"arcs":[[-492,524,-519,-426]]},{"type":"Polygon","id":27167,"properties":{"id":"27167","name":"Wilkin"},"arcs":[[-489,525,526,527,-402]]},{"type":"Polygon","id":38073,"properties":{"id":"38073","name":"Ransom"},"arcs":[[-393,528,529,530,-522,-389]]},{"type":"Polygon","id":38077,"properties":{"id":"38077","name":"Richland"},"arcs":[[-528,531,532,533,-529,-392,-403]]},{"type":"Polygon","id":53013,"properties":{"id":"53013","name":"Columbia"},"arcs":[[534,535,536,-479,-386,-495]]},{"type":"Polygon","id":53071,"properties":{"id":"53071","name":"Walla Walla"},"arcs":[[-537,537,-482,-480]]},{"type":"Polygon","id":55051,"properties":{"id":"55051","name":"Iron"},"arcs":[[-465,538,539,540,541]]},{"type":"Polygon","id":23025,"properties":{"id":"23025","name":"Somerset"},"arcs":[[542,543,544,545,546,547,-347]]},{"type":"Polygon","id":23021,"properties":{"id":"23021","name":"Piscataquis"},"arcs":[[548,-543,-346]]},{"type":"Polygon","id":30043,"properties":{"id":"30043","name":"Jefferson"},"arcs":[[-460,549,550,551,552,-318,-258]]},{"type":"Polygon","id":26153,"properties":{"id":"26153","name":"Schoolcraft"},"arcs":[[-471,553,554,555,556]]},{"type":"Polygon","id":30111,"properties":{"id":"30111","name":"Yellowstone"},"arcs":[[557,558,559,560,-474,-467,-445]]},{"type":"Polygon","id":30103,"properties":{"id":"30103","name":"Treasure"},"arcs":[[561,-558,-444]]},{"type":"Polygon","id":16061,"properties":{"id":"16061","name":"Lewis"},"arcs":[[-436,-506,-516]]},{"type":"Polygon","id":53003,"properties":{"id":"53003","name":"Asotin"},"arcs":[[-518,562,-493,-384]]},{"type":"Polygon","id":38085,"properties":{"id":"38085","name":"Sioux"},"arcs":[[-513,563,564,-490,-429]]},{"type":"Polygon","id":26071,"properties":{"id":"26071","name":"Iron"},"arcs":[[-432,565,566,567,568,569,-463,-420,570]]},{"type":"Polygon","id":27115,"properties":{"id":"27115","name":"Pine"},"arcs":[[571,572,573,574,-416,-462]]},{"type":"Polygon","id":23019,"properties":{"id":"23019","name":"Penobscot"},"arcs":[[575,576,577,578,-544,-549,-345]]},{"type":"Polygon","id":53059,"properties":{"id":"53059","name":"Skamania"},"arcs":[[-408,579,580,581,582,583,-456]]},{"type":"Polygon","id":53015,"properties":{"id":"53015","name":"Cowlitz"},"arcs":[[-584,584,585,586,587,-457]]},{"type":"Polygon","id":53069,"properties":{"id":"53069","name":"Wahkiakum"},"arcs":[[-458,-588,588,-454]]},{"type":"Polygon","id":27153,"properties":{"id":"27153","name":"Todd"},"arcs":[[-341,589,590,591,-486,-449]]},{"type":"Polygon","id":27097,"properties":{"id":"27097","name":"Morrison"},"arcs":[[-452,592,593,594,-590,-340]]},{"type":"Polygon","id":55125,"properties":{"id":"55125","name":"Vilas"},"arcs":[[595,596,-539,-464,-570,597]]},{"type":"Polygon","id":41007,"properties":{"id":"41007","name":"Clatsop"},"arcs":[[598,599,600]]},{"type":"Polygon","id":38001,"properties":{"id":"38001","name":"Adams"},"arcs":[[-491,-565,601,602,603,604,-520,-525]]},{"type":"Polygon","id":38081,"properties":{"id":"38081","name":"Sargent"},"arcs":[[-534,605,606,607,-530]]},{"type":"Polygon","id":38051,"properties":{"id":"38051","name":"McIntosh"},"arcs":[[-524,608,609,610,-511,-515]]},{"type":"Polygon","id":38021,"properties":{"id":"38021","name":"Dickey"},"arcs":[[-531,-608,611,612,-609,-523]]},{"type":"Polygon","id":38011,"properties":{"id":"38011","name":"Bowman"},"arcs":[[-605,613,-497,-521]]},{"type":"Polygon","id":30023,"properties":{"id":"30023","name":"Deer Lodge"},"arcs":[[-553,614,615,-507,-447,-319]]},{"type":"Polygon","id":26043,"properties":{"id":"26043","name":"Dickinson"},"arcs":[[616,617,618,-567,619]]},{"type":"Polygon","id":27095,"properties":{"id":"27095","name":"Mille Lacs"},"arcs":[[620,621,622,623,-593,-451,-418]]},{"type":"Polygon","id":30097,"properties":{"id":"30097","name":"Sweet Grass"},"arcs":[[-476,624,625,-411,-478]]},{"type":"Polygon","id":30031,"properties":{"id":"30031","name":"Gallatin"},"arcs":[[-413,626,627,628,629,630,-550,-459]]},{"type":"Polygon","id":30067,"properties":{"id":"30067","name":"Park"},"arcs":[[-626,631,632,633,-627,-412]]},{"type":"Polygon","id":30093,"properties":{"id":"30093","name":"Silver Bow"},"arcs":[[634,635,-615,-552]]},{"type":"Polygon","id":41009,"properties":{"id":"41009","name":"Columbia"},"arcs":[[636,637,638,-599,639,-586]]},{"type":"Polygon","id":27065,"properties":{"id":"27065","name":"Kanabec"},"arcs":[[-575,640,-621,-417]]},{"type":"Polygon","id":55013,"properties":{"id":"55013","name":"Burnett"},"arcs":[[641,642,643,644,-573,645]]},{"type":"Polygon","id":55113,"properties":{"id":"55113","name":"Sawyer"},"arcs":[[646,647,648,649,650]]},{"type":"Polygon","id":55129,"properties":{"id":"55129","name":"Washburn"},"arcs":[[-650,651,-642,652]]},{"type":"Polygon","id":30011,"properties":{"id":"30011","name":"Carter"},"arcs":[[653,654,655,656,-439,-499]]},{"type":"Polygon","id":30095,"properties":{"id":"30095","name":"Stillwater"},"arcs":[[-561,657,-632,-625,-475]]},{"type":"Polygon","id":27051,"properties":{"id":"27051","name":"Grant"},"arcs":[[-488,658,659,660,-526]]},{"type":"Polygon","id":27041,"properties":{"id":"27041","name":"Douglas"},"arcs":[[-592,661,662,-659,-487]]},{"type":"Polygon","id":55041,"properties":{"id":"55041","name":"Forest"},"arcs":[[663,664,665,666,667,-598,-569]]},{"type":"Polygon","id":53011,"properties":{"id":"53011","name":"Clark"},"arcs":[[-583,668,-637,-585]]},{"type":"Polygon","id":53039,"properties":{"id":"53039","name":"Klickitat"},"arcs":[[-485,669,670,671,672,673,-580,-407]]},{"type":"Polygon","id":30003,"properties":{"id":"30003","name":"Big Horn"},"arcs":[[-443,674,675,676,677,-559,-562]]},{"type":"Polygon","id":27155,"properties":{"id":"27155","name":"Traverse"},"arcs":[[-661,678,679,680,-532,-527]]},{"type":"Polygon","id":55037,"properties":{"id":"55037","name":"Florence"},"arcs":[[-619,681,-664,-568]]},{"type":"Polygon","id":41059,"properties":{"id":"41059","name":"Umatilla"},"arcs":[[-536,682,683,684,685,-483,-538]]},{"type":"Polygon","id":41063,"properties":{"id":"41063","name":"Wallowa"},"arcs":[[-494,-563,-517,-504,686,687,688,-683,-535]]},{"type":"Polygon","id":26109,"properties":{"id":"26109","name":"Menominee"},"arcs":[[689,690,691,-617,692]]},{"type":"Polygon","id":55099,"properties":{"id":"55099","name":"Price"},"arcs":[[-597,693,694,695,696,-648,697,-540]]},{"type":"Polygon","id":46105,"properties":{"id":"46105","name":"Perkins"},"arcs":[[698,699,700,701,702,-603]]},{"type":"Polygon","id":46031,"properties":{"id":"46031","name":"Corson"},"arcs":[[703,704,705,706,-699,-602,-564]]},{"type":"Polygon","id":46063,"properties":{"id":"46063","name":"Harding"},"arcs":[[-604,-703,707,-654,-498,-614]]},{"type":"Polygon","id":46021,"properties":{"id":"46021","name":"Campbell"},"arcs":[[-611,708,709,-704,-512]]},{"type":"Polygon","id":30001,"properties":{"id":"30001","name":"Beaverhead"},"arcs":[[-636,710,711,712,713,-508,-616]]},{"type":"Polygon","id":46089,"properties":{"id":"46089","name":"McPherson"},"arcs":[[-613,714,715,716,-709,-610]]},{"type":"Polygon","id":46013,"properties":{"id":"46013","name":"Brown"},"arcs":[[-607,717,718,719,720,721,-715,-612]]},{"type":"Polygon","id":46109,"properties":{"id":"46109","name":"Roberts"},"arcs":[[-681,722,723,724,725,-533]]},{"type":"Polygon","id":46091,"properties":{"id":"46091","name":"Marshall"},"arcs":[[-726,726,-718,-606]]},{"type":"Polygon","id":41049,"properties":{"id":"41049","name":"Morrow"},"arcs":[[-686,727,728,729,-670,-484]]},{"type":"Polygon","id":55085,"properties":{"id":"55085","name":"Oneida"},"arcs":[[-668,730,731,-694,-596]]},{"type":"Polygon","id":41061,"properties":{"id":"41061","name":"Union"},"arcs":[[732,733,-684,-689]]},{"type":"Polygon","id":30057,"properties":{"id":"30057","name":"Madison"},"arcs":[[-631,734,-711,-635,-551]]},{"type":"Polygon","id":27009,"properties":{"id":"27009","name":"Benton"},"arcs":[[-624,735,736,-594]]},{"type":"Polygon","id":41021,"properties":{"id":"41021","name":"Gilliam"},"arcs":[[737,738,739,-671,-730]]},{"type":"Polygon","id":30075,"properties":{"id":"30075","name":"Powder River"},"arcs":[[-657,740,741,742,-675,-442,-440]]},{"type":"Polygon","id":26031,"properties":{"id":"26031","name":"Cheboygan"},"arcs":[[743,744,745,746,747,748]]},{"type":"Polygon","id":41057,"properties":{"id":"41057","name":"Tillamook"},"arcs":[[749,750,751,752,753,-600]]},{"type":"Polygon","id":41067,"properties":{"id":"41067","name":"Washington"},"arcs":[[754,755,756,-750,-639]]},{"type":"Polygon","id":27145,"properties":{"id":"27145","name":"Stearns"},"arcs":[[-737,757,758,759,760,761,-662,-591,-595]]},{"type":"Polygon","id":27149,"properties":{"id":"27149","name":"Stevens"},"arcs":[[762,763,764,-679,-660]]},{"type":"Polygon","id":27121,"properties":{"id":"27121","name":"Pope"},"arcs":[[-762,765,766,-763,-663]]},{"type":"Polygon","id":41055,"properties":{"id":"41055","name":"Sherman"},"arcs":[[767,-672,-740]]},{"type":"Polygon","id":27059,"properties":{"id":"27059","name":"Isanti"},"arcs":[[768,769,770,-622,-641]]},{"type":"Polygon","id":27025,"properties":{"id":"27025","name":"Chisago"},"arcs":[[-645,771,772,773,-769,-574]]},{"type":"Polygon","id":55095,"properties":{"id":"55095","name":"Polk"},"arcs":[[774,775,776,-772,-644]]},{"type":"Polygon","id":41051,"properties":{"id":"41051","name":"Multnomah"},"arcs":[[-669,-582,777,778,-755,-638]]},{"type":"Polygon","id":41027,"properties":{"id":"41027","name":"Hood River"},"arcs":[[779,780,-778,-581,-674]]},{"type":"Polygon","id":41065,"properties":{"id":"41065","name":"Wasco"},"arcs":[[-768,-739,781,782,783,784,-780,-673]]},{"type":"Polygon","id":16059,"properties":{"id":"16059","name":"Lemhi"},"arcs":[[-714,785,786,787,788,-501,-509]]},{"type":"Polygon","id":23029,"properties":{"id":"23029","name":"Washington"},"arcs":[[789,-576,-344,790]]},{"type":"Polygon","id":23007,"properties":{"id":"23007","name":"Franklin"},"arcs":[[791,792,793,794,-547]]},{"type":"Polygon","id":26141,"properties":{"id":"26141","name":"Presque Isle"},"arcs":[[795,796,-744,797]]},{"type":"Polygon","id":55005,"properties":{"id":"55005","name":"Barron"},"arcs":[[-652,798,799,800,-775,-643]]},{"type":"Polygon","id":55107,"properties":{"id":"55107","name":"Rusk"},"arcs":[[-697,801,802,-799,-649]]},{"type":"Polygon","id":30009,"properties":{"id":"30009","name":"Carbon"},"arcs":[[-678,803,804,-633,-658,-560]]},{"type":"Polygon","id":46129,"properties":{"id":"46129","name":"Walworth"},"arcs":[[-717,805,806,807,-705,-710]]},{"type":"Polygon","id":46045,"properties":{"id":"46045","name":"Edmunds"},"arcs":[[-722,808,809,-806,-716]]},{"type":"Polygon","id":46037,"properties":{"id":"46037","name":"Day"},"arcs":[[-727,-725,810,811,812,813,-719]]},{"type":"Polygon","id":27011,"properties":{"id":"27011","name":"Big Stone"},"arcs":[[-680,-765,814,815,816,-723]]},{"type":"Polygon","id":27141,"properties":{"id":"27141","name":"Sherburne"},"arcs":[[-623,-771,817,818,819,-758,-736]]},{"type":"Polygon","id":55069,"properties":{"id":"55069","name":"Lincoln"},"arcs":[[820,821,822,-695,-732]]},{"type":"Polygon","id":46041,"properties":{"id":"46041","name":"Dewey"},"arcs":[[-808,823,824,825,826,-706]]},{"type":"Polygon","id":46137,"properties":{"id":"46137","name":"Ziebach"},"arcs":[[-827,827,828,-700,-707]]},{"type":"Polygon","id":55067,"properties":{"id":"55067","name":"Langlade"},"arcs":[[-667,829,830,831,832,-821,-731]]},{"type":"Polygon","id":41005,"properties":{"id":"41005","name":"Clackamas"},"arcs":[[-781,-785,833,834,-756,-779]]},{"type":"Polygon","id":41071,"properties":{"id":"41071","name":"Yamhill"},"arcs":[[-835,835,836,-751,-757]]},{"type":"Polygon","id":27171,"properties":{"id":"27171","name":"Wright"},"arcs":[[-820,837,838,839,840,-759]]},{"type":"Polygon","id":27003,"properties":{"id":"27003","name":"Anoka"},"arcs":[[-774,841,842,843,-818,-770]]},{"type":"Polygon","id":27067,"properties":{"id":"27067","name":"Kandiyohi"},"arcs":[[844,845,846,847,-766,-761]]},{"type":"Polygon","id":27151,"properties":{"id":"27151","name":"Swift"},"arcs":[[-848,848,849,-815,-764,-767]]},{"type":"Polygon","id":55119,"properties":{"id":"55119","name":"Taylor"},"arcs":[[-823,850,851,852,-802,-696]]},{"type":"Polygon","id":55083,"properties":{"id":"55083","name":"Oconto"},"arcs":[[853,854,855,856,857,858,859,-830,-666]]},{"type":"Polygon","id":23017,"properties":{"id":"23017","name":"Oxford"},"arcs":[[-794,860,861,862,863,864,865]]},{"type":"Polygon","id":46051,"properties":{"id":"46051","name":"Grant"},"arcs":[[-817,866,867,868,-811,-724]]},{"type":"Polygon","id":27093,"properties":{"id":"27093","name":"Meeker"},"arcs":[[-841,869,870,-845,-760]]},{"type":"Polygon","id":33007,"properties":{"id":"33007","name":"Coos"},"arcs":[[871,872,873,874,-865]]},{"type":"Polygon","id":27163,"properties":{"id":"27163","name":"Washington"},"arcs":[[-777,875,876,877,878,-842,-773]]},{"type":"Polygon","id":55017,"properties":{"id":"55017","name":"Chippewa"},"arcs":[[-853,879,880,881,-800,-803]]},{"type":"Polygon","id":41047,"properties":{"id":"41047","name":"Marion"},"arcs":[[-834,-784,882,883,884,-836]]},{"type":"Polygon","id":16003,"properties":{"id":"16003","name":"Adams"},"arcs":[[885,886,887,888,-687,-503]]},{"type":"Polygon","id":27073,"properties":{"id":"27073","name":"Lac qui Parle"},"arcs":[[-850,889,890,891,-867,-816]]},{"type":"MultiPolygon","id":23009,"properties":{"id":"23009","name":"Hancock"},"arcs":[[[892]],[[893]],[[894,-577,-790]]]},{"type":"Polygon","id":46107,"properties":{"id":"46107","name":"Potter"},"arcs":[[-810,895,896,897,-824,-807]]},{"type":"Polygon","id":46049,"properties":{"id":"46049","name":"Faulk"},"arcs":[[-721,898,899,900,-896,-809]]},{"type":"Polygon","id":27053,"properties":{"id":"27053","name":"Hennepin"},"arcs":[[-819,-844,901,902,903,904,-838]]},{"type":"Polygon","id":46115,"properties":{"id":"46115","name":"Spink"},"arcs":[[-814,905,906,907,-899,-720]]},{"type":"Polygon","id":16085,"properties":{"id":"16085","name":"Valley"},"arcs":[[-789,908,909,910,-886,-502]]},{"type":"Polygon","id":46019,"properties":{"id":"46019","name":"Butte"},"arcs":[[-702,911,912,913,-655,-708]]},{"type":"Polygon","id":55109,"properties":{"id":"55109","name":"St. Croix"},"arcs":[[914,915,-876,-776]]},{"type":"Polygon","id":55033,"properties":{"id":"55033","name":"Dunn"},"arcs":[[-882,916,917,918,-915,-801]]},{"type":"Polygon","id":26009,"properties":{"id":"26009","name":"Antrim"},"arcs":[[919,920,921,922,923]]},{"type":"Polygon","id":26137,"properties":{"id":"26137","name":"Otsego"},"arcs":[[924,925,-920,926,-746]]},{"type":"Polygon","id":26119,"properties":{"id":"26119","name":"Montmorency"},"arcs":[[927,928,-925,-745,-797]]},{"type":"Polygon","id":46025,"properties":{"id":"46025","name":"Clark"},"arcs":[[929,930,931,932,-906,-813]]},{"type":"Polygon","id":46029,"properties":{"id":"46029","name":"Codington"},"arcs":[[-869,933,934,-930,-812]]},{"type":"Polygon","id":27023,"properties":{"id":"27023","name":"Chippewa"},"arcs":[[-847,935,936,-890,-849]]},{"type":"Polygon","id":27123,"properties":{"id":"27123","name":"Ramsey"},"arcs":[[-879,937,-902,-843]]},{"type":"Polygon","id":55073,"properties":{"id":"55073","name":"Marathon"},"arcs":[[-822,-833,938,939,940,941,-851]]},{"type":"Polygon","id":55078,"properties":{"id":"55078","name":"Menominee"},"arcs":[[-860,942,-831]]},{"type":"Polygon","id":41001,"properties":{"id":"41001","name":"Baker"},"arcs":[[-889,943,944,945,-733,-688]]},{"type":"Polygon","id":41053,"properties":{"id":"41053","name":"Polk"},"arcs":[[-885,946,947,948,-752,-837]]},{"type":"Polygon","id":41069,"properties":{"id":"41069","name":"Wheeler"},"arcs":[[-729,949,950,951,-782,-738]]},{"type":"Polygon","id":41041,"properties":{"id":"41041","name":"Lincoln"},"arcs":[[-949,952,953,954,-753]]},{"type":"Polygon","id":46093,"properties":{"id":"46093","name":"Meade"},"arcs":[[-829,955,956,957,-912,-701]]},{"type":"Polygon","id":55019,"properties":{"id":"55019","name":"Clark"},"arcs":[[-942,958,959,960,-880,-852]]},{"type":"Polygon","id":55115,"properties":{"id":"55115","name":"Shawano"},"arcs":[[-943,-859,961,962,963,-939,-832]]},{"type":"Polygon","id":50011,"properties":{"id":"50011","name":"Franklin"},"arcs":[[964,965,966,967,968]]},{"type":"Polygon","id":50009,"properties":{"id":"50009","name":"Essex"},"arcs":[[969,970,971,972,-874]]},{"type":"Polygon","id":50013,"properties":{"id":"50013","name":"Grand Isle"},"arcs":[[973,974,975,-968]]},{"type":"Polygon","id":36019,"properties":{"id":"36019","name":"Clinton"},"arcs":[[976,977,978,979,-975]]},{"type":"Polygon","id":50019,"properties":{"id":"50019","name":"Orleans"},"arcs":[[-972,980,981,-965,982]]},{"type":"Polygon","id":56029,"properties":{"id":"56029","name":"Park"},"arcs":[[983,984,985,986,987,-628,-634,-805]]},{"type":"Polygon","id":36089,"properties":{"id":"36089","name":"St. Lawrence"},"arcs":[[988,989,990,991,992,993]]},{"type":"Polygon","id":56003,"properties":{"id":"56003","name":"Big Horn"},"arcs":[[994,995,996,-984,-804,-677]]},{"type":"Polygon","id":56005,"properties":{"id":"56005","name":"Campbell"},"arcs":[[997,998,999,1000,1001,-742]]},{"type":"Polygon","id":56033,"properties":{"id":"56033","name":"Sheridan"},"arcs":[[-743,-1002,1002,-995,-676]]},{"type":"Polygon","id":36033,"properties":{"id":"36033","name":"Franklin"},"arcs":[[-979,1003,1004,-989,1005]]},{"type":"Polygon","id":56011,"properties":{"id":"56011","name":"Crook"},"arcs":[[-656,-914,1006,1007,-998,-741]]},{"type":"Polygon","id":41023,"properties":{"id":"41023","name":"Grant"},"arcs":[[-734,-946,1008,1009,1010,-950,-728,-685]]},{"type":"Polygon","id":27085,"properties":{"id":"27085","name":"McLeod"},"arcs":[[-840,1011,1012,1013,-870]]},{"type":"Polygon","id":27019,"properties":{"id":"27019","name":"Carver"},"arcs":[[-905,1014,1015,-1012,-839]]},{"type":"Polygon","id":46039,"properties":{"id":"46039","name":"Deuel"},"arcs":[[-892,1016,1017,1018,1019,-934,-868]]},{"type":"Polygon","id":27173,"properties":{"id":"27173","name":"Yellow Medicine"},"arcs":[[1020,1021,1022,1023,-1017,-891,-937]]},{"type":"Polygon","id":27037,"properties":{"id":"27037","name":"Dakota"},"arcs":[[-878,1024,1025,1026,1027,-903,-938]]},{"type":"Polygon","id":46119,"properties":{"id":"46119","name":"Sully"},"arcs":[[1028,1029,1030,-825,-898]]},{"type":"Polygon","id":46069,"properties":{"id":"46069","name":"Hyde"},"arcs":[[-901,1031,1032,1033,1034,-1029,-897]]},{"type":"Polygon","id":46059,"properties":{"id":"46059","name":"Hand"},"arcs":[[-908,1035,1036,1037,-1032,-900]]},{"type":"Polygon","id":27129,"properties":{"id":"27129","name":"Renville"},"arcs":[[-871,-1014,1038,1039,1040,1041,-1021,-936,-846]]},{"type":"Polygon","id":16037,"properties":{"id":"16037","name":"Custer"},"arcs":[[1042,1043,1044,1045,-909,-788]]},{"type":"Polygon","id":55093,"properties":{"id":"55093","name":"Pierce"},"arcs":[[-919,1046,1047,-1025,-877,-916]]},{"type":"Polygon","id":26001,"properties":{"id":"26001","name":"Alcona"},"arcs":[[1048,1049,1050,1051]]},{"type":"Polygon","id":26079,"properties":{"id":"26079","name":"Kalkaska"},"arcs":[[1052,1053,1054,-921]]},{"type":"Polygon","id":26039,"properties":{"id":"26039","name":"Crawford"},"arcs":[[1055,1056,-1053,-926]]},{"type":"Polygon","id":55035,"properties":{"id":"55035","name":"Eau Claire"},"arcs":[[-961,1057,1058,1059,1060,-917,-881]]},{"type":"Polygon","id":26135,"properties":{"id":"26135","name":"Oscoda"},"arcs":[[-1051,1061,-1056,-929]]},{"type":"Polygon","id":16087,"properties":{"id":"16087","name":"Washington"},"arcs":[[1062,1063,1064,-944,-888]]},{"type":"Polygon","id":41031,"properties":{"id":"41031","name":"Jefferson"},"arcs":[[-952,1065,1066,1067,-883,-783]]},{"type":"Polygon","id":27139,"properties":{"id":"27139","name":"Scott"},"arcs":[[-1028,1068,1069,1070,-1015,-904]]},{"type":"Polygon","id":46057,"properties":{"id":"46057","name":"Hamlin"},"arcs":[[-1020,1071,1072,-931,-935]]},{"type":"Polygon","id":50015,"properties":{"id":"50015","name":"Lamoille"},"arcs":[[1073,1074,1075,-966,-982]]},{"type":"Polygon","id":41043,"properties":{"id":"41043","name":"Linn"},"arcs":[[-1068,1076,1077,1078,-947,-884]]},{"type":"Polygon","id":46117,"properties":{"id":"46117","name":"Stanley"},"arcs":[[-1031,1079,1080,1081,1082,-826]]},{"type":"Polygon","id":26019,"properties":{"id":"26019","name":"Benzie"},"arcs":[[1083,1084,1085,1086]]},{"type":"Polygon","id":50005,"properties":{"id":"50005","name":"Caledonia"},"arcs":[[1087,1088,1089,-1074,-981,-971]]},{"type":"Polygon","id":23027,"properties":{"id":"23027","name":"Waldo"},"arcs":[[-579,1090,1091,1092,1093,-545]]},{"type":"Polygon","id":16043,"properties":{"id":"16043","name":"Fremont"},"arcs":[[1094,1095,1096,1097,1098,-712,-735,-630]]},{"type":"Polygon","id":46055,"properties":{"id":"46055","name":"Haakon"},"arcs":[[1099,1100,1101,-956,-828,-1083]]},{"type":"Polygon","id":50007,"properties":{"id":"50007","name":"Chittenden"},"arcs":[[-1076,1102,1103,1104,-977,-974,-967]]},{"type":"Polygon","id":41003,"properties":{"id":"41003","name":"Benton"},"arcs":[[-1079,1105,-953,-948]]},{"type":"Polygon","id":23011,"properties":{"id":"23011","name":"Kennebec"},"arcs":[[1106,1107,1108,1109,-792,-546,-1094]]},{"type":"Polygon","id":27143,"properties":{"id":"27143","name":"Sibley"},"arcs":[[-1016,-1071,1110,1111,-1039,-1013]]},{"type":"Polygon","id":27049,"properties":{"id":"27049","name":"Goodhue"},"arcs":[[1112,1113,1114,1115,1116,-1026,-1048]]},{"type":"Polygon","id":27127,"properties":{"id":"27127","name":"Redwood"},"arcs":[[1117,1118,1119,1120,-1022,-1042]]},{"type":"Polygon","id":55097,"properties":{"id":"55097","name":"Portage"},"arcs":[[1121,1122,1123,1124,-940]]},{"type":"Polygon","id":55141,"properties":{"id":"55141","name":"Wood"},"arcs":[[-1125,1125,1126,1127,-959,-941]]},{"type":"MultiPolygon","id":55009,"properties":{"id":"55009","name":"Brown"},"arcs":[[[-858,1128,1129,1130,1131,1132,-962]]]},{"type":"Polygon","id":55091,"properties":{"id":"55091","name":"Pepin"},"arcs":[[-1061,1133,1134,-1113,-1047,-918]]},{"type":"Polygon","id":55135,"properties":{"id":"55135","name":"Waupaca"},"arcs":[[1135,1136,1137,-1122,-964]]},{"type":"Polygon","id":55061,"properties":{"id":"55061","name":"Kewaunee"},"arcs":[[1138,1139,-1130,1140,1141]]},{"type":"Polygon","id":56039,"properties":{"id":"56039","name":"Teton"},"arcs":[[1142,1143,1144,1145,1146,-1095,-629,-988]]},{"type":"Polygon","id":46005,"properties":{"id":"46005","name":"Beadle"},"arcs":[[-933,1147,1148,1149,-1036,-907]]},{"type":"Polygon","id":27081,"properties":{"id":"27081","name":"Lincoln"},"arcs":[[1150,1151,1152,-1018,-1024]]},{"type":"Polygon","id":27083,"properties":{"id":"27083","name":"Lyon"},"arcs":[[-1121,1153,1154,-1151,-1023]]},{"type":"Polygon","id":46081,"properties":{"id":"46081","name":"Lawrence"},"arcs":[[-958,1155,1156,-1007,-913]]},{"type":"Polygon","id":55011,"properties":{"id":"55011","name":"Buffalo"},"arcs":[[-1060,1157,1158,1159,-1134]]},{"type":"Polygon","id":55121,"properties":{"id":"55121","name":"Trempealeau"},"arcs":[[1160,1161,1162,-1158,-1059]]},{"type":"Polygon","id":55053,"properties":{"id":"55053","name":"Jackson"},"arcs":[[-960,-1128,1163,1164,1165,-1161,-1058]]},{"type":"Polygon","id":55087,"properties":{"id":"55087","name":"Outagamie"},"arcs":[[-963,-1133,1166,1167,-1136]]},{"type":"Polygon","id":16033,"properties":{"id":"16033","name":"Clark"},"arcs":[[-1099,1168,1169,-786,-713]]},{"type":"Polygon","id":56019,"properties":{"id":"56019","name":"Johnson"},"arcs":[[-1001,1170,1171,1172,-996,-1003]]},{"type":"Polygon","id":41013,"properties":{"id":"41013","name":"Crook"},"arcs":[[-951,-1011,1173,1174,-1066]]},{"type":"Polygon","id":46065,"properties":{"id":"46065","name":"Hughes"},"arcs":[[-1035,1175,-1080,-1030]]},{"type":"Polygon","id":36031,"properties":{"id":"36031","name":"Essex"},"arcs":[[1176,1177,1178,1179,-1004,-978,-1105]]},{"type":"Polygon","id":27079,"properties":{"id":"27079","name":"Le Sueur"},"arcs":[[1180,1181,1182,1183,-1111,-1070]]},{"type":"Polygon","id":27131,"properties":{"id":"27131","name":"Rice"},"arcs":[[-1027,-1117,1184,1185,1186,-1181,-1069]]},{"type":"Polygon","id":46077,"properties":{"id":"46077","name":"Kingsbury"},"arcs":[[-1073,1187,1188,1189,1190,-1148,-932]]},{"type":"Polygon","id":46011,"properties":{"id":"46011","name":"Brookings"},"arcs":[[-1153,1191,1192,1193,-1188,-1072,-1019]]},{"type":"Polygon","id":26101,"properties":{"id":"26101","name":"Manistee"},"arcs":[[1194,1195,1196,1197,-1085]]},{"type":"Polygon","id":26165,"properties":{"id":"26165","name":"Wexford"},"arcs":[[1198,1199,1200,-1195,1201]]},{"type":"Polygon","id":26143,"properties":{"id":"26143","name":"Roscommon"},"arcs":[[1202,1203,1204,1205,-1057]]},{"type":"Polygon","id":26113,"properties":{"id":"26113","name":"Missaukee"},"arcs":[[-1206,1206,1207,-1199,-1054]]},{"type":"Polygon","id":26069,"properties":{"id":"26069","name":"Iosco"},"arcs":[[1208,1209,1210,-1050]]},{"type":"Polygon","id":26129,"properties":{"id":"26129","name":"Ogemaw"},"arcs":[[-1211,1211,1212,-1203,-1062]]},{"type":"Polygon","id":16045,"properties":{"id":"16045","name":"Gem"},"arcs":[[-911,1213,1214,1215,1216,-1063,-887]]},{"type":"Polygon","id":46103,"properties":{"id":"46103","name":"Pennington"},"arcs":[[-1102,1217,1218,1219,1220,-1156,-957]]},{"type":"Polygon","id":50023,"properties":{"id":"50023","name":"Washington"},"arcs":[[1221,1222,-1103,-1075,-1090]]},{"type":"Polygon","id":27015,"properties":{"id":"27015","name":"Brown"},"arcs":[[1223,1224,1225,1226,-1118,-1041]]},{"type":"Polygon","id":23001,"properties":{"id":"23001","name":"Androscoggin"},"arcs":[[1227,1228,-861,-793,-1110]]},{"type":"Polygon","id":27103,"properties":{"id":"27103","name":"Nicollet"},"arcs":[[1229,-1224,-1040,-1112,-1184]]},{"type":"Polygon","id":27157,"properties":{"id":"27157","name":"Wabasha"},"arcs":[[-1135,-1160,1230,1231,-1114]]},{"type":"Polygon","id":41045,"properties":{"id":"41045","name":"Malheur"},"arcs":[[-1065,1232,1233,1234,1235,1236,-1009,-945]]},{"type":"Polygon","id":33009,"properties":{"id":"33009","name":"Grafton"},"arcs":[[1237,1238,1239,1240,1241,1242,-1088,-970,-873]]},{"type":"Polygon","id":41017,"properties":{"id":"41017","name":"Deschutes"},"arcs":[[-1175,1243,1244,1245,1246,-1077,-1067]]},{"type":"Polygon","id":36045,"properties":{"id":"36045","name":"Jefferson"},"arcs":[[-993,1247,1248,1249,1250,1251]]},{"type":"Polygon","id":23013,"properties":{"id":"23013","name":"Knox"},"arcs":[[1252,1253,-1092]]},{"type":"Polygon","id":16015,"properties":{"id":"16015","name":"Boise"},"arcs":[[-1046,1254,1255,-1214,-910]]},{"type":"Polygon","id":23015,"properties":{"id":"23015","name":"Lincoln"},"arcs":[[-1093,-1254,1256,1257,1258,-1107]]},{"type":"Polygon","id":55071,"properties":{"id":"55071","name":"Manitowoc"},"arcs":[[-1140,1259,1260,1261,-1131]]},{"type":"Polygon","id":50001,"properties":{"id":"50001","name":"Addison"},"arcs":[[-1223,1262,1263,1264,1265,-1177,-1104]]},{"type":"Polygon","id":41039,"properties":{"id":"41039","name":"Lane"},"arcs":[[-1247,1266,1267,1268,-954,-1106,-1078]]},{"type":"Polygon","id":33003,"properties":{"id":"33003","name":"Carroll"},"arcs":[[-864,1269,1270,1271,-1238,-872]]},{"type":"Polygon","id":27013,"properties":{"id":"27013","name":"Blue Earth"},"arcs":[[-1183,1272,1273,1274,1275,-1225,-1230]]},{"type":"Polygon","id":55057,"properties":{"id":"55057","name":"Juneau"},"arcs":[[1276,1277,1278,1279,-1164,-1127]]},{"type":"Polygon","id":55001,"properties":{"id":"55001","name":"Adams"},"arcs":[[-1124,1280,1281,1282,-1277,-1126]]},{"type":"Polygon","id":55137,"properties":{"id":"55137","name":"Waushara"},"arcs":[[-1138,1283,1284,1285,-1281,-1123]]},{"type":"Polygon","id":55139,"properties":{"id":"55139","name":"Winnebago"},"arcs":[[1286,1287,1288,-1284,-1137,-1168]]},{"type":"Polygon","id":55015,"properties":{"id":"55015","name":"Calumet"},"arcs":[[-1132,-1262,1289,1290,-1287,-1167]]},{"type":"Polygon","id":16023,"properties":{"id":"16023","name":"Butte"},"arcs":[[-1170,1291,1292,1293,-1043,-787]]},{"type":"Polygon","id":50017,"properties":{"id":"50017","name":"Orange"},"arcs":[[-1243,1294,-1263,-1222,-1089]]},{"type":"Polygon","id":36049,"properties":{"id":"36049","name":"Lewis"},"arcs":[[1295,1296,-1248,-992,1297]]},{"type":"Polygon","id":46085,"properties":{"id":"46085","name":"Lyman"},"arcs":[[1298,1299,1300,1301,1302,-1081,-1176,-1034,1303]]},{"type":"Polygon","id":27117,"properties":{"id":"27117","name":"Pipestone"},"arcs":[[-1155,1304,1305,1306,-1192,-1152]]},{"type":"Polygon","id":27101,"properties":{"id":"27101","name":"Murray"},"arcs":[[-1120,1307,1308,1309,-1305,-1154]]},{"type":"Polygon","id":46073,"properties":{"id":"46073","name":"Jerauld"},"arcs":[[-1150,1310,1311,1312,1313,-1037]]},{"type":"Polygon","id":27147,"properties":{"id":"27147","name":"Steele"},"arcs":[[1314,1315,1316,1317,-1186]]},{"type":"Polygon","id":27039,"properties":{"id":"27039","name":"Dodge"},"arcs":[[1318,1319,-1315,-1185,-1116]]},{"type":"Polygon","id":46101,"properties":{"id":"46101","name":"Moody"},"arcs":[[-1307,1320,1321,-1193]]},{"type":"Polygon","id":27161,"properties":{"id":"27161","name":"Waseca"},"arcs":[[-1318,1322,1323,-1273,-1182,-1187]]},{"type":"Polygon","id":46017,"properties":{"id":"46017","name":"Buffalo"},"arcs":[[-1314,1324,-1304,-1033,-1038]]},{"type":"Polygon","id":46111,"properties":{"id":"46111","name":"Sanborn"},"arcs":[[-1191,1325,1326,1327,1328,-1311,-1149]]},{"type":"Polygon","id":27109,"properties":{"id":"27109","name":"Olmsted"},"arcs":[[-1232,1329,1330,1331,-1319,-1115]]},{"type":"Polygon","id":27033,"properties":{"id":"27033","name":"Cottonwood"},"arcs":[[-1227,1332,1333,1334,-1308,-1119]]},{"type":"Polygon","id":46079,"properties":{"id":"46079","name":"Lake"},"arcs":[[-1194,-1322,1335,1336,1337,-1189]]},{"type":"Polygon","id":46097,"properties":{"id":"46097","name":"Miner"},"arcs":[[-1338,1338,1339,-1326,-1190]]},{"type":"Polygon","id":27169,"properties":{"id":"27169","name":"Winona"},"arcs":[[-1159,-1163,1340,1341,1342,-1330,-1231]]},{"type":"Polygon","id":56045,"properties":{"id":"56045","name":"Weston"},"arcs":[[-1157,-1221,1343,1344,1345,-999,-1008]]},{"type":"Polygon","id":26105,"properties":{"id":"26105","name":"Mason"},"arcs":[[1346,1347,1348,-1197]]},{"type":"Polygon","id":23005,"properties":{"id":"23005","name":"Cumberland"},"arcs":[[-1229,1349,1350,1351,1352,1353,-862]]},{"type":"Polygon","id":46075,"properties":{"id":"46075","name":"Jones"},"arcs":[[-1303,1354,1355,-1100,-1082]]},{"type":"Polygon","id":56043,"properties":{"id":"56043","name":"Washakie"},"arcs":[[-1173,1356,1357,1358,-985,-997]]},{"type":"MultiPolygon","id":23023,"properties":{"id":"23023","name":"Sagadahoc"},"arcs":[[[-1352,1359]],[[-1258,1360]],[[1361,-1350,-1228,-1109]]]},{"type":"Polygon","id":26085,"properties":{"id":"26085","name":"Lake"},"arcs":[[-1196,-1201,1362,1363,-1347]]},{"type":"Polygon","id":26133,"properties":{"id":"26133","name":"Osceola"},"arcs":[[-1208,1364,1365,-1363,-1200]]},{"type":"Polygon","id":26035,"properties":{"id":"26035","name":"Clare"},"arcs":[[-1205,1366,1367,-1365,-1207]]},{"type":"Polygon","id":26051,"properties":{"id":"26051","name":"Gladwin"},"arcs":[[1368,1369,1370,-1367,-1204,-1213]]},{"type":"Polygon","id":55081,"properties":{"id":"55081","name":"Monroe"},"arcs":[[-1280,1371,1372,-1165]]},{"type":"Polygon","id":16075,"properties":{"id":"16075","name":"Payette"},"arcs":[[-1217,1373,-1233,-1064]]},{"type":"Polygon","id":36041,"properties":{"id":"36041","name":"Hamilton"},"arcs":[[1374,1375,1376,1377,-990,-1005,-1180]]},{"type":"Polygon","id":27165,"properties":{"id":"27165","name":"Watonwan"},"arcs":[[-1276,1378,1379,-1333,-1226]]},{"type":"Polygon","id":16039,"properties":{"id":"16039","name":"Elmore"},"arcs":[[-1045,1380,1381,1382,1383,1384,1385,-1255]]},{"type":"Polygon","id":36043,"properties":{"id":"36043","name":"Herkimer"},"arcs":[[-1378,1386,1387,1388,1389,-1298,-991]]},{"type":"Polygon","id":55063,"properties":{"id":"55063","name":"La Crosse"},"arcs":[[-1166,-1373,1390,1391,-1341,-1162]]},{"type":"Polygon","id":56017,"properties":{"id":"56017","name":"Hot Springs"},"arcs":[[-1359,1392,-986]]},{"type":"Polygon","id":16051,"properties":{"id":"16051","name":"Jefferson"},"arcs":[[-1098,1393,1394,1395,-1292,-1169]]},{"type":"Polygon","id":41025,"properties":{"id":"41025","name":"Harney"},"arcs":[[-1237,1396,1397,1398,-1244,-1174,-1010]]},{"type":"Polygon","id":56013,"properties":{"id":"56013","name":"Fremont"},"arcs":[[-1393,-1358,1399,1400,1401,1402,-1143,-987]]},{"type":"Polygon","id":26017,"properties":{"id":"26017","name":"Bay"},"arcs":[[1403,1404,1405,1406,-1370,1407]]},{"type":"Polygon","id":46071,"properties":{"id":"46071","name":"Jackson"},"arcs":[[-1356,1408,1409,1410,-1218,-1101]]},{"type":"Polygon","id":16013,"properties":{"id":"16013","name":"Blaine"},"arcs":[[-1294,1411,1412,1413,1414,1415,1416,-1381,-1044]]},{"type":"Polygon","id":16081,"properties":{"id":"16081","name":"Teton"},"arcs":[[-1147,1417,1418,-1096]]},{"type":"Polygon","id":55047,"properties":{"id":"55047","name":"Green Lake"},"arcs":[[-1289,1419,1420,1421,1422,-1285]]},{"type":"Polygon","id":55077,"properties":{"id":"55077","name":"Marquette"},"arcs":[[-1423,1423,-1282,-1286]]},{"type":"Polygon","id":50027,"properties":{"id":"50027","name":"Windsor"},"arcs":[[-1242,1424,1425,1426,1427,-1264,-1295]]},{"type":"Polygon","id":41019,"properties":{"id":"41019","name":"Douglas"},"arcs":[[1428,1429,1430,1431,1432,1433,-1268]]},{"type":"Polygon","id":55039,"properties":{"id":"55039","name":"Fond du Lac"},"arcs":[[1434,1435,1436,-1420,-1288,-1291]]},{"type":"Polygon","id":46003,"properties":{"id":"46003","name":"Aurora"},"arcs":[[-1329,1437,1438,1439,1440,-1312]]},{"type":"Polygon","id":46015,"properties":{"id":"46015","name":"Brule"},"arcs":[[-1441,1441,-1299,-1325,-1313]]},{"type":"Polygon","id":16065,"properties":{"id":"16065","name":"Madison"},"arcs":[[-1419,1442,-1394,-1097]]},{"type":"Polygon","id":55117,"properties":{"id":"55117","name":"Sheboygan"},"arcs":[[1443,1444,1445,-1435,-1290,-1261]]},{"type":"Polygon","id":16027,"properties":{"id":"16027","name":"Canyon"},"arcs":[[-1216,1446,1447,-1234,-1374]]},{"type":"Polygon","id":46095,"properties":{"id":"46095","name":"Mellette"},"arcs":[[-1302,1448,1449,-1409,-1355]]},{"type":"Polygon","id":16025,"properties":{"id":"16025","name":"Camas"},"arcs":[[1450,1451,-1382,-1417]]},{"type":"Polygon","id":50021,"properties":{"id":"50021","name":"Rutland"},"arcs":[[1452,1453,-1265,-1428]]},{"type":"Polygon","id":46033,"properties":{"id":"46033","name":"Custer"},"arcs":[[1454,1455,1456,-1344,-1220]]},{"type":"Polygon","id":27133,"properties":{"id":"27133","name":"Rock"},"arcs":[[-1310,1457,1458,1459,-1306]]},{"type":"Polygon","id":27105,"properties":{"id":"27105","name":"Nobles"},"arcs":[[-1335,1460,1461,1462,-1458,-1309]]},{"type":"Polygon","id":27047,"properties":{"id":"27047","name":"Freeborn"},"arcs":[[1463,1464,1465,1466,-1323,-1317]]},{"type":"Polygon","id":27099,"properties":{"id":"27099","name":"Mower"},"arcs":[[-1332,1467,1468,1469,1470,-1464,-1316,-1320]]},{"type":"Polygon","id":27055,"properties":{"id":"27055","name":"Houston"},"arcs":[[-1392,1471,1472,1473,1474,-1342]]},{"type":"Polygon","id":46035,"properties":{"id":"46035","name":"Davison"},"arcs":[[1475,1476,1477,-1438,-1328]]},{"type":"Polygon","id":46061,"properties":{"id":"46061","name":"Hanson"},"arcs":[[-1340,1478,1479,-1476,-1327]]},{"type":"Polygon","id":27045,"properties":{"id":"27045","name":"Fillmore"},"arcs":[[-1343,-1475,1480,1481,-1468,-1331]]},{"type":"Polygon","id":27063,"properties":{"id":"27063","name":"Jackson"},"arcs":[[-1380,1482,1483,1484,1485,-1461,-1334]]},{"type":"Polygon","id":27043,"properties":{"id":"27043","name":"Faribault"},"arcs":[[-1324,-1467,1486,1487,1488,-1274]]},{"type":"Polygon","id":46099,"properties":{"id":"46099","name":"Minnehaha"},"arcs":[[1489,1490,1491,1492,-1336,-1321,-1460]]},{"type":"Polygon","id":27091,"properties":{"id":"27091","name":"Martin"},"arcs":[[-1275,-1489,1493,1494,-1483,-1379]]},{"type":"Polygon","id":46087,"properties":{"id":"46087","name":"McCook"},"arcs":[[-1337,-1493,1495,1496,-1479,-1339]]},{"type":"Polygon","id":26111,"properties":{"id":"26111","name":"Midland"},"arcs":[[-1407,1497,1498,1499,-1371]]},{"type":"Polygon","id":26127,"properties":{"id":"26127","name":"Oceana"},"arcs":[[1500,1501,1502,-1348]]},{"type":"Polygon","id":26073,"properties":{"id":"26073","name":"Isabella"},"arcs":[[-1500,1503,1504,1505,-1368]]},{"type":"Polygon","id":23031,"properties":{"id":"23031","name":"York"},"arcs":[[1506,1507,-1270,-863,-1354]]},{"type":"Polygon","id":26107,"properties":{"id":"26107","name":"Mecosta"},"arcs":[[-1506,1508,1509,-1366]]},{"type":"Polygon","id":26123,"properties":{"id":"26123","name":"Newaygo"},"arcs":[[-1510,1510,1511,1512,-1501,-1364]]},{"type":"Polygon","id":36115,"properties":{"id":"36115","name":"Washington"},"arcs":[[-1454,1513,1514,1515,1516,-1178,-1266]]},{"type":"Polygon","id":16001,"properties":{"id":"16001","name":"Ada"},"arcs":[[-1256,-1386,1517,-1447,-1215]]},{"type":"Polygon","id":36113,"properties":{"id":"36113","name":"Warren"},"arcs":[[1518,-1375,-1179,-1517]]},{"type":"Polygon","id":46123,"properties":{"id":"46123","name":"Tripp"},"arcs":[[1519,1520,1521,-1449,-1301]]},{"type":"Polygon","id":33001,"properties":{"id":"33001","name":"Belknap"},"arcs":[[1522,1523,-1239,-1272]]},{"type":"Polygon","id":26157,"properties":{"id":"26157","name":"Tuscola"},"arcs":[[1524,1525,1526,1527,1528,-1405,1529]]},{"type":"Polygon","id":55123,"properties":{"id":"55123","name":"Vernon"},"arcs":[[1530,1531,1532,1533,-1472,-1391,-1372,-1279]]},{"type":"MultiPolygon","id":36075,"properties":{"id":"36075","name":"Oswego"},"arcs":[[[-1297,1534,1535,1536,1537,1538,-1249]]]},{"type":"Polygon","id":46113,"properties":{"id":"46113","name":"Shannon"},"arcs":[[1539,1540,1541,1542,-1455,-1219,-1411]]},{"type":"Polygon","id":26151,"properties":{"id":"26151","name":"Sanilac"},"arcs":[[1543,1544,-1526,1545,1546]]},{"type":"Polygon","id":16073,"properties":{"id":"16073","name":"Owyhee"},"arcs":[[-1518,-1385,1547,1548,1549,-1235,-1448]]},{"type":"Polygon","id":55021,"properties":{"id":"55021","name":"Columbia"},"arcs":[[1550,1551,1552,-1283,-1424,-1422]]},{"type":"Polygon","id":55111,"properties":{"id":"55111","name":"Sauk"},"arcs":[[-1553,1553,1554,1555,-1531,-1278]]},{"type":"Polygon","id":55027,"properties":{"id":"55027","name":"Dodge"},"arcs":[[1556,1557,1558,1559,-1551,-1421,-1437]]},{"type":"Polygon","id":16019,"properties":{"id":"16019","name":"Bonneville"},"arcs":[[-1443,-1418,-1146,1560,1561,1562,-1395]]},{"type":"Polygon","id":16011,"properties":{"id":"16011","name":"Bingham"},"arcs":[[1563,1564,1565,-1412,-1293,-1396,-1563]]},{"type":"Polygon","id":41035,"properties":{"id":"41035","name":"Klamath"},"arcs":[[1566,1567,1568,1569,-1429,-1267,-1246]]},{"type":"Polygon","id":41037,"properties":{"id":"41037","name":"Lake"},"arcs":[[1570,1571,-1567,-1245,-1399]]},{"type":"Polygon","id":36065,"properties":{"id":"36065","name":"Oneida"},"arcs":[[1572,1573,-1535,-1296,-1390]]},{"type":"Polygon","id":33013,"properties":{"id":"33013","name":"Merrimack"},"arcs":[[-1524,1574,1575,1576,1577,-1240]]},{"type":"Polygon","id":41011,"properties":{"id":"41011","name":"Coos"},"arcs":[[1578,1579,-1433]]},{"type":"Polygon","id":33019,"properties":{"id":"33019","name":"Sullivan"},"arcs":[[-1578,1580,1581,1582,-1425,-1241]]},{"type":"Polygon","id":33017,"properties":{"id":"33017","name":"Strafford"},"arcs":[[-1508,1583,1584,-1575,-1523,-1271]]},{"type":"Polygon","id":26145,"properties":{"id":"26145","name":"Saginaw"},"arcs":[[-1529,1585,1586,1587,-1498,-1406]]},{"type":"Polygon","id":55103,"properties":{"id":"55103","name":"Richland"},"arcs":[[1588,1589,1590,-1532,-1556]]},{"type":"Polygon","id":55089,"properties":{"id":"55089","name":"Ozaukee"},"arcs":[[1591,1592,1593,-1445]]},{"type":"Polygon","id":55131,"properties":{"id":"55131","name":"Washington"},"arcs":[[-1446,-1594,1594,-1557,-1436]]},{"type":"Polygon","id":19189,"properties":{"id":"19189","name":"Winnebago"},"arcs":[[1595,1596,1597,-1487,-1466]]},{"type":"Polygon","id":19109,"properties":{"id":"19109","name":"Kossuth"},"arcs":[[1598,1599,1600,-1494,-1488,-1598,1601]]},{"type":"Polygon","id":19059,"properties":{"id":"19059","name":"Dickinson"},"arcs":[[1602,1603,-1485,1604]]},{"type":"Polygon","id":19063,"properties":{"id":"19063","name":"Emmet"},"arcs":[[1605,-1605,-1484,-1495,-1601]]},{"type":"Polygon","id":19195,"properties":{"id":"19195","name":"Worth"},"arcs":[[1606,-1596,-1465,-1471,1607]]},{"type":"Polygon","id":19143,"properties":{"id":"19143","name":"Osceola"},"arcs":[[1608,1609,-1462,-1486,-1604]]},{"type":"Polygon","id":56027,"properties":{"id":"56027","name":"Niobrara"},"arcs":[[-1457,1610,1611,1612,1613,1614,-1345]]},{"type":"Polygon","id":19131,"properties":{"id":"19131","name":"Mitchell"},"arcs":[[1615,1616,-1608,-1470,1617]]},{"type":"Polygon","id":19119,"properties":{"id":"19119","name":"Lyon"},"arcs":[[1618,1619,-1490,-1459,-1463,-1610]]},{"type":"Polygon","id":19089,"properties":{"id":"19089","name":"Howard"},"arcs":[[1620,1621,-1618,-1469,-1482]]},{"type":"Polygon","id":19005,"properties":{"id":"19005","name":"Allamakee"},"arcs":[[-1534,1622,1623,1624,-1473]]},{"type":"Polygon","id":19191,"properties":{"id":"19191","name":"Winneshiek"},"arcs":[[1625,1626,-1621,-1481,-1474,-1625]]},{"type":"Polygon","id":46083,"properties":{"id":"46083","name":"Lincoln"},"arcs":[[-1620,1627,1628,1629,1630,-1491]]},{"type":"Polygon","id":56009,"properties":{"id":"56009","name":"Converse"},"arcs":[[-1615,1631,1632,1633,1634,-1171,-1000,-1346]]},{"type":"Polygon","id":46023,"properties":{"id":"46023","name":"Charles Mix"},"arcs":[[-1440,1635,1636,1637,1638,1639,1640,-1442]]},{"type":"Polygon","id":46125,"properties":{"id":"46125","name":"Turner"},"arcs":[[-1492,-1631,1641,1642,1643,-1496]]},{"type":"Polygon","id":46067,"properties":{"id":"46067","name":"Hutchinson"},"arcs":[[-1497,-1644,1644,1645,-1637,1646,-1477,-1480]]},{"type":"Polygon","id":56025,"properties":{"id":"56025","name":"Natrona"},"arcs":[[-1172,-1635,1647,-1400,-1357]]},{"type":"Polygon","id":46043,"properties":{"id":"46043","name":"Douglas"},"arcs":[[-1478,-1647,-1636,-1439]]},{"type":"Polygon","id":46053,"properties":{"id":"46053","name":"Gregory"},"arcs":[[-1641,1648,1649,-1520,-1300]]},{"type":"Polygon","id":46047,"properties":{"id":"46047","name":"Fall River"},"arcs":[[-1543,1650,1651,-1611,-1456]]},{"type":"Polygon","id":26121,"properties":{"id":"26121","name":"Muskegon"},"arcs":[[-1513,1652,1653,1654,-1502]]},{"type":"Polygon","id":26117,"properties":{"id":"26117","name":"Montcalm"},"arcs":[[-1505,1655,1656,1657,-1511,-1509]]},{"type":"Polygon","id":56035,"properties":{"id":"56035","name":"Sublette"},"arcs":[[1658,1659,-1144,-1403]]},{"type":"Polygon","id":26057,"properties":{"id":"26057","name":"Gratiot"},"arcs":[[-1499,-1588,1660,1661,-1656,-1504]]},{"type":"Polygon","id":55023,"properties":{"id":"55023","name":"Crawford"},"arcs":[[-1591,1662,1663,-1623,-1533]]},{"type":"Polygon","id":36011,"properties":{"id":"36011","name":"Cayuga"},"arcs":[[1664,1665,1666,1667,1668,1669,-1538]]},{"type":"Polygon","id":36091,"properties":{"id":"36091","name":"Saratoga"},"arcs":[[-1516,1670,1671,1672,1673,1674,-1376,-1519]]},{"type":"Polygon","id":46007,"properties":{"id":"46007","name":"Bennett"},"arcs":[[1675,1676,-1540,-1410]]},{"type":"Polygon","id":46121,"properties":{"id":"46121","name":"Todd"},"arcs":[[-1522,1677,-1676,-1450]]},{"type":"Polygon","id":36073,"properties":{"id":"36073","name":"Orleans"},"arcs":[[1678,1679,1680,1681]]},{"type":"Polygon","id":36063,"properties":{"id":"36063","name":"Niagara"},"arcs":[[-1681,1682,1683,1684]]},{"type":"Polygon","id":36055,"properties":{"id":"36055","name":"Monroe"},"arcs":[[1685,1686,1687,1688,-1679,1689]]},{"type":"Polygon","id":36117,"properties":{"id":"36117","name":"Wayne"},"arcs":[[1690,1691,-1686,1692,-1669]]},{"type":"Polygon","id":26087,"properties":{"id":"26087","name":"Lapeer"},"arcs":[[1693,1694,1695,1696,-1527,-1545]]},{"type":"Polygon","id":56023,"properties":{"id":"56023","name":"Lincoln"},"arcs":[[-1660,1697,1698,1699,1700,1701,-1561,-1145]]},{"type":"Polygon","id":50003,"properties":{"id":"50003","name":"Bennington"},"arcs":[[-1427,1702,1703,1704,1705,-1514,-1453]]},{"type":"Polygon","id":55025,"properties":{"id":"55025","name":"Dane"},"arcs":[[-1560,1706,1707,1708,1709,-1554,-1552]]},{"type":"Polygon","id":26081,"properties":{"id":"26081","name":"Kent"},"arcs":[[1710,1711,1712,1713,-1653,-1512,-1658]]},{"type":"Polygon","id":36035,"properties":{"id":"36035","name":"Fulton"},"arcs":[[-1675,1714,-1387,-1377]]},{"type":"Polygon","id":33015,"properties":{"id":"33015","name":"Rockingham"},"arcs":[[1715,1716,1717,-1576,-1585]]},{"type":"Polygon","id":36067,"properties":{"id":"36067","name":"Onondaga"},"arcs":[[1718,1719,-1665,-1537]]},{"type":"Polygon","id":50025,"properties":{"id":"50025","name":"Windham"},"arcs":[[-1583,1720,1721,-1703,-1426]]},{"type":"Polygon","id":19167,"properties":{"id":"19167","name":"Sioux"},"arcs":[[1722,1723,1724,-1628,-1619]]},{"type":"Polygon","id":19141,"properties":{"id":"19141","name":"O'Brien"},"arcs":[[1725,1726,-1723,-1609]]},{"type":"Polygon","id":19033,"properties":{"id":"19033","name":"Cerro Gordo"},"arcs":[[-1617,1727,1728,1729,-1607]]},{"type":"Polygon","id":19081,"properties":{"id":"19081","name":"Hancock"},"arcs":[[-1730,1730,-1602,-1597]]},{"type":"Polygon","id":19147,"properties":{"id":"19147","name":"Palo Alto"},"arcs":[[-1600,1731,1732,-1606]]},{"type":"Polygon","id":19041,"properties":{"id":"19041","name":"Clay"},"arcs":[[-1733,1733,-1726,-1603]]},{"type":"Polygon","id":26049,"properties":{"id":"26049","name":"Genesee"},"arcs":[[-1697,1734,1735,1736,-1586,-1528]]},{"type":"Polygon","id":19037,"properties":{"id":"19037","name":"Chickasaw"},"arcs":[[-1627,1737,1738,1739,-1622]]},{"type":"Polygon","id":19067,"properties":{"id":"19067","name":"Floyd"},"arcs":[[-1740,1740,-1728,-1616]]},{"type":"Polygon","id":55049,"properties":{"id":"55049","name":"Iowa"},"arcs":[[-1555,-1710,1741,1742,1743,-1589]]},{"type":"Polygon","id":55043,"properties":{"id":"55043","name":"Grant"},"arcs":[[-1744,1744,1745,1746,1747,-1663,-1590]]},{"type":"Polygon","id":33011,"properties":{"id":"33011","name":"Hillsborough"},"arcs":[[-1718,1748,1749,1750,1751,-1581,-1577]]},{"type":"Polygon","id":26139,"properties":{"id":"26139","name":"Ottawa"},"arcs":[[-1714,1752,1753,-1654]]},{"type":"Polygon","id":16063,"properties":{"id":"16063","name":"Lincoln"},"arcs":[[1754,1755,1756,-1451,-1416]]},{"type":"Polygon","id":16047,"properties":{"id":"16047","name":"Gooding"},"arcs":[[-1757,1757,1758,-1383,-1452]]},{"type":"Polygon","id":55055,"properties":{"id":"55055","name":"Jefferson"},"arcs":[[1759,1760,1761,-1707,-1559]]},{"type":"Polygon","id":16067,"properties":{"id":"16067","name":"Minidoka"},"arcs":[[1762,1763,-1755,-1415]]},{"type":"Polygon","id":55133,"properties":{"id":"55133","name":"Waukesha"},"arcs":[[-1595,1764,1765,1766,-1760,-1558]]},{"type":"Polygon","id":55079,"properties":{"id":"55079","name":"Milwaukee"},"arcs":[[1767,1768,-1765,-1593]]},{"type":"Polygon","id":36053,"properties":{"id":"36053","name":"Madison"},"arcs":[[-1574,1769,1770,1771,-1719,-1536]]},{"type":"Polygon","id":33005,"properties":{"id":"33005","name":"Cheshire"},"arcs":[[-1752,1772,1773,-1721,-1582]]},{"type":"Polygon","id":46135,"properties":{"id":"46135","name":"Yankton"},"arcs":[[1774,1775,1776,1777,-1645,-1643]]},{"type":"Polygon","id":46009,"properties":{"id":"46009","name":"Bon Homme"},"arcs":[[-1778,1778,-1638,-1646]]},{"type":"Polygon","id":26155,"properties":{"id":"26155","name":"Shiawassee"},"arcs":[[-1737,1779,1780,1781,-1661,-1587]]},{"type":"Polygon","id":36037,"properties":{"id":"36037","name":"Genesee"},"arcs":[[1782,1783,1784,-1683,-1680,-1689]]},{"type":"Polygon","id":26067,"properties":{"id":"26067","name":"Ionia"},"arcs":[[1785,1786,1787,-1711,-1657]]},{"type":"Polygon","id":26037,"properties":{"id":"26037","name":"Clinton"},"arcs":[[-1782,1788,1789,-1786,-1662]]},{"type":"Polygon","id":16077,"properties":{"id":"16077","name":"Power"},"arcs":[[-1566,1790,1791,1792,-1413]]},{"type":"MultiPolygon","id":36029,"properties":{"id":"36029","name":"Erie"},"arcs":[[[1793]],[[-1785,1794,1795,1796,1797,-1684]]]},{"type":"Polygon","id":46127,"properties":{"id":"46127","name":"Union"},"arcs":[[-1725,1798,1799,1800,1801,1802,-1629]]},{"type":"Polygon","id":46027,"properties":{"id":"46027","name":"Clay"},"arcs":[[-1803,1803,1804,-1775,-1642,-1630]]},{"type":"Polygon","id":19065,"properties":{"id":"19065","name":"Fayette"},"arcs":[[1805,1806,1807,-1738,-1626]]},{"type":"Polygon","id":19043,"properties":{"id":"19043","name":"Clayton"},"arcs":[[-1664,-1748,1808,1809,-1806,-1624]]},{"type":"Polygon","id":36057,"properties":{"id":"36057","name":"Montgomery"},"arcs":[[-1674,1810,1811,1812,-1388,-1715]]},{"type":"Polygon","id":36069,"properties":{"id":"36069","name":"Ontario"},"arcs":[[1813,1814,1815,1816,-1687,-1692]]},{"type":"Polygon","id":16005,"properties":{"id":"16005","name":"Bannock"},"arcs":[[1817,1818,1819,-1791,-1565]]},{"type":"Polygon","id":16029,"properties":{"id":"16029","name":"Caribou"},"arcs":[[-1562,-1702,1820,1821,-1818,-1564]]},{"type":"Polygon","id":36099,"properties":{"id":"36099","name":"Seneca"},"arcs":[[1822,1823,1824,-1814,-1691,-1668]]},{"type":"Polygon","id":31165,"properties":{"id":"31165","name":"Sioux"},"arcs":[[1825,1826,1827,-1612,-1652,1828]]},{"type":"Polygon","id":31161,"properties":{"id":"31161","name":"Sheridan"},"arcs":[[1829,1830,1831,1832,1833,-1541,1834]]},{"type":"Polygon","id":31045,"properties":{"id":"31045","name":"Dawes"},"arcs":[[1835,-1829,-1651,-1542,-1834]]},{"type":"Polygon","id":31015,"properties":{"id":"31015","name":"Boyd"},"arcs":[[1836,1837,1838,-1649,-1640]]},{"type":"Polygon","id":31103,"properties":{"id":"31103","name":"Keya Paha"},"arcs":[[-1839,1839,1840,1841,-1521,-1650]]},{"type":"Polygon","id":31031,"properties":{"id":"31031","name":"Cherry"},"arcs":[[-1678,-1842,1842,1843,1844,1845,1846,-1835,-1677]]},{"type":"Polygon","id":41029,"properties":{"id":"41029","name":"Jackson"},"arcs":[[-1570,1847,1848,-1430]]},{"type":"Polygon","id":36051,"properties":{"id":"36051","name":"Livingston"},"arcs":[[-1817,1849,1850,1851,-1783,-1688]]},{"type":"Polygon","id":36083,"properties":{"id":"36083","name":"Rensselaer"},"arcs":[[-1706,1852,1853,1854,-1671,-1515]]},{"type":"Polygon","id":36093,"properties":{"id":"36093","name":"Schenectady"},"arcs":[[1855,1856,-1811,-1673]]},{"type":"Polygon","id":41015,"properties":{"id":"41015","name":"Curry"},"arcs":[[-1432,1857,1858,1859,-1579]]},{"type":"Polygon","id":16083,"properties":{"id":"16083","name":"Twin Falls"},"arcs":[[1860,1861,1862,-1548,-1384,-1759]]},{"type":"Polygon","id":19149,"properties":{"id":"19149","name":"Plymouth"},"arcs":[[1863,1864,-1799,-1724]]},{"type":"Polygon","id":19021,"properties":{"id":"19021","name":"Buena Vista"},"arcs":[[1865,1866,1867,-1734]]},{"type":"Polygon","id":19035,"properties":{"id":"19035","name":"Cherokee"},"arcs":[[-1868,1868,1869,-1864,-1727]]},{"type":"Polygon","id":19151,"properties":{"id":"19151","name":"Pocahontas"},"arcs":[[1870,1871,1872,-1866,-1732]]},{"type":"Polygon","id":19197,"properties":{"id":"19197","name":"Wright"},"arcs":[[1873,1874,1875,1876,-1731]]},{"type":"Polygon","id":19091,"properties":{"id":"19091","name":"Humboldt"},"arcs":[[-1877,1877,-1871,-1599]]},{"type":"Polygon","id":19069,"properties":{"id":"19069","name":"Franklin"},"arcs":[[1878,1879,-1874,-1729]]},{"type":"Polygon","id":19023,"properties":{"id":"19023","name":"Butler"},"arcs":[[1880,1881,1882,-1879,-1741]]},{"type":"Polygon","id":19017,"properties":{"id":"19017","name":"Bremer"},"arcs":[[-1808,1883,-1881,-1739]]},{"type":"Polygon","id":36077,"properties":{"id":"36077","name":"Otsego"},"arcs":[[-1813,1884,1885,1886,-1770,-1573,-1389]]},{"type":"Polygon","id":31089,"properties":{"id":"31089","name":"Holt"},"arcs":[[1887,1888,1889,1890,1891,1892,-1838]]},{"type":"Polygon","id":26099,"properties":{"id":"26099","name":"Macomb"},"arcs":[[1893,1894,1895,-1695,1896]]},{"type":"Polygon","id":26125,"properties":{"id":"26125","name":"Oakland"},"arcs":[[1897,1898,1899,-1735,-1696,-1896]]},{"type":"Polygon","id":25009,"properties":{"id":"25009","name":"Essex"},"arcs":[[1900,1901,1902,-1749,-1717]]},{"type":"Polygon","id":31107,"properties":{"id":"31107","name":"Knox"},"arcs":[[-1779,-1777,1903,1904,1905,-1888,-1837,-1639]]},{"type":"Polygon","id":31027,"properties":{"id":"31027","name":"Cedar"},"arcs":[[-1805,1906,1907,1908,-1904,-1776]]},{"type":"Polygon","id":36121,"properties":{"id":"36121","name":"Wyoming"},"arcs":[[-1852,1909,1910,-1795,-1784]]},{"type":"Polygon","id":55045,"properties":{"id":"55045","name":"Green"},"arcs":[[1911,1912,1913,1914,-1742,-1709]]},{"type":"Polygon","id":16053,"properties":{"id":"16053","name":"Jerome"},"arcs":[[-1764,1915,-1861,-1758,-1756]]},{"type":"Polygon","id":55105,"properties":{"id":"55105","name":"Rock"},"arcs":[[-1762,1916,1917,1918,-1912,-1708]]},{"type":"Polygon","id":31017,"properties":{"id":"31017","name":"Brown"},"arcs":[[1919,1920,1921,-1843,-1841]]},{"type":"Polygon","id":55127,"properties":{"id":"55127","name":"Walworth"},"arcs":[[-1767,1922,1923,1924,1925,-1917,-1761]]},{"type":"Polygon","id":55101,"properties":{"id":"55101","name":"Racine"},"arcs":[[1926,1927,-1923,-1766,-1769]]},{"type":"Polygon","id":36095,"properties":{"id":"36095","name":"Schoharie"},"arcs":[[-1857,1928,1929,1930,-1885,-1812]]},{"type":"Polygon","id":36001,"properties":{"id":"36001","name":"Albany"},"arcs":[[-1855,1931,-1929,-1856,-1672]]},{"type":"Polygon","id":55065,"properties":{"id":"55065","name":"Lafayette"},"arcs":[[-1915,1932,1933,-1745,-1743]]},{"type":"Polygon","id":31149,"properties":{"id":"31149","name":"Rock"},"arcs":[[1934,-1920,-1840,-1893]]},{"type":"Polygon","id":36023,"properties":{"id":"36023","name":"Cortland"},"arcs":[[1935,1936,-1666,-1720,-1772,1937,1938]]},{"type":"Polygon","id":41033,"properties":{"id":"41033","name":"Josephine"},"arcs":[[-1431,-1849,1939,1940,-1858]]},{"type":"Polygon","id":26093,"properties":{"id":"26093","name":"Livingston"},"arcs":[[-1900,1941,1942,1943,-1780,-1736]]},{"type":"Polygon","id":26065,"properties":{"id":"26065","name":"Ingham"},"arcs":[[-1944,1944,1945,-1789,-1781]]},{"type":"Polygon","id":26045,"properties":{"id":"26045","name":"Eaton"},"arcs":[[-1790,-1946,1946,1947,1948,-1787]]},{"type":"Polygon","id":26015,"properties":{"id":"26015","name":"Barry"},"arcs":[[-1949,1949,1950,1951,-1712,-1788]]},{"type":"Polygon","id":26005,"properties":{"id":"26005","name":"Allegan"},"arcs":[[-1713,-1952,1952,1953,1954,-1753]]},{"type":"Polygon","id":36123,"properties":{"id":"36123","name":"Yates"},"arcs":[[1955,1956,-1815,-1825]]},{"type":"Polygon","id":31051,"properties":{"id":"31051","name":"Dixon"},"arcs":[[-1802,1957,1958,1959,-1907,-1804]]},{"type":"Polygon","id":25003,"properties":{"id":"25003","name":"Berkshire"},"arcs":[[1960,1961,1962,1963,1964,1965,-1853,-1705]]},{"type":"Polygon","id":36017,"properties":{"id":"36017","name":"Chenango"},"arcs":[[-1887,1966,1967,-1938,-1771]]},{"type":"Polygon","id":25011,"properties":{"id":"25011","name":"Franklin"},"arcs":[[1968,-1961,-1704,-1722,-1774,1969]]},{"type":"Polygon","id":25017,"properties":{"id":"25017","name":"Middlesex"},"arcs":[[1970,1971,1972,1973,1974,1975,1976,1977,1978,-1750,-1903]]},{"type":"Polygon","id":25027,"properties":{"id":"25027","name":"Worcester"},"arcs":[[-1751,-1979,1979,1980,1981,1982,1983,1984,-1970,-1773]]},{"type":"Polygon","id":16031,"properties":{"id":"16031","name":"Cassia"},"arcs":[[-1793,1985,1986,1987,-1862,-1916,-1763,-1414]]},{"type":"Polygon","id":19061,"properties":{"id":"19061","name":"Dubuque"},"arcs":[[1988,1989,1990,1991,-1809,-1747]]},{"type":"Polygon","id":55059,"properties":{"id":"55059","name":"Kenosha"},"arcs":[[1992,1993,1994,-1924,-1928]]},{"type":"Polygon","id":19055,"properties":{"id":"19055","name":"Delaware"},"arcs":[[-1992,1995,1996,1997,-1810]]},{"type":"Polygon","id":19187,"properties":{"id":"19187","name":"Webster"},"arcs":[[-1876,1998,1999,2000,2001,-1872,-1878]]},{"type":"Polygon","id":19019,"properties":{"id":"19019","name":"Buchanan"},"arcs":[[-1998,2002,2003,2004,-1807]]},{"type":"Polygon","id":19013,"properties":{"id":"19013","name":"Black Hawk"},"arcs":[[-2005,2005,2006,2007,-1882,-1884]]},{"type":"Polygon","id":36109,"properties":{"id":"36109","name":"Tompkins"},"arcs":[[-1937,2008,2009,2010,-1823,-1667]]},{"type":"Polygon","id":56015,"properties":{"id":"56015","name":"Goshen"},"arcs":[[-1828,2011,2012,2013,2014,-1613]]},{"type":"Polygon","id":56031,"properties":{"id":"56031","name":"Platte"},"arcs":[[-2015,2015,2016,-1632,-1614]]},{"type":"Polygon","id":16007,"properties":{"id":"16007","name":"Bear Lake"},"arcs":[[-1701,2017,2018,-1821]]},{"type":"Polygon","id":36101,"properties":{"id":"36101","name":"Steuben"},"arcs":[[-1816,-1957,2019,2020,2021,2022,2023,-1850]]},{"type":"Polygon","id":36013,"properties":{"id":"36013","name":"Chautauqua"},"arcs":[[2024,2025,2026,2027,-1797]]},{"type":"Polygon","id":19193,"properties":{"id":"19193","name":"Woodbury"},"arcs":[[-1870,2028,2029,2030,2031,-1800,-1865]]},{"type":"Polygon","id":19161,"properties":{"id":"19161","name":"Sac"},"arcs":[[2032,2033,2034,2035,-1867]]},{"type":"Polygon","id":19093,"properties":{"id":"19093","name":"Ida"},"arcs":[[-2036,2036,-2029,-1869]]},{"type":"Polygon","id":19025,"properties":{"id":"19025","name":"Calhoun"},"arcs":[[-2002,2037,2038,-2033,-1873]]},{"type":"Polygon","id":19079,"properties":{"id":"19079","name":"Hamilton"},"arcs":[[2039,2040,2041,-1999,-1875]]},{"type":"Polygon","id":19083,"properties":{"id":"19083","name":"Hardin"},"arcs":[[-1880,2042,2043,2044,-2040]]},{"type":"Polygon","id":19075,"properties":{"id":"19075","name":"Grundy"},"arcs":[[-2008,2045,2046,-2043,-1883]]},{"type":"Polygon","id":25015,"properties":{"id":"25015","name":"Hampshire"},"arcs":[[-1985,2047,-1962,-1969]]},{"type":"Polygon","id":36097,"properties":{"id":"36097","name":"Schuyler"},"arcs":[[-2011,2048,-2020,-1956,-1824]]},{"type":"Polygon","id":36009,"properties":{"id":"36009","name":"Cattaraugus"},"arcs":[[-1911,2049,2050,2051,-2025,-1796]]},{"type":"Polygon","id":31043,"properties":{"id":"31043","name":"Dakota"},"arcs":[[-1801,-2032,2052,-1958]]},{"type":"Polygon","id":36003,"properties":{"id":"36003","name":"Allegany"},"arcs":[[-1851,-2024,2053,2054,-2050,-1910]]},{"type":"Polygon","id":36025,"properties":{"id":"36025","name":"Delaware"},"arcs":[[-1931,2055,2056,2057,2058,2059,-1967,-1886]]},{"type":"Polygon","id":17085,"properties":{"id":"17085","name":"Jo Daviess"},"arcs":[[-1934,2060,2061,2062,-1989,-1746]]},{"type":"Polygon","id":36021,"properties":{"id":"36021","name":"Columbia"},"arcs":[[2063,2064,2065,-1854,-1966]]},{"type":"Polygon","id":17177,"properties":{"id":"17177","name":"Stephenson"},"arcs":[[2066,-2061,-1933,-1914,2067,2068]]},{"type":"Polygon","id":17201,"properties":{"id":"17201","name":"Winnebago"},"arcs":[[2069,2070,-2068,-1913,-1919]]},{"type":"Polygon","id":16071,"properties":{"id":"16071","name":"Oneida"},"arcs":[[-1820,2071,2072,2073,-1986,-1792]]},{"type":"Polygon","id":17111,"properties":{"id":"17111","name":"McHenry"},"arcs":[[2074,2075,2076,2077,2078,-1925,-1995]]},{"type":"Polygon","id":17007,"properties":{"id":"17007","name":"Boone"},"arcs":[[-1926,-2079,2079,-2070,-1918]]},{"type":"Polygon","id":17097,"properties":{"id":"17097","name":"Lake"},"arcs":[[2080,-2075,-1994,2081]]},{"type":"Polygon","id":36039,"properties":{"id":"36039","name":"Greene"},"arcs":[[2082,-2056,-1930,-1932,-2066]]},{"type":"MultiPolygon","id":25025,"properties":{"id":"25025","name":"Suffolk"},"arcs":[[[2083,2084,-1977,-1976,-1975]],[[2085,-1971,-1902]]]},{"type":"Polygon","id":31139,"properties":{"id":"31139","name":"Pierce"},"arcs":[[2086,2087,2088,-1905,-1909]]},{"type":"Polygon","id":31013,"properties":{"id":"31013","name":"Box Butte"},"arcs":[[2089,2090,-1826,-1836,-1833]]},{"type":"Polygon","id":31003,"properties":{"id":"31003","name":"Antelope"},"arcs":[[-2089,2091,2092,2093,-1889,-1906]]},{"type":"Polygon","id":26161,"properties":{"id":"26161","name":"Washtenaw"},"arcs":[[2094,2095,2096,-1942,-1899,2097]]},{"type":"Polygon","id":56007,"properties":{"id":"56007","name":"Carbon"},"arcs":[[-1634,2098,2099,2100,2101,2102,-1401,-1648]]},{"type":"Polygon","id":56001,"properties":{"id":"56001","name":"Albany"},"arcs":[[-2017,2103,2104,2105,-2099,-1633]]},{"type":"Polygon","id":16041,"properties":{"id":"16041","name":"Franklin"},"arcs":[[-2019,2106,-2072,-1819,-1822]]},{"type":"Polygon","id":26075,"properties":{"id":"26075","name":"Jackson"},"arcs":[[-1943,-2097,2107,2108,2109,-1947,-1945]]},{"type":"Polygon","id":26025,"properties":{"id":"26025","name":"Calhoun"},"arcs":[[-2110,2110,2111,2112,-1950,-1948]]},{"type":"Polygon","id":26159,"properties":{"id":"26159","name":"Van Buren"},"arcs":[[2113,2114,2115,2116,-1954]]},{"type":"Polygon","id":26077,"properties":{"id":"26077","name":"Kalamazoo"},"arcs":[[-2113,2117,-2114,-1953,-1951]]},{"type":"Polygon","id":36007,"properties":{"id":"36007","name":"Broome"},"arcs":[[-2060,2118,2119,2120,-1939,-1968]]},{"type":"Polygon","id":36107,"properties":{"id":"36107","name":"Tioga"},"arcs":[[-2121,2121,2122,2123,-2009,-1936]]},{"type":"Polygon","id":19097,"properties":{"id":"19097","name":"Jackson"},"arcs":[[-2063,2124,2125,2126,-1990]]},{"type":"Polygon","id":31179,"properties":{"id":"31179","name":"Wayne"},"arcs":[[-1960,2127,2128,2129,-2087,-1908]]},{"type":"MultiPolygon","id":25021,"properties":{"id":"25021","name":"Norfolk"},"arcs":[[[2130,-2131,2131]],[[-2085,2132,2133,2134,2135,-1980,-1978]]]},{"type":"Polygon","id":25013,"properties":{"id":"25013","name":"Hampden"},"arcs":[[-1984,2136,2137,2138,-1963,-2048]]},{"type":"Polygon","id":25023,"properties":{"id":"25023","name":"Plymouth"},"arcs":[[2130,2139,2140,2141,2142,-2134,2143]]},{"type":"Polygon","id":19011,"properties":{"id":"19011","name":"Benton"},"arcs":[[2144,2145,2146,-2006,-2004]]},{"type":"Polygon","id":19113,"properties":{"id":"19113","name":"Linn"},"arcs":[[-1997,2147,2148,2149,-2145,-2003]]},{"type":"Polygon","id":19171,"properties":{"id":"19171","name":"Tama"},"arcs":[[-2147,2150,2151,-2046,-2007]]},{"type":"Polygon","id":19105,"properties":{"id":"19105","name":"Jones"},"arcs":[[-1991,-2127,2152,2153,-2148,-1996]]},{"type":"Polygon","id":36015,"properties":{"id":"36015","name":"Chemung"},"arcs":[[-2010,-2124,2154,2155,-2021,-2049]]},{"type":"Polygon","id":31173,"properties":{"id":"31173","name":"Thurston"},"arcs":[[-2031,2156,2157,2158,-2128,-1959,-2053]]},{"type":"Polygon","id":56037,"properties":{"id":"56037","name":"Sweetwater"},"arcs":[[-1402,-2103,2159,2160,2161,2162,-1698,-1659]]},{"type":"Polygon","id":42049,"properties":{"id":"42049","name":"Erie"},"arcs":[[2163,2164,2165,2166,-2027]]},{"type":"Polygon","id":26021,"properties":{"id":"26021","name":"Berrien"},"arcs":[[2167,2168,2169,2170,-2116]]},{"type":"Polygon","id":19133,"properties":{"id":"19133","name":"Monona"},"arcs":[[2171,2172,2173,-2157,-2030]]},{"type":"Polygon","id":19127,"properties":{"id":"19127","name":"Marshall"},"arcs":[[-2152,2174,2175,-2044,-2047]]},{"type":"Polygon","id":19027,"properties":{"id":"19027","name":"Carroll"},"arcs":[[-2039,2176,2177,2178,2179,-2034]]},{"type":"Polygon","id":19047,"properties":{"id":"19047","name":"Crawford"},"arcs":[[-2037,-2035,-2180,2180,2181,-2172]]},{"type":"Polygon","id":19015,"properties":{"id":"19015","name":"Boone"},"arcs":[[-2042,2182,2183,2184,2185,-2000]]},{"type":"Polygon","id":19073,"properties":{"id":"19073","name":"Greene"},"arcs":[[-2186,2186,2187,-2177,-2038,-2001]]},{"type":"Polygon","id":19169,"properties":{"id":"19169","name":"Story"},"arcs":[[-2045,-2176,2188,2189,-2183,-2041]]},{"type":"Polygon","id":17141,"properties":{"id":"17141","name":"Ogle"},"arcs":[[2190,2191,2192,2193,-2069,-2071]]},{"type":"Polygon","id":17015,"properties":{"id":"17015","name":"Carroll"},"arcs":[[-2194,2194,2195,-2125,-2062,-2067]]},{"type":"Polygon","id":36111,"properties":{"id":"36111","name":"Ulster"},"arcs":[[-2065,2196,2197,2198,-2057,-2083]]},{"type":"Polygon","id":17031,"properties":{"id":"17031","name":"Cook"},"arcs":[[-2081,2199,2200,2201,2202,2203,-2076]]},{"type":"Polygon","id":17037,"properties":{"id":"17037","name":"DeKalb"},"arcs":[[2204,2205,2206,2207,-2191,-2080,-2078]]},{"type":"Polygon","id":17089,"properties":{"id":"17089","name":"Kane"},"arcs":[[-2204,2208,2209,-2205,-2077]]},{"type":"Polygon","id":31075,"properties":{"id":"31075","name":"Grant"},"arcs":[[2210,2211,2212,-1830,-1847]]},{"type":"Polygon","id":25005,"properties":{"id":"25005","name":"Bristol"},"arcs":[[2213,2214,2215,2216,2217,-2135,-2143]]},{"type":"Polygon","id":31091,"properties":{"id":"31091","name":"Hooker"},"arcs":[[2218,2219,2220,-2211,-1846]]},{"type":"Polygon","id":31039,"properties":{"id":"31039","name":"Cuming"},"arcs":[[-2159,2221,2222,2223,2224,-2129]]},{"type":"Polygon","id":31119,"properties":{"id":"31119","name":"Madison"},"arcs":[[2225,2226,2227,-2092,-2088]]},{"type":"Polygon","id":31167,"properties":{"id":"31167","name":"Stanton"},"arcs":[[-2225,2228,2229,-2226,-2130]]},{"type":"Polygon","id":31171,"properties":{"id":"31171","name":"Thomas"},"arcs":[[2230,2231,2232,-2219,-1845]]},{"type":"Polygon","id":31183,"properties":{"id":"31183","name":"Wheeler"},"arcs":[[2233,2234,2235,2236,-1890,-2094]]},{"type":"Polygon","id":31009,"properties":{"id":"31009","name":"Blaine"},"arcs":[[-1844,-1922,2237,2238,2239,-2231]]},{"type":"Polygon","id":31115,"properties":{"id":"31115","name":"Loup"},"arcs":[[2240,2241,-2238,-1921,-1935,-1892]]},{"type":"Polygon","id":31071,"properties":{"id":"31071","name":"Garfield"},"arcs":[[-2237,2242,2243,-2241,-1891]]},{"type":"Polygon","id":26091,"properties":{"id":"26091","name":"Lenawee"},"arcs":[[2244,2245,2246,2247,-2108,-2096]]},{"type":"Polygon","id":36027,"properties":{"id":"36027","name":"Dutchess"},"arcs":[[-1965,2248,2249,2250,2251,-2197,-2064]]},{"type":"Polygon","id":25001,"properties":{"id":"25001","name":"Barnstable"},"arcs":[[-2141,2252]]},{"type":"Polygon","id":26023,"properties":{"id":"26023","name":"Branch"},"arcs":[[2253,2254,2255,2256,-2112]]},{"type":"Polygon","id":26059,"properties":{"id":"26059","name":"Hillsdale"},"arcs":[[-2248,2257,2258,2259,-2254,-2111,-2109]]},{"type":"Polygon","id":26149,"properties":{"id":"26149","name":"St. Joseph"},"arcs":[[-2257,2260,2261,2262,-2118]]},{"type":"Polygon","id":26027,"properties":{"id":"26027","name":"Cass"},"arcs":[[-2263,2263,2264,-2168,-2115]]},{"type":"Polygon","id":9005,"properties":{"id":"9005","name":"Litchfield"},"arcs":[[-2139,2265,2266,2267,-2249,-1964]]},{"type":"Polygon","id":31021,"properties":{"id":"31021","name":"Burt"},"arcs":[[2268,2269,2270,-2222,-2158,-2174]]},{"type":"Polygon","id":9003,"properties":{"id":"9003","name":"Hartford"},"arcs":[[2271,2272,2273,2274,-2266,-2138]]},{"type":"Polygon","id":9013,"properties":{"id":"9013","name":"Tolland"},"arcs":[[-1983,2275,2276,-2272,-2137]]},{"type":"Polygon","id":19045,"properties":{"id":"19045","name":"Clinton"},"arcs":[[-2196,2277,2278,2279,2280,-2153,-2126]]},{"type":"Polygon","id":9015,"properties":{"id":"9015","name":"Windham"},"arcs":[[2281,2282,2283,-2276,-1982]]},{"type":"Polygon","id":44007,"properties":{"id":"44007","name":"Providence"},"arcs":[[-2218,2284,2285,2286,-2282,-1981,-2136]]},{"type":"Polygon","id":36105,"properties":{"id":"36105","name":"Sullivan"},"arcs":[[2287,2288,2289,-2058,-2199]]},{"type":"Polygon","id":6093,"properties":{"id":"6093","name":"Siskiyou"},"arcs":[[-1569,2290,2291,2292,2293,2294,-1940,-1848]]},{"type":"Polygon","id":31069,"properties":{"id":"31069","name":"Garden"},"arcs":[[-2213,2295,2296,2297,2298,2299,-1831]]},{"type":"Polygon","id":31123,"properties":{"id":"31123","name":"Morrill"},"arcs":[[-2300,2300,2301,2302,-2090,-1832]]},{"type":"Polygon","id":49005,"properties":{"id":"49005","name":"Cache"},"arcs":[[2303,2304,2305,-2073,-2107]]},{"type":"Polygon","id":31157,"properties":{"id":"31157","name":"Scotts Bluff"},"arcs":[[-2303,2306,-2012,-1827,-2091]]},{"type":"Polygon","id":49033,"properties":{"id":"49033","name":"Rich"},"arcs":[[-1700,2307,2308,2309,2310,-2304,-2018]]},{"type":"Polygon","id":42015,"properties":{"id":"42015","name":"Bradford"},"arcs":[[-2155,-2123,2311,2312,2313,2314,2315]]},{"type":"Polygon","id":42117,"properties":{"id":"42117","name":"Tioga"},"arcs":[[-2156,-2316,2316,2317,-2022]]},{"type":"Polygon","id":49003,"properties":{"id":"49003","name":"Box Elder"},"arcs":[[2318,2319,2320,-1987,-2074,-2306]]},{"type":"Polygon","id":32013,"properties":{"id":"32013","name":"Humboldt"},"arcs":[[2321,2322,2323,-1397,-1236,-1550,2324]]},{"type":"Polygon","id":32007,"properties":{"id":"32007","name":"Elko"},"arcs":[[-1988,-2321,2325,2326,2327,2328,-2325,-1549,-1863]]},{"type":"Polygon","id":42083,"properties":{"id":"42083","name":"McKean"},"arcs":[[-2055,2329,2330,2331,2332,-2051]]},{"type":"Polygon","id":42105,"properties":{"id":"42105","name":"Potter"},"arcs":[[-2023,-2318,2333,2334,2335,-2330,-2054]]},{"type":"Polygon","id":6015,"properties":{"id":"6015","name":"Del Norte"},"arcs":[[-2295,2336,2337,-1859,-1941]]},{"type":"Polygon","id":42127,"properties":{"id":"42127","name":"Wayne"},"arcs":[[-2059,-2290,2338,2339,2340,2341,-2119]]},{"type":"Polygon","id":42115,"properties":{"id":"42115","name":"Susquehanna"},"arcs":[[2342,2343,-2312,-2122,-2120,-2342]]},{"type":"Polygon","id":42123,"properties":{"id":"42123","name":"Warren"},"arcs":[[-2333,2344,2345,2346,-2164,-2026,-2052]]},{"type":"Polygon","id":6049,"properties":{"id":"6049","name":"Modoc"},"arcs":[[-1572,2347,2348,2349,-2291,-1568]]},{"type":"Polygon","id":32031,"properties":{"id":"32031","name":"Washoe"},"arcs":[[2350,2351,2352,2353,2354,2355,2356,2357,2358,-2348,-1571,-1398,-2324]]},{"type":"Polygon","id":17043,"properties":{"id":"17043","name":"DuPage"},"arcs":[[2359,2360,-2209,-2203]]},{"type":"Polygon","id":39007,"properties":{"id":"39007","name":"Ashtabula"},"arcs":[[2361,2362,2363,2364,2365,-2166]]},{"type":"Polygon","id":19031,"properties":{"id":"19031","name":"Cedar"},"arcs":[[-2154,-2281,2366,2367,2368,-2149]]},{"type":"Polygon","id":17195,"properties":{"id":"17195","name":"Whiteside"},"arcs":[[-2193,2369,2370,2371,2372,-2278,-2195]]},{"type":"Polygon","id":31011,"properties":{"id":"31011","name":"Boone"},"arcs":[[-2228,2373,2374,2375,-2234,-2093]]},{"type":"Polygon","id":17103,"properties":{"id":"17103","name":"Lee"},"arcs":[[-2208,2376,2377,-2370,-2192]]},{"type":"Polygon","id":19085,"properties":{"id":"19085","name":"Harrison"},"arcs":[[-2182,2378,2379,2380,-2269,-2173]]},{"type":"Polygon","id":19095,"properties":{"id":"19095","name":"Iowa"},"arcs":[[2381,2382,2383,2384,-2146]]},{"type":"Polygon","id":19049,"properties":{"id":"19049","name":"Dallas"},"arcs":[[2385,2386,2387,-2187,-2185]]},{"type":"Polygon","id":19165,"properties":{"id":"19165","name":"Shelby"},"arcs":[[2388,2389,2390,-2379,-2181]]},{"type":"Polygon","id":19009,"properties":{"id":"19009","name":"Audubon"},"arcs":[[2391,2392,-2389,-2179]]},{"type":"Polygon","id":19157,"properties":{"id":"19157","name":"Poweshiek"},"arcs":[[-2385,2393,2394,2395,-2151]]},{"type":"Polygon","id":19153,"properties":{"id":"19153","name":"Polk"},"arcs":[[-2190,2396,2397,2398,-2386,-2184]]},{"type":"Polygon","id":19099,"properties":{"id":"19099","name":"Jasper"},"arcs":[[-2175,-2396,2399,2400,-2397,-2189]]},{"type":"Polygon","id":19077,"properties":{"id":"19077","name":"Guthrie"},"arcs":[[-2388,2401,-2392,-2178,-2188]]},{"type":"Polygon","id":19103,"properties":{"id":"19103","name":"Johnson"},"arcs":[[-2369,2402,2403,2404,-2382,-2150]]},{"type":"Polygon","id":39085,"properties":{"id":"39085","name":"Lake"},"arcs":[[2405,2406,2407,-2365]]},{"type":"Polygon","id":42039,"properties":{"id":"42039","name":"Crawford"},"arcs":[[-2347,2408,2409,2410,-2362,-2165]]},{"type":"Polygon","id":17161,"properties":{"id":"17161","name":"Rock Island"},"arcs":[[2411,2412,2413,2414,2415,-2279,-2373]]},{"type":"Polygon","id":44001,"properties":{"id":"44001","name":"Bristol"},"arcs":[[2416,-2285,-2217]]},{"type":"Polygon","id":19163,"properties":{"id":"19163","name":"Scott"},"arcs":[[-2416,2417,-2367,-2280]]},{"type":"Polygon","id":44003,"properties":{"id":"44003","name":"Kent"},"arcs":[[2418,2419,2420,-2283,-2287]]},{"type":"Polygon","id":18039,"properties":{"id":"18039","name":"Elkhart"},"arcs":[[2421,2422,2423,2424,2425,-2264,-2262]]},{"type":"Polygon","id":18141,"properties":{"id":"18141","name":"St. Joseph"},"arcs":[[2426,2427,2428,-2169,-2265,-2426]]},{"type":"Polygon","id":18091,"properties":{"id":"18091","name":"La Porte"},"arcs":[[2429,2430,2431,-2170,-2429]]},{"type":"Polygon","id":18151,"properties":{"id":"18151","name":"Steuben"},"arcs":[[2432,2433,-2255,-2260,2434]]},{"type":"Polygon","id":18087,"properties":{"id":"18087","name":"Lagrange"},"arcs":[[2435,-2422,-2261,-2256,-2434]]},{"type":"Polygon","id":31037,"properties":{"id":"31037","name":"Colfax"},"arcs":[[-2224,2436,2437,2438,-2229]]},{"type":"Polygon","id":31141,"properties":{"id":"31141","name":"Platte"},"arcs":[[-2439,2439,2440,2441,2442,-2374,-2227,-2230]]},{"type":"Polygon","id":31053,"properties":{"id":"31053","name":"Dodge"},"arcs":[[-2271,2443,2444,2445,2446,-2437,-2223]]},{"type":"Polygon","id":31117,"properties":{"id":"31117","name":"McPherson"},"arcs":[[-2233,2447,2448,2449,2450,-2220]]},{"type":"Polygon","id":31005,"properties":{"id":"31005","name":"Arthur"},"arcs":[[-2451,2451,-2296,-2212,-2221]]},{"type":"Polygon","id":31077,"properties":{"id":"31077","name":"Greeley"},"arcs":[[2452,2453,2454,2455,-2235,-2376]]},{"type":"Polygon","id":31041,"properties":{"id":"31041","name":"Custer"},"arcs":[[-2244,2456,2457,2458,2459,2460,2461,-2239,-2242]]},{"type":"Polygon","id":31113,"properties":{"id":"31113","name":"Logan"},"arcs":[[-2240,-2462,2462,-2448,-2232]]},{"type":"Polygon","id":31175,"properties":{"id":"31175","name":"Valley"},"arcs":[[-2236,-2456,2463,-2457,-2243]]},{"type":"Polygon","id":39095,"properties":{"id":"39095","name":"Lucas"},"arcs":[[2464,2465,2466,2467,-2246,2468,2469,2470,2471,2472,2473]]},{"type":"Polygon","id":17197,"properties":{"id":"17197","name":"Will"},"arcs":[[-2202,2474,2475,2476,2477,-2360]]},{"type":"Polygon","id":39123,"properties":{"id":"39123","name":"Ottawa"},"arcs":[[2478,2479,2480,2481,2482,-2465]]},{"type":"Polygon","id":17093,"properties":{"id":"17093","name":"Kendall"},"arcs":[[-2478,2483,2484,-2206,-2210,-2361]]},{"type":"Polygon","id":39051,"properties":{"id":"39051","name":"Fulton"},"arcs":[[2485,2486,-2258,-2247,-2468]]},{"type":"Polygon","id":39055,"properties":{"id":"39055","name":"Geauga"},"arcs":[[2487,2488,2489,-2406,-2364]]},{"type":"Polygon","id":9011,"properties":{"id":"9011","name":"New London"},"arcs":[[-2421,2490,2491,2492,-2273,-2277,-2284]]},{"type":"Polygon","id":18089,"properties":{"id":"18089","name":"Lake"},"arcs":[[2493,2494,2495,2496,-2475,-2201,2497]]},{"type":"Polygon","id":18127,"properties":{"id":"18127","name":"Porter"},"arcs":[[2498,-2494,2499,-2431]]},{"type":"Polygon","id":39171,"properties":{"id":"39171","name":"Williams"},"arcs":[[2500,2501,2502,-2435,-2259,-2487]]},{"type":"Polygon","id":31007,"properties":{"id":"31007","name":"Banner"},"arcs":[[-2302,2503,2504,2505,-2013,-2307]]},{"type":"Polygon","id":31177,"properties":{"id":"31177","name":"Washington"},"arcs":[[-2381,2506,2507,-2444,-2270]]},{"type":"MultiPolygon","id":44005,"properties":{"id":"44005","name":"Newport"},"arcs":[[[2508]],[[2509,-2215]]]},{"type":"Polygon","id":9001,"properties":{"id":"9001","name":"Fairfield"},"arcs":[[2510,2511,2512,2513,-2250,-2268]]},{"type":"Polygon","id":56021,"properties":{"id":"56021","name":"Laramie"},"arcs":[[-2014,-2506,2514,2515,2516,-2104,-2016]]},{"type":"Polygon","id":44009,"properties":{"id":"44009","name":"Washington"},"arcs":[[-2491,-2420,2517]]},{"type":"Polygon","id":42131,"properties":{"id":"42131","name":"Wyoming"},"arcs":[[-2344,2518,2519,2520,-2313]]},{"type":"MultiPolygon","id":9007,"properties":{"id":"9007","name":"Middlesex"},"arcs":[[[2521,-2522,2522]],[[-2493,2523,2524,-2274]]]},{"type":"Polygon","id":9009,"properties":{"id":"9009","name":"New Haven"},"arcs":[[-2525,2525,-2522,2526,-2511,-2267,-2275]]},{"type":"Polygon","id":42069,"properties":{"id":"42069","name":"Lackawanna"},"arcs":[[-2341,2527,2528,-2519,-2343]]},{"type":"Polygon","id":36071,"properties":{"id":"36071","name":"Orange"},"arcs":[[-2252,2529,2530,2531,2532,2533,-2288,-2198]]},{"type":"Polygon","id":17099,"properties":{"id":"17099","name":"La Salle"},"arcs":[[-2485,2534,2535,2536,2537,2538,2539,-2377,-2207]]},{"type":"Polygon","id":39035,"properties":{"id":"39035","name":"Cuyahoga"},"arcs":[[-2490,2540,2541,2542,2543,2544,-2407]]},{"type":"Polygon","id":42047,"properties":{"id":"42047","name":"Elk"},"arcs":[[2545,2546,2547,2548,-2332]]},{"type":"Polygon","id":42053,"properties":{"id":"42053","name":"Forest"},"arcs":[[-2549,2549,2550,2551,-2345]]},{"type":"Polygon","id":42121,"properties":{"id":"42121","name":"Venango"},"arcs":[[2552,2553,2554,-2409,-2346,-2552]]},{"type":"Polygon","id":39043,"properties":{"id":"39043","name":"Erie"},"arcs":[[2555,2556,2557,2558]]},{"type":"Polygon","id":39173,"properties":{"id":"39173","name":"Wood"},"arcs":[[-2483,2559,2560,2561,2562,-2466]]},{"type":"Polygon","id":42023,"properties":{"id":"42023","name":"Cameron"},"arcs":[[-2336,2563,2564,-2546,-2331]]},{"type":"Polygon","id":42103,"properties":{"id":"42103","name":"Pike"},"arcs":[[-2534,2565,2566,-2339,-2289]]},{"type":"Polygon","id":19139,"properties":{"id":"19139","name":"Muscatine"},"arcs":[[-2368,-2418,-2415,2567,-2403]]},{"type":"Polygon","id":42081,"properties":{"id":"42081","name":"Lycoming"},"arcs":[[2568,2569,2570,2571,2572,2573,-2334,-2317,-2315]]},{"type":"Polygon","id":42113,"properties":{"id":"42113","name":"Sullivan"},"arcs":[[-2569,-2314,-2521,2574,2575]]},{"type":"Polygon","id":17011,"properties":{"id":"17011","name":"Bureau"},"arcs":[[-2540,2576,2577,2578,2579,-2371,-2378]]},{"type":"Polygon","id":17073,"properties":{"id":"17073","name":"Henry"},"arcs":[[-2580,2580,2581,2582,-2412,-2372]]},{"type":"Polygon","id":56041,"properties":{"id":"56041","name":"Uinta"},"arcs":[[-2163,2583,-2308,-1699]]},{"type":"Polygon","id":18033,"properties":{"id":"18033","name":"De Kalb"},"arcs":[[2584,2585,2586,-2433,-2503]]},{"type":"Polygon","id":18113,"properties":{"id":"18113","name":"Noble"},"arcs":[[-2587,2587,2588,2589,-2423,-2436]]},{"type":"Polygon","id":31125,"properties":{"id":"31125","name":"Nance"},"arcs":[[2590,2591,-2453,-2375,-2443]]},{"type":"Polygon","id":36079,"properties":{"id":"36079","name":"Putnam"},"arcs":[[2592,2593,-2530,-2251,-2514,2594]]},{"type":"Polygon","id":25007,"properties":{"id":"25007","name":"Dukes"},"arcs":[[2595]]},{"type":"Polygon","id":39093,"properties":{"id":"39093","name":"Lorain"},"arcs":[[-2544,2596,2597,2598,-2556,2599]]},{"type":"Polygon","id":19183,"properties":{"id":"19183","name":"Washington"},"arcs":[[2600,2601,2602,2603,-2383,-2405]]},{"type":"Polygon","id":19181,"properties":{"id":"19181","name":"Warren"},"arcs":[[2604,2605,2606,2607,-2399]]},{"type":"Polygon","id":19107,"properties":{"id":"19107","name":"Keokuk"},"arcs":[[-2604,2608,2609,2610,-2394,-2384]]},{"type":"Polygon","id":19121,"properties":{"id":"19121","name":"Madison"},"arcs":[[2611,2612,2613,-2387,-2608]]},{"type":"Polygon","id":19123,"properties":{"id":"19123","name":"Mahaska"},"arcs":[[-2611,2614,2615,2616,-2400,-2395]]},{"type":"Polygon","id":19125,"properties":{"id":"19125","name":"Marion"},"arcs":[[-2617,2617,2618,-2605,-2398,-2401]]},{"type":"Polygon","id":19155,"properties":{"id":"19155","name":"Pottawattamie"},"arcs":[[-2391,2619,2620,2621,2622,2623,-2507,-2380]]},{"type":"Polygon","id":19029,"properties":{"id":"19029","name":"Cass"},"arcs":[[-2393,2624,2625,2626,-2620,-2390]]},{"type":"Polygon","id":19001,"properties":{"id":"19001","name":"Adair"},"arcs":[[-2402,-2614,2627,2628,-2625]]},{"type":"Polygon","id":39155,"properties":{"id":"39155","name":"Trumbull"},"arcs":[[-2411,2629,2630,2631,-2488,-2363]]},{"type":"MultiPolygon","id":39143,"properties":{"id":"39143","name":"Sandusky"},"arcs":[[[2632,-2558,2633,2634,-2560,-2482]]]},{"type":"Polygon","id":42085,"properties":{"id":"42085","name":"Mercer"},"arcs":[[-2555,2635,2636,2637,-2630,-2410]]},{"type":"Polygon","id":39069,"properties":{"id":"39069","name":"Henry"},"arcs":[[-2467,-2563,2638,2639,-2501,-2486]]},{"type":"Polygon","id":18099,"properties":{"id":"18099","name":"Marshall"},"arcs":[[-2425,2640,2641,2642,-2427]]},{"type":"Polygon","id":42035,"properties":{"id":"42035","name":"Clinton"},"arcs":[[-2574,2643,2644,2645,-2564,-2335]]},{"type":"Polygon","id":6023,"properties":{"id":"6023","name":"Humboldt"},"arcs":[[-2294,2646,2647,2648,-2337]]},{"type":"Polygon","id":17063,"properties":{"id":"17063","name":"Grundy"},"arcs":[[2649,2650,-2535,-2484,-2477]]},{"type":"Polygon","id":31023,"properties":{"id":"31023","name":"Butler"},"arcs":[[-2447,2651,2652,2653,2654,-2440,-2438]]},{"type":"Polygon","id":31155,"properties":{"id":"31155","name":"Saunders"},"arcs":[[2655,2656,2657,2658,-2652,-2446]]},{"type":"Polygon","id":18085,"properties":{"id":"18085","name":"Kosciusko"},"arcs":[[-2590,2659,2660,2661,-2641,-2424]]},{"type":"Polygon","id":31033,"properties":{"id":"31033","name":"Cheyenne"},"arcs":[[-2299,2662,2663,2664,2665,-2504,-2301]]},{"type":"Polygon","id":42031,"properties":{"id":"42031","name":"Clarion"},"arcs":[[2666,2667,2668,-2553,-2551]]},{"type":"Polygon","id":49057,"properties":{"id":"49057","name":"Weber"},"arcs":[[-2305,-2311,2669,2670,-2319]]},{"type":"Polygon","id":18149,"properties":{"id":"18149","name":"Starke"},"arcs":[[-2643,2671,2672,-2430,-2428]]},{"type":"Polygon","id":42079,"properties":{"id":"42079","name":"Luzerne"},"arcs":[[2673,2674,2675,2676,-2575,-2520,-2529]]},{"type":"Polygon","id":39039,"properties":{"id":"39039","name":"Defiance"},"arcs":[[2677,2678,2679,-2585,-2502,-2640]]},{"type":"Polygon","id":19115,"properties":{"id":"19115","name":"Louisa"},"arcs":[[-2568,-2414,2680,2681,2682,-2601,-2404]]},{"type":"Polygon","id":31101,"properties":{"id":"31101","name":"Keith"},"arcs":[[2683,2684,2685,-2297,-2452,-2450]]},{"type":"Polygon","id":31111,"properties":{"id":"31111","name":"Lincoln"},"arcs":[[-2463,-2461,2686,2687,2688,2689,-2684,-2449]]},{"type":"Polygon","id":25019,"properties":{"id":"25019","name":"Nantucket"},"arcs":[[2690]]},{"type":"Polygon","id":31143,"properties":{"id":"31143","name":"Polk"},"arcs":[[2691,2692,2693,-2441,-2655]]},{"type":"Polygon","id":31105,"properties":{"id":"31105","name":"Kimball"},"arcs":[[-2666,2694,2695,-2515,-2505]]},{"type":"Polygon","id":31121,"properties":{"id":"31121","name":"Merrick"},"arcs":[[-2694,2696,2697,2698,-2591,-2442]]},{"type":"Polygon","id":31093,"properties":{"id":"31093","name":"Howard"},"arcs":[[-2592,-2699,2699,2700,2701,-2454]]},{"type":"Polygon","id":31163,"properties":{"id":"31163","name":"Sherman"},"arcs":[[-2455,-2702,2702,-2458,-2464]]},{"type":"Polygon","id":31055,"properties":{"id":"31055","name":"Douglas"},"arcs":[[-2508,-2624,2703,-2656,-2445]]},{"type":"Polygon","id":49029,"properties":{"id":"49029","name":"Morgan"},"arcs":[[2704,2705,2706,-2670,-2310]]},{"type":"Polygon","id":42065,"properties":{"id":"42065","name":"Jefferson"},"arcs":[[2707,2708,2709,-2667,-2550,-2548]]},{"type":"Polygon","id":6105,"properties":{"id":"6105","name":"Trinity"},"arcs":[[2710,2711,2712,-2647,-2293]]},{"type":"Polygon","id":36119,"properties":{"id":"36119","name":"Westchester"},"arcs":[[2713,2714,-2595,-2513,2715]]},{"type":"Polygon","id":34037,"properties":{"id":"34037","name":"Sussex"},"arcs":[[2716,2717,2718,2719,-2566,-2533]]},{"type":"Polygon","id":39153,"properties":{"id":"39153","name":"Summit"},"arcs":[[2720,2721,2722,2723,-2542]]},{"type":"Polygon","id":39133,"properties":{"id":"39133","name":"Portage"},"arcs":[[-2632,2724,2725,-2721,-2541,-2489]]},{"type":"Polygon","id":17131,"properties":{"id":"17131","name":"Mercer"},"arcs":[[-2583,2726,2727,2728,2729,-2681,-2413]]},{"type":"Polygon","id":17155,"properties":{"id":"17155","name":"Putnam"},"arcs":[[-2539,2730,-2577]]},{"type":"Polygon","id":36087,"properties":{"id":"36087","name":"Rockland"},"arcs":[[2731,2732,-2531,-2594,2733]]},{"type":"Polygon","id":42037,"properties":{"id":"42037","name":"Columbia"},"arcs":[[2734,2735,2736,-2570,-2576,-2677]]},{"type":"Polygon","id":17091,"properties":{"id":"17091","name":"Kankakee"},"arcs":[[-2497,2737,2738,2739,2740,-2650,-2476]]},{"type":"Polygon","id":18183,"properties":{"id":"18183","name":"Whitley"},"arcs":[[2741,2742,2743,-2660,-2589]]},{"type":"MultiPolygon","id":36103,"properties":{"id":"36103","name":"Suffolk"},"arcs":[[[2744,2745]]]},{"type":"Polygon","id":39077,"properties":{"id":"39077","name":"Huron"},"arcs":[[-2599,2746,2747,2748,2749,-2634,-2557]]},{"type":"Polygon","id":18073,"properties":{"id":"18073","name":"Jasper"},"arcs":[[-2673,2750,2751,2752,2753,-2495,-2499]]},{"type":"Polygon","id":39103,"properties":{"id":"39103","name":"Medina"},"arcs":[[-2724,2754,2755,-2597,-2543]]},{"type":"Polygon","id":18003,"properties":{"id":"18003","name":"Allen"},"arcs":[[2756,2757,2758,2759,2760,-2742,-2588,-2586,-2680]]},{"type":"Polygon","id":39147,"properties":{"id":"39147","name":"Seneca"},"arcs":[[-2750,2761,2762,2763,-2561,-2635]]},{"type":"Polygon","id":42033,"properties":{"id":"42033","name":"Clearfield"},"arcs":[[2764,2765,2766,2767,-2708,-2547,-2565,-2646]]},{"type":"Polygon","id":49043,"properties":{"id":"49043","name":"Summit"},"arcs":[[-2584,-2162,2768,2769,2770,2771,-2705,-2309]]},{"type":"Polygon","id":42027,"properties":{"id":"42027","name":"Centre"},"arcs":[[2772,2773,2774,2775,-2765,-2645]]},{"type":"Polygon","id":42089,"properties":{"id":"42089","name":"Monroe"},"arcs":[[-2720,2776,2777,2778,-2674,-2528,-2340,-2567]]},{"type":"Polygon","id":39125,"properties":{"id":"39125","name":"Paulding"},"arcs":[[2779,2780,-2757,-2679]]},{"type":"Polygon","id":17175,"properties":{"id":"17175","name":"Stark"},"arcs":[[-2579,2781,2782,2783,-2581]]},{"type":"Polygon","id":31049,"properties":{"id":"31049","name":"Deuel"},"arcs":[[-2686,2784,2785,-2663,-2298]]},{"type":"Polygon","id":18111,"properties":{"id":"18111","name":"Newton"},"arcs":[[2786,2787,-2738,-2496,-2754]]},{"type":"Polygon","id":34031,"properties":{"id":"34031","name":"Passaic"},"arcs":[[2788,2789,-2717,-2532,-2733,2790]]},{"type":"Polygon","id":31153,"properties":{"id":"31153","name":"Sarpy"},"arcs":[[-2623,2791,2792,-2657,-2704]]},{"type":"Polygon","id":6035,"properties":{"id":"6035","name":"Lassen"},"arcs":[[-2359,2793,2794,2795,-2349]]},{"type":"Polygon","id":6089,"properties":{"id":"6089","name":"Shasta"},"arcs":[[-2350,-2796,2796,2797,-2711,-2292]]},{"type":"Polygon","id":42097,"properties":{"id":"42097","name":"Northumberland"},"arcs":[[2798,-2736,2799,2800,2801,2802,2803,-2572]]},{"type":"Polygon","id":18049,"properties":{"id":"18049","name":"Fulton"},"arcs":[[2804,2805,2806,2807,-2642,-2662]]},{"type":"Polygon","id":31081,"properties":{"id":"31081","name":"Hamilton"},"arcs":[[2808,2809,2810,2811,-2697,-2693]]},{"type":"Polygon","id":18131,"properties":{"id":"18131","name":"Pulaski"},"arcs":[[-2808,2812,2813,-2751,-2672]]},{"type":"Polygon","id":42093,"properties":{"id":"42093","name":"Montour"},"arcs":[[-2737,-2799,-2571]]},{"type":"Polygon","id":42019,"properties":{"id":"42019","name":"Butler"},"arcs":[[-2669,2814,2815,2816,2817,-2636,-2554]]},{"type":"Polygon","id":42005,"properties":{"id":"42005","name":"Armstrong"},"arcs":[[-2710,2818,2819,2820,-2815,-2668]]},{"type":"Polygon","id":39063,"properties":{"id":"39063","name":"Hancock"},"arcs":[[-2764,2821,2822,2823,2824,-2562]]},{"type":"Polygon","id":39137,"properties":{"id":"39137","name":"Putnam"},"arcs":[[-2825,2825,2826,-2780,-2678,-2639]]},{"type":"Polygon","id":19101,"properties":{"id":"19101","name":"Jefferson"},"arcs":[[-2603,2827,2828,2829,-2609]]},{"type":"Polygon","id":19087,"properties":{"id":"19087","name":"Henry"},"arcs":[[-2683,2830,2831,2832,-2828,-2602]]},{"type":"Polygon","id":19179,"properties":{"id":"19179","name":"Wapello"},"arcs":[[-2830,2833,2834,-2615,-2610]]},{"type":"Polygon","id":19039,"properties":{"id":"19039","name":"Clarke"},"arcs":[[2835,2836,2837,-2612,-2607]]},{"type":"Polygon","id":19117,"properties":{"id":"19117","name":"Lucas"},"arcs":[[-2619,2838,2839,-2836,-2606]]},{"type":"Polygon","id":19135,"properties":{"id":"19135","name":"Monroe"},"arcs":[[-2835,2840,-2839,-2618,-2616]]},{"type":"Polygon","id":19129,"properties":{"id":"19129","name":"Mills"},"arcs":[[2841,2842,2843,-2792,-2622]]},{"type":"Polygon","id":19137,"properties":{"id":"19137","name":"Montgomery"},"arcs":[[-2627,2844,2845,-2842,-2621]]},{"type":"Polygon","id":19003,"properties":{"id":"19003","name":"Adams"},"arcs":[[-2629,2846,2847,-2845,-2626]]},{"type":"Polygon","id":19175,"properties":{"id":"19175","name":"Union"},"arcs":[[-2613,-2838,2848,-2847,-2628]]},{"type":"Polygon","id":49011,"properties":{"id":"49011","name":"Davis"},"arcs":[[-2707,2849,2850,-2671]]},{"type":"Polygon","id":17095,"properties":{"id":"17095","name":"Knox"},"arcs":[[-2784,2851,2852,2853,-2727,-2582]]},{"type":"Polygon","id":42119,"properties":{"id":"42119","name":"Union"},"arcs":[[2854,2855,-2773,-2644,-2573,-2804]]},{"type":"Polygon","id":17123,"properties":{"id":"17123","name":"Marshall"},"arcs":[[-2731,-2538,2856,2857,-2782,-2578]]},{"type":"Polygon","id":34003,"properties":{"id":"34003","name":"Bergen"},"arcs":[[2858,2859,-2791,-2732,2860]]},{"type":"Polygon","id":39099,"properties":{"id":"39099","name":"Mahoning"},"arcs":[[-2638,2861,2862,2863,-2725,-2631]]},{"type":"Polygon","id":42025,"properties":{"id":"42025","name":"Carbon"},"arcs":[[-2779,2864,2865,2866,-2675]]},{"type":"Polygon","id":42073,"properties":{"id":"42073","name":"Lawrence"},"arcs":[[-2818,2867,2868,-2862,-2637]]},{"type":"Polygon","id":17105,"properties":{"id":"17105","name":"Livingston"},"arcs":[[-2741,2869,2870,2871,-2536,-2651]]},{"type":"Polygon","id":34041,"properties":{"id":"34041","name":"Warren"},"arcs":[[2872,2873,2874,2875,-2777,-2719]]},{"type":"Polygon","id":34027,"properties":{"id":"34027","name":"Morris"},"arcs":[[2876,2877,2878,2879,-2873,-2718,-2790]]},{"type":"Polygon","id":49045,"properties":{"id":"49045","name":"Tooele"},"arcs":[[2880,2881,2882,2883,-2326,-2320,-2851]]},{"type":"Polygon","id":19057,"properties":{"id":"19057","name":"Des Moines"},"arcs":[[-2730,2884,2885,-2831,-2682]]},{"type":"Polygon","id":17071,"properties":{"id":"17071","name":"Henderson"},"arcs":[[2886,2887,2888,2889,-2885,-2729]]},{"type":"Polygon","id":17187,"properties":{"id":"17187","name":"Warren"},"arcs":[[-2854,2890,2891,-2887,-2728]]},{"type":"Polygon","id":39005,"properties":{"id":"39005","name":"Ashland"},"arcs":[[-2756,2892,2893,2894,2895,-2747,-2598]]},{"type":"Polygon","id":31025,"properties":{"id":"31025","name":"Cass"},"arcs":[[-2844,2896,2897,2898,-2658,-2793]]},{"type":"Polygon","id":31185,"properties":{"id":"31185","name":"York"},"arcs":[[2899,2900,2901,-2809,-2692]]},{"type":"Polygon","id":31079,"properties":{"id":"31079","name":"Hall"},"arcs":[[-2698,-2812,2902,2903,-2700]]},{"type":"Polygon","id":31047,"properties":{"id":"31047","name":"Dawson"},"arcs":[[2904,2905,2906,2907,-2687,-2460]]},{"type":"Polygon","id":31019,"properties":{"id":"31019","name":"Buffalo"},"arcs":[[-2701,-2904,2908,2909,2910,-2905,-2459,-2703]]},{"type":"Polygon","id":31159,"properties":{"id":"31159","name":"Seward"},"arcs":[[2911,2912,-2900,-2654]]},{"type":"Polygon","id":31109,"properties":{"id":"31109","name":"Lancaster"},"arcs":[[-2899,2913,2914,2915,-2912,-2653,-2659]]},{"type":"Polygon","id":18169,"properties":{"id":"18169","name":"Wabash"},"arcs":[[-2744,2916,2917,2918,-2805,-2661]]},{"type":"Polygon","id":17075,"properties":{"id":"17075","name":"Iroquois"},"arcs":[[-2788,2919,2920,2921,-2739]]},{"type":"Polygon","id":18069,"properties":{"id":"18069","name":"Huntington"},"arcs":[[-2761,2922,2923,-2917,-2743]]},{"type":"MultiPolygon","id":8123,"properties":{"id":"8123","name":"Weld"},"arcs":[[[2924]],[[2925,2926,2927,2928,2929,-2516,-2696,2930]]]},{"type":"Polygon","id":31135,"properties":{"id":"31135","name":"Perkins"},"arcs":[[-2690,2931,2932,2933,2934,-2785,-2685]]},{"type":"Polygon","id":8107,"properties":{"id":"8107","name":"Routt"},"arcs":[[2935,2936,2937,2938,2939,-2101,2940]]},{"type":"Polygon","id":8057,"properties":{"id":"8057","name":"Jackson"},"arcs":[[2941,-2941,-2100,-2106,2942]]},{"type":"Polygon","id":8081,"properties":{"id":"8081","name":"Moffat"},"arcs":[[-2940,2943,2944,2945,-2160,-2102]]},{"type":"Polygon","id":8075,"properties":{"id":"8075","name":"Logan"},"arcs":[[2946,2947,2948,-2931,-2695,-2665,2949,2950]]},{"type":"Polygon","id":8115,"properties":{"id":"8115","name":"Sedgwick"},"arcs":[[2951,-2950,-2664,-2786,-2935]]},{"type":"Polygon","id":49009,"properties":{"id":"49009","name":"Daggett"},"arcs":[[2952,2953,-2769,-2161,-2946]]},{"type":"Polygon","id":32011,"properties":{"id":"32011","name":"Eureka"},"arcs":[[2954,2955,2956,-2328]]},{"type":"Polygon","id":32015,"properties":{"id":"32015","name":"Lander"},"arcs":[[-2957,2957,2958,2959,-2322,-2329]]},{"type":"Polygon","id":8069,"properties":{"id":"8069","name":"Larimer"},"arcs":[[2960,2961,-2943,-2105,-2517,-2930]]},{"type":"Polygon","id":18103,"properties":{"id":"18103","name":"Miami"},"arcs":[[-2919,2962,2963,2964,-2806]]},{"type":"Polygon","id":39033,"properties":{"id":"39033","name":"Crawford"},"arcs":[[2965,2966,2967,2968,-2762,-2749]]},{"type":"Polygon","id":17053,"properties":{"id":"17053","name":"Ford"},"arcs":[[2969,2970,2971,-2870,-2740,-2922]]},{"type":"Polygon","id":39139,"properties":{"id":"39139","name":"Richland"},"arcs":[[-2896,2972,2973,-2966,-2748]]},{"type":"Polygon","id":39175,"properties":{"id":"39175","name":"Wyandot"},"arcs":[[-2969,2974,2975,-2822,-2763]]},{"type":"Polygon","id":39169,"properties":{"id":"39169","name":"Wayne"},"arcs":[[-2723,2976,2977,-2893,-2755]]},{"type":"Polygon","id":39161,"properties":{"id":"39161","name":"Van Wert"},"arcs":[[-2827,2978,2979,2980,2981,-2758,-2781]]},{"type":"Polygon","id":39151,"properties":{"id":"39151","name":"Stark"},"arcs":[[-2864,2982,2983,2984,2985,-2977,-2722,-2726]]},{"type":"Polygon","id":17143,"properties":{"id":"17143","name":"Peoria"},"arcs":[[-2858,2986,2987,2988,-2852,-2783]]},{"type":"Polygon","id":42095,"properties":{"id":"42095","name":"Northampton"},"arcs":[[2989,2990,-2865,-2778,-2876]]},{"type":"Polygon","id":32027,"properties":{"id":"32027","name":"Pershing"},"arcs":[[-2960,2991,-2351,-2323]]},{"type":"Polygon","id":42107,"properties":{"id":"42107","name":"Schuylkill"},"arcs":[[-2867,2992,2993,2994,2995,-2800,-2735,-2676]]},{"type":"Polygon","id":39029,"properties":{"id":"39029","name":"Columbiana"},"arcs":[[-2869,2996,2997,2998,2999,-2983,-2863]]},{"type":"Polygon","id":17203,"properties":{"id":"17203","name":"Woodford"},"arcs":[[3000,3001,-2987,-2857,-2537,-2872]]},{"type":"Polygon","id":18001,"properties":{"id":"18001","name":"Adams"},"arcs":[[3002,3003,3004,-2759,-2982]]},{"type":"Polygon","id":39003,"properties":{"id":"39003","name":"Allen"},"arcs":[[-2824,3005,3006,-2979,-2826]]},{"type":"Polygon","id":49035,"properties":{"id":"49035","name":"Salt Lake"},"arcs":[[-2706,-2772,3007,3008,-2881,-2850]]},{"type":"Polygon","id":36005,"properties":{"id":"36005","name":"Bronx"},"arcs":[[3009,3010,3011,-2714]]},{"type":"Polygon","id":18179,"properties":{"id":"18179","name":"Wells"},"arcs":[[-3005,3012,3013,3014,-2923,-2760]]},{"type":"MultiPolygon","id":36059,"properties":{"id":"36059","name":"Nassau"},"arcs":[[[-2745,3015,3016,3017,3018,3019]]]},{"type":"Polygon","id":18181,"properties":{"id":"18181","name":"White"},"arcs":[[3020,3021,3022,3023,-2752,-2814]]},{"type":"Polygon","id":18017,"properties":{"id":"18017","name":"Cass"},"arcs":[[-2807,-2965,3024,3025,-3021,-2813]]},{"type":"Polygon","id":42063,"properties":{"id":"42063","name":"Indiana"},"arcs":[[-2768,3026,3027,-2819,-2709]]},{"type":"Polygon","id":34013,"properties":{"id":"34013","name":"Essex"},"arcs":[[-2789,-2860,3028,3029,3030,-2877]]},{"type":"Polygon","id":19071,"properties":{"id":"19071","name":"Fremont"},"arcs":[[3031,3032,3033,-2897,-2843]]},{"type":"Polygon","id":19145,"properties":{"id":"19145","name":"Page"},"arcs":[[3034,3035,3036,-3032,-2846]]},{"type":"Polygon","id":19173,"properties":{"id":"19173","name":"Taylor"},"arcs":[[3037,3038,3039,-3035,-2848]]},{"type":"Polygon","id":19177,"properties":{"id":"19177","name":"Van Buren"},"arcs":[[-2833,3040,3041,3042,3043,-2829]]},{"type":"Polygon","id":19051,"properties":{"id":"19051","name":"Davis"},"arcs":[[-3044,3044,3045,3046,-2834]]},{"type":"Polygon","id":19159,"properties":{"id":"19159","name":"Ringgold"},"arcs":[[3047,3048,3049,-3038,-2849]]},{"type":"Polygon","id":19053,"properties":{"id":"19053","name":"Decatur"},"arcs":[[3050,3051,3052,-3048,-2837]]},{"type":"Polygon","id":19185,"properties":{"id":"19185","name":"Wayne"},"arcs":[[3053,3054,3055,-3051,-2840]]},{"type":"Polygon","id":19007,"properties":{"id":"19007","name":"Appanoose"},"arcs":[[-3047,3056,3057,-3054,-2841]]},{"type":"Polygon","id":42109,"properties":{"id":"42109","name":"Snyder"},"arcs":[[-2803,3058,3059,-2855]]},{"type":"Polygon","id":36061,"properties":{"id":"36061","name":"New York"},"arcs":[[3060,-3011]]},{"type":"Polygon","id":49047,"properties":{"id":"49047","name":"Uintah"},"arcs":[[-2945,3061,3062,3063,3064,3065,3066,-2953]]},{"type":"Polygon","id":42007,"properties":{"id":"42007","name":"Beaver"},"arcs":[[-2817,3067,3068,3069,-2997,-2868]]},{"type":"Polygon","id":42087,"properties":{"id":"42087","name":"Mifflin"},"arcs":[[3070,-2774,-2856,-3060,3071]]},{"type":"Polygon","id":49013,"properties":{"id":"49013","name":"Duchesne"},"arcs":[[-2954,-3067,3072,3073,3074,-2770]]},{"type":"Polygon","id":39065,"properties":{"id":"39065","name":"Hardin"},"arcs":[[-2976,3075,3076,3077,3078,-3006,-2823]]},{"type":"Polygon","id":34017,"properties":{"id":"34017","name":"Hudson"},"arcs":[[3079,-3029,-2859]]},{"type":"Polygon","id":19111,"properties":{"id":"19111","name":"Lee"},"arcs":[[-2886,-2890,3080,3081,-3041,-2832]]},{"type":"MultiPolygon","id":36081,"properties":{"id":"36081","name":"Queens"},"arcs":[[[3082,-3083,3083]],[[-3019,3084,3085,3086]]]},{"type":"Polygon","id":34019,"properties":{"id":"34019","name":"Hunterdon"},"arcs":[[3087,3088,3089,-2874,-2880]]},{"type":"Polygon","id":42077,"properties":{"id":"42077","name":"Lehigh"},"arcs":[[3090,3091,3092,-2993,-2866,-2991]]},{"type":"Polygon","id":31131,"properties":{"id":"31131","name":"Otoe"},"arcs":[[-3034,3093,3094,3095,-2914,-2898]]},{"type":"Polygon","id":34035,"properties":{"id":"34035","name":"Somerset"},"arcs":[[3096,3097,3098,-3088,-2879]]},{"type":"Polygon","id":17113,"properties":{"id":"17113","name":"McLean"},"arcs":[[-2972,3099,3100,3101,3102,3103,-3001,-2871]]},{"type":"Polygon","id":8095,"properties":{"id":"8095","name":"Phillips"},"arcs":[[-2934,3104,3105,-2951,-2952]]},{"type":"Polygon","id":17179,"properties":{"id":"17179","name":"Tazewell"},"arcs":[[-3104,3106,3107,3108,-2988,-3002]]},{"type":"Polygon","id":42061,"properties":{"id":"42061","name":"Huntingdon"},"arcs":[[-3071,3109,3110,3111,3112,3113,-2775]]},{"type":"Polygon","id":42013,"properties":{"id":"42013","name":"Blair"},"arcs":[[3114,3115,-2766,-2776,-3114]]},{"type":"MultiPolygon","id":36047,"properties":{"id":"36047","name":"Kings"},"arcs":[[[3082,-3083,3083]],[[3116,-3086]]]},{"type":"Polygon","id":18007,"properties":{"id":"18007","name":"Benton"},"arcs":[[-2753,-3024,3117,3118,3119,-2920,-2787]]},{"type":"Polygon","id":34039,"properties":{"id":"34039","name":"Union"},"arcs":[[3120,3121,-3097,-2878,-3031]]},{"type":"Polygon","id":18015,"properties":{"id":"18015","name":"Carroll"},"arcs":[[-3026,3122,3123,3124,-3022]]},{"type":"Polygon","id":39019,"properties":{"id":"39019","name":"Carroll"},"arcs":[[-3000,3125,3126,3127,-2984]]},{"type":"Polygon","id":39107,"properties":{"id":"39107","name":"Mercer"},"arcs":[[3128,3129,3130,3131,-3003,-2981]]},{"type":"Polygon","id":42021,"properties":{"id":"42021","name":"Cambria"},"arcs":[[-3116,3132,3133,3134,-3027,-2767]]},{"type":"Polygon","id":17057,"properties":{"id":"17057","name":"Fulton"},"arcs":[[-2989,-3109,3135,3136,3137,-2891,-2853]]},{"type":"Polygon","id":39117,"properties":{"id":"39117","name":"Morrow"},"arcs":[[-2974,3138,3139,3140,-2967]]},{"type":"Polygon","id":39101,"properties":{"id":"39101","name":"Marion"},"arcs":[[-3141,3141,3142,-3076,-2975,-2968]]},{"type":"Polygon","id":31063,"properties":{"id":"31063","name":"Frontier"},"arcs":[[-2908,3143,3144,3145,3146,3147,-2688]]},{"type":"Polygon","id":31001,"properties":{"id":"31001","name":"Adams"},"arcs":[[-2811,3148,3149,3150,-2909,-2903]]},{"type":"Polygon","id":31073,"properties":{"id":"31073","name":"Gosper"},"arcs":[[3151,3152,-3144,-2907]]},{"type":"Polygon","id":31085,"properties":{"id":"31085","name":"Hayes"},"arcs":[[-3148,3153,3154,3155,-2932,-2689]]},{"type":"Polygon","id":31029,"properties":{"id":"31029","name":"Chase"},"arcs":[[-3156,3156,3157,-3105,-2933]]},{"type":"Polygon","id":31059,"properties":{"id":"31059","name":"Fillmore"},"arcs":[[3158,3159,3160,3161,-2901]]},{"type":"Polygon","id":31151,"properties":{"id":"31151","name":"Saline"},"arcs":[[-2913,-2916,3162,3163,-3159]]},{"type":"Polygon","id":31035,"properties":{"id":"31035","name":"Clay"},"arcs":[[-3162,3164,3165,-3149,-2810,-2902]]},{"type":"Polygon","id":42067,"properties":{"id":"42067","name":"Juniata"},"arcs":[[-2802,3166,3167,-3110,-3072,-3059]]},{"type":"Polygon","id":49051,"properties":{"id":"49051","name":"Wasatch"},"arcs":[[-3075,3168,-3008,-2771]]},{"type":"Polygon","id":31099,"properties":{"id":"31099","name":"Kearney"},"arcs":[[3169,3170,3171,-2910,-3151]]},{"type":"Polygon","id":39011,"properties":{"id":"39011","name":"Auglaize"},"arcs":[[-3079,3172,3173,-3129,-2980,-3007]]},{"type":"Polygon","id":31137,"properties":{"id":"31137","name":"Phelps"},"arcs":[[-2911,-3172,3174,3175,-3152,-2906]]},{"type":"Polygon","id":42129,"properties":{"id":"42129","name":"Westmoreland"},"arcs":[[-3028,-3135,3176,3177,3178,3179,-2820]]},{"type":"Polygon","id":42011,"properties":{"id":"42011","name":"Berks"},"arcs":[[3180,3181,3182,3183,-2994,-3093]]},{"type":"Polygon","id":42003,"properties":{"id":"42003","name":"Allegheny"},"arcs":[[-2821,-3180,3184,-3068,-2816]]},{"type":"Polygon","id":39075,"properties":{"id":"39075","name":"Holmes"},"arcs":[[-2986,3185,3186,3187,-2894,-2978]]},{"type":"Polygon","id":39157,"properties":{"id":"39157","name":"Tuscarawas"},"arcs":[[-3128,3188,3189,3190,-3186,-2985]]},{"type":"Polygon","id":42043,"properties":{"id":"42043","name":"Dauphin"},"arcs":[[-2996,3191,3192,3193,3194,3195,-2801]]},{"type":"Polygon","id":18053,"properties":{"id":"18053","name":"Grant"},"arcs":[[-3015,3196,3197,3198,3199,3200,-2963,-2918,-2924]]},{"type":"Polygon","id":36085,"properties":{"id":"36085","name":"Richmond"},"arcs":[[3201]]},{"type":"Polygon","id":17067,"properties":{"id":"17067","name":"Hancock"},"arcs":[[3202,3203,3204,3205,3206,-3081,-2889]]},{"type":"Polygon","id":54029,"properties":{"id":"54029","name":"Hancock"},"arcs":[[3207,3208,3209,-2998,-3070]]},{"type":"Polygon","id":17109,"properties":{"id":"17109","name":"McDonough"},"arcs":[[-3138,3210,-3203,-2888,-2892]]},{"type":"Polygon","id":42099,"properties":{"id":"42099","name":"Perry"},"arcs":[[3211,3212,-3167,-3196]]},{"type":"Polygon","id":29045,"properties":{"id":"29045","name":"Clark"},"arcs":[[-3207,3213,3214,3215,-3042,-3082]]},{"type":"Polygon","id":42017,"properties":{"id":"42017","name":"Bucks"},"arcs":[[3216,3217,3218,3219,-3091,-2990,-2875,-3090]]},{"type":"Polygon","id":34023,"properties":{"id":"34023","name":"Middlesex"},"arcs":[[3220,3221,3222,-3098,-3122]]},{"type":"Polygon","id":29199,"properties":{"id":"29199","name":"Scotland"},"arcs":[[-3216,3223,3224,3225,-3045,-3043]]},{"type":"Polygon","id":39081,"properties":{"id":"39081","name":"Jefferson"},"arcs":[[-3210,3226,3227,3228,3229,-3126,-2999]]},{"type":"Polygon","id":29197,"properties":{"id":"29197","name":"Schuyler"},"arcs":[[3230,3231,-3057,-3046,-3226]]},{"type":"Polygon","id":29171,"properties":{"id":"29171","name":"Putnam"},"arcs":[[-3232,3232,3233,3234,-3055,-3058]]},{"type":"Polygon","id":29005,"properties":{"id":"29005","name":"Atchison"},"arcs":[[-3037,3235,3236,3237,-3094,-3033]]},{"type":"Polygon","id":29129,"properties":{"id":"29129","name":"Mercer"},"arcs":[[-3235,3238,3239,3240,-3052,-3056]]},{"type":"Polygon","id":29147,"properties":{"id":"29147","name":"Nodaway"},"arcs":[[-3040,3241,3242,3243,3244,-3236,-3036]]},{"type":"Polygon","id":49049,"properties":{"id":"49049","name":"Utah"},"arcs":[[-3074,3245,3246,3247,-2882,-3009,-3169]]},{"type":"Polygon","id":29081,"properties":{"id":"29081","name":"Harrison"},"arcs":[[-3241,3248,3249,3250,3251,-3049,-3053]]},{"type":"Polygon","id":39083,"properties":{"id":"39083","name":"Knox"},"arcs":[[3252,3253,3254,-3139,-2973,-2895,-3188]]},{"type":"Polygon","id":18075,"properties":{"id":"18075","name":"Jay"},"arcs":[[3255,3256,3257,3258,-3013,-3004,-3132]]},{"type":"Polygon","id":29227,"properties":{"id":"29227","name":"Worth"},"arcs":[[-3252,3259,-3242,-3039,-3050]]},{"type":"Polygon","id":18009,"properties":{"id":"18009","name":"Blackford"},"arcs":[[-3259,3260,-3197,-3014]]},{"type":"Polygon","id":18067,"properties":{"id":"18067","name":"Howard"},"arcs":[[3261,3262,-3123,-3025,-2964,-3201]]},{"type":"Polygon","id":18157,"properties":{"id":"18157","name":"Tippecanoe"},"arcs":[[-3125,3263,3264,3265,3266,-3118,-3023]]},{"type":"Polygon","id":31127,"properties":{"id":"31127","name":"Nemaha"},"arcs":[[3267,3268,3269,3270,-3095,-3238]]},{"type":"Polygon","id":42075,"properties":{"id":"42075","name":"Lebanon"},"arcs":[[-3192,-2995,-3184,3271]]},{"type":"Polygon","id":39091,"properties":{"id":"39091","name":"Logan"},"arcs":[[-3078,3272,3273,3274,-3173]]},{"type":"Polygon","id":8087,"properties":{"id":"8087","name":"Morgan"},"arcs":[[-2949,3275,3276,-2926]]},{"type":"Polygon","id":31067,"properties":{"id":"31067","name":"Gage"},"arcs":[[3277,3278,3279,3280,3281,-3163,-2915]]},{"type":"Polygon","id":31097,"properties":{"id":"31097","name":"Johnson"},"arcs":[[-3271,3282,-3278,-3096]]},{"type":"Polygon","id":39159,"properties":{"id":"39159","name":"Union"},"arcs":[[3283,3284,3285,-3273,-3077,-3143,3286]]},{"type":"Polygon","id":17183,"properties":{"id":"17183","name":"Vermilion"},"arcs":[[-3120,3287,3288,3289,3290,-2970,-2921]]},{"type":"Polygon","id":8049,"properties":{"id":"8049","name":"Grand"},"arcs":[[3291,3292,3293,3294,3295,-2936,-2942,-2962]]},{"type":"Polygon","id":39149,"properties":{"id":"39149","name":"Shelby"},"arcs":[[-3275,3296,3297,3298,-3130,-3174]]},{"type":"Polygon","id":42125,"properties":{"id":"42125","name":"Washington"},"arcs":[[-3185,-3179,3299,3300,3301,3302,3303,-3208,-3069]]},{"type":"Polygon","id":18171,"properties":{"id":"18171","name":"Warren"},"arcs":[[-3267,3304,3305,-3288,-3119]]},{"type":"Polygon","id":34025,"properties":{"id":"34025","name":"Monmouth"},"arcs":[[3306,3307,3308,-3222,3309]]},{"type":"Polygon","id":39031,"properties":{"id":"39031","name":"Coshocton"},"arcs":[[-3191,3310,3311,3312,-3253,-3187]]},{"type":"Polygon","id":42091,"properties":{"id":"42091","name":"Montgomery"},"arcs":[[3313,3314,3315,-3181,-3092,-3220]]},{"type":"Polygon","id":6103,"properties":{"id":"6103","name":"Tehama"},"arcs":[[3316,3317,3318,3319,-2712,-2798]]},{"type":"Polygon","id":6063,"properties":{"id":"6063","name":"Plumas"},"arcs":[[-2795,3320,3321,3322,-3317,-2797]]},{"type":"Polygon","id":39041,"properties":{"id":"39041","name":"Delaware"},"arcs":[[-3255,3323,3324,-3287,-3142,-3140]]},{"type":"Polygon","id":8125,"properties":{"id":"8125","name":"Yuma"},"arcs":[[-3158,3325,3326,3327,3328,-2947,-3106]]},{"type":"Polygon","id":8121,"properties":{"id":"8121","name":"Washington"},"arcs":[[-3329,3329,3330,3331,3332,-3276,-2948]]},{"type":"Polygon","id":17125,"properties":{"id":"17125","name":"Mason"},"arcs":[[3333,3334,3335,3336,-3136,-3108]]},{"type":"Polygon","id":39067,"properties":{"id":"39067","name":"Harrison"},"arcs":[[-3230,3337,3338,-3189,-3127]]},{"type":"Polygon","id":18023,"properties":{"id":"18023","name":"Clinton"},"arcs":[[-3263,3339,3340,3341,3342,-3264,-3124]]},{"type":"Polygon","id":34021,"properties":{"id":"34021","name":"Mercer"},"arcs":[[-3223,-3309,3343,-3217,-3089,-3099]]},{"type":"Polygon","id":18159,"properties":{"id":"18159","name":"Tipton"},"arcs":[[-3200,3344,3345,-3340,-3262]]},{"type":"Polygon","id":54009,"properties":{"id":"54009","name":"Brooke"},"arcs":[[-3304,3346,-3227,-3209]]},{"type":"Polygon","id":17019,"properties":{"id":"17019","name":"Champaign"},"arcs":[[-3291,3347,3348,-3100,-2971]]},{"type":"Polygon","id":29211,"properties":{"id":"29211","name":"Sullivan"},"arcs":[[3349,3350,3351,-3239,-3234]]},{"type":"Polygon","id":29075,"properties":{"id":"29075","name":"Gentry"},"arcs":[[-3251,3352,3353,3354,-3243,-3260]]},{"type":"Polygon","id":18095,"properties":{"id":"18095","name":"Madison"},"arcs":[[3355,3356,3357,3358,-3345,-3199]]},{"type":"Polygon","id":18035,"properties":{"id":"18035","name":"Delaware"},"arcs":[[-3261,-3258,3359,3360,-3356,-3198]]},{"type":"Polygon","id":18045,"properties":{"id":"18045","name":"Fountain"},"arcs":[[-3266,3361,3362,3363,-3305]]},{"type":"Polygon","id":39037,"properties":{"id":"39037","name":"Darke"},"arcs":[[-3299,3364,3365,3366,3367,3368,-3256,-3131]]},{"type":"Polygon","id":31181,"properties":{"id":"31181","name":"Webster"},"arcs":[[-3166,3369,3370,3371,3372,-3170,-3150]]},{"type":"Polygon","id":31061,"properties":{"id":"31061","name":"Franklin"},"arcs":[[-3373,3373,3374,3375,-3171]]},{"type":"Polygon","id":31129,"properties":{"id":"31129","name":"Nuckolls"},"arcs":[[-3161,3376,3377,3378,-3370,-3165]]},{"type":"Polygon","id":31057,"properties":{"id":"31057","name":"Dundy"},"arcs":[[3379,3380,3381,-3326,-3157,-3155]]},{"type":"Polygon","id":31065,"properties":{"id":"31065","name":"Furnas"},"arcs":[[-3176,3382,3383,3384,3385,-3145,-3153]]},{"type":"Polygon","id":31169,"properties":{"id":"31169","name":"Thayer"},"arcs":[[3386,3387,-3377,-3160]]},{"type":"Polygon","id":31095,"properties":{"id":"31095","name":"Jefferson"},"arcs":[[-3164,-3282,3388,-3387]]},{"type":"Polygon","id":31145,"properties":{"id":"31145","name":"Red Willow"},"arcs":[[-3386,3389,3390,3391,-3146]]},{"type":"Polygon","id":31087,"properties":{"id":"31087","name":"Hitchcock"},"arcs":[[-3147,-3392,3392,-3380,-3154]]},{"type":"Polygon","id":31083,"properties":{"id":"31083","name":"Harlan"},"arcs":[[-3376,3393,3394,-3383,-3175]]},{"type":"Polygon","id":29001,"properties":{"id":"29001","name":"Adair"},"arcs":[[-3225,3395,3396,3397,-3350,-3233,-3231]]},{"type":"Polygon","id":42041,"properties":{"id":"42041","name":"Cumberland"},"arcs":[[3398,3399,3400,-3212,-3195]]},{"type":"Polygon","id":17107,"properties":{"id":"17107","name":"Logan"},"arcs":[[3401,3402,3403,3404,-3334,-3107,-3103]]},{"type":"Polygon","id":42009,"properties":{"id":"42009","name":"Bedford"},"arcs":[[-3113,3405,3406,3407,-3133,-3115]]},{"type":"Polygon","id":42071,"properties":{"id":"42071","name":"Lancaster"},"arcs":[[3408,3409,3410,3411,-3193,-3272,-3183]]},{"type":"Polygon","id":18135,"properties":{"id":"18135","name":"Randolph"},"arcs":[[-3369,3412,3413,-3360,-3257]]},{"type":"Polygon","id":29103,"properties":{"id":"29103","name":"Knox"},"arcs":[[-3215,3414,3415,3416,-3396,-3224]]},{"type":"Polygon","id":42055,"properties":{"id":"42055","name":"Franklin"},"arcs":[[-3401,3417,3418,3419,3420,-3111,-3168,-3213]]},{"type":"Polygon","id":42111,"properties":{"id":"42111","name":"Somerset"},"arcs":[[-3408,3421,3422,3423,-3177,-3134]]},{"type":"Polygon","id":17039,"properties":{"id":"17039","name":"De Witt"},"arcs":[[3424,3425,-3402,-3102]]},{"type":"Polygon","id":17169,"properties":{"id":"17169","name":"Schuyler"},"arcs":[[-3137,-3337,3426,3427,3428,-3204,-3211]]},{"type":"Polygon","id":17147,"properties":{"id":"17147","name":"Piatt"},"arcs":[[-3349,3429,3430,3431,-3425,-3101]]},{"type":"Polygon","id":39089,"properties":{"id":"39089","name":"Licking"},"arcs":[[-3313,3432,3433,3434,3435,-3324,-3254]]},{"type":"Polygon","id":39021,"properties":{"id":"39021","name":"Champaign"},"arcs":[[-3286,3436,3437,3438,-3297,-3274]]},{"type":"Polygon","id":29079,"properties":{"id":"29079","name":"Grundy"},"arcs":[[-3352,3439,3440,3441,-3249,-3240]]},{"type":"Polygon","id":8013,"properties":{"id":"8013","name":"Boulder"},"arcs":[[-2929,3442,3443,3444,-3292,-2961]]},{"type":"Polygon","id":31133,"properties":{"id":"31133","name":"Pawnee"},"arcs":[[-3270,3445,3446,3447,-3279,-3283]]},{"type":"Polygon","id":31147,"properties":{"id":"31147","name":"Richardson"},"arcs":[[3448,3449,3450,3451,-3446,-3269]]},{"type":"Polygon","id":29087,"properties":{"id":"29087","name":"Holt"},"arcs":[[-3245,3452,3453,-3449,-3268,-3237]]},{"type":"Polygon","id":29111,"properties":{"id":"29111","name":"Lewis"},"arcs":[[-3206,3454,3455,3456,-3415,-3214]]},{"type":"MultiPolygon","id":42029,"properties":{"id":"42029","name":"Chester"},"arcs":[[[3457,3458,3459,-3409,-3182,-3316]]]},{"type":"Polygon","id":42133,"properties":{"id":"42133","name":"York"},"arcs":[[-3412,3460,3461,3462,3463,-3399,-3194]]},{"type":"Polygon","id":8103,"properties":{"id":"8103","name":"Rio Blanco"},"arcs":[[3464,-3062,-2944,-2939]]},{"type":"Polygon","id":39059,"properties":{"id":"39059","name":"Guernsey"},"arcs":[[3465,3466,-3311,-3190,-3339,3467]]},{"type":"Polygon","id":18057,"properties":{"id":"18057","name":"Hamilton"},"arcs":[[3468,3469,3470,-3341,-3346,-3359]]},{"type":"Polygon","id":18107,"properties":{"id":"18107","name":"Montgomery"},"arcs":[[-3343,3471,3472,3473,3474,-3362,-3265]]},{"type":"Polygon","id":17001,"properties":{"id":"17001","name":"Adams"},"arcs":[[-3429,3475,3476,3477,-3455,-3205]]},{"type":"Polygon","id":39109,"properties":{"id":"39109","name":"Miami"},"arcs":[[-3439,3478,3479,-3365,-3298]]},{"type":"Polygon","id":54069,"properties":{"id":"54069","name":"Ohio"},"arcs":[[-3303,3480,3481,-3228,-3347]]},{"type":"Polygon","id":34005,"properties":{"id":"34005","name":"Burlington"},"arcs":[[-3308,3482,3483,3484,3485,3486,3487,-3218,-3344]]},{"type":"Polygon","id":18011,"properties":{"id":"18011","name":"Boone"},"arcs":[[-3471,3488,3489,-3472,-3342]]},{"type":"Polygon","id":39013,"properties":{"id":"39013","name":"Belmont"},"arcs":[[-3229,-3482,3490,3491,3492,-3468,-3338]]},{"type":"Polygon","id":34029,"properties":{"id":"34029","name":"Ocean"},"arcs":[[3493,-3483,-3307]]},{"type":"Polygon","id":39119,"properties":{"id":"39119","name":"Muskingum"},"arcs":[[-3467,3494,3495,3496,-3433,-3312]]},{"type":"Polygon","id":42057,"properties":{"id":"42057","name":"Fulton"},"arcs":[[-3421,3497,3498,-3406,-3112]]},{"type":"Polygon","id":17129,"properties":{"id":"17129","name":"Menard"},"arcs":[[-3405,3499,3500,-3335]]},{"type":"Polygon","id":6007,"properties":{"id":"6007","name":"Butte"},"arcs":[[3501,3502,3503,3504,-3318,-3323]]},{"type":"Polygon","id":18165,"properties":{"id":"18165","name":"Vermillion"},"arcs":[[-3364,3505,3506,3507,-3289,-3306]]},{"type":"Polygon","id":42051,"properties":{"id":"42051","name":"Fayette"},"arcs":[[-3424,3508,3509,3510,3511,-3300,-3178]]},{"type":"Polygon","id":39049,"properties":{"id":"39049","name":"Franklin"},"arcs":[[-3436,3512,3513,3514,-3284,-3325]]},{"type":"Polygon","id":42101,"properties":{"id":"42101","name":"Philadelphia"},"arcs":[[-3488,3515,3516,-3314,-3219]]},{"type":"Polygon","id":29061,"properties":{"id":"29061","name":"Daviess"},"arcs":[[-3250,-3442,3517,3518,3519,-3353]]},{"type":"Polygon","id":29003,"properties":{"id":"29003","name":"Andrew"},"arcs":[[-3355,3520,3521,3522,-3453,-3244]]},{"type":"Polygon","id":32033,"properties":{"id":"32033","name":"White Pine"},"arcs":[[-2884,3523,3524,3525,3526,-2955,-2327]]},{"type":"Polygon","id":17017,"properties":{"id":"17017","name":"Cass"},"arcs":[[-3336,-3501,3527,3528,3529,-3427]]},{"type":"Polygon","id":39097,"properties":{"id":"39097","name":"Madison"},"arcs":[[3530,3531,3532,3533,-3437,-3285,-3515]]},{"type":"Polygon","id":17009,"properties":{"id":"17009","name":"Brown"},"arcs":[[-3530,3534,3535,-3476,-3428]]},{"type":"Polygon","id":8045,"properties":{"id":"8045","name":"Garfield"},"arcs":[[-2938,3536,3537,3538,3539,-3063,-3465]]},{"type":"Polygon","id":18065,"properties":{"id":"18065","name":"Henry"},"arcs":[[-3414,3540,3541,3542,3543,-3357,-3361]]},{"type":"Polygon","id":42001,"properties":{"id":"42001","name":"Adams"},"arcs":[[3544,3545,-3418,-3400,-3464]]},{"type":"Polygon","id":42045,"properties":{"id":"42045","name":"Delaware"},"arcs":[[-3517,3546,3547,-3549,3549,-3458,-3315]]},{"type":"Polygon","id":17115,"properties":{"id":"17115","name":"Macon"},"arcs":[[-3432,3550,3551,3552,3553,-3403,-3426]]},{"type":"Polygon","id":8014,"arcs":[[3554,3555,-3443,-2928],[2924]]},{"type":"Polygon","id":29121,"properties":{"id":"29121","name":"Macon"},"arcs":[[-3417,3556,3557,3558,3559,3560,-3397]]},{"type":"Polygon","id":39023,"properties":{"id":"39023","name":"Clark"},"arcs":[[-3534,3561,3562,-3479,-3438]]},{"type":"Polygon","id":29115,"properties":{"id":"29115","name":"Linn"},"arcs":[[-3561,3563,3564,-3440,-3351,-3398]]},{"type":"Polygon","id":29063,"properties":{"id":"29063","name":"De Kalb"},"arcs":[[-3520,3565,3566,3567,-3521,-3354]]},{"type":"Polygon","id":54051,"properties":{"id":"54051","name":"Marshall"},"arcs":[[3568,3569,-3491,-3481,-3302,3570]]},{"type":"Polygon","id":42059,"properties":{"id":"42059","name":"Greene"},"arcs":[[-3512,3571,3572,-3571,-3301]]},{"type":"Polygon","id":49023,"properties":{"id":"49023","name":"Juab"},"arcs":[[-3248,3573,3574,-3524,-2883]]},{"type":"Polygon","id":18177,"properties":{"id":"18177","name":"Wayne"},"arcs":[[-3368,3575,3576,3577,-3541,-3413]]},{"type":"Polygon","id":20023,"properties":{"id":"20023","name":"Cheyenne"},"arcs":[[3578,3579,3580,-3327,-3382]]},{"type":"Polygon","id":20153,"properties":{"id":"20153","name":"Rawlins"},"arcs":[[-3391,3581,3582,3583,-3579,-3381,-3393]]},{"type":"Polygon","id":6045,"properties":{"id":"6045","name":"Mendocino"},"arcs":[[-2713,-3320,3584,3585,3586,3587,-2648]]},{"type":"Polygon","id":20089,"properties":{"id":"20089","name":"Jewell"},"arcs":[[3588,3589,3590,3591,3592,-3371,-3379]]},{"type":"Polygon","id":20183,"properties":{"id":"20183","name":"Smith"},"arcs":[[-3593,3593,3594,3595,-3374,-3372]]},{"type":"Polygon","id":20157,"properties":{"id":"20157","name":"Republic"},"arcs":[[3596,3597,-3589,-3378,-3388]]},{"type":"Polygon","id":20201,"properties":{"id":"20201","name":"Washington"},"arcs":[[-3281,3598,3599,3600,3601,-3597,-3389]]},{"type":"Polygon","id":20039,"properties":{"id":"20039","name":"Decatur"},"arcs":[[-3385,3602,3603,3604,-3582,-3390]]},{"type":"Polygon","id":32001,"properties":{"id":"32001","name":"Churchill"},"arcs":[[-2959,3605,3606,3607,-2352,-2992]]},{"type":"Polygon","id":20137,"properties":{"id":"20137","name":"Norton"},"arcs":[[3608,3609,3610,-3603,-3384,-3395]]},{"type":"Polygon","id":20147,"properties":{"id":"20147","name":"Phillips"},"arcs":[[-3596,3611,3612,-3609,-3394,-3375]]},{"type":"Polygon","id":20117,"properties":{"id":"20117","name":"Marshall"},"arcs":[[-3448,3613,3614,3615,-3599,-3280]]},{"type":"Polygon","id":8001,"properties":{"id":"8001","name":"Adams"},"arcs":[[-3333,3616,3617,3618,-3555,-2927,-3277]]},{"type":"Polygon","id":20013,"properties":{"id":"20013","name":"Brown"},"arcs":[[3619,3620,3621,3622,-3451]]},{"type":"Polygon","id":20131,"properties":{"id":"20131","name":"Nemaha"},"arcs":[[-3452,-3623,3623,3624,-3614,-3447]]},{"type":"Polygon","id":20043,"properties":{"id":"20043","name":"Doniphan"},"arcs":[[-3454,-3523,3625,3626,-3620,-3450]]},{"type":"Polygon","id":34007,"properties":{"id":"34007","name":"Camden"},"arcs":[[3627,3628,3629,-3486]]},{"type":"Polygon","id":17167,"properties":{"id":"17167","name":"Sangamon"},"arcs":[[-3554,3630,3631,3632,3633,-3528,-3500,-3404]]},{"type":"Polygon","id":29117,"properties":{"id":"29117","name":"Livingston"},"arcs":[[3634,3635,3636,-3518,-3441,-3565]]},{"type":"Polygon","id":29205,"properties":{"id":"29205","name":"Shelby"},"arcs":[[-3457,3637,3638,-3557,-3416]]},{"type":"Polygon","id":18121,"properties":{"id":"18121","name":"Parke"},"arcs":[[-3475,3639,3640,3641,-3506,-3363]]},{"type":"Polygon","id":39121,"properties":{"id":"39121","name":"Noble"},"arcs":[[-3493,3642,3643,3644,-3495,-3466]]},{"type":"Polygon","id":29127,"properties":{"id":"29127","name":"Marion"},"arcs":[[-3478,3645,3646,3647,-3638,-3456]]},{"type":"Polygon","id":18059,"properties":{"id":"18059","name":"Hancock"},"arcs":[[-3544,3648,3649,3650,-3469,-3358]]},{"type":"Polygon","id":39045,"properties":{"id":"39045","name":"Fairfield"},"arcs":[[-3435,3651,3652,3653,-3513]]},{"type":"Polygon","id":8047,"properties":{"id":"8047","name":"Gilpin"},"arcs":[[3654,3655,-3293,-3445]]},{"type":"Polygon","id":39127,"properties":{"id":"39127","name":"Perry"},"arcs":[[3656,3657,3658,-3652,-3434,-3497]]},{"type":"Polygon","id":18097,"properties":{"id":"18097","name":"Marion"},"arcs":[[-3651,3659,3660,3661,3662,-3489,-3470]]},{"type":"Polygon","id":8037,"properties":{"id":"8037","name":"Eagle"},"arcs":[[3663,3664,3665,-3537,-2937,-3296]]},{"type":"Polygon","id":8117,"properties":{"id":"8117","name":"Summit"},"arcs":[[3666,3667,3668,-3664,-3295]]},{"type":"Polygon","id":18063,"properties":{"id":"18063","name":"Hendricks"},"arcs":[[-3663,3669,3670,-3473,-3490]]},{"type":"Polygon","id":39113,"properties":{"id":"39113","name":"Montgomery"},"arcs":[[-3563,3671,3672,3673,3674,-3366,-3480]]},{"type":"Polygon","id":39135,"properties":{"id":"39135","name":"Preble"},"arcs":[[-3675,3675,3676,-3576,-3367]]},{"type":"Polygon","id":8059,"properties":{"id":"8059","name":"Jefferson"},"arcs":[[-3619,3677,3678,3679,3680,3681,3682,-3655,-3444,-3556]]},{"type":"Polygon","id":8031,"properties":{"id":"8031","name":"Denver"},"arcs":[[3683,-3678,-3618]]},{"type":"Polygon","id":34015,"properties":{"id":"34015","name":"Gloucester"},"arcs":[[3684,3685,3686,3687,-3629]]},{"type":"Polygon","id":17045,"properties":{"id":"17045","name":"Edgar"},"arcs":[[3688,3689,3690,3691,-3290,-3508]]},{"type":"Polygon","id":17041,"properties":{"id":"17041","name":"Douglas"},"arcs":[[-3692,3692,3693,-3430,-3348]]},{"type":"Polygon","id":17137,"properties":{"id":"17137","name":"Morgan"},"arcs":[[-3634,3694,3695,3696,3697,-3535,-3529]]},{"type":"Polygon","id":39111,"properties":{"id":"39111","name":"Monroe"},"arcs":[[-3570,3698,3699,3700,-3643,-3492]]},{"type":"Polygon","id":18133,"properties":{"id":"18133","name":"Putnam"},"arcs":[[-3671,3701,3702,3703,-3640,-3474]]},{"type":"Polygon","id":8019,"properties":{"id":"8019","name":"Clear Creek"},"arcs":[[-3683,3704,-3667,-3294,-3656]]},{"type":"Polygon","id":39057,"properties":{"id":"39057","name":"Greene"},"arcs":[[-3533,3705,3706,3707,-3672,-3562]]},{"type":"Polygon","id":17149,"properties":{"id":"17149","name":"Pike"},"arcs":[[-3698,3708,3709,3710,3711,3712,-3646,-3477,-3536]]},{"type":"MultiPolygon","id":10003,"properties":{"id":"10003","name":"New Castle"},"arcs":[[[3713,-3714,3714]],[[3715,-3716,3716]],[[3717,3718,3719,3720,-3459,-3550,3548,-3548]]]},{"type":"Polygon","id":17021,"properties":{"id":"17021","name":"Christian"},"arcs":[[-3553,3721,3722,-3631]]},{"type":"Polygon","id":29021,"properties":{"id":"29021","name":"Buchanan"},"arcs":[[-3568,3723,3724,3725,-3626,-3522]]},{"type":"Polygon","id":49007,"properties":{"id":"49007","name":"Carbon"},"arcs":[[-3073,-3066,3726,3727,-3246]]},{"type":"Polygon","id":49039,"properties":{"id":"49039","name":"Sanpete"},"arcs":[[-3728,3728,3729,3730,-3574,-3247]]},{"type":"Polygon","id":39129,"properties":{"id":"39129","name":"Pickaway"},"arcs":[[-3654,3731,3732,3733,-3531,-3514]]},{"type":"Polygon","id":6021,"properties":{"id":"6021","name":"Glenn"},"arcs":[[-3505,3734,3735,-3585,-3319]]},{"type":"Polygon","id":17139,"properties":{"id":"17139","name":"Moultrie"},"arcs":[[-3694,3736,3737,-3551,-3431]]},{"type":"Polygon","id":18041,"properties":{"id":"18041","name":"Fayette"},"arcs":[[3738,3739,3740,-3542,-3578]]},{"type":"Polygon","id":18139,"properties":{"id":"18139","name":"Rush"},"arcs":[[-3741,3741,3742,3743,-3649,-3543]]},{"type":"Polygon","id":17171,"properties":{"id":"17171","name":"Scott"},"arcs":[[3744,-3709,-3697]]},{"type":"Polygon","id":29025,"properties":{"id":"29025","name":"Caldwell"},"arcs":[[-3637,3745,3746,3747,-3566,-3519]]},{"type":"MultiPolygon","id":34033,"properties":{"id":"34033","name":"Salem"},"arcs":[[[3748,-3749,3749]],[[3750,3751,3713,3752,3715,3753,-3687]]]},{"type":"Polygon","id":6091,"properties":{"id":"6091","name":"Sierra"},"arcs":[[-2794,-2358,3754,3755,-3321]]},{"type":"Polygon","id":39115,"properties":{"id":"39115","name":"Morgan"},"arcs":[[-3645,3756,3757,-3657,-3496]]},{"type":"Polygon","id":29049,"properties":{"id":"29049","name":"Clinton"},"arcs":[[-3748,3758,3759,3760,-3724,-3567]]},{"type":"Polygon","id":8005,"properties":{"id":"8005","name":"Arapahoe"},"arcs":[[-3332,3761,3762,3763,-3679,-3684,-3617]]},{"type":"Polygon","id":32019,"properties":{"id":"32019","name":"Lyon"},"arcs":[[3764,3765,3766,3767,3768,-2353,-3608]]},{"type":"Polygon","id":34001,"properties":{"id":"34001","name":"Atlantic"},"arcs":[[3769,3770,3771,-3685,-3628,-3485]]},{"type":"Polygon","id":18161,"properties":{"id":"18161","name":"Union"},"arcs":[[-3677,3772,3773,-3739,-3577]]},{"type":"Polygon","id":24043,"properties":{"id":"24043","name":"Washington"},"arcs":[[-3420,3774,3775,3776,3777,3778,3779,-3498]]},{"type":"Polygon","id":24001,"properties":{"id":"24001","name":"Allegany"},"arcs":[[-3499,-3780,3780,3781,3782,3783,-3422,-3407]]},{"type":"Polygon","id":24023,"properties":{"id":"24023","name":"Garrett"},"arcs":[[-3784,3784,3785,3786,-3509,-3423]]},{"type":"Polygon","id":24015,"properties":{"id":"24015","name":"Cecil"},"arcs":[[-3721,3787,3788,3789,-3410,-3460]]},{"type":"Polygon","id":54061,"properties":{"id":"54061","name":"Monongalia"},"arcs":[[-3511,3790,3791,3792,3793,-3572]]},{"type":"Polygon","id":54077,"properties":{"id":"54077","name":"Preston"},"arcs":[[-3787,3794,3795,3796,3797,-3791,-3510]]},{"type":"Polygon","id":24025,"properties":{"id":"24025","name":"Harford"},"arcs":[[-3411,-3790,3798,3799,-3461]]},{"type":"Polygon","id":54103,"properties":{"id":"54103","name":"Wetzel"},"arcs":[[-3573,-3794,3800,3801,3802,3803,-3699,-3569]]},{"type":"Polygon","id":24005,"properties":{"id":"24005","name":"Baltimore"},"arcs":[[-3800,3804,3805,3806,3807,3808,-3462]]},{"type":"Polygon","id":24013,"properties":{"id":"24013","name":"Carroll"},"arcs":[[-3809,3809,3810,-3545,-3463]]},{"type":"Polygon","id":24021,"properties":{"id":"24021","name":"Frederick"},"arcs":[[-3811,3811,3812,3813,-3775,-3419,-3546]]},{"type":"Polygon","id":39047,"properties":{"id":"39047","name":"Fayette"},"arcs":[[-3734,3814,3815,3816,-3706,-3532]]},{"type":"Polygon","id":49015,"properties":{"id":"49015","name":"Emery"},"arcs":[[-3065,3817,3818,3819,-3729,-3727]]},{"type":"Polygon","id":29041,"properties":{"id":"29041","name":"Chariton"},"arcs":[[-3560,3820,3821,3822,3823,-3635,-3564]]},{"type":"Polygon","id":18145,"properties":{"id":"18145","name":"Shelby"},"arcs":[[-3744,3824,3825,3826,-3660,-3650]]},{"type":"Polygon","id":54065,"properties":{"id":"54065","name":"Morgan"},"arcs":[[3827,3828,3829,-3781,-3779]]},{"type":"Polygon","id":29173,"properties":{"id":"29173","name":"Ralls"},"arcs":[[-3713,3830,3831,3832,-3647]]},{"type":"Polygon","id":17029,"properties":{"id":"17029","name":"Coles"},"arcs":[[-3691,3833,3834,3835,-3737,-3693]]},{"type":"Polygon","id":29137,"properties":{"id":"29137","name":"Monroe"},"arcs":[[-3648,-3833,3836,3837,-3558,-3639]]},{"type":"Polygon","id":39073,"properties":{"id":"39073","name":"Hocking"},"arcs":[[3838,3839,3840,-3732,-3653,-3659]]},{"type":"Polygon","id":20029,"properties":{"id":"20029","name":"Cloud"},"arcs":[[-3602,3841,3842,3843,-3590,-3598]]},{"type":"Polygon","id":20085,"properties":{"id":"20085","name":"Jackson"},"arcs":[[3844,3845,3846,3847,-3624,-3622]]},{"type":"Polygon","id":20005,"properties":{"id":"20005","name":"Atchison"},"arcs":[[-3726,3848,3849,3850,-3845,-3621,-3627]]},{"type":"Polygon","id":17173,"properties":{"id":"17173","name":"Shelby"},"arcs":[[-3738,-3836,3851,3852,3853,3854,-3722,-3552]]},{"type":"Polygon","id":54057,"properties":{"id":"54057","name":"Mineral"},"arcs":[[3855,3856,-3785,-3783]]},{"type":"Polygon","id":39167,"properties":{"id":"39167","name":"Washington"},"arcs":[[-3701,3857,3858,3859,3860,-3757,-3644]]},{"type":"Polygon","id":54049,"properties":{"id":"54049","name":"Marion"},"arcs":[[-3793,3861,3862,-3801]]},{"type":"Polygon","id":18081,"properties":{"id":"18081","name":"Johnson"},"arcs":[[-3827,3863,3864,3865,-3661]]},{"type":"Polygon","id":6115,"properties":{"id":"6115","name":"Yuba"},"arcs":[[-3756,3866,3867,3868,-3502,-3322]]},{"type":"Polygon","id":18109,"properties":{"id":"18109","name":"Morgan"},"arcs":[[-3866,3869,3870,3871,-3702,-3670,-3662]]},{"type":"Polygon","id":32029,"properties":{"id":"32029","name":"Storey"},"arcs":[[-2354,-3769]]},{"type":"Polygon","id":54003,"properties":{"id":"54003","name":"Berkeley"},"arcs":[[-3778,3872,3873,-3828]]},{"type":"Polygon","id":29033,"properties":{"id":"29033","name":"Carroll"},"arcs":[[-3824,3874,3875,3876,-3746,-3636]]},{"type":"Polygon","id":29175,"properties":{"id":"29175","name":"Randolph"},"arcs":[[-3838,3877,3878,3879,-3821,-3559]]},{"type":"Polygon","id":18167,"properties":{"id":"18167","name":"Vigo"},"arcs":[[3880,3881,3882,-3689,-3507,-3642]]},{"type":"Polygon","id":18021,"properties":{"id":"18021","name":"Clay"},"arcs":[[-3704,3883,3884,3885,-3881,-3641]]},{"type":"Polygon","id":54095,"properties":{"id":"54095","name":"Tyler"},"arcs":[[3886,3887,3888,-3858,-3700,-3804]]},{"type":"Polygon","id":29163,"properties":{"id":"29163","name":"Pike"},"arcs":[[3889,3890,3891,-3831,-3712,3892]]},{"type":"Polygon","id":39017,"properties":{"id":"39017","name":"Butler"},"arcs":[[3893,3894,3895,-3773,-3676,-3674]]},{"type":"Polygon","id":39165,"properties":{"id":"39165","name":"Warren"},"arcs":[[-3708,3896,3897,3898,-3894,-3673]]},{"type":"Polygon","id":6033,"properties":{"id":"6033","name":"Lake"},"arcs":[[3899,3900,3901,3902,-3586,-3736]]},{"type":"Polygon","id":8063,"properties":{"id":"8063","name":"Kit Carson"},"arcs":[[-3581,3903,3904,3905,3906,-3330,-3328]]},{"type":"Polygon","id":34011,"properties":{"id":"34011","name":"Cumberland"},"arcs":[[3748,3907,-3751,-3686,-3772,3908,3909]]},{"type":"Polygon","id":20163,"properties":{"id":"20163","name":"Rooks"},"arcs":[[3910,3911,3912,3913,-3612,-3595]]},{"type":"Polygon","id":39027,"properties":{"id":"39027","name":"Clinton"},"arcs":[[3914,3915,-3897,-3707,-3817,3916]]},{"type":"Polygon","id":20181,"properties":{"id":"20181","name":"Sherman"},"arcs":[[-3584,3917,3918,3919,-3904,-3580]]},{"type":"Polygon","id":20193,"properties":{"id":"20193","name":"Thomas"},"arcs":[[-3605,3920,3921,3922,-3918,-3583]]},{"type":"Polygon","id":20141,"properties":{"id":"20141","name":"Osborne"},"arcs":[[-3592,3923,3924,3925,3926,-3911,-3594]]},{"type":"Polygon","id":20179,"properties":{"id":"20179","name":"Sheridan"},"arcs":[[-3611,3927,3928,-3921,-3604]]},{"type":"Polygon","id":20027,"properties":{"id":"20027","name":"Clay"},"arcs":[[3929,3930,3931,3932,-3842,-3601]]},{"type":"Polygon","id":20123,"properties":{"id":"20123","name":"Mitchell"},"arcs":[[-3844,3933,3934,-3924,-3591]]},{"type":"Polygon","id":20065,"properties":{"id":"20065","name":"Graham"},"arcs":[[-3914,3935,3936,-3928,-3610,-3613]]},{"type":"Polygon","id":20161,"properties":{"id":"20161","name":"Riley"},"arcs":[[3937,3938,3939,-3930,-3600,-3616]]},{"type":"Polygon","id":8035,"properties":{"id":"8035","name":"Douglas"},"arcs":[[3940,3941,3942,-3680,-3764]]},{"type":"Polygon","id":8039,"properties":{"id":"8039","name":"Elbert"},"arcs":[[3943,3944,-3941,-3763]]},{"type":"Polygon","id":20149,"properties":{"id":"20149","name":"Pottawatomie"},"arcs":[[-3625,-3848,3945,3946,-3938,-3615]]},{"type":"Polygon","id":8073,"properties":{"id":"8073","name":"Lincoln"},"arcs":[[-3907,3947,3948,3949,3950,-3944,-3762,-3331]]},{"type":"Polygon","id":8093,"properties":{"id":"8093","name":"Park"},"arcs":[[-3682,3951,3952,3953,3954,-3668,-3705]]},{"type":"Polygon","id":39009,"properties":{"id":"39009","name":"Athens"},"arcs":[[-3861,3955,3956,3957,-3839,-3658,-3758]]},{"type":"Polygon","id":49027,"properties":{"id":"49027","name":"Millard"},"arcs":[[-3731,3958,3959,3960,-3525,-3575]]},{"type":"Polygon","id":54027,"properties":{"id":"54027","name":"Hampshire"},"arcs":[[-3830,3961,3962,-3856,-3782]]},{"type":"Polygon","id":29165,"properties":{"id":"29165","name":"Platte"},"arcs":[[-3725,-3761,3963,3964,3965,-3849]]},{"type":"Polygon","id":18047,"properties":{"id":"18047","name":"Franklin"},"arcs":[[-3774,-3896,3966,3967,3968,-3742,-3740]]},{"type":"Polygon","id":29177,"properties":{"id":"29177","name":"Ray"},"arcs":[[-3877,3969,3970,3971,-3759,-3747]]},{"type":"Polygon","id":17135,"properties":{"id":"17135","name":"Montgomery"},"arcs":[[-3723,-3855,3972,3973,3974,3975,-3632]]},{"type":"Polygon","id":17117,"properties":{"id":"17117","name":"Macoupin"},"arcs":[[-3976,3976,3977,3978,-3695,-3633]]},{"type":"Polygon","id":6057,"properties":{"id":"6057","name":"Nevada"},"arcs":[[-2357,3979,-3867,-3755]]},{"type":"Polygon","id":17061,"properties":{"id":"17061","name":"Greene"},"arcs":[[-3696,-3979,3980,3981,-3710,-3745]]},{"type":"Polygon","id":39141,"properties":{"id":"39141","name":"Ross"},"arcs":[[-3841,3982,3983,3984,3985,-3815,-3733]]},{"type":"Polygon","id":54037,"properties":{"id":"54037","name":"Jefferson"},"arcs":[[3986,3987,-3873,-3777]]},{"type":"Polygon","id":49019,"properties":{"id":"49019","name":"Grand"},"arcs":[[-3540,3988,3989,-3818,-3064]]},{"type":"Polygon","id":17023,"properties":{"id":"17023","name":"Clark"},"arcs":[[-3883,3990,3991,3992,3993,-3834,-3690]]},{"type":"Polygon","id":54073,"properties":{"id":"54073","name":"Pleasants"},"arcs":[[3994,3995,-3859,-3889]]},{"type":"Polygon","id":18119,"properties":{"id":"18119","name":"Owen"},"arcs":[[-3872,3996,3997,-3884,-3703]]},{"type":"Polygon","id":54033,"properties":{"id":"54033","name":"Harrison"},"arcs":[[3998,3999,4000,4001,4002,-3802,-3863]]},{"type":"Polygon","id":51069,"properties":{"id":"51069","name":"Frederick"},"arcs":[[4003,4004,4005,4006,-3962,-3829,-3874],[4007]]},{"type":"Polygon","id":29047,"properties":{"id":"29047","name":"Clay"},"arcs":[[-3760,-3972,4008,4009,-3964]]},{"type":"Polygon","id":18031,"properties":{"id":"18031","name":"Decatur"},"arcs":[[-3969,4010,4011,4012,-3825,-3743]]},{"type":"Polygon","id":54091,"properties":{"id":"54091","name":"Taylor"},"arcs":[[4013,-3999,-3862,-3792,-3798]]},{"type":"Polygon","id":54017,"properties":{"id":"54017","name":"Doddridge"},"arcs":[[-4003,4014,4015,4016,-3887,-3803]]},{"type":"Polygon","id":20087,"properties":{"id":"20087","name":"Jefferson"},"arcs":[[4017,4018,4019,-3846,-3851]]},{"type":"Polygon","id":20103,"properties":{"id":"20103","name":"Leavenworth"},"arcs":[[-3966,4020,4021,4022,-4018,-3850]]},{"type":"Polygon","id":6011,"properties":{"id":"6011","name":"Colusa"},"arcs":[[-3504,4023,4024,-3900,-3735]]},{"type":"Polygon","id":29195,"properties":{"id":"29195","name":"Saline"},"arcs":[[-3823,4025,4026,4027,4028,-3875]]},{"type":"Polygon","id":54107,"properties":{"id":"54107","name":"Wood"},"arcs":[[-3996,4029,4030,4031,4032,-3956,-3860]]},{"type":"Polygon","id":17013,"properties":{"id":"17013","name":"Calhoun"},"arcs":[[-3982,4033,4034,4035,-3893,-3711]]},{"type":"Polygon","id":39163,"properties":{"id":"39163","name":"Vinton"},"arcs":[[-3958,4036,4037,4038,-3983,-3840]]},{"type":"Polygon","id":54085,"properties":{"id":"54085","name":"Ritchie"},"arcs":[[-4017,4039,4040,4041,-4030,-3995,-3888]]},{"type":"Polygon","id":24029,"properties":{"id":"24029","name":"Kent"},"arcs":[[-3720,4042,4043,4044,-3788]]},{"type":"Polygon","id":8065,"properties":{"id":"8065","name":"Lake"},"arcs":[[-3669,-3955,4045,4046,-3665]]},{"type":"Polygon","id":17035,"properties":{"id":"17035","name":"Cumberland"},"arcs":[[-3994,4047,4048,-3852,-3835]]},{"type":"Polygon","id":39071,"properties":{"id":"39071","name":"Highland"},"arcs":[[-3986,4049,4050,4051,-3917,-3816]]},{"type":"MultiPolygon","id":24510,"properties":{"id":"24510","name":"Baltimore city"},"arcs":[[[4052,-4053,4053]],[[4054,4055,-3806]]]},{"type":"Polygon","id":24027,"properties":{"id":"24027","name":"Howard"},"arcs":[[-3808,4056,4057,4058,-3812,-3810]]},{"type":"Polygon","id":8077,"properties":{"id":"8077","name":"Mesa"},"arcs":[[4059,4060,4061,4062,-3989,-3539]]},{"type":"Polygon","id":8097,"properties":{"id":"8097","name":"Pitkin"},"arcs":[[-4047,4063,4064,-4060,-3538,-3666]]},{"type":"Polygon","id":10001,"properties":{"id":"10001","name":"Kent"},"arcs":[[4065,4066,4067,-4043,-3719,4068]]},{"type":"Polygon","id":18105,"properties":{"id":"18105","name":"Monroe"},"arcs":[[4069,4070,4071,4072,-3997,-3871]]},{"type":"Polygon","id":18005,"properties":{"id":"18005","name":"Bartholomew"},"arcs":[[-4013,4073,4074,4075,-3864,-3826]]},{"type":"Polygon","id":29007,"properties":{"id":"29007","name":"Audrain"},"arcs":[[-3832,-3892,4076,4077,4078,-3878,-3837]]},{"type":"Polygon","id":24031,"properties":{"id":"24031","name":"Montgomery"},"arcs":[[4079,4080,4081,4082,-3813,-4059]]},{"type":"Polygon","id":18013,"properties":{"id":"18013","name":"Brown"},"arcs":[[-4076,4083,-4070,-3870,-3865]]},{"type":"Polygon","id":29089,"properties":{"id":"29089","name":"Howard"},"arcs":[[4084,-4026,-3822,-3880,4085]]},{"type":"Polygon","id":54023,"properties":{"id":"54023","name":"Grant"},"arcs":[[4086,4087,4088,4089,-3795,-3786,-3857]]},{"type":"Polygon","id":34009,"properties":{"id":"34009","name":"Cape May"},"arcs":[[4090,-3909,-3771]]},{"type":"Polygon","id":51107,"properties":{"id":"51107","name":"Loudoun"},"arcs":[[-4083,4091,4092,4093,4094,-3987,-3776,-3814]]},{"type":"Polygon","id":6061,"properties":{"id":"6061","name":"Placer"},"arcs":[[-2356,4095,4096,4097,4098,4099,-3868,-3980]]},{"type":"Polygon","id":39061,"properties":{"id":"39061","name":"Hamilton"},"arcs":[[-3899,4100,4101,4102,4103,4104,-3895]]},{"type":"Polygon","id":18137,"properties":{"id":"18137","name":"Ripley"},"arcs":[[4105,4106,4107,4108,4109,-4011,-3968]]},{"type":"Polygon","id":18029,"properties":{"id":"18029","name":"Dearborn"},"arcs":[[-3967,-4105,4110,4111,-4106]]},{"type":"Polygon","id":20143,"properties":{"id":"20143","name":"Ottawa"},"arcs":[[-3933,4112,4113,4114,-3934,-3843]]},{"type":"Polygon","id":6101,"properties":{"id":"6101","name":"Sutter"},"arcs":[[-3869,-4100,4115,4116,-4024,-3503]]},{"type":"Polygon","id":54001,"properties":{"id":"54001","name":"Barbour"},"arcs":[[4117,4118,4119,-4000,-4014,-3797]]},{"type":"Polygon","id":29107,"properties":{"id":"29107","name":"Lafayette"},"arcs":[[4120,4121,4122,-3970,-3876,-4029]]},{"type":"Polygon","id":54093,"properties":{"id":"54093","name":"Tucker"},"arcs":[[4123,-4118,-3796,-4090]]},{"type":"Polygon","id":39025,"properties":{"id":"39025","name":"Clermont"},"arcs":[[4124,4125,4126,-4101,-3898,-3916,4127]]},{"type":"Polygon","id":51043,"properties":{"id":"51043","name":"Clarke"},"arcs":[[-4095,4128,4129,-4004,-3988]]},{"type":"Polygon","id":17083,"properties":{"id":"17083","name":"Jersey"},"arcs":[[-3978,4130,4131,-4034,-3981]]},{"type":"MultiPolygon","id":24035,"properties":{"id":"24035","name":"Queen Anne's"},"arcs":[[[4132]],[[-4068,4133,4134,4135,-4044]]]},{"type":"Polygon","id":18153,"properties":{"id":"18153","name":"Sullivan"},"arcs":[[-3886,4136,4137,4138,-3991,-3882]]},{"type":"Polygon","id":8051,"properties":{"id":"8051","name":"Gunnison"},"arcs":[[-4065,4139,4140,4141,4142,4143,4144,-4061]]},{"type":"Polygon","id":39015,"properties":{"id":"39015","name":"Brown"},"arcs":[[4145,4146,4147,-4128,-3915,-4052]]},{"type":"Polygon","id":29019,"properties":{"id":"29019","name":"Boone"},"arcs":[[-4079,4148,4149,4150,4151,-4086,-3879]]},{"type":"Polygon","id":32510,"properties":{"id":"32510","name":"Carson City"},"arcs":[[4152,-4096,-2355,-3768]]},{"type":"Polygon","id":54031,"properties":{"id":"54031","name":"Hardy"},"arcs":[[-4007,4153,4154,4155,-4087,-3963]]},{"type":"Polygon","id":24003,"properties":{"id":"24003","name":"Anne Arundel"},"arcs":[[4156,4157,-4057,-3807,-4056,4158,-4053,4159]]},{"type":"Polygon","id":29095,"properties":{"id":"29095","name":"Jackson"},"arcs":[[-3971,-4123,4160,4161,4162,4163,-4009]]},{"type":"Polygon","id":29113,"properties":{"id":"29113","name":"Lincoln"},"arcs":[[-4036,4164,4165,4166,-3890]]},{"type":"Polygon","id":20061,"properties":{"id":"20061","name":"Geary"},"arcs":[[4167,4168,4169,-3931,-3940]]},{"type":"Polygon","id":8029,"properties":{"id":"8029","name":"Delta"},"arcs":[[-4145,4170,-4062]]},{"type":"Polygon","id":20105,"properties":{"id":"20105","name":"Lincoln"},"arcs":[[-4115,4171,4172,4173,-3925,-3935]]},{"type":"Polygon","id":20177,"properties":{"id":"20177","name":"Shawnee"},"arcs":[[-4020,4174,4175,4176,-3946,-3847]]},{"type":"Polygon","id":17051,"properties":{"id":"17051","name":"Fayette"},"arcs":[[-3854,4177,4178,4179,4180,4181,-3973]]},{"type":"Polygon","id":17049,"properties":{"id":"17049","name":"Effingham"},"arcs":[[-4049,4182,4183,-4178,-3853]]},{"type":"Polygon","id":20197,"properties":{"id":"20197","name":"Wabaunsee"},"arcs":[[-4177,4184,4185,4186,-4168,-3939,-3947]]},{"type":"Polygon","id":39079,"properties":{"id":"39079","name":"Jackson"},"arcs":[[4187,4188,4189,4190,-3984,-4039]]},{"type":"Polygon","id":39105,"properties":{"id":"39105","name":"Meigs"},"arcs":[[4191,4192,-4037,-3957,-4033,4193]]},{"type":"Polygon","id":51840,"properties":{"id":"51840","name":"Winchester"},"arcs":[[4007]]},{"type":"Polygon","id":20209,"properties":{"id":"20209","name":"Wyandotte"},"arcs":[[-3965,-4010,-4164,4194,-4021]]},{"type":"Polygon","id":39131,"properties":{"id":"39131","name":"Pike"},"arcs":[[4195,4196,-4050,-3985,-4191]]},{"type":"Polygon","id":18079,"properties":{"id":"18079","name":"Jennings"},"arcs":[[4197,4198,4199,-4074,-4012,-4110]]},{"type":"Polygon","id":54105,"properties":{"id":"54105","name":"Wirt"},"arcs":[[4200,4201,4202,-4031,-4042]]},{"type":"Polygon","id":17033,"properties":{"id":"17033","name":"Crawford"},"arcs":[[-4139,4203,4204,4205,4206,-3992]]},{"type":"Polygon","id":17079,"properties":{"id":"17079","name":"Jasper"},"arcs":[[-4207,4207,4208,-4183,-4048,-3993]]},{"type":"Polygon","id":18055,"properties":{"id":"18055","name":"Greene"},"arcs":[[-3998,-4073,4209,4210,4211,4212,-4137,-3885]]},{"type":"Polygon","id":54041,"properties":{"id":"54041","name":"Lewis"},"arcs":[[4213,4214,4215,4216,-4015,-4002]]},{"type":"Polygon","id":32023,"properties":{"id":"32023","name":"Nye"},"arcs":[[-2956,-3527,4217,4218,4219,4220,4221,-3606,-2958]]},{"type":"Polygon","id":29139,"properties":{"id":"29139","name":"Montgomery"},"arcs":[[-3891,-4167,4222,4223,4224,4225,-4077]]},{"type":"Polygon","id":21015,"properties":{"id":"21015","name":"Boone"},"arcs":[[4226,4227,4228,4229,4230,-4111,-4104]]},{"type":"Polygon","id":24011,"properties":{"id":"24011","name":"Caroline"},"arcs":[[4231,4232,4233,4234,-4134,-4067]]},{"type":"Polygon","id":20109,"properties":{"id":"20109","name":"Logan"},"arcs":[[4235,4236,4237,4238,-3919,-3923]]},{"type":"Polygon","id":20199,"properties":{"id":"20199","name":"Wallace"},"arcs":[[-4239,4239,4240,4241,-3905,-3920]]},{"type":"Polygon","id":20051,"properties":{"id":"20051","name":"Ellis"},"arcs":[[-3927,4242,4243,4244,4245,-3912]]},{"type":"Polygon","id":20063,"properties":{"id":"20063","name":"Gove"},"arcs":[[-3929,-3937,4246,4247,4248,4249,-4236,-3922]]},{"type":"Polygon","id":20041,"properties":{"id":"20041","name":"Dickinson"},"arcs":[[-4170,4250,4251,4252,-4113,-3932]]},{"type":"Polygon","id":20167,"properties":{"id":"20167","name":"Russell"},"arcs":[[-4174,4253,4254,4255,-4243,-3926]]},{"type":"Polygon","id":20195,"properties":{"id":"20195","name":"Trego"},"arcs":[[-3913,-4246,4256,-4247,-3936]]},{"type":"Polygon","id":24033,"properties":{"id":"24033","name":"Prince George's"},"arcs":[[-4158,4257,4258,4259,4260,4261,-4080,-4058]]},{"type":"Polygon","id":8119,"properties":{"id":"8119","name":"Teller"},"arcs":[[4262,4263,-3952,-3681,-3943]]},{"type":"Polygon","id":8041,"properties":{"id":"8041","name":"El Paso"},"arcs":[[-3945,-3951,4264,4265,-4263,-3942]]},{"type":"Polygon","id":21037,"properties":{"id":"21037","name":"Campbell"},"arcs":[[-4127,4266,4267,-4102]]},{"type":"Polygon","id":54083,"properties":{"id":"54083","name":"Randolph"},"arcs":[[-4089,4268,4269,4270,4271,-4119,-4124]]},{"type":"Polygon","id":32005,"properties":{"id":"32005","name":"Douglas"},"arcs":[[-3767,4272,4273,4274,-4097,-4153]]},{"type":"Polygon","id":54097,"properties":{"id":"54097","name":"Upshur"},"arcs":[[-4120,-4272,4275,-4214,-4001]]},{"type":"Polygon","id":54021,"properties":{"id":"54021","name":"Gilmer"},"arcs":[[-4217,4276,4277,-4040,-4016]]},{"type":"Polygon","id":51171,"properties":{"id":"51171","name":"Shenandoah"},"arcs":[[4278,4279,4280,-4154,-4006]]},{"type":"Polygon","id":21117,"properties":{"id":"21117","name":"Kenton"},"arcs":[[-4268,4281,4282,-4227,-4103]]},{"type":"Polygon","id":54035,"properties":{"id":"54035","name":"Jackson"},"arcs":[[-4203,4283,4284,4285,4286,-4194,-4032]]},{"type":"Polygon","id":32021,"properties":{"id":"32021","name":"Mineral"},"arcs":[[-4222,4287,4288,-3765,-3607]]},{"type":"Polygon","id":18071,"properties":{"id":"18071","name":"Jackson"},"arcs":[[-4200,4289,4290,4291,-4071,-4084,-4075]]},{"type":"Polygon","id":20045,"properties":{"id":"20045","name":"Douglas"},"arcs":[[-4023,4292,4293,4294,-4175,-4019]]},{"type":"Polygon","id":6017,"properties":{"id":"6017","name":"El Dorado"},"arcs":[[-4275,4295,4296,4297,-4098]]},{"type":"Polygon","id":29027,"properties":{"id":"29027","name":"Callaway"},"arcs":[[-4078,-4226,4298,4299,-4149]]},{"type":"Polygon","id":29053,"properties":{"id":"29053","name":"Cooper"},"arcs":[[-4152,4300,4301,4302,-4027,-4085]]},{"type":"MultiPolygon","id":51059,"properties":{"id":"51059","name":"Fairfax"},"arcs":[[[4303,4304,4305,4306,4307,4308,-4092,-4082],[4309]],[[4310]]]},{"type":"Polygon","id":8015,"properties":{"id":"8015","name":"Chaffee"},"arcs":[[-3954,4311,4312,-4140,-4064,-4046]]},{"type":"Polygon","id":20091,"properties":{"id":"20091","name":"Johnson"},"arcs":[[-4163,4313,4314,-4293,-4022,-4195]]},{"type":"Polygon","id":39001,"properties":{"id":"39001","name":"Adams"},"arcs":[[4315,4316,4317,-4146,-4051,-4197]]},{"type":"Polygon","id":49041,"properties":{"id":"49041","name":"Sevier"},"arcs":[[-3820,4318,4319,4320,-3959,-3730]]},{"type":"Polygon","id":8017,"properties":{"id":"8017","name":"Cheyenne"},"arcs":[[-4242,4321,4322,-3948,-3906]]},{"type":"Polygon","id":54013,"properties":{"id":"54013","name":"Calhoun"},"arcs":[[-4278,4323,4324,4325,-4201,-4041]]},{"type":"Polygon","id":51187,"properties":{"id":"51187","name":"Warren"},"arcs":[[4326,4327,4328,-4279,-4005,-4130]]},{"type":"Polygon","id":39053,"properties":{"id":"39053","name":"Gallia"},"arcs":[[4329,4330,4331,-4188,-4038,-4193]]},{"type":"Polygon","id":18115,"properties":{"id":"18115","name":"Ohio"},"arcs":[[4332,-4107,-4112,-4231]]},{"type":"Polygon","id":54053,"properties":{"id":"54053","name":"Mason"},"arcs":[[-4287,4333,4334,-4330,-4192]]},{"type":"Polygon","id":17005,"properties":{"id":"17005","name":"Bond"},"arcs":[[-4182,4335,4336,-3974]]},{"type":"Polygon","id":39145,"properties":{"id":"39145","name":"Scioto"},"arcs":[[-4190,4337,4338,4339,-4316,-4196]]},{"type":"Polygon","id":51061,"properties":{"id":"51061","name":"Fauquier"},"arcs":[[4340,4341,4342,4343,-4327,-4129,-4094]]},{"type":"Polygon","id":17119,"properties":{"id":"17119","name":"Madison"},"arcs":[[-3977,-3975,-4337,4344,4345,4346,4347,4348,-4131]]},{"type":"Polygon","id":29219,"properties":{"id":"29219","name":"Warren"},"arcs":[[4349,4350,4351,-4223,-4166]]},{"type":"Polygon","id":11001,"properties":{"id":"11001","name":"District of Columbia"},"arcs":[[4352,4353,-4081,-4262]]},{"type":"Polygon","id":18093,"properties":{"id":"18093","name":"Lawrence"},"arcs":[[-4292,4354,4355,4356,-4210,-4072]]},{"type":"Polygon","id":29183,"properties":{"id":"29183","name":"St. Charles"},"arcs":[[-4349,4357,4358,-4350,-4165,-4035,-4132]]},{"type":"Polygon","id":10005,"properties":{"id":"10005","name":"Sussex"},"arcs":[[4359,4360,4361,4362,4363,4364,-4232,-4066]]},{"type":"Polygon","id":20169,"properties":{"id":"20169","name":"Saline"},"arcs":[[-4253,4365,4366,-4172,-4114]]},{"type":"Polygon","id":54071,"properties":{"id":"54071","name":"Pendleton"},"arcs":[[-4156,4367,4368,4369,4370,-4269,-4088]]},{"type":"Polygon","id":29159,"properties":{"id":"29159","name":"Pettis"},"arcs":[[-4303,4371,4372,4373,4374,-4121,-4028]]},{"type":"Polygon","id":24041,"properties":{"id":"24041","name":"Talbot"},"arcs":[[-4235,4375,-4135]]},{"type":"Polygon","id":51153,"properties":{"id":"51153","name":"Prince William"},"arcs":[[-4309,4376,4377,-4341,-4093],[4378,-4379,4379]]},{"type":"Polygon","id":54087,"properties":{"id":"54087","name":"Roane"},"arcs":[[-4326,4380,4381,-4284,-4202]]},{"type":"Polygon","id":29101,"properties":{"id":"29101","name":"Johnson"},"arcs":[[-4375,4382,4383,-4161,-4122]]},{"type":"Polygon","id":51013,"properties":{"id":"51013","name":"Arlington"},"arcs":[[4384,-4306,-4305,-4304,-4354,4385]]},{"type":"Polygon","id":6003,"properties":{"id":"6003","name":"Alpine"},"arcs":[[4386,4387,4388,4389,-4296,-4274]]},{"type":"Polygon","id":18155,"properties":{"id":"18155","name":"Switzerland"},"arcs":[[-4230,4390,4391,4392,-4108,-4333]]},{"type":"Polygon","id":29135,"properties":{"id":"29135","name":"Moniteau"},"arcs":[[4393,4394,4395,-4301,-4151]]},{"type":"Polygon","id":6113,"properties":{"id":"6113","name":"Yolo"},"arcs":[[-4117,4396,4397,4398,-3901,-4025]]},{"type":"Polygon","id":18077,"properties":{"id":"18077","name":"Jefferson"},"arcs":[[-4393,4399,4400,4401,4402,-4198,-4109]]},{"type":"Polygon","id":17025,"properties":{"id":"17025","name":"Clay"},"arcs":[[-4209,4403,4404,4405,-4179,-4184]]},{"type":"Polygon","id":18083,"properties":{"id":"18083","name":"Knox"},"arcs":[[4406,4407,4408,4409,4410,-4204,-4138,-4213]]},{"type":"Polygon","id":18101,"properties":{"id":"18101","name":"Martin"},"arcs":[[-4357,4411,4412,4413,-4211]]},{"type":"Polygon","id":18027,"properties":{"id":"18027","name":"Daviess"},"arcs":[[4414,4415,-4407,-4212,-4414]]},{"type":"Polygon","id":54007,"properties":{"id":"54007","name":"Braxton"},"arcs":[[-4216,4416,4417,4418,-4324,-4277]]},{"type":"Polygon","id":29189,"properties":{"id":"29189","name":"St. Louis"},"arcs":[[-4348,4419,4420,4421,4422,4423,-4358]]},{"type":"Polygon","id":21191,"properties":{"id":"21191","name":"Pendleton"},"arcs":[[4424,4425,-4282,-4267,-4126,4426]]},{"type":"Polygon","id":20127,"properties":{"id":"20127","name":"Morris"},"arcs":[[-4187,4427,4428,4429,-4251,-4169]]},{"type":"Polygon","id":20053,"properties":{"id":"20053","name":"Ellsworth"},"arcs":[[-4367,4430,4431,4432,-4254,-4173]]},{"type":"Polygon","id":20139,"properties":{"id":"20139","name":"Osage"},"arcs":[[-4295,4433,4434,4435,-4185,-4176]]},{"type":"Polygon","id":51600,"properties":{"id":"51600","name":"Fairfax"},"arcs":[[4309],[4310]]},{"type":"Polygon","id":6055,"properties":{"id":"6055","name":"Napa"},"arcs":[[4436,4437,4438,4439,4440,-3902,-4399]]},{"type":"Polygon","id":51157,"properties":{"id":"51157","name":"Rappahannock"},"arcs":[[4441,4442,4443,-4328,-4344]]},{"type":"Polygon","id":21077,"properties":{"id":"21077","name":"Gallatin"},"arcs":[[4444,4445,4446,-4391,-4229]]},{"type":"Polygon","id":6097,"properties":{"id":"6097","name":"Sonoma"},"arcs":[[-3903,-4441,4447,4448,4449,-3587]]},{"type":"Polygon","id":17101,"properties":{"id":"17101","name":"Lawrence"},"arcs":[[4450,4451,-4205,-4411]]},{"type":"Polygon","id":51165,"properties":{"id":"51165","name":"Rockingham"},"arcs":[[-4281,4452,4453,4454,4455,-4368,-4155],[4456]]},{"type":"Polygon","id":17159,"properties":{"id":"17159","name":"Richland"},"arcs":[[-4206,-4452,4457,4458,4459,-4404,-4208]]},{"type":"Polygon","id":39087,"properties":{"id":"39087","name":"Lawrence"},"arcs":[[4460,4461,4462,4463,-4338,-4189,-4332]]},{"type":"Polygon","id":29037,"properties":{"id":"29037","name":"Cass"},"arcs":[[-4384,4464,4465,4466,-4314,-4162]]},{"type":"Polygon","id":51510,"properties":{"id":"51510","name":"Alexandria"},"arcs":[[4467,-4307,-4385]]},{"type":"Polygon","id":51139,"properties":{"id":"51139","name":"Page"},"arcs":[[-4444,4468,4469,-4453,-4280,-4329]]},{"type":"Polygon","id":18143,"properties":{"id":"18143","name":"Scott"},"arcs":[[-4403,4470,4471,-4290,-4199]]},{"type":"Polygon","id":21023,"properties":{"id":"21023","name":"Bracken"},"arcs":[[-4148,4472,4473,4474,-4427,-4125]]},{"type":"Polygon","id":17121,"properties":{"id":"17121","name":"Marion"},"arcs":[[-4406,4475,4476,4477,4478,-4180]]},{"type":"Polygon","id":21081,"properties":{"id":"21081","name":"Grant"},"arcs":[[-4283,-4426,4479,4480,4481,-4445,-4228]]},{"type":"Polygon","id":51685,"properties":{"id":"51685","name":"Manassas Park"},"arcs":[[4378,-4379,4379]]},{"type":"Polygon","id":18175,"properties":{"id":"18175","name":"Washington"},"arcs":[[-4472,4482,4483,4484,4485,4486,-4355,-4291]]},{"type":"Polygon","id":29510,"properties":{"id":"29510","name":"St. Louis city"},"arcs":[[-4420,-4347,4487]]},{"type":"Polygon","id":24009,"properties":{"id":"24009","name":"Calvert"},"arcs":[[4488,-4258,-4157]]},{"type":"Polygon","id":21161,"properties":{"id":"21161","name":"Mason"},"arcs":[[-4318,4489,4490,4491,-4473,-4147]]},{"type":"Polygon","id":21041,"properties":{"id":"21041","name":"Carroll"},"arcs":[[4492,4493,4494,-4400,-4392,-4447]]},{"type":"Polygon","id":21089,"properties":{"id":"21089","name":"Greenup"},"arcs":[[-4464,4495,4496,4497,-4339]]},{"type":"Polygon","id":17027,"properties":{"id":"17027","name":"Clinton"},"arcs":[[-4181,-4479,4498,4499,-4345,-4336]]},{"type":"Polygon","id":54075,"properties":{"id":"54075","name":"Pocahontas"},"arcs":[[-4371,4500,4501,4502,4503,-4270]]},{"type":"Polygon","id":29051,"properties":{"id":"29051","name":"Cole"},"arcs":[[-4300,4504,4505,-4394,-4150]]},{"type":"Polygon","id":20111,"properties":{"id":"20111","name":"Lyon"},"arcs":[[-4436,4506,4507,4508,-4428,-4186]]},{"type":"Polygon","id":20059,"properties":{"id":"20059","name":"Franklin"},"arcs":[[4509,4510,4511,-4434,-4294]]},{"type":"Polygon","id":20121,"properties":{"id":"20121","name":"Miami"},"arcs":[[-4467,4512,4513,-4510,-4315]]},{"type":"Polygon","id":54101,"properties":{"id":"54101","name":"Webster"},"arcs":[[-4276,-4271,-4504,4514,4515,-4417,-4215]]},{"type":"Polygon","id":6067,"properties":{"id":"6067","name":"Sacramento"},"arcs":[[4516,4517,4518,4519,-4397,-4116,-4099,-4298]]},{"type":"Polygon","id":21223,"properties":{"id":"21223","name":"Trimble"},"arcs":[[-4495,4520,4521,4522,-4401]]},{"type":"Polygon","id":21187,"properties":{"id":"21187","name":"Owen"},"arcs":[[-4482,4523,4524,4525,-4493,-4446]]},{"type":"Polygon","id":21135,"properties":{"id":"21135","name":"Lewis"},"arcs":[[4526,4527,4528,-4490,-4317,-4340,-4498]]},{"type":"Polygon","id":29073,"properties":{"id":"29073","name":"Gasconade"},"arcs":[[-4352,4529,4530,4531,4532,4533,-4224]]},{"type":"Polygon","id":6051,"properties":{"id":"6051","name":"Mono"},"arcs":[[-3766,-4289,4534,4535,4536,4537,4538,-4387,-4273]]},{"type":"Polygon","id":29071,"properties":{"id":"29071","name":"Franklin"},"arcs":[[-4359,-4424,4539,4540,4541,-4530,-4351]]},{"type":"Polygon","id":29151,"properties":{"id":"29151","name":"Osage"},"arcs":[[-4225,-4534,4542,4543,-4505,-4299]]},{"type":"Polygon","id":6005,"properties":{"id":"6005","name":"Amador"},"arcs":[[-4390,4544,4545,-4517,-4297]]},{"type":"Polygon","id":24019,"properties":{"id":"24019","name":"Dorchester"},"arcs":[[-4233,-4365,4546,4547]]},{"type":"Polygon","id":20171,"properties":{"id":"20171","name":"Scott"},"arcs":[[-4250,4548,4549,4550,4551,-4237]]},{"type":"Polygon","id":20101,"properties":{"id":"20101","name":"Lane"},"arcs":[[4552,4553,-4549,-4249]]},{"type":"Polygon","id":20071,"properties":{"id":"20071","name":"Greeley"},"arcs":[[4554,4555,4556,4557,-4322,-4241]]},{"type":"Polygon","id":20203,"properties":{"id":"20203","name":"Wichita"},"arcs":[[-4552,4558,4559,-4555,-4240,-4238]]},{"type":"Polygon","id":51047,"properties":{"id":"51047","name":"Culpeper"},"arcs":[[4560,4561,4562,4563,-4442,-4343]]},{"type":"Polygon","id":20135,"properties":{"id":"20135","name":"Ness"},"arcs":[[-4257,-4245,4564,4565,4566,4567,-4553,-4248]]},{"type":"Polygon","id":29141,"properties":{"id":"29141","name":"Morgan"},"arcs":[[-4396,4568,4569,4570,-4372,-4302]]},{"type":"Polygon","id":20009,"properties":{"id":"20009","name":"Barton"},"arcs":[[-4433,4571,4572,4573,4574,-4255]]},{"type":"Polygon","id":8043,"properties":{"id":"8043","name":"Fremont"},"arcs":[[-4266,4575,4576,4577,-4312,-3953,-4264]]},{"type":"Polygon","id":20165,"properties":{"id":"20165","name":"Rush"},"arcs":[[-4256,-4575,4578,-4565,-4244]]},{"type":"Polygon","id":24017,"properties":{"id":"24017","name":"Charles"},"arcs":[[-4260,4579,4580,4581]]},{"type":"Polygon","id":18117,"properties":{"id":"18117","name":"Orange"},"arcs":[[-4487,4582,4583,-4412,-4356]]},{"type":"Polygon","id":54079,"properties":{"id":"54079","name":"Putnam"},"arcs":[[4584,4585,-4334,-4286,4586]]},{"type":"Polygon","id":32017,"properties":{"id":"32017","name":"Lincoln"},"arcs":[[-3961,4587,4588,4589,4590,4591,-4218,-3526]]},{"type":"Polygon","id":8085,"properties":{"id":"8085","name":"Montrose"},"arcs":[[-4144,4592,4593,4594,-4063,-4171]]},{"type":"Polygon","id":54015,"properties":{"id":"54015","name":"Clay"},"arcs":[[4595,4596,-4381,-4325,-4419]]},{"type":"Polygon","id":17163,"properties":{"id":"17163","name":"St. Clair"},"arcs":[[-4500,4597,4598,4599,-4421,-4488,-4346]]},{"type":"Polygon","id":51113,"properties":{"id":"51113","name":"Madison"},"arcs":[[-4564,4600,4601,-4469,-4443]]},{"type":"Polygon","id":54039,"properties":{"id":"54039","name":"Kanawha"},"arcs":[[-4382,-4597,4602,4603,4604,4605,4606,-4587,-4285]]},{"type":"Polygon","id":8061,"properties":{"id":"8061","name":"Kiowa"},"arcs":[[-4558,4607,4608,4609,4610,-3949,-4323]]},{"type":"Polygon","id":20113,"properties":{"id":"20113","name":"McPherson"},"arcs":[[4611,4612,4613,4614,-4431,-4366]]},{"type":"Polygon","id":20115,"properties":{"id":"20115","name":"Marion"},"arcs":[[-4430,4615,4616,4617,-4612,-4252]]},{"type":"Polygon","id":21201,"properties":{"id":"21201","name":"Robertson"},"arcs":[[-4492,4618,4619,4620,-4474]]},{"type":"Polygon","id":17191,"properties":{"id":"17191","name":"Wayne"},"arcs":[[-4460,4621,4622,4623,4624,-4476,-4405]]},{"type":"Polygon","id":18019,"properties":{"id":"18019","name":"Clark"},"arcs":[[-4523,4625,4626,4627,-4483,-4471,-4402]]},{"type":"Polygon","id":54011,"properties":{"id":"54011","name":"Cabell"},"arcs":[[-4335,-4586,4628,4629,-4461,-4331]]},{"type":"Polygon","id":21103,"properties":{"id":"21103","name":"Henry"},"arcs":[[4630,4631,4632,-4521,-4494,-4526]]},{"type":"Polygon","id":51091,"properties":{"id":"51091","name":"Highland"},"arcs":[[4633,4634,-4501,-4370]]},{"type":"Polygon","id":51179,"properties":{"id":"51179","name":"Stafford"},"arcs":[[4635,4636,4637,4638,4639,4640,-4561,-4342,-4378]]},{"type":"Polygon","id":21097,"properties":{"id":"21097","name":"Harrison"},"arcs":[[-4621,4641,4642,4643,-4480,-4425,-4475]]},{"type":"Polygon","id":49001,"properties":{"id":"49001","name":"Beaver"},"arcs":[[-4321,4644,4645,4646,-4588,-3960]]},{"type":"Polygon","id":17047,"properties":{"id":"17047","name":"Edwards"},"arcs":[[4647,4648,-4622,-4459]]},{"type":"Polygon","id":17185,"properties":{"id":"17185","name":"Wabash"},"arcs":[[-4458,-4451,-4410,4649,4650,-4648]]},{"type":"Polygon","id":29083,"properties":{"id":"29083","name":"Henry"},"arcs":[[-4374,4651,4652,4653,-4465,-4383]]},{"type":"Polygon","id":24045,"properties":{"id":"24045","name":"Wicomico"},"arcs":[[4654,4655,4656,-4547,-4364]]},{"type":"Polygon","id":54067,"properties":{"id":"54067","name":"Nicholas"},"arcs":[[-4516,4657,4658,-4603,-4596,-4418]]},{"type":"Polygon","id":18125,"properties":{"id":"18125","name":"Pike"},"arcs":[[4659,4660,4661,-4408,-4416]]},{"type":"MultiPolygon","id":6095,"properties":{"id":"6095","name":"Solano"},"arcs":[[[4662,-4439]],[[-4520,4663,-4437,-4398]]]},{"type":"Polygon","id":29015,"properties":{"id":"29015","name":"Benton"},"arcs":[[-4571,4664,4665,4666,-4652,-4373]]},{"type":"Polygon","id":18051,"properties":{"id":"18051","name":"Gibson"},"arcs":[[4667,4668,4669,4670,-4650,-4409,-4662]]},{"type":"Polygon","id":18037,"properties":{"id":"18037","name":"Dubois"},"arcs":[[-4584,4671,4672,4673,4674,-4660,-4415,-4413]]},{"type":"Polygon","id":21069,"properties":{"id":"21069","name":"Fleming"},"arcs":[[4675,4676,4677,-4619,-4491,-4529]]},{"type":"Polygon","id":21185,"properties":{"id":"21185","name":"Oldham"},"arcs":[[-4633,4678,4679,-4626,-4522]]},{"type":"Polygon","id":20017,"properties":{"id":"20017","name":"Chase"},"arcs":[[-4509,4680,4681,-4616,-4429]]},{"type":"Polygon","id":8101,"properties":{"id":"8101","name":"Pueblo"},"arcs":[[4682,4683,4684,4685,4686,-4576,-4265]]},{"type":"Polygon","id":8025,"properties":{"id":"8025","name":"Crowley"},"arcs":[[-4611,4687,-4683,-3950]]},{"type":"Polygon","id":20159,"properties":{"id":"20159","name":"Rice"},"arcs":[[-4615,4688,4689,-4572,-4432]]},{"type":"Polygon","id":17133,"properties":{"id":"17133","name":"Monroe"},"arcs":[[4690,4691,4692,-4422,-4600]]},{"type":"Polygon","id":17189,"properties":{"id":"17189","name":"Washington"},"arcs":[[-4478,4693,4694,4695,-4598,-4499]]},{"type":"Polygon","id":24037,"properties":{"id":"24037","name":"St. Mary's"},"arcs":[[-4581,4696]]},{"type":"Polygon","id":6009,"properties":{"id":"6009","name":"Calaveras"},"arcs":[[4697,4698,4699,-4545,-4389]]},{"type":"Polygon","id":49031,"properties":{"id":"49031","name":"Piute"},"arcs":[[4700,4701,-4645,-4320]]},{"type":"Polygon","id":49055,"properties":{"id":"49055","name":"Wayne"},"arcs":[[-3819,4702,4703,-4701,-4319]]},{"type":"Polygon","id":29099,"properties":{"id":"29099","name":"Jefferson"},"arcs":[[-4693,4704,4705,4706,-4540,-4423]]},{"type":"Polygon","id":21019,"properties":{"id":"21019","name":"Boyd"},"arcs":[[4707,4708,-4496,-4463,4709]]},{"type":"Polygon","id":21043,"properties":{"id":"21043","name":"Carter"},"arcs":[[-4709,4710,4711,4712,-4527,-4497]]},{"type":"Polygon","id":49037,"properties":{"id":"49037","name":"San Juan"},"arcs":[[-4595,4713,4714,4715,4716,4717,4718,4719,4720,-4703,-3990]]},{"type":"Polygon","id":21209,"properties":{"id":"21209","name":"Scott"},"arcs":[[4721,4722,4723,4724,-4524,-4481,-4644]]},{"type":"Polygon","id":51660,"properties":{"id":"51660","name":"Harrisonburg"},"arcs":[[4456]]},{"type":"Polygon","id":51079,"properties":{"id":"51079","name":"Greene"},"arcs":[[4725,4726,-4454,-4470,-4602]]},{"type":"Polygon","id":51015,"properties":{"id":"51015","name":"Augusta"},"arcs":[[4727,4728,4729,4730,-4634,-4369,-4456],[4731],[4732]]},{"type":"Polygon","id":17081,"properties":{"id":"17081","name":"Jefferson"},"arcs":[[-4625,4733,4734,4735,-4694,-4477]]},{"type":"Polygon","id":29013,"properties":{"id":"29013","name":"Bates"},"arcs":[[-4654,4736,4737,4738,-4513,-4466]]},{"type":"Polygon","id":32009,"properties":{"id":"32009","name":"Esmeralda"},"arcs":[[4739,-4535,-4288,-4221]]},{"type":"Polygon","id":21181,"properties":{"id":"21181","name":"Nicholas"},"arcs":[[-4678,4740,4741,-4642,-4620]]},{"type":"Polygon","id":8109,"properties":{"id":"8109","name":"Saguache"},"arcs":[[-4578,4742,4743,4744,4745,4746,4747,-4141,-4313]]},{"type":"MultiPolygon","id":24047,"properties":{"id":"24047","name":"Worcester"},"arcs":[[[4748,-4749,4749]],[[-4361,4360,4750]],[[4751,4752,4753,-4655,-4363,4754]]]},{"type":"Polygon","id":6109,"properties":{"id":"6109","name":"Tuolumne"},"arcs":[[-4539,4755,4756,4757,-4698,-4388]]},{"type":"Polygon","id":20031,"properties":{"id":"20031","name":"Coffey"},"arcs":[[-4512,4758,4759,4760,-4507,-4435]]},{"type":"Polygon","id":29131,"properties":{"id":"29131","name":"Miller"},"arcs":[[-4506,-4544,4761,4762,4763,-4569,-4395]]},{"type":"Polygon","id":18025,"properties":{"id":"18025","name":"Crawford"},"arcs":[[4764,4765,4766,-4672,-4583,-4486]]},{"type":"Polygon","id":18061,"properties":{"id":"18061","name":"Harrison"},"arcs":[[4767,4768,4769,4770,-4765,-4485]]},{"type":"Polygon","id":54099,"properties":{"id":"54099","name":"Wayne"},"arcs":[[-4630,4771,4772,4773,4774,-4710,-4462]]},{"type":"Polygon","id":18043,"properties":{"id":"18043","name":"Floyd"},"arcs":[[-4628,4775,-4768,-4484]]},{"type":"Polygon","id":51099,"properties":{"id":"51099","name":"King George"},"arcs":[[4776,4777,4778,4779,-4637,4780]]},{"type":"Polygon","id":21205,"properties":{"id":"21205","name":"Rowan"},"arcs":[[-4713,4781,4782,4783,4784,-4676,-4528]]},{"type":"Polygon","id":51137,"properties":{"id":"51137","name":"Orange"},"arcs":[[4785,4786,4787,-4726,-4601,-4563]]},{"type":"Polygon","id":20003,"properties":{"id":"20003","name":"Anderson"},"arcs":[[4788,4789,-4759,-4511]]},{"type":"Polygon","id":20107,"properties":{"id":"20107","name":"Linn"},"arcs":[[-4739,4790,4791,-4789,-4514]]},{"type":"Polygon","id":21111,"properties":{"id":"21111","name":"Jefferson"},"arcs":[[4792,4793,4794,4795,-4769,-4776,-4627,-4680]]},{"type":"Polygon","id":51177,"properties":{"id":"51177","name":"Spotsylvania"},"arcs":[[-4641,-4640,-4639,4796,4797,4798,-4786,-4562]]},{"type":"Polygon","id":54043,"properties":{"id":"54043","name":"Lincoln"},"arcs":[[-4585,-4607,4799,4800,4801,-4772,-4629]]},{"type":"Polygon","id":21073,"properties":{"id":"21073","name":"Franklin"},"arcs":[[-4525,-4725,4802,4803,4804,-4631]]},{"type":"Polygon","id":21017,"properties":{"id":"21017","name":"Bourbon"},"arcs":[[4805,4806,4807,-4722,-4643,-4742]]},{"type":"Polygon","id":21211,"properties":{"id":"21211","name":"Shelby"},"arcs":[[4808,4809,-4793,-4679,-4632,-4805]]},{"type":"Polygon","id":20145,"properties":{"id":"20145","name":"Pawnee"},"arcs":[[-4574,4810,4811,4812,-4566,-4579]]},{"type":"Polygon","id":8091,"properties":{"id":"8091","name":"Ouray"},"arcs":[[-4143,4813,4814,4815,-4593]]},{"type":"Polygon","id":6041,"properties":{"id":"6041","name":"Marin"},"arcs":[[4816,-4449]]},{"type":"Polygon","id":21011,"properties":{"id":"21011","name":"Bath"},"arcs":[[-4785,4817,4818,-4741,-4677]]},{"type":"Polygon","id":6077,"properties":{"id":"6077","name":"San Joaquin"},"arcs":[[-4546,-4700,4819,4820,4821,4822,-4518]]},{"type":"Polygon","id":29125,"properties":{"id":"29125","name":"Maries"},"arcs":[[-4533,4823,4824,-4762,-4543]]},{"type":"MultiPolygon","id":24039,"properties":{"id":"24039","name":"Somerset"},"arcs":[[[4825,-4826,4826]],[[4827,4828,4829]],[[4830,4831,4832]],[[-4656,-4754,4833]]]},{"type":"Polygon","id":51003,"properties":{"id":"51003","name":"Albemarle"},"arcs":[[-4788,4834,4835,4836,4837,-4728,-4455,-4727],[4838]]},{"type":"Polygon","id":51193,"properties":{"id":"51193","name":"Westmoreland"},"arcs":[[4839,4840,4841,-4777,4842]]},{"type":"Polygon","id":29029,"properties":{"id":"29029","name":"Camden"},"arcs":[[-4764,4843,4844,4845,4846,-4665,-4570]]},{"type":"Polygon","id":21127,"properties":{"id":"21127","name":"Lawrence"},"arcs":[[-4775,4847,4848,4849,4850,-4711,-4708]]},{"type":"Polygon","id":51017,"properties":{"id":"51017","name":"Bath"},"arcs":[[-4635,-4731,4851,4852,4853,-4502]]},{"type":"Polygon","id":8099,"properties":{"id":"8099","name":"Prowers"},"arcs":[[-4557,4854,4855,4856,4857,-4608]]},{"type":"Polygon","id":54025,"properties":{"id":"54025","name":"Greenbrier"},"arcs":[[-4854,4858,4859,4860,4861,-4658,-4515,-4503]]},{"type":"Polygon","id":21063,"properties":{"id":"21063","name":"Elliott"},"arcs":[[-4851,4862,-4782,-4712]]},{"type":"Polygon","id":8027,"properties":{"id":"8027","name":"Custer"},"arcs":[[-4687,4863,-4743,-4577]]},{"type":"Polygon","id":8011,"properties":{"id":"8011","name":"Bent"},"arcs":[[-4858,4864,4865,4866,-4609]]},{"type":"Polygon","id":8089,"properties":{"id":"8089","name":"Otero"},"arcs":[[-4867,4867,-4684,-4688,-4610]]},{"type":"Polygon","id":18123,"properties":{"id":"18123","name":"Perry"},"arcs":[[4868,4869,4870,4871,-4673,-4767]]},{"type":"Polygon","id":54019,"properties":{"id":"54019","name":"Fayette"},"arcs":[[-4659,-4862,4872,4873,-4604]]},{"type":"Polygon","id":20093,"properties":{"id":"20093","name":"Kearny"},"arcs":[[4874,4875,4876,-4559,-4551]]},{"type":"Polygon","id":20055,"properties":{"id":"20055","name":"Finney"},"arcs":[[-4554,-4568,4877,4878,4879,-4875,-4550]]},{"type":"Polygon","id":20075,"properties":{"id":"20075","name":"Hamilton"},"arcs":[[-4877,4880,-4855,-4556,-4560]]},{"type":"Polygon","id":17193,"properties":{"id":"17193","name":"White"},"arcs":[[-4651,-4671,4881,4882,4883,-4623,-4649]]},{"type":"Polygon","id":20185,"properties":{"id":"20185","name":"Stafford"},"arcs":[[-4690,4884,4885,4886,-4811,-4573]]},{"type":"Polygon","id":20083,"properties":{"id":"20083","name":"Hodgeman"},"arcs":[[-4813,4887,4888,4889,-4878,-4567]]},{"type":"Polygon","id":17065,"properties":{"id":"17065","name":"Hamilton"},"arcs":[[-4884,4890,4891,4892,-4734,-4624]]},{"type":"Polygon","id":51033,"properties":{"id":"51033","name":"Caroline"},"arcs":[[-4780,4893,4894,4895,4896,-4797,-4638]]},{"type":"Polygon","id":18173,"properties":{"id":"18173","name":"Warrick"},"arcs":[[-4675,4897,4898,4899,4900,-4668,-4661]]},{"type":"Polygon","id":18129,"properties":{"id":"18129","name":"Posey"},"arcs":[[4901,4902,4903,4904,-4882,-4670]]},{"type":"Polygon","id":54005,"properties":{"id":"54005","name":"Boone"},"arcs":[[4905,4906,4907,-4800,-4606]]},{"type":"Polygon","id":17157,"properties":{"id":"17157","name":"Randolph"},"arcs":[[-4599,-4696,4908,4909,4910,4911,-4691]]},{"type":"Polygon","id":29185,"properties":{"id":"29185","name":"St. Clair"},"arcs":[[-4667,4912,4913,4914,4915,-4737,-4653]]},{"type":"Polygon","id":17145,"properties":{"id":"17145","name":"Perry"},"arcs":[[-4695,-4736,4916,4917,-4909]]},{"type":"Polygon","id":29055,"properties":{"id":"29055","name":"Crawford"},"arcs":[[-4542,4918,4919,4920,4921,-4531]]},{"type":"Polygon","id":21067,"properties":{"id":"21067","name":"Fayette"},"arcs":[[4922,4923,4924,4925,-4723,-4808]]},{"type":"Polygon","id":29221,"properties":{"id":"29221","name":"Washington"},"arcs":[[-4707,4926,4927,-4919,-4541]]},{"type":"Polygon","id":18147,"properties":{"id":"18147","name":"Spencer"},"arcs":[[-4872,4928,4929,-4898,-4674]]},{"type":"Polygon","id":21163,"properties":{"id":"21163","name":"Meade"},"arcs":[[4930,4931,-4869,-4766,-4771]]},{"type":"Polygon","id":51790,"properties":{"id":"51790","name":"Staunton"},"arcs":[[4731]]},{"type":"Polygon","id":21239,"properties":{"id":"21239","name":"Woodford"},"arcs":[[-4926,4932,4933,4934,-4803,-4724]]},{"type":"Polygon","id":21173,"properties":{"id":"21173","name":"Montgomery"},"arcs":[[4935,4936,4937,-4806,-4819]]},{"type":"Polygon","id":20079,"properties":{"id":"20079","name":"Harvey"},"arcs":[[4938,4939,4940,-4613,-4618]]},{"type":"Polygon","id":20073,"properties":{"id":"20073","name":"Greenwood"},"arcs":[[-4508,-4761,4941,4942,4943,4944,-4681]]},{"type":"Polygon","id":20155,"properties":{"id":"20155","name":"Reno"},"arcs":[[-4614,-4941,4945,4946,4947,-4885,-4689]]},{"type":"Polygon","id":18163,"properties":{"id":"18163","name":"Vanderburgh"},"arcs":[[-4901,4948,-4902,-4669]]},{"type":"Polygon","id":29161,"properties":{"id":"29161","name":"Phelps"},"arcs":[[-4922,4949,4950,4951,-4824,-4532]]},{"type":"Polygon","id":49017,"properties":{"id":"49017","name":"Garfield"},"arcs":[[-4721,4952,4953,-4646,-4702,-4704]]},{"type":"Polygon","id":51057,"properties":{"id":"51057","name":"Essex"},"arcs":[[4954,4955,-4894,-4779,4956]]},{"type":"Polygon","id":8113,"properties":{"id":"8113","name":"San Miguel"},"arcs":[[-4816,4957,4958,-4714,-4594]]},{"type":"Polygon","id":51109,"properties":{"id":"51109","name":"Louisa"},"arcs":[[-4799,4959,4960,4961,-4835,-4787]]},{"type":"Polygon","id":49021,"properties":{"id":"49021","name":"Iron"},"arcs":[[-4954,4962,4963,-4589,-4647]]},{"type":"Polygon","id":21215,"properties":{"id":"21215","name":"Spencer"},"arcs":[[4964,4965,4966,-4794,-4810]]},{"type":"Polygon","id":8053,"properties":{"id":"8053","name":"Hinsdale"},"arcs":[[-4748,4967,4968,4969,4970,-4814,-4142]]},{"type":"Polygon","id":21005,"properties":{"id":"21005","name":"Anderson"},"arcs":[[-4935,4971,4972,4973,-4965,-4809,-4804]]},{"type":"Polygon","id":17055,"properties":{"id":"17055","name":"Franklin"},"arcs":[[-4893,4974,4975,4976,-4917,-4735]]},{"type":"Polygon","id":51159,"properties":{"id":"51159","name":"Richmond"},"arcs":[[4977,4978,4979,-4841]]},{"type":"Polygon","id":29186,"properties":{"id":"29186","name":"Ste. Genevieve"},"arcs":[[-4912,4980,4981,-4705,-4692]]},{"type":"Polygon","id":21029,"properties":{"id":"21029","name":"Bullitt"},"arcs":[[4982,4983,-4795,-4967]]},{"type":"Polygon","id":21175,"properties":{"id":"21175","name":"Morgan"},"arcs":[[-4850,4984,4985,4986,4987,-4783,-4863]]},{"type":"Polygon","id":21049,"properties":{"id":"21049","name":"Clark"},"arcs":[[4988,4989,4990,-4923,-4807,-4938]]},{"type":"Polygon","id":6013,"properties":{"id":"6013","name":"Contra Costa"},"arcs":[[-4822,4991,4992]]},{"type":"Polygon","id":51820,"properties":{"id":"51820","name":"Waynesboro"},"arcs":[[4732]]},{"type":"Polygon","id":20015,"properties":{"id":"20015","name":"Butler"},"arcs":[[-4682,-4945,4993,4994,4995,-4939,-4617]]},{"type":"Polygon","id":20047,"properties":{"id":"20047","name":"Edwards"},"arcs":[[-4887,4996,4997,4998,-4888,-4812]]},{"type":"Polygon","id":51163,"properties":{"id":"51163","name":"Rockbridge"},"arcs":[[4999,5000,5001,5002,-4852,-4730,5003],[5004],[5005]]},{"type":"Polygon","id":29187,"properties":{"id":"29187","name":"St. Francois"},"arcs":[[-4982,5006,5007,5008,-4927,-4706]]},{"type":"Polygon","id":6099,"properties":{"id":"6099","name":"Stanislaus"},"arcs":[[5009,5010,5011,-4820,-4699,-4758]]},{"type":"Polygon","id":29085,"properties":{"id":"29085","name":"Hickory"},"arcs":[[-4847,5012,5013,-4913,-4666]]},{"type":"Polygon","id":51540,"properties":{"id":"51540","name":"Charlottesville"},"arcs":[[4838]]},{"type":"Polygon","id":29217,"properties":{"id":"29217","name":"Vernon"},"arcs":[[-4916,5014,5015,5016,5017,-4791,-4738]]},{"type":"Polygon","id":21165,"properties":{"id":"21165","name":"Menifee"},"arcs":[[-4784,-4988,5018,5019,-4936,-4818]]},{"type":"Polygon","id":51125,"properties":{"id":"51125","name":"Nelson"},"arcs":[[5020,5021,5022,-5004,-4729,-4838]]},{"type":"Polygon","id":21027,"properties":{"id":"21027","name":"Breckinridge"},"arcs":[[5023,5024,5025,5026,-4870,-4932]]},{"type":"Polygon","id":20207,"properties":{"id":"20207","name":"Woodson"},"arcs":[[5027,5028,-4942,-4760]]},{"type":"Polygon","id":20001,"properties":{"id":"20001","name":"Allen"},"arcs":[[5029,5030,-5028,-4790]]},{"type":"Polygon","id":20011,"properties":{"id":"20011","name":"Bourbon"},"arcs":[[-5018,5031,5032,-5030,-4792]]},{"type":"MultiPolygon","id":51001,"properties":{"id":"51001","name":"Accomack"},"arcs":[[[4827,-4828,5033]],[[4831,-4832,5034]],[[5035,5036,-4752,5037]]]},{"type":"Polygon","id":54045,"properties":{"id":"54045","name":"Logan"},"arcs":[[-4908,5038,5039,-4801]]},{"type":"Polygon","id":51133,"properties":{"id":"51133","name":"Northumberland"},"arcs":[[5040,-4978,-4840,5041]]},{"type":"Polygon","id":29169,"properties":{"id":"29169","name":"Pulaski"},"arcs":[[-4825,-4952,5042,5043,-4844,-4763]]},{"type":"Polygon","id":8055,"properties":{"id":"8055","name":"Huerfano"},"arcs":[[-4686,5044,5045,5046,-4744,-4864]]},{"type":"Polygon","id":51085,"properties":{"id":"51085","name":"Hanover"},"arcs":[[-4897,5047,5048,5049,5050,-4960,-4798]]},{"type":"Polygon","id":51065,"properties":{"id":"51065","name":"Fluvanna"},"arcs":[[5051,5052,-4836,-4962,5053]]},{"type":"Polygon","id":21093,"properties":{"id":"21093","name":"Hardin"},"arcs":[[5054,5055,5056,5057,-5024,-4931,-4770,-4796,-4984]]},{"type":"Polygon","id":21113,"properties":{"id":"21113","name":"Jessamine"},"arcs":[[5058,5059,5060,-4933,-4925]]},{"type":"Polygon","id":21115,"properties":{"id":"21115","name":"Johnson"},"arcs":[[5061,5062,5063,-4985,-4849]]},{"type":"Polygon","id":20069,"properties":{"id":"20069","name":"Gray"},"arcs":[[-4890,5064,5065,5066,-4879]]},{"type":"Polygon","id":21091,"properties":{"id":"21091","name":"Hancock"},"arcs":[[-5027,5067,5068,-4929,-4871]]},{"type":"Polygon","id":54081,"properties":{"id":"54081","name":"Raleigh"},"arcs":[[-4605,-4874,5069,5070,5071,-4906]]},{"type":"Polygon","id":21179,"properties":{"id":"21179","name":"Nelson"},"arcs":[[-4974,5072,5073,5074,-5055,-4983,-4966]]},{"type":"Polygon","id":54059,"properties":{"id":"54059","name":"Mingo"},"arcs":[[5075,5076,5077,5078,5079,-4773,-4802,-5040]]},{"type":"Polygon","id":21101,"properties":{"id":"21101","name":"Henderson"},"arcs":[[-4900,5080,5081,5082,5083,-4903,-4949]]},{"type":"Polygon","id":51097,"properties":{"id":"51097","name":"King and Queen"},"arcs":[[-4956,5084,5085,5086,5087,-4895]]},{"type":"Polygon","id":8111,"properties":{"id":"8111","name":"San Juan"},"arcs":[[-4971,5088,5089,-4958,-4815]]},{"type":"Polygon","id":21167,"properties":{"id":"21167","name":"Mercer"},"arcs":[[-5061,5090,5091,5092,-4972,-4934]]},{"type":"Polygon","id":8079,"properties":{"id":"8079","name":"Mineral"},"arcs":[[5093,5094,-4968,-4747]]},{"type":"Polygon","id":21159,"properties":{"id":"21159","name":"Martin"},"arcs":[[-4774,-5080,5095,5096,-5062,-4848]]},{"type":"Polygon","id":51005,"properties":{"id":"51005","name":"Alleghany"},"arcs":[[-5003,5097,5098,5099,-4859,-4853],[5100]]},{"type":"Polygon","id":17077,"properties":{"id":"17077","name":"Jackson"},"arcs":[[-4977,5101,5102,5103,-4910,-4918]]},{"type":"Polygon","id":21197,"properties":{"id":"21197","name":"Powell"},"arcs":[[-5020,5104,5105,5106,-4989,-4937]]},{"type":"Polygon","id":21059,"properties":{"id":"21059","name":"Daviess"},"arcs":[[5107,5108,-5081,-4899,-4930,-5069]]},{"type":"Polygon","id":21151,"properties":{"id":"21151","name":"Madison"},"arcs":[[5109,5110,5111,5112,-5059,-4924,-4991]]},{"type":"Polygon","id":17059,"properties":{"id":"17059","name":"Gallatin"},"arcs":[[-4905,5113,5114,5115,-4891,-4883]]},{"type":"Polygon","id":21229,"properties":{"id":"21229","name":"Washington"},"arcs":[[-5093,5116,5117,-5073,-4973]]},{"type":"Polygon","id":20057,"properties":{"id":"20057","name":"Ford"},"arcs":[[-4999,5118,5119,5120,-5065,-4889]]},{"type":"Polygon","id":20173,"properties":{"id":"20173","name":"Sedgwick"},"arcs":[[-4996,5121,5122,-4946,-4940]]},{"type":"Polygon","id":17165,"properties":{"id":"17165","name":"Saline"},"arcs":[[-5116,5123,5124,5125,-4975,-4892]]},{"type":"Polygon","id":51101,"properties":{"id":"51101","name":"King William"},"arcs":[[-5088,5126,5127,-5048,-4896]]},{"type":"Polygon","id":29059,"properties":{"id":"29059","name":"Dallas"},"arcs":[[-4846,5128,5129,5130,5131,-5013]]},{"type":"Polygon","id":6001,"properties":{"id":"6001","name":"Alameda"},"arcs":[[-4821,-5012,5132,5133,-4992]]},{"type":"Polygon","id":51075,"properties":{"id":"51075","name":"Goochland"},"arcs":[[5134,5135,5136,-5054,-4961,-5051]]},{"type":"Polygon","id":29157,"properties":{"id":"29157","name":"Perry"},"arcs":[[-5104,5137,5138,5139,5140,-5007,-4981,-4911]]},{"type":"Polygon","id":29039,"properties":{"id":"29039","name":"Cedar"},"arcs":[[5141,5142,5143,-5015,-4915]]},{"type":"Polygon","id":6043,"properties":{"id":"6043","name":"Mariposa"},"arcs":[[5144,5145,-4757]]},{"type":"Polygon","id":21225,"properties":{"id":"21225","name":"Union"},"arcs":[[5146,5147,5148,-5114,-4904,-5084]]},{"type":"Polygon","id":29105,"properties":{"id":"29105","name":"Laclede"},"arcs":[[-5044,5149,5150,5151,-5129,-4845]]},{"type":"Polygon","id":8033,"properties":{"id":"8033","name":"Dolores"},"arcs":[[-5090,5152,-4715,-4959]]},{"type":"Polygon","id":21153,"properties":{"id":"21153","name":"Magoffin"},"arcs":[[-5064,5153,5154,5155,5156,-4986]]},{"type":"Polygon","id":54089,"properties":{"id":"54089","name":"Summers"},"arcs":[[5157,5158,-5070,-4873,-4861,5159]]},{"type":"Polygon","id":17199,"properties":{"id":"17199","name":"Williamson"},"arcs":[[-5126,5160,5161,-5102,-4976]]},{"type":"Polygon","id":21237,"properties":{"id":"21237","name":"Wolfe"},"arcs":[[-5157,5162,5163,-5105,-5019,-4987]]},{"type":"Polygon","id":21065,"properties":{"id":"21065","name":"Estill"},"arcs":[[-5107,5164,5165,-5110,-4990]]},{"type":"Polygon","id":51103,"properties":{"id":"51103","name":"Lancaster"},"arcs":[[-4979,-5041,5166]]},{"type":"Polygon","id":8105,"properties":{"id":"8105","name":"Rio Grande"},"arcs":[[-4746,5167,5168,5169,-5094]]},{"type":"Polygon","id":6075,"properties":{"id":"6075","name":"San Francisco"},"arcs":[[5170,5171]]},{"type":"Polygon","id":29167,"properties":{"id":"29167","name":"Polk"},"arcs":[[-5014,-5132,5172,5173,-5142,-4914]]},{"type":"Polygon","id":21079,"properties":{"id":"21079","name":"Garrard"},"arcs":[[-5113,5174,5175,5176,-5091,-5060]]},{"type":"Polygon","id":20151,"properties":{"id":"20151","name":"Pratt"},"arcs":[[-4948,5177,5178,5179,-4997,-4886]]},{"type":"Polygon","id":51580,"properties":{"id":"51580","name":"Covington"},"arcs":[[5100]]},{"type":"Polygon","id":51009,"properties":{"id":"51009","name":"Amherst"},"arcs":[[5180,5181,5182,5183,-5000,-5023]]},{"type":"Polygon","id":8071,"properties":{"id":"8071","name":"Las Animas"},"arcs":[[-4866,5184,5185,5186,5187,-5045,-4685,-4868]]},{"type":"Polygon","id":51023,"properties":{"id":"51023","name":"Botetourt"},"arcs":[[5188,5189,5190,-5098,-5002]]},{"type":"Polygon","id":51678,"properties":{"id":"51678","name":"Lexington"},"arcs":[[5004]]},{"type":"Polygon","id":29065,"properties":{"id":"29065","name":"Dent"},"arcs":[[-4921,5191,5192,5193,5194,-4950]]},{"type":"Polygon","id":54109,"properties":{"id":"54109","name":"Wyoming"},"arcs":[[5195,5196,-5076,-5039,-4907,-5072]]},{"type":"Polygon","id":51029,"properties":{"id":"51029","name":"Buckingham"},"arcs":[[5197,5198,5199,-5021,-4837,-5053]]},{"type":"Polygon","id":6039,"properties":{"id":"6039","name":"Madera"},"arcs":[[-4538,5200,5201,-5145,-4756]]},{"type":"Polygon","id":51119,"properties":{"id":"51119","name":"Middlesex"},"arcs":[[5202,-5085,-4955,5203]]},{"type":"Polygon","id":51530,"properties":{"id":"51530","name":"Buena Vista"},"arcs":[[5005]]},{"type":"Polygon","id":21071,"properties":{"id":"21071","name":"Floyd"},"arcs":[[-5097,5204,5205,-5154,-5063]]},{"type":"Polygon","id":8003,"properties":{"id":"8003","name":"Alamosa"},"arcs":[[-5047,5206,5207,-5168,-4745]]},{"type":"Polygon","id":51049,"properties":{"id":"51049","name":"Cumberland"},"arcs":[[-5137,5208,5209,5210,-5198,-5052]]},{"type":"Polygon","id":21195,"properties":{"id":"21195","name":"Pike"},"arcs":[[5211,5212,5213,5214,5215,-5205,-5096,-5079]]},{"type":"Polygon","id":29093,"properties":{"id":"29093","name":"Iron"},"arcs":[[-5009,5216,5217,5218,-5192,-4920,-4928]]},{"type":"Polygon","id":20187,"properties":{"id":"20187","name":"Stanton"},"arcs":[[5219,5220,5221,5222,-4856,-4881]]},{"type":"Polygon","id":21183,"properties":{"id":"21183","name":"Ohio"},"arcs":[[-5026,5223,5224,5225,5226,-5108,-5068]]},{"type":"Polygon","id":20067,"properties":{"id":"20067","name":"Grant"},"arcs":[[5227,5228,-5220,-4876]]},{"type":"Polygon","id":20081,"properties":{"id":"20081","name":"Haskell"},"arcs":[[-5067,5229,5230,5231,-5228,-4880]]},{"type":"Polygon","id":20097,"properties":{"id":"20097","name":"Kiowa"},"arcs":[[-5180,5232,5233,5234,-5119,-4998]]},{"type":"Polygon","id":20095,"properties":{"id":"20095","name":"Kingman"},"arcs":[[-5123,5235,5236,5237,-5178,-4947]]},{"type":"Polygon","id":20205,"properties":{"id":"20205","name":"Wilson"},"arcs":[[5238,5239,5240,-4943,-5029]]},{"type":"Polygon","id":20133,"properties":{"id":"20133","name":"Neosho"},"arcs":[[-5033,5241,5242,5243,-5239,-5031]]},{"type":"Polygon","id":21123,"properties":{"id":"21123","name":"Larue"},"arcs":[[5244,5245,5246,5247,-5056,-5075]]},{"type":"Polygon","id":21155,"properties":{"id":"21155","name":"Marion"},"arcs":[[-5118,5248,5249,5250,-5245,-5074]]},{"type":"Polygon","id":54063,"properties":{"id":"54063","name":"Monroe"},"arcs":[[-5100,5251,5252,-5160,-4860]]},{"type":"Polygon","id":21129,"properties":{"id":"21129","name":"Lee"},"arcs":[[-5164,5253,5254,5255,-5165,-5106]]},{"type":"Polygon","id":21021,"properties":{"id":"21021","name":"Boyle"},"arcs":[[-5177,5256,5257,-5249,-5117,-5092]]},{"type":"Polygon","id":51087,"properties":{"id":"51087","name":"Henrico"},"arcs":[[5258,5259,5260,5261,5262,5263,-5135,-5050]]},{"type":"Polygon","id":6081,"properties":{"id":"6081","name":"San Mateo"},"arcs":[[5264,5265,5266,5267,-5171]]},{"type":"Polygon","id":21025,"properties":{"id":"21025","name":"Breathitt"},"arcs":[[-5156,5268,5269,5270,-5254,-5163]]},{"type":"Polygon","id":51145,"properties":{"id":"51145","name":"Powhatan"},"arcs":[[5271,5272,-5209,-5136]]},{"type":"Polygon","id":21149,"properties":{"id":"21149","name":"McLean"},"arcs":[[-5227,5273,5274,5275,-5082,-5109]]},{"type":"Polygon","id":20037,"properties":{"id":"20037","name":"Crawford"},"arcs":[[-5017,5276,5277,5278,5279,-5242,-5032]]},{"type":"Polygon","id":51045,"properties":{"id":"51045","name":"Craig"},"arcs":[[5280,5281,5282,-5252,-5099,-5191]]},{"type":"Polygon","id":8023,"properties":{"id":"8023","name":"Costilla"},"arcs":[[-5188,5283,5284,5285,-5207,-5046]]},{"type":"Polygon","id":29011,"properties":{"id":"29011","name":"Barton"},"arcs":[[-5144,5286,5287,-5277,-5016]]},{"type":"Polygon","id":21233,"properties":{"id":"21233","name":"Webster"},"arcs":[[5288,5289,5290,-5147,-5083,-5276]]},{"type":"Polygon","id":29123,"properties":{"id":"29123","name":"Madison"},"arcs":[[-5141,5291,5292,-5217,-5008]]},{"type":"Polygon","id":8009,"properties":{"id":"8009","name":"Baca"},"arcs":[[-5223,5293,5294,5295,-5185,-4865,-4857]]},{"type":"Polygon","id":8083,"properties":{"id":"8083","name":"Montezuma"},"arcs":[[5296,5297,-4716,-5153]]},{"type":"Polygon","id":8067,"properties":{"id":"8067","name":"La Plata"},"arcs":[[-4970,5298,5299,-5297,-5089]]},{"type":"Polygon","id":6047,"properties":{"id":"6047","name":"Merced"},"arcs":[[-5202,5300,5301,5302,-5010,-5146]]},{"type":"Polygon","id":21137,"properties":{"id":"21137","name":"Lincoln"},"arcs":[[5303,5304,5305,-5257,-5176]]},{"type":"Polygon","id":51127,"properties":{"id":"51127","name":"New Kent"},"arcs":[[5306,5307,5308,-5259,-5049,-5128]]},{"type":"Polygon","id":21085,"properties":{"id":"21085","name":"Grayson"},"arcs":[[-5058,5309,5310,5311,-5224,-5025]]},{"type":"Polygon","id":51019,"properties":{"id":"51019","name":"Bedford"},"arcs":[[5312,5313,5314,5315,5316,-5189,-5001,-5184],[5317]]},{"type":"Polygon","id":49053,"properties":{"id":"49053","name":"Washington"},"arcs":[[5318,5319,-4590,-4964]]},{"type":"Polygon","id":20049,"properties":{"id":"20049","name":"Elk"},"arcs":[[-5241,5320,5321,5322,-4994,-4944]]},{"type":"Polygon","id":29179,"properties":{"id":"29179","name":"Reynolds"},"arcs":[[5323,5324,5325,-5193,-5219]]},{"type":"Polygon","id":29031,"properties":{"id":"29031","name":"Cape Girardeau"},"arcs":[[5326,5327,5328,5329,5330,-5139]]},{"type":"Polygon","id":29215,"properties":{"id":"29215","name":"Texas"},"arcs":[[-4951,-5195,5331,5332,5333,5334,-5150,-5043]]},{"type":"Polygon","id":17069,"properties":{"id":"17069","name":"Hardin"},"arcs":[[-5115,-5149,5335,5336,5337,-5124]]},{"type":"Polygon","id":17151,"properties":{"id":"17151","name":"Pope"},"arcs":[[-5338,5338,5339,5340,-5125]]},{"type":"Polygon","id":51760,"properties":{"id":"51760","name":"Richmond"},"arcs":[[5341,-5263]]},{"type":"Polygon","id":17087,"properties":{"id":"17087","name":"Johnson"},"arcs":[[-5341,5342,5343,5344,-5161]]},{"type":"Polygon","id":17181,"properties":{"id":"17181","name":"Union"},"arcs":[[-5162,-5345,5345,5346,-5327,-5138,-5103]]},{"type":"Polygon","id":51073,"properties":{"id":"51073","name":"Gloucester"},"arcs":[[5347,5348,5349,-5086,-5203]]},{"type":"Polygon","id":29017,"properties":{"id":"29017","name":"Bollinger"},"arcs":[[-5331,5350,5351,-5292,-5140]]},{"type":"Polygon","id":54055,"properties":{"id":"54055","name":"Mercer"},"arcs":[[-5159,5352,5353,5354,5355,-5196,-5071]]},{"type":"Polygon","id":6019,"properties":{"id":"6019","name":"Fresno"},"arcs":[[5356,5357,5358,5359,5360,-5301,-5201,-4537]]},{"type":"Polygon","id":29057,"properties":{"id":"29057","name":"Dade"},"arcs":[[-5174,5361,5362,5363,-5287,-5143]]},{"type":"Polygon","id":21109,"properties":{"id":"21109","name":"Jackson"},"arcs":[[-5256,5364,5365,5366,5367,-5111,-5166]]},{"type":"Polygon","id":21107,"properties":{"id":"21107","name":"Hopkins"},"arcs":[[5368,5369,5370,-5289,-5275]]},{"type":"Polygon","id":51041,"properties":{"id":"51041","name":"Chesterfield"},"arcs":[[-5342,-5262,5371,5372,5373,5374,5375,5376,5377,5378,-5272,-5264]]},{"type":"Polygon","id":51011,"properties":{"id":"51011","name":"Appomattox"},"arcs":[[5379,5380,5381,-5181,-5022,-5200]]},{"type":"Polygon","id":51131,"properties":{"id":"51131","name":"Northampton"},"arcs":[[5382,-5036]]},{"type":"Polygon","id":21045,"properties":{"id":"21045","name":"Casey"},"arcs":[[-5306,5383,5384,5385,5386,-5250,-5258]]},{"type":"Polygon","id":54047,"properties":{"id":"54047","name":"McDowell"},"arcs":[[-5356,5387,5388,-5077,-5197]]},{"type":"Polygon","id":21055,"properties":{"id":"21055","name":"Crittenden"},"arcs":[[-5291,5389,5390,5391,-5336,-5148]]},{"type":"Polygon","id":49025,"properties":{"id":"49025","name":"Kane"},"arcs":[[-4953,-4720,5392,5393,-5319,-4963]]},{"type":"Polygon","id":21189,"properties":{"id":"21189","name":"Owsley"},"arcs":[[-5271,5394,5395,-5365,-5255]]},{"type":"Polygon","id":21203,"properties":{"id":"21203","name":"Rockcastle"},"arcs":[[-5368,5396,5397,-5304,-5175,-5112]]},{"type":"Polygon","id":51027,"properties":{"id":"51027","name":"Buchanan"},"arcs":[[-5389,5398,5399,5400,-5212,-5078]]},{"type":"Polygon","id":51115,"properties":{"id":"51115","name":"Mathews"},"arcs":[[-5349,5401]]},{"type":"Polygon","id":21119,"properties":{"id":"21119","name":"Knott"},"arcs":[[-5155,-5206,-5216,5402,5403,-5269]]},{"type":"Polygon","id":51007,"properties":{"id":"51007","name":"Amelia"},"arcs":[[-5379,5404,5405,5406,-5210,-5273]]},{"type":"Polygon","id":51036,"properties":{"id":"51036","name":"Charles City"},"arcs":[[5407,5408,-5260,-5309]]},{"type":"Polygon","id":29225,"properties":{"id":"29225","name":"Webster"},"arcs":[[-5152,5409,5410,5411,5412,-5130]]},{"type":"Polygon","id":6085,"properties":{"id":"6085","name":"Santa Clara"},"arcs":[[-5011,-5303,5413,5414,-5266,5415,-5133]]},{"type":"Polygon","id":21217,"properties":{"id":"21217","name":"Taylor"},"arcs":[[-5251,-5387,5416,5417,-5246]]},{"type":"Polygon","id":29229,"properties":{"id":"29229","name":"Wright"},"arcs":[[-5335,5418,-5410,-5151]]},{"type":"Polygon","id":51071,"properties":{"id":"51071","name":"Giles"},"arcs":[[-5283,5419,5420,5421,-5353,-5158,-5253]]},{"type":"Polygon","id":20035,"properties":{"id":"20035","name":"Cowley"},"arcs":[[-5323,5422,5423,5424,5425,-4995]]},{"type":"Polygon","id":20191,"properties":{"id":"20191","name":"Sumner"},"arcs":[[-5426,5426,5427,5428,-5236,-5122]]},{"type":"Polygon","id":20119,"properties":{"id":"20119","name":"Meade"},"arcs":[[-5121,5429,5430,5431,-5230,-5066]]},{"type":"Polygon","id":20025,"properties":{"id":"20025","name":"Clark"},"arcs":[[-5235,5432,5433,5434,-5430,-5120]]},{"type":"Polygon","id":20007,"properties":{"id":"20007","name":"Barber"},"arcs":[[-5238,5435,5436,5437,5438,-5233,-5179]]},{"type":"Polygon","id":21087,"properties":{"id":"21087","name":"Green"},"arcs":[[-5418,5439,5440,5441,-5247]]},{"type":"Polygon","id":51680,"properties":{"id":"51680","name":"Lynchburg"},"arcs":[[-5183,5442,-5313]]},{"type":"Polygon","id":6027,"properties":{"id":"6027","name":"Inyo"},"arcs":[[-4740,-4220,5443,5444,5445,5446,-5357,-4536]]},{"type":"Polygon","id":51095,"properties":{"id":"51095","name":"James City"},"arcs":[[5447,5448,5449,5450,-5408,-5308,5451,5452,5453]]},{"type":"Polygon","id":21099,"properties":{"id":"21099","name":"Hart"},"arcs":[[-5248,-5442,5454,5455,5456,-5310,-5057]]},{"type":"Polygon","id":21193,"properties":{"id":"21193","name":"Perry"},"arcs":[[-5404,5457,5458,5459,5460,-5395,-5270]]},{"type":"Polygon","id":51031,"properties":{"id":"51031","name":"Campbell"},"arcs":[[-5382,5461,5462,5463,-5314,-5443,-5182]]},{"type":"Polygon","id":29077,"properties":{"id":"29077","name":"Greene"},"arcs":[[-5131,-5413,5464,5465,-5362,-5173]]},{"type":"Polygon","id":21139,"properties":{"id":"21139","name":"Livingston"},"arcs":[[-5392,5466,5467,5468,5469,-5339,-5337]]},{"type":"Polygon","id":29203,"properties":{"id":"29203","name":"Shannon"},"arcs":[[-5326,5470,5471,5472,-5332,-5194]]},{"type":"Polygon","id":8007,"properties":{"id":"8007","name":"Archuleta"},"arcs":[[-5095,-5170,5473,5474,5475,-5299,-4969]]},{"type":"Polygon","id":51161,"properties":{"id":"51161","name":"Roanoke"},"arcs":[[-5317,5476,5477,5478,-5281,-5190],[5479,5480]]},{"type":"Polygon","id":21177,"properties":{"id":"21177","name":"Muhlenberg"},"arcs":[[5481,5482,5483,5484,-5369,-5274,-5226]]},{"type":"Polygon","id":51147,"properties":{"id":"51147","name":"Prince Edward"},"arcs":[[-5211,-5407,5485,5486,5487,-5380,-5199]]},{"type":"Polygon","id":8021,"properties":{"id":"8021","name":"Conejos"},"arcs":[[-5169,-5208,-5286,5488,5489,-5474]]},{"type":"Polygon","id":21031,"properties":{"id":"21031","name":"Butler"},"arcs":[[5490,5491,-5482,-5225,-5312,5492]]},{"type":"Polygon","id":20129,"properties":{"id":"20129","name":"Morton"},"arcs":[[5493,5494,5495,-5294,-5222]]},{"type":"Polygon","id":20189,"properties":{"id":"20189","name":"Stevens"},"arcs":[[-5232,5496,5497,-5494,-5221,-5229]]},{"type":"Polygon","id":20175,"properties":{"id":"20175","name":"Seward"},"arcs":[[-5432,5498,5499,-5497,-5231]]},{"type":"Polygon","id":20125,"properties":{"id":"20125","name":"Montgomery"},"arcs":[[-5240,-5244,5500,5501,5502,5503,-5321]]},{"type":"Polygon","id":20077,"properties":{"id":"20077","name":"Harper"},"arcs":[[5504,5505,-5436,-5237,-5429]]},{"type":"Polygon","id":20033,"properties":{"id":"20033","name":"Comanche"},"arcs":[[5506,5507,-5433,-5234,-5439]]},{"type":"Polygon","id":20099,"properties":{"id":"20099","name":"Labette"},"arcs":[[-5280,5508,5509,5510,-5501,-5243]]},{"type":"Polygon","id":21033,"properties":{"id":"21033","name":"Caldwell"},"arcs":[[-5371,5511,5512,5513,-5390,-5290]]},{"type":"Polygon","id":51199,"properties":{"id":"51199","name":"York"},"arcs":[[5514,5515,5516,5517,-5449,5518,-5453]]},{"type":"Polygon","id":29097,"properties":{"id":"29097","name":"Jasper"},"arcs":[[-5364,5519,5520,5521,-5278,-5288]]},{"type":"Polygon","id":51121,"properties":{"id":"51121","name":"Montgomery"},"arcs":[[5522,5523,5524,5525,-5420,-5282,-5479]]},{"type":"Polygon","id":51515,"properties":{"id":"51515","name":"Bedford"},"arcs":[[5317]]},{"type":"Polygon","id":21051,"properties":{"id":"21051","name":"Clay"},"arcs":[[-5461,5526,5527,5528,5529,-5366,-5396]]},{"type":"Polygon","id":21199,"properties":{"id":"21199","name":"Pulaski"},"arcs":[[5530,5531,5532,-5384,-5305,-5398,5533]]},{"type":"Polygon","id":20021,"properties":{"id":"20021","name":"Cherokee"},"arcs":[[-5522,5534,5535,5536,-5509,-5279]]},{"type":"Polygon","id":21061,"properties":{"id":"21061","name":"Edmonson"},"arcs":[[-5457,5537,5538,-5493,-5311]]},{"type":"Polygon","id":51770,"properties":{"id":"51770","name":"Roanoke"},"arcs":[[-5480,-5481]]},{"type":"Polygon","id":17127,"properties":{"id":"17127","name":"Massac"},"arcs":[[-5470,5539,5540,-5343,-5340]]},{"type":"Polygon","id":51185,"properties":{"id":"51185","name":"Tazewell"},"arcs":[[-5355,5541,5542,5543,-5399,-5388]]},{"type":"Polygon","id":17003,"properties":{"id":"17003","name":"Alexander"},"arcs":[[5544,5545,5546,5547,-5328,-5347]]},{"type":"Polygon","id":21125,"properties":{"id":"21125","name":"Laurel"},"arcs":[[-5530,5548,5549,5550,-5534,-5397,-5367]]},{"type":"Polygon","id":17153,"properties":{"id":"17153","name":"Pulaski"},"arcs":[[-5344,-5541,5551,5552,-5545,-5346]]},{"type":"Polygon","id":21131,"properties":{"id":"21131","name":"Leslie"},"arcs":[[5553,5554,-5527,-5460]]},{"type":"Polygon","id":51670,"properties":{"id":"51670","name":"Hopewell"},"arcs":[[-5556,5372,-5557]]},{"type":"Polygon","id":29223,"properties":{"id":"29223","name":"Wayne"},"arcs":[[-5352,5557,5558,5559,-5324,-5218,-5293]]},{"type":"Polygon","id":51149,"properties":{"id":"51149","name":"Prince George"},"arcs":[[5560,5561,5562,5563,5564,-5374,-5557]]},{"type":"Polygon","id":51830,"properties":{"id":"51830","name":"Williamsburg"},"arcs":[[-5454,-5519,-5448]]},{"type":"Polygon","id":21001,"properties":{"id":"21001","name":"Adair"},"arcs":[[-5386,5565,5566,5567,-5440,-5417]]},{"type":"Polygon","id":51051,"properties":{"id":"51051","name":"Dickenson"},"arcs":[[5568,5569,-5213,-5401]]},{"type":"Polygon","id":20019,"properties":{"id":"20019","name":"Chautauqua"},"arcs":[[-5504,5570,5571,-5423,-5322]]},{"type":"Polygon","id":51021,"properties":{"id":"51021","name":"Bland"},"arcs":[[5572,5573,5574,-5542,-5354,-5422]]},{"type":"Polygon","id":51570,"properties":{"id":"51570","name":"Colonial Heights"},"arcs":[[5375,-5376,5575]]},{"type":"Polygon","id":51135,"properties":{"id":"51135","name":"Nottoway"},"arcs":[[5576,5577,-5486,-5406,5578]]},{"type":"Polygon","id":29109,"properties":{"id":"29109","name":"Lawrence"},"arcs":[[-5466,5579,5580,5581,5582,-5520,-5363]]},{"type":"Polygon","id":6087,"properties":{"id":"6087","name":"Santa Cruz"},"arcs":[[5583,5584,5585,-5267,-5415]]},{"type":"Polygon","id":51053,"properties":{"id":"51053","name":"Dinwiddie"},"arcs":[[5586,-5564,5587,5588,5589,-5579,-5405,-5378]]},{"type":"Polygon","id":21133,"properties":{"id":"21133","name":"Letcher"},"arcs":[[-5215,5590,5591,-5458,-5403]]},{"type":"Polygon","id":29201,"properties":{"id":"29201","name":"Scott"},"arcs":[[5592,5593,5594,-5329,-5548]]},{"type":"Polygon","id":51037,"properties":{"id":"51037","name":"Charlotte"},"arcs":[[5595,5596,5597,-5462,-5381,-5488]]},{"type":"Polygon","id":51155,"properties":{"id":"51155","name":"Pulaski"},"arcs":[[-5525,-5524,5598,5599,5600,-5573,-5421,-5526]]},{"type":"Polygon","id":51730,"properties":{"id":"51730","name":"Petersburg"},"arcs":[[-5587,-5377,-5376,-5375,-5565]]},{"type":"Polygon","id":51181,"properties":{"id":"51181","name":"Surry"},"arcs":[[5601,5602,5603,-5562,5604]]},{"type":"Polygon","id":51067,"properties":{"id":"51067","name":"Franklin"},"arcs":[[5605,5606,5607,5608,-5477,-5316]]},{"type":"Polygon","id":21007,"properties":{"id":"21007","name":"Ballard"},"arcs":[[5609,5610,-5546,-5553,5611]]},{"type":"Polygon","id":21145,"properties":{"id":"21145","name":"McCracken"},"arcs":[[-5469,5612,5613,5614,-5612,-5552,-5540]]},{"type":"Polygon","id":51700,"properties":{"id":"51700","name":"Newport News"},"arcs":[[5615,5616,-5450,-5518]]},{"type":"Polygon","id":51195,"properties":{"id":"51195","name":"Wise"},"arcs":[[5617,5618,5619,5620,-5591,-5214,-5570],[5621]]},{"type":"Polygon","id":21227,"properties":{"id":"21227","name":"Warren"},"arcs":[[-5539,5622,5623,5624,5625,-5491]]},{"type":"Polygon","id":21207,"properties":{"id":"21207","name":"Russell"},"arcs":[[-5533,5626,5627,5628,-5566,-5385]]},{"type":"Polygon","id":21169,"properties":{"id":"21169","name":"Metcalfe"},"arcs":[[-5568,5629,5630,5631,-5455,-5441]]},{"type":"Polygon","id":21143,"properties":{"id":"21143","name":"Lyon"},"arcs":[[-5514,5632,5633,-5467,-5391]]},{"type":"Polygon","id":51735,"properties":{"id":"51735","name":"Poquoson"},"arcs":[[5634,-5516,5635]]},{"type":"Polygon","id":21009,"properties":{"id":"21009","name":"Barren"},"arcs":[[5636,5637,-5623,-5538,-5456,-5632]]},{"type":"Polygon","id":21047,"properties":{"id":"21047","name":"Christian"},"arcs":[[-5485,5638,5639,5640,5641,-5512,-5370]]},{"type":"Polygon","id":51093,"properties":{"id":"51093","name":"Isle of Wight"},"arcs":[[5642,5643,5644,5645,-5602,5646]]},{"type":"Polygon","id":51167,"properties":{"id":"51167","name":"Russell"},"arcs":[[5647,5648,5649,-5618,-5569,-5400,-5544]]},{"type":"Polygon","id":51143,"properties":{"id":"51143","name":"Pittsylvania"},"arcs":[[5650,5651,5652,5653,5654,5655,-5606,-5315,-5464]]},{"type":"Polygon","id":51063,"properties":{"id":"51063","name":"Floyd"},"arcs":[[-5609,5656,5657,-5599,-5523,-5478]]},{"type":"Polygon","id":29207,"properties":{"id":"29207","name":"Stoddard"},"arcs":[[-5330,-5595,5658,5659,5660,-5558,-5351]]},{"type":"Polygon","id":51111,"properties":{"id":"51111","name":"Lunenburg"},"arcs":[[-5578,5661,5662,-5596,-5487]]},{"type":"Polygon","id":51650,"properties":{"id":"51650","name":"Hampton"},"arcs":[[-5616,-5517,-5635,5663]]},{"type":"Polygon","id":51183,"properties":{"id":"51183","name":"Sussex"},"arcs":[[5664,5665,-5588,-5563,-5604]]},{"type":"Polygon","id":29035,"properties":{"id":"29035","name":"Carter"},"arcs":[[-5560,5666,5667,5668,-5471,-5325]]},{"type":"Polygon","id":29043,"properties":{"id":"29043","name":"Christian"},"arcs":[[-5412,5669,5670,5671,-5580,-5465]]},{"type":"Polygon","id":51197,"properties":{"id":"51197","name":"Wythe"},"arcs":[[5672,5673,5674,-5574,-5601]]},{"type":"Polygon","id":21141,"properties":{"id":"21141","name":"Logan"},"arcs":[[5675,5676,5677,-5483,-5492,-5626]]},{"type":"Polygon","id":21219,"properties":{"id":"21219","name":"Todd"},"arcs":[[-5678,5678,5679,-5639,-5484]]},{"type":"Polygon","id":29067,"properties":{"id":"29067","name":"Douglas"},"arcs":[[-5419,-5334,5680,5681,5682,-5670,-5411]]},{"type":"Polygon","id":21157,"properties":{"id":"21157","name":"Marshall"},"arcs":[[-5634,5683,5684,5685,-5613,-5468]]},{"type":"Polygon","id":29133,"properties":{"id":"29133","name":"Mississippi"},"arcs":[[-5611,5686,5687,5688,5689,-5593,-5547]]},{"type":"Polygon","id":51083,"properties":{"id":"51083","name":"Halifax"},"arcs":[[-5598,5690,5691,5692,5693,-5651,-5463]]},{"type":"Polygon","id":29091,"properties":{"id":"29091","name":"Howell"},"arcs":[[-5473,5694,5695,5696,-5681,-5333]]},{"type":"Polygon","id":29145,"properties":{"id":"29145","name":"Newton"},"arcs":[[-5583,5697,5698,5699,-5535,-5521]]},{"type":"Polygon","id":21121,"properties":{"id":"21121","name":"Knox"},"arcs":[[5700,5701,-5549,-5529]]},{"type":"Polygon","id":51025,"properties":{"id":"51025","name":"Brunswick"},"arcs":[[-5590,5702,5703,5704,5705,-5662,-5577]]},{"type":"Polygon","id":21095,"properties":{"id":"21095","name":"Harlan"},"arcs":[[-5592,-5621,5706,5707,-5554,-5459]]},{"type":"Polygon","id":51173,"properties":{"id":"51173","name":"Smyth"},"arcs":[[-5575,-5675,5708,5709,-5648,-5543]]},{"type":"Polygon","id":4017,"properties":{"id":"4017","name":"Navajo"},"arcs":[[5710,5711,5712,5713,-4718]]},{"type":"Polygon","id":4005,"properties":{"id":"4005","name":"Coconino"},"arcs":[[-5714,5714,5715,5716,-5393,-4719]]},{"type":"Polygon","id":21221,"properties":{"id":"21221","name":"Trigg"},"arcs":[[5717,5718,-5684,-5633,-5513,-5642]]},{"type":"Polygon","id":40105,"properties":{"id":"40105","name":"Nowata"},"arcs":[[-5511,5719,5720,5721,-5502]]},{"type":"Polygon","id":40113,"properties":{"id":"40113","name":"Osage"},"arcs":[[5722,5723,5724,5725,5726,-5424,-5572]]},{"type":"Polygon","id":40151,"properties":{"id":"40151","name":"Woods"},"arcs":[[-5438,5727,5728,5729,5730,-5507]]},{"type":"Polygon","id":40035,"properties":{"id":"40035","name":"Craig"},"arcs":[[-5537,5731,5732,5733,5734,-5720,-5510]]},{"type":"Polygon","id":40147,"properties":{"id":"40147","name":"Washington"},"arcs":[[-5722,5735,5736,-5723,-5571,-5503]]},{"type":"Polygon","id":40053,"properties":{"id":"40053","name":"Grant"},"arcs":[[5737,5738,5739,-5505,-5428]]},{"type":"Polygon","id":40003,"properties":{"id":"40003","name":"Alfalfa"},"arcs":[[-5506,-5740,5740,5741,-5728,-5437]]},{"type":"Polygon","id":40071,"properties":{"id":"40071","name":"Kay"},"arcs":[[-5727,5742,5743,-5738,-5427,-5425]]},{"type":"Polygon","id":40115,"properties":{"id":"40115","name":"Ottawa"},"arcs":[[-5700,5744,5745,-5732,-5536]]},{"type":"Polygon","id":40059,"properties":{"id":"40059","name":"Harper"},"arcs":[[-5508,-5731,5746,5747,5748,-5434]]},{"type":"Polygon","id":35039,"properties":{"id":"35039","name":"Rio Arriba"},"arcs":[[-5490,5749,5750,5751,5752,5753,5754,-5475]]},{"type":"Polygon","id":35045,"properties":{"id":"35045","name":"San Juan"},"arcs":[[-5755,5755,5756,5757,-5298,-5300,-5476]]},{"type":"Polygon","id":4001,"properties":{"id":"4001","name":"Apache"},"arcs":[[-5758,5758,5759,5760,5761,5762,-5711,-4717]]},{"type":"Polygon","id":35059,"properties":{"id":"35059","name":"Union"},"arcs":[[5763,5764,5765,5766,5767,5768,-5186,-5296]]},{"type":"Polygon","id":40025,"properties":{"id":"40025","name":"Cimarron"},"arcs":[[-5496,5769,5770,5771,-5764,-5295]]},{"type":"Polygon","id":40139,"properties":{"id":"40139","name":"Texas"},"arcs":[[5772,5773,5774,5775,-5770,-5495,-5498,-5500]]},{"type":"Polygon","id":40007,"properties":{"id":"40007","name":"Beaver"},"arcs":[[-5435,-5749,5776,5777,5778,-5773,-5499,-5431]]},{"type":"Polygon","id":51175,"properties":{"id":"51175","name":"Southampton"},"arcs":[[-5645,-5644,5779,5780,5781,5782,5783,-5665,-5603,-5646]]},{"type":"Polygon","id":21231,"properties":{"id":"21231","name":"Wayne"},"arcs":[[5784,5785,5786,5787,-5627,-5532]]},{"type":"Polygon","id":35055,"properties":{"id":"35055","name":"Taos"},"arcs":[[5788,5789,-5750,-5489,-5285]]},{"type":"Polygon","id":35007,"properties":{"id":"35007","name":"Colfax"},"arcs":[[-5769,5790,5791,-5789,-5284,-5187]]},{"type":"Polygon","id":29209,"properties":{"id":"29209","name":"Stone"},"arcs":[[5792,5793,5794,-5581,-5672]]},{"type":"Polygon","id":6069,"properties":{"id":"6069","name":"San Benito"},"arcs":[[-5302,-5361,5795,-5584,-5414]]},{"type":"Polygon","id":21235,"properties":{"id":"21235","name":"Whitley"},"arcs":[[-5702,5796,5797,5798,5799,-5550]]},{"type":"MultiPolygon","id":51710,"properties":{"id":"51710","name":"Norfolk"},"arcs":[[[5800,5801,5802]],[[5803,5804]]]},{"type":"Polygon","id":21147,"properties":{"id":"21147","name":"McCreary"},"arcs":[[-5800,5805,5806,-5785,-5531,-5551]]},{"type":"Polygon","id":51720,"properties":{"id":"51720","name":"Norton"},"arcs":[[5621]]},{"type":"Polygon","id":21013,"properties":{"id":"21013","name":"Bell"},"arcs":[[-5555,-5708,5807,5808,-5797,-5701,-5528]]},{"type":"Polygon","id":21039,"properties":{"id":"21039","name":"Carlisle"},"arcs":[[-5615,5809,5810,-5687,-5610]]},{"type":"Polygon","id":21083,"properties":{"id":"21083","name":"Graves"},"arcs":[[-5686,5811,5812,5813,5814,-5810,-5614]]},{"type":"Polygon","id":21057,"properties":{"id":"21057","name":"Cumberland"},"arcs":[[5815,5816,5817,-5630,-5567,-5629]]},{"type":"Polygon","id":21003,"properties":{"id":"21003","name":"Allen"},"arcs":[[-5638,5818,5819,5820,5821,-5624]]},{"type":"Polygon","id":29009,"properties":{"id":"29009","name":"Barry"},"arcs":[[-5795,5822,5823,5824,-5698,-5582]]},{"type":"MultiPolygon","id":51810,"properties":{"id":"51810","name":"Virginia Beach"},"arcs":[[[5825,5826]],[[5827,5828,5829,5830,5831,5832,5833,-5804,5834]]]},{"type":"Polygon","id":51035,"properties":{"id":"51035","name":"Carroll"},"arcs":[[5835,5836,5837,5838,5839,-5673,-5600,-5658]]},{"type":"Polygon","id":51191,"properties":{"id":"51191","name":"Washington"},"arcs":[[5840,5841,5842,-5649,-5710,5843,5844,5845,5846]]},{"type":"Polygon","id":29023,"properties":{"id":"29023","name":"Butler"},"arcs":[[-5661,5847,5848,5849,-5667,-5559]]},{"type":"MultiPolygon","id":51740,"properties":{"id":"51740","name":"Portsmouth"},"arcs":[[[-5802,5850,5851]],[[5852,5853,5854]]]},{"type":"Polygon","id":51800,"properties":{"id":"51800","name":"Suffolk"},"arcs":[[-5854,5855,5856,5857,-5780,-5643,5858]]},{"type":"Polygon","id":6053,"properties":{"id":"6053","name":"Monterey"},"arcs":[[-5796,-5360,5859,5860,5861,-5585]]},{"type":"Polygon","id":51081,"properties":{"id":"51081","name":"Greensville"},"arcs":[[-5666,-5784,5862,-5703,-5589],[5863]]},{"type":"Polygon","id":51105,"properties":{"id":"51105","name":"Lee"},"arcs":[[5864,5865,5866,-5808,-5707,-5620]]},{"type":"Polygon","id":51117,"properties":{"id":"51117","name":"Mecklenburg"},"arcs":[[-5706,5867,5868,5869,-5691,-5597,-5663]]},{"type":"Polygon","id":21053,"properties":{"id":"21053","name":"Clinton"},"arcs":[[-5788,5870,5871,-5816,-5628]]},{"type":"Polygon","id":29149,"properties":{"id":"29149","name":"Oregon"},"arcs":[[-5669,5872,5873,5874,5875,-5695,-5472]]},{"type":"Polygon","id":51169,"properties":{"id":"51169","name":"Scott"},"arcs":[[-5650,-5843,5876,5877,5878,-5865,-5619]]},{"type":"Polygon","id":21213,"properties":{"id":"21213","name":"Simpson"},"arcs":[[5879,5880,-5676,-5625,-5822]]},{"type":"Polygon","id":51141,"properties":{"id":"51141","name":"Patrick"},"arcs":[[5881,5882,5883,-5836,-5657,-5608]]},{"type":"Polygon","id":29143,"properties":{"id":"29143","name":"New Madrid"},"arcs":[[-5690,5884,5885,5886,5887,5888,5889,-5659,-5594]]},{"type":"Polygon","id":51550,"properties":{"id":"51550","name":"Chesapeake"},"arcs":[[5890,-5851,-5801,5891,-5833,5892,5893,-5856,-5853]]},{"type":"Polygon","id":51089,"properties":{"id":"51089","name":"Henry"},"arcs":[[5894,5895,-5882,-5607,-5656],[5896]]},{"type":"Polygon","id":32003,"properties":{"id":"32003","name":"Clark"},"arcs":[[5897,5898,-5444,-4219,-4592]]},{"type":"Polygon","id":21171,"properties":{"id":"21171","name":"Monroe"},"arcs":[[-5818,5899,5900,-5819,-5637,-5631]]},{"type":"Polygon","id":29181,"properties":{"id":"29181","name":"Ripley"},"arcs":[[-5850,5901,5902,-5873,-5668]]},{"type":"Polygon","id":29213,"properties":{"id":"29213","name":"Taney"},"arcs":[[-5683,5903,5904,5905,5906,-5793,-5671]]},{"type":"Polygon","id":40153,"properties":{"id":"40153","name":"Woodward"},"arcs":[[5907,5908,5909,-5747,-5730]]},{"type":"Polygon","id":51077,"properties":{"id":"51077","name":"Grayson"},"arcs":[[-5840,-5839,-5838,5910,5911,5912,5913,-5844,-5709,-5674]]},{"type":"Polygon","id":29153,"properties":{"id":"29153","name":"Ozark"},"arcs":[[-5697,5914,5915,5916,-5904,-5682]]},{"type":"Polygon","id":21105,"properties":{"id":"21105","name":"Hickman"},"arcs":[[-5815,5917,5918,5919,-5688,-5811]]},{"type":"Polygon","id":29119,"properties":{"id":"29119","name":"McDonald"},"arcs":[[-5825,5920,5921,-5745,-5699]]},{"type":"Polygon","id":21035,"properties":{"id":"21035","name":"Calloway"},"arcs":[[-5719,5922,5923,-5812,-5685]]},{"type":"Polygon","id":6107,"properties":{"id":"6107","name":"Tulare"},"arcs":[[5924,5925,-5358,-5447]]},{"type":"Polygon","id":51595,"properties":{"id":"51595","name":"Emporia"},"arcs":[[5863]]},{"type":"Polygon","id":51690,"properties":{"id":"51690","name":"Martinsville"},"arcs":[[5896]]},{"type":"Polygon","id":47161,"properties":{"id":"47161","name":"Stewart"},"arcs":[[-5641,5926,5927,5928,5929,-5923,-5718]]},{"type":"Polygon","id":40041,"properties":{"id":"40041","name":"Delaware"},"arcs":[[-5922,5930,5931,5932,5933,-5733,-5746]]},{"type":"Polygon","id":47147,"properties":{"id":"47147","name":"Robertson"},"arcs":[[5934,5935,5936,-5679,-5677,-5881,5937]]},{"type":"Polygon","id":47165,"properties":{"id":"47165","name":"Sumner"},"arcs":[[5938,5939,5940,5941,-5938,-5880,-5821]]},{"type":"MultiPolygon","id":21075,"properties":{"id":"21075","name":"Fulton"},"arcs":[[[5886,-5887,5942]],[[5943,5944,-5885,-5689,-5920]]]},{"type":"Polygon","id":47125,"properties":{"id":"47125","name":"Montgomery"},"arcs":[[-5937,5945,5946,5947,-5927,-5640,-5680]]},{"type":"Polygon","id":51590,"properties":{"id":"51590","name":"Danville"},"arcs":[[5948,-5653]]},{"type":"Polygon","id":47111,"properties":{"id":"47111","name":"Macon"},"arcs":[[5949,5950,5951,-5939,-5820,-5901,5952]]},{"type":"MultiPolygon","id":51520,"properties":{"id":"51520","name":"Bristol"},"arcs":[[[-5847,5953,-5841]]]},{"type":"Polygon","id":29069,"properties":{"id":"29069","name":"Dunklin"},"arcs":[[-5890,5954,5955,5956,5957,5958,-5848,-5660]]},{"type":"Polygon","id":47137,"properties":{"id":"47137","name":"Pickett"},"arcs":[[5959,5960,5961,5962,-5871,-5787]]},{"type":"Polygon","id":47027,"properties":{"id":"47027","name":"Clay"},"arcs":[[5963,5964,-5953,-5900,-5817,-5872,-5963]]},{"type":"Polygon","id":47163,"properties":{"id":"47163","name":"Sullivan"},"arcs":[[5965,5966,5967,-5877,-5842,-5954,-5846,5968]]},{"type":"Polygon","id":47091,"properties":{"id":"47091","name":"Johnson"},"arcs":[[-5914,5969,5970,5971,5972,-5969,-5845]]},{"type":"Polygon","id":47151,"properties":{"id":"47151","name":"Scott"},"arcs":[[5973,5974,5975,5976,-5960,-5786,-5807]]},{"type":"Polygon","id":47025,"properties":{"id":"47025","name":"Claiborne"},"arcs":[[5977,5978,5979,5980,-5798,-5809,-5867]]},{"type":"Polygon","id":40103,"properties":{"id":"40103","name":"Noble"},"arcs":[[5981,5982,5983,5984,-5743,-5726]]},{"type":"Polygon","id":47067,"properties":{"id":"47067","name":"Hancock"},"arcs":[[-5879,5985,5986,-5978,-5866]]},{"type":"Polygon","id":40131,"properties":{"id":"40131","name":"Rogers"},"arcs":[[5987,5988,5989,-5736,-5721,-5735]]},{"type":"Polygon","id":47013,"properties":{"id":"47013","name":"Campbell"},"arcs":[[5990,5991,-5974,-5806,-5799,-5981]]},{"type":"Polygon","id":47073,"properties":{"id":"47073","name":"Hawkins"},"arcs":[[-5968,5992,5993,5994,5995,-5986,-5878]]},{"type":"Polygon","id":40047,"properties":{"id":"40047","name":"Garfield"},"arcs":[[-5744,-5985,5996,5997,5998,-5741,-5739]]},{"type":"Polygon","id":40045,"properties":{"id":"40045","name":"Ellis"},"arcs":[[-5910,5999,6000,6001,6002,-5777,-5748]]},{"type":"Polygon","id":37009,"properties":{"id":"37009","name":"Ashe"},"arcs":[[6003,6004,6005,-5970,-5913]]},{"type":"Polygon","id":47049,"properties":{"id":"47049","name":"Fentress"},"arcs":[[-5977,6006,6007,6008,6009,-5961]]},{"type":"Polygon","id":37005,"properties":{"id":"37005","name":"Alleghany"},"arcs":[[6010,6011,-6004,-5912]]},{"type":"Polygon","id":40117,"properties":{"id":"40117","name":"Pawnee"},"arcs":[[6012,6013,6014,-5982,-5725]]},{"type":"Polygon","id":37171,"properties":{"id":"37171","name":"Surry"},"arcs":[[-5884,6015,6016,6017,6018,-6011,-5911,-5837]]},{"type":"Polygon","id":37073,"properties":{"id":"37073","name":"Gates"},"arcs":[[6019,6020,6021,6022,6023,6024,-5781,-5858]]},{"type":"MultiPolygon","id":37053,"properties":{"id":"37053","name":"Currituck"},"arcs":[[[6025,-5893,-5832,6026]],[[-5828,6027,6028,6029]],[[6030,5825,6031,5829]]]},{"type":"Polygon","id":37169,"properties":{"id":"37169","name":"Stokes"},"arcs":[[-5896,6032,6033,-6016,-5883]]},{"type":"Polygon","id":37029,"properties":{"id":"37029","name":"Camden"},"arcs":[[-5857,-5894,-6026,6034,6035,-6020]]},{"type":"Polygon","id":37185,"properties":{"id":"37185","name":"Warren"},"arcs":[[6036,6037,6038,6039,-5868,-5705]]},{"type":"Polygon","id":37131,"properties":{"id":"37131","name":"Northampton"},"arcs":[[6040,6041,-6037,-5704,-5863,-5783,6042]]},{"type":"Polygon","id":37091,"properties":{"id":"37091","name":"Hertford"},"arcs":[[-6025,6043,6044,-6043,-5782]]},{"type":"Polygon","id":37145,"properties":{"id":"37145","name":"Person"},"arcs":[[6045,6046,6047,6048,-5693]]},{"type":"Polygon","id":37181,"properties":{"id":"37181","name":"Vance"},"arcs":[[-6040,6049,6050,-5869]]},{"type":"Polygon","id":37077,"properties":{"id":"37077","name":"Granville"},"arcs":[[6051,6052,6053,-6046,-5692,-5870,-6051]]},{"type":"Polygon","id":37157,"properties":{"id":"37157","name":"Rockingham"},"arcs":[[-5655,6054,6055,6056,-6033,-5895]]},{"type":"Polygon","id":37033,"properties":{"id":"37033","name":"Caswell"},"arcs":[[-6049,6057,6058,-6055,-5654,-5949,-5652,-5694]]},{"type":"Polygon","id":47133,"properties":{"id":"47133","name":"Overton"},"arcs":[[-6010,6059,6060,-5964,-5962]]},{"type":"Polygon","id":47087,"properties":{"id":"47087","name":"Jackson"},"arcs":[[-6061,6061,6062,-5950,-5965]]},{"type":"Polygon","id":37083,"properties":{"id":"37083","name":"Halifax"},"arcs":[[6063,6064,6065,6066,-6038,-6042]]},{"type":"Polygon","id":40097,"properties":{"id":"40097","name":"Mayes"},"arcs":[[-5934,6067,6068,-5988,-5734]]},{"type":"Polygon","id":47019,"properties":{"id":"47019","name":"Carter"},"arcs":[[6069,6070,6071,6072,-5966,-5973]]},{"type":"Polygon","id":37139,"properties":{"id":"37139","name":"Pasquotank"},"arcs":[[6073,6074,-6021,-6036]]},{"type":"Polygon","id":47131,"properties":{"id":"47131","name":"Obion"},"arcs":[[-5919,6075,6076,6077,6078,-5944]]},{"type":"Polygon","id":40093,"properties":{"id":"40093","name":"Major"},"arcs":[[-5742,-5999,6079,6080,6081,-5908,-5729]]},{"type":"Polygon","id":47183,"properties":{"id":"47183","name":"Weakley"},"arcs":[[6082,6083,6084,-6076,-5918,-5814]]},{"type":"Polygon","id":47095,"properties":{"id":"47095","name":"Lake"},"arcs":[[6085,6086,-5888,-5887,-5886,-5945,-6079]]},{"type":"Polygon","id":48421,"properties":{"id":"48421","name":"Sherman"},"arcs":[[6087,6088,-5771,-5776,6089]]},{"type":"Polygon","id":47079,"properties":{"id":"47079","name":"Henry"},"arcs":[[-5930,6090,6091,-6083,-5813,-5924]]},{"type":"Polygon","id":48195,"properties":{"id":"48195","name":"Hansford"},"arcs":[[6092,6093,-6090,-5775,6094]]},{"type":"Polygon","id":48111,"properties":{"id":"48111","name":"Dallam"},"arcs":[[-5772,-6089,6095,-5765]]},{"type":"Polygon","id":48357,"properties":{"id":"48357","name":"Ochiltree"},"arcs":[[6096,6097,-6095,-5774,-5779]]},{"type":"Polygon","id":48295,"properties":{"id":"48295","name":"Lipscomb"},"arcs":[[6098,6099,-6097,-5778,-6003]]},{"type":"Polygon","id":5007,"properties":{"id":"5007","name":"Benton"},"arcs":[[-5824,6100,6101,6102,6103,-5931,-5921]]},{"type":"Polygon","id":5049,"properties":{"id":"5049","name":"Fulton"},"arcs":[[6104,6105,6106,-5915,-5696,-5876]]},{"type":"Polygon","id":5015,"properties":{"id":"5015","name":"Carroll"},"arcs":[[-5794,-5907,6107,6108,6109,-6101,-5823]]},{"type":"Polygon","id":5135,"properties":{"id":"5135","name":"Sharp"},"arcs":[[-5875,6110,6111,6112,6113,-6105]]},{"type":"Polygon","id":5121,"properties":{"id":"5121","name":"Randolph"},"arcs":[[6114,6115,-6111,-5874,-5903,6116]]},{"type":"Polygon","id":5009,"properties":{"id":"5009","name":"Boone"},"arcs":[[6117,6118,6119,-6108,-5906]]},{"type":"Polygon","id":5089,"properties":{"id":"5089","name":"Marion"},"arcs":[[6120,6121,-6118,-5905,-5917]]},{"type":"Polygon","id":5005,"properties":{"id":"5005","name":"Baxter"},"arcs":[[-6107,6122,6123,6124,-6121,-5916]]},{"type":"Polygon","id":5021,"properties":{"id":"5021","name":"Clay"},"arcs":[[-5849,-5959,6125,-6117,-5902]]},{"type":"Polygon","id":6031,"properties":{"id":"6031","name":"Kings"},"arcs":[[6126,6127,-5860,-5359,-5926]]},{"type":"Polygon","id":47169,"properties":{"id":"47169","name":"Trousdale"},"arcs":[[-5952,6128,6129,-5940]]},{"type":"Polygon","id":47021,"properties":{"id":"47021","name":"Cheatham"},"arcs":[[6130,6131,6132,-5946,-5936],[6133]]},{"type":"Polygon","id":47179,"properties":{"id":"47179","name":"Washington"},"arcs":[[-6073,6134,6135,-5993,-5967]]},{"type":"Polygon","id":37193,"properties":{"id":"37193","name":"Wilkes"},"arcs":[[-6019,6136,6137,6138,6139,6140,-6005,-6012]]},{"type":"Polygon","id":47173,"properties":{"id":"47173","name":"Union"},"arcs":[[6141,6142,6143,-5991,-5980]]},{"type":"Polygon","id":47159,"properties":{"id":"47159","name":"Smith"},"arcs":[[-6063,6144,6145,6146,-6129,-5951]]},{"type":"Polygon","id":29155,"properties":{"id":"29155","name":"Pemiscot"},"arcs":[[-6087,6147,6148,-5955,-5889]]},{"type":"Polygon","id":40143,"properties":{"id":"40143","name":"Tulsa"},"arcs":[[-5990,6149,6150,6151,-6013,-5724,-5737]]},{"type":"Polygon","id":47057,"properties":{"id":"47057","name":"Grainger"},"arcs":[[-5987,-5996,6152,6153,6154,-6142,-5979]]},{"type":"Polygon","id":47037,"properties":{"id":"47037","name":"Davidson"},"arcs":[[-5942,6155,6156,6157,-6131,-5935]]},{"type":"Polygon","id":47059,"properties":{"id":"47059","name":"Greene"},"arcs":[[6158,6159,6160,6161,-5994,-6136]]},{"type":"Polygon","id":37189,"properties":{"id":"37189","name":"Watauga"},"arcs":[[-6141,6162,6163,-5971,-6006]]},{"type":"Polygon","id":37143,"properties":{"id":"37143","name":"Perquimans"},"arcs":[[6164,6165,-6022,-6075]]},{"type":"Polygon","id":47129,"properties":{"id":"47129","name":"Morgan"},"arcs":[[-5976,6166,6167,6168,-6007]]},{"type":"Polygon","id":47083,"properties":{"id":"47083","name":"Houston"},"arcs":[[-5948,6169,6170,6171,-5928]]},{"type":"Polygon","id":47005,"properties":{"id":"47005","name":"Benton"},"arcs":[[-6172,6172,6173,6174,6175,-6091,-5929]]},{"type":"Polygon","id":47189,"properties":{"id":"47189","name":"Wilson"},"arcs":[[-6130,-6147,6176,6177,6178,-6156,-5941]]},{"type":"Polygon","id":37041,"properties":{"id":"37041","name":"Chowan"},"arcs":[[6179,-6023,-6166]]},{"type":"Polygon","id":47063,"properties":{"id":"47063","name":"Hamblen"},"arcs":[[-6162,6180,6181,-6153,-5995]]},{"type":"MultiPolygon","id":47043,"properties":{"id":"47043","name":"Dickson"},"arcs":[[[6133]],[[-6133,6182,6183,6184,-6170,-5947]]]},{"type":"Polygon","id":5087,"properties":{"id":"5087","name":"Madison"},"arcs":[[6185,6186,6187,6188,6189,-6102,-6110]]},{"type":"Polygon","id":47141,"properties":{"id":"47141","name":"Putnam"},"arcs":[[-6009,6190,6191,6192,-6145,-6062,-6060]]},{"type":"Polygon","id":47001,"properties":{"id":"47001","name":"Anderson"},"arcs":[[-6144,6193,6194,-6167,-5975,-5992]]},{"type":"Polygon","id":37197,"properties":{"id":"37197","name":"Yadkin"},"arcs":[[6195,6196,6197,-6137,-6018]]},{"type":"Polygon","id":37011,"properties":{"id":"37011","name":"Avery"},"arcs":[[6198,6199,6200,6201,-6070,-5972,-6164]]},{"type":"Polygon","id":37069,"properties":{"id":"37069","name":"Franklin"},"arcs":[[6202,6203,-6052,-6050,-6039]]},{"type":"Polygon","id":5055,"properties":{"id":"5055","name":"Greene"},"arcs":[[-5958,6204,6205,-6115,-6126]]},{"type":"Polygon","id":35033,"properties":{"id":"35033","name":"Mora"},"arcs":[[-5792,6206,6207,6208,-5751,-5790]]},{"type":"Polygon","id":37067,"properties":{"id":"37067","name":"Forsyth"},"arcs":[[6209,6210,6211,-6196,-6017,-6034]]},{"type":"Polygon","id":5065,"properties":{"id":"5065","name":"Izard"},"arcs":[[-6114,6212,6213,-6123,-6106]]},{"type":"Polygon","id":47171,"properties":{"id":"47171","name":"Unicoi"},"arcs":[[6214,6215,6216,-6159,-6135,-6072]]},{"type":"Polygon","id":5075,"properties":{"id":"5075","name":"Lawrence"},"arcs":[[-6206,6217,6218,6219,-6112,-6116]]},{"type":"Polygon","id":37081,"properties":{"id":"37081","name":"Guilford"},"arcs":[[6220,6221,6222,-6210,-6057]]},{"type":"Polygon","id":37001,"properties":{"id":"37001","name":"Alamance"},"arcs":[[6223,6224,6225,-6221,-6056,-6059]]},{"type":"Polygon","id":40119,"properties":{"id":"40119","name":"Payne"},"arcs":[[6226,6227,6228,-5983,-6015]]},{"type":"Polygon","id":47085,"properties":{"id":"47085","name":"Humphreys"},"arcs":[[-6185,6229,6230,-6173,-6171]]},{"type":"Polygon","id":37015,"properties":{"id":"37015","name":"Bertie"},"arcs":[[6231,6232,6233,-6064,-6041,-6045]]},{"type":"Polygon","id":37135,"properties":{"id":"37135","name":"Orange"},"arcs":[[-6048,6234,6235,-6224,-6058]]},{"type":"Polygon","id":37063,"properties":{"id":"37063","name":"Durham"},"arcs":[[-6054,6236,6237,-6235,-6047]]},{"type":"Polygon","id":5143,"properties":{"id":"5143","name":"Washington"},"arcs":[[6238,6239,-6103,-6190]]},{"type":"MultiPolygon","id":37055,"properties":{"id":"37055","name":"Dare"},"arcs":[[[6240,6241]],[[6242,6243]],[[-6029,6244]]]},{"type":"Polygon","id":47053,"properties":{"id":"47053","name":"Gibson"},"arcs":[[6245,6246,6247,6248,-6077,-6085]]},{"type":"MultiPolygon","id":35043,"properties":{"id":"35043","name":"Sandoval"},"arcs":[[[6249,6250,6251,6252,6253,-5756,-5754]]]},{"type":"Polygon","id":35021,"properties":{"id":"35021","name":"Harding"},"arcs":[[-5768,6254,6255,-6207,-5791]]},{"type":"Polygon","id":47045,"properties":{"id":"47045","name":"Dyer"},"arcs":[[6256,6257,6258,-6148,-6086,-6078,-6249]]},{"type":"Polygon","id":37127,"properties":{"id":"37127","name":"Nash"},"arcs":[[-6067,6259,6260,6261,-6203]]},{"type":"Polygon","id":47089,"properties":{"id":"47089","name":"Jefferson"},"arcs":[[-6182,6262,6263,6264,-6154]]},{"type":"Polygon","id":47093,"properties":{"id":"47093","name":"Knox"},"arcs":[[-6265,6265,6266,6267,6268,-6194,-6143,-6155]]},{"type":"Polygon","id":47029,"properties":{"id":"47029","name":"Cocke"},"arcs":[[6269,6270,6271,-6263,-6181,-6161]]},{"type":"Polygon","id":47035,"properties":{"id":"47035","name":"Cumberland"},"arcs":[[-6169,6272,6273,6274,6275,6276,6277,6278,-6191,-6008]]},{"type":"Polygon","id":40073,"properties":{"id":"40073","name":"Kingfisher"},"arcs":[[6279,6280,6281,-6080,-5998]]},{"type":"Polygon","id":40083,"properties":{"id":"40083","name":"Logan"},"arcs":[[-5984,-6229,6282,6283,-6280,-5997]]},{"type":"Polygon","id":40011,"properties":{"id":"40011","name":"Blaine"},"arcs":[[-6282,6284,6285,6286,6287,-6081]]},{"type":"Polygon","id":40043,"properties":{"id":"40043","name":"Dewey"},"arcs":[[6288,6289,-6000,-5909,-6082,-6288]]},{"type":"Polygon","id":40037,"properties":{"id":"40037","name":"Creek"},"arcs":[[-6152,6290,6291,6292,-6227,-6014]]},{"type":"Polygon","id":40145,"properties":{"id":"40145","name":"Wagoner"},"arcs":[[-6069,6293,6294,6295,-6150,-5989]]},{"type":"Polygon","id":40021,"properties":{"id":"40021","name":"Cherokee"},"arcs":[[-5933,6296,6297,6298,-6294,-6068]]},{"type":"Polygon","id":40001,"properties":{"id":"40001","name":"Adair"},"arcs":[[-6104,-6240,6299,6300,-6297,-5932]]},{"type":"Polygon","id":37121,"properties":{"id":"37121","name":"Mitchell"},"arcs":[[-6202,6301,6302,-6215,-6071]]},{"type":"Polygon","id":37065,"properties":{"id":"37065","name":"Edgecombe"},"arcs":[[6303,6304,6305,-6260,-6066]]},{"type":"Polygon","id":47017,"properties":{"id":"47017","name":"Carroll"},"arcs":[[-6176,6306,6307,6308,-6246,-6084,-6092]]},{"type":"Polygon","id":47041,"properties":{"id":"47041","name":"DeKalb"},"arcs":[[6309,6310,6311,-6177,-6146,-6193]]},{"type":"Polygon","id":5137,"properties":{"id":"5137","name":"Stone"},"arcs":[[6312,6313,6314,6315,-6124,-6214]]},{"type":"Polygon","id":5101,"properties":{"id":"5101","name":"Newton"},"arcs":[[-6120,6316,6317,6318,-6186,-6109]]},{"type":"Polygon","id":37027,"properties":{"id":"37027","name":"Caldwell"},"arcs":[[-6140,6319,6320,6321,-6199,-6163]]},{"type":"Polygon","id":5129,"properties":{"id":"5129","name":"Searcy"},"arcs":[[-6125,-6316,6322,6323,-6317,-6119,-6122]]},{"type":"Polygon","id":47149,"properties":{"id":"47149","name":"Rutherford"},"arcs":[[6324,6325,6326,6327,6328,-6157,-6179]]},{"type":"Polygon","id":37199,"properties":{"id":"37199","name":"Yancey"},"arcs":[[6329,6330,6331,-6216,-6303]]},{"type":"MultiPolygon","id":47185,"properties":{"id":"47185","name":"White"},"arcs":[[[6276,-6277,6332]],[[-6279,6333,6334,-6310,-6192]]]},{"type":"Polygon","id":37183,"properties":{"id":"37183","name":"Wake"},"arcs":[[-6204,6335,6336,6337,-6237,-6053]]},{"type":"Polygon","id":37117,"properties":{"id":"37117","name":"Martin"},"arcs":[[6338,6339,6340,-6304,-6065,-6234]]},{"type":"Polygon","id":37115,"properties":{"id":"37115","name":"Madison"},"arcs":[[-6217,-6332,6341,6342,-6270,-6160]]},{"type":"Polygon","id":37059,"properties":{"id":"37059","name":"Davie"},"arcs":[[6343,6344,6345,-6197,-6212]]},{"type":"Polygon","id":48393,"properties":{"id":"48393","name":"Roberts"},"arcs":[[-6100,6346,6347,6348,6349,-6093,-6098]]},{"type":"Polygon","id":48211,"properties":{"id":"48211","name":"Hemphill"},"arcs":[[-6099,-6002,6350,6351,-6347]]},{"type":"Polygon","id":48233,"properties":{"id":"48233","name":"Hutchinson"},"arcs":[[-6094,-6350,6352,6353]]},{"type":"Polygon","id":48205,"properties":{"id":"48205","name":"Hartley"},"arcs":[[6354,6355,6356,-5766,-6096]]},{"type":"Polygon","id":37097,"properties":{"id":"37097","name":"Iredell"},"arcs":[[-6198,-6346,6357,6358,6359,6360,6361,6362,-6138]]},{"type":"Polygon","id":48341,"properties":{"id":"48341","name":"Moore"},"arcs":[[-6354,6363,6364,6365,-6355,-6088]]},{"type":"Polygon","id":47187,"properties":{"id":"47187","name":"Williamson"},"arcs":[[-6329,6366,6367,6368,-6183,-6132,-6158]]},{"type":"Polygon","id":37003,"properties":{"id":"37003","name":"Alexander"},"arcs":[[6369,-6320,-6139,-6363]]},{"type":"Polygon","id":47145,"properties":{"id":"47145","name":"Roane"},"arcs":[[6370,6371,6372,6373,-6273,-6168,-6195,-6269,6374]]},{"type":"Polygon","id":47155,"properties":{"id":"47155","name":"Sevier"},"arcs":[[-6272,6375,6376,6377,-6266,-6264]]},{"type":"Polygon","id":37057,"properties":{"id":"37057","name":"Davidson"},"arcs":[[-6223,6378,6379,6380,-6344,-6211]]},{"type":"Polygon","id":40129,"properties":{"id":"40129","name":"Roger Mills"},"arcs":[[-6290,6381,6382,6383,-6351,-6001]]},{"type":"Polygon","id":35031,"properties":{"id":"35031","name":"McKinley"},"arcs":[[-6254,6384,-5759,-5757]]},{"type":"Polygon","id":35049,"properties":{"id":"35049","name":"Santa Fe"},"arcs":[[-6209,6385,6386,6387,-6251,6388,6389,6390,-5752]]},{"type":"Polygon","id":5093,"properties":{"id":"5093","name":"Mississippi"},"arcs":[[6391,6392,6393,6394,6395,6396,6397,-5956,-6149,-6259]]},{"type":"Polygon","id":37023,"properties":{"id":"37023","name":"Burke"},"arcs":[[-6322,6398,6399,6400,6401,6402,-6200]]},{"type":"Polygon","id":47033,"properties":{"id":"47033","name":"Crockett"},"arcs":[[6403,6404,6405,-6257,-6248]]},{"type":"Polygon","id":5031,"properties":{"id":"5031","name":"Craighead"},"arcs":[[-6398,6406,6407,-6218,-6205,-5957]]},{"type":"Polygon","id":37177,"properties":{"id":"37177","name":"Tyrrell"},"arcs":[[6408,6409,6410]]},{"type":"Polygon","id":47081,"properties":{"id":"47081","name":"Hickman"},"arcs":[[-6369,6411,6412,6413,-6230,-6184]]},{"type":"Polygon","id":37187,"properties":{"id":"37187","name":"Washington"},"arcs":[[-6410,6414,6415,-6339,-6233,6416]]},{"type":"Polygon","id":35028,"properties":{"id":"35028","name":"Los Alamos"},"arcs":[[-5753,-6391,-6390,-6389,-6250]]},{"type":"Polygon","id":47015,"properties":{"id":"47015","name":"Cannon"},"arcs":[[6417,6418,-6325,-6178,-6312]]},{"type":"Polygon","id":37111,"properties":{"id":"37111","name":"McDowell"},"arcs":[[6419,6420,-6330,-6302,-6201,-6403]]},{"type":"Polygon","id":47097,"properties":{"id":"47097","name":"Lauderdale"},"arcs":[[-6406,6421,6422,-6392,-6258]]},{"type":"Polygon","id":40081,"properties":{"id":"40081","name":"Lincoln"},"arcs":[[-6293,6423,6424,6425,-6283,-6228]]},{"type":"Polygon","id":5063,"properties":{"id":"5063","name":"Independence"},"arcs":[[-6220,6426,6427,6428,-6313,-6213,-6113]]},{"type":"Polygon","id":37151,"properties":{"id":"37151","name":"Randolph"},"arcs":[[-6226,6429,6430,6431,-6379,-6222]]},{"type":"MultiPolygon","id":47105,"properties":{"id":"47105","name":"Loudon"},"arcs":[[[-6375,-6268,6432,6433,6434,-6371]]]},{"type":"Polygon","id":5067,"properties":{"id":"5067","name":"Jackson"},"arcs":[[-6219,-6408,6435,6436,6437,6438,-6427]]},{"type":"Polygon","id":47009,"properties":{"id":"47009","name":"Blount"},"arcs":[[6439,6440,6441,-6433,-6267,-6378]]},{"type":"Polygon","id":37037,"properties":{"id":"37037","name":"Chatham"},"arcs":[[-6238,-6338,6442,6443,6444,-6430,-6225,-6236]]},{"type":"Polygon","id":35047,"properties":{"id":"35047","name":"San Miguel"},"arcs":[[-6256,6445,6446,6447,-6386,-6208]]},{"type":"Polygon","id":37195,"properties":{"id":"37195","name":"Wilson"},"arcs":[[6448,6449,6450,6451,-6261,-6306]]},{"type":"Polygon","id":37159,"properties":{"id":"37159","name":"Rowan"},"arcs":[[-6381,6452,6453,-6358,-6345]]},{"type":"Polygon","id":40111,"properties":{"id":"40111","name":"Okmulgee"},"arcs":[[-6151,-6296,6454,6455,6456,-6291]]},{"type":"Polygon","id":40101,"properties":{"id":"40101","name":"Muskogee"},"arcs":[[-6299,6457,6458,6459,-6455,-6295]]},{"type":"Polygon","id":47177,"properties":{"id":"47177","name":"Warren"},"arcs":[[-6335,6460,6461,6462,6463,-6418,-6311]]},{"type":"Polygon","id":47119,"properties":{"id":"47119","name":"Maury"},"arcs":[[6464,6465,6466,6467,-6412,-6368]]},{"type":"Polygon","id":47039,"properties":{"id":"47039","name":"Decatur"},"arcs":[[6468,6469,6470,6471,-6307,-6175]]},{"type":"Polygon","id":47135,"properties":{"id":"47135","name":"Perry"},"arcs":[[-6414,6472,6473,-6469,-6174,-6231]]},{"type":"Polygon","id":37147,"properties":{"id":"37147","name":"Pitt"},"arcs":[[-6341,6474,6475,6476,6477,6478,6479,-6449,-6305]]},{"type":"Polygon","id":37035,"properties":{"id":"37035","name":"Catawba"},"arcs":[[-6362,6480,-6399,-6321,-6370]]},{"type":"Polygon","id":37021,"properties":{"id":"37021","name":"Buncombe"},"arcs":[[-6421,6481,6482,6483,-6342,-6331]]},{"type":"Polygon","id":47143,"properties":{"id":"47143","name":"Rhea"},"arcs":[[6484,6485,6486,-6274,-6374]]},{"type":"Polygon","id":47175,"properties":{"id":"47175","name":"Van Buren"},"arcs":[[-6278,-6277,-6276,6487,6488,-6461,-6334]]},{"type":"Polygon","id":47077,"properties":{"id":"47077","name":"Henderson"},"arcs":[[-6472,6489,6490,6491,-6308]]},{"type":"Polygon","id":47075,"properties":{"id":"47075","name":"Haywood"},"arcs":[[6492,6493,6494,6495,-6422,-6405]]},{"type":"Polygon","id":37101,"properties":{"id":"37101","name":"Johnston"},"arcs":[[-6452,6496,6497,6498,-6336,-6262]]},{"type":"Polygon","id":40039,"properties":{"id":"40039","name":"Custer"},"arcs":[[-6287,6499,6500,6501,-6382,-6289]]},{"type":"Polygon","id":6071,"properties":{"id":"6071","name":"San Bernardino"},"arcs":[[6502,6503,6504,6505,6506,6507,-5445,-5899]]},{"type":"Polygon","id":6079,"properties":{"id":"6079","name":"San Luis Obispo"},"arcs":[[-6128,6508,6509,6510,-5861]]},{"type":"Polygon","id":6029,"properties":{"id":"6029","name":"Kern"},"arcs":[[-6508,6511,6512,6513,-6509,-6127,-5925,-5446]]},{"type":"Polygon","id":47113,"properties":{"id":"47113","name":"Madison"},"arcs":[[-6309,-6492,6514,6515,-6493,-6404,-6247]]},{"type":"Polygon","id":5141,"properties":{"id":"5141","name":"Van Buren"},"arcs":[[-6315,6516,6517,6518,6519,-6323]]},{"type":"Polygon","id":37087,"properties":{"id":"37087","name":"Haywood"},"arcs":[[-6484,6520,6521,6522,-6376,-6271,-6343]]},{"type":"Polygon","id":5047,"properties":{"id":"5047","name":"Franklin"},"arcs":[[6523,6524,6525,-6188,6526]]},{"type":"Polygon","id":47007,"properties":{"id":"47007","name":"Bledsoe"},"arcs":[[-6487,6527,6528,-6488,-6275]]},{"type":"Polygon","id":5071,"properties":{"id":"5071","name":"Johnson"},"arcs":[[-6187,-6319,6529,6530,-6527]]},{"type":"Polygon","id":5033,"properties":{"id":"5033","name":"Crawford"},"arcs":[[6531,6532,-6300,-6239,-6189,-6526]]},{"type":"Polygon","id":47121,"properties":{"id":"47121","name":"Meigs"},"arcs":[[6533,6534,6535,-6485,-6373]]},{"type":"Polygon","id":35037,"properties":{"id":"35037","name":"Quay"},"arcs":[[-6357,6536,6537,6538,6539,6540,6541,-6446,-6255,-5767]]},{"type":"MultiPolygon","id":37013,"properties":{"id":"37013","name":"Beaufort"},"arcs":[[[6542,6543,6544,-6477]],[[-6416,6545,6546,-6475,-6340]]]},{"type":"Polygon","id":5115,"properties":{"id":"5115","name":"Pope"},"arcs":[[-6324,-6520,6547,6548,6549,-6530,-6318]]},{"type":"Polygon","id":40017,"properties":{"id":"40017","name":"Canadian"},"arcs":[[6550,6551,6552,6553,6554,-6285,-6281]]},{"type":"Polygon","id":40109,"properties":{"id":"40109","name":"Oklahoma"},"arcs":[[-6426,6555,6556,-6551,-6284]]},{"type":"Polygon","id":5023,"properties":{"id":"5023","name":"Cleburne"},"arcs":[[-6429,6557,6558,-6517,-6314]]},{"type":"Polygon","id":47117,"properties":{"id":"47117","name":"Marshall"},"arcs":[[6559,6560,6561,-6465,-6367,-6328]]},{"type":"Polygon","id":5111,"properties":{"id":"5111","name":"Poinsett"},"arcs":[[-6397,6562,6563,-6436,-6407]]},{"type":"MultiPolygon","id":37095,"properties":{"id":"37095","name":"Hyde"},"arcs":[[[-6409,6564,-6243,6565,-6546,-6415]]]},{"type":"Polygon","id":47031,"properties":{"id":"47031","name":"Coffee"},"arcs":[[-6419,-6464,6566,6567,6568,6569,-6326]]},{"type":"Polygon","id":47003,"properties":{"id":"47003","name":"Bedford"},"arcs":[[-6570,6570,6571,-6560,-6327]]},{"type":"Polygon","id":37173,"properties":{"id":"37173","name":"Swain"},"arcs":[[6572,6573,6574,-6440,-6377,-6523]]},{"type":"Polygon","id":47123,"properties":{"id":"47123","name":"Monroe"},"arcs":[[-6442,6575,6576,6577,6578,6579,6580,-6434]]},{"type":"Polygon","id":47101,"properties":{"id":"47101","name":"Lewis"},"arcs":[[-6468,6581,6582,-6473,-6413]]},{"type":"Polygon","id":37079,"properties":{"id":"37079","name":"Greene"},"arcs":[[6583,6584,-6450,-6480]]},{"type":"MultiPolygon","id":47167,"properties":{"id":"47167","name":"Tipton"},"arcs":[[[6585,6586,-6395]],[[-6496,6587,6588,-6393,-6423]]]},{"type":"Polygon","id":47107,"properties":{"id":"47107","name":"McMinn"},"arcs":[[-6435,-6581,-6580,-6579,6589,6590,-6534,-6372]]},{"type":"Polygon","id":40135,"properties":{"id":"40135","name":"Sequoyah"},"arcs":[[-6301,-6533,6591,6592,6593,-6458,-6298]]},{"type":"Polygon","id":40107,"properties":{"id":"40107","name":"Okfuskee"},"arcs":[[-6457,6594,6595,6596,6597,-6424,-6292]]},{"type":"Polygon","id":37105,"properties":{"id":"37105","name":"Lee"},"arcs":[[6598,6599,-6444]]},{"type":"Polygon","id":48359,"properties":{"id":"48359","name":"Oldham"},"arcs":[[-6366,6600,6601,-6537,-6356]]},{"type":"Polygon","id":48065,"properties":{"id":"48065","name":"Carson"},"arcs":[[-6349,6602,6603,6604,-6364,-6353]]},{"type":"Polygon","id":48179,"properties":{"id":"48179","name":"Gray"},"arcs":[[6605,6606,-6603,-6348]]},{"type":"Polygon","id":48483,"properties":{"id":"48483","name":"Wheeler"},"arcs":[[-6384,6607,6608,-6606,-6352]]},{"type":"Polygon","id":48375,"properties":{"id":"48375","name":"Potter"},"arcs":[[-6605,6609,-6601,-6365]]},{"type":"Polygon","id":37161,"properties":{"id":"37161","name":"Rutherford"},"arcs":[[6610,6611,6612,6613,6614,-6482,-6420,-6402]]},{"type":"Polygon","id":37191,"properties":{"id":"37191","name":"Wayne"},"arcs":[[-6585,6615,6616,6617,-6497,-6451]]},{"type":"Polygon","id":47023,"properties":{"id":"47023","name":"Chester"},"arcs":[[6618,6619,6620,-6515,-6491]]},{"type":"Polygon","id":37085,"properties":{"id":"37085","name":"Harnett"},"arcs":[[-6499,6621,6622,6623,-6599,-6443,-6337]]},{"type":"Polygon","id":37045,"properties":{"id":"37045","name":"Cleveland"},"arcs":[[6624,6625,6626,6627,-6611,-6401]]},{"type":"Polygon","id":37109,"properties":{"id":"37109","name":"Lincoln"},"arcs":[[-6361,6628,6629,-6625,-6400,-6481]]},{"type":"Polygon","id":47153,"properties":{"id":"47153","name":"Sequatchie"},"arcs":[[6630,6631,6632,-6462,-6489,-6529]]},{"type":"Polygon","id":40091,"properties":{"id":"40091","name":"McIntosh"},"arcs":[[6633,6634,6635,-6595,-6456,-6460]]},{"type":"Polygon","id":40015,"properties":{"id":"40015","name":"Caddo"},"arcs":[[-6555,6636,6637,6638,6639,-6500,-6286]]},{"type":"Polygon","id":5145,"properties":{"id":"5145","name":"White"},"arcs":[[-6439,6640,6641,6642,6643,-6558,-6428]]},{"type":"Polygon","id":47061,"properties":{"id":"47061","name":"Grundy"},"arcs":[[6644,6645,-6567,-6463,-6633]]},{"type":"Polygon","id":4025,"properties":{"id":"4025","name":"Yavapai"},"arcs":[[6646,6647,6648,6649,-5716]]},{"type":"Polygon","id":37099,"properties":{"id":"37099","name":"Jackson"},"arcs":[[-6522,6650,6651,6652,6653,-6573]]},{"type":"Polygon","id":37119,"properties":{"id":"37119","name":"Mecklenburg"},"arcs":[[6654,6655,6656,6657,6658,-6629,-6360]]},{"type":"Polygon","id":37125,"properties":{"id":"37125","name":"Moore"},"arcs":[[-6600,-6624,6659,6660,6661,6662,-6431,-6445]]},{"type":"Polygon","id":37123,"properties":{"id":"37123","name":"Montgomery"},"arcs":[[-6663,6663,6664,-6380,-6432]]},{"type":"Polygon","id":37025,"properties":{"id":"37025","name":"Cabarrus"},"arcs":[[6665,6666,-6655,-6359,-6454]]},{"type":"Polygon","id":40009,"properties":{"id":"40009","name":"Beckham"},"arcs":[[-6502,6667,6668,6669,6670,6671,-6608,-6383]]},{"type":"Polygon","id":37167,"properties":{"id":"37167","name":"Stanly"},"arcs":[[-6665,6672,6673,-6666,-6453]]},{"type":"Polygon","id":37089,"properties":{"id":"37089","name":"Henderson"},"arcs":[[-6615,6674,6675,6676,-6483]]},{"type":"Polygon","id":47181,"properties":{"id":"47181","name":"Wayne"},"arcs":[[6677,6678,6679,-6470,-6474,-6583]]},{"type":"Polygon","id":40133,"properties":{"id":"40133","name":"Seminole"},"arcs":[[6680,6681,6682,-6597]]},{"type":"Polygon","id":37075,"properties":{"id":"37075","name":"Graham"},"arcs":[[6683,6684,-6576,-6441,-6575]]},{"type":"Polygon","id":40149,"properties":{"id":"40149","name":"Washita"},"arcs":[[-6640,6685,-6668,-6501]]},{"type":"Polygon","id":40125,"properties":{"id":"40125","name":"Pottawatomie"},"arcs":[[-6598,-6683,6686,6687,6688,-6556,-6425]]},{"type":"Polygon","id":5029,"properties":{"id":"5029","name":"Conway"},"arcs":[[6689,6690,6691,-6548,-6519]]},{"type":"Polygon","id":47099,"properties":{"id":"47099","name":"Lawrence"},"arcs":[[-6467,6692,6693,-6678,-6582]]},{"type":"Polygon","id":40061,"properties":{"id":"40061","name":"Haskell"},"arcs":[[6694,6695,6696,-6634,-6459,-6594]]},{"type":"Polygon","id":47065,"properties":{"id":"47065","name":"Hamilton"},"arcs":[[-6536,6697,6698,6699,6700,6701,-6631,-6528,-6486]]},{"type":"Polygon","id":47055,"properties":{"id":"47055","name":"Giles"},"arcs":[[-6562,6702,6703,6704,-6693,-6466]]},{"type":"Polygon","id":5131,"properties":{"id":"5131","name":"Sebastian"},"arcs":[[-6525,6705,6706,6707,-6592,-6532]]},{"type":"Polygon","id":5037,"properties":{"id":"5037","name":"Cross"},"arcs":[[6708,6709,6710,-6437,-6564]]},{"type":"Polygon","id":5147,"properties":{"id":"5147","name":"Woodruff"},"arcs":[[-6711,6711,6712,6713,-6641,-6438]]},{"type":"Polygon","id":5035,"properties":{"id":"5035","name":"Crittenden"},"arcs":[[-6396,-6587,6714,6715,6716,6717,6718,-6709,-6563]]},{"type":"Polygon","id":47069,"properties":{"id":"47069","name":"Hardeman"},"arcs":[[-6516,-6621,6719,6720,6721,6722,6723,-6494]]},{"type":"Polygon","id":37107,"properties":{"id":"37107","name":"Lenoir"},"arcs":[[6724,6725,6726,-6616,-6584,-6479]]},{"type":"Polygon","id":5083,"properties":{"id":"5083","name":"Logan"},"arcs":[[-6531,-6550,6727,6728,-6706,-6524]]},{"type":"Polygon","id":37175,"properties":{"id":"37175","name":"Transylvania"},"arcs":[[6729,6730,6731,-6651,-6521,-6677]]},{"type":"Polygon","id":47071,"properties":{"id":"47071","name":"Hardin"},"arcs":[[-6680,6732,6733,6734,6735,-6619,-6490,-6471]]},{"type":"Polygon","id":37071,"properties":{"id":"37071","name":"Gaston"},"arcs":[[-6659,6736,-6626,-6630]]},{"type":"MultiPolygon","id":37049,"properties":{"id":"37049","name":"Craven"},"arcs":[[[6737,6738,6739]],[[-6545,6740,6741,6742,-6725,-6478]]]},{"type":"Polygon","id":47127,"properties":{"id":"47127","name":"Moore"},"arcs":[[6743,6744,-6571,-6569]]},{"type":"Polygon","id":47157,"properties":{"id":"47157","name":"Shelby"},"arcs":[[6745,6746,6747,-6715,-6586,-6394,-6589]]},{"type":"Polygon","id":37149,"properties":{"id":"37149","name":"Polk"},"arcs":[[6748,6749,-6675,-6614]]},{"type":"Polygon","id":47047,"properties":{"id":"47047","name":"Fayette"},"arcs":[[-6724,6750,6751,-6746,-6588,-6495]]},{"type":"Polygon","id":47109,"properties":{"id":"47109","name":"McNairy"},"arcs":[[-6736,6752,-6720,-6620]]},{"type":"Polygon","id":40079,"properties":{"id":"40079","name":"Le Flore"},"arcs":[[6753,6754,6755,6756,6757,-6695,-6593,-6708]]},{"type":"Polygon","id":40051,"properties":{"id":"40051","name":"Grady"},"arcs":[[6758,6759,6760,6761,-6637,-6554]]},{"type":"Polygon","id":40027,"properties":{"id":"40027","name":"Cleveland"},"arcs":[[-6689,6762,-6552,-6557]]},{"type":"Polygon","id":47103,"properties":{"id":"47103","name":"Lincoln"},"arcs":[[-6745,6763,6764,6765,-6703,-6561,-6572]]},{"type":"Polygon","id":5045,"properties":{"id":"5045","name":"Faulkner"},"arcs":[[-6559,-6644,6766,6767,6768,-6690,-6518]]},{"type":"Polygon","id":47051,"properties":{"id":"47051","name":"Franklin"},"arcs":[[-6646,6769,6770,6771,-6764,-6744,-6568]]},{"type":"Polygon","id":47011,"properties":{"id":"47011","name":"Bradley"},"arcs":[[6772,6773,6774,-6698,-6535,-6591]]},{"type":"Polygon","id":35006,"properties":{"id":"35006","name":"Cibola"},"arcs":[[-6253,6775,6776,6777,6778,-5760,-6385]]},{"type":"Polygon","id":40087,"properties":{"id":"40087","name":"McClain"},"arcs":[[-6688,6779,6780,-6759,-6553,-6763]]},{"type":"Polygon","id":37113,"properties":{"id":"37113","name":"Macon"},"arcs":[[6781,6782,6783,-6684,-6574,-6654]]},{"type":"Polygon","id":37137,"properties":{"id":"37137","name":"Pamlico"},"arcs":[[-6741,-6544,6784]]},{"type":"Polygon","id":47115,"properties":{"id":"47115","name":"Marion"},"arcs":[[-6702,6785,6786,-6770,-6645,-6632]]},{"type":"Polygon","id":37163,"properties":{"id":"37163","name":"Sampson"},"arcs":[[-6618,6787,6788,6789,6790,-6622,-6498]]},{"type":"Polygon","id":5149,"properties":{"id":"5149","name":"Yell"},"arcs":[[-6692,6791,6792,6793,6794,-6728,-6549]]},{"type":"Polygon","id":40121,"properties":{"id":"40121","name":"Pittsburg"},"arcs":[[-6697,6795,6796,6797,6798,6799,-6635]]},{"type":"Polygon","id":37039,"properties":{"id":"37039","name":"Cherokee"},"arcs":[[-6784,6800,6801,6802,6803,-6577,-6685]]},{"type":"Polygon","id":40063,"properties":{"id":"40063","name":"Hughes"},"arcs":[[-6636,-6800,6804,6805,-6681,-6596]]},{"type":"Polygon","id":47139,"properties":{"id":"47139","name":"Polk"},"arcs":[[-6804,6806,6807,-6773,-6590,-6578]]},{"type":"Polygon","id":37051,"properties":{"id":"37051","name":"Cumberland"},"arcs":[[-6791,6808,6809,6810,-6660,-6623]]},{"type":"Polygon","id":37103,"properties":{"id":"37103","name":"Jones"},"arcs":[[6811,-6739,6812,6813,6814,-6726,-6743]]},{"type":"Polygon","id":35001,"properties":{"id":"35001","name":"Bernalillo"},"arcs":[[-6388,6815,6816,-6776,-6252]]},{"type":"Polygon","id":35019,"properties":{"id":"35019","name":"Guadalupe"},"arcs":[[-6542,6817,6818,6819,-6447]]},{"type":"Polygon","id":45045,"properties":{"id":"45045","name":"Greenville"},"arcs":[[-6750,6820,6821,6822,6823,-6730,-6676]]},{"type":"Polygon","id":37007,"properties":{"id":"37007","name":"Anson"},"arcs":[[6824,6825,6826,6827,-6673]]},{"type":"Polygon","id":37093,"properties":{"id":"37093","name":"Hoke"},"arcs":[[-6811,6828,6829,-6661]]},{"type":"Polygon","id":37179,"properties":{"id":"37179","name":"Union"},"arcs":[[-6828,6830,6831,-6656,-6667,-6674]]},{"type":"Polygon","id":45083,"properties":{"id":"45083","name":"Spartanburg"},"arcs":[[6832,6833,-6821,-6749,-6613,6834]]},{"type":"Polygon","id":37061,"properties":{"id":"37061","name":"Duplin"},"arcs":[[-6727,-6815,6835,6836,-6788,-6617]]},{"type":"Polygon","id":48117,"properties":{"id":"48117","name":"Deaf Smith"},"arcs":[[6837,6838,6839,6840,-6538,-6602]]},{"type":"Polygon","id":45021,"properties":{"id":"45021","name":"Cherokee"},"arcs":[[6841,-6835,-6612,-6628,6842]]},{"type":"Polygon","id":48129,"properties":{"id":"48129","name":"Donley"},"arcs":[[6843,6844,6845,6846,-6607]]},{"type":"Polygon","id":48087,"properties":{"id":"48087","name":"Collingsworth"},"arcs":[[-6672,6847,6848,6849,-6844,-6609]]},{"type":"Polygon","id":48381,"properties":{"id":"48381","name":"Randall"},"arcs":[[6850,6851,6852,-6838,-6610]]},{"type":"Polygon","id":37153,"properties":{"id":"37153","name":"Richmond"},"arcs":[[-6662,6853,6854,-6825,-6664]]},{"type":"Polygon","id":48011,"properties":{"id":"48011","name":"Armstrong"},"arcs":[[-6847,6855,6856,-6851,-6604]]},{"type":"Polygon","id":45091,"properties":{"id":"45091","name":"York"},"arcs":[[6857,6858,6859,-6843,-6627,-6737,-6658]]},{"type":"Polygon","id":37043,"properties":{"id":"37043","name":"Clay"},"arcs":[[-6783,6860,6861,6862,-6801]]},{"type":"Polygon","id":5123,"properties":{"id":"5123","name":"St. Francis"},"arcs":[[-6719,6863,6864,-6712,-6710]]},{"type":"Polygon","id":40075,"properties":{"id":"40075","name":"Kiowa"},"arcs":[[-6639,6865,6866,6867,6868,-6669,-6686]]},{"type":"Polygon","id":37031,"properties":{"id":"37031","name":"Carteret"},"arcs":[[6869,-6813,-6738,6870]]},{"type":"Polygon","id":40055,"properties":{"id":"40055","name":"Greer"},"arcs":[[-6869,6871,6872,-6670]]},{"type":"MultiPolygon","id":6083,"properties":{"id":"6083","name":"Santa Barbara"},"arcs":[[[6873]],[[6874]],[[-6514,6875,6876,-6510]]]},{"type":"Polygon","id":5105,"properties":{"id":"5105","name":"Perry"},"arcs":[[6877,6878,6879,-6792,-6691,-6769]]},{"type":"Polygon","id":5127,"properties":{"id":"5127","name":"Scott"},"arcs":[[-6795,6880,6881,-6754,-6707,-6729]]},{"type":"Polygon","id":5117,"properties":{"id":"5117","name":"Prairie"},"arcs":[[-6714,6882,6883,6884,-6642]]},{"type":"Polygon","id":45077,"properties":{"id":"45077","name":"Pickens"},"arcs":[[-6824,6885,6886,-6731]]},{"type":"Polygon","id":5085,"properties":{"id":"5085","name":"Lonoke"},"arcs":[[-6885,6887,6888,6889,-6767,-6643]]},{"type":"Polygon","id":45057,"properties":{"id":"45057","name":"Lancaster"},"arcs":[[-6832,6890,6891,6892,6893,-6858,-6657]]},{"type":"Polygon","id":40077,"properties":{"id":"40077","name":"Latimer"},"arcs":[[-6758,6894,-6796,-6696]]},{"type":"Polygon","id":45073,"properties":{"id":"45073","name":"Oconee"},"arcs":[[6895,6896,6897,6898,6899,6900,-6652,-6732,-6887]]},{"type":"Polygon","id":35057,"properties":{"id":"35057","name":"Torrance"},"arcs":[[-6820,6901,6902,6903,-6816,-6387,-6448]]},{"type":"Polygon","id":37165,"properties":{"id":"37165","name":"Scotland"},"arcs":[[6904,6905,-6854,-6830]]},{"type":"Polygon","id":40057,"properties":{"id":"40057","name":"Harmon"},"arcs":[[-6873,6906,6907,6908,-6848,-6671]]},{"type":"Polygon","id":5119,"properties":{"id":"5119","name":"Pulaski"},"arcs":[[-6890,6909,6910,6911,-6878,-6768]]},{"type":"Polygon","id":1077,"properties":{"id":"1077","name":"Lauderdale"},"arcs":[[6912,6913,6914,-6733,-6679,-6694,-6705,6915]]},{"type":"Polygon","id":5095,"properties":{"id":"5095","name":"Monroe"},"arcs":[[-6865,6916,6917,6918,-6883,-6713]]},{"type":"Polygon","id":13241,"properties":{"id":"13241","name":"Rabun"},"arcs":[[6919,6920,-6861,-6782,-6653,-6901]]},{"type":"Polygon","id":1083,"properties":{"id":"1083","name":"Limestone"},"arcs":[[-6766,6921,6922,6923,-6916,-6704]]},{"type":"Polygon","id":28003,"properties":{"id":"28003","name":"Alcorn"},"arcs":[[6924,6925,-6721,-6753,-6735,6926]]},{"type":"Polygon","id":28141,"properties":{"id":"28141","name":"Tishomingo"},"arcs":[[6927,6928,6929,-6927,-6734,-6915,6930]]},{"type":"Polygon","id":28139,"properties":{"id":"28139","name":"Tippah"},"arcs":[[6931,6932,6933,-6722,-6926]]},{"type":"Polygon","id":28033,"properties":{"id":"28033","name":"DeSoto"},"arcs":[[6934,6935,-6716,-6748,6936]]},{"type":"Polygon","id":28009,"properties":{"id":"28009","name":"Benton"},"arcs":[[6937,6938,-6751,-6723,-6934]]},{"type":"Polygon","id":28093,"properties":{"id":"28093","name":"Marshall"},"arcs":[[6939,6940,6941,-6937,-6747,-6752,-6939]]},{"type":"Polygon","id":13281,"properties":{"id":"13281","name":"Towns"},"arcs":[[-6921,6942,6943,6944,-6862]]},{"type":"Polygon","id":1089,"properties":{"id":"1089","name":"Madison"},"arcs":[[-6772,6945,6946,6947,-6922,-6765]]},{"type":"Polygon","id":1071,"properties":{"id":"1071","name":"Jackson"},"arcs":[[6948,6949,-6946,-6771,-6787,6950]]},{"type":"Polygon","id":13213,"properties":{"id":"13213","name":"Murray"},"arcs":[[6951,6952,6953,-6774,-6808,6954]]},{"type":"Polygon","id":13111,"properties":{"id":"13111","name":"Fannin"},"arcs":[[-6803,6955,6956,6957,6958,-6955,-6807]]},{"type":"Polygon","id":13313,"properties":{"id":"13313","name":"Whitfield"},"arcs":[[6959,6960,6961,-6775,-6954]]},{"type":"Polygon","id":13047,"properties":{"id":"13047","name":"Catoosa"},"arcs":[[6962,-6699,-6962]]},{"type":"Polygon","id":13291,"properties":{"id":"13291","name":"Union"},"arcs":[[-6863,-6945,6963,6964,-6956,-6802]]},{"type":"Polygon","id":37133,"properties":{"id":"37133","name":"Onslow"},"arcs":[[-6870,6965,6966,-6836,-6814]]},{"type":"Polygon","id":13083,"properties":{"id":"13083","name":"Dade"},"arcs":[[-6786,-6701,6967,6968,-6951]]},{"type":"Polygon","id":13295,"properties":{"id":"13295","name":"Walker"},"arcs":[[-6961,6969,6970,6971,6972,-6968,-6700,-6963]]},{"type":"Polygon","id":40123,"properties":{"id":"40123","name":"Pontotoc"},"arcs":[[-6682,-6806,6973,6974,6975,6976,-6780,-6687]]},{"type":"Polygon","id":35061,"properties":{"id":"35061","name":"Valencia"},"arcs":[[-6817,-6904,6977,-6777]]},{"type":"Polygon","id":37155,"properties":{"id":"37155","name":"Robeson"},"arcs":[[6978,6979,6980,6981,6982,-6905,-6829,-6810]]},{"type":"Polygon","id":35009,"properties":{"id":"35009","name":"Curry"},"arcs":[[-6841,6983,6984,6985,-6539]]},{"type":"Polygon","id":45087,"properties":{"id":"45087","name":"Union"},"arcs":[[-6860,6986,6987,6988,6989,-6833,-6842]]},{"type":"Polygon","id":5077,"properties":{"id":"5077","name":"Lee"},"arcs":[[-6718,6990,6991,-6917,-6864]]},{"type":"Polygon","id":1033,"properties":{"id":"1033","name":"Colbert"},"arcs":[[6992,6993,-6931,-6914]]},{"type":"MultiPolygon","id":6111,"properties":{"id":"6111","name":"Ventura"},"arcs":[[[6994]],[[6995,-6876,-6513,6996]]]},{"type":"Polygon","id":28143,"properties":{"id":"28143","name":"Tunica"},"arcs":[[-6717,-6936,6997,6998,6999,7000,7001,-6991]]},{"type":"Polygon","id":1049,"properties":{"id":"1049","name":"De Kalb"},"arcs":[[-6973,7002,7003,7004,7005,-6949,-6969]]},{"type":"Polygon","id":37017,"properties":{"id":"37017","name":"Bladen"},"arcs":[[7006,7007,-6979,-6809,-6790]]},{"type":"Polygon","id":40065,"properties":{"id":"40065","name":"Jackson"},"arcs":[[7008,7009,7010,-6907,-6872,-6868]]},{"type":"Polygon","id":5125,"properties":{"id":"5125","name":"Saline"},"arcs":[[-6912,7011,7012,7013,-6879]]},{"type":"Polygon","id":40031,"properties":{"id":"40031","name":"Comanche"},"arcs":[[-6638,-6762,7014,7015,7016,-6866]]},{"type":"Polygon","id":40049,"properties":{"id":"40049","name":"Garvin"},"arcs":[[-6977,7017,7018,7019,-6760,-6781]]},{"type":"Polygon","id":13123,"properties":{"id":"13123","name":"Gilmer"},"arcs":[[7020,7021,7022,-6952,-6959]]},{"type":"Polygon","id":13137,"properties":{"id":"13137","name":"Habersham"},"arcs":[[-6900,7023,7024,7025,7026,-6943,-6920]]},{"type":"MultiPolygon","id":6037,"properties":{"id":"6037","name":"Los Angeles"},"arcs":[[[7027]],[[7028]],[[-6507,7029,7030,-6997,-6512]]]},{"type":"Polygon","id":45023,"properties":{"id":"45023","name":"Chester"},"arcs":[[-6894,7031,-6987,-6859]]},{"type":"Polygon","id":45007,"properties":{"id":"45007","name":"Anderson"},"arcs":[[7032,7033,7034,-6896,-6886,-6823]]},{"type":"Polygon","id":45025,"properties":{"id":"45025","name":"Chesterfield"},"arcs":[[7035,7036,-6891,-6831,-6827,7037]]},{"type":"Polygon","id":45069,"properties":{"id":"45069","name":"Marlboro"},"arcs":[[-6983,7038,7039,7040,-7038,-6826,-6855,-6906]]},{"type":"Polygon","id":1079,"properties":{"id":"1079","name":"Lawrence"},"arcs":[[-6924,7041,7042,7043,7044,-6993,-6913]]},{"type":"Polygon","id":13311,"properties":{"id":"13311","name":"White"},"arcs":[[7045,7046,-6964,-6944,-7027]]},{"type":"Polygon","id":45059,"properties":{"id":"45059","name":"Laurens"},"arcs":[[-6990,7047,7048,7049,-6822,-6834]]},{"type":"Polygon","id":35011,"properties":{"id":"35011","name":"De Baca"},"arcs":[[7050,7051,7052,-6818,-6541]]},{"type":"Polygon","id":28137,"properties":{"id":"28137","name":"Tate"},"arcs":[[-6942,7053,7054,-6998,-6935]]},{"type":"Polygon","id":5051,"properties":{"id":"5051","name":"Garland"},"arcs":[[-7014,7055,7056,-6793,-6880]]},{"type":"Polygon","id":40029,"properties":{"id":"40029","name":"Coal"},"arcs":[[-6799,7057,7058,-6974,-6805]]},{"type":"Polygon","id":28117,"properties":{"id":"28117","name":"Prentiss"},"arcs":[[-6930,7059,7060,7061,-6932,-6925]]},{"type":"Polygon","id":48437,"properties":{"id":"48437","name":"Swisher"},"arcs":[[-6857,7062,7063,7064,7065,-6852]]},{"type":"Polygon","id":48045,"properties":{"id":"48045","name":"Briscoe"},"arcs":[[-6846,7066,7067,7068,-7063,-6856]]},{"type":"Polygon","id":48069,"properties":{"id":"48069","name":"Castro"},"arcs":[[-7066,7069,7070,7071,-6839,-6853]]},{"type":"Polygon","id":48191,"properties":{"id":"48191","name":"Hall"},"arcs":[[-6850,7072,7073,7074,-7067,-6845]]},{"type":"Polygon","id":48075,"properties":{"id":"48075","name":"Childress"},"arcs":[[-6909,7075,7076,-7073,-6849]]},{"type":"Polygon","id":5097,"properties":{"id":"5097","name":"Montgomery"},"arcs":[[-7057,7077,7078,7079,7080,-6881,-6794]]},{"type":"Polygon","id":48369,"properties":{"id":"48369","name":"Parmer"},"arcs":[[-7072,7081,7082,-6984,-6840]]},{"type":"Polygon","id":13187,"properties":{"id":"13187","name":"Lumpkin"},"arcs":[[-7047,7083,7084,-6957,-6965]]},{"type":"MultiPolygon","id":37141,"properties":{"id":"37141","name":"Pender"},"arcs":[[[7085,-7086,7086]],[[-6967,7087,7088,7089,7090,-7007,-6789,-6837]]]},{"type":"Polygon","id":5113,"properties":{"id":"5113","name":"Polk"},"arcs":[[7091,7092,7093,-6755,-6882,-7081]]},{"type":"Polygon","id":1103,"properties":{"id":"1103","name":"Morgan"},"arcs":[[-6948,7094,7095,-7042,-6923]]},{"type":"Polygon","id":13257,"properties":{"id":"13257","name":"Stephens"},"arcs":[[7096,7097,-7024,-6899]]},{"type":"Polygon","id":40137,"properties":{"id":"40137","name":"Stephens"},"arcs":[[-7020,7098,7099,7100,-7015,-6761]]},{"type":"Polygon","id":40005,"properties":{"id":"40005","name":"Atoka"},"arcs":[[7101,7102,7103,7104,-7058,-6798]]},{"type":"Polygon","id":40127,"properties":{"id":"40127","name":"Pushmataha"},"arcs":[[-6757,7105,7106,-7102,-6797,-6895]]},{"type":"Polygon","id":5107,"properties":{"id":"5107","name":"Phillips"},"arcs":[[-7002,7107,7108,7109,7110,-6918,-6992]]},{"type":"Polygon","id":40099,"properties":{"id":"40099","name":"Murray"},"arcs":[[-6976,7111,7112,-7018]]},{"type":"Polygon","id":40141,"properties":{"id":"40141","name":"Tillman"},"arcs":[[-7017,7113,7114,7115,-7009,-6867]]},{"type":"Polygon","id":13129,"properties":{"id":"13129","name":"Gordon"},"arcs":[[-7023,7116,7117,7118,-6970,-6960,-6953]]},{"type":"Polygon","id":45033,"properties":{"id":"45033","name":"Dillon"},"arcs":[[7119,7120,7121,-7039,-6982]]},{"type":"Polygon","id":13085,"properties":{"id":"13085","name":"Dawson"},"arcs":[[-7085,7122,7123,7124,7125,-7021,-6958]]},{"type":"Polygon","id":45055,"properties":{"id":"45055","name":"Kershaw"},"arcs":[[7126,7127,7128,7129,7130,-6892,-7037]]},{"type":"Polygon","id":35041,"properties":{"id":"35041","name":"Roosevelt"},"arcs":[[-6986,7131,7132,7133,7134,-7051,-6540]]},{"type":"Polygon","id":28145,"properties":{"id":"28145","name":"Union"},"arcs":[[-7062,7135,7136,7137,-6940,-6938,-6933]]},{"type":"Polygon","id":1095,"properties":{"id":"1095","name":"Marshall"},"arcs":[[-7006,7138,7139,7140,-7095,-6947,-6950]]},{"type":"Polygon","id":13055,"properties":{"id":"13055","name":"Chattooga"},"arcs":[[7141,7142,-7003,-6972]]},{"type":"Polygon","id":13115,"properties":{"id":"13115","name":"Floyd"},"arcs":[[-7119,7143,7144,7145,-7142,-6971]]},{"type":"Polygon","id":35053,"properties":{"id":"35053","name":"Socorro"},"arcs":[[-6903,7146,7147,7148,-6778,-6978]]},{"type":"Polygon","id":35003,"properties":{"id":"35003","name":"Catron"},"arcs":[[-7149,7149,7150,7151,-5761,-6779]]},{"type":"Polygon","id":1059,"properties":{"id":"1059","name":"Franklin"},"arcs":[[-7045,7152,7153,7154,-6928,-6994]]},{"type":"Polygon","id":48197,"properties":{"id":"48197","name":"Hardeman"},"arcs":[[-7011,7155,7156,7157,-7076,-6908]]},{"type":"Polygon","id":45039,"properties":{"id":"45039","name":"Fairfield"},"arcs":[[-6893,-7131,7158,7159,-6988,-7032]]},{"type":"Polygon","id":5001,"properties":{"id":"5001","name":"Arkansas"},"arcs":[[-6919,-7111,7160,7161,7162,-6888,-6884]]},{"type":"Polygon","id":13227,"properties":{"id":"13227","name":"Pickens"},"arcs":[[-7126,7163,-7117,-7022]]},{"type":"Polygon","id":28071,"properties":{"id":"28071","name":"Lafayette"},"arcs":[[-7138,7164,7165,7166,7167,-7054,-6941]]},{"type":"Polygon","id":28107,"properties":{"id":"28107","name":"Panola"},"arcs":[[-7168,7168,7169,7170,-6999,-7055]]},{"type":"Polygon","id":13119,"properties":{"id":"13119","name":"Franklin"},"arcs":[[7171,7172,7173,-7097,-6898]]},{"type":"Polygon","id":45031,"properties":{"id":"45031","name":"Darlington"},"arcs":[[-7041,7174,7175,-7127,-7036]]},{"type":"Polygon","id":45071,"properties":{"id":"45071","name":"Newberry"},"arcs":[[-7160,7176,7177,7178,7179,-7048,-6989]]},{"type":"Polygon","id":1019,"properties":{"id":"1019","name":"Cherokee"},"arcs":[[-7146,7180,7181,7182,7183,-7004,-7143]]},{"type":"Polygon","id":28027,"properties":{"id":"28027","name":"Coahoma"},"arcs":[[7184,7185,7186,-7108,-7001,7187]]},{"type":"Polygon","id":28119,"properties":{"id":"28119","name":"Quitman"},"arcs":[[-7171,7188,-7188,-7000]]},{"type":"Polygon","id":13139,"properties":{"id":"13139","name":"Hall"},"arcs":[[-7026,7189,7190,7191,7192,-7123,-7084,-7046]]},{"type":"Polygon","id":28081,"properties":{"id":"28081","name":"Lee"},"arcs":[[7193,7194,7195,7196,-7136,-7061]]},{"type":"Polygon","id":40019,"properties":{"id":"40019","name":"Carter"},"arcs":[[-7113,7197,7198,7199,7200,-7099,-7019]]},{"type":"Polygon","id":40069,"properties":{"id":"40069","name":"Johnston"},"arcs":[[-6975,-7059,-7105,7201,7202,-7198,-7112]]},{"type":"Polygon","id":40033,"properties":{"id":"40033","name":"Cotton"},"arcs":[[-7101,7203,7204,7205,-7114,-7016]]},{"type":"Polygon","id":40089,"properties":{"id":"40089","name":"McCurtain"},"arcs":[[-7094,7206,7207,7208,7209,7210,-7106,-6756]]},{"type":"Polygon","id":5059,"properties":{"id":"5059","name":"Hot Spring"},"arcs":[[-7013,7211,7212,7213,-7078,-7056]]},{"type":"Polygon","id":4007,"properties":{"id":"4007","name":"Gila"},"arcs":[[-5713,7214,7215,7216,-6647,-5715]]},{"type":"Polygon","id":13147,"properties":{"id":"13147","name":"Hart"},"arcs":[[-7035,7217,7218,-7172,-6897]]},{"type":"Polygon","id":5053,"properties":{"id":"5053","name":"Grant"},"arcs":[[-6911,7219,7220,7221,-7212,-7012]]},{"type":"Polygon","id":5069,"properties":{"id":"5069","name":"Jefferson"},"arcs":[[-6889,-7163,7222,7223,-7220,-6910]]},{"type":"Polygon","id":13011,"properties":{"id":"13011","name":"Banks"},"arcs":[[7224,7225,-7190,-7025,-7098,-7174]]},{"type":"Polygon","id":37047,"properties":{"id":"37047","name":"Columbus"},"arcs":[[-7091,7226,7227,-6980,-7008]]},{"type":"Polygon","id":45001,"properties":{"id":"45001","name":"Abbeville"},"arcs":[[7228,7229,7230,-7033,-7050]]},{"type":"Polygon","id":28057,"properties":{"id":"28057","name":"Itawamba"},"arcs":[[-6929,-7155,7231,7232,-7194,-7060]]},{"type":"Polygon","id":48487,"properties":{"id":"48487","name":"Wilbarger"},"arcs":[[-7116,7233,7234,7235,-7156,-7010]]},{"type":"Polygon","id":13015,"properties":{"id":"13015","name":"Bartow"},"arcs":[[7236,7237,7238,-7144,-7118,7239]]},{"type":"Polygon","id":13057,"properties":{"id":"13057","name":"Cherokee"},"arcs":[[-7125,7240,7241,7242,-7240,-7164]]},{"type":"Polygon","id":45047,"properties":{"id":"45047","name":"Greenwood"},"arcs":[[-7180,7243,7244,7245,-7229,-7049]]},{"type":"MultiPolygon","id":37129,"properties":{"id":"37129","name":"New Hanover"},"arcs":[[[7246,-7086,7247,7248,-7089]]]},{"type":"Polygon","id":28115,"properties":{"id":"28115","name":"Pontotoc"},"arcs":[[-7197,7249,7250,-7165,-7137]]},{"type":"Polygon","id":45061,"properties":{"id":"45061","name":"Lee"},"arcs":[[7251,7252,-7128,-7176]]},{"type":"MultiPolygon","id":37019,"properties":{"id":"37019","name":"Brunswick"},"arcs":[[[7253,-7254,7254]],[[-7249,7255,7256,7257,7258,-7227,-7090]]]},{"type":"Polygon","id":5061,"properties":{"id":"5061","name":"Howard"},"arcs":[[7259,7260,7261,7262,-7092]]},{"type":"Polygon","id":5109,"properties":{"id":"5109","name":"Pike"},"arcs":[[7263,7264,7265,-7260,-7080]]},{"type":"Polygon","id":35027,"properties":{"id":"35027","name":"Lincoln"},"arcs":[[-7053,7266,7267,7268,-7147,-6902,-6819]]},{"type":"Polygon","id":5019,"properties":{"id":"5019","name":"Clark"},"arcs":[[-7214,7269,7270,7271,-7264,-7079]]},{"type":"Polygon","id":13117,"properties":{"id":"13117","name":"Forsyth"},"arcs":[[-7193,7272,7273,-7241,-7124]]},{"type":"Polygon","id":1093,"properties":{"id":"1093","name":"Marion"},"arcs":[[7274,7275,7276,7277,7278,-7232,-7154]]},{"type":"Polygon","id":4012,"properties":{"id":"4012","name":"La Paz"},"arcs":[[-6649,7279,7280,7281,7282,-6504,7283]]},{"type":"Polygon","id":48345,"properties":{"id":"48345","name":"Motley"},"arcs":[[7284,7285,7286,-7068,-7075]]},{"type":"Polygon","id":48101,"properties":{"id":"48101","name":"Cottle"},"arcs":[[-7077,-7158,7287,7288,-7285,-7074]]},{"type":"Polygon","id":1043,"properties":{"id":"1043","name":"Cullman"},"arcs":[[-7141,7289,7290,7291,-7043,-7096]]},{"type":"Polygon","id":48153,"properties":{"id":"48153","name":"Floyd"},"arcs":[[-7287,7292,7293,-7064,-7069]]},{"type":"Polygon","id":48189,"properties":{"id":"48189","name":"Hale"},"arcs":[[-7070,-7065,-7294,7294,7295]]},{"type":"Polygon","id":48279,"properties":{"id":"48279","name":"Lamb"},"arcs":[[-7296,7296,7297,-7082,-7071]]},{"type":"Polygon","id":45041,"properties":{"id":"45041","name":"Florence"},"arcs":[[7298,7299,7300,7301,-7252,-7175,-7040,-7122]]},{"type":"Polygon","id":48017,"properties":{"id":"48017","name":"Bailey"},"arcs":[[-7298,7302,-7132,-6985,-7083]]},{"type":"Polygon","id":1133,"properties":{"id":"1133","name":"Winston"},"arcs":[[-7044,-7292,7303,-7275,-7153]]},{"type":"MultiPolygon","id":45051,"properties":{"id":"45051","name":"Horry"},"arcs":[[[-7257,7256,7304]],[[-7228,-7259,7305,7306,7307,-7120,-6981]]]},{"type":"Polygon","id":45067,"properties":{"id":"45067","name":"Marion"},"arcs":[[-7308,7308,7309,-7299,-7121]]},{"type":"Polygon","id":13157,"properties":{"id":"13157","name":"Jackson"},"arcs":[[7310,7311,7312,-7191,-7226]]},{"type":"Polygon","id":40067,"properties":{"id":"40067","name":"Jefferson"},"arcs":[[-7201,7313,7314,7315,-7204,-7100]]},{"type":"Polygon","id":13105,"properties":{"id":"13105","name":"Elbert"},"arcs":[[-7231,7316,7317,7318,7319,7320,-7218,-7034]]},{"type":"Polygon","id":13195,"properties":{"id":"13195","name":"Madison"},"arcs":[[-7321,7321,7322,-7311,-7225,-7173,-7219]]},{"type":"Polygon","id":45079,"properties":{"id":"45079","name":"Richland"},"arcs":[[7323,7324,7325,-7177,-7159,-7130]]},{"type":"Polygon","id":1009,"properties":{"id":"1009","name":"Blount"},"arcs":[[-7140,7326,7327,7328,7329,-7290]]},{"type":"Polygon","id":48155,"properties":{"id":"48155","name":"Foard"},"arcs":[[-7157,-7236,7330,7331,7332,-7288]]},{"type":"Polygon","id":48485,"properties":{"id":"48485","name":"Wichita"},"arcs":[[-7206,7333,7334,-7234,-7115]]},{"type":"Polygon","id":1055,"properties":{"id":"1055","name":"Etowah"},"arcs":[[-7184,7335,7336,-7327,-7139,-7005]]},{"type":"Polygon","id":45063,"properties":{"id":"45063","name":"Lexington"},"arcs":[[7337,7338,7339,7340,-7178,-7326]]},{"type":"Polygon","id":28161,"properties":{"id":"28161","name":"Yalobusha"},"arcs":[[7341,7342,7343,-7169,-7167]]},{"type":"Polygon","id":5133,"properties":{"id":"5133","name":"Sevier"},"arcs":[[7344,-7207,-7093,-7263]]},{"type":"Polygon","id":45081,"properties":{"id":"45081","name":"Saluda"},"arcs":[[-7341,7345,7346,-7244,-7179]]},{"type":"Polygon","id":13121,"properties":{"id":"13121","name":"Fulton"},"arcs":[[-7274,7347,7348,7349,7350,7351,7352,7353,7354,-7242]]},{"type":"Polygon","id":40095,"properties":{"id":"40095","name":"Marshall"},"arcs":[[7355,7356,7357,-7199,-7203]]},{"type":"Polygon","id":5079,"properties":{"id":"5079","name":"Lincoln"},"arcs":[[-7162,7358,7359,7360,-7223]]},{"type":"Polygon","id":45085,"properties":{"id":"45085","name":"Sumter"},"arcs":[[-7302,7361,7362,-7324,-7129,-7253]]},{"type":"Polygon","id":13135,"properties":{"id":"13135","name":"Gwinnett"},"arcs":[[7363,7364,7365,7366,-7348,-7273,-7192]]},{"type":"Polygon","id":28135,"properties":{"id":"28135","name":"Tallahatchie"},"arcs":[[-7344,7367,7368,7369,-7185,-7189,-7170]]},{"type":"Polygon","id":28013,"properties":{"id":"28013","name":"Calhoun"},"arcs":[[-7251,7370,7371,7372,-7342,-7166]]},{"type":"Polygon","id":40013,"properties":{"id":"40013","name":"Bryan"},"arcs":[[7373,7374,7375,7376,-7356,-7202,-7104]]},{"type":"Polygon","id":40023,"properties":{"id":"40023","name":"Choctaw"},"arcs":[[-7211,7377,7378,-7374,-7103,-7107]]},{"type":"Polygon","id":5039,"properties":{"id":"5039","name":"Dallas"},"arcs":[[-7222,7379,7380,7381,-7270,-7213]]},{"type":"Polygon","id":48077,"properties":{"id":"48077","name":"Clay"},"arcs":[[-7316,7382,7383,7384,-7334,-7205]]},{"type":"Polygon","id":13013,"properties":{"id":"13013","name":"Barrow"},"arcs":[[7385,7386,-7364,-7313]]},{"type":"Polygon","id":28011,"properties":{"id":"28011","name":"Bolivar"},"arcs":[[7387,7388,7389,7390,-7109,-7187]]},{"type":"Polygon","id":5041,"properties":{"id":"5041","name":"Desha"},"arcs":[[-7391,7391,7392,-7359,-7161,-7110]]},{"type":"Polygon","id":13233,"properties":{"id":"13233","name":"Polk"},"arcs":[[-7239,7393,7394,7395,-7181,-7145]]},{"type":"Polygon","id":28095,"properties":{"id":"28095","name":"Monroe"},"arcs":[[-7233,-7279,7396,7397,7398,7399,-7195]]},{"type":"Polygon","id":35005,"properties":{"id":"35005","name":"Chaves"},"arcs":[[-7135,7400,7401,7402,-7267,-7052]]},{"type":"Polygon","id":13067,"properties":{"id":"13067","name":"Cobb"},"arcs":[[-7355,7403,7404,-7237,-7243]]},{"type":"Polygon","id":6065,"properties":{"id":"6065","name":"Riverside"},"arcs":[[7405,7406,7407,-6505,-7283]]},{"type":"Polygon","id":13223,"properties":{"id":"13223","name":"Paulding"},"arcs":[[-7405,7408,7409,7410,-7394,-7238]]},{"type":"Polygon","id":45065,"properties":{"id":"45065","name":"McCormick"},"arcs":[[-7246,7411,7412,7413,-7317,-7230]]},{"type":"Polygon","id":28017,"properties":{"id":"28017","name":"Chickasaw"},"arcs":[[-7196,-7400,7414,7415,-7371,-7250]]},{"type":"Polygon","id":40085,"properties":{"id":"40085","name":"Love"},"arcs":[[-7358,7416,7417,7418,-7314,-7200]]},{"type":"Polygon","id":5025,"properties":{"id":"5025","name":"Cleveland"},"arcs":[[-7361,7419,7420,7421,-7380,-7221,-7224]]},{"type":"Polygon","id":1075,"properties":{"id":"1075","name":"Lamar"},"arcs":[[7422,7423,7424,-7397,-7278]]},{"type":"Polygon","id":13221,"properties":{"id":"13221","name":"Oglethorpe"},"arcs":[[-7320,7425,7426,7427,7428,7429,-7322]]},{"type":"Polygon","id":4013,"properties":{"id":"4013","name":"Maricopa"},"arcs":[[-7217,7430,7431,7432,-7280,-6648]]},{"type":"Polygon","id":13059,"properties":{"id":"13059","name":"Clarke"},"arcs":[[-7430,7433,-7312,-7323]]},{"type":"Polygon","id":5057,"properties":{"id":"5057","name":"Hempstead"},"arcs":[[7434,7435,7436,7437,-7261,-7266]]},{"type":"Polygon","id":1127,"properties":{"id":"1127","name":"Walker"},"arcs":[[-7291,-7330,7438,7439,7440,-7276,-7304]]},{"type":"Polygon","id":13317,"properties":{"id":"13317","name":"Wilkes"},"arcs":[[7441,7442,7443,7444,-7426,-7319]]},{"type":"Polygon","id":48337,"properties":{"id":"48337","name":"Montague"},"arcs":[[-7419,7445,7446,7447,-7383,-7315]]},{"type":"Polygon","id":1115,"properties":{"id":"1115","name":"St. Clair"},"arcs":[[7448,7449,7450,7451,-7328,-7337]]},{"type":"Polygon","id":28133,"properties":{"id":"28133","name":"Sunflower"},"arcs":[[-7370,7452,7453,7454,-7388,-7186]]},{"type":"Polygon","id":13181,"properties":{"id":"13181","name":"Lincoln"},"arcs":[[-7414,7455,7456,-7442,-7318]]},{"type":"Polygon","id":45037,"properties":{"id":"45037","name":"Edgefield"},"arcs":[[7457,7458,7459,-7412,-7245,-7347]]},{"type":"Polygon","id":13089,"properties":{"id":"13089","name":"De Kalb"},"arcs":[[-7367,7460,7461,7462,-7349]]},{"type":"Polygon","id":1015,"properties":{"id":"1015","name":"Calhoun"},"arcs":[[7463,-7449,-7336,-7183,7464]]},{"type":"Polygon","id":13219,"properties":{"id":"13219","name":"Oconee"},"arcs":[[-7429,7465,7466,7467,-7386,-7434]]},{"type":"Polygon","id":1029,"properties":{"id":"1029","name":"Cleburne"},"arcs":[[-7396,7468,7469,7470,7471,7472,-7465,-7182]]},{"type":"Polygon","id":48387,"properties":{"id":"48387","name":"Red River"},"arcs":[[-7210,7473,7474,7475,7476,7477,7478,-7378]]},{"type":"Polygon","id":5099,"properties":{"id":"5099","name":"Nevada"},"arcs":[[-7272,7479,7480,7481,-7435,-7265]]},{"type":"Polygon","id":48181,"properties":{"id":"48181","name":"Grayson"},"arcs":[[-7377,7482,7483,7484,7485,-7417,-7357]]},{"type":"Polygon","id":48097,"properties":{"id":"48097","name":"Cooke"},"arcs":[[-7486,7486,7487,-7446,-7418]]},{"type":"Polygon","id":5081,"properties":{"id":"5081","name":"Little River"},"arcs":[[-7262,-7438,7488,7489,-7208,-7345]]},{"type":"Polygon","id":45027,"properties":{"id":"45027","name":"Clarendon"},"arcs":[[7490,7491,7492,7493,-7362,-7301]]},{"type":"Polygon","id":6059,"properties":{"id":"6059","name":"Orange"},"arcs":[[-6506,-7408,7494,7495,-7030]]},{"type":"Polygon","id":48277,"properties":{"id":"48277","name":"Lamar"},"arcs":[[-7479,7496,7497,-7375,-7379]]},{"type":"Polygon","id":13297,"properties":{"id":"13297","name":"Walton"},"arcs":[[-7468,7498,7499,7500,-7365,-7387]]},{"type":"Polygon","id":1057,"properties":{"id":"1057","name":"Fayette"},"arcs":[[-7441,7501,7502,-7423,-7277]]},{"type":"Polygon","id":13143,"properties":{"id":"13143","name":"Haralson"},"arcs":[[7503,-7469,-7395,-7411]]},{"type":"Polygon","id":28043,"properties":{"id":"28043","name":"Grenada"},"arcs":[[-7373,7504,7505,7506,7507,-7368,-7343]]},{"type":"Polygon","id":45089,"properties":{"id":"45089","name":"Williamsburg"},"arcs":[[-7310,7508,7509,-7491,-7300]]},{"type":"Polygon","id":48147,"properties":{"id":"48147","name":"Fannin"},"arcs":[[-7498,7510,7511,7512,-7483,-7376]]},{"type":"Polygon","id":45017,"properties":{"id":"45017","name":"Calhoun"},"arcs":[[-7363,-7494,7513,-7338,-7325]]},{"type":"Polygon","id":45003,"properties":{"id":"45003","name":"Aiken"},"arcs":[[7514,7515,7516,7517,-7458,-7346,-7340]]},{"type":"Polygon","id":1073,"properties":{"id":"1073","name":"Jefferson"},"arcs":[[-7452,7518,7519,7520,-7439,-7329]]},{"type":"Polygon","id":48269,"properties":{"id":"48269","name":"King"},"arcs":[[-7333,7521,7522,7523,-7289]]},{"type":"Polygon","id":48275,"properties":{"id":"48275","name":"Knox"},"arcs":[[7524,7525,-7522,-7332]]},{"type":"Polygon","id":48009,"properties":{"id":"48009","name":"Archer"},"arcs":[[-7385,7526,7527,7528,-7335]]},{"type":"Polygon","id":48125,"properties":{"id":"48125","name":"Dickens"},"arcs":[[-7524,7529,7530,-7286]]},{"type":"Polygon","id":48107,"properties":{"id":"48107","name":"Crosby"},"arcs":[[-7531,7531,7532,-7293]]},{"type":"Polygon","id":48023,"properties":{"id":"48023","name":"Baylor"},"arcs":[[-7529,7533,-7525,-7331,-7235]]},{"type":"Polygon","id":48303,"properties":{"id":"48303","name":"Lubbock"},"arcs":[[-7533,7534,7535,-7295]]},{"type":"Polygon","id":48079,"properties":{"id":"48079","name":"Cochran"},"arcs":[[7536,7537,7538,-7133,-7303]]},{"type":"Polygon","id":48219,"properties":{"id":"48219","name":"Hockley"},"arcs":[[-7536,7539,-7537,-7297]]},{"type":"Polygon","id":5103,"properties":{"id":"5103","name":"Ouachita"},"arcs":[[-7382,7540,7541,7542,-7480,-7271]]},{"type":"Polygon","id":13211,"properties":{"id":"13211","name":"Morgan"},"arcs":[[7543,7544,7545,7546,-7499,-7467]]},{"type":"Polygon","id":13045,"properties":{"id":"13045","name":"Carroll"},"arcs":[[-7353,7547,7548,7549,-7470,-7504,-7410,7550]]},{"type":"Polygon","id":28083,"properties":{"id":"28083","name":"Leflore"},"arcs":[[-7508,7551,7552,7553,-7453,-7369]]},{"type":"Polygon","id":28025,"properties":{"id":"28025","name":"Clay"},"arcs":[[-7399,7554,7555,7556,-7415]]},{"type":"Polygon","id":13097,"properties":{"id":"13097","name":"Douglas"},"arcs":[[-7354,-7551,-7409,-7404]]},{"type":"Polygon","id":5013,"properties":{"id":"5013","name":"Calhoun"},"arcs":[[7557,7558,-7541,-7381,-7422]]},{"type":"Polygon","id":5043,"properties":{"id":"5043","name":"Drew"},"arcs":[[-7393,7559,7560,7561,-7420,-7360]]},{"type":"Polygon","id":13247,"properties":{"id":"13247","name":"Rockdale"},"arcs":[[7562,-7461,-7366,-7501,7563]]},{"type":"MultiPolygon","id":45043,"properties":{"id":"45043","name":"Georgetown"},"arcs":[[[7564,-7565,7565]],[[-7307,7566,7567,7568,-7509,-7309]]]},{"type":"Polygon","id":4011,"properties":{"id":"4011","name":"Greenlee"},"arcs":[[-7152,7569,7570,7571,7572,-5762]]},{"type":"Polygon","id":13133,"properties":{"id":"13133","name":"Greene"},"arcs":[[7573,7574,7575,-7544,-7466,-7428]]},{"type":"Polygon","id":28087,"properties":{"id":"28087","name":"Lowndes"},"arcs":[[-7425,7576,7577,7578,-7555,-7398]]},{"type":"Polygon","id":13217,"properties":{"id":"13217","name":"Newton"},"arcs":[[-7547,7579,7580,7581,-7564,-7500]]},{"type":"Polygon","id":28155,"properties":{"id":"28155","name":"Webster"},"arcs":[[-7557,7582,7583,7584,-7505,-7372,-7416]]},{"type":"Polygon","id":13265,"properties":{"id":"13265","name":"Taliaferro"},"arcs":[[7585,7586,-7574,-7427,-7445]]},{"type":"Polygon","id":48037,"properties":{"id":"48037","name":"Bowie"},"arcs":[[-7490,7587,7588,7589,-7474,-7209]]},{"type":"Polygon","id":45075,"properties":{"id":"45075","name":"Orangeburg"},"arcs":[[-7493,7590,7591,7592,7593,7594,-7515,-7339,-7514]]},{"type":"Polygon","id":5011,"properties":{"id":"5011","name":"Bradley"},"arcs":[[-7562,7595,7596,-7558,-7421]]},{"type":"Polygon","id":13073,"properties":{"id":"13073","name":"Columbia"},"arcs":[[-7413,-7460,7597,7598,-7456]]},{"type":"Polygon","id":1121,"properties":{"id":"1121","name":"Talladega"},"arcs":[[-7464,-7473,7599,7600,7601,-7450]]},{"type":"Polygon","id":28097,"properties":{"id":"28097","name":"Montgomery"},"arcs":[[-7585,7602,7603,7604,-7506]]},{"type":"Polygon","id":28015,"properties":{"id":"28015","name":"Carroll"},"arcs":[[-7605,7605,7606,-7552,-7507]]},{"type":"Polygon","id":13189,"properties":{"id":"13189","name":"McDuffie"},"arcs":[[-7457,-7599,7607,7608,7609,-7443]]},{"type":"Polygon","id":4009,"properties":{"id":"4009","name":"Graham"},"arcs":[[-7573,7610,7611,7612,-7215,-5712,-5763]]},{"type":"Polygon","id":13063,"properties":{"id":"13063","name":"Clayton"},"arcs":[[-7463,7613,7614,7615,-7350]]},{"type":"Polygon","id":13151,"properties":{"id":"13151","name":"Henry"},"arcs":[[-7563,-7582,7616,7617,-7614,-7462]]},{"type":"Polygon","id":5091,"properties":{"id":"5091","name":"Miller"},"arcs":[[7618,7619,7620,7621,-7588,-7489,-7437]]},{"type":"Polygon","id":13301,"properties":{"id":"13301","name":"Warren"},"arcs":[[7622,7623,7624,-7586,-7444,-7610]]},{"type":"Polygon","id":1125,"properties":{"id":"1125","name":"Tuscaloosa"},"arcs":[[-7440,-7521,7625,7626,7627,7628,-7502]]},{"type":"Polygon","id":35025,"properties":{"id":"35025","name":"Lea"},"arcs":[[-7539,7629,7630,7631,7632,7633,7634,-7401,-7134]]},{"type":"Polygon","id":28105,"properties":{"id":"28105","name":"Oktibbeha"},"arcs":[[-7579,7635,7636,7637,-7583,-7556]]},{"type":"Polygon","id":5017,"properties":{"id":"5017","name":"Chicot"},"arcs":[[-7390,7638,7639,7640,7641,7642,7643,-7560,-7392]]},{"type":"Polygon","id":13113,"properties":{"id":"13113","name":"Fayette"},"arcs":[[7644,7645,-7351,-7616]]},{"type":"Polygon","id":1117,"properties":{"id":"1117","name":"Shelby"},"arcs":[[-7602,7646,7647,7648,-7519,-7451]]},{"type":"Polygon","id":13245,"properties":{"id":"13245","name":"Richmond"},"arcs":[[7649,7650,-7608,-7598,-7459,-7518]]},{"type":"Polygon","id":1107,"properties":{"id":"1107","name":"Pickens"},"arcs":[[-7503,-7629,7651,7652,7653,-7577,-7424]]},{"type":"Polygon","id":28019,"properties":{"id":"28019","name":"Choctaw"},"arcs":[[-7638,7654,7655,-7603,-7584]]},{"type":"Polygon","id":28151,"properties":{"id":"28151","name":"Washington"},"arcs":[[-7455,7656,7657,7658,-7639,-7389]]},{"type":"Polygon","id":13159,"properties":{"id":"13159","name":"Jasper"},"arcs":[[7659,7660,7661,7662,-7580,-7546]]},{"type":"Polygon","id":13077,"properties":{"id":"13077","name":"Coweta"},"arcs":[[-7646,7663,7664,7665,7666,-7548,-7352]]},{"type":"Polygon","id":45015,"properties":{"id":"45015","name":"Berkeley"},"arcs":[[-7569,7667,7668,7669,7670,-7591,-7492,-7510]]},{"type":"Polygon","id":6073,"properties":{"id":"6073","name":"San Diego"},"arcs":[[7671,7672,-7495,-7407]]},{"type":"Polygon","id":1111,"properties":{"id":"1111","name":"Randolph"},"arcs":[[-7550,7673,7674,7675,7676,7677,-7471]]},{"type":"Polygon","id":1027,"properties":{"id":"1027","name":"Clay"},"arcs":[[-7678,7678,7679,-7600,-7472]]},{"type":"Polygon","id":48119,"properties":{"id":"48119","name":"Delta"},"arcs":[[-7478,7680,7681,7682,-7511,-7497]]},{"type":"Polygon","id":45011,"properties":{"id":"45011","name":"Barnwell"},"arcs":[[7683,7684,7685,-7516,-7595]]},{"type":"Polygon","id":13237,"properties":{"id":"13237","name":"Putnam"},"arcs":[[7686,7687,7688,-7660,-7545,-7576]]},{"type":"Polygon","id":35051,"properties":{"id":"35051","name":"Sierra"},"arcs":[[-7269,7689,7690,7691,7692,-7150,-7148]]},{"type":"Polygon","id":5073,"properties":{"id":"5073","name":"Lafayette"},"arcs":[[-7482,7693,7694,7695,-7619,-7436]]},{"type":"Polygon","id":13141,"properties":{"id":"13141","name":"Hancock"},"arcs":[[-7625,7696,7697,7698,-7687,-7575,-7587]]},{"type":"Polygon","id":4027,"properties":{"id":"4027","name":"Yuma"},"arcs":[[-7433,7699,7700,7701,-7281]]},{"type":"Polygon","id":4021,"properties":{"id":"4021","name":"Pinal"},"arcs":[[-7216,-7613,7702,-7431]]},{"type":"Polygon","id":48237,"properties":{"id":"48237","name":"Jack"},"arcs":[[-7448,7703,7704,7705,7706,-7527,-7384]]},{"type":"Polygon","id":5027,"properties":{"id":"5027","name":"Columbia"},"arcs":[[-7543,7707,7708,7709,-7694,-7481]]},{"type":"Polygon","id":13035,"properties":{"id":"13035","name":"Butts"},"arcs":[[-7663,7710,7711,7712,-7617,-7581]]},{"type":"Polygon","id":45009,"properties":{"id":"45009","name":"Bamberg"},"arcs":[[7713,7714,-7684,-7594]]},{"type":"Polygon","id":6025,"properties":{"id":"6025","name":"Imperial"},"arcs":[[-7702,7715,-7672,-7406,-7282]]},{"type":"Polygon","id":48497,"properties":{"id":"48497","name":"Wise"},"arcs":[[-7488,7716,7717,7718,-7704,-7447]]},{"type":"Polygon","id":48121,"properties":{"id":"48121","name":"Denton"},"arcs":[[7719,7720,7721,-7717,-7487,-7485]]},{"type":"Polygon","id":13149,"properties":{"id":"13149","name":"Heard"},"arcs":[[-7667,7722,-7674,-7549]]},{"type":"Polygon","id":48231,"properties":{"id":"48231","name":"Hunt"},"arcs":[[7723,7724,7725,7726,7727,-7512,-7683,7728]]},{"type":"Polygon","id":48085,"properties":{"id":"48085","name":"Collin"},"arcs":[[-7513,-7728,7729,7730,-7720,-7484]]},{"type":"Polygon","id":48263,"properties":{"id":"48263","name":"Kent"},"arcs":[[7731,7732,7733,7734,-7530]]},{"type":"Polygon","id":48433,"properties":{"id":"48433","name":"Stonewall"},"arcs":[[7735,7736,7737,-7732,-7523]]},{"type":"Polygon","id":48449,"properties":{"id":"48449","name":"Titus"},"arcs":[[7738,7739,7740,-7476]]},{"type":"Polygon","id":48169,"properties":{"id":"48169","name":"Garza"},"arcs":[[-7735,7741,7742,7743,-7532]]},{"type":"Polygon","id":48447,"properties":{"id":"48447","name":"Throckmorton"},"arcs":[[7744,7745,7746,7747,-7534]]},{"type":"Polygon","id":48503,"properties":{"id":"48503","name":"Young"},"arcs":[[-7707,7748,7749,-7745,-7528]]},{"type":"Polygon","id":48207,"properties":{"id":"48207","name":"Haskell"},"arcs":[[-7748,7750,7751,-7736,-7526]]},{"type":"Polygon","id":5003,"properties":{"id":"5003","name":"Ashley"},"arcs":[[-7644,7752,7753,-7596,-7561]]},{"type":"Polygon","id":48305,"properties":{"id":"48305","name":"Lynn"},"arcs":[[-7744,7754,7755,7756,-7535]]},{"type":"Polygon","id":35035,"properties":{"id":"35035","name":"Otero"},"arcs":[[-7403,7757,7758,7759,7760,7761,-7690,-7268]]},{"type":"Polygon","id":48501,"properties":{"id":"48501","name":"Yoakum"},"arcs":[[7762,7763,-7630,-7538]]},{"type":"Polygon","id":48445,"properties":{"id":"48445","name":"Terry"},"arcs":[[-7757,7764,7765,-7763,-7540]]},{"type":"Polygon","id":48159,"properties":{"id":"48159","name":"Franklin"},"arcs":[[-7741,7766,7767,7768,-7681,-7477]]},{"type":"Polygon","id":5139,"properties":{"id":"5139","name":"Union"},"arcs":[[-7559,-7597,-7754,7769,7770,-7708,-7542]]},{"type":"Polygon","id":48223,"properties":{"id":"48223","name":"Hopkins"},"arcs":[[-7769,7771,7772,-7729,-7682]]},{"type":"Polygon","id":48343,"properties":{"id":"48343","name":"Morris"},"arcs":[[-7590,7773,7774,7775,7776,-7739,-7475]]},{"type":"Polygon","id":28051,"properties":{"id":"28051","name":"Holmes"},"arcs":[[-7607,7777,7778,7779,-7553]]},{"type":"Polygon","id":13255,"properties":{"id":"13255","name":"Spalding"},"arcs":[[-7713,7780,7781,7782,-7664,-7645,-7615,-7618]]},{"type":"Polygon","id":45035,"properties":{"id":"45035","name":"Dorchester"},"arcs":[[-7671,7783,7784,-7592]]},{"type":"Polygon","id":28053,"properties":{"id":"28053","name":"Humphreys"},"arcs":[[-7554,-7780,7785,7786,-7657,-7454]]},{"type":"Polygon","id":13125,"properties":{"id":"13125","name":"Glascock"},"arcs":[[7787,7788,-7697,-7624]]},{"type":"Polygon","id":13163,"properties":{"id":"13163","name":"Jefferson"},"arcs":[[7789,7790,7791,7792,-7788,-7623,-7609,-7651]]},{"type":"Polygon","id":48067,"properties":{"id":"48067","name":"Cass"},"arcs":[[-7622,7793,7794,-7774,-7589]]},{"type":"Polygon","id":13033,"properties":{"id":"13033","name":"Burke"},"arcs":[[-7517,-7686,7795,7796,7797,7798,-7790,-7650]]},{"type":"Polygon","id":28103,"properties":{"id":"28103","name":"Noxubee"},"arcs":[[-7654,7799,7800,7801,-7636,-7578]]},{"type":"Polygon","id":28159,"properties":{"id":"28159","name":"Winston"},"arcs":[[-7802,7802,7803,7804,-7655,-7637]]},{"type":"Polygon","id":28007,"properties":{"id":"28007","name":"Attala"},"arcs":[[-7805,7805,7806,-7778,-7606,-7604,-7656]]},{"type":"Polygon","id":1007,"properties":{"id":"1007","name":"Bibb"},"arcs":[[7807,7808,7809,-7626,-7520,-7649]]},{"type":"Polygon","id":13303,"properties":{"id":"13303","name":"Washington"},"arcs":[[-7789,-7793,7810,7811,7812,-7698]]},{"type":"Polygon","id":13199,"properties":{"id":"13199","name":"Meriwether"},"arcs":[[-7783,7813,7814,7815,7816,7817,-7665]]},{"type":"Polygon","id":13285,"properties":{"id":"13285","name":"Troup"},"arcs":[[-7818,7818,7819,-7675,-7723,-7666]]},{"type":"Polygon","id":35017,"properties":{"id":"35017","name":"Grant"},"arcs":[[-7693,7820,7821,-7570,-7151]]},{"type":"Polygon","id":13231,"properties":{"id":"13231","name":"Pike"},"arcs":[[7822,7823,-7814,-7782]]},{"type":"Polygon","id":13171,"properties":{"id":"13171","name":"Lamar"},"arcs":[[7824,7825,-7823,-7781,-7712]]},{"type":"Polygon","id":13207,"properties":{"id":"13207","name":"Monroe"},"arcs":[[-7662,7826,7827,7828,7829,-7825,-7711]]},{"type":"Polygon","id":13009,"properties":{"id":"13009","name":"Baldwin"},"arcs":[[-7699,-7813,7830,7831,-7688]]},{"type":"Polygon","id":13169,"properties":{"id":"13169","name":"Jones"},"arcs":[[-7832,7832,7833,7834,-7827,-7661,-7689]]},{"type":"MultiPolygon","id":45029,"properties":{"id":"45029","name":"Colleton"},"arcs":[[[7835,-7836,7836]],[[-7785,7837,7838,7839,7840,-7714,-7593]]]},{"type":"Polygon","id":45005,"properties":{"id":"45005","name":"Allendale"},"arcs":[[-7715,7841,7842,-7796,-7685]]},{"type":"Polygon","id":1063,"properties":{"id":"1063","name":"Greene"},"arcs":[[7843,7844,7845,-7652,-7628]]},{"type":"Polygon","id":1017,"properties":{"id":"1017","name":"Chambers"},"arcs":[[-7820,7846,7847,7848,-7676]]},{"type":"Polygon","id":1123,"properties":{"id":"1123","name":"Tallapoosa"},"arcs":[[-7849,7849,7850,7851,7852,-7679,-7677]]},{"type":"Polygon","id":1037,"properties":{"id":"1037","name":"Coosa"},"arcs":[[-7853,7853,7854,-7647,-7601,-7680]]},{"type":"Polygon","id":28125,"properties":{"id":"28125","name":"Sharkey"},"arcs":[[-7787,7855,7856,-7658]]},{"type":"Polygon","id":48063,"properties":{"id":"48063","name":"Camp"},"arcs":[[-7777,7857,7858,-7767,-7740]]},{"type":"Polygon","id":1021,"properties":{"id":"1021","name":"Chilton"},"arcs":[[-7855,7859,7860,7861,7862,-7808,-7648]]},{"type":"Polygon","id":35013,"properties":{"id":"35013","name":"Dona Ana"},"arcs":[[7863,7864,7865,-7691,-7762]]},{"type":"Polygon","id":13251,"properties":{"id":"13251","name":"Screven"},"arcs":[[7866,7867,7868,7869,-7797,-7843]]},{"type":"Polygon","id":45049,"properties":{"id":"45049","name":"Hampton"},"arcs":[[7870,7871,7872,-7867,-7842,-7841]]},{"type":"Polygon","id":28163,"properties":{"id":"28163","name":"Yazoo"},"arcs":[[7873,7874,7875,7876,-7856,-7786,-7779]]},{"type":"Polygon","id":22017,"properties":{"id":"22017","name":"Caddo"},"arcs":[[7877,7878,7879,7880,7881,-7794,-7621,7882]]},{"type":"Polygon","id":22015,"properties":{"id":"22015","name":"Bossier"},"arcs":[[7883,7884,7885,-7883,-7620,-7696]]},{"type":"Polygon","id":22119,"properties":{"id":"22119","name":"Webster"},"arcs":[[7886,-7884,-7695,-7710,7887]]},{"type":"Polygon","id":22027,"properties":{"id":"22027","name":"Claiborne"},"arcs":[[7888,7889,-7888,-7709,-7771,7890]]},{"type":"Polygon","id":22111,"properties":{"id":"22111","name":"Union"},"arcs":[[7891,7892,-7891,-7770,7893]]},{"type":"Polygon","id":48499,"properties":{"id":"48499","name":"Wood"},"arcs":[[7894,7895,7896,7897,-7772,-7768,-7859]]},{"type":"Polygon","id":28055,"properties":{"id":"28055","name":"Issaquena"},"arcs":[[-7857,-7877,7898,7899,-7640,-7659]]},{"type":"Polygon","id":13319,"properties":{"id":"13319","name":"Wilkinson"},"arcs":[[-7812,7900,7901,7902,-7833,-7831]]},{"type":"Polygon","id":22067,"properties":{"id":"22067","name":"Morehouse"},"arcs":[[-7643,7903,7904,7905,-7894,-7753]]},{"type":"Polygon","id":1065,"properties":{"id":"1065","name":"Hale"},"arcs":[[-7810,7906,7907,-7844,-7627]]},{"type":"Polygon","id":22123,"properties":{"id":"22123","name":"West Carroll"},"arcs":[[7908,7909,-7904,-7642]]},{"type":"Polygon","id":48363,"properties":{"id":"48363","name":"Palo Pinto"},"arcs":[[7910,7911,7912,7913,7914,-7749,-7706]]},{"type":"Polygon","id":22035,"properties":{"id":"22035","name":"East Carroll"},"arcs":[[7915,7916,7917,-7909,-7641,-7900]]},{"type":"Polygon","id":48367,"properties":{"id":"48367","name":"Parker"},"arcs":[[7918,7919,7920,-7911,-7705,-7719]]},{"type":"Polygon","id":13293,"properties":{"id":"13293","name":"Upson"},"arcs":[[-7826,-7830,7921,7922,7923,-7815,-7824]]},{"type":"Polygon","id":1119,"properties":{"id":"1119","name":"Sumter"},"arcs":[[7924,7925,7926,7927,-7800,-7653,-7846]]},{"type":"Polygon","id":48439,"properties":{"id":"48439","name":"Tarrant"},"arcs":[[-7718,-7722,7928,7929,7930,-7919]]},{"type":"Polygon","id":48113,"properties":{"id":"48113","name":"Dallas"},"arcs":[[-7731,7931,7932,7933,-7929,-7721]]},{"type":"Polygon","id":48397,"properties":{"id":"48397","name":"Rockwall"},"arcs":[[-7727,7934,-7932,-7730]]},{"type":"Polygon","id":48379,"properties":{"id":"48379","name":"Rains"},"arcs":[[-7898,7935,-7724,-7773]]},{"type":"Polygon","id":48415,"properties":{"id":"48415","name":"Scurry"},"arcs":[[7936,7937,7938,-7742,-7734]]},{"type":"Polygon","id":35015,"properties":{"id":"35015","name":"Eddy"},"arcs":[[-7635,7939,7940,7941,-7758,-7402]]},{"type":"Polygon","id":48151,"properties":{"id":"48151","name":"Fisher"},"arcs":[[-7738,7942,7943,-7937,-7733]]},{"type":"Polygon","id":48033,"properties":{"id":"48033","name":"Borden"},"arcs":[[-7939,7944,7945,7946,-7755,-7743]]},{"type":"Polygon","id":48115,"properties":{"id":"48115","name":"Dawson"},"arcs":[[-7947,7947,7948,-7765,-7756]]},{"type":"Polygon","id":48165,"properties":{"id":"48165","name":"Gaines"},"arcs":[[-7766,-7949,7949,7950,-7631,-7764]]},{"type":"Polygon","id":48253,"properties":{"id":"48253","name":"Jones"},"arcs":[[-7752,7951,7952,7953,-7943,-7737]]},{"type":"Polygon","id":48417,"properties":{"id":"48417","name":"Shackelford"},"arcs":[[7954,7955,7956,-7952,-7751,-7747]]},{"type":"Polygon","id":48429,"properties":{"id":"48429","name":"Stephens"},"arcs":[[-7915,7957,-7955,-7746,-7750]]},{"type":"Polygon","id":13165,"properties":{"id":"13165","name":"Jenkins"},"arcs":[[-7870,7958,7959,-7798]]},{"type":"Polygon","id":13021,"properties":{"id":"13021","name":"Bibb"},"arcs":[[7960,7961,7962,-7828,-7835]]},{"type":"Polygon","id":28099,"properties":{"id":"28099","name":"Neshoba"},"arcs":[[7963,7964,7965,-7804]]},{"type":"Polygon","id":28079,"properties":{"id":"28079","name":"Leake"},"arcs":[[-7966,7966,7967,7968,-7806]]},{"type":"Polygon","id":28069,"properties":{"id":"28069","name":"Kemper"},"arcs":[[-7928,7969,-7964,-7803,-7801]]},{"type":"Polygon","id":48459,"properties":{"id":"48459","name":"Upshur"},"arcs":[[-7776,7970,7971,7972,7973,-7895,-7858]]},{"type":"Polygon","id":13289,"properties":{"id":"13289","name":"Twiggs"},"arcs":[[7974,7975,-7961,-7834,-7903]]},{"type":"Polygon","id":13263,"properties":{"id":"13263","name":"Talbot"},"arcs":[[7976,7977,7978,7979,7980,-7816,-7924]]},{"type":"Polygon","id":48315,"properties":{"id":"48315","name":"Marion"},"arcs":[[-7882,7981,-7971,-7775,-7795]]},{"type":"Polygon","id":28089,"properties":{"id":"28089","name":"Madison"},"arcs":[[-7969,7982,7983,7984,-7874,-7807]]},{"type":"Polygon","id":1105,"properties":{"id":"1105","name":"Perry"},"arcs":[[-7863,7985,7986,-7907,-7809]]},{"type":"Polygon","id":13145,"properties":{"id":"13145","name":"Harris"},"arcs":[[-7981,7987,7988,-7847,-7819,-7817]]},{"type":"Polygon","id":13079,"properties":{"id":"13079","name":"Crawford"},"arcs":[[-7963,7989,7990,7991,-7922,-7829]]},{"type":"Polygon","id":48257,"properties":{"id":"48257","name":"Kaufman"},"arcs":[[7992,7993,7994,-7933,-7935,-7726]]},{"type":"Polygon","id":13107,"properties":{"id":"13107","name":"Emanuel"},"arcs":[[-7799,-7960,7995,7996,7997,7998,7999,8000,-7791]]},{"type":"Polygon","id":48467,"properties":{"id":"48467","name":"Van Zandt"},"arcs":[[-7936,-7897,8001,8002,-7993,-7725]]},{"type":"Polygon","id":13167,"properties":{"id":"13167","name":"Johnson"},"arcs":[[-8001,8003,-7901,-7811,-7792]]},{"type":"Polygon","id":48203,"properties":{"id":"48203","name":"Harrison"},"arcs":[[-7881,8004,8005,8006,-7972,-7982]]},{"type":"Polygon","id":35023,"properties":{"id":"35023","name":"Hidalgo"},"arcs":[[8007,8008,8009,-7571,-7822]]},{"type":"Polygon","id":1051,"properties":{"id":"1051","name":"Elmore"},"arcs":[[8010,8011,8012,-7860,-7854,-7852]]},{"type":"Polygon","id":22061,"properties":{"id":"22061","name":"Lincoln"},"arcs":[[8013,8014,8015,-7889,-7893]]},{"type":"Polygon","id":45053,"properties":{"id":"45053","name":"Jasper"},"arcs":[[8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,-7872]]},{"type":"Polygon","id":13269,"properties":{"id":"13269","name":"Taylor"},"arcs":[[-7992,8026,8027,8028,8029,-7977,-7923]]},{"type":"Polygon","id":1081,"properties":{"id":"1081","name":"Lee"},"arcs":[[-7989,8030,8031,8032,-7850,-7848]]},{"type":"Polygon","id":1047,"properties":{"id":"1047","name":"Dallas"},"arcs":[[8033,8034,8035,8036,-7986,-7862]]},{"type":"Polygon","id":22073,"properties":{"id":"22073","name":"Ouachita"},"arcs":[[8037,8038,8039,-8014,-7892,-7906]]},{"type":"Polygon","id":13175,"properties":{"id":"13175","name":"Laurens"},"arcs":[[8040,8041,8042,-7902,-8004,8043]]},{"type":"Polygon","id":1001,"properties":{"id":"1001","name":"Autauga"},"arcs":[[-8013,8044,8045,-8034,-7861]]},{"type":"MultiPolygon","id":45013,"properties":{"id":"45013","name":"Beaufort"},"arcs":[[[8046]],[[-8023,8047]],[[8048]],[[8049]],[[8050,-8017,-7871,-7840]]]},{"type":"Polygon","id":13225,"properties":{"id":"13225","name":"Peach"},"arcs":[[8051,-8027,-7991,8052]]},{"type":"Polygon","id":13153,"properties":{"id":"13153","name":"Houston"},"arcs":[[-7976,8053,8054,8055,8056,-8053,-7990,-7962]]},{"type":"Polygon","id":48423,"properties":{"id":"48423","name":"Smith"},"arcs":[[-7974,8057,8058,8059,8060,-8002,-7896]]},{"type":"Polygon","id":22083,"properties":{"id":"22083","name":"Richland"},"arcs":[[-7918,8061,8062,8063,-8038,-7905,-7910]]},{"type":"Polygon","id":48183,"properties":{"id":"48183","name":"Gregg"},"arcs":[[-8007,8064,-8058,-7973]]},{"type":"Polygon","id":13031,"properties":{"id":"13031","name":"Bulloch"},"arcs":[[8065,8066,8067,8068,-7996,-7959,-7869]]},{"type":"Polygon","id":28123,"properties":{"id":"28123","name":"Scott"},"arcs":[[-7968,8069,8070,8071,-7983]]},{"type":"Polygon","id":28149,"properties":{"id":"28149","name":"Warren"},"arcs":[[8072,8073,8074,8075,8076,8077,-7916,-7899,-7876]]},{"type":"Polygon","id":13215,"properties":{"id":"13215","name":"Muscogee"},"arcs":[[-7980,8078,8079,-8031,-7988]]},{"type":"Polygon","id":35029,"properties":{"id":"35029","name":"Luna"},"arcs":[[-7866,8080,-8008,-7821,-7692]]},{"type":"Polygon","id":13103,"properties":{"id":"13103","name":"Effingham"},"arcs":[[-8026,8081,8082,-8066,-7868,-7873]]},{"type":"Polygon","id":1087,"properties":{"id":"1087","name":"Macon"},"arcs":[[8083,8084,8085,-8011,-7851,-8033]]},{"type":"Polygon","id":28121,"properties":{"id":"28121","name":"Rankin"},"arcs":[[-8072,8086,8087,8088,-7984]]},{"type":"Polygon","id":22013,"properties":{"id":"22013","name":"Bienville"},"arcs":[[-8016,8089,8090,8091,8092,-7885,-7887,-7890]]},{"type":"Polygon","id":13023,"properties":{"id":"13023","name":"Bleckley"},"arcs":[[8093,8094,-8054,-7975,-8043]]},{"type":"Polygon","id":28075,"properties":{"id":"28075","name":"Lauderdale"},"arcs":[[-7927,8095,8096,8097,-7970]]},{"type":"Polygon","id":28101,"properties":{"id":"28101","name":"Newton"},"arcs":[[-8098,8098,-8070,-7967,-7965]]},{"type":"Polygon","id":28049,"properties":{"id":"28049","name":"Hinds"},"arcs":[[-8089,8099,8100,-8073,-7875,-7985]]},{"type":"MultiPolygon","id":22065,"properties":{"id":"22065","name":"Madison"},"arcs":[[[8075,-8076,8101]],[[8102,8103,-8062,-7917,-8078]]]},{"type":"Polygon","id":13197,"properties":{"id":"13197","name":"Marion"},"arcs":[[8104,8105,8106,8107,8108,-7978,-8030]]},{"type":"Polygon","id":13043,"properties":{"id":"13043","name":"Candler"},"arcs":[[8109,8110,-7997,-8069]]},{"type":"Polygon","id":48221,"properties":{"id":"48221","name":"Hood"},"arcs":[[8111,8112,8113,-7912,-7921]]},{"type":"Polygon","id":48251,"properties":{"id":"48251","name":"Johnson"},"arcs":[[8114,8115,8116,8117,-8112,-7920,-7931]]},{"type":"Polygon","id":48139,"properties":{"id":"48139","name":"Ellis"},"arcs":[[-7934,-7995,8118,8119,8120,-8115,-7930]]},{"type":"Polygon","id":1091,"properties":{"id":"1091","name":"Marengo"},"arcs":[[-7908,-7987,-8037,8121,8122,8123,-7925,-7845]]},{"type":"Polygon","id":13053,"properties":{"id":"13053","name":"Chattahoochee"},"arcs":[[-8109,8124,8125,-8079,-7979]]},{"type":"Polygon","id":48227,"properties":{"id":"48227","name":"Howard"},"arcs":[[8126,8127,8128,8129,-7946]]},{"type":"Polygon","id":48335,"properties":{"id":"48335","name":"Mitchell"},"arcs":[[8130,8131,8132,-8127,-7945,-7938]]},{"type":"Polygon","id":48353,"properties":{"id":"48353","name":"Nolan"},"arcs":[[8133,8134,8135,-8131,-7944]]},{"type":"Polygon","id":48317,"properties":{"id":"48317","name":"Martin"},"arcs":[[-8130,8136,8137,8138,-7950,-7948]]},{"type":"Polygon","id":48003,"properties":{"id":"48003","name":"Andrews"},"arcs":[[-8139,8139,8140,8141,-7632,-7951]]},{"type":"Polygon","id":13193,"properties":{"id":"13193","name":"Macon"},"arcs":[[-8052,-8057,8142,8143,8144,-8028]]},{"type":"Polygon","id":48441,"properties":{"id":"48441","name":"Taylor"},"arcs":[[8145,8146,8147,-8134,-7954]]},{"type":"Polygon","id":48133,"properties":{"id":"48133","name":"Eastland"},"arcs":[[-7914,8148,8149,8150,8151,-7956,-7958]]},{"type":"Polygon","id":48143,"properties":{"id":"48143","name":"Erath"},"arcs":[[-7913,-8114,8152,8153,8154,8155,-8149]]},{"type":"Polygon","id":48059,"properties":{"id":"48059","name":"Callahan"},"arcs":[[-8152,8156,8157,-8146,-7953,-7957]]},{"type":"Polygon","id":4019,"properties":{"id":"4019","name":"Pima"},"arcs":[[-7612,8158,8159,8160,-7700,-7432,-7703]]},{"type":"Polygon","id":13283,"properties":{"id":"13283","name":"Treutlen"},"arcs":[[8161,8162,-8044,-8000]]},{"type":"Polygon","id":1113,"properties":{"id":"1113","name":"Russell"},"arcs":[[-8080,-8126,8163,8164,8165,-8084,-8032]]},{"type":"Polygon","id":1101,"properties":{"id":"1101","name":"Montgomery"},"arcs":[[-8086,8166,8167,8168,8169,-8045,-8012]]},{"type":"Polygon","id":22049,"properties":{"id":"22049","name":"Jackson"},"arcs":[[-8040,8170,8171,-8090,-8015]]},{"type":"Polygon","id":13091,"properties":{"id":"13091","name":"Dodge"},"arcs":[[8172,8173,8174,8175,-8094,-8042]]},{"type":"Polygon","id":13249,"properties":{"id":"13249","name":"Schley"},"arcs":[[-8145,8176,-8105,-8029]]},{"type":"Polygon","id":4003,"properties":{"id":"4003","name":"Cochise"},"arcs":[[-7572,-8010,8177,8178,-8159,-7611]]},{"type":"Polygon","id":1085,"properties":{"id":"1085","name":"Lowndes"},"arcs":[[-8170,8179,8180,8181,-8035,-8046]]},{"type":"Polygon","id":48401,"properties":{"id":"48401","name":"Rusk"},"arcs":[[8182,8183,8184,8185,-8059,-8065,-8006]]},{"type":"Polygon","id":22041,"properties":{"id":"22041","name":"Franklin"},"arcs":[[-8104,8186,8187,8188,-8063]]},{"type":"Polygon","id":13235,"properties":{"id":"13235","name":"Pulaski"},"arcs":[[-8095,-8176,8189,8190,-8055]]},{"type":"Polygon","id":48365,"properties":{"id":"48365","name":"Panola"},"arcs":[[-7880,8191,8192,-8183,-8005]]},{"type":"Polygon","id":48213,"properties":{"id":"48213","name":"Henderson"},"arcs":[[-8003,-8061,8193,8194,8195,8196,-8119,-7994]]},{"type":"Polygon","id":13209,"properties":{"id":"13209","name":"Montgomery"},"arcs":[[8197,8198,-8162,8199]]},{"type":"Polygon","id":13279,"properties":{"id":"13279","name":"Toombs"},"arcs":[[-7999,8200,8201,8202,-8200]]},{"type":"Polygon","id":22031,"properties":{"id":"22031","name":"De Soto"},"arcs":[[8203,8204,8205,8206,-8192,-7879]]},{"type":"Polygon","id":48349,"properties":{"id":"48349","name":"Navarro"},"arcs":[[8207,8208,8209,-8120,-8197]]},{"type":"Polygon","id":48425,"properties":{"id":"48425","name":"Somervell"},"arcs":[[-8118,8210,-8153,-8113]]},{"type":"Polygon","id":13267,"properties":{"id":"13267","name":"Tattnall"},"arcs":[[8211,8212,8213,8214,8215,-8201,-7998,-8111]]},{"type":"Polygon","id":1023,"properties":{"id":"1023","name":"Choctaw"},"arcs":[[8216,8217,8218,8219,-8096,-7926,-8124]]},{"type":"Polygon","id":13309,"properties":{"id":"13309","name":"Wheeler"},"arcs":[[-8199,8220,8221,-8173,-8041,-8163]]},{"type":"Polygon","id":1011,"properties":{"id":"1011","name":"Bullock"},"arcs":[[-8166,8222,8223,-8167,-8085]]},{"type":"Polygon","id":13093,"properties":{"id":"13093","name":"Dooly"},"arcs":[[-8191,8224,8225,8226,-8143,-8056]]},{"type":"Polygon","id":13109,"properties":{"id":"13109","name":"Evans"},"arcs":[[-8068,8227,8228,-8212,-8110]]},{"type":"Polygon","id":22021,"properties":{"id":"22021","name":"Caldwell"},"arcs":[[-8064,-8189,8229,8230,8231,-8171,-8039]]},{"type":"Polygon","id":1131,"properties":{"id":"1131","name":"Wilcox"},"arcs":[[-8036,-8182,8232,8233,8234,-8122]]},{"type":"Polygon","id":48217,"properties":{"id":"48217","name":"Hill"},"arcs":[[-8210,8235,8236,8237,-8116,-8121]]},{"type":"Polygon","id":48093,"properties":{"id":"48093","name":"Comanche"},"arcs":[[8238,8239,8240,-8150,-8156]]},{"type":"Polygon","id":22107,"properties":{"id":"22107","name":"Tensas"},"arcs":[[-8077,-8076,-8075,8241,8242,8243,8244,8245,-8187,-8103]]},{"type":"Polygon","id":13029,"properties":{"id":"13029","name":"Bryan"},"arcs":[[8246,8247,8248,-8228,-8067,-8083]]},{"type":"Polygon","id":22081,"properties":{"id":"22081","name":"Red River"},"arcs":[[-7886,-8093,8249,-8204,-7878]]},{"type":"MultiPolygon","id":13051,"properties":{"id":"13051","name":"Chatham"},"arcs":[[[8250]],[[8251]],[[8252,-8247,-8082,-8025]]]},{"type":"Polygon","id":13307,"properties":{"id":"13307","name":"Webster"},"arcs":[[8253,8254,8255,8256,-8107]]},{"type":"Polygon","id":13259,"properties":{"id":"13259","name":"Stewart"},"arcs":[[-8257,8257,8258,8259,-8164,-8125,-8108]]},{"type":"Polygon","id":13261,"properties":{"id":"13261","name":"Sumter"},"arcs":[[-8227,8260,8261,8262,-8254,-8106,-8177,-8144]]},{"type":"Polygon","id":28023,"properties":{"id":"28023","name":"Clarke"},"arcs":[[-8220,8263,8264,-8097]]},{"type":"Polygon","id":28021,"properties":{"id":"28021","name":"Claiborne"},"arcs":[[-8101,8265,8266,-8242,-8074]]},{"type":"Polygon","id":28061,"properties":{"id":"28061","name":"Jasper"},"arcs":[[-8265,8267,8268,8269,-8099]]},{"type":"Polygon","id":28129,"properties":{"id":"28129","name":"Smith"},"arcs":[[-8270,8270,8271,8272,-8087,-8071]]},{"type":"Polygon","id":48035,"properties":{"id":"48035","name":"Bosque"},"arcs":[[-8117,-8238,8273,8274,8275,-8154,-8211]]},{"type":"Polygon","id":13271,"properties":{"id":"13271","name":"Telfair"},"arcs":[[8276,8277,8278,8279,-8174,-8222]]},{"type":"Polygon","id":22127,"properties":{"id":"22127","name":"Winn"},"arcs":[[-8172,-8232,8280,8281,8282,-8091]]},{"type":"Polygon","id":22069,"properties":{"id":"22069","name":"Natchitoches"},"arcs":[[-8283,8283,8284,8285,8286,-8205,-8250,-8092]]},{"type":"Polygon","id":1005,"properties":{"id":"1005","name":"Barbour"},"arcs":[[-8260,8287,8288,8289,8290,8291,-8223,-8165]]},{"type":"Polygon","id":48073,"properties":{"id":"48073","name":"Cherokee"},"arcs":[[-8186,8292,8293,8294,8295,-8194,-8060]]},{"type":"Polygon","id":13315,"properties":{"id":"13315","name":"Wilcox"},"arcs":[[-8175,-8280,8296,8297,8298,-8225,-8190]]},{"type":"MultiPolygon","id":13179,"properties":{"id":"13179","name":"Liberty"},"arcs":[[[8299]],[[8300,8301,-8213,-8229,-8249,8302]]]},{"type":"Polygon","id":48431,"properties":{"id":"48431","name":"Sterling"},"arcs":[[-8133,8303,8304,8305,8306,-8128]]},{"type":"Polygon","id":48173,"properties":{"id":"48173","name":"Glasscock"},"arcs":[[-8307,8307,8308,-8137,-8129]]},{"type":"Polygon","id":48329,"properties":{"id":"48329","name":"Midland"},"arcs":[[-8309,8309,8310,-8140,-8138]]},{"type":"Polygon","id":48135,"properties":{"id":"48135","name":"Ector"},"arcs":[[-8311,8311,8312,8313,8314,-8141]]},{"type":"Polygon","id":48495,"properties":{"id":"48495","name":"Winkler"},"arcs":[[-8315,8315,8316,-7633,-8142]]},{"type":"Polygon","id":48081,"properties":{"id":"48081","name":"Coke"},"arcs":[[-8136,8317,8318,-8304,-8132]]},{"type":"Polygon","id":48001,"properties":{"id":"48001","name":"Anderson"},"arcs":[[8319,8320,8321,-8195,-8296]]},{"type":"Polygon","id":48083,"properties":{"id":"48083","name":"Coleman"},"arcs":[[-8158,8322,8323,8324,8325,-8147]]},{"type":"Polygon","id":48399,"properties":{"id":"48399","name":"Runnels"},"arcs":[[-8326,8326,8327,-8318,-8135,-8148]]},{"type":"Polygon","id":48049,"properties":{"id":"48049","name":"Brown"},"arcs":[[-8241,8328,8329,8330,-8323,-8157,-8151]]},{"type":"Polygon","id":1109,"properties":{"id":"1109","name":"Pike"},"arcs":[[-8292,8331,8332,8333,-8168,-8224]]},{"type":"Polygon","id":1041,"properties":{"id":"1041","name":"Crenshaw"},"arcs":[[-8334,8334,8335,8336,-8180,-8169]]},{"type":"Polygon","id":28029,"properties":{"id":"28029","name":"Copiah"},"arcs":[[8337,8338,8339,8340,-8266,-8100]]},{"type":"Polygon","id":28127,"properties":{"id":"28127","name":"Simpson"},"arcs":[[-8273,8341,8342,8343,-8338,-8088]]},{"type":"Polygon","id":13081,"properties":{"id":"13081","name":"Crisp"},"arcs":[[-8299,8344,8345,8346,-8261,-8226]]},{"type":"Polygon","id":48193,"properties":{"id":"48193","name":"Hamilton"},"arcs":[[8347,-8239,-8155,-8276,8348,8349]]},{"type":"Polygon","id":13183,"properties":{"id":"13183","name":"Long"},"arcs":[[8350,8351,-8214,-8302]]},{"type":"Polygon","id":48161,"properties":{"id":"48161","name":"Freestone"},"arcs":[[8352,8353,-8208,-8196,-8322]]},{"type":"Polygon","id":48109,"properties":{"id":"48109","name":"Culberson"},"arcs":[[8354,8355,8356,-7759,-7942]]},{"type":"Polygon","id":48229,"properties":{"id":"48229","name":"Hudspeth"},"arcs":[[8357,8358,8359,-7760,-8357]]},{"type":"Polygon","id":48141,"properties":{"id":"48141","name":"El Paso"},"arcs":[[8360,-7864,-7761,-8360]]},{"type":"Polygon","id":48301,"properties":{"id":"48301","name":"Loving"},"arcs":[[8361,8362,-7940,-7634,-8317]]},{"type":"Polygon","id":48389,"properties":{"id":"48389","name":"Reeves"},"arcs":[[8363,8364,8365,-8355,-7941,-8363]]},{"type":"Polygon","id":13239,"properties":{"id":"13239","name":"Quitman"},"arcs":[[8366,8367,-8288,-8259]]},{"type":"Polygon","id":1025,"properties":{"id":"1025","name":"Clarke"},"arcs":[[-8235,8368,8369,8370,-8217,-8123]]},{"type":"Polygon","id":48419,"properties":{"id":"48419","name":"Shelby"},"arcs":[[8371,8372,8373,8374,-8184,-8193,-8207]]},{"type":"Polygon","id":22025,"properties":{"id":"22025","name":"Catahoula"},"arcs":[[-8246,8375,8376,8377,-8230,-8188]]},{"type":"Polygon","id":13161,"properties":{"id":"13161","name":"Jeff Davis"},"arcs":[[8378,8379,8380,-8277,-8221,-8198,-8203]]},{"type":"Polygon","id":13273,"properties":{"id":"13273","name":"Terrell"},"arcs":[[8381,8382,8383,8384,-8255,-8263]]},{"type":"Polygon","id":13001,"properties":{"id":"13001","name":"Appling"},"arcs":[[-8216,8385,8386,8387,-8379,-8202]]},{"type":"Polygon","id":1013,"properties":{"id":"1013","name":"Butler"},"arcs":[[-8337,8388,8389,8390,-8233,-8181]]},{"type":"Polygon","id":13243,"properties":{"id":"13243","name":"Randolph"},"arcs":[[-8256,-8385,8391,8392,-8367,-8258]]},{"type":"Polygon","id":22059,"properties":{"id":"22059","name":"La Salle"},"arcs":[[-8378,8393,8394,8395,-8281,-8231]]},{"type":"Polygon","id":13177,"properties":{"id":"13177","name":"Lee"},"arcs":[[-8347,8396,8397,-8382,-8262]]},{"type":"Polygon","id":28153,"properties":{"id":"28153","name":"Wayne"},"arcs":[[8398,8399,8400,-8268,-8264,-8219,8401]]},{"type":"Polygon","id":28063,"properties":{"id":"28063","name":"Jefferson"},"arcs":[[-8341,8402,8403,8404,-8243,-8267]]},{"type":"Polygon","id":48309,"properties":{"id":"48309","name":"McLennan"},"arcs":[[8405,-8274,-8237,8406,8407,8408]]},{"type":"Polygon","id":13287,"properties":{"id":"13287","name":"Turner"},"arcs":[[8409,8410,8411,8412,-8345,-8298]]},{"type":"Polygon","id":13017,"properties":{"id":"13017","name":"Ben Hill"},"arcs":[[-8279,8413,8414,-8410,-8297]]},{"type":"Polygon","id":13321,"properties":{"id":"13321","name":"Worth"},"arcs":[[-8346,-8413,8415,8416,8417,8418,-8397]]},{"type":"Polygon","id":48347,"properties":{"id":"48347","name":"Nacogdoches"},"arcs":[[-8375,8419,8420,-8293,-8185]]},{"type":"Polygon","id":22085,"properties":{"id":"22085","name":"Sabine"},"arcs":[[-8287,8421,8422,8423,-8372,-8206]]},{"type":"Polygon","id":13305,"properties":{"id":"13305","name":"Wayne"},"arcs":[[-8215,-8352,8424,8425,8426,8427,-8386]]},{"type":"Polygon","id":1099,"properties":{"id":"1099","name":"Monroe"},"arcs":[[-8391,8428,8429,8430,-8369,-8234]]},{"type":"Polygon","id":28067,"properties":{"id":"28067","name":"Jones"},"arcs":[[8431,8432,8433,-8271,-8269,-8401]]},{"type":"Polygon","id":48293,"properties":{"id":"48293","name":"Limestone"},"arcs":[[8434,-8407,-8236,-8209,-8354,8435,8436]]},{"type":"Polygon","id":13069,"properties":{"id":"13069","name":"Coffee"},"arcs":[[8437,8438,8439,8440,8441,-8414,-8278,-8381]]},{"type":"Polygon","id":22043,"properties":{"id":"22043","name":"Grant"},"arcs":[[-8396,8442,-8284,-8282]]},{"type":"Polygon","id":28031,"properties":{"id":"28031","name":"Covington"},"arcs":[[-8434,8443,8444,8445,-8342,-8272]]},{"type":"Polygon","id":13061,"properties":{"id":"13061","name":"Clay"},"arcs":[[-8393,8446,8447,8448,-8289,-8368]]},{"type":"Polygon","id":1067,"properties":{"id":"1067","name":"Henry"},"arcs":[[-8449,8449,8450,8451,-8290]]},{"type":"Polygon","id":28065,"properties":{"id":"28065","name":"Jefferson Davis"},"arcs":[[8452,8453,8454,-8343,-8446]]},{"type":"Polygon","id":13155,"properties":{"id":"13155","name":"Irwin"},"arcs":[[-8442,8455,8456,-8411,-8415]]},{"type":"Polygon","id":22029,"properties":{"id":"22029","name":"Concordia"},"arcs":[[-8245,8457,8458,8459,8460,8461,8462,-8376]]},{"type":"Polygon","id":28077,"properties":{"id":"28077","name":"Lawrence"},"arcs":[[8463,8464,8465,-8339,-8344,-8455]]},{"type":"Polygon","id":1035,"properties":{"id":"1035","name":"Conecuh"},"arcs":[[8466,8467,-8429,-8390]]},{"type":"Polygon","id":28001,"properties":{"id":"28001","name":"Adams"},"arcs":[[8468,8469,-8458,-8244,-8405]]},{"type":"Polygon","id":4023,"properties":{"id":"4023","name":"Santa Cruz"},"arcs":[[-8179,8470,-8160]]},{"type":"Polygon","id":48333,"properties":{"id":"48333","name":"Mills"},"arcs":[[8471,8472,-8329,-8240,-8348]]},{"type":"Polygon","id":28085,"properties":{"id":"28085","name":"Lincoln"},"arcs":[[8473,8474,8475,8476,-8403,-8340,-8466]]},{"type":"Polygon","id":13005,"properties":{"id":"13005","name":"Bacon"},"arcs":[[8477,8478,-8438,-8380,-8388]]},{"type":"Polygon","id":48099,"properties":{"id":"48099","name":"Coryell"},"arcs":[[8479,-8349,-8275,-8406,8480]]},{"type":"Polygon","id":48451,"properties":{"id":"48451","name":"Tom Green"},"arcs":[[-8328,8481,8482,8483,8484,-8305,-8319]]},{"type":"Polygon","id":1129,"properties":{"id":"1129","name":"Washington"},"arcs":[[-8371,8485,8486,8487,-8402,-8218]]},{"type":"MultiPolygon","id":13191,"properties":{"id":"13191","name":"McIntosh"},"arcs":[[[8488,-8489,8489]],[[8490,-8491,8491]],[[8492]],[[8493,8494,-8425,-8351,-8301]]]},{"type":"Polygon","id":48289,"properties":{"id":"48289","name":"Leon"},"arcs":[[8495,8496,8497,-8436,-8353,-8321]]},{"type":"Polygon","id":48461,"properties":{"id":"48461","name":"Upton"},"arcs":[[8498,8499,8500,-8312,-8310]]},{"type":"Polygon","id":48103,"properties":{"id":"48103","name":"Crane"},"arcs":[[-8501,8501,8502,8503,-8313]]},{"type":"Polygon","id":48405,"properties":{"id":"48405","name":"San Augustine"},"arcs":[[8504,8505,8506,-8420,-8374]]},{"type":"Polygon","id":48383,"properties":{"id":"48383","name":"Reagan"},"arcs":[[-8306,-8485,8507,8508,-8499,-8308]]},{"type":"Polygon","id":48475,"properties":{"id":"48475","name":"Ward"},"arcs":[[-8362,-8316,-8314,-8504,8509,-8364]]},{"type":"Polygon","id":13095,"properties":{"id":"13095","name":"Dougherty"},"arcs":[[-8419,8510,8511,8512,-8383,-8398]]},{"type":"Polygon","id":13037,"properties":{"id":"13037","name":"Calhoun"},"arcs":[[-8384,-8513,8513,8514,-8447,-8392]]},{"type":"Polygon","id":1045,"properties":{"id":"1045","name":"Dale"},"arcs":[[-8452,8515,8516,8517,-8332,-8291]]},{"type":"Polygon","id":1031,"properties":{"id":"1031","name":"Coffee"},"arcs":[[8518,8519,-8335,-8333,-8518]]},{"type":"Polygon","id":28037,"properties":{"id":"28037","name":"Franklin"},"arcs":[[-8477,8520,8521,-8469,-8404]]},{"type":"Polygon","id":48403,"properties":{"id":"48403","name":"Sabine"},"arcs":[[-8424,8522,8523,-8505,-8373]]},{"type":"Polygon","id":13277,"properties":{"id":"13277","name":"Tift"},"arcs":[[-8457,8524,8525,8526,-8416,-8412]]},{"type":"Polygon","id":48225,"properties":{"id":"48225","name":"Houston"},"arcs":[[8527,8528,8529,8530,-8496,-8320,-8295]]},{"type":"Polygon","id":48095,"properties":{"id":"48095","name":"Concho"},"arcs":[[-8325,8531,8532,-8482,-8327]]},{"type":"Polygon","id":13229,"properties":{"id":"13229","name":"Pierce"},"arcs":[[-8428,8533,8534,-8478,-8387]]},{"type":"Polygon","id":1039,"properties":{"id":"1039","name":"Covington"},"arcs":[[-8520,8535,8536,8537,8538,-8467,-8389,-8336]]},{"type":"Polygon","id":48235,"properties":{"id":"48235","name":"Irion"},"arcs":[[8539,8540,-8508,-8484]]},{"type":"Polygon","id":48005,"properties":{"id":"48005","name":"Angelina"},"arcs":[[-8507,8541,8542,8543,8544,-8528,-8294,-8421]]},{"type":"Polygon","id":13099,"properties":{"id":"13099","name":"Early"},"arcs":[[-8515,8545,8546,8547,8548,-8450,-8448]]},{"type":"Polygon","id":48145,"properties":{"id":"48145","name":"Falls"},"arcs":[[8549,8550,-8408,-8435,8551]]},{"type":"Polygon","id":22079,"properties":{"id":"22079","name":"Rapides"},"arcs":[[-8395,8552,8553,8554,8555,-8285,-8443]]},{"type":"Polygon","id":48307,"properties":{"id":"48307","name":"McCulloch"},"arcs":[[-8331,8556,8557,8558,-8532,-8324]]},{"type":"Polygon","id":48411,"properties":{"id":"48411","name":"San Saba"},"arcs":[[-8473,8559,8560,8561,8562,-8557,-8330]]},{"type":"Polygon","id":13019,"properties":{"id":"13019","name":"Berrien"},"arcs":[[-8441,8563,8564,8565,8566,-8525,-8456]]},{"type":"Polygon","id":13299,"properties":{"id":"13299","name":"Ware"},"arcs":[[-8535,8567,8568,8569,8570,8571,-8439,-8479]]},{"type":"Polygon","id":48281,"properties":{"id":"48281","name":"Lampasas"},"arcs":[[8572,8573,-8560,-8472,-8350,-8480]]},{"type":"MultiPolygon","id":13127,"properties":{"id":"13127","name":"Glynn"},"arcs":[[[-8489,8574]],[[8575,-8491,8576,8577,8578,-8426,-8495]]]},{"type":"Polygon","id":13007,"properties":{"id":"13007","name":"Baker"},"arcs":[[-8512,8579,8580,8581,-8546,-8514]]},{"type":"Polygon","id":13205,"properties":{"id":"13205","name":"Mitchell"},"arcs":[[-8418,8582,8583,8584,8585,-8580,-8511]]},{"type":"Polygon","id":28041,"properties":{"id":"28041","name":"Greene"},"arcs":[[-8488,8586,8587,8588,-8399]]},{"type":"Polygon","id":28035,"properties":{"id":"28035","name":"Forrest"},"arcs":[[8589,8590,8591,8592,-8444,-8433]]},{"type":"Polygon","id":28073,"properties":{"id":"28073","name":"Lamar"},"arcs":[[-8445,-8593,8593,8594,-8453]]},{"type":"Polygon","id":28111,"properties":{"id":"28111","name":"Perry"},"arcs":[[-8400,-8589,8595,8596,-8590,-8432]]},{"type":"Polygon","id":28091,"properties":{"id":"28091","name":"Marion"},"arcs":[[-8595,8597,8598,8599,-8464,-8454]]},{"type":"Polygon","id":13003,"properties":{"id":"13003","name":"Atkinson"},"arcs":[[-8572,8600,8601,-8564,-8440]]},{"type":"Polygon","id":48455,"properties":{"id":"48455","name":"Trinity"},"arcs":[[8602,8603,8604,-8529,-8545]]},{"type":"Polygon","id":48371,"properties":{"id":"48371","name":"Pecos"},"arcs":[[-8503,8605,8606,8607,8608,-8365,-8510]]},{"type":"Polygon","id":13025,"properties":{"id":"13025","name":"Brantley"},"arcs":[[-8579,8609,8610,-8568,-8534,-8427]]},{"type":"Polygon","id":28157,"properties":{"id":"28157","name":"Wilkinson"},"arcs":[[-8522,8611,8612,8613,-8459,-8470]]},{"type":"Polygon","id":22115,"properties":{"id":"22115","name":"Vernon"},"arcs":[[-8556,8614,8615,8616,-8422,-8286]]},{"type":"Polygon","id":48395,"properties":{"id":"48395","name":"Robertson"},"arcs":[[8617,8618,8619,-8552,-8437,-8498]]},{"type":"Polygon","id":13075,"properties":{"id":"13075","name":"Cook"},"arcs":[[8620,8621,8622,-8526,-8567]]},{"type":"Polygon","id":28005,"properties":{"id":"28005","name":"Amite"},"arcs":[[-8476,8623,8624,8625,8626,-8612,-8521]]},{"type":"Polygon","id":28113,"properties":{"id":"28113","name":"Pike"},"arcs":[[8627,8628,8629,-8624,-8475]]},{"type":"Polygon","id":28147,"properties":{"id":"28147","name":"Walthall"},"arcs":[[-8600,8630,-8628,-8474,-8465]]},{"type":"Polygon","id":22009,"properties":{"id":"22009","name":"Avoyelles"},"arcs":[[-8377,-8463,8631,8632,8633,8634,-8553,-8394]]},{"type":"Polygon","id":13071,"properties":{"id":"13071","name":"Colquitt"},"arcs":[[-8527,-8623,8635,8636,-8583,-8417]]},{"type":"Polygon","id":48027,"properties":{"id":"48027","name":"Bell"},"arcs":[[-8551,8637,8638,8639,-8573,-8481,-8409]]},{"type":"MultiPolygon","id":1003,"properties":{"id":"1003","name":"Baldwin"},"arcs":[[[-8431,8640,8641,8642,8643,8644,8645,-8486,-8370]]]},{"type":"Polygon","id":1069,"properties":{"id":"1069","name":"Houston"},"arcs":[[-8549,8646,8647,8648,-8516,-8451]]},{"type":"Polygon","id":1053,"properties":{"id":"1053","name":"Escambia"},"arcs":[[-8539,8649,8650,8651,-8641,-8430,-8468]]},{"type":"Polygon","id":13201,"properties":{"id":"13201","name":"Miller"},"arcs":[[-8582,8652,8653,-8547]]},{"type":"Polygon","id":1061,"properties":{"id":"1061","name":"Geneva"},"arcs":[[8654,8655,8656,-8536,-8519,-8517,-8649]]},{"type":"Polygon","id":48351,"properties":{"id":"48351","name":"Newton"},"arcs":[[8657,8658,8659,8660,-8523,-8423,-8617]]},{"type":"Polygon","id":13065,"properties":{"id":"13065","name":"Clinch"},"arcs":[[-8571,8661,8662,8663,8664,-8601]]},{"type":"Polygon","id":13173,"properties":{"id":"13173","name":"Lanier"},"arcs":[[-8665,8665,8666,-8565,-8602]]},{"type":"MultiPolygon","id":1097,"properties":{"id":"1097","name":"Mobile"},"arcs":[[[8667,8668,8669,-8587,-8487,-8646]]]},{"type":"MultiPolygon","id":13039,"properties":{"id":"13039","name":"Camden"},"arcs":[[[8670]],[[8671,8672,8673,-8610,-8578]]]},{"type":"Polygon","id":48241,"properties":{"id":"48241","name":"Jasper"},"arcs":[[8674,8675,8676,-8542,-8506,-8524,-8661]]},{"type":"Polygon","id":48373,"properties":{"id":"48373","name":"Polk"},"arcs":[[8677,8678,8679,8680,-8603,-8544]]},{"type":"Polygon","id":48331,"properties":{"id":"48331","name":"Milam"},"arcs":[[8681,8682,8683,-8638,-8550,-8620]]},{"type":"Polygon","id":48243,"properties":{"id":"48243","name":"Jeff Davis"},"arcs":[[8684,-8358,-8356,-8366,-8609,8685]]},{"type":"Polygon","id":48313,"properties":{"id":"48313","name":"Madison"},"arcs":[[8686,8687,8688,-8497,-8531]]},{"type":"Polygon","id":48327,"properties":{"id":"48327","name":"Menard"},"arcs":[[-8559,8689,8690,8691,-8533]]},{"type":"Polygon","id":48413,"properties":{"id":"48413","name":"Schleicher"},"arcs":[[-8692,8692,8693,-8540,-8483]]},{"type":"Polygon","id":48105,"properties":{"id":"48105","name":"Crockett"},"arcs":[[-8500,-8509,-8541,-8694,8694,8695,8696,-8606,-8502]]},{"type":"Polygon","id":13087,"properties":{"id":"13087","name":"Decatur"},"arcs":[[-8581,-8586,8697,8698,8699,-8653]]},{"type":"Polygon","id":13131,"properties":{"id":"13131","name":"Grady"},"arcs":[[8700,8701,8702,-8698,-8585]]},{"type":"MultiPolygon","id":13027,"properties":{"id":"13027","name":"Brooks"},"arcs":[[[8703,8704,8705,8706,-8636,-8622]]]},{"type":"Polygon","id":13275,"properties":{"id":"13275","name":"Thomas"},"arcs":[[-8637,-8707,8707,8708,-8701,-8584]]},{"type":"Polygon","id":13253,"properties":{"id":"13253","name":"Seminole"},"arcs":[[-8700,8709,8710,-8647,-8548,-8654]]},{"type":"Polygon","id":13049,"properties":{"id":"13049","name":"Charlton"},"arcs":[[8711,8712,-8569,-8611,-8674]]},{"type":"Polygon","id":48457,"properties":{"id":"48457","name":"Tyler"},"arcs":[[-8677,8713,-8678,-8543]]},{"type":"Polygon","id":48471,"properties":{"id":"48471","name":"Walker"},"arcs":[[8714,8715,8716,-8687,-8530,-8605]]},{"type":"MultiPolygon","id":22125,"properties":{"id":"22125","name":"West Feliciana"},"arcs":[[[8717,8718,-8460,-8614,8719]],[[8720,-8632,-8462]]]},{"type":"Polygon","id":48053,"properties":{"id":"48053","name":"Burnet"},"arcs":[[-8640,8721,8722,8723,8724,-8561,-8574]]},{"type":"Polygon","id":13185,"properties":{"id":"13185","name":"Lowndes"},"arcs":[[-8566,-8667,8725,8726,8727,8728,-8704,-8621]]},{"type":"Polygon","id":22077,"properties":{"id":"22077","name":"Pointe Coupee"},"arcs":[[-8461,-8719,8729,8730,8731,8732,-8633,-8721]]},{"type":"Polygon","id":28109,"properties":{"id":"28109","name":"Pearl River"},"arcs":[[-8592,8733,8734,8735,8736,-8598,-8594]]},{"type":"Polygon","id":22117,"properties":{"id":"22117","name":"Washington"},"arcs":[[-8737,8737,8738,-8629,-8631,-8599]]},{"type":"Polygon","id":22039,"properties":{"id":"22039","name":"Evangeline"},"arcs":[[-8635,8739,8740,8741,8742,-8554]]},{"type":"Polygon","id":12063,"properties":{"id":"12063","name":"Jackson"},"arcs":[[-8711,8743,8744,8745,8746,8747,-8655,-8648]]},{"type":"Polygon","id":22105,"properties":{"id":"22105","name":"Tangipahoa"},"arcs":[[-8739,8748,8749,8750,8751,8752,-8625,-8630]]},{"type":"MultiPolygon","id":12033,"properties":{"id":"12033","name":"Escambia"},"arcs":[[[8753,-8754,8754]],[[8755,-8642,-8652,8756]]]},{"type":"MultiPolygon","id":12113,"properties":{"id":"12113","name":"Santa Rosa"},"arcs":[[[8757,-8754,8758,8759]],[[8760,8761,-8757,-8651]]]},{"type":"Polygon","id":28039,"properties":{"id":"28039","name":"George"},"arcs":[[-8670,8762,8763,-8596,-8588]]},{"type":"Polygon","id":22091,"properties":{"id":"22091","name":"St. Helena"},"arcs":[[-8753,8764,8765,8766,-8626]]},{"type":"MultiPolygon","id":12091,"properties":{"id":"12091","name":"Okaloosa"},"arcs":[[[8767,-8768,8768]],[[-8538,8769,8770,-8761,-8650]]]},{"type":"Polygon","id":22037,"properties":{"id":"22037","name":"East Feliciana"},"arcs":[[-8767,8771,8772,-8720,-8613,-8627]]},{"type":"Polygon","id":12059,"properties":{"id":"12059","name":"Holmes"},"arcs":[[-8748,8773,8774,-8656]]},{"type":"Polygon","id":12131,"properties":{"id":"12131","name":"Walton"},"arcs":[[-8657,-8775,8775,8776,8777,-8768,8778,-8770,-8537]]},{"type":"Polygon","id":48041,"properties":{"id":"48041","name":"Brazos"},"arcs":[[8779,8780,8781,-8618,-8689]]},{"type":"Polygon","id":48319,"properties":{"id":"48319","name":"Mason"},"arcs":[[-8563,8782,8783,8784,-8690,-8558]]},{"type":"Polygon","id":48299,"properties":{"id":"48299","name":"Llano"},"arcs":[[-8725,8785,8786,-8783,-8562]]},{"type":"Polygon","id":28131,"properties":{"id":"28131","name":"Stone"},"arcs":[[-8764,8787,8788,-8734,-8591,-8597]]},{"type":"Polygon","id":48491,"properties":{"id":"48491","name":"Williamson"},"arcs":[[8789,8790,8791,-8722,-8639,-8684]]},{"type":"Polygon","id":48407,"properties":{"id":"48407","name":"San Jacinto"},"arcs":[[-8681,8792,8793,-8715,-8604]]},{"type":"Polygon","id":22003,"properties":{"id":"22003","name":"Allen"},"arcs":[[-8743,8794,8795,-8615,-8555]]},{"type":"Polygon","id":22011,"properties":{"id":"22011","name":"Beauregard"},"arcs":[[-8796,8796,8797,-8658,-8616]]},{"type":"Polygon","id":13101,"properties":{"id":"13101","name":"Echols"},"arcs":[[8798,8799,-8726,-8666,-8664]]},{"type":"Polygon","id":48185,"properties":{"id":"48185","name":"Grimes"},"arcs":[[-8717,8800,8801,8802,-8780,-8688]]},{"type":"Polygon","id":22097,"properties":{"id":"22097","name":"St. Landry"},"arcs":[[-8733,8803,8804,8805,-8740,-8634]]},{"type":"Polygon","id":12133,"properties":{"id":"12133","name":"Washington"},"arcs":[[8806,-8776,-8774,-8747]]},{"type":"Polygon","id":12089,"properties":{"id":"12089","name":"Nassau"},"arcs":[[-8673,8807,8808,8809,-8712]]},{"type":"Polygon","id":28059,"properties":{"id":"28059","name":"Jackson"},"arcs":[[-8669,8810,8811,-8788,-8763]]},{"type":"Polygon","id":48051,"properties":{"id":"48051","name":"Burleson"},"arcs":[[-8782,8812,8813,-8682,-8619]]},{"type":"Polygon","id":22033,"properties":{"id":"22033","name":"East Baton Rouge"},"arcs":[[8814,8815,8816,8817,-8772,-8766]]},{"type":"Polygon","id":22103,"properties":{"id":"22103","name":"St. Tammany"},"arcs":[[-8736,8818,8819,8820,8821,-8749,-8738]]},{"type":"Polygon","id":12039,"properties":{"id":"12039","name":"Gadsden"},"arcs":[[-8703,8822,8823,-8744,-8710,-8699]]},{"type":"Polygon","id":48267,"properties":{"id":"48267","name":"Kimble"},"arcs":[[8824,8825,8826,8827,-8691,-8785]]},{"type":"Polygon","id":48435,"properties":{"id":"48435","name":"Sutton"},"arcs":[[-8828,8828,8829,-8695,-8693]]},{"type":"Polygon","id":12073,"properties":{"id":"12073","name":"Leon"},"arcs":[[-8709,8830,8831,8832,-8823,-8702]]},{"type":"Polygon","id":28047,"properties":{"id":"28047","name":"Harrison"},"arcs":[[-8812,8833,8834,-8789]]},{"type":"Polygon","id":12065,"properties":{"id":"12065","name":"Jefferson"},"arcs":[[-8706,8835,8836,8837,8838,-8831,-8708]]},{"type":"Polygon","id":48043,"properties":{"id":"48043","name":"Brewster"},"arcs":[[8839,-8686,-8608,8840,8841]]},{"type":"Polygon","id":22121,"properties":{"id":"22121","name":"West Baton Rouge"},"arcs":[[8842,-8730,-8718,-8773,-8818]]},{"type":"Polygon","id":48443,"properties":{"id":"48443","name":"Terrell"},"arcs":[[8843,8844,-8841,-8607,-8697]]},{"type":"Polygon","id":22063,"properties":{"id":"22063","name":"Livingston"},"arcs":[[-8752,8845,8846,-8815,-8765]]},{"type":"Polygon","id":12079,"properties":{"id":"12079","name":"Madison"},"arcs":[[-8729,-8728,8847,8848,8849,8850,-8836,-8705]]},{"type":"Polygon","id":28045,"properties":{"id":"28045","name":"Hancock"},"arcs":[[-8835,8851,-8819,-8735]]},{"type":"Polygon","id":12047,"properties":{"id":"12047","name":"Hamilton"},"arcs":[[-8800,8852,8853,-8848,-8727]]},{"type":"Polygon","id":48377,"properties":{"id":"48377","name":"Presidio"},"arcs":[[-8840,8854,-8685]]},{"type":"Polygon","id":48339,"properties":{"id":"48339","name":"Montgomery"},"arcs":[[-8794,8855,8856,8857,-8801,-8716]]},{"type":"Polygon","id":48453,"properties":{"id":"48453","name":"Travis"},"arcs":[[8858,8859,8860,8861,-8723,-8792]]},{"type":"Polygon","id":12013,"properties":{"id":"12013","name":"Calhoun"},"arcs":[[8862,8863,8864,-8745]]},{"type":"Polygon","id":12077,"properties":{"id":"12077","name":"Liberty"},"arcs":[[-8833,8865,8866,8867,-8863,-8824]]},{"type":"Polygon","id":12023,"properties":{"id":"12023","name":"Columbia"},"arcs":[[-8663,8868,8869,8870,8871,8872,-8853,-8799]]},{"type":"MultiPolygon","id":12031,"properties":{"id":"12031","name":"Duval"},"arcs":[[[8873,8874]],[[8875,8876]],[[8877,8878,8879,-8809]]]},{"type":"Polygon","id":12003,"properties":{"id":"12003","name":"Baker"},"arcs":[[-8810,-8880,8880,8881,8882,-8869,-8662,-8570,-8713]]},{"type":"MultiPolygon","id":12005,"properties":{"id":"12005","name":"Bay"},"arcs":[[[8883,8884]],[[-8865,8885,8886,-8777,-8807,-8746]]]},{"type":"Polygon","id":48287,"properties":{"id":"48287","name":"Lee"},"arcs":[[8887,8888,8889,-8790,-8683,-8814]]},{"type":"Polygon","id":48199,"properties":{"id":"48199","name":"Hardin"},"arcs":[[-8676,8890,8891,8892,-8679,-8714]]},{"type":"Polygon","id":48171,"properties":{"id":"48171","name":"Gillespie"},"arcs":[[-8787,8893,8894,8895,-8825,-8784]]},{"type":"Polygon","id":48031,"properties":{"id":"48031","name":"Blanco"},"arcs":[[-8724,-8862,8896,8897,8898,-8894,-8786]]},{"type":"MultiPolygon","id":22099,"properties":{"id":"22099","name":"St. Martin"},"arcs":[[[8899,8900,8901]],[[8902,8903,-8804,-8732,8904]]]},{"type":"Polygon","id":22047,"properties":{"id":"22047","name":"Iberville"},"arcs":[[-8843,-8817,8905,8906,8907,-8905,-8731]]},{"type":"Polygon","id":48291,"properties":{"id":"48291","name":"Liberty"},"arcs":[[-8893,8908,8909,8910,-8856,-8793,-8680]]},{"type":"Polygon","id":22019,"properties":{"id":"22019","name":"Calcasieu"},"arcs":[[8911,8912,8913,-8659,-8798]]},{"type":"Polygon","id":22053,"properties":{"id":"22053","name":"Jefferson Davis"},"arcs":[[-8742,8914,8915,8916,-8912,-8797,-8795]]},{"type":"Polygon","id":22001,"properties":{"id":"22001","name":"Acadia"},"arcs":[[-8806,8917,8918,-8915,-8741]]},{"type":"Polygon","id":12121,"properties":{"id":"12121","name":"Suwannee"},"arcs":[[-8873,8919,8920,-8849,-8854]]},{"type":"Polygon","id":48021,"properties":{"id":"48021","name":"Bastrop"},"arcs":[[8921,8922,-8859,-8791,-8890]]},{"type":"Polygon","id":48477,"properties":{"id":"48477","name":"Washington"},"arcs":[[-8803,8923,8924,8925,-8888,-8813,-8781]]},{"type":"Polygon","id":22055,"properties":{"id":"22055","name":"Lafayette"},"arcs":[[-8904,8926,8927,-8918,-8805]]},{"type":"Polygon","id":48209,"properties":{"id":"48209","name":"Hays"},"arcs":[[8928,8929,-8897,-8861,8930]]},{"type":"Polygon","id":22005,"properties":{"id":"22005","name":"Ascension"},"arcs":[[-8847,8931,8932,8933,-8906,-8816]]},{"type":"Polygon","id":12123,"properties":{"id":"12123","name":"Taylor"},"arcs":[[8934,8935,8936,-8837,-8851]]},{"type":"Polygon","id":12129,"properties":{"id":"12129","name":"Wakulla"},"arcs":[[-8839,8937,8938,-8866,-8832]]},{"type":"Polygon","id":22095,"properties":{"id":"22095","name":"St. John the Baptist"},"arcs":[[8939,8940,8941,-8932,-8846,-8751]]},{"type":"Polygon","id":48465,"properties":{"id":"48465","name":"Val Verde"},"arcs":[[-8830,8942,8943,8944,-8844,-8696]]},{"type":"Polygon","id":48137,"properties":{"id":"48137","name":"Edwards"},"arcs":[[8945,8946,8947,8948,-8943,-8829,-8827]]},{"type":"Polygon","id":48265,"properties":{"id":"48265","name":"Kerr"},"arcs":[[8949,8950,8951,-8946,-8826,-8896]]},{"type":"Polygon","id":12067,"properties":{"id":"12067","name":"Lafayette"},"arcs":[[-8921,8952,8953,-8935,-8850]]},{"type":"MultiPolygon","id":12109,"properties":{"id":"12109","name":"St. Johns"},"arcs":[[[8954,-8955,8955]],[[8956,8957,8958,8959,8960,-8874,8961]],[[-8876,8962]]]},{"type":"Polygon","id":48361,"properties":{"id":"48361","name":"Orange"},"arcs":[[-8914,8963,8964,-8891,-8675,-8660]]},{"type":"Polygon","id":48473,"properties":{"id":"48473","name":"Waller"},"arcs":[[8965,8966,8967,-8924,-8802,-8858]]},{"type":"Polygon","id":22089,"properties":{"id":"22089","name":"St. Charles"},"arcs":[[8968,-8940,8969]]},{"type":"MultiPolygon","id":22051,"properties":{"id":"22051","name":"Jefferson"},"arcs":[[[8970,-8971,8971]],[[8972,8973,8974,8975,-8970,-8750,-8822]]]},{"type":"Polygon","id":12045,"properties":{"id":"12045","name":"Gulf"},"arcs":[[-8868,8976,8977,8978,8979,-8884,8980,-8886,-8864]]},{"type":"Polygon","id":22071,"properties":{"id":"22071","name":"Orleans"},"arcs":[[8981,8982,8983,-8973,-8821]]},{"type":"Polygon","id":12019,"properties":{"id":"12019","name":"Clay"},"arcs":[[8984,8985,8986,-8881,-8879]]},{"type":"Polygon","id":48245,"properties":{"id":"48245","name":"Jefferson"},"arcs":[[-8965,8987,8988,8989,-8909,-8892]]},{"type":"MultiPolygon","id":48201,"properties":{"id":"48201","name":"Harris"},"arcs":[[[-8911,8990,8991,8992,8993,8994,-8966,-8857]]]},{"type":"MultiPolygon","id":22087,"properties":{"id":"22087","name":"St. Bernard"},"arcs":[[[-8996,-8997,-8998,-8999]],[[8999,9000,9001,-8983,9002]]]},{"type":"Polygon","id":22093,"properties":{"id":"22093","name":"St. James"},"arcs":[[9003,9004,-8933,-8942]]},{"type":"Polygon","id":48149,"properties":{"id":"48149","name":"Fayette"},"arcs":[[9005,9006,9007,9008,9009,-8922,-8889,-8926]]},{"type":"Polygon","id":22113,"properties":{"id":"22113","name":"Vermilion"},"arcs":[[-8928,9010,9011,9012,-8916,-8919]]},{"type":"Polygon","id":12007,"properties":{"id":"12007","name":"Bradford"},"arcs":[[-8987,9013,9014,9015,-8882]]},{"type":"Polygon","id":12125,"properties":{"id":"12125","name":"Union"},"arcs":[[-9016,9016,-8870,-8883]]},{"type":"Polygon","id":48259,"properties":{"id":"48259","name":"Kendall"},"arcs":[[-8899,9017,9018,9019,-8950,-8895]]},{"type":"MultiPolygon","id":22045,"properties":{"id":"22045","name":"Iberia"},"arcs":[[[9020]],[[-8908,9021,-8901,9022,9023,-9011,-8927,-8903]]]},{"type":"Polygon","id":48015,"properties":{"id":"48015","name":"Austin"},"arcs":[[-8968,9024,9025,9026,-9006,-8925]]},{"type":"Polygon","id":22007,"properties":{"id":"22007","name":"Assumption"},"arcs":[[-9005,9027,9028,9029,-8902,-9022,-8907,-8934]]},{"type":"Polygon","id":48385,"properties":{"id":"48385","name":"Real"},"arcs":[[-8952,9030,9031,-8947]]},{"type":"Polygon","id":48055,"properties":{"id":"48055","name":"Caldwell"},"arcs":[[-8923,-9010,9032,9033,-8931,-8860]]},{"type":"Polygon","id":22023,"properties":{"id":"22023","name":"Cameron"},"arcs":[[-8917,-9013,9034,-8988,-8964,-8913]]},{"type":"Polygon","id":48091,"properties":{"id":"48091","name":"Comal"},"arcs":[[9035,9036,-9018,-8898,-8930]]},{"type":"MultiPolygon","id":12037,"properties":{"id":"12037","name":"Franklin"},"arcs":[[[9037]],[[-8979,9038]],[[-8939,9039,-8977,-8867]]]},{"type":"Polygon","id":48089,"properties":{"id":"48089","name":"Colorado"},"arcs":[[9040,9041,9042,-9007,-9027]]},{"type":"Polygon","id":22101,"properties":{"id":"22101","name":"St. Mary"},"arcs":[[-9030,9043,9044,-9023,-8900]]},{"type":"Polygon","id":12001,"properties":{"id":"12001","name":"Alachua"},"arcs":[[-9015,9045,9046,9047,9048,-8871,-9017]]},{"type":"Polygon","id":12041,"properties":{"id":"12041","name":"Gilchrist"},"arcs":[[-9049,9049,9050,-8953,-8920,-8872]]},{"type":"MultiPolygon","id":22057,"properties":{"id":"22057","name":"Lafourche"},"arcs":[[[9051,-9052,9052]],[[-8971,9053,9054,9055,9056,9057,9058,-9028,-9004,-8941,-8969,-8976,9059]]]},{"type":"Polygon","id":48019,"properties":{"id":"48019","name":"Bandera"},"arcs":[[9060,-9031,-8951,-9020,9061,9062]]},{"type":"MultiPolygon","id":22075,"properties":{"id":"22075","name":"Plaquemines"},"arcs":[[[9063]],[[-8974,-8984,-9002,9064]]]},{"type":"MultiPolygon","id":48071,"properties":{"id":"48071","name":"Chambers"},"arcs":[[[-8990,9065,9066,9067,-8991,-8910]]]},{"type":"Polygon","id":48187,"properties":{"id":"48187","name":"Guadalupe"},"arcs":[[9068,9069,9070,-9036,-8929,-9034]]},{"type":"MultiPolygon","id":12107,"properties":{"id":"12107","name":"Putnam"},"arcs":[[[-8960,9071,9072,9073]],[[9074,9075,-9046,-9014,-8986]]]},{"type":"Polygon","id":48157,"properties":{"id":"48157","name":"Fort Bend"},"arcs":[[9076,9077,-9025,-8967,-8995]]},{"type":"Polygon","id":48177,"properties":{"id":"48177","name":"Gonzales"},"arcs":[[9078,9079,9080,9081,-9069,-9033,-9009]]},{"type":"MultiPolygon","id":22109,"properties":{"id":"22109","name":"Terrebonne"},"arcs":[[[9051,-9052,9052]],[[9082]],[[-9044,-9029,-9059,9083]]]},{"type":"Polygon","id":48029,"properties":{"id":"48029","name":"Bexar"},"arcs":[[-9071,9084,9085,9086,-9062,-9019,-9037]]},{"type":"Polygon","id":48325,"properties":{"id":"48325","name":"Medina"},"arcs":[[9087,9088,9089,-9063,-9087]]},{"type":"MultiPolygon","id":12035,"properties":{"id":"12035","name":"Flagler"},"arcs":[[[9090,9091,-9072,-8959]],[[9092,9093,9094,8954]]]},{"type":"Polygon","id":48481,"properties":{"id":"48481","name":"Wharton"},"arcs":[[-9078,9095,9096,9097,-9041,-9026]]},{"type":"Polygon","id":48285,"properties":{"id":"48285","name":"Lavaca"},"arcs":[[9098,9099,9100,-9079,-9008,-9043]]},{"type":"Polygon","id":48463,"properties":{"id":"48463","name":"Uvalde"},"arcs":[[-9090,9101,9102,-8948,-9032,-9061]]},{"type":"Polygon","id":48271,"properties":{"id":"48271","name":"Kinney"},"arcs":[[-9103,9103,9104,-8944,-8949]]},{"type":"MultiPolygon","id":48167,"properties":{"id":"48167","name":"Galveston"},"arcs":[[[9105]],[[9106,-8993,9107]],[[9108,-9067]]]},{"type":"Polygon","id":48039,"properties":{"id":"48039","name":"Brazoria"},"arcs":[[-9107,9109,9110,-9096,-9077,-8994]]},{"type":"Polygon","id":12075,"properties":{"id":"12075","name":"Levy"},"arcs":[[-9048,9111,9112,9113,9114,9115,-9050]]},{"type":"Polygon","id":12083,"properties":{"id":"12083","name":"Marion"},"arcs":[[9116,9117,9118,9119,-9112,-9047,-9076]]},{"type":"Polygon","id":48493,"properties":{"id":"48493","name":"Wilson"},"arcs":[[-9082,9120,9121,-9085,-9070]]},{"type":"MultiPolygon","id":12127,"properties":{"id":"12127","name":"Volusia"},"arcs":[[[9122,-9123,9123]],[[9124,9125,9126,9127,9128,9129,-9073,-9092,9130]]]},{"type":"Polygon","id":48123,"properties":{"id":"48123","name":"De Witt"},"arcs":[[9131,9132,-9080,-9101,9133]]},{"type":"Polygon","id":12069,"properties":{"id":"12069","name":"Lake"},"arcs":[[-9129,9134,9135,9136,9137,-9118,9138]]},{"type":"Polygon","id":48239,"properties":{"id":"48239","name":"Jackson"},"arcs":[[9139,9140,9141,9142,9143,9144,9145,9146,-9099,-9042,-9098]]},{"type":"Polygon","id":48013,"properties":{"id":"48013","name":"Atascosa"},"arcs":[[9147,9148,-9088,-9086,-9122,9149,9150]]},{"type":"Polygon","id":48321,"properties":{"id":"48321","name":"Matagorda"},"arcs":[[9151,-9140,-9097,-9111,9152]]},{"type":"Polygon","id":48255,"properties":{"id":"48255","name":"Karnes"},"arcs":[[9153,9154,-9150,-9121,-9081,-9133,9155]]},{"type":"MultiPolygon","id":48469,"properties":{"id":"48469","name":"Victoria"},"arcs":[[[-9147,9156,9157,9158,9159,-9134,-9100]]]},{"type":"Polygon","id":48163,"properties":{"id":"48163","name":"Frio"},"arcs":[[-9149,9160,9161,9162,-9089]]},{"type":"Polygon","id":48507,"properties":{"id":"48507","name":"Zavala"},"arcs":[[-9163,9163,9164,-9102]]},{"type":"Polygon","id":48323,"properties":{"id":"48323","name":"Maverick"},"arcs":[[-9165,9165,9166,9167,-9104]]},{"type":"MultiPolygon","id":12017,"properties":{"id":"12017","name":"Citrus"},"arcs":[[[-9113,-9120,9168,9169,9170]]]},{"type":"Polygon","id":12119,"properties":{"id":"12119","name":"Sumter"},"arcs":[[-9138,9171,9172,9173,-9169,-9119]]},{"type":"Polygon","id":48175,"properties":{"id":"48175","name":"Goliad"},"arcs":[[-9160,9174,9175,-9156,-9132]]},{"type":"Polygon","id":12117,"properties":{"id":"12117","name":"Seminole"},"arcs":[[9176,-9135,-9128]]},{"type":"MultiPolygon","id":12009,"properties":{"id":"12009","name":"Brevard"},"arcs":[[[9177,9178,9179,9180,-9127]],[[9181,-9123,9182,-9125]]]},{"type":"Polygon","id":48297,"properties":{"id":"48297","name":"Live Oak"},"arcs":[[9183,9184,9185,-9151,-9155,9186,9187]]},{"type":"Polygon","id":12095,"properties":{"id":"12095","name":"Orange"},"arcs":[[-9177,-9181,9188,-9136]]},{"type":"MultiPolygon","id":48057,"properties":{"id":"48057","name":"Calhoun"},"arcs":[[[9189,9190]],[[9191,9192]],[[-9152,9193,-9141]],[[9194,-9158,9195]],[[-9143,9196]]]},{"type":"Polygon","id":48025,"properties":{"id":"48025","name":"Bee"},"arcs":[[-9176,9197,9198,-9187,-9154]]},{"type":"Polygon","id":12053,"properties":{"id":"12053","name":"Hernando"},"arcs":[[-9174,9199,9200,-9170]]},{"type":"Polygon","id":48283,"properties":{"id":"48283","name":"La Salle"},"arcs":[[9201,9202,9203,-9161]]},{"type":"Polygon","id":48311,"properties":{"id":"48311","name":"McMullen"},"arcs":[[-9186,9204,-9202,-9148]]},{"type":"Polygon","id":48127,"properties":{"id":"48127","name":"Dimmit"},"arcs":[[-9162,-9204,9205,-9166,-9164]]},{"type":"Polygon","id":48391,"properties":{"id":"48391","name":"Refugio"},"arcs":[[-9195,9206,9207,9208,9209,9210,-9198,-9175,-9159]]},{"type":"MultiPolygon","id":12101,"properties":{"id":"12101","name":"Pasco"},"arcs":[[[-9173,9211,9212,9213,9214,-9200]]]},{"type":"Polygon","id":12105,"properties":{"id":"12105","name":"Polk"},"arcs":[[9215,9216,9217,9218,-9212,-9172,-9137]]},{"type":"Polygon","id":12097,"properties":{"id":"12097","name":"Osceola"},"arcs":[[-9180,9219,9220,-9216,-9189]]},{"type":"MultiPolygon","id":48007,"properties":{"id":"48007","name":"Aransas"},"arcs":[[[9221]],[[9222,9223,-9210]],[[9224,9225]],[[-9208,9226,-9190,9227]]]},{"type":"Polygon","id":48479,"properties":{"id":"48479","name":"Webb"},"arcs":[[9228,9229,9230,9231,-9167,-9206,-9203]]},{"type":"Polygon","id":48409,"properties":{"id":"48409","name":"San Patricio"},"arcs":[[-9224,9232,-9225,9233,9234,9235,9236,9237,-9188,-9199,-9211]]},{"type":"MultiPolygon","id":12103,"properties":{"id":"12103","name":"Pinellas"},"arcs":[[[9238,9239,-9214]]]},{"type":"Polygon","id":12057,"properties":{"id":"12057","name":"Hillsborough"},"arcs":[[-9219,9240,9241,-9239,-9213]]},{"type":"Polygon","id":48131,"properties":{"id":"48131","name":"Duval"},"arcs":[[9242,9243,9244,-9229,-9205,-9185]]},{"type":"Polygon","id":48249,"properties":{"id":"48249","name":"Jim Wells"},"arcs":[[-9238,9245,9246,9247,-9243,-9184]]},{"type":"MultiPolygon","id":48355,"properties":{"id":"48355","name":"Nueces"},"arcs":[[[9248,-9249,9249]],[[9250]],[[9251,-9246,-9237,9252]]]},{"type":"MultiPolygon","id":12061,"properties":{"id":"12061","name":"Indian River"},"arcs":[[[9253,9254,-9220,-9179,9255]],[[9256,-9257,9257]]]},{"type":"Polygon","id":12055,"properties":{"id":"12055","name":"Highlands"},"arcs":[[9258,9259,9260,9261,-9217]]},{"type":"Polygon","id":12049,"properties":{"id":"12049","name":"Hardee"},"arcs":[[-9262,9262,9263,-9218]]},{"type":"MultiPolygon","id":12081,"properties":{"id":"12081","name":"Manatee"},"arcs":[[[-9264,9264,9265,9266,-9241]]]},{"type":"Polygon","id":12093,"properties":{"id":"12093","name":"Okeechobee"},"arcs":[[-9255,9267,9268,9269,-9259,-9221]]},{"type":"MultiPolygon","id":48273,"properties":{"id":"48273","name":"Kleberg"},"arcs":[[[9270,9271,-9249,9272]],[[9273,9274,9275,-9247,-9252]]]},{"type":"MultiPolygon","id":12111,"properties":{"id":"12111","name":"St. Lucie"},"arcs":[[[9276,-9277,9277]],[[9256,-9257,9257]],[[9278,9279,9280,9281,-9268,-9254]]]},{"type":"MultiPolygon","id":12115,"properties":{"id":"12115","name":"Sarasota"},"arcs":[[[-9266,9282,9283,9284,9285,9286]]]},{"type":"Polygon","id":48247,"properties":{"id":"48247","name":"Jim Hogg"},"arcs":[[9287,9288,9289,-9230,-9245]]},{"type":"Polygon","id":12027,"properties":{"id":"12027","name":"De Soto"},"arcs":[[-9261,9290,-9283,-9265,-9263]]},{"type":"Polygon","id":48505,"properties":{"id":"48505","name":"Zapata"},"arcs":[[-9290,9291,9292,-9231]]},{"type":"MultiPolygon","id":48261,"properties":{"id":"48261","name":"Kenedy"},"arcs":[[[9293,9294,9295]],[[9296,9297]],[[9298,-9271,9299]],[[9300,9301,9302,-9275,9303]]]},{"type":"Polygon","id":48047,"properties":{"id":"48047","name":"Brooks"},"arcs":[[-9248,-9276,-9303,9304,9305,-9288,-9244]]},{"type":"MultiPolygon","id":12085,"properties":{"id":"12085","name":"Martin"},"arcs":[[[9306,9307,9308,9309,9310,-9269,-9282,9311]],[[9276,-9277,9277]]]},{"type":"Polygon","id":12043,"properties":{"id":"12043","name":"Glades"},"arcs":[[9312,9313,-9260,-9270]]},{"type":"MultiPolygon","id":12015,"properties":{"id":"12015","name":"Charlotte"},"arcs":[[[9314]],[[-9286,9315]],[[-9314,9316,9317,-9284,-9291]]]},{"type":"MultiPolygon","id":12099,"properties":{"id":"12099","name":"Palm Beach"},"arcs":[[[9318,9319,9320,-9311]]]},{"type":"Polygon","id":12051,"properties":{"id":"12051","name":"Hendry"},"arcs":[[9321,9322,9323,-9313,-9321]]},{"type":"MultiPolygon","id":12071,"properties":{"id":"12071","name":"Lee"},"arcs":[[[9324]],[[-9324,9325,9326,-9317]],[[9314]]]},{"type":"Polygon","id":48427,"properties":{"id":"48427","name":"Starr"},"arcs":[[-9306,9327,9328,-9292,-9289]]},{"type":"Polygon","id":48215,"properties":{"id":"48215","name":"Hidalgo"},"arcs":[[-9302,9329,9330,9331,-9328,-9305]]},{"type":"MultiPolygon","id":48489,"properties":{"id":"48489","name":"Willacy"},"arcs":[[[-9295,9332]],[[9333,-9330,-9301,9334]]]},{"type":"MultiPolygon","id":12021,"properties":{"id":"12021","name":"Collier"},"arcs":[[[9335,9336,9337,9338,-9326,-9323]]]},{"type":"MultiPolygon","id":48061,"properties":{"id":"48061","name":"Cameron"},"arcs":[[[-9331,-9334,9339]]]},{"type":"Polygon","id":12011,"properties":{"id":"12011","name":"Broward"},"arcs":[[9340,9341,-9336,-9322,-9320]]},{"type":"Polygon","id":12086,"arcs":[[9342,9343,9344,9345,9346,-9337,-9342,9347]]},{"type":"MultiPolygon","id":12087,"properties":{"id":"12087","name":"Monroe"},"arcs":[[[-9349]],[[-9347,9349,-9338]]]},{"type":"Polygon","id":4015,"properties":{"id":"4015","name":"Mohave"},"arcs":[[-5717,-6650,-7284,-6503,-5898,-4591,-5320,-5394]]},{"type":"Polygon","id":12029,"properties":{"id":"12029","name":"Dixie"},"arcs":[[-9051,-9116,9350,-8936,-8954]]},{"type":"Polygon","id":27077,"properties":{"id":"27077","name":"Lake of the Woods"},"arcs":[[-123,-169,-106,9351]]},{"type":"Polygon","id":27031,"properties":{"id":"27031","name":"Cook"},"arcs":[[-191,9352]]},{"type":"Polygon","id":55031,"properties":{"id":"55031","name":"Douglas"},"arcs":[[9353,-653,-646,-572,-461,-136,9354]]},{"type":"Polygon","id":55007,"properties":{"id":"55007","name":"Bayfield"},"arcs":[[9355,-651,-9354,9356]]},{"type":"MultiPolygon","id":55003,"properties":{"id":"55003","name":"Ashland"},"arcs":[[[-541,-698,-647,-9356,9357]],[[9358]]]},{"type":"MultiPolygon","id":26083,"properties":{"id":"26083","name":"Keweenaw"},"arcs":[[[9359,9360]],[[9361]]]},{"type":"MultiPolygon","id":26061,"properties":{"id":"26061","name":"Houghton"},"arcs":[[[-433,-571,-423,9362]],[[9363,-9360]]]},{"type":"Polygon","id":26103,"properties":{"id":"26103","name":"Marquette"},"arcs":[[9364,9365,-693,-620,-566,-431,9366]]},{"type":"Polygon","id":26003,"properties":{"id":"26003","name":"Alger"},"arcs":[[-557,9367,-9365,9368,-472]]},{"type":"Polygon","id":26041,"properties":{"id":"26041","name":"Delta"},"arcs":[[-9368,-556,9369,-690,-9366]]},{"type":"Polygon","id":55075,"properties":{"id":"55075","name":"Marinette"},"arcs":[[-692,9370,-854,-665,-682,-618]]},{"type":"Polygon","id":55029,"properties":{"id":"55029","name":"Door"},"arcs":[[-1142,9371]]},{"type":"MultiPolygon","id":26033,"properties":{"id":"26033","name":"Chippewa"},"arcs":[[[9372]],[[9373]],[[9374,9375,9376,-469,9377]]]},{"type":"MultiPolygon","id":26097,"properties":{"id":"26097","name":"Mackinac"},"arcs":[[[9378]],[[9379,-554,-470,-9377]]]},{"type":"Polygon","id":26047,"properties":{"id":"26047","name":"Emmet"},"arcs":[[-748,9380,9381]]},{"type":"MultiPolygon","id":26029,"properties":{"id":"26029","name":"Charlevoix"},"arcs":[[[-9381,-747,-927,-924,9382]],[[9383]]]},{"type":"MultiPolygon","id":26089,"properties":{"id":"26089","name":"Leelanau"},"arcs":[[[9384]],[[9385,-1087,9386]]]},{"type":"Polygon","id":26055,"properties":{"id":"26055","name":"Grand Traverse"},"arcs":[[-922,-1055,-1202,-1084,-9386,9387]]},{"type":"Polygon","id":26007,"properties":{"id":"26007","name":"Alpena"},"arcs":[[9388,-1052,-928,-796]]},{"type":"Polygon","id":26011,"properties":{"id":"26011","name":"Arenac"},"arcs":[[9389,-1408,-1369,-1212,-1210]]},{"type":"Polygon","id":26063,"properties":{"id":"26063","name":"Huron"},"arcs":[[-1546,-1525,9390]]},{"type":"Polygon","id":26147,"properties":{"id":"26147","name":"St. Clair"},"arcs":[[-1897,-1694,-1544,9391]]},{"type":"Polygon","id":26163,"properties":{"id":"26163","name":"Wayne"},"arcs":[[9392,9393,-2098,-1898,-1895]]},{"type":"MultiPolygon","id":26115,"properties":{"id":"26115","name":"Monroe"},"arcs":[[[-2473,2472,9394]],[[2470,-2471,9395]],[[9396,-2469,-2245,-2095,-9394]]]},{"type":"MultiPolygon","id":45019,"properties":{"id":"45019","name":"Charleston"},"arcs":[[[9397,-7836,9398,-7838,-7784,-7670]],[[7564,-7565,7565]],[[-7668,-7568,9399]]]},{"type":"Polygon","id":15005,"properties":{"id":"15005","name":"Kalawao"},"arcs":[[9400,-9401,9401]]},{"type":"Polygon","id":15001,"properties":{"id":"15001","name":"Hawaii"},"arcs":[[9402]]},{"type":"MultiPolygon","id":15007,"properties":{"id":"15007","name":"Kauai"},"arcs":[[[9403]],[[9404]]]},{"type":"MultiPolygon","id":15009,"properties":{"id":"15009","name":"Maui"},"arcs":[[[-9401,9405]],[[9406]],[[9407]],[[9408]]]},{"type":"Polygon","id":15003,"properties":{"id":"15003","name":"Honolulu"},"arcs":[[9409]]},{"type":"MultiPolygon","id":2016,"properties":{"id":"2016","name":"Aleutians West"},"arcs":[[[9410]],[[9411]],[[9412]],[[9413]],[[9414]],[[9415]],[[9416]],[[9417]],[[9418]],[[9419]],[[9420]],[[9421]],[[9422]],[[9423]],[[9424]],[[9425]],[[9426]],[[9427]],[[9428]],[[9429]],[[9430]],[[9431]],[[9432]],[[9433]]]},{"type":"MultiPolygon","id":2013,"properties":{"id":"2013","name":"Aleutians East"},"arcs":[[[9434]],[[9435]],[[9436]],[[9437]],[[9438]],[[9439]],[[9440]],[[9441]],[[9442]],[[9443]],[[9444]],[[9445]],[[9446,9447,9448,9449]]]},{"type":"MultiPolygon","id":2130,"properties":{"id":"2130","name":"Ketchikan Gateway"},"arcs":[[[9450]],[[9451]]]},{"type":"Polygon","id":2060,"properties":{"id":"2060","name":"Bristol Bay"},"arcs":[[9452,9453]]},{"type":"MultiPolygon","id":2070,"properties":{"id":"2070","name":"Dillingham"},"arcs":[[[9454]],[[9455,9456]],[[9457,9458,9459]]]},{"type":"MultiPolygon","id":2164,"properties":{"id":"2164","name":"Lake and Peninsula"},"arcs":[[[9460]],[[9461,9462,9463,-9449,9464,-9454,9465,-9459,9466]]]},{"type":"MultiPolygon","id":2150,"properties":{"id":"2150","name":"Kodiak Island"},"arcs":[[[9467]],[[9468]],[[9469]],[[9470]],[[9471]],[[9472]],[[9473]],[[9474]],[[9475]],[[9476]],[[9477,-9463,9478,9479]]]},{"type":"MultiPolygon","id":2110,"properties":{"id":"2110","name":"Juneau"},"arcs":[[[9480,-9481,9481]],[[9482,-9483,9483]],[[9484,9485,9486,9487]],[[9488]],[[9489,9490,9491,9492,9493,9494]],[[9495,9496]]]},{"type":"MultiPolygon","id":2280,"properties":{"id":"2280","name":"Wrangell-Petersburg"},"arcs":[[[9497]],[[9498,-9499,9499]],[[9500]],[[9501]],[[9502]],[[9503]],[[9504]],[[9505]],[[9506,9507,9508,9509]]]},{"type":"MultiPolygon","id":2232,"properties":{"id":"2232","name":"Skagway-Hoonah-Angoon"},"arcs":[[[9510,9511,9512,9513]],[[9514]],[[-9510,9515,-9481,9516,-9491,9517]],[[-9485,9518,-9483,9519]],[[9520,9521]],[[-9487,9522]],[[9523,9524,9525,9526]],[[9527,9528,9529,9530]]]},{"type":"MultiPolygon","id":2100,"properties":{"id":"2100","name":"Haines"},"arcs":[[[-9495,9531,-9496,9532,-9528,9533]],[[9534,-9526,9535,-9530]]]},{"type":"MultiPolygon","id":2220,"properties":{"id":"2220","name":"Sitka"},"arcs":[[[9536]],[[-9499,9537]],[[-9511,9538,-9521,9539]]]},{"type":"MultiPolygon","id":2270,"properties":{"id":"2270","name":"Wade Hampton"},"arcs":[[[9540]],[[9541]],[[9542]],[[9543,9544,9545,9546]]]},{"type":"MultiPolygon","id":2050,"properties":{"id":"2050","name":"Bethel"},"arcs":[[[9547]],[[9548]],[[9549]],[[9550]],[[-9546,9551,9552,9553,-9467,-9458,9554,-9457,9555]]]},{"type":"Polygon","id":2170,"properties":{"id":"2170","name":"Matanuska-Susitna"},"arcs":[[9556,9557,9558,9559,-9553,9560,9561,9562]]},{"type":"Polygon","id":2068,"properties":{"id":"2068","name":"Denali"},"arcs":[[9563,9564,-9562,9565]]},{"type":"Polygon","id":2020,"properties":{"id":"2020","name":"Anchorage"},"arcs":[[-9558,9566,9567,9568]]},{"type":"MultiPolygon","id":2261,"properties":{"id":"2261","name":"Valdez-Cordova"},"arcs":[[[9569]],[[9570]],[[9571]],[[9572]],[[9573]],[[9574]],[[9575]],[[9576]],[[9577,9578]],[[9579]],[[9580]],[[9581,-9582,9582]],[[9583]],[[9584,9585]],[[9586]],[[9587,-9567,-9557,9588,9589,9590,9591]]]},{"type":"MultiPolygon","id":2122,"properties":{"id":"2122","name":"Kenai Peninsula"},"arcs":[[[9592]],[[9593]],[[9594]],[[9581,-9582,9582]],[[-9568,-9588,9595,-9585,9596,-9578,9597]],[[-9479,-9462,-9554,-9560,9598]]]},{"type":"Polygon","id":2282,"properties":{"id":"2282","name":"Yakutat"},"arcs":[[-9591,9599,-9524,9600]]},{"type":"Polygon","id":2290,"properties":{"id":"2290","name":"Yukon-Koyukuk"},"arcs":[[9601,9602,9603,-9566,-9561,-9552,-9545,9604,9605,9606]]},{"type":"Polygon","id":2090,"properties":{"id":"2090","name":"Fairbanks North Star"},"arcs":[[9607,-9564,-9604]]},{"type":"Polygon","id":2240,"properties":{"id":"2240","name":"Southeast Fairbanks"},"arcs":[[-9589,-9563,-9565,-9608,-9603,9608]]},{"type":"MultiPolygon","id":2185,"properties":{"id":"2185","name":"North Slope"},"arcs":[[[9609]],[[-9607,9610,9611]]]},{"type":"Polygon","id":2188,"properties":{"id":"2188","name":"Northwest Arctic"},"arcs":[[-9606,9612,9613,-9611]]},{"type":"MultiPolygon","id":2180,"properties":{"id":"2180","name":"Nome"},"arcs":[[[9614]],[[9615]],[[9616]],[[-9613,-9605,-9544,9617]]]},{"type":"MultiPolygon","id":2201,"properties":{"id":"2201","name":"Prince of Wales-Outer Ketchikan"},"arcs":[[[9618]],[[9619]],[[9620]],[[9621]],[[9622]],[[9623]],[[9624]],[[9625]],[[9626]],[[9627]],[[9628]],[[9629]],[[9630]],[[9631]],[[9632]],[[-9508,9633]]]},{"type":"Polygon","id":72125,"properties":{"id":"72125","name":"San German"},"arcs":[[9634,9635,9636,9637,9638,9639]]},{"type":"Polygon","id":72003,"properties":{"id":"72003","name":"Aguada"},"arcs":[[9640,9641,9642,9643,9644]]},{"type":"Polygon","id":72097,"properties":{"id":"72097","name":"Mayaguez"},"arcs":[[9645,9646,-9640,9647,9648,9649,9650]]},{"type":"Polygon","id":72065,"properties":{"id":"72065","name":"Hatillo"},"arcs":[[9651,9652,9653,9654,9655]]},{"type":"Polygon","id":72055,"properties":{"id":"72055","name":"Guanica"},"arcs":[[9656,9657,9658,9659]]},{"type":"Polygon","id":72083,"properties":{"id":"72083","name":"Las Marias"},"arcs":[[9660,9661,-9646,9662,9663]]},{"type":"Polygon","id":72025,"properties":{"id":"72025","name":"Caguas"},"arcs":[[9664,9665,9666,9667,9668,9669,9670]]},{"type":"Polygon","id":72045,"properties":{"id":"72045","name":"Comerio"},"arcs":[[9671,9672,9673,9674,9675]]},{"type":"Polygon","id":72133,"properties":{"id":"72133","name":"Santa Isabel"},"arcs":[[9676,9677,9678,9679]]},{"type":"Polygon","id":72121,"properties":{"id":"72121","name":"Sabana Grande"},"arcs":[[-9660,9680,-9636,9681,9682]]},{"type":"Polygon","id":72027,"properties":{"id":"72027","name":"Camuy"},"arcs":[[-9655,9683,9684,9685,9686]]},{"type":"Polygon","id":72033,"properties":{"id":"72033","name":"Catano"},"arcs":[[9687,9688,9689,9690]]},{"type":"Polygon","id":72001,"properties":{"id":"72001","name":"Adjuntas"},"arcs":[[9691,9692,9693,9694,9695,9696]]},{"type":"Polygon","id":72111,"properties":{"id":"72111","name":"Penuelas"},"arcs":[[9697,9698,9699,-9693]]},{"type":"Polygon","id":72047,"properties":{"id":"72047","name":"Corozal"},"arcs":[[9700,9701,9702,9703,9704,9705]]},{"type":"Polygon","id":72091,"properties":{"id":"72091","name":"Manati"},"arcs":[[9706,9707,9708,9709,9710,9711]]},{"type":"Polygon","id":72013,"properties":{"id":"72013","name":"Arecibo"},"arcs":[[9712,9713,9714,9715,-9652,9716]]},{"type":"Polygon","id":72145,"properties":{"id":"72145","name":"Vega Baja"},"arcs":[[9717,9718,-9707,9719]]},{"type":"Polygon","id":72031,"properties":{"id":"72031","name":"Carolina"},"arcs":[[9720,9721,9722,9723,9724,9725]]},{"type":"Polygon","id":72061,"properties":{"id":"72061","name":"Guaynabo"},"arcs":[[9726,9727,9728,-9688,9729]]},{"type":"Polygon","id":72129,"properties":{"id":"72129","name":"San Lorenzo"},"arcs":[[9730,9731,9732,9733,9734,-9667,9735]]},{"type":"Polygon","id":72075,"properties":{"id":"72075","name":"Juana Diaz"},"arcs":[[9736,9737,-9680,9738,9739,9740,9741]]},{"type":"Polygon","id":72063,"properties":{"id":"72063","name":"Gurabo"},"arcs":[[-9722,9742,-9736,-9666,9743]]},{"type":"Polygon","id":72073,"properties":{"id":"72073","name":"Jayuya"},"arcs":[[9744,-9741,9745,9746,9747]]},{"type":"Polygon","id":72143,"properties":{"id":"72143","name":"Vega Alta"},"arcs":[[9748,9749,-9705,9750,-9718,9751]]},{"type":"Polygon","id":72011,"properties":{"id":"72011","name":"Anasco"},"arcs":[[9752,-9663,-9651,9753,9754,-9642,9755]]},{"type":"Polygon","id":72081,"properties":{"id":"72081","name":"Lares"},"arcs":[[-9654,9756,-9696,9757,9758,-9661,9759,-9684]]},{"type":"Polygon","id":72015,"properties":{"id":"72015","name":"Arroyo"},"arcs":[[9760,9761,9762]]},{"type":"Polygon","id":72079,"properties":{"id":"72079","name":"Lajas"},"arcs":[[-9681,-9659,9763,9764,-9637]]},{"type":"Polygon","id":72009,"properties":{"id":"72009","name":"Aibonito"},"arcs":[[9765,9766,9767,9768,9769]]},{"type":"Polygon","id":72099,"properties":{"id":"72099","name":"Moca"},"arcs":[[9770,9771,-9756,-9641,9772]]},{"type":"Polygon","id":72023,"properties":{"id":"72023","name":"Cabo Rojo"},"arcs":[[9773,-9638,-9765,9774,-9649]]},{"type":"Polygon","id":72109,"properties":{"id":"72109","name":"Patillas"},"arcs":[[9775,9776,9777,-9763,9778,9779,-9734]]},{"type":"Polygon","id":72101,"properties":{"id":"72101","name":"Morovis"},"arcs":[[-9751,-9704,9780,9781,-9708,-9719]]},{"type":"Polygon","id":72117,"properties":{"id":"72117","name":"Rincon"},"arcs":[[-9755,9782,-9643]]},{"type":"Polygon","id":72005,"properties":{"id":"72005","name":"Aguadilla"},"arcs":[[-9773,-9645,9783,9784]]},{"type":"Polygon","id":72059,"properties":{"id":"72059","name":"Guayanilla"},"arcs":[[-9700,9785,9786,-9694]]},{"type":"Polygon","id":72021,"properties":{"id":"72021","name":"Bayamo'n"},"arcs":[[-9729,9787,-9672,9788,9789,9790,-9689]]},{"type":"Polygon","id":72141,"properties":{"id":"72141","name":"Utuado"},"arcs":[[9791,-9747,9792,-9697,-9757,-9653,-9716]]},{"type":"Polygon","id":72041,"properties":{"id":"72041","name":"Cidra"},"arcs":[[-9669,9793,-9770,9794,-9674,9795]]},{"type":"Polygon","id":72123,"properties":{"id":"72123","name":"Salinas"},"arcs":[[9796,9797,-9678,9798,-9767,9799]]},{"type":"Polygon","id":72131,"properties":{"id":"72131","name":"San Sebastian"},"arcs":[[9800,-9685,-9760,-9664,-9753,-9772,9801]]},{"type":"Polygon","id":72035,"properties":{"id":"72035","name":"Cayey"},"arcs":[[-9735,-9780,9802,-9800,-9766,-9794,-9668]]},{"type":"Polygon","id":72135,"properties":{"id":"72135","name":"Toa Alta"},"arcs":[[-9790,9803,-9706,-9750,9804,9805]]},{"type":"Polygon","id":72115,"properties":{"id":"72115","name":"Quebradillas"},"arcs":[[-9686,-9801,9806,9807]]},{"type":"Polygon","id":72054,"properties":{"id":"72054","name":"Florida"},"arcs":[[-9710,9808,-9714,9809]]},{"type":"Polygon","id":72105,"properties":{"id":"72105","name":"Naranjito"},"arcs":[[-9789,-9676,9810,-9701,-9804]]},{"type":"Polygon","id":72017,"properties":{"id":"72017","name":"Barceloneta"},"arcs":[[-9711,-9810,-9713,9811]]},{"type":"Polygon","id":72127,"properties":{"id":"72127","name":"San Juan"},"arcs":[[-9724,9812,-9671,9813,-9727,9814]]},{"type":"Polygon","id":72139,"properties":{"id":"72139","name":"Trujillo Alto"},"arcs":[[-9723,-9744,-9665,-9813]]},{"type":"Polygon","id":72057,"properties":{"id":"72057","name":"Guayama"},"arcs":[[-9779,-9762,9815,-9797,-9803]]},{"type":"Polygon","id":72153,"properties":{"id":"72153","name":"Yauco"},"arcs":[[-9695,-9787,9816,-9657,-9683,9817,-9758]]},{"type":"Polygon","id":72043,"properties":{"id":"72043","name":"Coamo"},"arcs":[[9818,9819,-9768,-9799,-9677,-9738,9820]]},{"type":"Polygon","id":72149,"properties":{"id":"72149","name":"Villalba"},"arcs":[[-9821,-9737,9821]]},{"type":"Polygon","id":72039,"arcs":[[-9782,9822,-9748,-9792,-9715,-9809,-9709]]},{"type":"Polygon","id":72113,"properties":{"id":"72113","name":"Ponce"},"arcs":[[-9740,9823,-9698,-9692,-9793,-9746]]},{"type":"Polygon","id":72107,"properties":{"id":"72107","name":"Orocovis"},"arcs":[[9824,-9819,-9822,-9742,-9745,-9823,-9781,-9703]]},{"type":"Polygon","id":72067,"properties":{"id":"72067","name":"Hormigueros"},"arcs":[[-9639,-9774,-9648]]},{"type":"Polygon","id":72071,"properties":{"id":"72071","name":"Isabela"},"arcs":[[-9807,-9802,-9771,-9785,9825]]},{"type":"Polygon","id":72007,"properties":{"id":"72007","name":"Aguas Buenas"},"arcs":[[-9670,-9796,-9673,-9788,-9728,-9814]]},{"type":"Polygon","id":72019,"properties":{"id":"72019","name":"Barranquitas"},"arcs":[[-9675,-9795,-9769,-9820,-9825,-9702,-9811]]},{"type":"Polygon","id":72093,"properties":{"id":"72093","name":"Maricao"},"arcs":[[-9759,-9818,-9682,-9635,-9647,-9662]]},{"type":"Polygon","id":72151,"properties":{"id":"72151","name":"Yabucoa"},"arcs":[[9826,9827,9828,-9776,-9733,9829]]},{"type":"Polygon","id":72137,"properties":{"id":"72137","name":"Toa Baja"},"arcs":[[-9690,-9791,-9806,9830,9831]]},{"type":"Polygon","id":78030,"properties":{"id":"78030","name":"St. Thomas"},"arcs":[[9832]]},{"type":"Polygon","id":72089,"properties":{"id":"72089","name":"Luquillo"},"arcs":[[9833,9834,9835,9836]]},{"type":"Polygon","id":72087,"properties":{"id":"72087","name":"Loiza"},"arcs":[[9837,9838,-9726,9839]]},{"type":"Polygon","id":72095,"arcs":[[9840,-9777,-9829]]},{"type":"Polygon","id":72119,"properties":{"id":"72119","name":"Rio Grande"},"arcs":[[-9836,9841,9842,9843,9844,-9838,9845]]},{"type":"Polygon","id":72103,"properties":{"id":"72103","name":"Naguabo"},"arcs":[[9846,9847,9848,9849,-9843]]},{"type":"Polygon","id":72085,"properties":{"id":"72085","name":"Las Piedras"},"arcs":[[-9850,9850,-9830,-9732,9851,9852,-9844]]},{"type":"Polygon","id":72029,"properties":{"id":"72029","name":"Canovanas"},"arcs":[[-9845,-9853,9853,-9721,-9839]]},{"type":"Polygon","id":72053,"properties":{"id":"72053","name":"Fajardo"},"arcs":[[9854,-9834,9855]]},{"type":"Polygon","id":72077,"properties":{"id":"72077","name":"Juncos"},"arcs":[[-9852,-9731,-9743,-9854]]},{"type":"Polygon","id":72037,"properties":{"id":"72037","name":"Ceiba"},"arcs":[[9856,-9847,-9842,-9835,-9855]]},{"type":"Polygon","id":72069,"properties":{"id":"72069","name":"Humacao"},"arcs":[[9857,-9827,-9851,-9849]]},{"type":"Polygon","id":72147,"properties":{"id":"72147","name":"Vieques"},"arcs":[[9858]]},{"type":"Polygon","id":78010,"properties":{"id":"78010","name":"St. Croix"},"arcs":[[9859]]},{"type":"Polygon","id":72051,"properties":{"id":"72051","name":"Dorado"},"arcs":[[-9831,-9805,-9749,9860]]}]},"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":53,"properties":{"id":"53","code":"WA","name":"Washington"},"arcs":[[[83,78,81,-22,79,-113,234,235,-352,381,382,-518,562,493,534,535,537,482,483,669,670,671,672,673,580,581,668,-637,585,586,588,454,330,221,175,222,306,264,358,261,359,308,394,357,294,184,172,185,126,2,73]],[[116]],[[117]],[[118]],[[173]],[[259]],[[291]]]},{"type":"Polygon","id":30,"properties":{"id":"30","code":"MT","name":"Montana"},"arcs":[[108,-91,106,-130,209,-219,360,-368,495,496,497,653,654,655,740,741,742,675,676,803,804,633,627,628,629,734,711,712,713,508,-500,314,315,336,-229,189,-110,33,-20,34,18,41,97,86,44,48,27,8,51]]},{"type":"Polygon","id":16,"properties":{"id":"16","code":"ID","name":"Idaho"},"arcs":[[-337,-316,-315,499,-509,-714,-713,-712,-735,-630,1094,-1147,-1146,1560,-1702,-1701,2017,2106,2072,2073,1986,1987,1862,1548,1549,-1235,-1234,-1233,1064,-944,888,-687,503,516,517,-383,-382,351,-236,-235,112,-80,21,22,19,-34,109,-190,228]]},{"type":"Polygon","id":38,"properties":{"id":"38","code":"ND","name":"North Dakota"},"arcs":[[30,62,66,55,52,-154,-153,197,-207,304,-336,390,-403,-528,531,532,605,606,611,612,609,610,511,563,601,602,603,613,-497,-496,367,-361,218,-210,129,-107,90,91,96,101,38]]},{"type":"Polygon","id":27,"properties":{"id":"27","code":"MN","name":"Minnesota"},"arcs":[[9351,123,139,192,9352,191,134,135,460,571,572,-645,771,-777,875,876,1024,-1048,1112,-1135,-1160,-1159,-1163,1340,-1392,1471,1472,1473,1480,1481,1468,1469,1470,1464,1465,1486,1487,1493,1494,1483,1484,1485,1461,1462,1458,1459,1306,-1192,1152,-1018,-1017,891,-867,816,-723,680,-532,527,402,-391,335,-305,206,-198,152,153,-53,58,104]]},{"type":"MultiPolygon","id":23,"properties":{"id":"23","code":"ME","name":"Maine"},"arcs":[[[894,577,1090,1252,1256,1360,1258,1107,1361,1350,1359,1352,1506,1507,-1270,863,864,865,794,547,347,790]],[[892]],[[893]]]},{"type":"MultiPolygon","id":26,"properties":{"id":"26","code":"MI","name":"Michigan"},"arcs":[[[463,464,465,421,9362,433,9366,9368,472,9377,9374,9375,9379,554,9369,690,691,617,618,567,568,569]],[[9388,1048,1208,9389,1403,1529,9390,1546,9391,1893,9392,9396,-2469,2245,2246,2257,2258,2259,2254,2255,2260,2261,2263,2264,2168,2169,2170,2116,1954,1753,1654,1502,1348,1197,1085,9386,9387,922,9382,9381,748,797]],[[9360,9363]],[[9361]],[[9372]],[[9373]],[[9378]],[[9383]],[[9384]],[[-2473,2472,9394]],[[2470,-2471,9395]]]},{"type":"MultiPolygon","id":55,"properties":{"id":"55","code":"WI","name":"Wisconsin"},"arcs":[[[-569,-568,-619,-618,-692,9370,854,855,856,1128,1140,9371,1138,1259,1443,1591,1767,1926,1992,1993,1994,1924,1925,1917,1918,1912,1913,1932,1933,1745,1746,1747,1663,-1623,1533,-1472,1391,-1341,1162,1158,1159,1134,-1113,1047,-1025,-877,-876,776,-772,644,-573,-572,-461,-136,9354,9356,9357,541,-465,-464,-570]],[[9358]]]},{"type":"Polygon","id":41,"properties":{"id":"41","code":"OR","name":"Oregon"},"arcs":[[636,-669,-582,-581,-674,-673,-672,-671,-670,-484,-483,-538,-536,-535,-494,-563,-517,-504,686,-889,943,-1065,1232,1233,1234,1235,1396,1397,1570,1571,1567,1568,1847,1939,1940,1858,1859,1579,1433,1268,954,753,600,639,-586]]},{"type":"Polygon","id":46,"properties":{"id":"46","code":"SD","name":"South Dakota"},"arcs":[[-512,-611,-610,-613,-612,-607,-606,-533,-681,722,-817,866,-892,1016,1017,-1153,1191,-1307,-1460,1489,-1620,1627,-1725,1798,1799,1800,1801,1803,1804,1775,1776,1778,1638,1639,1648,1649,1520,1677,1676,1540,1541,1650,1651,-1611,1456,-1344,1220,1156,-1007,913,-655,-654,-498,-614,-604,-603,-602,-564]]},{"type":"Polygon","id":33,"properties":{"id":"33","code":"NH","name":"New Hampshire"},"arcs":[[-1508,1583,1715,1716,1748,1749,1750,1772,1773,-1721,1582,-1425,1241,1242,-1088,-970,873,874,-865,-864,1269]]},{"type":"Polygon","id":50,"properties":{"id":"50","code":"VT","name":"Vermont"},"arcs":[[972,-874,969,1087,-1243,-1242,1424,-1583,1720,1721,1703,1704,1705,-1514,1453,1265,-1177,1104,-977,974,975,968,982]]},{"type":"MultiPolygon","id":36,"properties":{"id":"36","code":"NY","name":"New York"},"arcs":[[[1176,-1266,-1454,1513,-1706,1852,-1966,-1965,2248,2249,-2514,-2513,2715,3009,3060,3011,2714,2592,2733,2731,2732,2531,2532,2533,2288,2289,2058,2118,2119,2121,2122,2154,2155,2021,2022,2053,2054,2050,2051,2025,2026,2027,1797,1684,1681,1689,1692,1669,1538,1249,1250,1251,993,1005,979,-975,976,-1105]],[[1793]],[[3017,3084,3116,3086,3019,2745,3015,3016]],[[-3083,3082,9861]],[[3201]]]},{"type":"Polygon","id":56,"properties":{"id":"56","code":"WY","name":"Wyoming"},"arcs":[[-676,-743,-742,-741,-656,-914,1006,-1157,-1221,1343,-1457,1610,1611,-1828,2011,2012,-2506,2514,2515,2516,2104,2105,2099,2100,2101,2159,2160,2161,2583,-2308,1699,1700,1701,-1561,1145,1146,-1095,-629,-628,-634,-805,-804,-677]]},{"type":"Polygon","id":19,"properties":{"id":"19","code":"IA","name":"Iowa"},"arcs":[[-1470,-1469,-1482,-1481,-1474,-1473,-1534,1622,-1664,-1748,-1747,1988,-2063,2124,-2196,2277,2278,-2416,-2415,-2414,2680,-2730,2884,-2890,3080,3081,3041,3042,3044,3045,3056,3057,3054,3055,3051,3052,3048,3049,3038,3039,3035,3036,3032,3033,-2897,2843,-2792,2622,2623,-2507,2380,-2269,2173,-2157,2030,2031,-1800,-1799,1724,-1628,1619,-1490,-1459,-1463,-1462,-1486,-1485,-1484,-1495,-1494,-1488,-1487,-1466,-1465,-1471]]},{"type":"Polygon","id":31,"properties":{"id":"31","code":"NE","name":"Nebraska"},"arcs":[[1827,-1612,-1652,-1651,-1542,-1541,-1677,-1678,-1521,-1650,-1649,-1640,-1639,-1779,-1777,-1776,-1805,-1804,-1802,-1801,-2032,-2031,2156,-2174,2268,-2381,2506,-2624,-2623,2791,-2844,2896,-3034,3093,-3238,3267,3448,3449,3450,3451,3446,3447,3279,3280,3388,3387,3377,3378,3370,3371,3373,3374,3393,3394,3383,3384,3389,3390,3392,3380,3381,-3326,3157,-3105,2933,2934,2785,2663,2664,2694,2695,-2515,2505,-2013,-2012]]},{"type":"MultiPolygon","id":25,"properties":{"id":"25","code":"MA","name":"Massachusetts"},"arcs":[[[1971,1972,1973,2083,2132,2143,2130,2139,2252,2141,2213,2214,2215,2216,2217,2135,1980,1981,1982,2136,2137,2138,1963,1964,1965,-1853,-1705,-1704,-1722,-1774,-1773,-1751,-1750,-1749,-1717,1900,2085]],[[2595]],[[2690]]]},{"type":"Polygon","id":17,"properties":{"id":"17","code":"IL","name":"Illinois"},"arcs":[[-1913,-1919,-1918,-1926,-1925,-1995,-1994,2081,2199,2200,2474,-2497,2737,-2788,2919,-3120,3287,3288,-3508,3688,-3883,3990,-4139,4203,-4411,-4410,4649,-4671,4881,-4905,5113,-5149,5335,5336,5338,-5470,5539,5551,5552,5545,5546,5547,-5328,-5327,-5138,5103,4910,4911,4691,4692,-4422,-4421,-4488,4346,4347,4348,4131,4034,4035,-3893,3711,3712,-3646,3477,-3455,3205,3206,-3081,2889,-2885,2729,-2681,2413,2414,2415,-2279,-2278,2195,-2125,2062,-1989,-1746,-1934,-1933,-1914]]},{"type":"Polygon","id":42,"properties":{"id":"42","code":"PA","name":"Pennsylvania"},"arcs":[[-2051,-2055,-2054,-2023,-2022,-2156,-2155,-2123,-2122,-2120,-2119,-2059,-2290,-2289,-2534,2565,-2720,2776,-2876,-2875,-3090,3216,3217,-3488,3515,3546,3547,-3549,3549,3458,3459,3409,3410,3460,3461,3462,3544,3545,3418,3419,3497,3498,3406,3421,3422,3508,3509,3510,3571,3572,-3571,3301,3302,3303,-3208,3069,-2997,2868,-2862,2637,-2630,2410,-2362,2165,2166,-2027,-2026,-2052]]},{"type":"Polygon","id":9,"properties":{"id":"9","code":"CT","name":"Connecticut"},"arcs":[[-2137,-1983,-1982,2281,2282,-2421,2490,2491,2523,2525,-2522,2526,2511,2512,2513,-2250,-2249,-1964,-2139,-2138]]},{"type":"MultiPolygon","id":44,"properties":{"id":"44","code":"RI","name":"Rhode Island"},"arcs":[[[2416,2285,2418,2517,-2491,2420,-2283,-2282,-1981,-2136,-2218,-2217]],[[2508]],[[2509,-2215]]]},{"type":"MultiPolygon","id":6,"properties":{"id":"6","code":"CA","name":"California"},"arcs":[[[-1572,2347,-2359,-2358,-2357,-2356,4095,4096,-4275,-4274,-4273,-3766,-4289,4534,-4740,-4220,5443,-5899,6502,6503,-7283,-7282,-7702,7715,7672,7495,7030,6995,6876,6510,5861,5585,5267,5171,5264,5415,5133,4992,4822,4518,4663,4437,4662,4439,4447,4816,4449,3587,2648,2337,-1859,-1941,-1940,-1848,-1569,-1568]],[[6873]],[[6874]],[[6994]],[[7027]],[[7028]]]},{"type":"Polygon","id":49,"properties":{"id":"49","code":"UT","name":"Utah"},"arcs":[[-1700,2307,-2584,-2162,-2161,-2946,-2945,3061,3062,-3540,3988,-4595,4713,4714,4715,4716,4717,4718,5392,5393,5319,-4590,-4589,-4588,3960,-3525,-3524,2883,-2326,2320,-1987,-2074,-2073,-2107,-2018]]},{"type":"Polygon","id":32,"properties":{"id":"32","code":"NV","name":"Nevada"},"arcs":[[-1397,-1236,-1550,-1549,-1863,-1988,-2321,2325,-2884,3523,3524,-3961,4587,4588,4589,4590,5897,5898,-5444,4219,4739,-4535,4288,3765,4272,4273,4274,-4097,-4096,2355,2356,2357,2358,-2348,-1571,-1398]]},{"type":"Polygon","id":39,"properties":{"id":"39","code":"OH","name":"Ohio"},"arcs":[[-2638,2861,-2869,2996,2997,-3210,3226,3227,-3482,3490,-3570,3698,3699,3857,3858,3859,3955,-4033,4193,4191,4329,4330,4460,4461,4462,4463,4338,4339,4316,4317,4146,4147,4124,4125,4126,4101,4102,4103,4104,3895,-3773,3676,-3576,3367,3368,-3256,3131,-3003,2981,-2758,-2757,2679,-2585,2502,-2435,-2259,-2258,-2247,-2246,2468,2469,2470,2471,2472,2473,2478,2479,2480,2632,2558,2599,2544,2407,2365,-2166,2361,-2411,2629]]},{"type":"Polygon","id":18,"properties":{"id":"18","code":"IN","name":"Indiana"},"arcs":[[-2255,-2260,2434,-2503,2584,-2680,2756,2757,-2982,3002,-3132,3255,-3369,-3368,3575,-3677,3772,-3896,-4105,4110,-4231,-4230,4390,4391,4399,4400,-4523,4625,4626,4775,4768,4769,4770,4765,4868,4869,4870,4928,4929,4898,4899,4948,4902,4903,4904,-4882,4670,-4650,4409,4410,-4204,4138,-3991,3882,-3689,3507,-3289,-3288,3119,-2920,2787,-2738,2496,-2475,-2201,2497,2499,2431,-2170,-2169,-2265,-2264,-2262,-2261,-2256]]},{"type":"Polygon","id":34,"properties":{"id":"34","code":"NJ","name":"New Jersey"},"arcs":[[-2732,2860,3079,3029,3120,3220,3309,3493,3483,3769,4090,3909,3748,3907,3751,3713,3752,3715,3753,3687,3629,3486,3487,-3218,-3217,3089,2874,2875,-2777,2719,-2566,-2533,-2532,-2733]]},{"type":"Polygon","id":8,"properties":{"id":"8","code":"CO","name":"Colorado"},"arcs":[[-2516,-2696,-2695,-2665,-2664,-2786,-2935,-2934,3104,-3158,3325,3326,-3581,3903,3904,-4242,4321,-4558,-4557,4854,4855,-5223,5293,5294,5295,5185,5186,5283,5284,5488,5489,5474,5475,5299,5297,-4716,-4715,-4714,4594,-3989,3539,-3063,-3062,2944,2945,-2160,-2102,-2101,-2100,-2106,-2105,-2517]]},{"type":"Polygon","id":54,"properties":{"id":"54","code":"WV","name":"West Virginia"},"arcs":[[-3511,-3510,-3787,-3786,-3785,-3783,-3782,-3781,-3779,-3778,-3777,3986,3987,3873,3828,3961,-4007,4153,4154,4367,4368,4369,4500,4501,-4854,4858,-5100,5251,5252,5157,5352,5353,5354,5387,5388,5077,5078,5079,4773,4774,-4710,-4462,-4461,-4331,-4330,-4192,-4194,4032,-3956,-3860,-3859,-3858,-3700,-3699,3569,-3491,3481,-3228,-3227,3209,-2998,-3070,3207,-3304,-3303,-3302,3570,-3573,-3572]]},{"type":"Polygon","id":29,"properties":{"id":"29","code":"MO","name":"Missouri"},"arcs":[[-3478,3645,-3713,-3712,3892,-4036,-4035,-4132,-4349,-4348,-4347,4487,4420,4421,-4693,-4692,-4912,-4911,-5104,5137,5326,5327,-5548,-5547,-5611,5686,5687,5688,5884,5885,5886,5887,-6087,6147,6148,5955,5956,5957,5958,5848,5901,5902,5873,5874,5875,5695,5914,5915,5916,5904,5905,5906,5793,5822,5823,5920,5921,-5745,5699,-5535,5521,-5278,-5277,5016,5017,-4791,4738,-4513,4466,-4314,4162,4163,4009,3964,3965,-3849,3725,-3626,3522,3453,-3449,-3268,3237,-3094,-3033,-3037,-3036,-3040,-3039,-3050,-3049,-3053,-3052,-3056,-3055,-3058,-3057,-3046,-3045,-3043,-3042,-3082,-3207,-3206,3454]]},{"type":"Polygon","id":20,"properties":{"id":"20","code":"KS","name":"Kansas"},"arcs":[[-3391,-3390,-3385,-3384,-3395,-3394,-3375,-3374,-3372,-3371,-3379,-3378,-3388,-3389,-3281,-3280,-3448,-3447,-3452,-3451,-3450,-3454,-3523,3625,-3726,3848,-3966,-3965,-4010,-4164,-4163,4313,-4467,4512,-4739,4790,-5018,-5017,5276,5277,-5522,5534,5535,5536,5509,5510,5501,5502,5570,5571,5423,5424,5426,5427,5504,5505,5436,5437,5506,5507,5433,5434,5430,5498,5499,5497,5494,5495,-5294,5222,-4856,-4855,4556,4557,-4322,4241,-3905,-3904,3580,-3327,-3382,-3381,-3393]]},{"type":"MultiPolygon","id":10,"properties":{"id":"10","code":"DE","name":"Delaware"},"arcs":[[[3713,-3714,3714]],[[3715,-3716,3716]],[[4066,4067,-4043,3719,3720,-3459,-3550,3548,-3548,3717,4068,4359,4360,4361,4362,4363,4364,-4232]]]},{"type":"MultiPolygon","id":24,"properties":{"id":"24","code":"MD","name":"Maryland"},"arcs":[[[-3462,-3461,-3411,-3410,-3460,-3721,-3720,4042,-4068,-4067,4231,-4365,-4364,-4363,4754,4751,4752,4833,4656,4547,4233,4375,4135,4044,3788,3798,3804,4054,4158,-4053,4159,4488,4258,4579,4696,4581,4260,4261,4080,4081,4082,3813,3775,3776,3777,3778,3780,3781,3782,3784,3785,3786,-3509,-3423,-3422,-3407,-3499,-3498,-3420,-3419,-3546,-3545,-3463]],[[4132]],[[4748,-4749,4749]],[[-4361,4360,4750]],[[4825,-4826,4826]],[[4827,4828,4829]],[[4830,4831,4832]]]},{"type":"MultiPolygon","id":51,"properties":{"id":"51","code":"VA","name":"Virginia"},"arcs":[[[-3987,-3776,-3814,-4083,-4082,-4354,4385,4467,4307,4376,4635,4780,4842,5041,5166,4979,4841,4777,4956,5203,5347,5401,5349,5086,5126,5306,5451,5514,5635,5663,5616,5450,5408,5260,5371,5555,5560,5604,5646,5858,5854,5890,5851,5802,5891,5833,5804,5834,5827,5828,5829,5830,5831,5892,5893,5856,5857,5780,5781,5782,5862,5703,5704,5867,5868,5869,5691,5692,5693,5651,5948,5653,5654,5894,5895,5882,5883,5836,5910,5911,5912,5913,5844,5845,5953,5841,5876,5877,5878,5865,5866,-5808,-5707,5620,-5591,-5214,-5213,-5212,-5078,-5389,-5388,-5355,-5354,-5353,-5158,-5253,-5252,5099,-4859,4853,-4502,-4501,-4370,-4369,-4368,-4155,-4154,4006,-3962,-3829,-3874,-3988]],[[4827,-4828,5033]],[[4831,-4832,5034]],[[5036,-4752,5037,5382]],[[5825,5826]]]},{"type":"MultiPolygon","id":21,"properties":{"id":"21","code":"KY","name":"Kentucky"},"arcs":[[[-4102,-4127,-4126,-4125,-4148,-4147,-4318,-4317,-4340,-4339,-4464,-4463,4709,-4775,-4774,-5080,-5079,5211,5212,5213,5590,-5621,5706,5807,5808,5797,5798,5805,5806,5785,5786,5870,5871,5816,5899,5900,5819,5820,5879,5880,5676,5678,5679,5639,5640,5717,5922,5923,5812,5813,5917,5918,5943,5944,-5885,-5689,-5688,-5687,5610,-5546,-5553,-5552,-5540,5469,-5339,-5337,-5336,5148,-5114,-4904,-4903,-4949,-4900,-4899,-4930,-4929,-4871,-4870,-4869,-4766,-4771,-4770,-4769,-4776,-4627,-4626,4522,-4401,-4400,-4392,-4391,4229,4230,-4111,-4104,-4103]],[[5886,-5887,5942]]]},{"type":"Polygon","id":11,"properties":{"id":"11","code":"DC","name":"District of Columbia"},"arcs":[[4352,4353,-4081,-4262]]},{"type":"Polygon","id":4,"properties":{"id":"4","code":"AZ","name":"Arizona"},"arcs":[[-5758,5758,5759,5760,-7152,7569,7570,-8010,8177,8470,8160,7700,7701,7281,7282,-6504,-6503,-5898,-4591,-5320,-5394,-5393,-4719,-4718,-4717]]},{"type":"Polygon","id":40,"properties":{"id":"40","code":"OK","name":"Oklahoma"},"arcs":[[-5537,-5536,-5700,5744,-5922,5930,-6104,-6240,6299,-6533,6591,-6708,6753,6754,-7094,7206,7207,7208,7209,7377,7378,7374,7375,7376,7356,7416,7417,7418,7314,7315,7204,7205,7114,7115,7009,7010,6907,6908,-6848,6671,-6608,6383,-6351,6001,6002,5777,5778,5773,5774,5775,5770,5771,-5764,-5295,-5496,-5495,-5498,-5500,-5499,-5431,-5435,-5434,-5508,-5507,-5438,-5437,-5506,-5505,-5428,-5427,-5425,-5424,-5572,-5571,-5503,-5502,-5511,-5510]]},{"type":"Polygon","id":35,"properties":{"id":"35","code":"NM","name":"New Mexico"},"arcs":[[-5284,-5187,-5186,-5296,5763,5764,5765,-6357,6536,6537,-6841,6983,6984,7131,7132,-7539,7629,7630,7631,7632,7633,7939,7940,7941,7758,7759,7760,7863,7864,8080,8008,8009,-7571,-7570,7151,-5761,-5760,-5759,5757,-5298,-5300,-5476,-5475,-5490,-5489,-5285]]},{"type":"Polygon","id":47,"properties":{"id":"47","code":"TN","name":"Tennessee"},"arcs":[[-5679,-5677,-5881,-5880,-5821,-5820,-5901,-5900,-5817,-5872,-5871,-5787,-5786,-5807,-5806,-5799,-5798,-5809,-5867,-5866,-5879,-5878,-5877,-5842,-5954,-5846,-5845,-5914,5969,5970,5971,6069,6070,6214,6215,6216,6159,6269,6270,6375,6376,6439,6440,6575,6576,-6804,6806,6807,6773,6774,6698,6699,6700,6785,6786,6770,6771,6764,6765,6703,6704,6693,6678,6732,6733,6734,6752,6720,6721,6722,6750,6751,6746,6747,-6715,6586,-6395,-6394,-6393,-6392,6258,-6148,6086,-5888,-5887,-5886,-5945,-5944,-5919,-5918,-5814,-5813,-5924,-5923,-5718,-5641,-5640,-5680]]},{"type":"MultiPolygon","id":37,"properties":{"id":"37","code":"NC","name":"North Carolina"},"arcs":[[[-5911,-5837,-5884,-5883,-5896,-5895,-5655,-5654,-5949,-5652,-5694,-5693,-5692,-5870,-5869,-5868,-5705,-5704,-5863,-5783,-5782,-5781,-5858,-5857,-5894,-5893,-5832,6026,6034,6073,6164,6179,6023,6043,6231,6416,6410,6564,6243,6565,6546,6475,6542,6784,6741,6811,6739,6870,6965,7087,7246,-7086,7247,7255,7256,7257,7258,7227,6980,6981,6982,6905,6854,6825,6826,6830,6831,6656,6657,6736,6626,6627,6611,6612,6748,6749,6675,6729,6730,6731,6651,6652,6781,6860,6861,6862,6801,6802,6803,-6577,-6576,-6441,-6440,-6377,-6376,-6271,-6270,-6160,-6217,-6216,-6215,-6071,-6070,-5972,-5971,-5970,-5913,-5912]],[[6029,-5828,6027,6244]],[[6030,5825,6031,5829]],[[6241,6240]],[[7253,-7254,7254]]]},{"type":"MultiPolygon","id":48,"properties":{"id":"48","code":"TX","name":"Texas"},"arcs":[[[-5772,-5771,-5776,-5775,-5774,-5779,-5778,-6003,-6002,6350,-6384,6607,-6672,6847,-6909,-6908,-7011,-7010,-7116,-7115,-7206,-7205,-7316,-7315,-7419,-7418,-7417,-7357,-7377,-7376,-7375,-7379,-7378,-7210,-7209,-7490,7587,-7622,7793,-7882,-7881,-7880,8191,-8207,8371,-8424,-8423,-8617,8657,8658,-8914,8963,8987,8988,9065,9108,9067,8991,9107,9109,9152,9193,9141,9196,9143,9144,9145,9156,9195,9206,9226,9190,9227,9208,9222,9232,9225,9233,9234,9235,9252,9273,9303,9334,9339,9331,9328,9292,9231,9167,9104,8944,8844,8841,8854,8358,8360,-7864,-7761,-7760,-7759,-7942,-7941,-7940,-7634,-7633,-7632,-7631,-7630,7538,-7133,-7132,-6985,-6984,6840,-6538,-6537,6356,-5766,-5765]],[[9105]],[[9192,9191]],[[9221]],[[9298,9271,-9249,9272,9299]],[[9250]],[[9295,9293,9332]],[[9296,9297]]]},{"type":"Polygon","id":5,"properties":{"id":"5","code":"AR","name":"Arkansas"},"arcs":[[-5794,-5907,-5906,-5905,-5917,-5916,-5915,-5696,-5876,-5875,-5874,-5903,-5902,-5849,-5959,-5958,-5957,-5956,-6149,-6259,6391,6392,6393,6394,-6587,6714,6715,6716,6990,-7002,7107,7108,-7391,-7390,7638,7639,7640,7641,7642,7752,7769,7770,7708,7709,7694,7695,7619,7620,7621,-7588,7489,-7208,-7207,7093,-6755,-6754,6707,-6592,6532,-6300,6239,6103,-5931,-5921,-5824,-5823]]},{"type":"MultiPolygon","id":45,"properties":{"id":"45","code":"SC","name":"South Carolina"},"arcs":[[[-6612,-6628,-6627,-6737,-6658,-6657,-6832,-6831,-6827,-6826,-6855,-6906,-6983,-6982,-6981,-7228,-7259,7305,7566,9399,7668,9397,-7836,9398,7838,8050,8017,8018,8019,8020,8021,8047,8023,8024,8025,7872,-7867,7842,-7796,7685,7516,7517,7458,7459,7412,7413,-7317,7230,7033,7034,6896,6897,6898,6899,6900,-6652,-6732,-6731,-6730,-6676,-6750,-6749,-6613]],[[-7257,7256,7304]],[[-7565,7564,9862]],[[8046]],[[8048]],[[8049]]]},{"type":"MultiPolygon","id":1,"properties":{"id":"1","code":"AL","name":"Alabama"},"arcs":[[[6914,-6733,-6679,-6694,-6705,-6704,-6766,-6765,-6772,-6771,-6787,6950,-6969,-6973,7002,-7143,-7146,7180,-7396,7468,7469,-7550,7673,7674,-7820,7846,-7989,8030,-8080,-8126,8163,-8260,8287,8288,-8449,8449,-8549,8646,8647,8654,8655,8656,8536,8537,8649,8650,8651,8641,8642,8643,8644,8667,8668,8669,-8587,8487,-8402,8218,8219,-8096,7926,7927,-7800,7653,-7577,7424,-7397,7278,-7232,7154,-6928,-6931]]]},{"type":"MultiPolygon","id":13,"properties":{"id":"13","code":"GA","name":"Georgia"},"arcs":[[[-6899,-6898,-6897,-7035,-7034,-7231,7316,-7414,-7413,-7460,-7459,-7518,-7517,-7686,7795,-7843,7866,-7873,-8026,-8025,8252,8247,8302,8493,8575,-8491,8576,8671,8672,8711,8712,8569,8661,8662,8798,8799,8726,8727,8728,8704,8705,8707,8708,8701,8702,8698,8709,8710,-8647,8548,-8450,8448,-8289,-8288,8259,-8164,8125,8079,-8031,7988,-7847,7819,-7675,-7674,7549,-7470,-7469,7395,-7181,7145,7142,-7003,6972,6968,-6951,-6786,-6701,-6700,-6699,-6775,-6774,-6808,-6807,-6803,-6802,-6863,-6862,-6861,-6782,-6653,-6901,-6900]],[[8250]],[[8251]],[[8299]],[[-8489,8574]],[[8492]],[[8670]]]},{"type":"Polygon","id":28,"properties":{"id":"28","code":"MS","name":"Mississippi"},"arcs":[[-6721,-6753,-6735,-6734,-6915,6930,6927,-7155,7231,-7279,7396,-7425,7576,-7654,7799,-7928,-7927,8095,-8220,-8219,8401,-8488,8586,-8670,-8669,8810,8833,8851,-8819,8735,8736,8598,8630,8628,8629,8624,8625,8626,8612,8613,-8459,-8458,-8244,-8243,-8242,8074,8075,8076,8077,-7916,7899,-7640,-7639,7389,7390,-7109,-7108,7001,-6991,-6717,-6716,-6748,-6747,-6752,-6751,-6723,-6722]]},{"type":"MultiPolygon","id":22,"properties":{"id":"22","code":"LA","name":"Louisiana"},"arcs":[[[7879,7880,7881,-7794,-7621,-7620,-7696,-7695,-7710,-7709,-7771,-7770,-7753,-7643,-7642,-7641,-7900,7915,-8078,-8077,-8076,-8075,8241,8242,8243,8457,8458,-8614,-8613,-8627,-8626,-8625,-8630,-8629,-8631,-8599,-8737,-8736,8818,8819,8981,9002,8999,9000,9064,8974,9059,-8971,9053,9054,9055,9056,9057,9083,9044,9023,9011,9034,-8988,-8964,8913,-8659,-8658,8616,8422,8423,-8372,8206,-8192]],[[-9864,8997,8996],[8998,-8999,9864],[8995,-8996,9865]],[[9020]],[[-9052,9051,9866]],[[9063]],[[9082]]]},{"type":"MultiPolygon","id":12,"properties":{"id":"12","code":"FL","name":"Florida"},"arcs":[[[-8703,-8702,-8709,-8708,-8706,-8705,-8729,-8728,-8727,-8800,-8799,-8663,-8662,-8570,-8713,-8712,-8673,8807,8877,8984,9074,9116,9138,9129,9073,8960,8874,8961,8956,8957,9090,9130,9181,-9123,9182,9125,9177,9255,9278,9279,9280,9311,9306,9307,9308,9309,9318,9340,9347,9342,9343,9344,9345,9349,9338,9326,9317,9284,9315,9286,9266,9241,9239,9214,9200,9170,9113,9114,9350,8936,8837,8937,9039,8977,9038,8979,8884,8980,8886,8777,-8768,8778,8770,8761,8755,-8642,-8652,-8651,-8650,-8538,-8537,-8657,-8656,-8655,-8648,-8711,-8710,-8699]],[[8757,-8754,8758,8759]],[[8876,8962]],[[9094,8954,9092,9093]],[[9037]],[[-9257,9256,9867]],[[-9277,9276,9868]],[[9314]],[[9324]],[[-9349]]]},{"type":"MultiPolygon","id":15,"properties":{"id":"15","code":"HI","name":"Hawaii"},"arcs":[[[-9401,9405]],[[9402]],[[9403]],[[9404]],[[9406]],[[9407]],[[9408]],[[9409]]]},{"type":"MultiPolygon","id":2,"properties":{"id":"2","code":"AK","name":"Alaska"},"arcs":[[[9410]],[[9411]],[[9412]],[[9413]],[[9414]],[[9415]],[[9416]],[[9417]],[[9418]],[[9419]],[[9420]],[[9421]],[[9422]],[[9423]],[[9424]],[[9425]],[[9426]],[[9427]],[[9428]],[[9429]],[[9430]],[[9431]],[[9432]],[[9433]],[[9434]],[[9435]],[[9436]],[[9437]],[[9438]],[[9439]],[[9440]],[[9441]],[[9442]],[[9443]],[[9444]],[[9445]],[[9447,9464,9452,9465,9459,9554,9455,9555,9546,9617,9613,9611,9601,9608,9589,9599,9524,9535,9530,9533,9489,9517,9506,9633,9508,9515,-9481,9516,9491,9492,9493,9531,9496,9532,9528,9534,9526,9600,9591,9595,9585,9596,9578,9597,9568,9558,9598,9479,9477,9463,9449,9446]],[[9450]],[[9451]],[[9454]],[[9460]],[[9467]],[[9468]],[[9469]],[[9470]],[[9471]],[[9472]],[[9473]],[[9474]],[[9475]],[[9476]],[[9487,9518,-9483,9519,9485,9522]],[[9488]],[[9497]],[[-9499,9537]],[[9500]],[[9501]],[[9502]],[[9503]],[[9504]],[[9505]],[[9539,9511,9512,9513,9538,9521]],[[9514]],[[9536]],[[9540]],[[9541]],[[9542]],[[9547]],[[9548]],[[9549]],[[9550]],[[9569]],[[9570]],[[9571]],[[9572]],[[9573]],[[9574]],[[9575]],[[9576]],[[9579]],[[9580]],[[-9582,9581,9869]],[[9583]],[[9586]],[[9592]],[[9593]],[[9594]],[[9609]],[[9614]],[[9615]],[[9616]],[[9618]],[[9619]],[[9620]],[[9621]],[[9622]],[[9623]],[[9624]],[[9625]],[[9626]],[[9627]],[[9628]],[[9629]],[[9630]],[[9631]],[[9632]]]},{"type":"MultiPolygon","id":72,"properties":{"id":"72","code":"PR","name":"Puerto Rico"},"arcs":[[[9774,9649,9753,9782,9643,9783,9825,9807,9686,9655,9716,9811,9711,9719,9751,9860,9831,9690,9729,9814,9724,9839,9845,9836,9855,9856,9847,9857,9827,9840,9777,9760,9815,9797,9678,9738,9823,9698,9785,9816,9657,9763]],[[9858]]]},{"type":"MultiPolygon","id":78,"properties":{"id":"78","code":"VI","name":"Virgin Islands of the United States"},"arcs":[[[9832]],[[9859]]]}]},"land":{"type":"MultiPolygon","arcs":[[[5830,6026,6034,6073,6164,6179,6023,6043,6231,6416,6410,6564,6243,6565,6546,6475,6542,6784,6741,6811,6739,6870,6965,7087,7246,-7086,7247,7255,7256,7257,7305,7566,9399,7668,9397,-7836,9398,7838,8050,8017,8018,8019,8020,8021,8047,8023,8252,8247,8302,8493,8575,-8491,8576,8671,8807,8877,8984,9074,9116,9138,9129,9073,8960,8874,8961,8956,8957,9090,9130,9181,-9123,9182,9125,9177,9255,9278,9279,9280,9311,9306,9307,9308,9309,9318,9340,9347,9342,9343,9344,9345,9349,9338,9326,9317,9284,9315,9286,9266,9241,9239,9214,9200,9170,9113,9114,9350,8936,8837,8937,9039,8977,9038,8979,8884,8980,8886,8777,-8768,8778,8770,8761,8755,8642,8643,8644,8667,8810,8833,8851,8819,8981,9002,8999,9000,9064,8974,9059,-8971,9053,9054,9055,9056,9057,9083,9044,9023,9011,9034,8988,9065,9108,9067,8991,9107,9109,9152,9193,9141,9196,9143,9144,9145,9156,9195,9206,9226,9190,9227,9208,9222,9232,9225,9233,9234,9235,9252,9273,9303,9334,9339,9331,9328,9292,9231,9167,9104,8944,8844,8841,8854,8358,8360,7864,8080,8008,8177,8470,8160,7700,7715,7672,7495,7030,6995,6876,6510,5861,5585,5267,5171,5264,5415,5133,4992,4822,4518,4663,4437,4662,4439,4447,4816,4449,3587,2648,2337,1859,1579,1433,1268,954,753,600,639,586,588,454,330,221,175,222,306,264,358,261,359,308,394,357,294,184,172,185,126,2,73,83,78,81,22,34,18,41,97,86,44,48,27,8,51,108,91,96,101,38,30,62,66,55,58,104,9351,123,139,192,9352,191,134,9354,9356,9357,541,465,421,9362,433,9366,9368,472,9377,9374,9375,9379,554,9369,690,9370,854,855,856,1128,1140,9371,1138,1259,1443,1591,1767,1926,1992,2081,2199,2497,2499,2431,2170,2116,1954,1753,1654,1502,1348,1197,1085,9386,9387,922,9382,9381,748,797,9388,1048,1208,9389,1403,1529,9390,1546,9391,1893,9392,9396,2469,2470,2471,2472,2473,2478,2479,2480,2632,2558,2599,2544,2407,2365,2166,2027,1797,1684,1681,1689,1692,1669,1538,1249,1250,1251,993,1005,979,975,968,982,972,874,865,794,547,347,790,894,577,1090,1252,1256,1360,1258,1107,1361,1350,1359,1352,1506,1583,1715,1900,2085,1971,1972,1973,2083,2132,2143,2130,2139,2252,2141,2213,2509,2215,2416,2285,2418,2517,2491,2523,2525,-2522,2526,2511,2715,3009,3060,3011,2714,2592,2733,2860,3079,3029,3120,3220,3309,3493,3483,3769,4090,3909,3748,3907,3751,3713,3752,3715,3753,3687,3629,3486,3515,3546,3717,4068,4359,4360,4361,4754,5037,5382,5036,4752,4833,4656,4547,4233,4375,4135,4044,3788,3798,3804,4054,4158,-4053,4159,4488,4258,4579,4696,4581,4260,4352,4385,4467,4307,4376,4635,4780,4842,5041,5166,4979,4841,4777,4956,5203,5347,5401,5349,5086,5126,5306,5451,5514,5635,5663,5616,5450,5408,5260,5371,5555,5560,5604,5646,5858,5854,5890,5851,5802,5891,5833,5804,5834,6027,6244,6029,5828,5829],[-5826,-5827]],[[116]],[[117]],[[118]],[[173]],[[259]],[[291]],[[892]],[[893]],[[9360,9363]],[[9361]],[[9372]],[[9373]],[[9378]],[[9383]],[[9384]],[[9358]],[[1793]],[[3017,3084,3116,3086,3019,2745,3015,3016]],[[-3083,3082,9861]],[[3201]],[[2595]],[[2690]],[[2508]],[[6873]],[[6874]],[[6994]],[[7027]],[[7028]],[[4132]],[[4828,4829,4827]],[[4832,4830,4831]],[[6241,6240]],[[9105]],[[9192,9191]],[[9221]],[[9298,9271,-9249,9272,9299]],[[9250]],[[9295,9293,9332]],[[9296,9297]],[[-7565,7564,9862]],[[8046]],[[8048]],[[8049]],[[8250]],[[8251]],[[8299]],[[-8489,8574]],[[8492]],[[8670]],[[-9864,-8999,-8996],[-8997,8996,9865]],[[9020]],[[-9052,9051,9866]],[[9063]],[[9082]],[[8757,-8754,8758,8759]],[[8876,8962]],[[9094,8954,9092,9093]],[[9037]],[[-9257,9256,9867]],[[-9277,9276,9868]],[[9314]],[[9324]],[[-9349]],[[-9401,9405]],[[9402]],[[9403]],[[9404]],[[9406]],[[9407]],[[9408]],[[9409]],[[9410]],[[9411]],[[9412]],[[9413]],[[9414]],[[9415]],[[9416]],[[9417]],[[9418]],[[9419]],[[9420]],[[9421]],[[9422]],[[9423]],[[9424]],[[9425]],[[9426]],[[9427]],[[9428]],[[9429]],[[9430]],[[9431]],[[9432]],[[9433]],[[9434]],[[9435]],[[9436]],[[9437]],[[9438]],[[9439]],[[9440]],[[9441]],[[9442]],[[9443]],[[9444]],[[9445]],[[9447,9464,9452,9465,9459,9554,9455,9555,9546,9617,9613,9611,9601,9608,9589,9599,9524,9535,9530,9533,9489,9517,9506,9633,9508,9515,-9481,9516,9491,9492,9493,9531,9496,9532,9528,9534,9526,9600,9591,9595,9585,9596,9578,9597,9568,9558,9598,9479,9477,9463,9449,9446]],[[9450]],[[9451]],[[9454]],[[9460]],[[9467]],[[9468]],[[9469]],[[9470]],[[9471]],[[9472]],[[9473]],[[9474]],[[9475]],[[9476]],[[9487,9518,-9483,9519,9485,9522]],[[9488]],[[9497]],[[-9499,9537]],[[9500]],[[9501]],[[9502]],[[9503]],[[9504]],[[9505]],[[9539,9511,9512,9513,9538,9521]],[[9514]],[[9536]],[[9540]],[[9541]],[[9542]],[[9547]],[[9548]],[[9549]],[[9550]],[[9569]],[[9570]],[[9571]],[[9572]],[[9573]],[[9574]],[[9575]],[[9576]],[[9579]],[[9580]],[[-9582,9581,9869]],[[9583]],[[9586]],[[9592]],[[9593]],[[9594]],[[9609]],[[9614]],[[9615]],[[9616]],[[9618]],[[9619]],[[9620]],[[9621]],[[9622]],[[9623]],[[9624]],[[9625]],[[9626]],[[9627]],[[9628]],[[9629]],[[9630]],[[9631]],[[9632]],[[9774,9649,9753,9782,9643,9783,9825,9807,9686,9655,9716,9811,9711,9719,9751,9860,9831,9690,9729,9814,9724,9839,9845,9836,9855,9856,9847,9857,9827,9840,9777,9760,9815,9797,9678,9738,9823,9698,9785,9816,9657,9763]],[[9858]],[[9832]],[[9859]]]}},"arcs":[[[1618,5836],[2,-9],[1,-32],[2,-11],[-3,-12]],[[1620,5772],[-4,-3],[-44,1]],[[1572,5770],[0,18],[-4,6],[-5,30],[1,12],[28,-1],[26,1]],[[2029,5836],[-2,-33],[4,0],[0,-48],[6,-1]],[[2037,5754],[0,-64],[-1,0],[0,-39]],[[2036,5651],[-11,3],[-4,7],[-1,-19]],[[2020,5642],[-4,-27],[-9,-24],[-10,-5],[-5,6]],[[1992,5592],[1,98],[1,16],[3,0],[-2,33],[3,5],[0,76],[1,16]],[[1999,5836],[30,0]],[[1807,5836],[3,-34],[3,7],[4,-25],[-1,-20],[8,-12],[-1,-17],[4,-6],[0,-22]],[[1827,5707],[3,-14],[0,-11],[6,-8]],[[1836,5674],[4,-29],[-3,-4]],[[1837,5641],[-3,-7],[1,-26],[-3,-11],[0,-23]],[[1832,5574],[-8,1]],[[1824,5575],[-5,0]],[[1819,5575],[1,16],[-2,20],[0,19],[-5,15],[-1,14],[-6,-5],[2,-11],[-13,-1],[0,-32],[-3,0]],[[1792,5610],[0,16],[-11,0],[-1,26]],[[1780,5652],[0,40],[5,0],[0,64],[-1,16],[6,0],[2,18],[-3,16],[-1,30]],[[1788,5836],[19,0]],[[1752,5836],[0,-93]],[[1752,5743],[-21,0],[0,64],[-7,0]],[[1724,5807],[0,29]],[[1724,5836],[28,0]],[[1992,5592],[-1,-13],[-7,2],[-6,-34]],[[1978,5547],[0,22],[-4,6],[-7,-3]],[[1967,5572],[-13,11],[-3,17]],[[1951,5600],[0,35],[7,0],[1,13],[5,-3],[0,87],[2,-4],[1,60],[2,0],[0,48]],[[1969,5836],[30,0]],[[2213,5751],[-18,0]],[[2195,5751],[-1,33],[0,52]],[[2194,5836],[18,0]],[[2212,5836],[0,-53],[1,-32]],[[1780,5652],[-4,1],[-1,-19],[-2,-5],[-7,3],[0,14],[-6,53],[-7,-20],[-1,11]],[[1752,5690],[0,53]],[[1752,5836],[36,0]],[[2195,5751],[-4,0]],[[2191,5751],[-3,0],[0,16],[-19,0],[0,-16]],[[2169,5751],[-10,0],[0,33],[-2,0],[0,52]],[[2157,5836],[37,0]],[[1859,5836],[0,-98]],[[1859,5738],[-11,2],[0,-33],[-21,0]],[[1807,5836],[52,0]],[[1933,5675],[-5,-1],[0,17],[-4,-1],[0,16],[-21,1],[0,-17],[-4,0]],[[1899,5690],[0,146]],[[1899,5836],[35,0]],[[1934,5836],[0,-80],[1,-22],[-2,-30],[0,-29]],[[1951,5600],[-1,10],[-10,1],[-4,-14],[-3,4]],[[1933,5601],[0,74]],[[1934,5836],[35,0]],[[2058,5836],[0,-65],[2,-17]],[[2060,5754],[-23,0]],[[2029,5836],[29,0]],[[2276,5836],[2,-45],[2,-13],[-2,-27]],[[2278,5751],[-21,0]],[[2257,5751],[-1,85]],[[2256,5836],[20,0]],[[2299,5836],[1,-85]],[[2300,5751],[-22,0]],[[2276,5836],[23,0]],[[2228,5751],[0,-32],[-7,0]],[[2221,5719],[-8,0]],[[2213,5719],[0,32]],[[2212,5836],[15,0]],[[2227,5836],[0,-53],[1,-32]],[[2257,5751],[-11,0]],[[2246,5751],[-18,0]],[[2227,5836],[29,0]],[[1674,5836],[-1,-194]],[[1673,5642],[-3,-3]],[[1670,5639],[0,3]],[[1670,5642],[1,11],[-3,22],[-3,2],[-8,-13],[-6,-15],[-1,18],[-6,-7],[1,-18]],[[1645,5642],[-5,0],[-3,20],[-6,19],[-1,14],[-5,14],[-3,40]],[[1622,5749],[-2,23]],[[1618,5836],[22,0],[34,0]],[[1713,5836],[-4,-31],[-2,-33],[4,0],[0,-97],[2,-17]],[[1713,5658],[-3,0],[0,-47],[-4,17],[-4,-11]],[[1702,5617],[-2,4],[-5,-9],[-4,27],[-3,-9]],[[1688,5630],[-2,23],[4,8],[0,12],[3,24],[-2,33],[4,44],[-4,40],[1,22]],[[1692,5836],[21,0]],[[1724,5807],[0,-149]],[[1724,5658],[-11,0]],[[1713,5836],[11,0]],[[1688,5630],[-1,-10],[-5,6],[-1,11],[-4,-6],[-4,11]],[[1674,5836],[18,0]],[[1881,5674],[0,16]],[[1881,5690],[4,0],[0,145]],[[1885,5835],[14,1]],[[1899,5690],[-2,-16],[-16,0]],[[2117,5836],[0,-52],[2,-17]],[[2119,5767],[-33,1]],[[2086,5768],[0,68]],[[2086,5836],[31,0]],[[2143,5836],[0,-36]],[[2143,5800],[-4,0],[0,-16],[-2,0],[0,-33]],[[2137,5751],[-18,0]],[[2119,5751],[0,16]],[[2117,5836],[26,0]],[[1859,5836],[26,-1]],[[1881,5690],[-7,0],[0,25],[-4,8],[-5,0],[-1,11],[-5,4]],[[2169,5751],[0,-16]],[[2169,5735],[-21,0],[0,49],[-5,0],[0,16]],[[2143,5836],[14,0]],[[2329,5750],[-7,0]],[[2322,5750],[-22,1]],[[2299,5836],[30,0]],[[2329,5836],[3,-22],[4,7],[0,-39],[-7,0],[0,-32]],[[2086,5768],[0,-46]],[[2086,5722],[-16,0],[0,16],[-4,0],[0,16],[-6,0]],[[2058,5836],[28,0]],[[1752,5690],[0,-44]],[[1752,5646],[-6,16],[-2,-9],[0,-24]],[[1744,5629],[-5,0],[0,19],[-15,-3]],[[1724,5645],[0,13]],[[2169,5735],[2,-16],[0,-65],[1,0],[0,-33]],[[2172,5621],[-25,0]],[[2147,5621],[0,33],[-2,0],[0,65],[-1,0],[0,32],[-7,0]],[[1561,5753],[2,-24],[-4,7],[2,17]],[[1554,5766],[3,-12],[0,-19],[-3,8],[0,23]],[[1561,5783],[4,-10],[-6,-12],[-2,10],[4,12]],[[2392,5766],[-1,-71],[1,-66]],[[2392,5629],[-19,2],[-1,-10],[-17,0]],[[2355,5621],[-1,97]],[[2354,5718],[0,62]],[[2354,5780],[4,2],[2,-12],[10,-3],[2,-21],[9,5],[0,9],[7,9],[4,-3]],[[1622,5749],[-4,2],[-5,-9],[-2,-33],[2,-4]],[[1613,5705],[-38,0]],[[1575,5705],[-8,21],[-1,15],[3,6],[3,-13],[0,36]],[[2119,5751],[0,-32],[1,0],[0,-46]],[[2120,5673],[-10,2],[-3,-18],[-5,-9],[-4,26],[-3,-7],[-3,-21],[-6,3]],[[2086,5649],[0,73]],[[2191,5751],[1,-32],[0,-65],[1,0],[0,-33]],[[2193,5621],[-10,0]],[[2183,5621],[-11,0]],[[2428,5687],[0,-122],[0,-113]],[[2428,5452],[-9,-28],[-3,-24]],[[2416,5400],[-2,0]],[[2414,5400],[0,19],[-22,1]],[[2392,5420],[1,48]],[[2393,5468],[-1,129],[0,32]],[[2392,5766],[10,-16],[2,1],[-2,-15],[6,-3],[4,-42],[3,5],[0,20],[5,0],[2,-17],[6,-12]],[[2086,5649],[-2,11],[-6,-2],[-3,14],[-11,0],[-1,6],[-3,-16],[-6,0]],[[2054,5662],[-1,5],[-7,1],[-10,-17]],[[1645,5642],[-4,-34],[-5,-3],[-1,-30],[-2,-15],[0,-24],[6,-10],[0,-14]],[[1639,5512],[-8,0],[-8,15],[-4,15],[-3,2],[-6,30]],[[1610,5574],[2,21],[-2,13]],[[1610,5608],[2,9],[-4,14],[1,26],[4,7],[3,16],[-3,25]],[[2147,5621],[-15,0],[0,-17]],[[2132,5604],[-7,13]],[[2125,5617],[0,14],[3,18],[-3,15],[-5,9]],[[2322,5750],[0,-68]],[[2322,5682],[-25,0]],[[2297,5682],[-18,0]],[[2279,5682],[0,4]],[[2279,5686],[0,24],[-1,41]],[[2213,5719],[-10,0],[0,-65],[1,-33]],[[2204,5621],[-7,0]],[[2197,5621],[-4,0]],[[2234,5644],[0,0]],[[2246,5751],[1,-65]],[[2247,5686],[-4,0],[0,-33],[-3,0],[0,-19]],[[2240,5634],[-3,0],[-5,27],[-3,-12],[-8,31],[0,39]],[[2279,5686],[-22,0]],[[2257,5686],[-10,0]],[[2355,5621],[0,-75]],[[2355,5546],[0,-6],[-7,0]],[[2348,5540],[-15,0]],[[2333,5540],[0,86],[-2,15],[1,12],[-10,0]],[[2322,5653],[0,29]],[[2329,5750],[3,0],[0,-32],[22,0]],[[1881,5674],[0,-27]],[[1881,5647],[-16,0],[-2,19],[-4,8],[-23,0]],[[1574,5696],[1,-4]],[[1575,5692],[-3,-10],[3,-16],[-4,8],[0,22],[3,0]],[[1569,5723],[3,-17],[-5,-4],[-2,-10],[4,-4],[2,-36],[0,15],[4,-11],[0,-24],[-6,23],[-1,24],[-4,12],[3,33],[2,-1]],[[1560,5662],[-1,-37],[-15,0],[0,2],[-31,0]],[[1513,5627],[-4,54],[3,41],[7,-19],[4,-4],[7,-19],[8,1],[9,-10],[7,7],[6,-16]],[[2240,5634],[0,-13]],[[2240,5621],[-21,0]],[[2219,5621],[-15,0]],[[1933,5601],[-8,-4],[0,-33],[-11,-23]],[[1914,5541],[-12,0]],[[1902,5541],[-3,5],[0,15],[-3,0],[-5,14],[2,18],[-12,0]],[[1881,5593],[0,54]],[[1610,5608],[-35,0]],[[1575,5608],[2,32],[3,16],[-4,12],[-1,24]],[[1574,5696],[1,9]],[[1792,5610],[0,-35],[7,0],[-1,-22],[2,2],[-1,-19],[4,-7],[0,-40]],[[1803,5489],[-2,-2],[-2,11],[-6,12],[-7,3]],[[1786,5513],[-4,8],[-1,16],[-8,17],[-10,-1]],[[1763,5553],[-3,13],[2,8],[-1,19],[-3,10],[-6,43]],[[2449,5685],[0,-135]],[[2449,5550],[-12,-63],[-9,-35]],[[2428,5687],[2,-16],[4,-1],[0,-12],[9,7],[6,20]],[[2257,5686],[1,-33],[0,-65]],[[2258,5588],[-3,0]],[[2255,5588],[-14,0]],[[2241,5588],[-1,33]],[[2279,5682],[3,-56],[3,-37]],[[2285,5589],[-16,-1]],[[2269,5588],[-11,0]],[[2297,5682],[0,-39]],[[2297,5643],[0,-22],[4,0],[0,-16],[14,0],[0,16],[4,0],[0,17]],[[2319,5638],[3,-1]],[[2322,5637],[1,-81]],[[2323,5556],[-14,0]],[[2309,5556],[-22,0]],[[2287,5556],[-2,33]],[[2322,5653],[0,-16]],[[2319,5638],[0,5],[-22,0]],[[2086,5649],[0,-112]],[[2086,5537],[-2,-8],[-8,0]],[[2076,5529],[-3,0],[0,33],[-2,0],[0,16],[-11,0],[0,16],[-7,0],[0,17]],[[2053,5611],[1,14],[0,37]],[[1670,5642],[-4,0],[-3,-13],[0,-17],[-2,-13],[-1,-22],[-6,-16],[0,-16],[-9,0],[-4,-22],[0,-19]],[[1641,5504],[-2,8]],[[2125,5617],[0,-28],[-12,0],[0,-65]],[[2113,5524],[-16,1]],[[2097,5525],[-11,0]],[[2086,5525],[0,12]],[[1558,5576],[-14,0],[0,-16]],[[1544,5560],[-15,0],[-9,3]],[[1520,5563],[-2,40],[-5,24]],[[1560,5662],[2,13],[6,-46],[-2,-4],[-2,-31],[-1,25],[-3,-32],[-2,-11]],[[1881,5593],[-7,0],[0,-16],[-7,0],[0,-20],[-4,2]],[[1863,5559],[-6,-2],[-5,19],[-4,5],[-6,-5],[-3,17],[0,24],[-2,24]],[[2053,5611],[-4,-1],[0,-48],[-1,0],[0,-65]],[[2048,5497],[-12,0],[0,-17],[-3,0],[0,17],[-4,0]],[[2029,5497],[-2,0],[0,32],[-4,0],[1,33],[0,63],[-2,0],[-2,17]],[[1763,5553],[-2,-11],[4,-14],[1,-9],[5,-7],[6,-30],[2,-24],[3,-7]],[[1782,5451],[-38,0]],[[1744,5451],[0,16]],[[1744,5467],[0,73]],[[1744,5540],[0,89]],[[1819,5575],[-8,0],[-1,-23],[2,-16],[2,-39],[-3,-8],[-8,0]],[[1724,5645],[0,-114]],[[1724,5531],[0,-20]],[[1724,5511],[-22,1]],[[1702,5512],[0,105]],[[2333,5540],[1,-48]],[[2334,5492],[-11,-1]],[[2323,5491],[0,65]],[[1744,5540],[-7,0],[-2,-8],[-11,-1]],[[2029,5497],[0,-60]],[[2029,5437],[0,-3]],[[2029,5434],[-17,0],[0,3],[-33,-2]],[[1979,5435],[-1,5],[1,22],[-2,26],[0,42],[1,17]],[[1670,5639],[0,-127]],[[1670,5512],[0,-65],[-11,0],[0,-33]],[[1659,5414],[-2,-11]],[[1657,5403],[-2,9],[-3,-15],[-7,-3]],[[1645,5394],[-3,20]],[[1642,5414],[1,12],[-3,50],[1,28]],[[1702,5512],[-4,0]],[[1698,5512],[-28,0]],[[1863,5559],[0,-60],[7,-12],[0,-40],[4,0]],[[1874,5447],[0,-13],[4,-15]],[[1878,5419],[-4,-5],[1,-31],[-5,0]],[[1870,5383],[-6,0],[-8,-28]],[[1856,5355],[0,35],[-3,17],[-4,0],[0,25],[-7,0],[0,64],[-7,1],[0,57],[-3,20]],[[1571,5593],[1,-21],[-2,3],[1,18]],[[1570,5538],[-2,0]],[[1568,5538],[0,0]],[[1568,5538],[-5,0]],[[1563,5538],[0,22],[-6,0]],[[1557,5560],[3,19],[5,9],[2,24],[4,21],[1,-31],[-2,1],[-1,-34],[3,-11],[-2,-20]],[[2393,5468],[-20,1]],[[2373,5469],[-1,46],[-6,14],[-3,24],[-6,-12],[-2,5]],[[2183,5621],[0,-32],[-3,0],[0,-65]],[[2180,5524],[-2,0],[0,-32],[-6,0]],[[2172,5492],[-2,26],[-6,-5]],[[2164,5513],[-3,5],[-2,31],[0,19],[-8,-6],[-3,-6],[-11,14]],[[2137,5570],[-1,8],[0,31],[-4,-5]],[[2241,5588],[0,-15]],[[2241,5573],[-22,0]],[[2219,5573],[0,48]],[[2219,5573],[0,-49]],[[2219,5524],[-6,0]],[[2213,5524],[-15,0]],[[2198,5524],[0,65],[-1,32]],[[2198,5524],[-2,0]],[[2196,5524],[-16,0]],[[2137,5570],[0,-46],[2,0],[0,-59]],[[2139,5465],[-10,0],[0,-5],[-15,0]],[[2114,5460],[0,64],[-1,0]],[[1967,5572],[0,-50],[-8,-2],[-3,-6],[-1,-33],[4,0],[-1,-65]],[[1958,5416],[-10,1]],[[1948,5417],[-11,0],[0,-11]],[[1937,5406],[-10,0]],[[1927,5406],[-2,20],[2,18],[0,54],[-10,16],[0,16],[-3,11]],[[2076,5529],[2,-20],[1,-38],[-3,-26],[-5,-8]],[[2071,5437],[-12,0],[-1,11],[-4,0],[0,11],[-3,0],[0,38],[-3,0]],[[1573,5539],[-2,-12],[1,31],[1,-19]],[[1610,5574],[-2,-5],[-6,-28],[-1,-12],[4,-38],[-2,-12]],[[1603,5479],[-12,16],[-4,-6],[-4,10],[-1,12],[-6,0],[-2,12]],[[1574,5523],[3,5],[-3,43],[2,5],[-3,10],[2,22]],[[1902,5541],[0,-11],[-3,0],[0,-49],[3,0],[0,-51]],[[1902,5430],[-7,30],[-5,4],[0,16],[-2,-15],[-11,-2],[0,-16],[-3,0]],[[2269,5588],[0,-64],[1,-16]],[[2270,5508],[-7,0]],[[2263,5508],[-7,0]],[[2256,5508],[-1,16],[0,64]],[[2256,5508],[-14,0]],[[2242,5508],[-1,16]],[[2241,5524],[0,49]],[[2287,5556],[0,-49]],[[2287,5507],[-17,1]],[[1558,5576],[-1,-16]],[[1563,5538],[0,-8]],[[1563,5530],[-3,-15],[-1,-14],[-3,-20]],[[1556,5481],[-4,-2]],[[1552,5479],[-8,0],[0,81]],[[1824,5575],[0,-78],[4,0],[0,-65]],[[1828,5432],[-5,-6],[0,-10],[-5,-6],[0,-11],[-5,1]],[[1813,5400],[-14,0]],[[1799,5400],[-7,-5]],[[1792,5395],[-2,19]],[[1790,5414],[3,2],[0,40],[3,6],[-1,14],[-6,21],[-3,16]],[[1856,5355],[-7,-29]],[[1849,5326],[-13,1]],[[1836,5327],[-1,87],[-2,-4],[-5,22]],[[1979,5435],[2,-17]],[[1981,5418],[-23,-2]],[[1642,5414],[-15,0],[0,16],[-3,1],[0,16],[-11,0],[-2,14],[-5,19],[-3,-1]],[[2241,5524],[-22,0]],[[2164,5513],[0,-5],[-14,0],[0,-48]],[[2150,5460],[-9,0]],[[2141,5460],[-2,5]],[[1552,5479],[1,-17],[0,-37]],[[1553,5425],[-6,-1]],[[1547,5424],[-20,1]],[[1527,5425],[-1,20],[3,-2],[6,12],[-9,12],[-3,49],[-2,13],[-1,34]],[[2323,5491],[-14,0]],[[2309,5491],[0,65]],[[2309,5491],[-4,0]],[[2305,5491],[-18,0]],[[2287,5491],[0,16]],[[1790,5414],[-8,23],[0,14]],[[2373,5469],[0,-43]],[[2373,5426],[-16,1],[0,-96],[0,-2]],[[2357,5329],[-3,10],[-3,-6],[-3,9]],[[2348,5342],[-2,4]],[[2346,5346],[-1,4],[-1,77]],[[2344,5427],[4,0],[0,113]],[[3097,5217],[-7,-7]],[[3090,5210],[-11,-12],[0,150],[-11,3]],[[3068,5351],[0,32],[-25,1]],[[3043,5384],[-8,0]],[[3035,5384],[0,22],[22,143],[5,-6],[0,-34],[4,-13],[8,13],[1,8],[6,0],[0,12],[4,0],[7,-29],[5,-24],[0,-210],[0,-49]],[[1927,5406],[-6,11],[-8,-8]],[[1913,5409],[-6,-6],[-5,27]],[[1744,5467],[-14,2],[-6,18]],[[1724,5487],[0,24]],[[2344,5427],[-10,0]],[[2334,5427],[0,65]],[[1603,5479],[-2,-30],[-2,-10],[2,-16]],[[1601,5423],[-9,0],[-2,-11],[-10,7]],[[1580,5419],[-4,15],[-4,4],[-4,21],[-2,22]],[[1566,5481],[3,17],[2,24],[3,1]],[[1570,5538],[-1,-27],[-2,6],[1,21]],[[1568,5538],[-3,-12],[-1,-32],[-2,14],[1,22]],[[2086,5525],[0,-129]],[[2086,5396],[-8,0],[-2,8],[-5,0]],[[2071,5404],[0,33]],[[2114,5460],[-5,-1],[0,-65]],[[2109,5394],[-11,0]],[[2098,5394],[0,65],[-1,0],[0,66]],[[2098,5394],[-5,0],[0,-16],[-7,0]],[[2086,5378],[0,18]],[[2213,5524],[0,-64],[1,0],[0,-65]],[[2214,5395],[-13,0]],[[2201,5395],[-4,0]],[[2197,5395],[0,65],[-1,0],[0,64]],[[2242,5508],[0,-49],[0,-65]],[[2242,5394],[-16,0]],[[2226,5394],[-12,1]],[[2197,5395],[-16,0]],[[2181,5395],[-4,10],[-1,22],[-3,33]],[[2173,5460],[1,6],[-2,26]],[[2173,5460],[-23,0]],[[1698,5512],[0,-65],[-1,-23],[-6,-9]],[[1691,5415],[-32,-1]],[[1724,5487],[0,-109]],[[1724,5378],[0,-22]],[[1724,5356],[-4,-1],[-1,8]],[[1719,5363],[-1,15],[-6,29],[-8,-2],[-3,-12]],[[1701,5393],[-9,-12],[-1,6]],[[1691,5387],[0,28]],[[2263,5508],[1,-49],[0,-65]],[[2264,5394],[-10,0]],[[2254,5394],[-12,0]],[[2287,5491],[0,-26],[2,-14],[-1,-26],[0,-31]],[[2288,5394],[-13,0]],[[2275,5394],[-11,0]],[[1580,5419],[-27,0],[0,6]],[[1556,5481],[3,14],[-1,-18],[2,0],[3,19],[3,-15]],[[2071,5404],[-4,-13]],[[2067,5391],[-3,0],[-4,-13],[-7,0],[-6,5],[-1,16],[-2,0],[-2,33],[-6,5],[-7,0]],[[2334,5427],[0,-16]],[[2334,5411],[-28,0]],[[2306,5411],[-1,80]],[[2306,5411],[0,-17],[-3,0]],[[2303,5394],[-14,0]],[[2289,5394],[-1,0]],[[1744,5451],[0,-57],[-4,0]],[[1740,5394],[-4,0],[-3,-16],[-9,0]],[[1645,5394],[0,-110]],[[1645,5284],[-20,0],[-26,1]],[[1599,5285],[0,64]],[[1599,5349],[3,0],[-1,27],[2,33],[-2,14]],[[1913,5409],[-1,-91]],[[1912,5318],[0,-7]],[[1912,5311],[-14,2]],[[1898,5313],[-7,0]],[[1891,5313],[-2,15],[2,23],[-5,6],[-3,22],[-5,40]],[[2392,5420],[1,-65]],[[2393,5355],[0,-49]],[[2393,5306],[-11,0]],[[2382,5306],[0,17],[-10,-1]],[[2372,5322],[0,64],[0,1],[1,39]],[[2506,5355],[0,-16]],[[2506,5339],[-11,0],[0,32],[-10,0],[0,16],[-3,0],[-1,33]],[[2481,5420],[3,9],[10,5],[5,12],[3,16],[6,7]],[[2508,5469],[0,-49],[1,-17],[-3,1],[0,-49]],[[2141,5460],[0,-49]],[[2141,5411],[0,-17]],[[2141,5394],[-24,0]],[[2117,5394],[-8,0]],[[2181,5395],[2,-7],[0,-31]],[[2183,5357],[-4,-9],[-6,2],[-3,-20]],[[2170,5330],[0,16],[-7,0],[0,48],[-12,0],[0,17],[-10,0]],[[2532,5447],[0,-28],[2,-16],[-4,0],[0,-48]],[[2530,5355],[-15,0]],[[2515,5355],[0,81],[3,0],[0,16],[3,0]],[[2521,5452],[0,-35],[6,33],[5,-3]],[[1792,5395],[-29,-30],[-5,-39],[-10,20]],[[1748,5346],[-5,18]],[[1743,5364],[-3,5],[0,25]],[[2067,5391],[0,-24],[-5,0],[1,-65]],[[2063,5302],[-2,0],[0,-65],[-1,0]],[[2060,5237],[-34,0]],[[2026,5237],[0,65],[1,0],[0,65],[1,0],[0,65],[1,2]],[[2026,5237],[-1,0],[0,-81],[-1,0],[0,-32]],[[2024,5124],[-14,0],[0,32],[1,0],[0,60],[-5,2],[1,27],[-1,8]],[[2006,5253],[0,49],[-2,0],[-1,49],[-3,0],[-1,16],[-16,0]],[[1983,5367],[-1,2]],[[1982,5369],[-1,49]],[[1836,5327],[0,-9],[-7,0],[0,-33],[-7,-19]],[[1822,5266],[-2,1],[-3,16],[-3,1],[2,14],[-2,17],[2,12],[-4,45],[1,28]],[[2346,5346],[-12,0]],[[2334,5346],[0,65]],[[2372,5322],[0,-16]],[[2372,5306],[-16,0],[1,23]],[[1547,5424],[1,-76]],[[1548,5348],[-11,1],[0,-18]],[[1537,5331],[-4,-9],[-4,14],[-1,-9],[1,58],[1,-39],[1,1],[2,32],[-2,12],[3,20],[-4,-3],[-3,17]],[[1599,5349],[-20,0]],[[1579,5349],[-27,0]],[[1552,5349],[-4,-1]],[[1891,5313],[-8,-1],[-2,-35],[-7,-31]],[[1874,5246],[0,40],[-4,0],[0,97]],[[2414,5400],[0,-45]],[[2414,5355],[-21,0]],[[2506,5339],[0,-44]],[[2506,5295],[-3,8],[-23,30],[0,-3]],[[2480,5330],[-6,10],[-3,32],[-5,10]],[[2466,5382],[11,21],[4,17]],[[1982,5369],[0,-19],[-4,0],[-3,-24],[-8,0],[-2,-5],[0,-19],[-11,0]],[[1954,5302],[0,26],[-2,17],[-1,39],[-3,1],[0,32]],[[2611,5418],[0,-95]],[[2611,5323],[-18,-1]],[[2593,5322],[0,49]],[[2593,5371],[0,34]],[[2593,5405],[11,-1],[7,14]],[[1954,5302],[-4,-1]],[[1950,5301],[-14,0],[0,-16]],[[1936,5285],[-5,0],[-1,33]],[[1930,5318],[7,0],[0,88]],[[1930,5318],[-18,0]],[[1691,5387],[0,0]],[[1691,5387],[-6,1],[-5,-17],[-1,-18],[-3,-22],[-8,-18]],[[1668,5313],[-6,16],[0,45],[-5,29]],[[1668,5313],[2,-12],[0,-24]],[[1670,5277],[-4,-13],[-9,-2]],[[1657,5262],[-4,1],[-2,-13],[-6,-4]],[[1645,5246],[0,38]],[[2334,5346],[0,-49]],[[2334,5297],[-17,0]],[[2317,5297],[-14,0]],[[2303,5297],[0,97]],[[2170,5330],[-4,-26],[-5,-13],[-9,-12],[-5,11],[-4,-3]],[[2143,5287],[0,28]],[[2143,5315],[-1,15],[0,64],[-1,0]],[[1719,5363],[0,-10],[-6,-5],[0,-48],[-1,0],[0,-24]],[[1712,5276],[-4,1]],[[1708,5277],[0,63],[-2,0],[-2,25],[-3,0],[0,28]],[[2086,5378],[0,-49]],[[2086,5329],[0,-62]],[[2086,5267],[0,-12]],[[2086,5255],[-2,0],[0,16],[-7,0],[0,16],[-4,0],[0,15],[-10,0]],[[1799,5400],[0,-26],[-3,-46],[0,-33],[-2,-12],[3,-10],[0,-24],[-2,0],[-2,-14],[2,-20],[-2,-21]],[[1793,5194],[-3,-16],[-3,8],[0,-14],[5,-26],[-3,-19]],[[1789,5127],[-35,0],[-5,-16]],[[1749,5111],[-4,4],[-2,25],[-9,0]],[[1734,5140],[3,45],[3,20],[-2,26],[-7,19]],[[1731,5250],[2,26]],[[1733,5276],[5,1],[1,24],[2,14],[7,-9],[1,11],[4,2],[-5,27]],[[1822,5266],[0,-1]],[[1822,5265],[0,-10],[-5,-7],[-7,-28]],[[1810,5220],[-9,-40],[-2,-4],[-3,20],[-3,-2]],[[2201,5395],[0,-65],[1,0]],[[2202,5330],[0,-64]],[[2202,5266],[-17,0]],[[2185,5266],[-4,38],[2,19],[0,34]],[[2226,5394],[0,-64]],[[2226,5330],[-24,0]],[[1743,5364],[0,-23],[-10,-4],[0,-61]],[[1731,5250],[-4,26]],[[1727,5276],[-1,19],[1,13],[-4,33],[1,15]],[[2117,5394],[0,-65]],[[2117,5329],[-2,0]],[[2115,5329],[-29,0]],[[2254,5394],[0,-64]],[[2254,5330],[-27,0]],[[2227,5330],[-1,0]],[[2143,5315],[-14,0],[0,15],[-12,-1]],[[2303,5297],[0,-16]],[[2303,5281],[-9,0]],[[2294,5281],[1,18],[-1,40],[-4,29],[-1,26]],[[2275,5394],[0,-65]],[[2275,5329],[-20,0]],[[2255,5329],[-1,1]],[[2294,5281],[1,-16]],[[2295,5265],[-19,0]],[[2276,5265],[-1,11],[0,53]],[[1708,5277],[-10,0]],[[1698,5277],[-1,0]],[[1697,5277],[0,39],[-3,0],[0,16],[-4,0],[1,55]],[[1697,5277],[-27,0]],[[2480,5330],[0,-57],[-3,0]],[[2477,5273],[-8,0]],[[2469,5273],[0,33],[-3,0],[0,16],[-4,0],[0,63]],[[2462,5385],[4,-3]],[[3043,5384],[0,-112],[2,-21],[-2,-20],[-3,-2],[4,-21],[-2,-16],[4,-99],[7,11]],[[3053,5104],[3,-65]],[[3056,5039],[-3,6],[-3,-12]],[[3050,5033],[-4,2],[0,-23],[-9,6]],[[3037,5018],[-1,12],[-2,35],[-2,-2],[0,18],[-1,33],[-4,-3],[-3,6],[-4,98]],[[3020,5215],[5,12],[-1,11],[4,18],[-1,24],[2,24],[-2,8],[3,30],[4,12],[1,30]],[[3068,5351],[0,-133],[-4,-4],[0,-28],[3,3],[3,-54],[-3,-3],[0,-15],[-14,-13]],[[1874,5246],[-4,-7]],[[1870,5239],[-4,11],[-5,-3],[-2,-17]],[[1859,5230],[-6,15],[-3,66],[-2,-1]],[[1848,5310],[1,16]],[[2593,5322],[0,-51]],[[2593,5271],[-1,-9],[-4,8],[-7,-8],[-2,-25],[-3,-5]],[[2576,5232],[0,25],[0,49],[-4,0]],[[2572,5306],[0,33],[7,0],[0,32],[14,0]],[[1983,5367],[4,-33],[4,-24],[-1,-25]],[[1990,5285],[-5,0],[0,-11],[-3,0],[-3,-16],[-4,0],[-1,-71],[-7,-11],[-9,1]],[[1958,5177],[-6,27]],[[1952,5204],[-1,14],[0,51],[-1,32]],[[2006,5253],[-7,16],[-7,0],[0,16],[-2,0]],[[1727,5276],[-15,0]],[[2185,5266],[-42,1]],[[2143,5267],[0,20]],[[2530,5355],[0,-32]],[[2530,5323],[0,-61]],[[2530,5262],[-8,10],[-3,9],[-5,-2]],[[2514,5279],[-6,12]],[[2508,5291],[-2,4]],[[2506,5355],[9,0]],[[2414,5355],[0,-49]],[[2414,5306],[-2,-26],[-10,-23],[-3,-30]],[[2399,5227],[-9,0]],[[2390,5227],[0,46],[3,0],[0,33]],[[3090,5210],[3,-70],[-3,-2]],[[3090,5138],[-7,-6],[1,-23],[-4,-3],[1,-16],[-4,-3],[2,-40],[-11,-15]],[[3068,5032],[0,0]],[[3068,5032],[0,3],[-10,-11],[-2,15]],[[1599,5285],[-3,0],[1,-49],[2,-10]],[[1599,5226],[-8,-4],[-3,-11]],[[1588,5211],[-9,-18]],[[1579,5193],[0,94]],[[1579,5287],[0,62]],[[1579,5287],[-3,-18],[-5,5],[-6,-13],[-1,-12]],[[1564,5249],[-4,43],[-6,19],[-2,-2]],[[1552,5309],[0,1]],[[1552,5310],[0,39]],[[1552,5310],[-2,-5],[-5,22],[-8,4]],[[2348,5342],[0,-107]],[[2348,5235],[-14,0]],[[2334,5235],[0,62]],[[2372,5306],[0,-32],[1,0],[0,-30]],[[2373,5244],[-17,0],[3,-9]],[[2359,5235],[-11,0]],[[2504,5257],[-27,1]],[[2477,5258],[0,15]],[[2508,5291],[0,-18],[-4,0],[0,-16]],[[1548,5303],[0,-67]],[[1548,5236],[-17,0]],[[1531,5236],[-1,31],[2,12],[-3,41],[3,-9],[4,4],[5,-4],[3,10],[4,-18]],[[2143,5267],[0,-1]],[[2143,5266],[-26,1]],[[2117,5267],[-2,0]],[[2115,5267],[0,62]],[[2276,5265],[-21,0]],[[2255,5265],[0,0]],[[2255,5265],[0,64]],[[2227,5330],[0,-64]],[[2227,5266],[-20,0]],[[2207,5266],[-5,0]],[[2255,5265],[-20,0]],[[2235,5265],[-8,1]],[[2115,5267],[-29,0]],[[1848,5310],[-5,-8],[0,-16],[-5,-10],[1,-11],[-5,-14]],[[1834,5251],[-4,1],[-5,-18],[-3,31]],[[2544,5274],[0,-16],[-2,0],[0,-33],[-4,0]],[[2538,5225],[-6,11]],[[2532,5236],[-2,8],[0,18]],[[2530,5323],[14,0],[0,-49]],[[2382,5306],[0,-33],[-2,0],[0,-46]],[[2380,5227],[0,-32]],[[2380,5195],[-7,0]],[[2373,5195],[0,49]],[[1936,5285],[0,-16],[-2,0],[-1,-16],[-1,-49],[-10,-16],[0,-33],[-4,0],[0,-32]],[[1918,5123],[-4,0],[0,114],[-2,0],[0,74]],[[1898,5313],[0,-113],[-3,-12],[0,-32],[-4,0],[0,-65]],[[1891,5091],[0,-63]],[[1891,5028],[0,-36]],[[1891,4992],[-5,20],[0,8],[-4,24]],[[1882,5044],[0,112],[1,0],[0,54],[-6,0],[-3,19],[-4,10]],[[1918,5123],[8,-1]],[[1926,5122],[0,-31]],[[1926,5091],[-25,-2],[-10,2]],[[1859,5230],[-7,-1],[-7,-22]],[[1845,5207],[-2,23],[-9,21]],[[1564,5249],[0,-23]],[[1564,5226],[-4,-1]],[[1560,5225],[-3,11],[-9,0]],[[1548,5303],[4,6]],[[2390,5227],[-10,0]],[[2421,5306],[0,-96]],[[2421,5210],[-3,0]],[[2418,5210],[0,16],[-11,0],[0,-16],[-10,1]],[[2397,5211],[2,16]],[[2414,5306],[7,0]],[[2452,5306],[0,-33],[7,0]],[[2459,5273],[0,-64]],[[2459,5209],[-24,0]],[[2435,5209],[0,97]],[[2435,5306],[17,0]],[[2435,5209],[-14,1]],[[2421,5306],[14,0]],[[2086,5255],[0,-125]],[[2086,5130],[0,-40]],[[2086,5090],[-28,1]],[[2058,5091],[1,65],[1,0],[0,81]],[[1952,5204],[-8,-4],[-1,-23],[-5,0],[-6,-19],[-1,-19],[-2,0],[0,-17],[-3,0]],[[2317,5297],[0,-65]],[[2317,5232],[-14,0]],[[2303,5232],[0,49]],[[2334,5235],[0,-3]],[[2334,5232],[-17,0]],[[2514,5279],[1,-54],[7,0]],[[2522,5225],[0,-64]],[[2522,5161],[-7,0]],[[2515,5161],[-7,0],[0,16],[-4,0]],[[2504,5177],[0,80]],[[1579,5193],[-11,10],[-3,8],[-1,15]],[[1645,5246],[-4,-4]],[[1641,5242],[-6,-17],[-7,-5],[-5,8]],[[1623,5228],[-7,-18]],[[1616,5210],[-8,-5],[0,10],[-7,5]],[[1601,5220],[-2,6]],[[2024,5124],[0,-35]],[[2024,5089],[-46,2]],[[1978,5091],[-9,-1]],[[1969,5090],[3,41],[-16,0],[1,40],[1,6]],[[2303,5232],[0,-32]],[[2303,5200],[-16,0]],[[2287,5200],[0,11],[5,18],[3,36]],[[2532,5236],[0,-13],[-10,2]],[[1698,5277],[0,-26]],[[1698,5251],[-4,-32],[0,-41],[-2,-8],[-7,0],[0,-13],[-7,-2],[1,-28],[3,0],[1,-37]],[[1683,5090],[-18,0]],[[1665,5090],[0,16],[0,81],[-3,0],[0,16],[-5,0],[0,59]],[[1734,5140],[-3,-35]],[[1731,5105],[-13,1]],[[1718,5106],[0,15],[-6,0],[-3,33],[-2,-1],[-1,33],[-3,33],[1,32],[-6,0]],[[2551,5274],[1,-16],[0,-65],[2,0]],[[2554,5193],[-5,-48],[-5,-36]],[[2544,5109],[-3,18],[2,27],[-6,2],[2,28],[-1,11],[2,21],[-2,9]],[[2544,5274],[7,0]],[[2477,5258],[0,-64]],[[2477,5194],[0,-32]],[[2477,5162],[-18,-1]],[[2459,5161],[0,48]],[[2459,5273],[10,0]],[[2143,5266],[0,-87]],[[2143,5179],[0,-81]],[[2143,5098],[-26,0]],[[2117,5098],[0,32]],[[2117,5130],[0,137]],[[2185,5266],[4,-16],[1,-28],[-3,-21]],[[2187,5201],[-1,-13],[3,-9]],[[2189,5179],[-31,0]],[[2158,5179],[-15,0]],[[2117,5130],[-31,0]],[[2207,5266],[0,-65]],[[2207,5201],[-20,0]],[[1845,5207],[0,-27],[5,-7],[2,-17],[0,-49],[3,0],[0,-16],[4,-1],[1,-32],[3,-8],[7,0],[1,-14],[8,0]],[[1879,5036],[-1,-32],[-3,3]],[[1875,5007],[-6,-8],[-1,10],[-6,-7],[-6,8],[-2,-22],[-3,6],[-8,1],[-1,-21]],[[1842,4974],[-6,14],[0,14],[-3,46],[-3,9],[-3,-7],[-3,15],[0,36],[-3,11],[-4,27],[-2,28],[-1,36],[-3,3],[-1,14]],[[2235,5265],[0,-64]],[[2235,5201],[-28,0]],[[2207,5201],[0,0]],[[2255,5265],[0,-65]],[[2255,5200],[0,-65]],[[2255,5135],[-20,1]],[[2235,5136],[0,0]],[[2235,5136],[0,65]],[[2287,5200],[4,-31],[6,-18]],[[2297,5151],[-14,0],[-1,-5],[-6,0]],[[2276,5146],[0,48]],[[2276,5194],[0,71]],[[2276,5194],[-4,6],[-17,0]],[[1665,5090],[-14,-1]],[[1651,5089],[-4,0],[0,14]],[[1647,5103],[1,19],[-3,0],[0,16],[-4,0],[0,104]],[[2504,5177],[-10,1]],[[2494,5178],[0,16],[-17,0]],[[1718,5106],[-9,-1],[0,-16],[-6,0],[-3,12],[-3,-12],[-4,10],[-3,-16]],[[1690,5083],[-7,7]],[[1882,5044],[-3,-8]],[[2373,5195],[-11,0]],[[2362,5195],[-3,40]],[[1647,5103],[-19,0]],[[1628,5103],[-1,3]],[[1627,5106],[-1,24],[2,48],[3,7],[-1,16],[-7,27]],[[2058,5091],[-1,0]],[[2057,5091],[-26,-2]],[[2031,5089],[-7,0]],[[2639,5207],[-1,0],[0,-79]],[[2638,5128],[-3,0]],[[2635,5128],[-10,0]],[[2625,5128],[0,16]],[[2625,5144],[0,93]],[[2625,5237],[7,-25],[7,-5]],[[1548,5236],[0,-13],[-4,0],[2,-14],[3,-5],[-4,-22],[0,-11]],[[1545,5171],[0,-40],[-9,0],[0,-26],[2,0]],[[1538,5105],[0,-6]],[[1538,5099],[-8,0]],[[1530,5099],[2,67],[-1,70]],[[1560,5225],[0,-16],[5,-22],[0,-16]],[[1565,5171],[0,-19],[-4,-2]],[[1561,5150],[-7,21],[-9,0]],[[2362,5195],[3,-26]],[[2365,5169],[-2,-19],[-4,-7]],[[2359,5143],[-3,8],[-11,0]],[[2345,5151],[0,16],[-10,0]],[[2335,5167],[-1,65]],[[2317,5232],[1,-65]],[[2318,5167],[-11,0]],[[2307,5167],[-3,0],[-1,33]],[[2335,5167],[-4,0]],[[2331,5167],[-13,0]],[[1627,5106],[-6,0],[0,9],[-4,12],[-4,4],[0,16],[4,16],[1,23],[-2,24]],[[2390,5227],[0,-33],[4,0],[0,-27]],[[2394,5167],[-14,1]],[[2380,5168],[0,27]],[[2397,5211],[0,-13],[3,-2],[4,-23],[-3,-27]],[[2401,5146],[-7,0]],[[2394,5146],[0,21]],[[2418,5210],[0,-80]],[[2418,5130],[-17,0]],[[2401,5130],[0,16]],[[1588,5211],[0,-19],[3,-16]],[[1591,5176],[-23,0],[-3,-5]],[[1601,5220],[0,-33],[-1,0],[0,-48],[-6,0]],[[1594,5139],[0,21],[-3,16]],[[1628,5103],[1,-38],[2,-8]],[[1631,5057],[-39,1]],[[1592,5058],[1,12]],[[1593,5070],[-2,23],[4,10],[-2,26],[1,10]],[[1842,4974],[0,-27],[-5,1]],[[1837,4948],[-9,0]],[[1828,4948],[-1,16],[-3,25],[-2,-6],[-8,12],[-6,34],[-2,16],[-3,-2],[0,22],[-2,-2],[-4,-25],[1,-9],[-5,-18],[-7,32],[0,12]],[[1786,5055],[2,13],[0,51],[1,8]],[[3091,4998],[-3,81],[4,3],[-2,56]],[[3097,5217],[5,-14],[5,-5],[-2,-16],[2,-18],[-2,-21],[4,-29],[2,11],[3,-5],[4,-38],[2,-28],[-6,-30],[-9,-1],[-2,-20],[-2,6],[-2,-13],[-2,21],[-2,-8],[-1,-31],[-3,20]],[[3037,5018],[-3,-4],[0,-19],[-2,0]],[[3032,4995],[-3,-5]],[[3029,4990],[-1,20],[-7,11],[-3,31],[-4,-11],[-2,52],[2,1],[-2,48]],[[3012,5142],[0,23],[6,-3],[-3,24],[5,29]],[[2662,5129],[-14,-1]],[[2648,5128],[-10,0]],[[2639,5207],[3,-22],[6,-4],[3,-15],[6,-11],[2,2],[3,-16],[0,-12]],[[2435,5209],[0,-64]],[[2435,5145],[0,-16],[-4,0]],[[2431,5129],[-13,1]],[[2459,5161],[-7,0],[0,-16]],[[2452,5145],[-17,0]],[[1969,5090],[-10,1]],[[1959,5091],[-33,0]],[[2207,5201],[0,-65]],[[2207,5136],[-15,0]],[[2192,5136],[-2,14],[1,12],[-2,17]],[[2235,5136],[-24,0]],[[2211,5136],[-4,0]],[[2276,5146],[0,-27]],[[2276,5119],[-7,0]],[[2269,5119],[-14,0]],[[2255,5119],[0,16]],[[2307,5167],[1,-44]],[[2308,5123],[-5,14],[-5,4]],[[2298,5141],[-1,10]],[[2380,5168],[0,-32]],[[2380,5136],[0,0]],[[2380,5136],[-2,9],[-5,1],[-8,23]],[[2494,5178],[0,-65]],[[2494,5113],[-17,0]],[[2477,5113],[0,49]],[[2192,5136],[-2,-27],[1,-15],[-3,1],[0,-24]],[[2188,5071],[-4,-25],[-4,12],[-1,-10]],[[2179,5048],[-6,0],[-2,-8],[-4,3]],[[2167,5043],[0,46],[-10,0],[1,90]],[[2167,5043],[-2,-10],[-7,-10],[-2,-12],[-5,1],[-2,-10],[-6,-3]],[[2143,4999],[0,99]],[[2515,5161],[0,-32],[1,-17]],[[2516,5112],[-10,0],[0,-16]],[[2506,5096],[-7,0]],[[2499,5096],[0,17],[-5,0]],[[1593,5070],[-18,-1],[-4,10],[-2,15],[-5,21],[1,24],[-3,0]],[[1562,5139],[-1,11]],[[1562,5139],[-5,-7],[1,-20],[-2,-8]],[[1556,5104],[-18,1]],[[2380,5136],[-4,-9],[-3,-21],[0,-20]],[[2373,5086],[-7,1]],[[2366,5087],[-7,0]],[[2359,5087],[0,56]],[[2394,5146],[0,-32]],[[2394,5114],[-6,0],[0,-17]],[[2388,5097],[-2,20],[-6,19]],[[2345,5151],[0,-81]],[[2345,5070],[-14,0]],[[2331,5070],[1,49]],[[2332,5119],[-1,48]],[[2332,5119],[-23,0]],[[2309,5119],[-1,4]],[[2477,5113],[-5,0],[0,-16],[-3,0]],[[2469,5097],[-17,-1]],[[2452,5096],[0,49]],[[2522,5161],[3,-1],[0,-32],[3,-1],[2,-32],[10,-11]],[[2540,5084],[-4,-26],[-2,-28]],[[2534,5030],[0,0]],[[2534,5030],[0,0]],[[2534,5030],[-7,1]],[[2527,5031],[0,32],[-7,1]],[[2520,5064],[0,48],[-4,0]],[[3029,4990],[-3,-47],[-4,-33]],[[3022,4910],[-4,6],[0,20],[-6,-21],[3,-18],[-1,-28]],[[3014,4869],[-6,-4]],[[3008,4865],[-1,92]],[[3007,4957],[-1,97],[-1,93]],[[3005,5147],[2,8],[5,-13]],[[2298,5141],[0,-55]],[[2298,5086],[-12,0]],[[2286,5086],[0,32],[-10,1]],[[2359,5087],[-7,0],[0,-17]],[[2352,5070],[-7,0]],[[3007,4957],[-1,-9],[-6,2],[-2,-29],[-2,23]],[[2996,4944],[-5,8],[-5,28]],[[2986,4980],[5,18],[2,15],[-3,31],[4,30],[0,19]],[[2994,5093],[3,47],[3,7],[3,-12],[2,12]],[[2401,5130],[-1,-25],[1,-40]],[[2401,5065],[-1,-22]],[[2400,5043],[-6,5],[0,22]],[[2394,5070],[1,0],[0,44],[-1,0]],[[2452,5096],[0,-32]],[[2452,5064],[-20,0]],[[2432,5064],[-1,65]],[[1592,5058],[-1,-7],[0,-19]],[[1591,5032],[-11,2],[-3,10],[-6,1],[-8,7],[-5,-20],[-4,12]],[[1554,5044],[-1,15],[4,23],[-1,22]],[[1749,5111],[1,-9],[-3,-52],[1,-15],[0,-38]],[[1748,4997],[-3,-10]],[[1745,4987],[-7,9],[0,23],[-3,9],[0,32],[-7,1]],[[1728,5061],[2,17],[-1,17],[2,10]],[[2309,5119],[7,-38],[2,-2]],[[2318,5079],[-3,-9],[0,-16],[-17,0]],[[2298,5054],[0,32]],[[3073,4954],[0,-20],[-2,11],[2,9]],[[3083,4986],[3,-12],[-4,-28],[-3,16],[4,24]],[[3091,4998],[-1,-32],[-2,27],[-6,11],[2,-12],[-5,-13],[0,18],[-4,-17],[2,-33],[-9,33],[2,19],[-2,22],[0,11]],[[2211,5136],[0,-65]],[[2211,5071],[-3,0]],[[2208,5071],[-20,0]],[[2235,5136],[0,-65]],[[2235,5071],[-17,0]],[[2218,5071],[-7,0]],[[2388,5097],[1,-27]],[[2389,5070],[-4,-19]],[[2385,5051],[-5,3]],[[2380,5054],[0,16],[-7,0],[0,16]],[[2255,5119],[0,-97]],[[2255,5022],[-20,0]],[[2235,5022],[0,49]],[[1786,5055],[-4,-17],[-4,10],[-2,-23],[-3,-7],[1,-35],[-1,-16]],[[1773,4967],[-3,-14],[-4,-5],[-16,0],[0,-16],[-3,0]],[[1747,4932],[0,33],[2,0],[-1,32]],[[2117,5098],[-1,-81],[-16,0]],[[2100,5017],[-7,0],[-7,-6]],[[2086,5011],[0,79]],[[2418,5130],[0,-66]],[[2418,5064],[-17,1]],[[2432,5064],[0,-32]],[[2432,5032],[-14,0]],[[2418,5032],[0,32]],[[2621,5112],[0,-48]],[[2621,5064],[-12,0],[-1,-8]],[[2608,5056],[-3,8]],[[2605,5064],[2,47],[-1,18]],[[2606,5129],[5,0],[0,-17],[10,0]],[[2635,5128],[0,-65]],[[2635,5063],[-14,1]],[[2621,5112],[4,0],[0,16]],[[2648,5128],[0,-64]],[[2648,5064],[-13,-1]],[[2269,5119],[0,-65]],[[2269,5054],[0,-49]],[[2269,5005],[-10,1]],[[2259,5006],[0,16],[-4,0]],[[2286,5086],[0,-32]],[[2286,5054],[-17,0]],[[2331,5070],[-6,0],[0,-26]],[[2325,5044],[-7,35]],[[2394,5070],[-5,0]],[[2499,5096],[0,-65]],[[2499,5031],[-17,1]],[[2482,5032],[-13,0]],[[2469,5032],[0,65]],[[2520,5064],[-7,0],[0,16],[-7,0],[0,16]],[[1728,5061],[-4,-17],[-3,-38],[-2,-12],[0,-34]],[[1719,4960],[-8,0],[0,16],[-2,11],[-11,0],[-7,-35]],[[1691,4952],[-8,0],[3,22],[-1,15],[4,25],[-6,14],[6,16],[0,21],[1,18]],[[1554,5044],[0,-6]],[[1554,5038],[-13,1]],[[1541,5039],[-3,3],[0,57]],[[1651,5089],[0,-31],[0,-97]],[[1651,4961],[-7,0],[0,16],[-3,9],[-10,0],[0,23]],[[1631,5009],[0,48]],[[1541,5039],[0,-54],[-3,0],[0,-14],[-3,-3],[1,-11]],[[1536,4957],[-9,-1]],[[1527,4956],[1,26],[0,76],[2,16],[0,25]],[[2143,4999],[0,0]],[[2143,4999],[-3,-14],[-5,3],[-2,-28],[-1,-30],[-29,0]],[[2103,4930],[0,22],[-4,0],[1,65]],[[2469,5032],[0,-49]],[[2469,4983],[-14,0],[0,16],[-3,0],[0,16]],[[2452,5015],[0,49]],[[2527,5031],[0,-18]],[[2527,5013],[-10,1]],[[2517,5014],[0,17],[-18,0]],[[2964,5092],[1,-33],[-1,-9]],[[2964,5050],[-5,1],[-2,-18],[-3,-11]],[[2954,5022],[-9,17]],[[2945,5039],[1,54]],[[2946,5093],[18,-1]],[[2986,4980],[-2,-11]],[[2984,4969],[-2,17],[2,11],[-2,9],[2,12],[-2,7],[2,13],[-3,9]],[[2981,5047],[2,20],[-1,25]],[[2982,5092],[12,1]],[[2945,5039],[-1,-26],[-2,-4]],[[2942,5009],[-1,10],[1,35],[-1,6],[1,32]],[[2942,5092],[4,1]],[[2942,5009],[0,-3]],[[2942,5006],[-9,-20],[-7,-2]],[[2926,4984],[-2,52],[-1,54]],[[2923,5090],[19,2]],[[2981,5047],[-2,-13],[-3,10],[-4,-39],[-3,8]],[[2969,5013],[-3,9],[2,17],[-4,11]],[[2964,5092],[18,0]],[[1959,5091],[0,-24],[0,-66],[1,0],[0,-65],[1,0]],[[1961,4936],[0,-17]],[[1961,4919],[-7,0],[0,-17],[-4,0],[0,-16],[-5,0],[0,-16],[-6,-1]],[[1939,4869],[-3,22],[-3,6],[-3,-7],[0,-15],[-4,-8],[-2,29],[-4,-1],[-1,11]],[[1919,4906],[0,23],[-3,29],[-4,26],[0,17],[-2,12],[-8,0],[0,15],[-11,0]],[[2904,5089],[2,-7],[3,-146],[0,-13]],[[2909,4923],[-9,-6]],[[2900,4917],[-6,-3],[-3,8]],[[2891,4922],[-7,23]],[[2884,4945],[-12,34]],[[2872,4979],[3,21],[13,62],[9,25],[7,2]],[[1978,5091],[3,-40],[4,-20],[2,4],[7,-27]],[[1994,5008],[1,-18],[3,-3],[2,-22],[0,-30]],[[2000,4935],[-39,1]],[[2057,5091],[0,-154]],[[2057,4937],[0,-126]],[[2057,4811],[-26,-1]],[[2031,4810],[0,199]],[[2031,5009],[0,80]],[[2031,5009],[-11,-1],[-26,0]],[[2926,4984],[-6,-4],[1,-50],[-5,-3]],[[2916,4927],[-7,-4]],[[2904,5089],[19,1]],[[2086,5011],[0,-73]],[[2086,4938],[-29,-1]],[[1691,4952],[0,-40]],[[1691,4912],[-17,1],[0,-16],[-23,0]],[[1651,4897],[0,64]],[[2366,5087],[0,-49]],[[2366,5038],[-7,0],[0,-16],[-7,0],[0,16]],[[2352,5038],[0,32]],[[2380,5054],[-3,-18],[-4,-13]],[[2373,5023],[-4,15],[-3,0]],[[2298,5054],[0,-32]],[[2298,5022],[0,-17]],[[2298,5005],[-12,0]],[[2286,5005],[0,49]],[[2325,5044],[3,-10]],[[2328,5034],[0,-29],[-6,0]],[[2322,5005],[0,17],[-14,0]],[[2308,5022],[-10,0]],[[2400,5043],[2,-6]],[[2402,5037],[-2,-32],[-7,-5],[0,-8]],[[2393,4992],[-7,0],[0,14]],[[2386,5006],[-1,45]],[[2208,5071],[0,-65]],[[2208,5006],[-24,0]],[[2184,5006],[-3,7],[1,22],[-3,13]],[[2218,5071],[0,-131]],[[2218,4940],[-7,0]],[[2211,4940],[-3,5]],[[2208,4945],[0,61]],[[2235,5022],[0,-81]],[[2235,4941],[-6,0]],[[2229,4941],[-11,-1]],[[2352,5038],[-3,0],[0,-49]],[[2349,4989],[-5,0]],[[2344,4989],[-2,8]],[[2342,4997],[-14,37]],[[1828,4948],[-3,0],[0,-33],[-1,0],[0,-34],[2,-10],[-5,-24],[-5,-12],[-2,-11]],[[1814,4824],[-6,39],[-1,-8],[-6,18],[0,8],[-7,4],[0,-10],[-4,16],[-4,0],[0,12],[-4,-10]],[[1782,4893],[-1,2]],[[1781,4895],[-2,20],[1,18],[-4,9],[0,17],[-3,8]],[[2418,5032],[0,-27],[-5,0]],[[2413,5005],[-6,5],[-5,27]],[[2664,5064],[1,-27],[-1,-38]],[[2664,4999],[-16,0]],[[2648,4999],[0,65]],[[2648,5064],[16,0]],[[2621,5064],[0,-65]],[[2621,4999],[-13,1]],[[2608,5000],[0,56]],[[2635,5063],[0,-64]],[[2635,4999],[-14,0]],[[2452,5015],[-7,0]],[[2445,5015],[-10,0]],[[2435,5015],[-3,0]],[[2432,5015],[0,17]],[[2648,4999],[-13,0]],[[1745,4987],[-2,-23],[0,-32],[-3,0]],[[1740,4932],[-12,1]],[[1728,4933],[-2,16],[-7,11]],[[1631,5009],[-13,0],[0,-16],[-4,0],[0,-16],[-4,0]],[[1610,4977],[-20,0]],[[1590,4977],[1,55]],[[2386,5006],[-6,-1]],[[2380,5005],[-11,0]],[[2369,5005],[4,18]],[[2286,5005],[-7,0]],[[2279,5005],[-10,0]],[[2969,5013],[-1,-15]],[[2968,4998],[-2,-15],[-3,10],[-2,-15],[-4,10]],[[2957,4988],[0,19],[-3,15]],[[1590,4977],[1,-25]],[[1591,4952],[-14,-1],[-2,-6],[-5,2],[-5,11],[-5,-6],[0,-11],[-7,0],[0,16]],[[1553,4957],[-2,11],[1,30],[-2,10],[6,17],[-2,13]],[[2184,5006],[-1,-17],[5,-3],[1,-16],[8,-8],[5,-13],[-1,-8]],[[2201,4941],[-12,-1],[0,-4]],[[2189,4936],[-19,0]],[[2170,4936],[-4,-1],[1,98],[0,10]],[[2594,5048],[0,-48]],[[2594,5000],[-11,1]],[[2583,5001],[0,34],[4,14]],[[2587,5049],[7,-1]],[[2984,4969],[-5,-5],[0,-31]],[[2979,4933],[-10,9]],[[2969,4942],[4,41],[-5,15]],[[3068,5032],[-1,-16],[2,-6],[-1,-19],[-5,-6],[2,-15],[-3,-19]],[[3062,4951],[-2,1],[-4,20],[-4,-7]],[[3052,4965],[-3,3]],[[3049,4968],[3,21],[0,34],[-2,10]],[[1891,4992],[0,-91]],[[1891,4901],[-4,-9],[-6,-2]],[[1881,4890],[-4,-8],[-12,9]],[[1865,4891],[0,8],[-5,0],[0,16]],[[1860,4915],[3,0],[0,16],[5,8],[1,24],[1,16],[5,0],[0,28]],[[2170,4936],[-1,-33]],[[2169,4903],[-26,0]],[[2143,4903],[0,96]],[[2957,4988],[-4,-54]],[[2953,4934],[-1,26],[-9,-7]],[[2943,4953],[1,31],[-2,22]],[[1553,4957],[-17,0]],[[3049,4968],[-1,-15],[-3,3],[0,-29],[-3,3]],[[3042,4930],[0,0]],[[3042,4930],[-3,5],[-1,-11],[-3,3]],[[3035,4927],[-2,16],[-1,52]],[[2369,5005],[-1,-15]],[[2368,4990],[-19,-1]],[[2413,5005],[2,-16]],[[2415,4989],[-5,0],[0,-16],[-3,0],[0,-33]],[[2407,4940],[-4,1]],[[2403,4941],[-10,0]],[[2393,4941],[0,51]],[[2342,4997],[0,-40],[-7,0],[0,-17]],[[2335,4940],[-10,1]],[[2325,4941],[-3,0]],[[2322,4941],[0,64]],[[2499,5031],[0,-81]],[[2499,4950],[-10,0]],[[2489,4950],[-4,0]],[[2485,4950],[0,49],[-3,0],[0,33]],[[2485,4950],[-4,1]],[[2481,4951],[-12,0]],[[2469,4951],[0,32]],[[2534,5030],[-2,-21],[4,-5],[4,20]],[[2540,5024],[0,-59]],[[2540,4965],[-3,0],[0,-16],[-5,0]],[[2532,4949],[-4,0]],[[2528,4949],[0,64],[-1,0]],[[2432,5015],[-11,-2],[-1,-33]],[[2420,4980],[-5,9]],[[2517,5014],[-4,0],[0,-65]],[[2513,4949],[-4,0]],[[2509,4949],[-10,1]],[[2551,5030],[-3,-31],[-2,-34]],[[2546,4965],[-6,0]],[[2540,5024],[1,6]],[[2541,5030],[10,0]],[[1919,4906],[0,-102]],[[1919,4804],[0,-16],[-8,0],[0,-16],[-7,0],[0,-10]],[[1904,4762],[-7,0],[0,15],[-6,0]],[[1891,4777],[0,34]],[[1891,4811],[0,90]],[[2259,5006],[0,-65]],[[2259,4941],[-14,0]],[[2245,4941],[-10,0]],[[2308,5022],[0,-81]],[[2308,4941],[-10,0]],[[2298,4941],[0,64]],[[2322,4941],[-13,0]],[[2309,4941],[-1,0]],[[2103,4930],[-17,0]],[[2086,4930],[0,8]],[[2435,5015],[0,-65],[-2,-8],[2,-20],[-1,-13]],[[2434,4909],[-8,31]],[[2426,4940],[-3,31],[-3,9]],[[2445,5015],[1,-96]],[[2446,4919],[-5,-3],[0,-15],[-3,0]],[[2438,4901],[-4,8]],[[2469,4951],[0,-18]],[[2469,4933],[-16,1],[-2,-17]],[[2451,4917],[-5,2]],[[2528,4949],[-6,1]],[[2522,4950],[-9,-1]],[[1860,4915],[-15,0],[0,-16]],[[1845,4899],[-8,0],[0,49]],[[2031,4810],[-1,0]],[[2030,4810],[-29,0],[0,1]],[[2001,4811],[-1,124]],[[1651,4897],[-3,0],[0,-49],[-4,0]],[[1644,4848],[-10,0],[0,16],[-3,0],[0,16],[-10,0],[0,16],[-7,1],[0,32],[-3,1],[-1,47]],[[2208,4945],[2,-18],[-7,0],[-2,14]],[[2943,4953],[-2,-13],[-1,-28],[1,-44]],[[2941,4868],[-1,0]],[[2940,4868],[-18,-11]],[[2922,4857],[1,9],[-5,3],[-4,21],[3,9],[-1,28]],[[2380,5005],[0,-64]],[[2380,4941],[-7,0]],[[2373,4941],[0,8],[-7,0]],[[2366,4949],[2,19],[0,22]],[[2393,4941],[0,0]],[[2393,4941],[-10,0]],[[2383,4941],[-3,0]],[[2279,5005],[0,-64]],[[2279,4941],[-7,-1]],[[2272,4940],[-13,1]],[[2259,4941],[0,0]],[[2298,4941],[0,0]],[[2298,4941],[-12,0]],[[2286,4941],[-7,0]],[[2594,5000],[0,-65]],[[2594,4935],[-6,0]],[[2588,4935],[-10,2]],[[2578,4937],[4,36],[1,28]],[[2608,5000],[0,-65]],[[2608,4935],[-7,0]],[[2601,4935],[-7,0]],[[2594,5000],[14,0]],[[2635,4999],[0,-65]],[[2635,4934],[-7,0]],[[2628,4934],[-7,0]],[[2621,4934],[0,65]],[[2621,4934],[-6,1]],[[2615,4935],[-7,0]],[[2664,4999],[-1,-33],[-4,-11],[-2,-20]],[[2657,4935],[-9,-1]],[[2648,4934],[0,65]],[[2648,4934],[-8,0]],[[2640,4934],[-5,0]],[[1747,4932],[-2,0],[0,-64]],[[1745,4868],[-6,0]],[[1739,4868],[-6,0]],[[1733,4868],[0,33],[4,-1],[1,16],[2,0],[0,16]],[[2143,4903],[0,-53],[-4,-2]],[[2139,4848],[-1,-2],[-17,0]],[[2121,4846],[3,31],[-38,0]],[[2086,4877],[0,53]],[[2969,4942],[-2,-14],[-4,6],[-2,-27],[-2,3]],[[2959,4910],[-5,8],[-1,16]],[[2344,4989],[9,-22],[3,-13]],[[2356,4954],[0,-30]],[[2356,4924],[-14,0]],[[2342,4924],[-6,0],[-1,16]],[[3035,4927],[-1,-27]],[[3034,4900],[-2,-13],[-5,24],[-2,-9],[-3,8]],[[2366,4949],[-2,-15],[-8,20]],[[2426,4940],[-6,0],[0,-16]],[[2420,4924],[-7,0],[0,16],[-6,0]],[[1728,4933],[-2,-13],[1,-18],[-2,-20]],[[1725,4882],[-1,-8],[0,-29]],[[1724,4845],[0,-314]],[[1724,4531],[-32,0]],[[1692,4531],[-1,52],[0,119],[0,210]],[[2996,4944],[1,-56],[-5,-4],[1,-24]],[[2993,4860],[0,-12],[-4,-3],[-2,-22]],[[2987,4823],[-2,-4],[-1,13],[-3,-16]],[[2981,4816],[-11,14]],[[2970,4830],[1,17],[3,15]],[[2974,4862],[5,71]],[[1644,4848],[0,-17]],[[1644,4831],[-40,1]],[[1604,4832],[-18,0]],[[1586,4832],[0,46],[3,10],[3,37],[-1,27]],[[2884,4945],[-3,-22],[1,-5],[-1,-20],[-6,-16],[-2,1],[1,-37]],[[2874,4846],[-7,4],[-4,-6]],[[2863,4844],[0,1]],[[2863,4845],[0,0]],[[2863,4845],[-1,26],[-2,3],[5,11],[-3,15],[2,17],[-4,-11],[-3,19],[2,16],[13,38]],[[3062,4951],[-2,-32],[1,-6],[-4,-22],[-4,7],[0,9]],[[3053,4907],[2,7],[-1,29],[-2,0],[0,22]],[[1781,4895],[-4,6],[-1,19],[-4,-29],[-5,-7],[-4,-36],[-5,-17],[-4,-3]],[[1754,4828],[-9,40]],[[3053,4907],[0,11],[-4,-44],[-1,11],[-3,-8],[0,30],[-2,-14]],[[3043,4893],[1,12],[-3,4]],[[3041,4909],[1,21]],[[2546,4965],[0,-31],[-2,-10],[-3,-40]],[[2541,4884],[-9,0]],[[2532,4884],[0,65]],[[2959,4910],[-1,-13]],[[2958,4897],[-6,-15],[1,-10]],[[2953,4872],[-7,2],[0,-13],[-4,-3]],[[2942,4858],[-1,10]],[[1586,4832],[-4,-10],[0,-22]],[[1582,4800],[-17,-1],[0,20],[-10,-1],[-1,45],[-6,0],[-5,9],[-3,17],[-5,5],[-3,-15],[-7,0]],[[1525,4879],[2,77]],[[3008,4865],[1,-46]],[[3009,4819],[-6,-1]],[[3003,4818],[-3,6],[-7,36]],[[2373,4941],[0,-65]],[[2373,4876],[-14,0]],[[2359,4876],[-3,0]],[[2356,4876],[0,48]],[[2481,4951],[0,-12],[-4,-18],[2,-18],[0,-22],[3,-17],[2,-27]],[[2484,4837],[-15,0]],[[2469,4837],[0,17]],[[2469,4854],[0,79]],[[2489,4950],[0,-49]],[[2489,4901],[0,-63]],[[2489,4838],[-5,-1]],[[2509,4949],[0,-48]],[[2509,4901],[-8,0]],[[2501,4901],[-12,0]],[[2522,4950],[0,-57]],[[2522,4893],[0,-9],[-13,1]],[[2509,4885],[0,16]],[[2532,4884],[-3,0]],[[2529,4884],[0,9],[-7,0]],[[1845,4899],[0,-65]],[[1845,4834],[0,-16],[-3,0],[0,-17],[-4,1],[0,-31],[-2,0]],[[1836,4771],[-10,0],[0,15],[-7,0],[1,23],[-3,18],[-3,-3]],[[2974,4862],[-16,29],[0,6]],[[2893,4832],[-12,-36],[-6,9]],[[2875,4805],[-1,41]],[[2891,4922],[2,-90]],[[2217,4892],[1,-14],[-2,-15],[-2,-23],[2,0],[3,-29]],[[2219,4811],[-7,0]],[[2212,4811],[-3,0],[0,45],[-2,3],[-4,-13],[-6,0],[-4,5]],[[2193,4851],[-3,0]],[[2190,4851],[-1,25],[0,60]],[[2211,4940],[0,-17],[6,-20],[0,-11]],[[2309,4941],[0,-65]],[[2309,4876],[-11,0]],[[2298,4876],[0,65]],[[2325,4941],[0,-65]],[[2325,4876],[-16,0]],[[2309,4876],[0,0]],[[2245,4941],[0,-48]],[[2245,4893],[-13,-1]],[[2232,4892],[-3,0]],[[2229,4892],[0,49]],[[2393,4941],[0,-65]],[[2393,4876],[0,0]],[[2393,4876],[-10,0]],[[2383,4876],[0,65]],[[2403,4941],[0,-65]],[[2403,4876],[-10,0]],[[2298,4876],[-12,0]],[[2286,4876],[0,65]],[[2383,4876],[-7,0]],[[2376,4876],[-3,0]],[[2229,4892],[-12,0]],[[2259,4941],[0,-65]],[[2259,4876],[-3,0]],[[2256,4876],[-10,0]],[[2246,4876],[-1,17]],[[2420,4924],[0,-48]],[[2420,4876],[-10,-3]],[[2410,4873],[-7,3]],[[2342,4924],[0,-48]],[[2342,4876],[-16,0]],[[2326,4876],[-1,0]],[[2286,4876],[-7,0]],[[2279,4876],[-7,0]],[[2272,4876],[0,64]],[[2272,4876],[-6,0]],[[2266,4876],[-7,0]],[[2438,4901],[4,-25]],[[2442,4876],[-12,0]],[[2430,4876],[-10,0]],[[2086,4877],[0,-65]],[[2086,4812],[-24,-1]],[[2062,4811],[-5,0]],[[2588,4935],[0,-65]],[[2588,4870],[-11,1]],[[2577,4871],[-2,41],[3,25]],[[3034,4900],[4,-11]],[[3038,4889],[1,6]],[[3039,4895],[0,-11]],[[3039,4884],[-1,-19],[-1,14],[-6,-12],[-3,-23],[2,-21],[-4,-5]],[[3026,4818],[-4,13],[-2,20],[-3,-2],[0,16],[-3,4]],[[2190,4851],[-7,10],[-3,-11],[-3,3],[-4,19],[-4,3]],[[2169,4875],[0,28]],[[2001,4811],[-12,0]],[[1989,4811],[-2,0]],[[1987,4811],[0,27],[-3,0],[0,16],[-7,0],[0,16],[-10,6],[0,10],[-3,0],[0,17],[-3,16]],[[3039,4895],[1,4],[2,-42],[-3,-8],[0,35]],[[3043,4893],[-1,-9],[2,-12],[-2,-12],[-2,41],[1,8]],[[3042,4930],[-2,-25],[-2,-16]],[[2601,4935],[1,-65]],[[2602,4870],[-14,0]],[[2615,4935],[0,-66]],[[2615,4869],[-13,1]],[[2628,4934],[0,-64]],[[2628,4870],[-13,-1]],[[2640,4934],[0,-30]],[[2640,4904],[0,-32]],[[2640,4872],[-12,-2]],[[2469,4854],[-17,-1]],[[2452,4853],[0,64],[-1,0]],[[1733,4868],[-4,-3],[-4,17]],[[2922,4857],[-4,-3],[1,-67]],[[2919,4787],[1,-22]],[[2920,4765],[-11,-5],[-5,11]],[[2904,4771],[-4,10],[2,27],[-2,109]],[[2356,4876],[-14,0]],[[2342,4876],[0,0]],[[1782,4893],[-1,-15]],[[1781,4878],[-1,-21],[0,-23],[-2,-4],[0,-75]],[[1778,4755],[0,-53],[2,-1]],[[1780,4701],[0,-26]],[[1780,4675],[-12,0],[0,30],[-9,4],[-4,9],[-1,-11],[-7,20],[-2,12]],[[1745,4739],[8,0],[1,89]],[[2904,4771],[0,-21],[-1,-23]],[[2903,4727],[0,-35]],[[2903,4692],[-4,7],[0,-14],[-6,16],[-3,-6]],[[2890,4695],[0,33],[4,32],[-3,6],[3,13],[-1,53]],[[2452,4853],[-9,1]],[[2443,4854],[-1,22]],[[1987,4811],[0,-5],[-20,-3],[-4,9],[-6,5],[-4,14],[-10,2],[0,15],[-4,21]],[[1865,4891],[0,-33],[1,3],[9,-26]],[[1875,4835],[-25,0]],[[1850,4835],[-5,-1]],[[1692,4531],[-32,-1]],[[1660,4530],[-1,0]],[[1659,4530],[0,141],[-16,-1],[0,80],[1,1],[0,80]],[[1989,4811],[0,-5],[1,-129],[-1,0],[0,-65]],[[1989,4612],[0,-32]],[[1989,4580],[-42,1]],[[1947,4581],[-1,80],[-2,6],[-6,41],[-5,12],[-4,47],[-2,37],[-8,0]],[[2648,4887],[0,-43],[5,-16]],[[2653,4828],[0,-21]],[[2653,4807],[-3,8],[-6,1],[-4,8]],[[2640,4824],[0,48]],[[2640,4904],[4,0],[0,-16],[4,-1]],[[2169,4875],[-4,-9],[0,-76]],[[2165,4790],[-25,0]],[[2140,4790],[-1,17],[0,41]],[[1836,4771],[0,-33]],[[1836,4738],[-6,0],[0,-64],[2,-17],[-2,-9]],[[1830,4648],[-4,11],[-3,-3]],[[1823,4656],[0,34],[2,0],[0,65],[-8,0]],[[1817,4755],[-19,0]],[[1798,4755],[0,23],[-4,2],[0,27],[-4,21],[-1,36],[-4,2],[-4,12]],[[1891,4811],[-4,7],[-2,16],[-4,0]],[[1881,4834],[0,56]],[[2509,4885],[0,-49]],[[2509,4836],[-4,0]],[[2505,4836],[-6,2]],[[2499,4838],[2,63]],[[2499,4838],[-10,0]],[[2970,4830],[-1,-6],[-1,-63]],[[2968,4761],[-7,-2],[-4,6]],[[2957,4765],[-2,9]],[[2955,4774],[1,13],[2,-3],[1,21],[-1,5],[2,35],[-3,6],[1,17],[-3,10],[-2,-6]],[[1582,4800],[2,-6],[2,-27],[-3,-35],[-5,-2],[0,-13]],[[1578,4717],[-4,0],[-4,-11],[-7,-29],[-10,-5],[-2,-9]],[[1551,4663],[-6,-1],[-7,7],[0,9]],[[1538,4678],[-3,1]],[[1535,4679],[0,38],[3,17],[0,32],[-2,0],[0,32],[-3,16],[0,17],[-9,1]],[[1524,4832],[1,47]],[[2529,4884],[0,-65]],[[2529,4819],[-7,0]],[[2522,4819],[0,16],[-13,1]],[[2246,4876],[0,-65]],[[2246,4811],[-11,0]],[[2235,4811],[-2,0]],[[2233,4811],[-1,81]],[[2233,4811],[-14,0]],[[1881,4834],[-6,1]],[[2541,4884],[1,-38],[-3,-27]],[[2539,4819],[-7,0]],[[2532,4819],[-3,0]],[[1739,4868],[0,-32],[1,0],[0,-33],[-1,0],[0,-31]],[[1739,4772],[-8,35],[-2,21],[-5,17]],[[2193,4851],[0,-60]],[[2193,4791],[-28,-1]],[[1798,4755],[-6,0]],[[1792,4755],[-14,0]],[[2955,4774],[-10,2]],[[2945,4776],[0,45],[-2,13],[-3,4],[2,20]],[[2121,4846],[-6,-15],[0,-24]],[[2115,4807],[-29,0]],[[2086,4807],[0,5]],[[2309,4876],[0,-65]],[[2309,4811],[-11,0]],[[2298,4811],[0,65]],[[2326,4876],[0,-65]],[[2326,4811],[-12,0]],[[2314,4811],[-5,0]],[[2393,4876],[0,-65]],[[2393,4811],[-13,0]],[[2380,4811],[-4,0]],[[2376,4811],[0,65]],[[2410,4873],[0,-62]],[[2410,4811],[-3,0]],[[2407,4811],[-14,0]],[[2393,4811],[0,0]],[[2443,4854],[-1,-21],[2,-22]],[[2444,4811],[-11,0]],[[2433,4811],[-3,0]],[[2430,4811],[0,65]],[[2256,4876],[0,-65]],[[2256,4811],[-4,0]],[[2252,4811],[-6,0]],[[2266,4876],[0,-65]],[[2266,4811],[-10,0]],[[2430,4811],[-10,0]],[[2420,4811],[-10,0]],[[2342,4876],[0,-65]],[[2342,4811],[-1,0]],[[2341,4811],[-13,0]],[[2328,4811],[-2,0]],[[2376,4811],[-9,0]],[[2367,4811],[-8,0]],[[2359,4811],[0,65]],[[2298,4811],[-4,0]],[[2294,4811],[-9,0]],[[2285,4811],[-6,0]],[[2279,4811],[0,65]],[[2359,4811],[-5,0]],[[2354,4811],[-12,0]],[[2279,4811],[-8,0]],[[2271,4811],[-5,0]],[[2640,4824],[0,-16],[-5,-3]],[[2635,4805],[-7,0]],[[2628,4805],[0,65]],[[2588,4870],[0,-65]],[[2588,4805],[-12,1]],[[2576,4806],[-2,34],[3,31]],[[2628,4805],[-7,0]],[[2621,4805],[-6,0]],[[2615,4805],[0,64]],[[3026,4818],[-3,-34],[-3,-5],[-3,-48],[-5,12]],[[3012,4743],[1,17],[-5,29],[1,30]],[[2615,4805],[-13,0]],[[2602,4805],[0,65]],[[2602,4805],[0,-32]],[[2602,4773],[-7,-1]],[[2595,4772],[-7,1],[0,32]],[[2945,4776],[-1,-69]],[[2944,4707],[-10,0]],[[2934,4707],[2,26],[-1,42]],[[2935,4775],[-1,33],[4,32],[2,28]],[[1745,4739],[-3,15],[-1,19],[-2,-1]],[[2935,4775],[-7,-10],[-1,27],[-8,-5]],[[2212,4811],[0,-94]],[[2212,4717],[-19,1]],[[2193,4718],[0,73]],[[3003,4818],[0,-34],[-2,-13]],[[3001,4771],[-9,32],[-1,-4],[-4,24]],[[2660,4853],[0,-11],[10,2]],[[2670,4844],[0,-65]],[[2670,4779],[-7,-1],[0,-16],[-3,-3]],[[2660,4759],[-6,0]],[[2654,4759],[-1,48]],[[2653,4828],[6,27],[1,-2]],[[2469,4837],[0,-16]],[[2469,4821],[-10,0],[0,-24]],[[2459,4797],[-15,0]],[[2444,4797],[0,14]],[[2875,4805],[-2,3],[-2,-30],[0,-31]],[[2871,4747],[-3,5]],[[2868,4752],[-6,16],[-1,-7],[-6,-1]],[[2855,4760],[-4,5],[0,31]],[[2851,4796],[6,19],[5,1],[1,28]],[[2140,4790],[0,-48],[1,-24]],[[2141,4718],[-20,0]],[[2121,4718],[-6,0]],[[2115,4718],[0,89]],[[2687,4749],[-14,-2]],[[2673,4747],[0,24],[-3,8]],[[2670,4844],[14,2]],[[2684,4846],[2,-47],[1,-50]],[[1780,4675],[0,-144]],[[1780,4531],[-31,0],[-24,0]],[[1725,4531],[-1,0]],[[2505,4836],[0,-65]],[[2505,4771],[-19,1]],[[2486,4772],[3,17],[0,33],[-4,2],[-1,13]],[[2486,4772],[-4,-16]],[[2482,4756],[-10,-8]],[[2472,4748],[0,73],[-3,0]],[[2522,4819],[0,-65]],[[2522,4754],[-3,0]],[[2519,4754],[-14,1]],[[2505,4755],[0,16]],[[1891,4777],[0,-55]],[[1891,4722],[-15,0]],[[1876,4722],[0,48],[-7,0],[0,16],[-6,0],[-1,11],[-12,0],[0,38]],[[1876,4722],[-13,0]],[[1863,4722],[-17,0],[-3,-13]],[[1843,4709],[-1,-17],[-6,0],[0,46]],[[1604,4832],[0,-162],[13,0],[0,-140]],[[1617,4530],[-16,1]],[[1601,4531],[-23,2]],[[1578,4533],[0,184]],[[1659,4530],[-18,1]],[[1641,4531],[-24,-1]],[[2890,4695],[-1,-1]],[[2889,4694],[-5,-2],[0,13],[-3,0],[0,20],[-6,24],[-4,-2]],[[3001,4771],[0,-2]],[[3001,4769],[-4,-50]],[[2997,4719],[-4,12],[-3,-3],[-1,18],[-5,-7],[-2,17],[-3,-3]],[[2979,4753],[-2,25],[1,22],[3,16]],[[1535,4679],[-3,-3],[-2,-17],[-4,-3],[-1,40],[-2,13],[-7,0]],[[1516,4709],[3,59],[5,64]],[[2979,4753],[0,-11]],[[2979,4742],[-4,0],[0,10],[-8,-4]],[[2967,4748],[1,13]],[[3012,4743],[-1,-10]],[[3011,4733],[-5,0],[1,11],[-6,25]],[[2654,4759],[-7,0],[0,-16]],[[2647,4743],[-12,-1]],[[2635,4742],[0,63]],[[2472,4748],[-6,7]],[[2466,4755],[-7,-5]],[[2459,4750],[0,47]],[[2539,4819],[-3,-53],[1,-12]],[[2537,4754],[-5,0]],[[2532,4754],[0,65]],[[2532,4754],[-10,0]],[[2380,4811],[0,-46]],[[2380,4765],[-13,0]],[[2367,4765],[0,46]],[[2367,4701],[-13,0]],[[2354,4701],[0,64]],[[2354,4765],[0,46]],[[2367,4765],[0,-64]],[[2341,4765],[-13,0]],[[2328,4765],[0,46]],[[2341,4811],[0,-46]],[[2354,4765],[-13,0]],[[2393,4765],[-13,0]],[[2393,4811],[0,-46]],[[2328,4765],[-14,1]],[[2314,4766],[0,45]],[[2086,4807],[0,-88]],[[2086,4719],[0,-74]],[[2086,4645],[-17,0]],[[2069,4645],[-6,0]],[[2063,4645],[-1,166]],[[2407,4757],[-14,0]],[[2393,4757],[0,8]],[[2407,4811],[0,-54]],[[2314,4766],[-19,0]],[[2295,4766],[1,25],[-2,20]],[[2420,4811],[0,-54]],[[2420,4757],[-13,0]],[[2444,4797],[0,-14],[4,-17],[-3,-33]],[[2445,4733],[-12,0]],[[2433,4733],[0,78]],[[2433,4733],[-13,0]],[[2420,4733],[0,24]],[[2295,4766],[2,-7],[1,-26]],[[2298,4733],[-10,0]],[[2288,4733],[-3,0]],[[2285,4733],[0,78]],[[2063,4645],[-11,-1],[0,-32]],[[2052,4612],[-2,0],[-1,-26],[-7,2],[2,24],[-14,0]],[[2030,4612],[0,0]],[[2030,4612],[0,198]],[[2235,4811],[1,-24],[16,-32]],[[2252,4755],[1,-6]],[[2253,4749],[-1,-35],[-2,-26]],[[2250,4688],[-4,8]],[[2246,4696],[-5,22]],[[2241,4718],[-10,30],[-1,16],[-5,13],[-2,20],[-4,14]],[[2285,4733],[-7,0]],[[2278,4733],[0,16],[-7,0]],[[2271,4749],[0,62]],[[2271,4749],[-6,0]],[[2265,4749],[-12,0]],[[2252,4755],[0,56]],[[2030,4612],[-16,0],[-25,0]],[[2241,4718],[-21,-1]],[[2220,4717],[-8,0]],[[2115,4718],[-14,0]],[[2101,4718],[-15,1]],[[2595,4772],[0,-16]],[[2595,4756],[-3,0],[0,-16],[-10,0]],[[2582,4740],[-6,66]],[[2621,4805],[1,-65]],[[2622,4740],[-14,0]],[[2608,4740],[0,33],[-6,0]],[[1947,4581],[-28,1]],[[1919,4582],[-14,1],[0,32],[-1,0],[0,147]],[[2635,4742],[0,-2]],[[2635,4740],[-13,0]],[[2459,4750],[-11,-34],[-2,0]],[[2446,4716],[-1,17]],[[2855,4760],[-1,-41],[2,-30],[2,1],[2,-15]],[[2860,4675],[1,-27]],[[2861,4648],[-11,0]],[[2850,4648],[-2,19],[0,55]],[[2848,4722],[0,59]],[[2848,4781],[3,15]],[[2934,4707],[-1,-30]],[[2933,4677],[-4,0]],[[2929,4677],[-2,24],[-6,9]],[[2921,4710],[0,5]],[[2921,4715],[-1,50]],[[2165,4790],[0,-73]],[[2165,4717],[-24,1]],[[2193,4718],[-28,-1]],[[2812,4786],[0,-43]],[[2812,4743],[-13,-1]],[[2799,4742],[0,45]],[[2799,4787],[13,-1]],[[2799,4742],[0,-9]],[[2799,4733],[-7,0],[-4,-11]],[[2788,4722],[-5,12],[0,33],[7,11],[9,9]],[[2830,4769],[0,-45]],[[2830,4724],[-3,0],[0,-17],[-3,0]],[[2824,4707],[-4,1],[0,8],[-5,0]],[[2815,4716],[0,27],[-3,0]],[[2812,4786],[7,-5],[5,-19],[6,7]],[[2848,4722],[-7,-2]],[[2841,4720],[-5,5],[-6,-1]],[[2830,4769],[6,3],[4,-5],[8,14]],[[2673,4747],[0,-49]],[[2673,4698],[-3,-1]],[[2670,4697],[-10,-1]],[[2660,4696],[0,63]],[[1919,4582],[0,-129]],[[1919,4453],[-28,0]],[[1891,4453],[0,79]],[[1891,4532],[0,95]],[[1891,4627],[0,95]],[[2957,4765],[-2,-26],[-3,1],[0,-35],[2,-1],[0,-35]],[[2954,4669],[-3,1]],[[2951,4670],[-7,0]],[[2944,4670],[0,37]],[[2505,4755],[0,-66]],[[2505,4689],[-10,0]],[[2495,4689],[-13,2]],[[2482,4691],[0,65]],[[2608,4740],[1,-65]],[[2609,4675],[-7,0]],[[2602,4675],[-7,0]],[[2595,4675],[0,81]],[[2921,4715],[-12,0],[-6,12]],[[3011,4733],[2,7],[3,-14],[-3,-32]],[[3013,4694],[-6,-2],[-1,-10],[-5,-12]],[[3001,4670],[-5,15],[-1,20],[2,14]],[[2868,4752],[2,-20],[1,-53]],[[2871,4679],[-11,-4]],[[2967,4748],[0,-28],[-3,-29],[3,-24]],[[2967,4667],[-13,2]],[[2314,4766],[0,-65]],[[2314,4701],[-19,0]],[[2295,4701],[1,26],[2,6]],[[2328,4765],[0,-64]],[[2328,4701],[-14,0]],[[2393,4757],[0,-56]],[[2393,4701],[-13,0]],[[2380,4701],[0,64]],[[2380,4701],[-13,0]],[[2354,4701],[-13,0]],[[2341,4701],[0,64]],[[2341,4701],[-13,0]],[[2660,4696],[-6,-2],[0,-17]],[[2654,4677],[-7,0]],[[2647,4677],[0,66]],[[2420,4733],[0,-33]],[[2420,4700],[-13,1]],[[2407,4701],[0,56]],[[2407,4701],[-14,0]],[[2482,4691],[0,-8]],[[2482,4683],[-16,0]],[[2466,4683],[0,72]],[[2466,4683],[0,-57]],[[2466,4626],[-6,0]],[[2460,4626],[-2,23],[-5,8]],[[2453,4657],[-5,15],[-2,44]],[[3001,4670],[-1,-1]],[[3000,4669],[-1,-8],[-17,3]],[[2982,4664],[0,0]],[[2982,4664],[-3,43],[-1,1],[1,34]],[[2595,4675],[-12,0]],[[2583,4675],[0,41],[-1,24]],[[1817,4755],[0,-65],[-2,-16],[-4,0]],[[1811,4674],[-4,8],[-8,0],[-1,8],[-6,0]],[[1792,4690],[0,65]],[[1792,4690],[-1,-38]],[[1791,4652],[-5,4],[-4,23],[2,12],[-4,10]],[[2519,4754],[-1,-65]],[[2518,4689],[-6,0]],[[2512,4689],[-7,0]],[[1823,4656],[-2,-2],[-3,-23],[-7,0]],[[1811,4631],[0,43]],[[2532,4754],[0,-65]],[[2532,4689],[-7,-1]],[[2525,4688],[-7,1]],[[2537,4754],[1,-66]],[[2538,4688],[-6,1]],[[2889,4694],[-1,-24]],[[2888,4670],[-17,-4]],[[2871,4666],[0,13]],[[2982,4664],[-10,2]],[[2972,4666],[-5,1]],[[2278,4733],[0,-53]],[[2278,4680],[-4,13],[-5,-3]],[[2269,4690],[-4,0]],[[2265,4690],[0,59]],[[2265,4690],[-7,2],[-2,-17],[-2,-1],[-4,14]],[[2647,4677],[-6,-1]],[[2641,4676],[-6,0]],[[2635,4676],[0,64]],[[2815,4716],[-1,-24]],[[2814,4692],[-15,1]],[[2799,4693],[0,40]],[[2622,4740],[0,-65]],[[2622,4675],[-7,0]],[[2615,4675],[-6,0]],[[2635,4676],[-7,-1]],[[2628,4675],[-6,0]],[[1843,4709],[1,-7],[4,11],[2,-12],[1,-33],[3,-16],[-1,-27]],[[1853,4625],[-2,0],[0,-16],[-5,0],[0,-16],[-10,-1]],[[1836,4592],[0,49],[-6,7]],[[2785,4730],[2,-7],[-1,-13],[-1,20]],[[2799,4693],[0,-62]],[[2799,4631],[-11,-18],[-5,19]],[[2783,4632],[-2,6]],[[2781,4638],[2,22],[6,18],[-2,32],[1,12]],[[2295,4701],[-2,-27],[0,-11],[3,-14],[1,-13]],[[2297,4636],[1,-13]],[[2298,4623],[-5,6]],[[2293,4629],[-2,24],[-3,10]],[[2288,4663],[0,70]],[[2288,4663],[-6,10]],[[2282,4673],[-4,7]],[[2433,4733],[0,-82]],[[2433,4651],[-13,0]],[[2420,4651],[0,49]],[[2453,4657],[0,-5],[-7,0]],[[2446,4652],[-13,-1]],[[2921,4710],[1,-11],[-5,-19]],[[2917,4680],[-6,-4],[-5,10]],[[2906,4686],[-3,6]],[[2841,4720],[0,-46]],[[2841,4674],[-9,-1],[-2,-34]],[[2830,4639],[-3,0]],[[2827,4639],[0,17],[-3,1],[0,50]],[[1863,4722],[-3,-23],[2,-38],[3,4],[2,-19],[1,-37]],[[1868,4609],[-1,-30],[-6,6]],[[1861,4585],[-2,12],[-4,-5],[1,24],[-3,9]],[[1891,4627],[-5,-6],[0,17],[-11,4],[1,-33]],[[1876,4609],[-8,0]],[[2850,4648],[2,-14],[-3,-1]],[[2849,4633],[-6,-1]],[[2843,4632],[0,21],[-2,21]],[[2103,4613],[0,-65],[1,-16]],[[2104,4532],[-18,0]],[[2086,4532],[0,113]],[[2101,4718],[1,-40],[0,-65],[1,0]],[[2143,4549],[-2,-16]],[[2141,4533],[-17,-1]],[[2124,4532],[0,0]],[[2124,4532],[-1,17],[-1,64]],[[2122,4613],[0,65],[-1,40]],[[2141,4718],[0,-104],[1,0],[0,-64],[1,-1]],[[2122,4613],[-19,0]],[[2246,4696],[0,-23]],[[2246,4673],[-8,4],[-8,12],[-2,9],[-8,-17]],[[2220,4681],[0,36]],[[2220,4681],[-8,-16],[-4,3]],[[2208,4668],[-13,14],[-2,7]],[[2193,4689],[0,29]],[[2193,4689],[1,-142]],[[2194,4547],[-2,1]],[[2192,4548],[-17,0]],[[2175,4548],[-16,1]],[[2159,4549],[-16,0]],[[1578,4533],[-27,-1]],[[1551,4532],[0,131]],[[2827,4639],[-5,1],[-2,-21]],[[2820,4619],[-3,9],[-6,1]],[[2811,4629],[3,27],[0,36]],[[2944,4670],[-2,-43]],[[2942,4627],[-12,-9]],[[2930,4618],[1,27],[2,32]],[[2929,4677],[-10,-10]],[[2919,4667],[-3,-2],[1,15]],[[1538,4678],[-3,-29],[-2,-24],[-3,-1],[-1,-26],[4,-1],[3,-22],[-2,-17],[1,-27]],[[1535,4531],[-11,0]],[[1524,4531],[-4,20],[-2,43],[1,45],[-1,16],[-2,13],[-2,20],[2,21]],[[1791,4652],[7,-9],[7,-19],[4,6]],[[1809,4630],[-2,-3],[0,-18],[-6,0],[0,-79]],[[1801,4530],[-21,1]],[[2314,4701],[0,-65]],[[2314,4636],[-17,0]],[[2341,4701],[0,-65]],[[2341,4636],[-13,0]],[[2328,4636],[0,65]],[[2328,4636],[-10,0]],[[2318,4636],[-4,0]],[[2354,4701],[0,-49]],[[2354,4652],[0,-16]],[[2354,4636],[-13,0]],[[2380,4701],[0,-66]],[[2380,4635],[-13,0]],[[2367,4635],[0,17]],[[2367,4652],[0,49]],[[2367,4652],[-13,0]],[[2393,4701],[0,-66]],[[2393,4635],[-13,0]],[[2407,4701],[0,-50]],[[2407,4651],[0,-16]],[[2407,4635],[-14,0]],[[2420,4651],[-13,0]],[[2906,4686],[0,-38],[-2,-20]],[[2904,4628],[-4,-1],[-10,-29],[-6,-8]],[[2884,4590],[2,18],[-1,19],[2,10],[1,33]],[[2246,4673],[0,-60]],[[2246,4613],[0,-65]],[[2246,4548],[-12,0]],[[2234,4548],[-13,0]],[[2221,4548],[-1,0]],[[2220,4548],[0,129],[0,4]],[[2681,4659],[-3,-13],[-1,-30]],[[2677,4616],[-6,-1]],[[2671,4615],[-1,82]],[[2673,4698],[7,1],[1,-40]],[[2671,4615],[-13,-2]],[[2658,4613],[-4,-1]],[[2654,4612],[0,65]],[[3013,4694],[1,-30],[5,-13],[-2,-9],[-6,-10],[-1,-15],[-2,-5]],[[3008,4612],[-1,2]],[[3007,4614],[-1,30],[-6,10],[0,15]],[[2269,4690],[0,-77]],[[2269,4613],[-10,0]],[[2259,4613],[-13,0]],[[2282,4673],[0,-76]],[[2282,4597],[-10,0]],[[2272,4597],[0,16],[-3,0]],[[2811,4629],[-7,0]],[[2804,4629],[-5,2]],[[2495,4689],[0,-64]],[[2495,4625],[-1,0]],[[2494,4625],[-12,1]],[[2482,4626],[0,57]],[[1811,4631],[-2,-1]],[[2512,4689],[0,-66]],[[2512,4623],[-5,1]],[[2507,4624],[-12,1]],[[2208,4668],[0,-120]],[[2208,4548],[0,0]],[[2208,4548],[-14,-1]],[[2525,4688],[0,-43]],[[2525,4645],[0,-21]],[[2525,4624],[-11,-1]],[[2514,4623],[-2,0]],[[2538,4688],[2,-10],[-1,-22]],[[2539,4656],[-11,0],[0,-11],[-3,0]],[[2919,4667],[-2,-33],[0,-26]],[[2917,4608],[-5,-10]],[[2912,4598],[-5,13],[-3,17]],[[2930,4618],[-13,-10]],[[2482,4626],[-2,0]],[[2480,4626],[-14,0]],[[2220,4548],[-12,0]],[[2864,4608],[-3,-1]],[[2861,4607],[0,41]],[[2871,4666],[1,-57]],[[2872,4609],[-8,-1]],[[1551,4532],[-8,0]],[[1543,4532],[-8,-1]],[[2654,4612],[-13,-1]],[[2641,4611],[0,0]],[[2641,4611],[0,65]],[[2641,4611],[-13,-1]],[[2628,4610],[0,65]],[[2628,4610],[-3,0]],[[2625,4610],[-10,0]],[[2615,4610],[0,65]],[[2615,4610],[-6,0]],[[2609,4610],[-7,0]],[[2602,4610],[0,65]],[[2602,4610],[-6,0]],[[2596,4610],[-14,0]],[[2582,4610],[1,65]],[[2843,4632],[0,-14],[-6,4]],[[2837,4622],[-1,17],[-6,0]],[[2293,4629],[-3,0],[0,-46]],[[2290,4583],[-2,-2]],[[2288,4581],[-6,0],[0,16]],[[2951,4670],[2,-19],[-1,-16]],[[2952,4635],[0,-45]],[[2952,4590],[-2,-51]],[[2950,4539],[-12,2]],[[2938,4541],[0,0]],[[2938,4541],[0,7],[4,79]],[[2884,4590],[0,-22]],[[2884,4568],[-6,0],[0,10],[-6,2],[0,29]],[[2971,4596],[-2,14],[-9,-3],[0,9],[-5,6],[-3,13]],[[2972,4666],[1,-11],[0,-28],[-2,-31]],[[3007,4614],[-1,-9]],[[3006,4605],[-1,-1]],[[3005,4604],[1,-4]],[[3006,4600],[0,0]],[[3006,4600],[-3,-7]],[[3003,4593],[0,-5]],[[3003,4588],[-1,-4]],[[3002,4584],[-4,6],[0,-21],[-4,-8]],[[2994,4561],[-3,7],[0,12],[3,13],[-4,4],[2,11],[0,25],[-3,-3],[0,15],[-5,5],[-2,14]],[[2994,4561],[0,-26]],[[2994,4535],[-9,-2]],[[2985,4533],[-8,4]],[[2977,4537],[-1,0]],[[2976,4537],[0,25],[-4,4],[1,11]],[[2973,4577],[1,12],[-3,7]],[[1836,4592],[0,-61]],[[1836,4531],[-29,-1]],[[1807,4530],[-6,0]],[[2460,4626],[0,-5],[5,-18]],[[2465,4603],[-6,0],[0,-17],[-6,0]],[[2453,4586],[-7,1]],[[2446,4587],[0,65]],[[2539,4656],[0,-33]],[[2539,4623],[-11,1]],[[2528,4624],[-3,0]],[[2446,4587],[-6,0]],[[2440,4587],[-7,0]],[[2433,4587],[0,64]],[[2367,4635],[1,-16],[0,-48]],[[2368,4571],[-6,0]],[[2362,4571],[-7,-1]],[[2355,4570],[0,50],[-1,16]],[[2433,4587],[-6,0]],[[2427,4587],[-7,0]],[[2420,4587],[0,64]],[[2420,4587],[-6,0]],[[2414,4587],[-7,0]],[[2407,4587],[0,48]],[[2861,4607],[0,-20],[-4,4],[0,-11],[-4,4]],[[2853,4584],[-2,0]],[[2851,4584],[-2,0],[0,49]],[[2086,4532],[0,-57]],[[2086,4475],[0,-25]],[[2086,4450],[-17,0],[0,17]],[[2069,4467],[0,178]],[[2069,4467],[-17,1]],[[2052,4468],[0,144]],[[1891,4532],[-13,-1]],[[1878,4531],[-2,18],[-1,21],[2,13],[-1,26]],[[2837,4622],[0,-40],[4,1]],[[2841,4583],[0,-52]],[[2841,4531],[-18,0]],[[2823,4531],[-4,0]],[[2819,4531],[1,88]],[[2783,4632],[0,-101]],[[2783,4531],[-16,0]],[[2767,4531],[-4,0],[0,51]],[[2763,4582],[6,17],[7,26],[5,13]],[[2318,4636],[0,-16],[2,0],[0,-49]],[[2320,4571],[-19,1]],[[2301,4572],[0,11]],[[2301,4583],[-2,12],[0,27],[-1,1]],[[2341,4636],[1,-16],[0,-49]],[[2342,4571],[-6,0]],[[2336,4571],[-7,0]],[[2329,4571],[0,49],[-1,16]],[[2329,4571],[-9,0]],[[2355,4570],[-6,1]],[[2349,4571],[-7,0]],[[2380,4635],[1,-16],[0,-49]],[[2381,4570],[-6,0]],[[2375,4570],[-7,1]],[[2393,4635],[1,-65]],[[2394,4570],[-6,0]],[[2388,4570],[-7,0]],[[2407,4587],[-6,0],[0,-16]],[[2401,4571],[-7,-1]],[[2973,4577],[-4,-11],[-1,9],[-5,-4],[-1,12],[-2,-17],[-6,10],[1,17],[-3,-3]],[[2851,4584],[-10,-1]],[[2804,4629],[0,-98]],[[2804,4531],[-17,0]],[[2787,4531],[-4,0]],[[2301,4583],[-11,0]],[[2819,4531],[-12,0]],[[2807,4531],[-3,0]],[[2912,4598],[-3,-29],[2,-6]],[[2911,4563],[-9,-28]],[[2902,4535],[-10,-31]],[[2892,4504],[-3,2],[-3,25]],[[2886,4531],[-2,8],[0,29]],[[2480,4626],[0,-58]],[[2480,4568],[-11,0]],[[2469,4568],[-2,6],[-2,29]],[[2938,4541],[-1,-14],[-5,6],[-6,13]],[[2926,4546],[0,9]],[[2926,4555],[4,29],[0,34]],[[2486,4569],[-6,-1]],[[2494,4625],[1,-56]],[[2495,4569],[-9,0]],[[2507,4624],[0,-64]],[[2507,4560],[-6,-1],[0,11],[-6,-1]],[[1861,4585],[0,-54]],[[1861,4531],[-1,0]],[[1860,4531],[-24,0]],[[2528,4624],[0,-64]],[[2528,4560],[-1,0]],[[2527,4560],[-10,0]],[[2517,4560],[-3,0]],[[2514,4560],[0,63]],[[2514,4560],[-7,0]],[[2540,4560],[-12,0]],[[2539,4623],[-1,-35],[2,-28]],[[2926,4555],[-3,8],[-1,-14],[-7,4],[-4,10]],[[3006,4600],[0,-16]],[[3006,4584],[-2,-10],[-2,10]],[[3008,4612],[-2,-7]],[[2272,4597],[0,-49]],[[2272,4548],[-13,0]],[[2259,4548],[0,65]],[[2124,4532],[-19,0]],[[2105,4532],[-1,0]],[[2259,4548],[0,-32]],[[2259,4516],[-13,0]],[[2246,4516],[0,32]],[[2658,4547],[-7,0]],[[2651,4547],[-10,-2]],[[2641,4545],[0,66]],[[2658,4613],[0,-66]],[[2030,4612],[0,-193],[-7,0],[0,-74]],[[2023,4345],[-15,1]],[[2008,4346],[-13,0]],[[1995,4346],[-17,0]],[[1978,4346],[0,122],[12,0],[0,80],[-1,32]],[[2052,4468],[0,-123]],[[2052,4345],[-26,0]],[[2026,4345],[-3,0]],[[1878,4531],[-17,0]],[[2641,4545],[-6,0]],[[2635,4545],[-10,0]],[[2625,4545],[0,65]],[[2625,4545],[-3,0]],[[2622,4545],[-13,0]],[[2609,4545],[0,65]],[[2596,4610],[0,-66]],[[2596,4544],[-13,1]],[[2583,4545],[0,32],[-4,0]],[[2579,4577],[3,33]],[[2609,4545],[-13,-1]],[[2886,4531],[-3,0]],[[2883,4531],[-18,0]],[[2865,4531],[0,35],[1,8],[-2,34]],[[2865,4531],[-1,0]],[[2864,4531],[-11,0]],[[2853,4531],[0,53]],[[2469,4568],[4,-15],[0,-16]],[[2473,4537],[-20,1]],[[2453,4538],[0,48]],[[2288,4581],[0,-33]],[[2288,4548],[-6,0]],[[2282,4548],[-10,0]],[[3012,4581],[2,-5]],[[3012,4581],[0,0]],[[3006,4584],[3,-6]],[[3009,4578],[1,-17],[-5,-12]],[[3005,4549],[-8,-20]],[[2997,4529],[-3,6]],[[2976,4537],[-11,1]],[[2965,4538],[-13,1]],[[2952,4539],[-2,0]],[[3014,4576],[4,-28],[-2,-15],[4,-15],[0,-22]],[[3020,4496],[-2,-12]],[[3018,4484],[-3,-2],[-1,-15],[-2,-5]],[[3012,4462],[-2,31],[-3,-3],[1,16],[-2,19],[-1,24]],[[3009,4578],[3,3]],[[2427,4587],[0,-81]],[[2427,4506],[-13,0]],[[2414,4506],[0,81]],[[2440,4587],[0,-65]],[[2440,4522],[0,-17]],[[2440,4505],[-13,1]],[[2414,4506],[-13,0]],[[2401,4506],[0,65]],[[2453,4538],[0,-17]],[[2453,4521],[-13,1]],[[2853,4531],[-11,0]],[[2842,4531],[-1,0]],[[2301,4572],[2,-20],[0,-12]],[[2303,4540],[-1,-6],[-7,0]],[[2295,4534],[0,14],[-7,0]],[[1978,4346],[-31,-1]],[[1947,4345],[-27,0]],[[1920,4345],[-1,0]],[[1919,4345],[0,108]],[[2767,4531],[0,-27]],[[2767,4504],[-25,-1]],[[2742,4503],[0,24]],[[2742,4527],[5,11],[16,44]],[[2583,4545],[0,-58]],[[2583,4487],[-8,0]],[[2575,4487],[-9,0]],[[2566,4487],[6,25],[4,40],[3,25]],[[2320,4571],[0,-65]],[[2320,4506],[-13,1]],[[2307,4507],[0,20],[-4,13]],[[2401,4506],[-13,0]],[[2388,4506],[0,64]],[[2349,4571],[0,-65]],[[2349,4506],[-4,0]],[[2345,4506],[-9,0]],[[2336,4506],[0,65]],[[2336,4506],[-13,0]],[[2323,4506],[-3,0]],[[2375,4570],[0,-64]],[[2375,4506],[-4,0]],[[2371,4506],[-9,0]],[[2362,4506],[0,65]],[[2362,4506],[-4,0]],[[2358,4506],[-9,0]],[[2388,4506],[-4,0]],[[2384,4506],[-9,0]],[[2507,4560],[0,-49]],[[2507,4511],[-11,0],[-8,2]],[[2488,4513],[-1,6]],[[2487,4519],[-1,50]],[[2487,4519],[-13,-1]],[[2474,4518],[-1,19]],[[2926,4546],[-1,-91]],[[2925,4455],[-5,-1],[-3,9],[-3,-8]],[[2914,4455],[-1,10],[-5,19],[3,24],[-9,27]],[[2540,4560],[2,-15],[2,-43],[3,-25]],[[2547,4477],[0,-45]],[[2547,4432],[-8,1],[0,16],[-3,0],[0,16],[-3,8]],[[2533,4473],[3,6],[0,51],[-10,-1]],[[2526,4529],[1,31]],[[2517,4560],[0,-81]],[[2517,4479],[0,-16]],[[2517,4463],[-10,-1]],[[2507,4462],[0,49]],[[2526,4529],[0,-49]],[[2526,4480],[-9,-1]],[[2159,4549],[0,-65]],[[2159,4484],[-15,-1]],[[2144,4483],[-3,0],[0,50]],[[3012,4462],[-2,-16],[-6,-8]],[[3004,4438],[0,30],[-2,3]],[[3002,4471],[-1,7]],[[3001,4478],[-2,12]],[[2999,4490],[-2,39]],[[2175,4548],[0,-65]],[[2175,4483],[-15,1]],[[2160,4484],[-1,0]],[[2295,4534],[0,-51]],[[2295,4483],[-10,1]],[[2285,4484],[-3,0]],[[2282,4484],[0,64]],[[2272,4548],[0,-64]],[[2272,4484],[-13,-1]],[[2259,4483],[0,33]],[[2282,4484],[-6,0]],[[2276,4484],[-4,0]],[[2192,4548],[0,-65]],[[2192,4483],[-13,0]],[[2179,4483],[-4,0]],[[2246,4516],[0,-33]],[[2246,4483],[-12,0]],[[2234,4483],[0,0]],[[2234,4483],[0,65]],[[2208,4548],[0,-65]],[[2208,4483],[-16,0]],[[2192,4483],[0,0]],[[2221,4548],[0,-65]],[[2221,4483],[-13,0]],[[2234,4483],[-13,0]],[[2221,4483],[0,0]],[[2651,4547],[1,-67]],[[2652,4480],[-4,-1]],[[2648,4479],[-13,-2]],[[2635,4477],[0,68]],[[2938,4541],[-1,-72]],[[2937,4469],[0,-26]],[[2937,4443],[-11,-7],[-2,-9]],[[2924,4427],[1,28]],[[3020,4496],[4,-12],[4,-3],[7,15],[-3,45],[4,-21],[1,-32],[-2,-18],[-11,-9],[-2,-13],[-5,-4],[1,40]],[[2622,4545],[0,-58]],[[2622,4487],[-10,0]],[[2612,4487],[-3,0]],[[2609,4487],[0,58]],[[2635,4477],[-1,0]],[[2634,4477],[-11,-2]],[[2623,4475],[-1,12]],[[2609,4487],[-10,0]],[[2599,4487],[-4,0]],[[2595,4487],[1,7],[0,50]],[[2595,4487],[-7,0]],[[2588,4487],[-5,0]],[[2952,4539],[-1,-14],[4,1],[-2,-31],[-2,-1],[1,-30]],[[2952,4464],[-5,-23],[-4,-8]],[[2943,4433],[-4,4],[-2,32]],[[2307,4507],[2,-13],[-2,-22]],[[2307,4472],[-9,1]],[[2298,4473],[0,10],[-3,0]],[[2965,4538],[0,-42],[1,1],[2,-40]],[[2968,4457],[-1,-3]],[[2967,4454],[-1,12],[-6,-4],[-1,-9]],[[2959,4453],[-6,-4],[-1,15]],[[2977,4537],[0,-13],[-3,0],[0,-23],[1,-15],[-2,-8]],[[2973,4478],[-5,-21]],[[2474,4518],[-3,-27]],[[2471,4491],[-2,-10]],[[2469,4481],[-4,8],[-7,-7],[-5,7]],[[2453,4489],[0,32]],[[2985,4533],[0,-53]],[[2985,4480],[1,-16]],[[2986,4464],[-5,-1],[-6,6],[-2,9]],[[2999,4490],[-1,-5]],[[2998,4485],[-1,3]],[[2997,4488],[-2,-6],[-10,-2]],[[2914,4455],[-3,-16],[-8,-2],[0,-13]],[[2903,4424],[-7,10],[-2,23]],[[2894,4457],[1,28],[-3,19]],[[1601,4531],[0,-152]],[[1601,4379],[-29,0]],[[1572,4379],[0,26],[-2,9],[-7,-31],[-2,0],[-3,-17],[2,-22],[-3,2],[-3,14],[-3,-1],[-5,20]],[[1546,4379],[-2,35],[-5,2]],[[1539,4416],[1,10],[-2,29],[1,19],[-1,26],[4,13],[1,19]],[[2144,4483],[0,-64]],[[2144,4419],[-2,0],[0,-33]],[[2142,4386],[-16,0]],[[2126,4386],[-1,41]],[[2125,4427],[0,57],[-1,11],[0,37]],[[2125,4427],[-20,0]],[[2105,4427],[0,48]],[[2105,4475],[0,57]],[[1878,4531],[0,-27],[2,-32],[0,-28],[-2,-20]],[[1878,4424],[-4,1],[-2,-10],[-4,10]],[[1868,4425],[-1,21],[-2,-1],[-2,30],[0,31],[-3,25]],[[2105,4475],[-19,0]],[[1891,4453],[0,-61]],[[1891,4392],[-6,-20]],[[1885,4372],[1,13],[-3,27],[-2,0]],[[1881,4412],[-3,12]],[[2864,4531],[1,-64]],[[2865,4467],[-2,-1],[-1,-20]],[[2862,4446],[-17,9]],[[2845,4455],[-1,1]],[[2844,4456],[-2,75]],[[2844,4456],[-3,-8],[-17,-2]],[[2824,4446],[-1,85]],[[1868,4425],[-2,1],[-2,-18],[-6,0],[-7,-49]],[[1851,4359],[-9,-14],[-35,0]],[[1807,4345],[0,185]],[[1725,4345],[-1,-66],[-6,0],[-1,-22]],[[1717,4257],[-1,29],[-9,0],[0,33],[-32,-1],[0,20],[-14,0]],[[1661,4338],[-1,0],[0,192]],[[1725,4531],[0,-186]],[[1807,4345],[0,-164]],[[1807,4181],[-34,1],[-16,1]],[[1757,4183],[-4,0],[-5,100],[0,62],[-11,0]],[[1737,4345],[-12,0]],[[2807,4531],[0,-71]],[[2807,4460],[-6,-3]],[[2801,4457],[-2,6],[-13,-2]],[[2786,4461],[1,70]],[[2824,4446],[0,-12]],[[2824,4434],[-11,0]],[[2813,4434],[-2,0],[-4,26]],[[1539,4416],[-3,0],[0,16],[-8,0]],[[1528,4432],[-3,51],[-2,8],[1,40]],[[2894,4457],[-8,-67]],[[2886,4390],[-4,-2]],[[2882,4388],[2,5],[-1,72]],[[2883,4465],[0,66]],[[2883,4465],[-7,0]],[[2876,4465],[-11,2]],[[2786,4461],[-16,1]],[[2770,4462],[-3,-1]],[[2767,4461],[0,43]],[[1641,4531],[0,-152]],[[1641,4379],[-37,0]],[[1604,4379],[-3,0]],[[1661,4338],[0,-83],[-1,0],[0,-96],[3,0]],[[1663,4159],[0,-36],[1,-4],[0,-29]],[[1664,4090],[-3,-2]],[[1661,4088],[-5,-7],[-4,-13],[-2,2],[1,-36],[-2,-15]],[[1649,4019],[-4,-16],[-4,0]],[[1641,4003],[0,28]],[[1641,4031],[0,25]],[[1641,4056],[0,51]],[[1641,4107],[0,272]],[[2533,4473],[0,8],[-7,-1]],[[2526,4480],[0,0]],[[2742,4503],[0,-65]],[[2742,4438],[-13,1]],[[2729,4439],[0,39]],[[2729,4478],[0,26]],[[2729,4504],[13,23]],[[2453,4489],[0,-33]],[[2453,4456],[-13,1]],[[2440,4457],[0,48]],[[2488,4513],[0,-59]],[[2488,4454],[-6,0]],[[2482,4454],[-9,0]],[[2473,4454],[-2,37]],[[2259,4483],[0,-40]],[[2259,4443],[-7,-8],[-5,0]],[[2247,4435],[-1,48]],[[2507,4462],[-6,0],[0,-8]],[[2501,4454],[-13,0]],[[2323,4506],[0,-49],[1,-18]],[[2324,4439],[-13,1]],[[2311,4440],[-3,4],[-1,28]],[[2427,4506],[0,-66]],[[2427,4440],[-3,0]],[[2424,4440],[-10,0]],[[2414,4440],[0,66]],[[2371,4506],[1,-65]],[[2372,4441],[-12,-2]],[[2360,4439],[-2,18],[0,49]],[[2336,4506],[0,-49],[1,-18]],[[2337,4439],[-3,0]],[[2334,4439],[-10,0]],[[2345,4506],[1,-48],[1,-19]],[[2347,4439],[-10,0]],[[2414,4440],[-3,0]],[[2411,4440],[-10,0]],[[2401,4440],[0,66]],[[2384,4506],[1,-66]],[[2385,4440],[0,-3]],[[2385,4437],[-13,4]],[[2401,4440],[-3,0]],[[2398,4440],[-13,0]],[[2360,4439],[-13,0]],[[2440,4457],[0,-33]],[[2440,4424],[-4,0]],[[2436,4424],[-1,16],[-8,0]],[[2729,4478],[-3,0],[0,-13],[-6,0],[0,-14],[-2,0]],[[2718,4451],[-3,12]],[[2715,4463],[6,24],[8,17]],[[2767,4461],[-6,0],[-4,-25]],[[2757,4436],[-15,0]],[[2742,4436],[0,2]],[[2473,4454],[-1,-8],[-6,-16],[0,-24]],[[2466,4406],[-18,1]],[[2448,4407],[0,0]],[[2448,4407],[1,16],[7,7]],[[2456,4430],[3,1],[9,24],[1,26]],[[3001,4478],[-1,-13],[-2,20]],[[2456,4430],[0,26],[-3,0]],[[2997,4488],[-1,-22]],[[2996,4466],[-2,-9],[-8,-1]],[[2986,4456],[0,8]],[[2599,4487],[0,-44]],[[2599,4443],[0,-16]],[[2599,4427],[-11,-1]],[[2588,4426],[0,8]],[[2588,4434],[0,53]],[[2588,4434],[-12,0],[0,-8]],[[2576,4426],[-1,0]],[[2575,4426],[1,40],[-1,21]],[[2575,4426],[-5,-6],[-3,-22],[-4,-9]],[[2563,4389],[0,88]],[[2563,4477],[3,10]],[[2623,4444],[-11,-1]],[[2612,4443],[0,44]],[[2623,4475],[0,-31]],[[2612,4443],[-13,0]],[[2285,4484],[0,-54]],[[2285,4430],[-7,-15],[-2,2]],[[2276,4417],[0,67]],[[2276,4417],[-4,2]],[[2272,4419],[-6,-12]],[[2266,4407],[0,12],[-3,0]],[[2263,4419],[0,24],[-4,0]],[[2298,4473],[0,-30],[3,-25]],[[2301,4418],[-4,0]],[[2297,4418],[-2,8],[-10,4]],[[2285,4430],[0,0]],[[2179,4483],[0,-65]],[[2179,4418],[-15,1]],[[2164,4419],[-4,0]],[[2160,4419],[0,65]],[[2160,4419],[-16,0]],[[2247,4435],[0,-16]],[[2247,4419],[-13,0]],[[2234,4419],[0,0]],[[2234,4419],[0,64]],[[2221,4483],[0,-64]],[[2221,4419],[0,-65]],[[2221,4354],[-6,0]],[[2215,4354],[-22,0]],[[2193,4354],[-1,64]],[[2192,4418],[0,65]],[[2192,4418],[-13,0]],[[2234,4419],[-13,0]],[[2668,4461],[-7,-1]],[[2661,4460],[-4,0],[-4,-23],[-5,-15]],[[2648,4422],[0,14]],[[2648,4436],[0,43]],[[2652,4480],[7,2]],[[2659,4482],[1,0]],[[2660,4482],[0,0]],[[2660,4482],[0,0]],[[2660,4482],[0,0]],[[2660,4482],[8,-21]],[[2547,4432],[0,-31]],[[2547,4401],[-14,-1],[0,-17],[-6,0]],[[2527,4383],[0,48]],[[2527,4431],[-1,49]],[[2668,4461],[6,-19],[4,13],[3,-16],[-9,-9]],[[2672,4430],[-1,0]],[[2671,4430],[0,0]],[[2671,4430],[-7,0],[-3,8]],[[2661,4438],[0,22]],[[2527,4431],[-10,-1]],[[2517,4430],[0,33]],[[2648,4436],[-12,0]],[[2636,4436],[-2,5],[0,36]],[[2729,4439],[0,-29]],[[2729,4410],[-11,0]],[[2718,4410],[0,41]],[[2986,4456],[-1,-33],[-1,-16]],[[2984,4407],[-4,-5],[-5,3],[-4,-8],[-3,27]],[[2968,4424],[3,2],[0,19],[-3,-2],[-1,11]],[[2555,4461],[0,-71]],[[2555,4390],[-1,-4]],[[2554,4386],[-4,-11],[-3,1]],[[2547,4376],[0,25]],[[2547,4477],[2,-10],[6,-6]],[[2563,4389],[-5,9],[-3,-8]],[[2555,4461],[8,16]],[[2636,4436],[0,-11]],[[2636,4425],[-13,0]],[[2623,4425],[0,19]],[[2105,4427],[0,-8]],[[2105,4419],[-19,-1]],[[2086,4418],[0,32]],[[2311,4440],[1,-22]],[[2312,4418],[-11,0]],[[3001,4464],[0,-28],[-2,5],[2,23]],[[3004,4438],[-2,-8],[0,41]],[[2943,4433],[4,-12],[3,-20],[-1,-13]],[[2949,4388],[-2,-12],[-7,-20],[-7,-12]],[[2933,4344],[-2,20],[7,21],[-1,28]],[[2937,4413],[0,30]],[[2086,4418],[0,-73]],[[2086,4345],[-25,0]],[[2061,4345],[-9,0]],[[2996,4466],[0,-33],[-2,-19],[-10,-12],[0,5]],[[2876,4465],[-3,-40]],[[2873,4425],[-5,-8],[-8,-2]],[[2860,4415],[2,31]],[[2965,4393],[-1,0]],[[2965,4393],[0,0]],[[2968,4424],[2,-29],[-6,-1]],[[2964,4394],[-3,33],[-2,-3],[0,29]],[[2964,4394],[0,-1]],[[2965,4393],[-11,0],[-5,-16],[0,11]],[[2882,4388],[-3,-13]],[[2879,4375],[-1,5],[-1,28],[-4,17]],[[2924,4427],[0,-22]],[[2924,4405],[-7,-33]],[[2917,4372],[-3,11]],[[2914,4383],[-10,28]],[[2904,4411],[-1,13]],[[2517,4430],[0,-65]],[[2517,4365],[-9,0],[0,-33]],[[2508,4332],[-4,-1]],[[2504,4331],[0,34],[-3,0]],[[2501,4365],[0,38]],[[2501,4403],[0,51]],[[2718,4410],[0,0]],[[2718,4410],[-6,1],[1,-14],[-3,0]],[[2710,4397],[-6,-1]],[[2704,4396],[0,14],[-2,1],[0,28]],[[2702,4439],[6,-3],[7,27]],[[2801,4457],[0,-36],[4,0],[1,-33]],[[2806,4388],[-12,4],[-1,-9]],[[2793,4383],[-1,11],[-6,19],[-4,-4]],[[2782,4409],[1,21],[3,-3],[0,34]],[[2782,4409],[-3,-2]],[[2779,4407],[0,18],[-6,1],[-2,-9]],[[2771,4417],[-1,45]],[[2771,4417],[0,-9],[-3,-3],[-3,-28]],[[2765,4377],[-8,0]],[[2757,4377],[0,59]],[[2691,4425],[0,-27]],[[2691,4398],[-14,1]],[[2677,4399],[0,26],[-1,0]],[[2676,4425],[5,7],[6,-16],[4,9]],[[2661,4438],[0,-46]],[[2661,4392],[0,-16]],[[2661,4376],[-13,0]],[[2648,4376],[0,46]],[[2813,4434],[0,-20],[-3,-28]],[[2810,4386],[-4,2]],[[2904,4411],[-4,-14],[-4,-35]],[[2896,4362],[-4,11],[0,19],[-6,-2]],[[2448,4407],[-8,1],[0,16]],[[2845,4455],[2,-34],[5,-19],[4,-5]],[[2856,4397],[-6,-23]],[[2850,4374],[-2,3]],[[2848,4377],[-5,-6]],[[2843,4371],[-2,-9],[-5,-4]],[[2836,4358],[-10,54],[-2,22]],[[2860,4415],[-1,-12]],[[2859,4403],[-3,-6]],[[2501,4403],[-5,-2],[0,-12],[-3,0],[0,-16]],[[2493,4373],[-5,0]],[[2488,4373],[0,16],[-6,0]],[[2482,4389],[0,65]],[[2482,4389],[-1,-16],[-3,0]],[[2478,4373],[-12,0]],[[2466,4373],[0,33]],[[1919,4345],[-28,0],[0,47]],[[2623,4425],[0,-29]],[[2623,4396],[-11,-2]],[[2612,4394],[0,49]],[[2612,4394],[-3,0]],[[2609,4394],[-7,1],[-3,5]],[[2599,4400],[0,27]],[[2263,4419],[0,-16],[-10,-3],[-6,-6],[0,25]],[[2247,4419],[0,0]],[[2924,4405],[0,0]],[[2924,4405],[0,0]],[[2937,4413],[-13,-8]],[[3019,4429],[3,-19],[-7,-3],[1,19],[3,3]],[[2704,4396],[-2,0],[0,-14],[-3,0],[-3,-11],[0,-14]],[[2696,4357],[-5,0]],[[2691,4357],[0,41]],[[2691,4425],[9,16],[2,-2]],[[2436,4424],[0,-49]],[[2436,4375],[-6,0]],[[2430,4375],[-6,1]],[[2424,4376],[0,64]],[[2385,4437],[0,-62]],[[2385,4375],[-6,0]],[[2379,4375],[-7,0]],[[2372,4375],[0,66]],[[2424,4376],[-7,-1]],[[2417,4375],[-6,0]],[[2411,4375],[0,65]],[[2372,4375],[-6,-1]],[[2366,4374],[-6,0]],[[2360,4374],[0,65]],[[2411,4375],[-7,0]],[[2404,4375],[-6,0]],[[2398,4375],[0,65]],[[2398,4375],[-7,0]],[[2391,4375],[-6,0]],[[2334,4439],[0,-64]],[[2334,4375],[-6,0]],[[2328,4375],[-14,0]],[[2314,4375],[-1,6]],[[2313,4381],[1,24],[-2,13]],[[2347,4439],[0,-64]],[[2347,4375],[-7,0]],[[2340,4375],[-6,0]],[[2360,4374],[-7,1]],[[2353,4375],[-6,0]],[[2742,4436],[0,-66]],[[2742,4370],[-13,0]],[[2729,4370],[0,40]],[[2671,4430],[5,-5]],[[2677,4399],[0,-6]],[[2677,4393],[-16,-1]],[[2757,4377],[-3,-19]],[[2754,4358],[-2,8],[-10,2]],[[2742,4368],[0,2]],[[2648,4376],[-9,0]],[[2639,4376],[0,49],[-3,0]],[[2588,4426],[0,-49],[-1,0]],[[2587,4377],[-11,0]],[[2576,4377],[0,49]],[[2836,4358],[0,-5]],[[2836,4353],[-10,-15],[-2,20],[-4,7],[-2,14],[-3,-1],[0,14],[-4,-19]],[[2811,4373],[-1,13]],[[1546,4379],[-1,-21],[1,-7],[-2,-22],[-4,3],[3,-37],[0,-136]],[[1543,4159],[-14,0]],[[1529,4159],[-2,19],[-7,29],[-2,34],[4,48],[2,-3],[3,64],[-2,9],[3,73]],[[2527,4383],[0,-17]],[[2527,4366],[-10,-1]],[[2285,4430],[0,-76]],[[2285,4354],[0,0]],[[2285,4354],[-13,0]],[[2272,4354],[0,65]],[[2297,4418],[4,-37]],[[2301,4381],[1,-27]],[[2302,4354],[-4,-6]],[[2298,4348],[0,6],[-13,0]],[[2599,4400],[-1,-46]],[[2598,4354],[-7,-1]],[[2591,4353],[-4,8],[0,16]],[[2126,4386],[0,-40]],[[2126,4346],[-1,0]],[[2125,4346],[-20,0]],[[2105,4346],[0,73]],[[2779,4407],[-1,-52]],[[2778,4355],[-1,-8],[-7,-6],[-4,13],[-1,23]],[[2765,4377],[0,0]],[[1881,4412],[-3,-25],[-4,-7],[-4,5],[-2,-14]],[[1868,4371],[-9,3],[-8,-15]],[[2576,4377],[-13,0]],[[2563,4377],[0,12]],[[2879,4375],[-1,-7]],[[2878,4368],[-3,-6],[1,-15],[-8,-18]],[[2868,4329],[-6,7]],[[2862,4336],[0,35],[-3,12],[0,20]],[[2639,4376],[-3,0]],[[2636,4376],[-4,16],[-9,0]],[[2623,4392],[0,4]],[[2448,4407],[-1,-17],[3,-16],[1,-15]],[[2451,4359],[-11,0]],[[2440,4359],[0,16],[-4,0]],[[2164,4419],[0,-65],[0,-8]],[[2164,4346],[-22,0]],[[2142,4346],[0,40]],[[2193,4354],[0,-65]],[[2193,4289],[-16,0]],[[2177,4289],[-13,0]],[[2164,4289],[0,57]],[[3035,4411],[1,-19],[-4,-2],[3,21]],[[2272,4354],[-12,0]],[[2260,4354],[0,24]],[[2260,4378],[6,29]],[[2105,4346],[-6,-1]],[[2099,4345],[-13,0]],[[2260,4378],[-6,-21],[-7,-36]],[[2247,4321],[0,33]],[[2247,4354],[0,65]],[[2247,4354],[-12,0]],[[2235,4354],[-1,0]],[[2234,4354],[0,65]],[[2234,4354],[-13,0]],[[2313,4381],[-12,0]],[[1885,4372],[-7,-15],[-2,-13],[3,-25],[-2,-15],[-3,4]],[[1874,4308],[-2,11]],[[1872,4319],[-2,18],[-2,34]],[[2793,4383],[-3,-13],[0,-42]],[[2790,4328],[-12,1]],[[2778,4329],[0,26]],[[1572,4379],[1,-4],[-4,-48],[-4,-41],[1,-21],[-8,-28],[-2,-25]],[[1556,4212],[2,-7],[2,-50]],[[1560,4155],[-17,0],[0,4]],[[2930,4323],[-4,6]],[[2926,4329],[2,30],[-1,21],[-3,25]],[[2933,4344],[0,-3],[-3,-18]],[[2914,4383],[-4,-22]],[[2910,4361],[-4,-30],[-4,-2]],[[2902,4329],[-5,34]],[[2897,4363],[-1,-1]],[[2718,4410],[0,-67]],[[2718,4343],[-1,-15],[-6,1]],[[2711,4329],[-1,14]],[[2710,4343],[0,54]],[[2729,4370],[0,-27],[-3,0]],[[2726,4343],[-8,0]],[[2466,4373],[0,-16]],[[2466,4357],[-10,1]],[[2456,4358],[-5,0]],[[2451,4358],[0,1]],[[2501,4365],[-5,-1],[-3,9]],[[2927,4345],[-9,25]],[[2918,4370],[-1,2]],[[2924,4405],[2,-33],[1,-27]],[[2862,4336],[-2,-28],[-2,-5]],[[2858,4303],[-5,20]],[[2853,4323],[1,12],[-3,22],[-1,17]],[[2547,4376],[0,-29]],[[2547,4347],[-17,-2]],[[2530,4345],[-3,-1]],[[2527,4344],[0,22]],[[2609,4394],[-1,-48]],[[2608,4346],[-9,0]],[[2599,4346],[-1,8]],[[2940,4281],[-1,38]],[[2939,4319],[-1,12],[8,-3],[1,11],[11,0],[4,3],[9,30],[-5,-29],[-3,-14],[3,-3],[3,19],[6,9],[2,-10],[5,17],[1,-6],[-15,-36],[-2,4],[-4,-16],[-3,4],[-4,-14],[-4,1],[-3,-9],[-3,3],[-5,-11]],[[2691,4357],[-2,0],[0,-13]],[[2689,4344],[-8,0]],[[2681,4344],[-3,1]],[[2678,4345],[-1,48]],[[2563,4377],[0,-48]],[[2563,4329],[-1,-14],[-3,0],[0,-19]],[[2559,4296],[-5,0]],[[2554,4296],[0,90]],[[2710,4343],[-13,1]],[[2697,4344],[-1,13]],[[2623,4392],[0,-49]],[[2623,4343],[0,-12]],[[2623,4331],[-8,-1]],[[2615,4330],[-7,0]],[[2608,4330],[0,16]],[[2678,4345],[-8,-1]],[[2670,4344],[-9,0]],[[2661,4344],[0,32]],[[2811,4373],[-2,-8],[1,-28],[-4,-7],[-4,-31],[0,-4]],[[2802,4295],[1,-1]],[[2803,4294],[-13,0]],[[2790,4294],[0,34]],[[1920,4345],[0,-35]],[[1920,4310],[-7,5],[-3,-9],[-8,-9],[-3,1],[-4,-13]],[[1895,4285],[-3,-18],[-4,-6],[-6,15],[-1,11],[-2,-17],[-2,2]],[[1877,4272],[-3,36]],[[2836,4353],[-6,-36]],[[2830,4317],[-9,-22]],[[2821,4295],[-4,2],[-3,-9],[-5,9]],[[2809,4297],[-7,-2]],[[2897,4363],[-4,-24]],[[2893,4339],[-5,-19],[-5,-9]],[[2883,4311],[-3,25],[2,7],[-4,25]],[[2636,4376],[0,-33],[-2,0]],[[2634,4343],[-11,0]],[[2488,4373],[0,-33]],[[2488,4340],[-10,0]],[[2478,4340],[0,33]],[[2142,4346],[0,0]],[[2142,4346],[-16,0]],[[2554,4296],[-7,0]],[[2547,4296],[0,51]],[[2920,4312],[-4,14]],[[2916,4326],[-1,19],[-5,16]],[[2918,4370],[-2,-21],[4,-10],[0,-27]],[[2314,4375],[0,-20]],[[2314,4355],[-4,2],[-5,-13],[-3,10]],[[1641,4107],[-4,-3]],[[1637,4104],[1,11],[0,33],[-2,13],[0,14],[-4,5],[-5,25],[-7,13],[-5,-23],[-3,12],[0,35],[-8,0]],[[1604,4242],[1,86],[-1,51]],[[1604,4242],[-4,0]],[[1600,4242],[-15,-4],[-8,-10],[-5,3],[-5,-11],[-2,7],[-9,-15]],[[2848,4377],[-2,-42],[4,4],[3,-16]],[[2858,4303],[-9,-22]],[[2849,4281],[-6,-8],[-1,3]],[[2842,4276],[0,2]],[[2842,4278],[3,14],[1,31]],[[2846,4323],[-2,17],[-1,31]],[[2591,4353],[0,-8]],[[2591,4345],[-6,-1],[0,-16]],[[2585,4328],[-9,0]],[[2576,4328],[0,49]],[[2260,4354],[0,-65]],[[2260,4289],[-13,0]],[[2247,4289],[0,0]],[[2247,4289],[0,32]],[[2576,4328],[-3,1]],[[2573,4329],[-10,0]],[[2765,4377],[0,-93]],[[2765,4284],[-13,0]],[[2752,4284],[0,34]],[[2752,4318],[0,27],[2,13]],[[2778,4329],[0,-26],[-6,-45]],[[2772,4258],[-7,25]],[[2765,4283],[0,1]],[[2661,4344],[-2,-33]],[[2659,4311],[-11,1]],[[2648,4312],[0,18]],[[2648,4330],[0,46]],[[2648,4330],[-6,-3],[0,-8],[-6,0]],[[2636,4319],[-2,24]],[[2430,4375],[0,-48]],[[2430,4327],[-13,-1]],[[2417,4326],[0,49]],[[2440,4359],[0,-49],[-2,0]],[[2438,4310],[-8,0]],[[2430,4310],[0,17]],[[2417,4326],[-13,0]],[[2404,4326],[0,49]],[[2379,4375],[0,-49]],[[2379,4326],[-13,0]],[[2366,4326],[0,48]],[[2391,4375],[0,-49]],[[2391,4326],[-12,0]],[[2404,4326],[-13,0]],[[2328,4375],[0,-48]],[[2328,4327],[-12,0]],[[2316,4327],[-2,28]],[[2340,4375],[0,-48]],[[2340,4327],[-12,0]],[[2353,4375],[0,-49]],[[2353,4326],[-13,1]],[[2366,4326],[-13,0]],[[1872,4319],[-6,-7],[-2,19],[-7,-28]],[[1857,4303],[-6,56]],[[2478,4340],[0,-48]],[[2478,4292],[-13,0]],[[2465,4292],[1,65]],[[2846,4323],[-4,1],[-12,-15]],[[2830,4309],[0,8]],[[2504,4331],[-11,-1]],[[2493,4330],[0,10],[-5,0]],[[2924,4308],[-4,-3]],[[2920,4305],[0,7]],[[2927,4345],[-3,-37]],[[2742,4368],[0,-42]],[[2742,4326],[-16,1]],[[2726,4327],[0,16]],[[2883,4311],[-4,-5]],[[2879,4306],[-4,-10]],[[2875,4296],[-7,33]],[[2752,4318],[-10,-1]],[[2742,4317],[0,9]],[[2527,4344],[0,-70],[-6,0]],[[2521,4274],[-3,0],[-1,26],[-9,-1]],[[2508,4299],[0,33]],[[2902,4329],[-3,-23]],[[2899,4306],[-2,-15],[-6,-22]],[[2891,4269],[0,3]],[[2891,4272],[0,32],[4,17],[-2,18]],[[2916,4326],[-1,2],[-1,-31]],[[2914,4297],[-3,-13]],[[2911,4284],[-3,16],[-4,-7]],[[2904,4293],[-5,13]],[[1857,4303],[2,-11],[1,-46]],[[1860,4246],[-2,-2],[1,-28],[1,-25],[-1,-30]],[[1859,4161],[-4,-20],[-13,0],[-35,0]],[[1807,4141],[0,40]],[[2451,4358],[0,-27],[-4,-19],[0,-23]],[[2447,4289],[-9,21]],[[2456,4358],[0,-81]],[[2456,4277],[-3,1]],[[2453,4278],[-8,0]],[[2445,4278],[2,11]],[[2465,4292],[0,-16]],[[2465,4276],[-9,1]],[[2697,4344],[0,-61]],[[2697,4283],[-2,0],[0,-18]],[[2695,4265],[-4,-3]],[[2691,4262],[0,32],[-2,19],[0,31]],[[2316,4327],[-1,-22]],[[2315,4305],[-17,0]],[[2298,4305],[0,43]],[[2272,4354],[0,-65]],[[2272,4289],[-12,0]],[[2260,4289],[0,0]],[[2247,4289],[-12,0]],[[2235,4289],[0,65]],[[2215,4354],[0,-70]],[[2215,4284],[-6,2]],[[2209,4286],[-10,3]],[[2199,4289],[-6,0]],[[2235,4289],[0,-2]],[[2235,4287],[-6,-7],[-7,2]],[[2222,4282],[-7,2]],[[2285,4354],[0,-65]],[[2285,4289],[-13,0]],[[2298,4305],[0,-49]],[[2298,4256],[-13,0]],[[2285,4256],[0,33]],[[2599,4346],[0,-65]],[[2599,4281],[-6,-1]],[[2593,4280],[-2,0],[0,65]],[[2547,4296],[0,-46]],[[2547,4250],[-12,-1]],[[2535,4249],[-5,1],[0,95]],[[2608,4330],[0,-49],[-3,0]],[[2605,4281],[-6,0]],[[2060,4165],[0,0]],[[2099,4256],[-16,1],[0,-98]],[[2083,4159],[-22,0]],[[2061,4159],[-3,0]],[[2058,4159],[0,49]],[[2058,4208],[0,16],[3,0],[0,121]],[[2099,4345],[0,-89]],[[2164,4289],[-3,0]],[[2161,4289],[-19,0]],[[2142,4289],[0,9]],[[2142,4298],[0,48]],[[2014,4242],[0,-20],[0,-77]],[[2014,4145],[-11,-1]],[[2003,4144],[0,32]],[[2003,4176],[0,25],[-11,-1]],[[1992,4200],[0,60],[3,11],[0,75]],[[2008,4346],[0,-15],[4,-7],[2,-18],[-2,-39],[2,-25]],[[2036,4249],[-3,-25],[-2,4],[-6,-9],[-1,7],[-5,-2],[-1,12],[-3,-7],[-1,13]],[[2026,4345],[1,-12],[5,-38],[4,-46]],[[1992,4200],[-19,0],[-26,0]],[[1947,4200],[0,81]],[[1947,4281],[0,64]],[[2125,4241],[-4,0]],[[2121,4241],[-19,-1]],[[2102,4240],[0,16],[-3,0]],[[2125,4346],[0,-48]],[[2125,4298],[0,-57]],[[2142,4298],[-17,0]],[[1947,4281],[-3,5],[-2,33],[-5,0],[-2,-22],[-3,16],[-8,-12],[-3,9]],[[1921,4310],[-1,0]],[[1757,4183],[2,-52],[-1,-22],[0,-26],[-3,-24],[0,-56]],[[1755,4003],[-19,0]],[[1736,4003],[0,169],[0,163],[1,10]],[[1736,4003],[-20,0],[-13,-13]],[[1703,3990],[2,22],[-1,26],[5,31],[2,3],[1,18],[-1,22],[1,32],[-2,15]],[[1710,4159],[7,98]],[[2058,4208],[-17,-1]],[[2041,4207],[-5,42]],[[2593,4280],[0,-16]],[[2593,4264],[-8,0]],[[2585,4264],[0,64]],[[2681,4344],[0,-53]],[[2681,4291],[-4,-1]],[[2677,4290],[-7,0]],[[2670,4290],[0,54]],[[2535,4249],[0,-16]],[[2535,4233],[-14,0]],[[2521,4233],[0,41]],[[2691,4262],[-8,-1]],[[2683,4261],[0,30],[-2,0]],[[2670,4290],[-9,-3]],[[2661,4287],[-2,3],[0,21]],[[2711,4329],[0,-46]],[[2711,4283],[-14,0]],[[2636,4319],[-2,-8],[0,-25]],[[2634,4286],[-2,0]],[[2632,4286],[0,9],[-9,-1]],[[2623,4294],[0,37]],[[2726,4327],[0,-33]],[[2726,4294],[-4,0],[-2,-14]],[[2720,4280],[-9,-3]],[[2711,4277],[0,6]],[[2493,4330],[-3,-32]],[[2490,4298],[-3,-36],[-6,-8]],[[2481,4254],[0,21],[-3,0],[0,17]],[[2891,4272],[-4,-13]],[[2887,4259],[-3,25],[-2,-3],[-3,25]],[[1710,4159],[-27,0],[-20,0]],[[2875,4296],[-4,-11]],[[2871,4285],[-8,-26],[-7,-8]],[[2856,4251],[-3,11]],[[2853,4262],[-4,19]],[[2742,4317],[0,-39]],[[2742,4278],[-4,-11]],[[2738,4267],[-5,4]],[[2733,4271],[-2,23],[-5,0]],[[2508,4299],[-2,-16],[-4,-13],[-4,0]],[[2498,4270],[-1,3],[-1,25],[-6,0]],[[2623,4294],[0,-29]],[[2623,4265],[-8,0]],[[2615,4265],[0,65]],[[2648,4312],[0,-33]],[[2648,4279],[-6,0],[-3,8],[-5,-1]],[[1877,4272],[-1,-6]],[[1876,4266],[-5,-9],[-6,-21],[-2,9],[-3,1]],[[2930,4323],[-1,-12],[-3,-4]],[[2926,4307],[0,16]],[[2926,4323],[0,6]],[[2615,4265],[-3,0]],[[2612,4265],[-7,-1]],[[2605,4264],[0,17]],[[2940,4281],[-9,-11]],[[2931,4270],[-1,4]],[[2930,4274],[1,4]],[[2931,4278],[1,21],[-1,5]],[[2931,4304],[1,17],[4,8],[3,-10]],[[2573,4329],[0,-33]],[[2573,4296],[-5,0],[0,-32]],[[2568,4264],[-9,0]],[[2559,4264],[0,32]],[[2585,4264],[-6,-1]],[[2579,4263],[0,25],[-4,0],[-2,8]],[[2790,4294],[-5,-61]],[[2785,4233],[-3,-6],[-2,9],[-7,8],[-1,14]],[[2920,4305],[1,-9]],[[2921,4296],[-2,-9]],[[2919,4287],[-5,10]],[[2328,4327],[0,-60]],[[2328,4267],[-11,1]],[[2317,4268],[-3,30],[1,7]],[[2340,4327],[1,-61]],[[2341,4266],[-8,1]],[[2333,4267],[-5,0]],[[2353,4326],[0,-61]],[[2353,4265],[-4,0]],[[2349,4265],[-8,1]],[[2430,4310],[0,-40]],[[2430,4270],[-6,2]],[[2424,4272],[-7,-1]],[[2417,4271],[0,55]],[[2417,4271],[-5,-1]],[[2412,4270],[-8,-1]],[[2404,4269],[0,57]],[[2366,4326],[0,-60]],[[2366,4266],[-6,-1]],[[2360,4265],[-7,0]],[[2379,4326],[0,-59]],[[2379,4267],[-6,-1]],[[2373,4266],[-7,0]],[[2391,4326],[0,-58]],[[2391,4268],[-7,-1]],[[2384,4267],[-5,0]],[[2404,4269],[-2,0]],[[2402,4269],[-11,-1]],[[2842,4278],[-3,7],[-7,3]],[[2832,4288],[-2,2],[0,19]],[[2926,4307],[-2,-18],[2,34]],[[1947,4200],[0,-104]],[[1947,4096],[0,-31]],[[1947,4065],[-2,-6],[-25,0]],[[1920,4059],[0,1]],[[1920,4060],[-1,18],[1,25],[3,20],[-2,0]],[[1921,4123],[0,187]],[[2752,4284],[0,-12],[-5,-24]],[[2747,4248],[-5,0]],[[2742,4248],[0,30]],[[2819,4229],[-4,4],[2,19],[0,9],[4,24],[0,10]],[[2832,4288],[-6,-21],[-7,-38]],[[1921,4123],[-25,1]],[[1896,4124],[-1,16]],[[1895,4140],[0,145]],[[2661,4287],[0,-34]],[[2661,4253],[-3,0]],[[2658,4253],[-10,6]],[[2648,4259],[0,20]],[[2924,4308],[-2,-26],[-2,-3],[1,17]],[[2445,4278],[-5,-6],[-1,-10],[1,-28],[-2,-5]],[[2438,4229],[-8,41]],[[2928,4273],[1,3]],[[2928,4273],[0,0]],[[2931,4278],[-3,2]],[[2928,4280],[-3,16]],[[2925,4296],[1,10],[5,-2]],[[2904,4293],[0,-25],[-2,-15],[1,-15]],[[2903,4238],[-3,-15],[-2,-1]],[[2898,4222],[-4,15],[0,23],[-3,9]],[[2887,4259],[-5,-22]],[[2882,4237],[-1,5]],[[2881,4242],[-10,43]],[[2317,4268],[2,-12]],[[2319,4256],[-10,0]],[[2309,4256],[-11,0]],[[2911,4284],[0,-14]],[[2911,4270],[-2,-8],[2,-12],[-4,-21]],[[2907,4229],[-4,9]],[[2521,4233],[0,-22]],[[2521,4211],[-3,0]],[[2518,4211],[-16,0]],[[2502,4211],[-4,8]],[[2498,4219],[0,51]],[[2142,4289],[0,-48]],[[2142,4241],[-17,0]],[[2498,4219],[-9,-1]],[[2489,4218],[-3,0],[0,22],[-6,0]],[[2480,4240],[1,14]],[[2819,4229],[2,-21]],[[2821,4208],[-5,-38]],[[2816,4170],[-7,20]],[[2809,4190],[-3,11],[-1,13]],[[2805,4214],[4,33],[-3,34],[3,16]],[[2805,4214],[-1,-10],[-4,11],[0,-11],[-5,16]],[[2795,4220],[2,8],[0,25],[6,41]],[[2928,4280],[-1,-12],[-4,5],[2,23]],[[2559,4264],[0,-17]],[[2559,4247],[-12,1]],[[2547,4248],[0,2]],[[2919,4287],[-1,-17]],[[2918,4270],[-7,0]],[[2579,4263],[0,-24]],[[2579,4239],[-9,0]],[[2570,4239],[0,25],[-2,0]],[[2733,4271],[-2,-9],[-1,-24]],[[2730,4238],[-9,2]],[[2721,4240],[0,24],[-1,16]],[[2632,4286],[0,-60],[1,-1]],[[2633,4225],[0,0]],[[2633,4225],[-10,0]],[[2623,4225],[0,40]],[[2795,4220],[-1,-16]],[[2794,4204],[-7,1],[-4,7]],[[2783,4212],[2,21]],[[2480,4240],[-3,-12],[-1,-14],[-4,-21]],[[2472,4193],[-7,1],[0,16]],[[2465,4210],[0,66]],[[2683,4261],[0,-38],[-3,1]],[[2680,4224],[-5,2],[-3,14]],[[2672,4240],[2,10],[0,29],[3,11]],[[2672,4240],[-6,2]],[[2666,4242],[0,11],[-5,0]],[[2199,4289],[1,-49],[-4,1],[0,-17]],[[2196,4224],[-3,0]],[[2193,4224],[-15,0]],[[2178,4224],[-1,0]],[[2177,4224],[0,65]],[[2247,4289],[0,-65]],[[2247,4224],[-12,0]],[[2235,4224],[0,63]],[[2209,4286],[0,-62]],[[2209,4224],[-13,0]],[[2177,4224],[-15,0]],[[2162,4224],[0,0]],[[2162,4224],[-1,65]],[[2162,4224],[-20,0]],[[2142,4224],[0,17]],[[2272,4289],[0,-65]],[[2272,4224],[-12,0]],[[2260,4224],[0,0]],[[2260,4224],[0,65]],[[2285,4256],[0,-32]],[[2285,4224],[-13,0]],[[2260,4224],[-13,0]],[[2247,4224],[0,0]],[[2842,4276],[-7,-9],[-10,-34],[-3,-20]],[[2822,4213],[-1,-5]],[[1895,4140],[-5,0],[0,8],[-5,22],[1,20],[-2,22],[-4,0],[-3,14],[-2,17],[1,23]],[[2235,4224],[-1,0]],[[2234,4224],[-12,0]],[[2222,4224],[0,58]],[[2648,4259],[-3,-10]],[[2645,4249],[-9,-1],[0,-19],[-3,-4]],[[2222,4224],[-13,0]],[[2209,4224],[0,0]],[[2783,4212],[-4,-33],[-3,-13]],[[2776,4166],[-5,20],[-4,-12],[-3,9],[-4,-1]],[[2760,4182],[0,14]],[[2760,4196],[2,8],[3,52],[-2,11],[2,16]],[[2881,4242],[-4,-38]],[[2877,4204],[-5,-20]],[[2872,4184],[-8,34]],[[2864,4218],[-8,33]],[[2760,4196],[-1,10],[-8,15],[-4,27]],[[2711,4277],[-1,-35],[-1,0]],[[2709,4242],[-13,2]],[[2696,4244],[-1,21]],[[2721,4240],[0,-25],[-2,-16]],[[2719,4199],[-8,1]],[[2711,4200],[1,27],[-3,1],[0,14]],[[2853,4262],[-4,-15],[3,-52]],[[2852,4195],[-4,-14]],[[2848,4181],[0,12],[-4,8]],[[2844,4201],[-1,19]],[[2843,4220],[-4,11],[2,14],[-1,19],[2,12]],[[2605,4264],[0,-35]],[[2605,4229],[-4,1]],[[2601,4230],[-8,-1]],[[2593,4229],[0,6]],[[2593,4235],[0,29]],[[2922,4280],[-1,-18],[-4,-11],[2,28],[3,1]],[[2453,4278],[-1,-66]],[[2452,4212],[0,-17]],[[2452,4195],[-16,1]],[[2436,4196],[0,9]],[[2436,4205],[2,24]],[[2742,4248],[0,-15]],[[2742,4233],[-3,-1]],[[2739,4232],[1,13],[-2,22]],[[2465,4210],[-13,2]],[[2843,4220],[-10,-9],[-3,6],[-7,-21]],[[2823,4196],[-1,17]],[[2436,4205],[-13,2]],[[2423,4207],[0,8]],[[2423,4215],[1,57]],[[2898,4222],[6,-36]],[[2904,4186],[-7,-18]],[[2897,4168],[-1,17]],[[2896,4185],[-14,52]],[[2918,4270],[-2,-20],[2,-7]],[[2918,4243],[-5,-32],[-3,-5]],[[2910,4206],[-3,13],[0,10]],[[2423,4215],[-11,0]],[[2412,4215],[0,8]],[[2412,4223],[0,47]],[[2739,4232],[1,-13],[-2,-26]],[[2738,4193],[-1,-5]],[[2737,4188],[-5,1]],[[2732,4189],[0,49],[-2,0]],[[2412,4223],[-9,0]],[[2403,4223],[0,29],[-1,17]],[[2403,4223],[-5,0]],[[2398,4223],[0,8],[-14,-1]],[[2384,4230],[0,37]],[[2333,4267],[0,-59]],[[2333,4208],[-10,0]],[[2323,4208],[-2,9],[-2,39]],[[2384,4230],[0,-22]],[[2384,4208],[-11,0]],[[2373,4208],[0,58]],[[2349,4265],[1,-34]],[[2350,4231],[-1,-49]],[[2349,4182],[-12,1]],[[2337,4183],[-1,24],[-3,1]],[[1896,4124],[-11,0]],[[1885,4124],[-11,0]],[[1874,4124],[-5,25],[-4,-26],[-3,-5],[1,21],[-4,22]],[[2373,4208],[0,-24]],[[2373,4184],[-13,0]],[[2360,4184],[0,46]],[[2360,4230],[0,35]],[[2696,4244],[-1,-41]],[[2695,4203],[-7,2],[-8,5]],[[2680,4210],[0,14]],[[2623,4225],[0,-8]],[[2623,4217],[-12,-1]],[[2611,4216],[0,13]],[[2611,4229],[1,36]],[[2360,4230],[-10,1]],[[2611,4229],[-6,0]],[[2593,4235],[-10,-1],[0,-6]],[[2583,4228],[-4,11]],[[2570,4239],[0,-40]],[[2570,4199],[-11,0]],[[2559,4199],[0,28]],[[2559,4227],[0,20]],[[2323,4208],[0,0]],[[2323,4208],[-13,0]],[[2310,4208],[-1,0]],[[2309,4208],[0,48]],[[2864,4218],[-4,-12],[-8,-11]],[[2658,4253],[0,-51]],[[2658,4202],[-13,8]],[[2645,4210],[0,39]],[[2102,4240],[0,-81],[-6,0]],[[2096,4159],[-13,0]],[[2298,4256],[0,-48]],[[2298,4208],[0,-49]],[[2298,4159],[-10,0]],[[2288,4159],[-3,0]],[[2285,4159],[0,65]],[[2309,4208],[-11,0]],[[2668,4185],[-1,-6]],[[2667,4179],[-8,1]],[[2659,4180],[0,21],[-1,1]],[[2666,4242],[0,-38],[2,0],[0,-19]],[[2547,4248],[0,-62]],[[2547,4186],[0,-49]],[[2547,4137],[-12,-1]],[[2535,4136],[0,97]],[[2041,4207],[1,-40],[-1,-21]],[[2041,4146],[-1,-15]],[[2040,4131],[-5,-10],[-1,-18]],[[2034,4103],[-3,-2],[-2,22],[-4,19],[-5,3]],[[2020,4145],[-6,0]],[[2645,4210],[-1,-17]],[[2644,4193],[-11,3]],[[2633,4196],[0,29]],[[2760,4182],[0,-16],[-3,-10]],[[2757,4156],[-8,6],[-7,-10]],[[2742,4152],[0,10]],[[2742,4162],[0,27]],[[2742,4189],[0,44]],[[2559,4227],[-4,-10],[-6,-27],[1,-7]],[[2550,4183],[-3,3]],[[2921,4182],[-4,-1],[-1,9],[-3,1],[-5,-17]],[[2908,4174],[-1,11]],[[2907,4185],[3,21]],[[2918,4243],[6,-8],[1,-19],[-2,-38],[-2,4]],[[2711,4200],[-2,-13]],[[2709,4187],[-13,3]],[[2696,4190],[-1,13]],[[2896,4185],[-3,-18],[-3,9],[0,-15],[-2,-6]],[[2888,4155],[-2,16]],[[2886,4171],[-3,4],[-4,28],[-2,1]],[[1600,4242],[0,-18],[4,-7],[-1,-19],[-2,-11]],[[1601,4187],[-4,-10],[-2,-21],[-3,-18],[-8,-1],[0,-16]],[[1584,4121],[-25,0]],[[1559,4121],[1,34]],[[1637,4104],[-14,0],[-1,-5],[-5,18],[-4,-26]],[[1613,4091],[-2,-7]],[[1611,4084],[-9,51],[0,27],[1,17],[-2,8]],[[2680,4210],[0,-28]],[[2680,4182],[-12,3]],[[2142,4224],[0,-65]],[[2142,4159],[0,-80]],[[2142,4079],[-21,-1]],[[2121,4078],[0,81],[0,82]],[[2121,4078],[-10,0]],[[2111,4078],[-15,0]],[[2096,4078],[0,32]],[[2096,4110],[0,49]],[[2489,4218],[0,-36]],[[2489,4182],[-10,3],[-1,-6]],[[2478,4179],[-4,-9],[-4,-1],[-2,13]],[[2468,4182],[4,11]],[[2732,4189],[-10,2]],[[2722,4191],[-3,8]],[[2583,4228],[0,-29]],[[2583,4199],[0,-6]],[[2583,4193],[-13,-1]],[[2570,4192],[0,7]],[[2907,4185],[-3,1]],[[2593,4229],[0,-29]],[[2593,4200],[-10,-1]],[[2742,4189],[-4,4]],[[2535,4136],[-14,0]],[[2521,4136],[0,75]],[[2398,4223],[0,-57]],[[2398,4166],[-14,-1]],[[2384,4165],[0,43]],[[2360,4184],[0,-19]],[[2360,4165],[-11,1]],[[2349,4166],[0,16]],[[2601,4230],[0,-57]],[[2601,4173],[0,-24]],[[2601,4149],[-8,-1]],[[2593,4148],[0,52]],[[2611,4216],[0,-43]],[[2611,4173],[-10,0]],[[2559,4199],[0,-49]],[[2559,4150],[-9,0]],[[2550,4150],[0,33]],[[2633,4196],[0,-52]],[[2633,4144],[-1,0]],[[2632,4144],[-10,-1]],[[2622,4143],[0,17]],[[2622,4160],[1,57]],[[2247,4224],[0,-65]],[[2247,4159],[-6,0]],[[2241,4159],[-7,0]],[[2234,4159],[0,65]],[[2234,4159],[-9,0]],[[2225,4159],[-3,0]],[[2222,4159],[0,65]],[[2260,4224],[0,-65]],[[2260,4159],[-3,0]],[[2257,4159],[-10,0]],[[2162,4224],[0,-65]],[[2162,4159],[-2,0]],[[2160,4159],[-18,0]],[[2209,4224],[0,-65]],[[2209,4159],[-15,0]],[[2194,4159],[0,0]],[[2194,4159],[-1,65]],[[2272,4224],[0,-65]],[[2272,4159],[-12,0]],[[2285,4159],[-13,0]],[[2194,4159],[-16,0]],[[2178,4159],[0,0]],[[2178,4159],[0,65]],[[2178,4159],[-16,0]],[[2222,4159],[-13,0]],[[2209,4159],[0,0]],[[2412,4215],[0,-49]],[[2412,4166],[-14,0]],[[2398,4166],[0,0]],[[2844,4201],[-1,-11],[-4,-5],[-3,-13]],[[2836,4172],[-1,-8],[-6,-6],[-2,-10]],[[2827,4148],[-4,48]],[[2502,4211],[0,-43]],[[2502,4168],[0,-24],[-2,-1]],[[2500,4143],[-8,3],[-2,8]],[[2490,4154],[-1,28]],[[2809,4190],[-5,-64],[-2,-19]],[[2802,4107],[-12,0]],[[2790,4107],[1,19],[0,43],[3,35]],[[2872,4184],[-2,-5],[-2,-45],[-4,-27]],[[2864,4107],[-2,0]],[[2862,4107],[-1,0]],[[2861,4107],[-6,41],[-2,21],[-5,12]],[[2622,4160],[-10,0]],[[2612,4160],[-1,13]],[[2423,4207],[0,-58]],[[2423,4149],[-9,1]],[[2414,4150],[-2,16]],[[2827,4148],[0,-41]],[[2827,4107],[0,0]],[[2827,4107],[-17,0]],[[2810,4107],[2,20],[4,43]],[[2790,4107],[-4,0]],[[2786,4107],[-12,0]],[[2774,4107],[-1,25],[3,34]],[[2518,4211],[-5,-42]],[[2513,4169],[-11,-1]],[[2468,4182],[-5,-25]],[[2463,4157],[-2,-2],[-3,23],[-6,0]],[[2452,4178],[0,17]],[[2521,4136],[-1,-16]],[[2520,4120],[-7,0]],[[2513,4120],[0,49]],[[2696,4190],[-1,-40],[-1,-7]],[[2694,4143],[-6,3]],[[2688,4146],[-9,2]],[[2679,4148],[1,34]],[[2659,4180],[0,-19]],[[2659,4161],[-15,5]],[[2644,4166],[0,27]],[[2384,4165],[0,-12]],[[2384,4153],[-11,-2]],[[2373,4151],[0,33]],[[2058,4159],[-3,-16]],[[2055,4143],[-7,0]],[[2048,4143],[0,4],[-7,-1]],[[2310,4208],[0,-49]],[[2310,4159],[-6,0]],[[2304,4159],[-6,0]],[[2323,4208],[4,-26],[0,-13],[3,-10]],[[2330,4159],[-1,0]],[[2329,4159],[-13,0]],[[2316,4159],[-6,0]],[[2337,4183],[2,-43]],[[2339,4140],[-3,-7],[-6,26]],[[2436,4196],[0,-30],[2,-17]],[[2438,4149],[-12,0]],[[2426,4149],[-3,0]],[[2886,4171],[-5,-23],[-2,-19]],[[2879,4129],[-5,-22]],[[2874,4107],[-10,0]],[[2861,4107],[-9,0]],[[2852,4107],[-6,0]],[[2846,4107],[-6,0]],[[2840,4107],[1,25],[-1,29],[-4,11]],[[2003,4176],[-8,0],[0,-33],[-3,0],[0,-16],[-14,-1],[0,-24],[-18,0],[0,-8],[-13,2]],[[2722,4150],[-4,0],[-2,-11],[-3,1],[0,-11],[-4,0]],[[2709,4129],[-1,17],[1,41]],[[2722,4191],[0,-41]],[[2593,4148],[-2,-3]],[[2591,4145],[-8,0]],[[2583,4145],[0,48]],[[2570,4192],[0,-48]],[[2570,4144],[0,-10]],[[2570,4134],[-9,0]],[[2561,4134],[-2,0],[0,16]],[[2452,4178],[0,-48]],[[2452,4130],[0,-16],[-12,0]],[[2440,4114],[-2,16],[0,19]],[[2644,4166],[0,-30]],[[2644,4136],[-3,8],[-8,0]],[[2742,4162],[-6,3]],[[2736,4165],[1,23]],[[2908,4174],[5,-57],[-1,-40]],[[2912,4077],[0,-1]],[[2912,4076],[-7,14],[-2,18]],[[2903,4108],[-4,12],[-1,18],[-4,19]],[[2894,4157],[0,1]],[[2894,4158],[3,10]],[[2583,4145],[-3,0]],[[2580,4145],[-10,-1]],[[2736,4165],[0,-22],[-2,-12]],[[2734,4131],[-12,3]],[[2722,4134],[0,16]],[[2921,4182],[2,-4],[-2,-54],[0,22],[-3,-35],[1,-7],[-5,-26],[-2,-1]],[[2709,4129],[0,-16]],[[2709,4113],[-10,3]],[[2699,4116],[-3,9],[0,17],[-2,1]],[[2810,4107],[-7,0]],[[2803,4107],[-1,0]],[[2490,4154],[-4,0],[0,-11],[-8,-2]],[[2478,4141],[0,38]],[[1611,4084],[-2,-13],[-4,-2],[-3,-33],[-6,-8]],[[1596,4028],[-8,1]],[[1588,4029],[1,15]],[[1589,4044],[1,29],[-4,-1],[0,25],[1,6],[-3,18]],[[2550,4150],[2,-17],[-1,-47]],[[2551,4086],[-4,0]],[[2547,4086],[0,51]],[[2774,4107],[-3,0]],[[2771,4107],[-8,0]],[[2763,4107],[-4,0]],[[2759,4107],[0,38],[-2,11]],[[2679,4148],[-1,-27]],[[2678,4121],[-12,3]],[[2666,4124],[0,36],[1,19]],[[2894,4158],[-2,-20],[-2,-3]],[[2890,4135],[-2,20]],[[2373,4151],[0,-32]],[[2373,4119],[-12,0]],[[2361,4119],[-1,46]],[[2349,4166],[0,-41]],[[2349,4125],[-7,0]],[[2342,4125],[-3,15]],[[1807,4141],[0,-67]],[[1807,4074],[0,-162]],[[1807,3912],[-26,0]],[[1781,3912],[-26,91]],[[2478,4141],[0,-6]],[[2478,4135],[-16,1]],[[2462,4136],[1,21]],[[2666,4124],[0,-22]],[[2666,4102],[-11,4]],[[2655,4106],[0,11]],[[2655,4117],[2,-1],[2,45]],[[2462,4136],[0,-7]],[[2462,4129],[-10,1]],[[2003,4144],[-2,0],[0,-103]],[[2001,4041],[-9,0]],[[1992,4041],[-45,0]],[[1947,4041],[0,24]],[[2612,4160],[-1,-41]],[[2611,4119],[-2,0]],[[2609,4119],[-8,0]],[[2601,4119],[0,30]],[[2840,4107],[-6,0]],[[2834,4107],[-7,0]],[[2890,4135],[-6,-12]],[[2884,4123],[-4,6]],[[2879,4129],[1,0]],[[2879,4129],[0,0]],[[2513,4120],[-2,-26]],[[2511,4094],[-6,0]],[[2505,4094],[-3,1],[0,27],[-2,2]],[[2500,4124],[0,19]],[[2061,4159],[-3,-16]],[[2058,4143],[-3,0]],[[2414,4150],[0,-65]],[[2414,4085],[0,0]],[[2414,4085],[-11,1]],[[2403,4086],[0,16],[-5,1]],[[2398,4103],[0,63]],[[2655,4117],[-5,9],[-6,5]],[[2644,4131],[0,5]],[[2398,4103],[-11,1]],[[2387,4104],[-3,0],[0,49]],[[2361,4119],[0,-8]],[[2361,4111],[-12,1]],[[2349,4112],[0,13]],[[2742,4107],[-9,0]],[[2733,4107],[1,24]],[[2742,4152],[0,-45]],[[2759,4107],[-14,0]],[[2745,4107],[-3,0]],[[1874,4124],[2,-14],[-4,-8],[0,-44],[-1,-14],[-4,0],[-3,-13]],[[1864,4031],[-5,3],[-1,42],[-51,-2]],[[2622,4143],[0,-35]],[[2622,4108],[-6,-2]],[[2616,4106],[-4,0],[-1,13]],[[2160,4159],[0,-81]],[[2160,4078],[-18,0]],[[2142,4078],[0,1]],[[2178,4159],[0,-81]],[[2178,4078],[-18,0]],[[2160,4078],[0,0]],[[1559,4121],[2,-40]],[[1561,4081],[0,-10],[-5,-5],[0,-17],[2,-32],[-3,-12],[0,-19],[3,-14],[1,-18],[4,-9]],[[1563,3945],[-7,0],[-2,-8],[-7,-1],[-4,-7]],[[1543,3929],[-6,28],[2,21],[-4,60],[1,34],[0,22],[-2,34],[-5,31]],[[2257,4159],[0,-65]],[[2257,4094],[0,-16]],[[2257,4078],[-16,0]],[[2241,4078],[0,0]],[[2241,4078],[0,81]],[[2241,4078],[-15,0]],[[2226,4078],[-1,0]],[[2225,4078],[0,81]],[[2272,4159],[0,-65]],[[2272,4094],[-15,0]],[[2288,4159],[0,-81]],[[2288,4078],[-4,0]],[[2284,4078],[-12,0]],[[2272,4078],[0,16]],[[2194,4159],[0,-81]],[[2194,4078],[-15,0]],[[2179,4078],[-1,0]],[[1703,3990],[-2,-4]],[[1701,3986],[-25,0]],[[1676,3986],[0,7],[-10,52],[1,62],[-3,-17]],[[2209,4159],[0,-81]],[[2209,4078],[-15,0]],[[2194,4078],[0,0]],[[2225,4078],[-15,0]],[[2210,4078],[-1,0]],[[2304,4159],[0,-81]],[[2304,4078],[-10,0]],[[2294,4078],[-6,0]],[[2096,4110],[-33,0]],[[2063,4110],[4,6],[-1,10],[4,1],[1,13],[-4,0],[-2,-19],[-7,-1]],[[2058,4120],[0,23]],[[2329,4159],[0,-65]],[[2329,4094],[-6,0]],[[2323,4094],[-7,0]],[[2316,4094],[0,65]],[[2316,4094],[0,-16],[-6,0]],[[2310,4078],[-6,0]],[[2342,4125],[0,-17],[-2,3],[-3,-22]],[[2337,4089],[-2,5],[-6,0]],[[2903,4108],[-4,-22]],[[2899,4086],[-4,23],[-3,28]],[[2892,4137],[2,20]],[[2500,4124],[-5,-13],[-4,-19],[0,-22]],[[2491,4070],[-5,0]],[[2486,4070],[-6,0]],[[2480,4070],[-2,36],[0,29]],[[2387,4104],[-1,-17]],[[2386,4087],[-13,-1]],[[2373,4086],[0,33]],[[2426,4149],[0,-54]],[[2426,4095],[-9,1],[0,-11],[-3,0]],[[2561,4134],[0,-49]],[[2561,4085],[-5,1]],[[2556,4086],[-5,0]],[[2722,4134],[-2,1],[0,-31],[1,-19]],[[2721,4085],[-9,-3]],[[2712,4082],[-3,31]],[[2440,4114],[1,-14]],[[2441,4100],[-11,0],[0,-5]],[[2430,4095],[-4,0]],[[2601,4119],[-1,-16]],[[2600,4103],[-9,-1]],[[2591,4102],[0,43]],[[2688,4146],[0,-18],[2,0],[0,-33]],[[2690,4095],[-3,1],[0,-11],[-3,1],[-4,-10]],[[2680,4076],[-3,1],[1,44]],[[2048,4143],[0,-31]],[[2048,4112],[-4,5],[-4,14]],[[2699,4116],[1,-8],[0,-33]],[[2700,4075],[-4,1]],[[2696,4076],[-6,8],[0,11]],[[2591,4102],[0,-11]],[[2591,4091],[-9,0]],[[2582,4091],[-2,-1]],[[2580,4090],[0,55]],[[2020,4145],[1,-30],[6,-21],[-3,-29],[2,-22]],[[2026,4043],[-6,-3]],[[2020,4040],[-19,1]],[[2034,4103],[3,-12],[-1,-13]],[[2036,4078],[-5,-37],[-3,2]],[[2028,4043],[-2,0]],[[2580,4090],[-4,-6],[-5,1]],[[2571,4085],[-1,5],[0,44]],[[2644,4131],[-2,-2],[0,-49]],[[2642,4080],[-7,2]],[[2635,4082],[-3,1]],[[2632,4083],[0,61]],[[2632,4083],[0,-5],[-10,0]],[[2622,4078],[0,30]],[[2058,4120],[0,-33]],[[2058,4087],[0,-9]],[[2058,4078],[-5,-60],[-3,-21]],[[2050,3997],[0,0]],[[2050,3997],[-2,0],[0,81]],[[2048,4078],[0,34]],[[2063,4110],[-1,-21],[-2,8],[-2,-10]],[[2899,4086],[-3,-18]],[[2896,4068],[-2,10]],[[2894,4078],[-4,19],[-3,4],[-3,18]],[[2884,4119],[8,18]],[[2547,4086],[0,-25]],[[2547,4061],[-12,1]],[[2535,4062],[-1,38]],[[2534,4100],[1,36]],[[2534,4100],[-2,-6],[-12,0]],[[2520,4094],[0,26]],[[2480,4070],[-7,-1]],[[2473,4069],[-4,0]],[[2469,4069],[0,22],[-2,6],[0,16],[-6,7]],[[2461,4120],[1,9]],[[2733,4107],[-3,-21]],[[2730,4086],[-2,-13]],[[2728,4073],[0,6],[-7,6]],[[2571,4085],[-1,-25]],[[2570,4060],[-7,1]],[[2563,4061],[-2,0],[0,24]],[[2048,4078],[-12,0]],[[2655,4106],[-1,-31]],[[2654,4075],[-8,4]],[[2646,4079],[-4,1]],[[2461,4120],[-1,-18],[2,-32]],[[2462,4070],[-1,-24]],[[2461,4046],[-9,1]],[[2452,4047],[-3,8],[-4,29]],[[2445,4084],[-4,16]],[[2881,4065],[0,0]],[[2881,4065],[0,0]],[[2880,4086],[0,4]],[[2880,4086],[0,0]],[[2884,4123],[-5,-36],[1,-10],[0,-19],[2,-18]],[[2882,4040],[-4,-13],[-3,1]],[[2875,4028],[0,15]],[[2875,4043],[-1,64]],[[2505,4094],[0,-57],[-3,0]],[[2502,4037],[-11,1],[0,32]],[[2349,4112],[1,-41]],[[2350,4071],[-14,1]],[[2336,4072],[1,17]],[[1920,4060],[-30,0],[-1,27],[-4,17]],[[1885,4104],[0,20]],[[1885,4104],[0,-44],[-1,0],[0,-82]],[[1884,3978],[-16,1],[-4,2]],[[1864,3981],[0,50]],[[2680,4076],[0,-16]],[[2680,4060],[-7,2],[0,5],[-7,2]],[[2666,4069],[0,33]],[[1589,4044],[-7,6],[0,-6],[-17,0]],[[1565,4044],[0,37],[-4,0]],[[2520,4094],[0,-38]],[[2520,4056],[-3,0],[-3,24],[-3,1],[0,13]],[[2616,4106],[0,-35]],[[2616,4071],[-7,-1]],[[2609,4070],[0,49]],[[2609,4070],[0,-13]],[[2609,4057],[-9,0]],[[2600,4057],[0,46]],[[2469,4069],[-7,1]],[[2373,4086],[0,-16]],[[2373,4070],[-13,1]],[[2360,4071],[1,40]],[[2885,4044],[-1,0]],[[2885,4044],[0,0]],[[2894,4078],[0,-20],[-5,19],[-5,-32]],[[2884,4045],[-3,20]],[[2881,4065],[-1,21]],[[2880,4090],[4,29]],[[1641,4056],[-14,0],[-1,13],[-3,1],[-2,-11],[-8,-13]],[[1613,4046],[0,45]],[[2712,4082],[-3,-1],[0,-19],[-4,-6]],[[2705,4056],[-6,2],[1,17]],[[2360,4071],[0,-14]],[[2360,4057],[-10,0]],[[2350,4057],[0,14]],[[2096,4078],[-1,0]],[[2095,4078],[-26,0]],[[2069,4078],[-11,0]],[[1676,3986],[-5,0],[-2,-24],[0,-17],[3,0],[0,-82],[-7,0]],[[1665,3863],[-5,23]],[[1660,3886],[-1,37],[-1,0],[0,41],[3,7],[0,17],[-7,0]],[[1654,3988],[0,21],[-5,10]],[[1649,4019],[7,16],[5,53]],[[2912,4076],[0,-36],[-6,-14]],[[2906,4026],[-6,7]],[[2900,4033],[0,19],[-4,16]],[[2622,4078],[0,-8]],[[2622,4070],[-6,1]],[[2827,4107],[-3,-19],[-3,-55]],[[2821,4033],[-1,-1]],[[2820,4032],[-3,32]],[[2817,4064],[-1,11],[1,10],[-5,3]],[[2812,4088],[-5,14],[-2,-14],[-2,3]],[[2803,4091],[0,16]],[[2803,4091],[-3,-3],[-1,-19]],[[2799,4069],[-5,3]],[[2794,4072],[-4,14],[-5,-32],[-2,8]],[[2783,4062],[3,45]],[[2783,4062],[-6,-28]],[[2777,4034],[-6,-23]],[[2771,4011],[0,96]],[[2875,4043],[-2,-1]],[[2873,4042],[-6,3],[2,32],[-3,-3]],[[2866,4074],[-4,33]],[[2763,4107],[-3,-53]],[[2760,4054],[-2,3]],[[2758,4057],[-6,29],[-6,5]],[[2746,4091],[-1,16]],[[2771,4011],[0,-2]],[[2771,4009],[-6,14],[-3,-8]],[[2762,4015],[-2,13]],[[2760,4028],[0,26]],[[2866,4074],[-1,-20],[-4,-13],[1,19],[-4,-14]],[[2858,4046],[-2,19],[-3,9],[-1,33]],[[2746,4091],[-3,-14],[0,-17]],[[2743,4060],[-2,-8]],[[2741,4052],[-2,4]],[[2739,4056],[-2,6],[-4,23],[-3,1]],[[2858,4046],[1,-10],[-3,-25],[-3,6]],[[2853,4017],[0,25],[-5,0],[0,-18],[3,-7]],[[2851,4017],[-2,-5]],[[2849,4012],[-5,26]],[[2844,4038],[-1,17],[3,52]],[[2844,4038],[-8,0]],[[2836,4038],[1,26],[-5,24],[2,19]],[[2836,4038],[0,0]],[[2836,4038],[-9,-24]],[[2827,4014],[-3,15],[-3,4]],[[2666,4069],[-3,-26]],[[2663,4043],[-7,0]],[[2656,4043],[1,31],[-3,1]],[[1920,4059],[0,-9],[-3,-49],[-1,-54],[2,-20],[1,-48]],[[1919,3879],[-35,0],[0,2]],[[1884,3881],[0,97]],[[2403,4086],[-1,-54]],[[2402,4032],[-2,4],[-2,-21]],[[2398,4015],[-7,29]],[[2391,4044],[-3,10],[-2,33]],[[2600,4057],[-2,-19]],[[2598,4038],[-7,-1]],[[2591,4037],[0,54]],[[2812,4088],[-4,-5],[-2,-38]],[[2806,4045],[-3,14]],[[2803,4059],[-4,10]],[[2445,4084],[-8,-28],[1,-24]],[[2438,4032],[-8,4]],[[2430,4036],[0,59]],[[2535,4062],[-2,-19]],[[2533,4043],[-13,-1]],[[2520,4042],[0,14]],[[2430,4036],[-17,1]],[[2413,4037],[1,48]],[[2696,4076],[0,-17],[-3,2],[0,-17]],[[2693,4044],[-7,2],[0,-5],[-6,0]],[[2680,4041],[0,19]],[[2272,4078],[0,-48]],[[2272,4030],[-15,0]],[[2257,4030],[0,48]],[[2323,4094],[-1,-43]],[[2322,4051],[0,-38]],[[2322,4013],[-12,0]],[[2310,4013],[0,65]],[[2336,4072],[3,-21]],[[2339,4051],[-6,0]],[[2333,4051],[-11,0]],[[2520,4042],[0,-29]],[[2520,4013],[-9,0]],[[2511,4013],[-9,0]],[[2502,4013],[0,24]],[[2794,4072],[-5,-38],[-4,-17]],[[2785,4017],[-4,14],[-4,3]],[[2728,4073],[-3,-15]],[[2725,4058],[-7,-22]],[[2718,4036],[-2,13],[-3,-13],[0,-14],[-3,1],[-2,-10]],[[2708,4013],[1,10],[-4,9],[0,24]],[[2758,4057],[-2,-10],[-5,-1]],[[2751,4046],[-8,14]],[[2591,4037],[-4,0]],[[2587,4037],[-5,-1]],[[2582,4036],[0,55]],[[1613,4046],[-3,-3],[-4,-28],[0,-36]],[[1606,3979],[-4,-7]],[[1602,3972],[-4,-5],[-1,-9],[-1,70]],[[2582,4036],[-3,0]],[[2579,4036],[-7,1]],[[2572,4037],[0,23],[-2,0]],[[2817,4064],[-4,-23],[-2,-19]],[[2811,4022],[-5,23]],[[2391,4044],[-2,5],[-1,-15],[-3,-4],[-2,-15],[-2,12]],[[2381,4027],[0,-12],[-5,4],[-3,-8]],[[2373,4011],[0,59]],[[2413,4037],[0,-19]],[[2413,4018],[-3,1]],[[2410,4019],[-8,13]],[[2556,4086],[-1,-17],[0,-48]],[[2555,4021],[-10,0]],[[2545,4021],[2,16],[0,24]],[[2563,4061],[0,-25],[-3,0],[0,-32]],[[2560,4004],[-5,0]],[[2555,4004],[0,17]],[[2739,4056],[-7,-29]],[[2732,4027],[-2,18],[-2,-7]],[[2728,4038],[0,21],[-3,-1]],[[2458,4014],[-13,1],[0,-17],[-2,1]],[[2443,3999],[-4,0]],[[2439,3999],[-1,33]],[[2452,4047],[4,-19],[2,-14]],[[2635,4082],[1,-7],[-1,-48]],[[2635,4027],[-13,2]],[[2622,4029],[0,41]],[[2646,4079],[-1,-59]],[[2645,4020],[-7,3]],[[2638,4023],[-3,4]],[[1565,4044],[-1,-13],[3,-18],[5,-8],[0,-22],[4,-25]],[[1576,3958],[-1,-11]],[[1575,3947],[-2,-29],[-5,-7]],[[1568,3911],[-5,34]],[[2142,4078],[0,-81]],[[2142,3997],[0,-16]],[[2142,3981],[-31,-2]],[[2111,3979],[0,99]],[[2884,4044],[0,1]],[[2900,4033],[-2,-27]],[[2898,4006],[-7,10],[-5,21],[-1,7]],[[2226,4078],[0,-81]],[[2226,3997],[-16,0]],[[2210,3997],[0,0]],[[2210,3997],[0,81]],[[2649,4019],[-4,1]],[[2645,4020],[0,0]],[[2656,4043],[-5,-22],[-2,-2]],[[2160,4078],[0,-80]],[[2160,3998],[-2,0]],[[2158,3998],[-16,-1]],[[2179,4078],[0,-81]],[[2179,3997],[-3,0]],[[2176,3997],[-16,1]],[[2241,4078],[0,-65]],[[2241,4013],[0,-16]],[[2241,3997],[-15,0]],[[2226,3997],[0,0]],[[2194,4078],[0,-81]],[[2194,3997],[-15,0]],[[2284,4078],[0,-65]],[[2284,4013],[0,-16]],[[2284,3997],[-12,0]],[[2272,3997],[0,33]],[[2257,4030],[0,-17]],[[2257,4013],[-16,0]],[[2210,3997],[-15,0]],[[2195,3997],[-1,0]],[[2294,4078],[-4,-30],[5,-41],[5,-2]],[[2300,4005],[0,-24],[-3,0]],[[2297,3981],[0,5],[-10,3],[0,24],[-3,0]],[[2069,4078],[0,-81]],[[2069,3997],[-10,0]],[[2059,3997],[-9,0]],[[2095,4078],[0,-130],[-9,0]],[[2086,3948],[0,48],[-17,1]],[[2310,4013],[-1,-16]],[[2309,3997],[-1,12],[-4,2],[-4,-6]],[[2111,3979],[0,-79]],[[2111,3900],[0,-16],[-10,-2]],[[2101,3882],[-15,1]],[[2086,3883],[0,65]],[[2050,3997],[0,-81]],[[2050,3916],[-17,-1]],[[2033,3915],[1,22],[-3,25],[-2,0],[-3,21]],[[2026,3983],[1,47],[1,13]],[[2708,4013],[0,-7]],[[2708,4006],[-15,4]],[[2693,4010],[0,34]],[[1864,3981],[-6,-34],[0,-25],[-2,-10],[-4,1],[-2,-20]],[[1850,3893],[-43,0]],[[1807,3893],[0,19]],[[2803,4059],[0,-21],[-2,-18],[0,-16],[-3,-15]],[[2798,3989],[-11,21],[-2,7]],[[2350,4057],[-1,-55]],[[2349,4002],[-4,8]],[[2345,4010],[-4,18],[1,14],[-3,9]],[[2622,4029],[-7,1]],[[2615,4030],[-4,0],[-2,-8]],[[2609,4022],[0,35]],[[2373,4011],[-2,2],[-8,-14]],[[2363,3999],[-3,12]],[[2360,4011],[0,46]],[[2502,4013],[-3,0],[0,-35]],[[2499,3978],[-10,0],[-1,-6]],[[2488,3972],[-2,0]],[[2486,3972],[0,98]],[[2486,3972],[-12,0]],[[2474,3972],[0,49]],[[2474,4021],[-1,48]],[[1641,4031],[-18,0],[-2,-5],[-7,-33],[-2,-18],[-6,4]],[[2474,4021],[-5,-7],[0,-9],[-7,2],[-1,-13]],[[2461,3994],[0,52]],[[2680,4041],[0,-30]],[[2680,4011],[-1,-7]],[[2679,4004],[-16,5]],[[2663,4009],[0,34]],[[2820,4032],[-3,-35]],[[2817,3997],[-6,25]],[[1947,4041],[-1,-162]],[[1946,3879],[-27,0]],[[2545,4021],[-1,-19]],[[2544,4002],[-9,3]],[[2535,4005],[-2,0]],[[2533,4005],[0,38]],[[2728,4038],[-6,-16]],[[2722,4022],[-4,14]],[[2572,4037],[-2,-2],[0,-32]],[[2570,4003],[-10,1]],[[2751,4046],[1,-28]],[[2752,4018],[-2,-24]],[[2750,3994],[-2,-2]],[[2748,3992],[-8,12]],[[2740,4004],[2,8],[-2,15],[1,25]],[[2811,4022],[-3,-43]],[[2808,3979],[-4,-5]],[[2804,3974],[-1,17],[-3,-13],[-3,5]],[[2797,3983],[1,6]],[[2807,4009],[0,0]],[[2360,4011],[-2,5],[-5,-21],[-4,-1]],[[2349,3994],[0,8]],[[2609,4022],[-4,-13]],[[2605,4009],[-4,-12],[-3,0]],[[2598,3997],[0,41]],[[2760,4028],[-4,-9],[-4,-1]],[[2740,4004],[-4,-14]],[[2736,3990],[-2,3]],[[2734,3993],[-3,30],[1,4]],[[2333,4051],[0,-70]],[[2333,3981],[-9,2]],[[2324,3983],[-2,2],[0,28]],[[2345,4010],[-4,0],[0,-39]],[[2341,3971],[-4,-2]],[[2337,3969],[-4,-3],[0,15]],[[1588,4029],[-1,-23],[3,-22],[0,-26]],[[1590,3958],[-14,0]],[[2398,4015],[-2,-20],[0,-10]],[[2396,3985],[-3,-26]],[[2393,3959],[-13,3]],[[2380,3962],[1,65]],[[2722,4022],[-2,-15]],[[2720,4007],[-3,-9],[-4,-21]],[[2713,3977],[-5,14]],[[2708,3991],[0,15]],[[2461,3994],[1,-24],[3,-4]],[[2465,3966],[-3,-17],[-3,11]],[[2459,3960],[-1,54]],[[2693,4010],[-1,1],[0,-33]],[[2692,3978],[-3,1]],[[2689,3979],[0,19],[-3,8],[-6,5]],[[2734,3993],[-6,-19]],[[2728,3974],[-4,4]],[[2724,3978],[-2,1],[-2,28]],[[2875,4028],[0,-10]],[[2875,4018],[-6,0]],[[2869,4018],[-4,-25],[-2,6],[-1,-16],[-2,17],[5,42],[8,0]],[[2026,3983],[-10,0]],[[2016,3983],[2,26],[0,22],[2,9]],[[2533,4005],[-10,-1]],[[2523,4004],[-3,9]],[[2663,4009],[-1,-26]],[[2662,3983],[-8,-7]],[[2654,3976],[-5,0],[0,43]],[[2853,4011],[-1,0]],[[2853,4011],[0,0]],[[2853,4017],[-1,-6]],[[2852,4011],[-1,6]],[[2849,4012],[-4,-20]],[[2845,3992],[-2,5]],[[2843,3997],[-1,0],[-6,41]],[[1992,4041],[1,-21]],[[1993,4020],[-3,-7]],[[1990,4013],[-8,-32],[-2,6],[-4,-3],[-4,-29],[-7,-14],[0,-30]],[[1965,3911],[0,-32],[-19,0]],[[2016,3983],[-1,-11]],[[2015,3972],[-4,8],[-2,-12],[-5,11],[-2,16],[-6,0],[-3,25]],[[2887,3963],[-5,-9],[-1,-12],[-5,-1]],[[2876,3941],[-1,58]],[[2875,3999],[0,19]],[[2882,4040],[3,-20],[0,-37],[2,-20]],[[2579,4036],[0,-55],[1,1]],[[2580,3982],[0,-11]],[[2580,3971],[-10,0]],[[2570,3971],[0,32]],[[2598,3997],[-3,-1],[0,-11]],[[2595,3985],[-2,-5],[-6,2]],[[2587,3982],[0,55]],[[2439,3999],[-7,1],[0,-17]],[[2432,3983],[-13,1]],[[2419,3984],[0,33],[-6,1]],[[2843,3997],[-3,-31]],[[2840,3966],[-3,-6]],[[2837,3960],[-6,23]],[[2831,3983],[-4,3],[-1,14],[1,14]],[[2587,3982],[-7,0]],[[2406,3967],[-7,2],[-3,16]],[[2410,4019],[-4,-52]],[[2785,4017],[-3,-37],[1,-21],[-2,-21]],[[2781,3938],[-6,27]],[[2775,3965],[0,1]],[[2775,3966],[1,20],[-1,3],[1,19],[-5,1]],[[2906,4026],[0,-7],[-4,-46],[-2,-12],[-3,0],[2,29],[-1,16]],[[2831,3983],[-6,-39]],[[2825,3944],[-3,18]],[[2822,3962],[-9,13]],[[2813,3975],[4,22]],[[1641,4003],[0,-10]],[[1641,3993],[0,-8]],[[1641,3985],[-4,0],[-2,-8],[-5,1],[-5,-22],[-5,18],[-8,-20],[-3,-35]],[[1609,3919],[-9,4]],[[1600,3923],[0,36],[2,13]],[[2638,4023],[-2,-46]],[[2636,3977],[-5,13]],[[2631,3990],[-3,-4]],[[2628,3986],[-4,14],[-2,-8]],[[2622,3992],[0,37]],[[2615,4030],[-2,-67]],[[2613,3963],[0,-4]],[[2613,3959],[-1,-3]],[[2612,3956],[-7,0]],[[2605,3956],[0,53]],[[2622,3992],[-1,-14]],[[2621,3978],[-8,-15]],[[2272,3997],[0,-32]],[[2272,3965],[-15,0]],[[2257,3965],[0,48]],[[1600,3923],[-3,0]],[[1597,3923],[-3,6],[-1,16],[-3,13]],[[2762,4015],[-1,-21]],[[2761,3994],[-2,-26],[-5,-5]],[[2754,3963],[1,16],[-5,15]],[[2380,3962],[0,-3]],[[2380,3959],[-9,2],[0,-5],[-8,1]],[[2363,3957],[0,42]],[[2775,3966],[-5,2],[-7,11],[-2,15]],[[2644,3930],[-5,10]],[[2639,3940],[0,9]],[[2639,3949],[-3,28]],[[2645,4020],[-1,-90]],[[2813,3975],[-1,-6]],[[2812,3969],[-4,10]],[[2474,3972],[-4,0],[0,-14]],[[2470,3958],[-5,8]],[[2860,3969],[-2,-24],[1,34],[1,-10]],[[2875,3999],[-2,-6],[-3,-36]],[[2870,3957],[-5,1]],[[2865,3958],[-2,-8],[-1,17],[2,22],[5,29]],[[2555,4004],[0,-49]],[[2555,3955],[-8,-1]],[[2547,3954],[-3,48]],[[2015,3972],[4,-16],[4,-3],[-3,-12],[-1,-25],[2,-11],[1,-19],[3,-21]],[[2025,3865],[-21,0],[0,-51]],[[2004,3814],[-16,0]],[[1988,3814],[-2,28]],[[1986,3842],[4,0],[0,69]],[[1990,3911],[0,102]],[[2654,3976],[-1,-71]],[[2653,3905],[-5,24]],[[2648,3929],[-4,1]],[[2419,3984],[-1,-22],[0,-25],[-2,-31]],[[2416,3906],[-4,7],[-1,11]],[[2411,3924],[-3,34]],[[2408,3958],[-2,9]],[[1654,3988],[-6,6],[-7,-1]],[[2797,3983],[-5,-28],[-2,-4],[-2,-23]],[[2788,3928],[-3,17],[-2,-17]],[[2783,3928],[-2,10]],[[2853,3919],[-4,7]],[[2849,3926],[0,25],[-1,20],[-3,21]],[[2852,4011],[0,0]],[[2853,4011],[3,-22],[-2,-3],[3,-11],[-2,-6],[0,-13],[-2,-26],[0,-11]],[[2363,3957],[0,-16]],[[2363,3941],[-14,3]],[[2349,3944],[0,37]],[[2349,3981],[0,13]],[[2459,3960],[-4,-10],[-4,-2]],[[2451,3948],[-4,1],[-4,22]],[[2443,3971],[0,28]],[[2297,3981],[0,-33]],[[2297,3948],[-11,0]],[[2286,3948],[-2,18],[0,31]],[[1990,3911],[-25,0]],[[2257,3965],[0,-17]],[[2257,3948],[-16,0]],[[2241,3948],[0,49]],[[2324,3983],[0,-35]],[[2324,3948],[-12,0]],[[2312,3948],[0,43],[-3,6]],[[2511,4013],[0,-57],[3,1]],[[2514,3957],[0,-17]],[[2514,3940],[-12,0],[0,-17]],[[2502,3923],[-3,1]],[[2499,3924],[0,54]],[[2523,4004],[0,-48]],[[2523,3956],[-9,1]],[[2312,3948],[0,-24]],[[2312,3924],[-11,0]],[[2301,3924],[-1,16],[-3,8]],[[2689,3979],[-1,-35],[-3,0]],[[2685,3944],[-2,0]],[[2683,3944],[-3,1],[-2,18]],[[2678,3963],[1,41]],[[2703,3950],[1,11],[-3,17],[-3,-13]],[[2698,3965],[0,8],[-6,5]],[[2708,3991],[-1,-33],[-4,-8]],[[2349,3981],[-7,2],[-1,-12]],[[2678,3963],[-11,2],[-2,10]],[[2665,3975],[-3,8]],[[2605,3956],[-7,-18]],[[2598,3938],[-3,-1]],[[2595,3937],[0,48]],[[2724,3978],[-3,-21]],[[2721,3957],[-6,0]],[[2715,3957],[-2,20]],[[2547,3954],[0,-9]],[[2547,3945],[-11,0]],[[2536,3945],[-1,0]],[[2535,3945],[0,60]],[[2535,3945],[-9,-1]],[[2526,3944],[-3,1],[0,11]],[[2570,3971],[0,-16]],[[2570,3955],[-6,0]],[[2564,3955],[-5,0]],[[2559,3955],[-4,0]],[[2748,3992],[0,-27],[-2,-16],[0,-27]],[[2746,3922],[-2,2]],[[2744,3924],[-2,22],[-2,9]],[[2740,3955],[-3,19],[-1,16]],[[1781,3912],[0,-116],[-25,0],[0,-226]],[[1756,3570],[0,-156]],[[1756,3414],[-36,180]],[[1720,3594],[0,192],[-14,88]],[[1706,3874],[-14,83],[0,15],[9,14]],[[2443,3971],[0,-28],[-5,1],[0,-26]],[[2438,3918],[-3,-6],[-3,5]],[[2432,3917],[0,0]],[[2432,3917],[0,66]],[[2628,3986],[0,-50]],[[2628,3936],[-1,-5]],[[2627,3931],[-4,15]],[[2623,3946],[-2,8]],[[2621,3954],[0,24]],[[2876,3941],[0,-36]],[[2876,3905],[-1,9],[-5,-2]],[[2870,3912],[-2,15],[2,7]],[[2870,3934],[0,23]],[[2176,3997],[0,-80]],[[2176,3917],[-8,0]],[[2168,3917],[-10,0]],[[2158,3917],[0,81]],[[2158,3917],[-3,0]],[[2155,3917],[-13,-1]],[[2142,3916],[0,65]],[[2226,3997],[0,-81]],[[2226,3916],[-15,0]],[[2211,3916],[-1,0]],[[2210,3916],[0,81]],[[2195,3997],[0,-81]],[[2195,3916],[-3,0]],[[2192,3916],[-12,1]],[[2180,3917],[-4,0]],[[2286,3948],[-1,-11],[0,-37]],[[2285,3900],[-13,0]],[[2272,3900],[0,65]],[[2241,3948],[0,-32]],[[2241,3916],[-15,0]],[[2226,3916],[0,0]],[[2210,3916],[-15,0]],[[2849,3926],[0,-16]],[[2849,3910],[0,-23]],[[2849,3887],[-2,14],[-6,8],[-2,-8],[-1,14]],[[2838,3915],[2,22]],[[2840,3937],[3,16],[-3,13]],[[2059,3997],[0,-49],[-1,-13],[3,0],[0,-28]],[[2061,3907],[-8,0],[-3,9]],[[2086,3883],[-25,0]],[[2061,3883],[0,24]],[[2639,3949],[-6,-13]],[[2633,3936],[-1,9],[1,26],[-2,19]],[[2775,3965],[-3,-6],[-3,-16],[1,-11],[-3,-22]],[[2767,3910],[-4,14],[-3,-35],[-4,-17],[-3,2],[-3,-15]],[[2750,3859],[1,25],[-2,32]],[[2749,3916],[4,9],[1,38]],[[1660,3886],[-7,32]],[[1653,3918],[-9,42]],[[1644,3960],[-3,12],[0,13]],[[2749,3916],[-3,6]],[[2740,3955],[-3,-5],[-8,-30]],[[2729,3920],[-2,14],[2,10],[-1,30]],[[2804,3974],[0,-12],[-2,-21]],[[2802,3941],[-5,-17],[-3,-25]],[[2794,3899],[-6,29]],[[2633,3936],[-3,-2]],[[2630,3934],[-2,2]],[[2715,3957],[-2,-46],[1,-11]],[[2714,3900],[-3,-11],[-2,14]],[[2709,3903],[-2,10]],[[2707,3913],[-4,37]],[[1706,3874],[-19,-108],[-2,1]],[[1685,3767],[-20,96]],[[2595,3937],[-3,-14]],[[2592,3923],[-2,6],[-8,-1]],[[2582,3928],[-1,43],[-1,0]],[[2337,3969],[0,-45]],[[2337,3924],[-13,0]],[[2324,3924],[0,24]],[[1644,3960],[1,-13],[-6,-30]],[[1639,3917],[-6,-30],[-9,-7],[-4,10],[-7,-9]],[[1613,3881],[-3,38],[-1,0]],[[2432,3917],[-6,-7],[-3,-13]],[[2423,3897],[-3,-7],[-4,16]],[[2408,3958],[-3,-45],[-6,1]],[[2399,3914],[-7,1]],[[2392,3915],[1,44]],[[2837,3960],[-2,-7]],[[2835,3953],[1,-4]],[[2836,3949],[1,-6]],[[2837,3943],[2,-10]],[[2839,3933],[0,-13],[-3,-15],[-3,6]],[[2833,3911],[-8,33]],[[2832,3948],[0,0]],[[2832,3944],[0,0]],[[2033,3915],[2,-13],[-1,-22],[-3,-11]],[[2031,3869],[-6,-4]],[[2349,3944],[0,-20]],[[2349,3924],[-12,0]],[[2665,3975],[0,-74]],[[2665,3901],[-6,16],[-4,-12]],[[2655,3905],[-2,0]],[[1884,3881],[-13,-1]],[[1871,3880],[-21,1]],[[1850,3881],[0,12]],[[2142,3916],[0,-15]],[[2142,3901],[-31,-1]],[[2729,3920],[-1,-9]],[[2728,3911],[-2,-11]],[[2726,3900],[-2,6],[0,16],[-3,35]],[[2812,3969],[-3,-22]],[[2809,3947],[-2,-15],[-3,-4]],[[2804,3928],[-2,13]],[[2698,3965],[-1,-23],[-2,-9],[1,-34],[-1,-3]],[[2695,3896],[-2,-1]],[[2693,3895],[-2,0],[0,17],[-3,1],[-1,17],[-2,1],[0,13]],[[2621,3954],[-8,0],[0,5]],[[2707,3913],[-5,-4],[-3,-10],[0,-24]],[[2699,3875],[-4,21]],[[2499,3924],[-10,1]],[[2489,3925],[-1,47]],[[2683,3944],[-3,-47],[-2,-4]],[[2678,3893],[-2,34],[-4,-6]],[[2672,3921],[-3,-20],[-4,0]],[[2822,3962],[-2,-21],[5,-51]],[[2825,3890],[-2,-28]],[[2823,3862],[-3,1],[-6,53]],[[2814,3916],[-5,31]],[[2489,3925],[0,-17],[-3,0]],[[2486,3908],[-13,1]],[[2473,3909],[0,21]],[[2473,3930],[1,6]],[[2474,3936],[1,9],[-5,13]],[[2451,3948],[0,-60]],[[2451,3888],[-3,12],[-4,3],[-4,13]],[[2440,3916],[-2,2]],[[2840,3937],[-2,18]],[[2838,3955],[-1,5]],[[2582,3928],[-1,-14]],[[2581,3914],[-11,0]],[[2570,3914],[0,41]],[[2474,3936],[-4,16],[-5,-11],[-2,-26],[-6,-10]],[[2457,3905],[-5,-19],[-1,2]],[[2887,3963],[4,-27],[2,-1],[0,-33],[2,-32]],[[2895,3870],[-1,0]],[[2894,3870],[0,0]],[[2894,3870],[-8,0]],[[2886,3870],[-9,2],[-1,19]],[[2876,3891],[0,14]],[[2272,3900],[-15,0]],[[2257,3900],[0,48]],[[2783,3928],[-5,-53]],[[2778,3875],[-2,-12]],[[2776,3863],[-5,8],[-1,18],[-4,7]],[[2766,3896],[1,14]],[[2392,3915],[0,-30]],[[2392,3885],[-6,1],[0,-6],[-6,2]],[[2380,3882],[0,8]],[[2380,3890],[0,69]],[[2870,3934],[-2,-13],[1,-9],[-2,-18],[-4,20],[-4,12],[2,19],[2,-19],[0,18],[2,14]],[[2833,3911],[-1,-31]],[[2832,3880],[-4,14],[-3,-4]],[[2827,3930],[0,2]],[[2827,3930],[0,0]],[[2726,3900],[-3,-16]],[[2723,3884],[-7,5],[-2,11]],[[2380,3890],[-16,2]],[[2364,3892],[-1,0],[0,49]],[[2839,3943],[-2,0]],[[2838,3955],[1,-12]],[[1653,3918],[-1,-18],[2,-21],[-3,-32]],[[1651,3847],[-3,17],[-3,-11],[-4,15]],[[1641,3868],[-2,13]],[[1639,3881],[0,36]],[[2623,3946],[-1,-14],[-5,-4]],[[2617,3928],[-5,-13]],[[2612,3915],[0,41]],[[2411,3924],[-3,-58]],[[2408,3866],[-3,0]],[[2405,3866],[-6,31],[0,17]],[[1597,3923],[-1,-10],[3,-15],[-1,-16],[1,-8],[0,-20],[-2,-9]],[[1597,3845],[-3,0],[0,39],[-7,2],[-4,-4]],[[1583,3882],[-5,61],[-3,4]],[[2612,3915],[-4,8]],[[2608,3923],[-3,-5],[0,-23]],[[2605,3895],[-4,4]],[[2601,3899],[0,14],[-3,10],[0,15]],[[2526,3944],[-1,-40],[2,-6]],[[2527,3898],[-13,1]],[[2514,3899],[0,41]],[[2559,3955],[-4,-19],[-1,-21],[1,-27]],[[2555,3888],[-6,-3]],[[2549,3885],[-4,-14],[-4,-8]],[[2541,3863],[-1,9],[3,10],[0,10]],[[2543,3892],[5,32],[-1,21]],[[2570,3914],[0,-30]],[[2570,3884],[-6,-4]],[[2564,3880],[0,75]],[[2564,3880],[-5,2]],[[2559,3882],[-4,6]],[[2744,3924],[-2,-18],[-4,-22]],[[2738,3884],[-3,6],[-3,-9]],[[2732,3881],[-4,30]],[[2473,3930],[-2,-10],[-2,-23],[2,-12]],[[2471,3885],[-1,-1]],[[2470,3884],[-2,-26]],[[2468,3858],[-2,22],[-5,0],[-4,-7]],[[2457,3873],[0,32]],[[2639,3895],[-7,-8]],[[2632,3887],[-2,47]],[[2639,3940],[0,-45]],[[2301,3924],[0,-41]],[[2301,3883],[-13,0]],[[2288,3883],[-3,0],[0,17]],[[2257,3900],[0,-16]],[[2257,3884],[-16,-1]],[[2241,3883],[0,33]],[[2324,3924],[0,-57]],[[2324,3867],[-12,0]],[[2312,3867],[0,57]],[[1583,3882],[-1,-17],[2,-20],[-4,0],[0,-25],[-3,-5]],[[1577,3815],[0,0]],[[1577,3815],[-3,0]],[[1574,3815],[0,1]],[[1574,3816],[2,4],[-1,23],[-6,46],[-1,22]],[[2814,3916],[-7,-33],[-1,2]],[[2806,3885],[-3,18]],[[2803,3903],[1,25]],[[2627,3931],[-4,-11]],[[2623,3920],[-4,-11]],[[2619,3909],[-2,19]],[[1574,3816],[-2,-9],[-2,9]],[[1570,3816],[-5,9],[-4,19],[-3,-3]],[[1558,3841],[-4,29],[-6,22],[-5,37]],[[2543,3892],[-7,0]],[[2536,3892],[0,53]],[[2794,3899],[-1,-18],[6,-16]],[[2799,3865],[-5,-27]],[[2794,3838],[-3,-13]],[[2791,3825],[-13,50]],[[2788,3872],[0,0]],[[2536,3892],[-1,0]],[[2535,3892],[-6,0]],[[2529,3892],[-2,6]],[[2693,3895],[-1,-25],[-5,-7]],[[2687,3863],[-3,2]],[[2684,3865],[-2,15]],[[2682,3880],[-4,13]],[[2364,3892],[0,-23]],[[2364,3869],[-15,6]],[[2349,3875],[0,49]],[[2839,3943],[0,-10]],[[2803,3903],[-3,-28]],[[2800,3875],[-1,-10]],[[2601,3899],[-6,0],[-1,-8]],[[2594,3891],[-2,2],[0,30]],[[2648,3929],[-3,-32]],[[2645,3897],[-4,-8]],[[2641,3889],[-2,6]],[[2514,3899],[0,-24]],[[2514,3875],[-12,-1]],[[2502,3874],[0,6]],[[2502,3880],[0,43]],[[2632,3887],[-2,-9]],[[2630,3878],[-1,-4]],[[2629,3874],[-6,27],[0,19]],[[2594,3891],[-5,-14],[0,-13]],[[2589,3864],[-1,0]],[[2588,3864],[-6,1]],[[2582,3865],[-1,0]],[[2581,3865],[0,49]],[[2473,3909],[-2,-24]],[[2853,3919],[1,-33],[3,-28],[-1,-12],[-6,27],[-1,37]],[[2655,3905],[0,-21]],[[2655,3884],[-6,-13],[-2,7]],[[2647,3878],[-2,19]],[[2619,3909],[-4,-12]],[[2615,3897],[-3,-2]],[[2612,3895],[-4,28]],[[2682,3880],[-4,-24]],[[2678,3856],[-4,3],[-6,21]],[[2668,3880],[4,33],[0,8]],[[2502,3880],[-6,2],[-4,-8],[-3,0],[-3,-10]],[[2486,3864],[0,44]],[[2766,3896],[-1,-29],[-3,-23],[0,-8]],[[2762,3836],[-3,-16],[-1,-22]],[[2758,3798],[-9,-3],[-3,12],[1,21]],[[2747,3828],[0,23],[3,8]],[[2423,3897],[-2,-24],[-4,1],[2,-15],[-2,-10]],[[2417,3849],[-6,1],[0,15],[-3,1]],[[2312,3867],[0,-49]],[[2312,3818],[-11,1]],[[2301,3819],[0,64]],[[2337,3924],[0,-65]],[[2337,3859],[-13,0]],[[2324,3859],[0,8]],[[2349,3875],[0,-16]],[[2349,3859],[-12,0]],[[2747,3828],[-3,8]],[[2744,3836],[-4,17],[-2,31]],[[1613,3881],[0,-39]],[[1613,3842],[-11,-13],[-2,6],[-2,-29]],[[1598,3806],[-4,-4],[1,18]],[[1595,3820],[2,25]],[[2612,3895],[-4,-17]],[[2608,3878],[-3,6]],[[2605,3884],[0,11]],[[2629,3874],[-5,-22]],[[2624,3852],[-3,1]],[[2621,3853],[-3,15],[-1,21],[-2,8]],[[2668,3880],[-2,-14],[1,-16],[-4,-4]],[[2663,3846],[-3,11]],[[2660,3857],[-3,9],[-2,18]],[[2440,3916],[0,-91]],[[2440,3825],[-5,0],[0,-10]],[[2435,3815],[-3,0]],[[2432,3815],[0,25]],[[2432,3840],[0,77]],[[1685,3767],[17,-81]],[[1702,3686],[-26,0]],[[1676,3686],[-7,23]],[[1669,3709],[-3,27],[-4,2]],[[1662,3738],[2,27],[-3,11],[-2,26],[-3,2],[-4,19],[-1,24]],[[2457,3873],[-1,-49]],[[2456,3824],[-9,0]],[[2447,3824],[-7,1]],[[2432,3840],[-15,1]],[[2417,3841],[0,8]],[[1639,3881],[-7,-8],[-2,1],[-6,-14],[0,-10],[-10,-22]],[[1614,3828],[-1,14]],[[2876,3891],[-3,-15],[0,-11]],[[2873,3865],[-4,-32],[-6,13],[-1,5],[-3,24],[2,12],[0,12],[3,3],[3,-11],[3,21]],[[2180,3917],[0,-82]],[[2180,3835],[-12,0]],[[2168,3835],[0,0]],[[2168,3835],[0,82]],[[2192,3916],[0,-81]],[[2192,3835],[-12,0]],[[2155,3917],[0,-82]],[[2155,3835],[-13,0]],[[2142,3835],[0,1]],[[2142,3836],[0,65]],[[2168,3835],[-12,0]],[[2156,3835],[-1,0]],[[2823,3862],[0,-7]],[[2823,3855],[-2,-2]],[[2821,3853],[-2,6],[-9,-15]],[[2810,3844],[0,15],[-4,26]],[[2211,3916],[0,-65]],[[2211,3851],[0,-16]],[[2211,3835],[-18,0]],[[2193,3835],[-1,0]],[[2405,3866],[-2,-15],[0,-23]],[[2403,3828],[-2,-7],[-6,2],[-3,12]],[[2392,3835],[0,50]],[[2241,3883],[0,-48]],[[2241,3835],[-12,0]],[[2229,3835],[-3,0],[0,16]],[[2226,3851],[0,65]],[[2061,3883],[0,-49],[-3,0]],[[2058,3834],[-21,2]],[[2037,3836],[-6,33]],[[2226,3851],[-15,0]],[[2849,3887],[0,-8]],[[2849,3879],[-2,2],[-3,-22]],[[2844,3859],[1,-23],[-3,4],[-3,29],[-5,-16],[-1,23],[5,39]],[[2581,3865],[0,-5],[-11,0]],[[2570,3860],[0,24]],[[2703,3847],[-2,-11],[-1,20]],[[2700,3856],[-1,19]],[[2709,3903],[-1,-7],[0,-23],[-4,-12],[-1,-14]],[[1807,3893],[0,-79]],[[1807,3814],[0,-101]],[[1807,3713],[0,-113]],[[1807,3600],[0,-29]],[[1807,3571],[-20,0],[0,2],[-27,-1],[-4,-2]],[[1986,3842],[0,6],[-14,0],[2,-14],[4,-7],[-1,-12]],[[1977,3815],[-30,0]],[[1947,3815],[-1,64]],[[2732,3881],[2,-6],[-3,-12],[-9,-28]],[[2722,3835],[-1,39],[2,10]],[[2486,3864],[0,-37]],[[2486,3827],[-5,0]],[[2481,3827],[-1,17],[-3,0],[-7,40]],[[2810,3844],[-5,-14],[-1,7]],[[2804,3837],[-4,18],[0,20]],[[2722,3835],[0,0]],[[2722,3835],[-2,-15],[-2,-40]],[[2718,3780],[-2,4]],[[2716,3784],[-2,23],[-3,20],[-6,-2]],[[2705,3825],[1,20],[-3,2]],[[2142,3836],[-19,0]],[[2123,3836],[-19,0]],[[2104,3836],[-3,0]],[[2101,3836],[0,46]],[[2272,3900],[0,-81]],[[2272,3819],[-9,0]],[[2263,3819],[-6,0]],[[2257,3819],[0,65]],[[2288,3883],[-1,-81]],[[2287,3802],[-9,0]],[[2278,3802],[0,17],[-6,0]],[[2647,3878],[-1,-10]],[[2646,3868],[-4,4]],[[2642,3872],[-1,17]],[[2529,3892],[0,-58]],[[2529,3834],[-6,0]],[[2523,3834],[-9,0]],[[2514,3834],[0,41]],[[2605,3884],[-6,-27]],[[2599,3857],[-2,-21],[-2,4]],[[2595,3840],[0,22],[-6,2]],[[2700,3856],[-4,-7],[-3,-20]],[[2693,3829],[-6,34]],[[2621,3853],[-4,-4]],[[2617,3849],[-8,4]],[[2609,3853],[-1,25]],[[2776,3863],[-4,-37],[-2,-6]],[[2770,3820],[-8,16]],[[2832,3880],[-1,-31]],[[2831,3849],[0,-17]],[[2831,3832],[-1,0]],[[2830,3832],[-2,7]],[[2828,3839],[-3,5]],[[2825,3844],[-2,11]],[[2642,3872],[-2,-17]],[[2640,3855],[-5,-16],[-2,0]],[[2633,3839],[-1,17],[-2,22]],[[1850,3881],[5,-33],[-1,-20],[-2,-14]],[[1852,3814],[-1,0]],[[1851,3814],[-44,0]],[[2535,3892],[0,-20],[-1,-37]],[[2534,3835],[-5,-1]],[[2541,3863],[-5,-27],[-2,-2]],[[2534,3834],[0,1]],[[2380,3882],[0,-57]],[[2380,3825],[-15,1]],[[2365,3826],[-1,0],[0,43]],[[2886,3870],[1,-18],[-1,-12],[-7,-2]],[[2879,3838],[-5,-2]],[[2874,3836],[-3,-7],[0,11],[2,25]],[[2744,3836],[-7,-35],[-5,4]],[[2732,3805],[-3,23],[-2,-6],[-5,13]],[[2559,3882],[0,-53]],[[2559,3829],[-6,3]],[[2553,3832],[0,25],[-3,-1],[-1,29]],[[1577,3815],[2,-14],[-5,14]],[[1595,3820],[-4,-22],[-3,-2],[-4,15],[-2,-17],[-3,5],[-2,16]],[[2392,3835],[0,-37]],[[2392,3798],[-12,2]],[[2380,3800],[0,25]],[[2553,3832],[0,-8],[-5,-7]],[[2548,3817],[-6,1]],[[2542,3818],[-3,11],[-5,0]],[[2534,3829],[0,5]],[[2570,3860],[0,-25]],[[2570,3835],[-3,-11]],[[2567,3824],[-6,0]],[[2561,3824],[-2,5]],[[2660,3857],[-1,-20],[-4,-16]],[[2655,3821],[-2,18],[-4,2]],[[2649,3841],[-3,27]],[[2609,3853],[-5,-14]],[[2604,3839],[-5,18]],[[2301,3819],[0,-17],[-5,0]],[[2296,3802],[-9,0]],[[2086,3883],[0,-70]],[[2086,3813],[0,-76]],[[2086,3737],[-8,15]],[[2078,3752],[-9,16],[-10,-4],[-1,6]],[[2058,3770],[0,64]],[[2101,3836],[0,-18],[-3,0],[0,-11],[-6,0],[-6,6]],[[2257,3819],[-15,-1]],[[2242,3818],[-1,17]],[[2481,3827],[-4,1],[0,-17],[-5,-8]],[[2472,3803],[-1,7]],[[2471,3810],[-3,19],[0,29]],[[2502,3874],[0,-48]],[[2502,3826],[-13,1]],[[2489,3827],[-3,0]],[[2849,3879],[6,-33],[4,-34],[0,-16],[-3,20],[-8,23],[-1,-10],[-3,30]],[[1641,3868],[-5,-12],[-9,-79],[-4,-22]],[[1623,3755],[-7,46]],[[1616,3801],[-2,27]],[[1871,3880],[-2,-15],[0,-51]],[[1869,3814],[-17,0]],[[1919,3879],[1,-25],[3,-32],[-1,-8]],[[1922,3814],[-41,0],[-12,0]],[[2471,3810],[-5,-16]],[[2466,3794],[-4,-7],[-2,13]],[[2460,3800],[-4,24]],[[2684,3832],[-5,0]],[[2679,3832],[-1,24]],[[2684,3865],[0,-33]],[[2679,3832],[-4,-13]],[[2675,3819],[-4,3],[-3,14],[-2,-14]],[[2666,3822],[-3,24]],[[1947,3815],[0,-51]],[[1947,3764],[0,-74]],[[1947,3690],[0,-90]],[[1947,3600],[-27,-1]],[[1920,3599],[-21,1]],[[1899,3600],[-18,0]],[[1881,3600],[6,19],[6,4],[4,33],[3,9],[-1,19],[3,17]],[[1902,3701],[5,24],[2,39],[5,2],[6,41],[2,7]],[[2633,3839],[1,-14]],[[2634,3825],[-6,-17]],[[2628,3808],[-3,15]],[[2625,3823],[-1,29]],[[2804,3837],[-2,-16]],[[2802,3821],[-8,17]],[[2791,3825],[0,-24],[-2,-6]],[[2789,3795],[-2,-18],[-3,-13],[-4,2]],[[2780,3766],[-9,36]],[[2771,3802],[1,15],[-2,3]],[[2783,3822],[0,0]],[[2787,3805],[0,0]],[[2514,3834],[0,-25]],[[2514,3809],[-12,0]],[[2502,3809],[0,17]],[[2365,3826],[0,-33]],[[2365,3793],[-16,4]],[[2349,3797],[0,62]],[[1720,3594],[-18,92]],[[2649,3841],[-3,-19]],[[2646,3822],[-4,12],[-2,21]],[[2037,3836],[4,-23],[2,-32],[3,-14]],[[2046,3767],[1,-27]],[[2047,3740],[-16,-1]],[[2031,3739],[-16,0],[0,16],[-3,0]],[[2012,3755],[0,7],[-5,18],[-3,-2]],[[2004,3778],[0,36]],[[2889,3791],[0,0]],[[2889,3791],[0,0]],[[2894,3870],[0,0]],[[2885,3789],[-6,-4]],[[2879,3785],[0,0]],[[2879,3785],[-1,9],[3,9],[-2,35]],[[2894,3870],[-1,-9],[-1,-29],[-3,-8],[-4,-35]],[[1662,3738],[-1,7]],[[1661,3745],[-7,23],[-3,-17],[-4,-10],[-4,1],[-4,12],[-8,-36]],[[1631,3718],[-8,37]],[[2324,3859],[0,-66]],[[2324,3793],[-12,1]],[[2312,3794],[0,24]],[[2417,3841],[0,-52]],[[2417,3789],[-6,1]],[[2411,3790],[-3,0],[-4,36],[-1,2]],[[2582,3865],[0,-37],[-2,-8]],[[2580,3820],[-4,-11]],[[2576,3809],[0,16],[-3,0],[0,11],[-3,-1]],[[2588,3864],[0,-16],[4,-29]],[[2592,3819],[-1,-32]],[[2591,3787],[-2,-1]],[[2589,3786],[-5,2],[-2,9],[-2,23]],[[2693,3829],[0,-16],[2,-18],[-3,-19]],[[2692,3776],[-3,-17]],[[2689,3759],[-2,17]],[[2687,3776],[-1,23],[-3,13],[1,20]],[[2595,3840],[-3,-21]],[[2839,3836],[0,-19]],[[2839,3817],[-1,-1]],[[2838,3816],[-1,-2]],[[2837,3814],[-4,19],[-2,-1]],[[2831,3849],[3,-1],[5,13],[0,-25]],[[2666,3822],[0,-15]],[[2666,3807],[-5,-14]],[[2661,3793],[-2,3]],[[2659,3796],[-4,25]],[[2821,3853],[-7,-45]],[[2814,3808],[-4,7],[-3,-4]],[[2807,3811],[-5,10]],[[2337,3859],[-1,-66]],[[2336,3793],[-12,0]],[[2349,3797],[0,-4]],[[2349,3793],[-13,0]],[[2604,3839],[2,-4],[-1,-21]],[[2605,3814],[0,-6]],[[2605,3808],[-3,-8],[-5,2],[-6,-16]],[[2591,3786],[0,1]],[[2830,3832],[-8,-48]],[[2822,3784],[-1,4]],[[2821,3788],[-4,16],[-3,4]],[[2705,3825],[-2,-10],[0,-24]],[[2703,3791],[-7,-10]],[[2696,3781],[-4,-5]],[[2625,3823],[-4,-15]],[[2621,3808],[-4,2]],[[2617,3810],[0,39]],[[2646,3822],[-3,-14]],[[2643,3808],[-6,-9]],[[2637,3799],[-3,8],[0,18]],[[2617,3810],[-3,-17]],[[2614,3793],[-9,21]],[[2229,3835],[0,-49],[-3,0]],[[2226,3786],[-9,0],[0,16],[-6,0]],[[2211,3802],[0,33]],[[1988,3814],[2,-17],[-2,-17]],[[1988,3780],[-5,-11]],[[1983,3769],[0,8],[-4,14],[0,17],[-2,7]],[[1570,3816],[2,-10],[0,-33],[1,-9],[-2,-12],[-4,18],[-1,-4],[-5,25],[-4,-3],[2,29],[3,-15],[-4,39]],[[2659,3796],[-2,-7],[-5,-3]],[[2652,3786],[-4,26],[-2,10]],[[1616,3801],[0,-64],[-2,5],[-6,-13],[-8,-39]],[[1600,3690],[-2,11],[0,51]],[[1598,3752],[-1,42]],[[1597,3794],[1,12]],[[2432,3815],[0,-19],[-7,0],[-4,-8]],[[2421,3788],[-4,1]],[[2867,3778],[0,0]],[[2867,3778],[0,0]],[[2868,3777],[0,1]],[[2868,3778],[0,3]],[[2868,3781],[0,1],[0,-5]],[[2868,3781],[-1,-3]],[[2867,3778],[0,0]],[[2867,3778],[1,3]],[[2879,3785],[-8,-13],[1,27],[0,19],[-3,-8],[5,26]],[[2807,3811],[-3,-24]],[[2804,3787],[-5,-39]],[[2799,3748],[-5,-12]],[[2794,3736],[-5,59]],[[2799,3799],[0,0]],[[2852,3789],[-2,-9]],[[2850,3780],[-3,6],[-3,23],[-2,-8]],[[2842,3801],[-3,16]],[[2839,3836],[6,-19],[6,-3],[3,-20],[-2,-5]],[[2411,3790],[0,-30]],[[2411,3760],[-4,-11],[-2,17],[-7,1]],[[2398,3767],[-6,1]],[[2392,3768],[0,30]],[[2687,3776],[-2,2],[-1,-14]],[[2684,3764],[-9,22],[-2,-7]],[[2673,3779],[-1,8]],[[2672,3787],[4,20],[-1,12]],[[2771,3802],[-5,-40]],[[2766,3762],[-6,4],[-2,12],[-3,-1]],[[2755,3777],[3,21]],[[2142,3835],[0,-98]],[[2142,3737],[0,-17]],[[2142,3720],[-20,0]],[[2122,3720],[1,116]],[[2755,3777],[-3,-14],[-4,-34]],[[2748,3729],[-4,-2],[-6,9]],[[2738,3736],[-4,26]],[[2734,3762],[1,21],[-3,22]],[[2672,3787],[-4,1],[-2,19]],[[2058,3770],[-3,20],[-3,-23],[-1,8],[-5,-8]],[[2122,3720],[-9,0]],[[2113,3720],[-9,0]],[[2104,3720],[0,116]],[[2104,3720],[-18,0],[0,17]],[[2576,3809],[0,-14]],[[2576,3795],[-1,-23],[-4,-15]],[[2571,3757],[0,10],[-3,3],[-1,16]],[[2567,3786],[1,0],[-1,38]],[[2734,3762],[-4,-10]],[[2730,3752],[-3,11],[-7,3],[-2,14]],[[2168,3835],[0,-81],[1,-17]],[[2169,3737],[-13,0]],[[2156,3737],[0,17],[0,81]],[[2193,3835],[0,-49]],[[2193,3786],[-13,1],[1,-50]],[[2181,3737],[-12,0]],[[2156,3737],[-14,0]],[[2534,3829],[2,-13],[-5,-50]],[[2531,3766],[-8,3]],[[2523,3769],[0,65]],[[2242,3818],[0,-65]],[[2242,3753],[-16,1]],[[2226,3754],[0,32]],[[2211,3802],[0,-32]],[[2211,3770],[-18,0]],[[2193,3770],[0,16]],[[2523,3769],[0,0]],[[2523,3769],[-9,0]],[[2514,3769],[0,40]],[[2837,3814],[-2,-13],[3,-21]],[[2838,3780],[-3,-3],[0,-11]],[[2835,3766],[-4,-19]],[[2831,3747],[-2,-2],[-2,19],[-5,20]],[[2561,3824],[-2,-16],[-5,-36],[0,-8]],[[2554,3764],[-1,3]],[[2553,3767],[-4,8]],[[2549,3775],[-1,42]],[[2542,3818],[0,-51]],[[2542,3767],[-6,1]],[[2536,3768],[0,-18],[-3,-1]],[[2533,3749],[-2,17]],[[2716,3784],[-3,-11],[1,-26]],[[2714,3747],[-2,0]],[[2712,3747],[-3,4],[-2,21],[-6,13],[2,6]],[[2489,3827],[0,-49]],[[2489,3778],[-2,-29]],[[2487,3749],[-5,20],[-2,-6]],[[2480,3763],[-2,16],[-6,24]],[[2380,3800],[0,-30],[-2,-16]],[[2378,3754],[-1,0]],[[2377,3754],[-5,1],[0,11],[-8,2]],[[2364,3768],[1,25]],[[2502,3809],[-1,-32]],[[2501,3777],[-12,1]],[[2447,3824],[0,-86]],[[2447,3738],[-1,-8]],[[2446,3730],[-5,0],[0,16],[-6,1]],[[2435,3747],[0,68]],[[2637,3799],[-1,-33]],[[2636,3766],[-3,-8]],[[2633,3758],[-1,17],[-5,12]],[[2627,3787],[1,21]],[[2460,3800],[0,-63]],[[2460,3737],[-13,1]],[[2567,3786],[-5,-13]],[[2562,3773],[-3,-25],[-5,16]],[[2589,3786],[0,-34],[-4,-3]],[[2585,3749],[-9,46]],[[2627,3787],[-2,-27]],[[2625,3760],[-1,-2],[-1,23]],[[2623,3781],[-2,27]],[[2652,3786],[0,-15]],[[2652,3771],[-6,2]],[[2646,3773],[-3,35]],[[2278,3802],[0,-32]],[[2278,3770],[-15,0]],[[2263,3770],[0,49]],[[2312,3794],[0,-57]],[[2312,3737],[0,-25]],[[2312,3712],[-16,1]],[[2296,3713],[0,89]],[[2263,3770],[0,-33],[-3,0]],[[2260,3737],[-18,-1]],[[2242,3736],[0,17]],[[2549,3775],[-2,-6],[-2,12],[-1,-26],[-2,12]],[[2435,3747],[-8,0],[0,-36]],[[2427,3711],[-6,1]],[[2421,3712],[0,76]],[[1902,3701],[-48,-1],[-9,1]],[[1845,3701],[0,49],[3,0],[0,16],[3,0],[0,48]],[[2849,3743],[-2,-7]],[[2847,3736],[-1,12],[-4,-2],[-2,11],[-2,23]],[[2838,3816],[1,-10],[3,-7],[0,-18],[4,-14],[3,-24]],[[1983,3769],[-3,-25]],[[1980,3744],[-4,15],[-6,-6],[-1,13],[-16,1],[-6,-3]],[[2821,3788],[-3,-52]],[[2818,3736],[-3,7],[-1,14],[-3,11]],[[2811,3768],[-7,19]],[[1845,3701],[-6,0],[0,-8]],[[1839,3693],[-3,-5],[-7,2],[0,8],[-6,0],[0,17],[-3,-2],[-13,0]],[[2614,3793],[-2,-12]],[[2612,3781],[-6,-6],[-3,10]],[[2603,3785],[2,23]],[[2004,3778],[-4,-3],[0,-49],[0,-47]],[[2000,3679],[-10,0]],[[1990,3679],[0,40]],[[1990,3719],[0,24],[-2,37]],[[2623,3781],[-4,-3],[-3,-12]],[[2616,3766],[-3,1]],[[2613,3767],[-1,14]],[[2514,3769],[0,-8]],[[2514,3761],[-13,-1]],[[2501,3760],[0,17]],[[2850,3780],[4,-24]],[[2854,3756],[-3,-6]],[[2851,3750],[-2,3],[-6,31],[-1,17]],[[2480,3763],[-5,-38]],[[2475,3725],[-3,0],[-7,39],[4,19],[-3,11]],[[2603,3785],[-4,-30],[-2,-4]],[[2597,3751],[-6,35]],[[2673,3779],[0,-19]],[[2673,3760],[-3,1],[-5,-18],[1,-10]],[[2666,3733],[-7,27]],[[2659,3760],[2,33]],[[2646,3773],[-1,-17]],[[2645,3756],[-2,3]],[[2643,3759],[-7,7]],[[1598,3752],[-11,-18],[-3,15],[-2,1],[-5,17]],[[1577,3767],[-2,12],[3,17],[3,-6],[4,7],[8,-7],[4,15],[0,-11]],[[2296,3713],[0,-24]],[[2296,3689],[-18,-1]],[[2278,3688],[0,82]],[[2226,3754],[0,-18]],[[2226,3736],[-15,1]],[[2211,3737],[0,33]],[[2780,3749],[-3,-1],[-2,-25],[-3,-8]],[[2772,3715],[-1,-16]],[[2771,3699],[-6,24],[1,19]],[[2766,3742],[0,20]],[[2780,3766],[0,-17]],[[2772,3748],[0,0]],[[2775,3740],[0,0]],[[2475,3725],[-1,-6]],[[2474,3719],[-11,1]],[[2463,3720],[-3,0],[0,17]],[[1631,3718],[-17,-44],[0,-10],[-7,-39]],[[1607,3625],[-1,9],[-4,-6],[-1,25],[1,5],[-2,32]],[[1600,3690],[0,0]],[[2392,3768],[-3,0],[0,-19]],[[2389,3749],[-11,5]],[[2364,3768],[0,-49]],[[2364,3719],[-15,3]],[[2349,3722],[0,3]],[[2349,3725],[0,68]],[[2659,3760],[-4,-6]],[[2655,3754],[-3,17]],[[2794,3736],[-2,-17],[-2,0],[-1,-16]],[[2789,3703],[-1,-2]],[[2788,3701],[-5,42],[-3,6]],[[2585,3749],[-3,-39]],[[2582,3710],[-4,-5],[-3,11],[-2,-11]],[[2573,3705],[-2,18]],[[2571,3723],[0,34]],[[2324,3793],[0,-57]],[[2324,3736],[-12,1]],[[2336,3793],[0,-57]],[[2336,3736],[-12,0]],[[2349,3725],[-13,1]],[[2336,3726],[0,10]],[[2868,3777],[0,0]],[[2867,3778],[0,0]],[[2874,3693],[-1,10]],[[2873,3703],[-3,2],[4,38],[3,13],[2,29]],[[2885,3789],[-2,-22],[1,-2],[-5,-35],[0,-24],[-5,-13]],[[2712,3747],[-5,-7],[2,-9],[-3,-8]],[[2706,3723],[-3,4],[-2,-8],[-2,12],[-1,28],[-2,22]],[[2858,3730],[-2,23],[-2,3]],[[2852,3789],[3,0],[6,-24],[-3,-35]],[[2421,3712],[-6,0]],[[2415,3712],[0,9],[-5,12],[1,27]],[[2078,3752],[-3,-14],[-3,-31],[-5,-32],[-6,-2],[-6,-19]],[[2055,3654],[1,21],[-2,40],[-3,7],[-5,-14]],[[2046,3708],[1,32]],[[2831,3747],[1,-14],[5,-10],[0,-6]],[[2837,3717],[-3,-17]],[[2834,3700],[-5,13],[-1,14],[-5,5]],[[2823,3732],[-5,4]],[[2808,3739],[-2,-11]],[[2806,3728],[-7,13],[0,7]],[[2811,3768],[-3,-29]],[[2597,3751],[1,-15]],[[2598,3736],[-5,-35],[-1,-19]],[[2592,3682],[-4,2]],[[2588,3684],[-2,21],[-4,5]],[[2633,3758],[-3,-15]],[[2630,3743],[-1,-7],[-4,16]],[[2625,3752],[0,8]],[[2684,3764],[-2,-6],[1,-24]],[[2683,3734],[-3,7],[-5,-8]],[[2675,3733],[-2,27]],[[2193,3770],[0,-82]],[[2193,3688],[-12,0]],[[2181,3688],[0,49]],[[2571,3723],[-5,14]],[[2566,3737],[-1,19],[-3,17]],[[2730,3752],[2,-24],[-2,5],[-4,-24]],[[2726,3709],[-3,-2],[0,-12]],[[2723,3695],[-3,17],[-4,34],[-2,1]],[[2613,3767],[-3,-7],[-4,-24]],[[2606,3736],[-3,-33]],[[2603,3703],[-3,0],[1,16],[-3,17]],[[2706,3723],[-1,-21]],[[2705,3702],[-2,-7]],[[2703,3695],[-1,5]],[[2702,3700],[-5,2],[-5,36]],[[2692,3738],[-3,21]],[[2553,3767],[1,-22],[-4,-18]],[[2550,3727],[-2,-7]],[[2548,3720],[-7,-1]],[[2541,3719],[-1,18],[-4,31]],[[2847,3736],[3,-24]],[[2850,3712],[-2,-28]],[[2848,3684],[-2,26]],[[2846,3710],[-8,31],[-3,25]],[[1990,3719],[-13,0]],[[1977,3719],[0,10],[3,15]],[[2625,3752],[-1,-19]],[[2624,3733],[-8,-7]],[[2616,3726],[1,33],[-1,7]],[[2012,3755],[0,-80]],[[2012,3675],[-12,-2],[0,6]],[[2692,3738],[-4,-14],[-3,3]],[[2685,3727],[-2,7]],[[2766,3742],[-4,7],[-6,-29]],[[2756,3720],[-3,-9],[-3,6]],[[2750,3717],[-2,12]],[[2757,3751],[0,0]],[[2501,3760],[0,-48]],[[2501,3712],[-8,0],[-2,-6]],[[2491,3706],[0,22],[-4,13],[0,8]],[[2655,3754],[-2,-21]],[[2653,3733],[0,0]],[[2653,3733],[-5,8],[-3,15]],[[2566,3737],[1,-12],[-7,-21]],[[2560,3704],[-10,23]],[[2643,3759],[0,-54]],[[2643,3705],[-3,-8]],[[2640,3697],[-5,3]],[[2635,3700],[-5,43]],[[2533,3749],[-4,-26],[1,-16]],[[2530,3707],[-7,5]],[[2523,3712],[0,57]],[[2616,3726],[0,-9]],[[2616,3717],[-8,4],[-2,15]],[[2211,3737],[0,-50]],[[2211,3687],[-15,1]],[[2196,3688],[-3,0]],[[2278,3688],[-18,0]],[[2260,3688],[0,49]],[[2523,3712],[-1,0]],[[2522,3712],[-8,-1]],[[2514,3711],[0,50]],[[2846,3710],[-5,-2]],[[2841,3708],[-4,9]],[[2398,3767],[0,-77]],[[2398,3690],[-6,0],[0,-13]],[[2392,3677],[-3,1]],[[2389,3678],[0,71]],[[1600,3690],[-11,0],[-3,-4]],[[1586,3686],[-3,8],[-2,31],[-5,24],[1,18]],[[2823,3732],[-1,-27]],[[2822,3705],[-8,21],[0,-10],[-4,6]],[[2810,3722],[-2,17]],[[2491,3706],[0,-1]],[[2491,3705],[-9,6]],[[2482,3711],[-8,0]],[[2474,3711],[0,8]],[[2377,3754],[0,-47]],[[2377,3707],[-13,1]],[[2364,3708],[0,11]],[[1661,3745],[-8,-41],[-2,-27],[-3,0],[-8,-43]],[[1640,3634],[-3,10],[-3,34],[-3,40]],[[2541,3719],[-6,-30]],[[2535,3689],[-2,13],[-1,-8]],[[2532,3694],[-2,13]],[[2415,3712],[0,-24]],[[2415,3688],[-12,2]],[[2403,3690],[-5,0]],[[1977,3719],[-27,-1],[-3,-28]],[[2675,3733],[1,-36],[-1,-7]],[[2675,3690],[-1,4]],[[2674,3694],[-4,23],[-4,8]],[[2666,3725],[0,8]],[[2733,3680],[0,0]],[[2733,3680],[-7,29]],[[2738,3736],[-5,-56]],[[2514,3711],[-9,0]],[[2505,3711],[-4,1]],[[2666,3725],[-4,5],[-4,-11]],[[2658,3719],[-5,14]],[[2653,3733],[-3,-10],[-2,-22]],[[2648,3701],[-5,4]],[[2858,3730],[0,-14],[-5,7],[-2,27]],[[2031,3739],[0,-65]],[[2031,3674],[-18,1]],[[2013,3675],[-1,0]],[[1575,3732],[-3,0]],[[1572,3732],[-1,13],[3,6],[1,-19]],[[2389,3678],[-12,1]],[[2377,3679],[0,28]],[[2635,3700],[-2,-10]],[[2633,3690],[-6,28]],[[2627,3718],[-3,15]],[[2242,3736],[0,-48]],[[2242,3688],[-16,-1]],[[2226,3687],[0,49]],[[2788,3701],[-4,-21]],[[2784,3680],[-2,-7]],[[2782,3673],[-3,14]],[[2779,3687],[-4,10],[-3,18]],[[2113,3720],[0,-120]],[[2113,3600],[-26,-1]],[[2087,3599],[-32,0]],[[2055,3599],[0,55]],[[2771,3699],[-3,-15],[-2,6],[-4,-15],[-1,-18]],[[2761,3657],[-6,22]],[[2755,3679],[2,22],[-1,19]],[[2446,3730],[0,-21]],[[2446,3709],[-5,1],[0,-16],[3,-1],[0,-16]],[[2444,3677],[-12,2]],[[2432,3679],[-3,0],[0,32],[-2,0]],[[2723,3695],[-3,-16]],[[2720,3679],[-8,13],[-6,4],[-1,6]],[[2806,3728],[-1,-10],[-6,-55]],[[2799,3663],[-3,11]],[[2796,3674],[-7,29]],[[1669,3709],[-8,-43],[-1,-28],[-2,-10],[-4,-1],[0,-9],[-4,-17],[-3,-28],[-16,-13],[-2,14],[-3,34]],[[1626,3608],[2,10],[5,10],[7,6]],[[2853,3706],[-3,6]],[[2849,3743],[4,-29],[7,-10],[-4,-9],[-3,11]],[[2685,3727],[-2,-33],[2,-7],[-4,-34]],[[2681,3653],[-2,26],[-4,11]],[[2046,3708],[-7,-42]],[[2039,3666],[-8,0],[0,8]],[[2810,3722],[-1,-37]],[[2809,3685],[-3,-17]],[[2806,3668],[-4,-11],[-3,6]],[[2702,3700],[-10,-44]],[[2692,3656],[-7,-18]],[[2685,3638],[0,-2]],[[2685,3636],[-5,14]],[[2680,3650],[1,3]],[[2463,3720],[-1,-61]],[[2462,3659],[0,-8],[-5,-1]],[[2457,3650],[-1,19],[0,43],[-10,-3]],[[2156,3737],[0,-65]],[[2156,3672],[0,0]],[[2156,3672],[-14,0]],[[2142,3672],[0,48]],[[2573,3705],[-2,-1],[1,-31]],[[2572,3673],[-5,-19],[-3,-15]],[[2564,3639],[-5,38]],[[2559,3677],[1,27]],[[2169,3737],[0,-65]],[[2169,3672],[-13,0]],[[2181,3688],[0,-16]],[[2181,3672],[-12,0]],[[2169,3672],[0,0]],[[2226,3687],[1,-16]],[[2227,3671],[-15,0]],[[2212,3671],[-1,16]],[[2260,3688],[0,-16]],[[2260,3672],[-15,-1]],[[2245,3671],[-3,0],[0,17]],[[2324,3736],[0,-65]],[[2324,3671],[-12,1]],[[2312,3672],[0,40]],[[2336,3726],[0,-55]],[[2336,3671],[-12,0]],[[2324,3671],[0,0]],[[2603,3703],[1,-16]],[[2604,3687],[-3,0]],[[2601,3687],[-2,-9]],[[2599,3678],[-7,4]],[[2616,3717],[0,-16]],[[2616,3701],[-1,-24]],[[2615,3677],[-3,9],[-2,-9],[-3,11],[-3,-1]],[[2750,3717],[-3,-12],[1,-10],[-5,-16]],[[2743,3679],[-1,11],[-7,-21],[-2,11]],[[2658,3719],[-1,-25]],[[2657,3694],[-2,6],[-5,-9],[-2,5]],[[2648,3696],[0,5]],[[2627,3718],[-6,-16]],[[2621,3702],[-5,-1]],[[2834,3700],[1,-9]],[[2835,3691],[-2,-20]],[[2833,3671],[-2,1]],[[2831,3672],[-3,11]],[[2828,3683],[1,17],[-1,11],[-4,-7]],[[2824,3704],[-2,1]],[[1575,3732],[1,-22],[2,-4],[4,-19]],[[1582,3687],[-2,-7],[1,-27]],[[1581,3653],[0,-13],[-4,-5],[0,-15]],[[1577,3620],[-3,16],[0,31],[-3,30],[1,35]],[[2674,3694],[-4,2],[-1,-21]],[[2669,3675],[-2,7],[-5,-19],[-2,7],[-2,-8]],[[2658,3662],[-1,32]],[[2822,3705],[-6,-27]],[[2816,3678],[-4,14],[-3,-7]],[[2559,3677],[-6,-4]],[[2553,3673],[-1,6],[-1,27]],[[2551,3706],[-3,14]],[[2349,3722],[0,-54]],[[2349,3668],[0,-5]],[[2349,3663],[-13,0]],[[2336,3663],[0,8]],[[2755,3679],[-6,-16]],[[2749,3663],[-2,5],[-2,-10]],[[2745,3658],[-2,21]],[[2055,3599],[-2,0]],[[2053,3599],[-13,0]],[[2040,3599],[-2,9],[2,45],[-1,13]],[[2364,3708],[0,-43]],[[2364,3665],[-15,3]],[[2551,3706],[-12,-41]],[[2539,3665],[0,5]],[[2539,3670],[-4,6],[0,13]],[[2474,3711],[0,-53],[-2,0]],[[2472,3658],[-10,1]],[[2142,3672],[0,-73]],[[2142,3599],[-27,1]],[[2115,3600],[-2,0]],[[1977,3719],[-2,-9],[0,-24],[-5,-22],[-2,-23],[0,-14],[-3,-27]],[[1965,3600],[-18,0]],[[1990,3679],[0,-79]],[[1990,3600],[-25,0]],[[1626,3608],[-10,-56]],[[1616,3552],[-6,17],[-3,24]],[[1607,3593],[0,32]],[[2633,3690],[-2,-29]],[[2631,3661],[-1,5],[-5,-22]],[[2625,3644],[0,23],[-4,12],[0,23]],[[2841,3708],[4,-6],[2,-17]],[[2847,3685],[-4,-5],[0,-10]],[[2843,3670],[-8,21]],[[2588,3684],[-1,-21],[-2,-1]],[[2585,3662],[-9,-2]],[[2576,3660],[-4,13]],[[2779,3687],[-2,-7],[0,-14]],[[2777,3666],[-5,-56]],[[2772,3610],[-1,-9],[-3,7]],[[2768,3608],[-4,28],[-3,6]],[[2761,3642],[0,15]],[[2769,3664],[0,0]],[[1839,3693],[0,-93]],[[1839,3600],[-32,0]],[[2312,3672],[-1,-16]],[[2311,3656],[-15,0]],[[2296,3656],[0,33]],[[2457,3650],[-1,-41]],[[2456,3609],[-5,1],[-2,8]],[[2449,3618],[0,13],[-4,16],[0,30],[-1,0]],[[2491,3705],[3,-31],[-2,-12]],[[2492,3662],[0,-15]],[[2492,3647],[-4,-4],[-4,-20]],[[2484,3623],[-2,0]],[[2482,3623],[0,88]],[[2432,3679],[0,-70]],[[2432,3609],[-12,1]],[[2420,3610],[-5,1]],[[2415,3611],[0,77]],[[2532,3694],[-1,-6],[-5,-4],[-2,-9]],[[2524,3675],[-2,4]],[[2522,3679],[0,33]],[[2522,3679],[-2,-7],[-1,-24],[3,-20],[-2,-16]],[[2520,3612],[0,18],[-6,33]],[[2514,3663],[0,48]],[[2828,3683],[-4,21]],[[2514,3663],[-6,-1],[0,-6]],[[2508,3656],[-4,5]],[[2504,3661],[1,50]],[[2504,3661],[-5,1]],[[2499,3662],[-7,0]],[[2853,3706],[3,-11]],[[2856,3695],[0,-11]],[[2856,3684],[1,-35],[-3,-3],[-6,38]],[[2482,3623],[-3,1],[0,-14],[-4,-3]],[[2475,3607],[-3,9],[0,42]],[[2733,3680],[0,-16],[-4,-9]],[[2729,3655],[-7,-11]],[[2722,3644],[-3,19]],[[2719,3663],[1,16]],[[1676,3686],[-1,-22],[2,-3],[2,-35],[6,-15],[2,-32],[0,-26]],[[1687,3553],[-17,-1],[0,-16],[-9,1],[0,-16],[-5,0],[-3,-16]],[[1653,3505],[-2,-13],[-8,-4],[0,-41],[-10,-51]],[[1633,3396],[-10,38],[1,18],[-2,11]],[[1622,3463],[3,12],[0,29],[-9,48]],[[2377,3679],[0,-27]],[[2377,3652],[-12,2]],[[2365,3654],[-1,11]],[[2648,3696],[3,-31]],[[2651,3665],[-4,-18]],[[2647,3647],[-6,12]],[[2641,3659],[-1,38]],[[2553,3673],[-2,-18],[1,-26]],[[2552,3629],[-5,-9],[-5,8]],[[2542,3628],[-3,17],[0,20]],[[2831,3672],[0,-15]],[[2831,3657],[0,1]],[[2831,3658],[-1,-13]],[[2830,3645],[-1,-1]],[[2829,3644],[0,-1]],[[2829,3643],[-1,-2]],[[2828,3641],[-6,8]],[[2822,3649],[-3,1],[-3,18],[0,10]],[[2796,3674],[-3,-28]],[[2793,3646],[-4,-8]],[[2789,3638],[-2,7],[-3,35]],[[2874,3693],[-4,-36],[-1,-35],[-2,26],[3,55],[3,0]],[[2625,3644],[-5,-23]],[[2620,3621],[-4,13]],[[2616,3634],[0,14],[-3,10]],[[2613,3658],[2,19]],[[2719,3663],[-6,-25],[-5,6]],[[2708,3644],[-3,9],[-4,37],[2,5]],[[2539,3670],[-8,-29],[0,-8]],[[2531,3633],[-3,-6]],[[2528,3627],[-1,24],[-3,24]],[[1881,3600],[-32,0]],[[1849,3600],[-10,0]],[[2658,3662],[0,-14]],[[2658,3648],[-3,18],[-4,-1]],[[2641,3659],[-2,-6],[-2,-25]],[[2637,3628],[-6,33]],[[2708,3644],[-4,-18]],[[2704,3626],[-4,-13],[-3,-5]],[[2697,3608],[-3,42],[-2,6]],[[2856,3695],[2,2],[3,-16],[-1,-23],[-4,26]],[[2680,3650],[-2,0],[-5,-14]],[[2673,3636],[-4,14],[0,25]],[[2822,3649],[-4,-13]],[[2818,3636],[-12,19]],[[2806,3655],[0,13]],[[2843,3670],[1,-1]],[[2844,3669],[0,-20],[-4,9],[-7,1],[0,12]],[[2403,3690],[0,-78]],[[2403,3612],[-6,1]],[[2397,3613],[-5,3]],[[2392,3616],[0,61]],[[1607,3593],[-7,4],[-3,-16]],[[1597,3581],[-5,28],[-6,18],[-5,26]],[[1582,3687],[4,-1]],[[2613,3658],[-6,-22]],[[2607,3636],[-6,51]],[[2415,3611],[-12,1]],[[2745,3658],[-5,-13]],[[2740,3645],[-7,-18]],[[2733,3627],[-5,24],[1,4]],[[2296,3656],[0,-56]],[[2296,3600],[-6,0]],[[2290,3600],[-11,0]],[[2279,3600],[-1,88]],[[2279,3600],[-9,0]],[[2270,3600],[-10,0]],[[2260,3600],[0,72]],[[2196,3688],[0,-88]],[[2196,3600],[-15,0]],[[2181,3600],[0,72]],[[2212,3671],[0,-71]],[[2212,3600],[-13,0]],[[2199,3600],[-3,0]],[[2245,3671],[0,-72]],[[2245,3599],[-5,1]],[[2240,3600],[-13,0]],[[2227,3600],[0,71]],[[2607,3636],[-5,-16]],[[2602,3620],[-4,14]],[[2598,3634],[0,22],[1,22]],[[2782,3673],[-5,-7]],[[1756,3414],[7,-36]],[[1763,3378],[-3,-3],[-21,0],[-32,0]],[[1707,3375],[-10,-1]],[[1697,3374],[1,15],[-4,80],[0,6],[-4,28],[-1,22],[-2,28]],[[2847,3651],[2,-2]],[[2849,3649],[3,-9]],[[2852,3640],[-1,-9]],[[2851,3631],[-1,9],[-6,5],[0,24]],[[2847,3685],[2,-17]],[[2849,3668],[-1,-11]],[[2848,3657],[-1,-6]],[[2598,3634],[-2,-2]],[[2596,3632],[-4,-5],[-4,4]],[[2588,3631],[0,9],[-3,22]],[[2673,3636],[-2,-15],[0,-18],[-1,-3]],[[2670,3600],[-2,4]],[[2668,3604],[-1,29],[-3,9],[-1,13],[-3,-2],[-1,-9]],[[2659,3644],[-1,4]],[[2789,3638],[-2,-34]],[[2787,3604],[-5,8]],[[2782,3612],[-3,-2],[-2,14],[-5,-14]],[[2392,3616],[-15,2]],[[2377,3618],[0,34]],[[2528,3627],[-1,-31]],[[2527,3596],[-4,16],[-3,-8]],[[2520,3604],[-2,11]],[[2518,3615],[2,-3]],[[2449,3618],[-5,-2],[0,-38]],[[2444,3578],[-12,1]],[[2432,3579],[0,30]],[[2013,3675],[0,-33],[5,-43]],[[2018,3599],[-26,1]],[[1992,3600],[-2,0]],[[2761,3642],[-3,-17],[-2,7],[-3,-9]],[[2753,3623],[-1,-2]],[[2752,3621],[-1,22],[-2,20]],[[2756,3657],[0,-8]],[[2756,3649],[2,-10],[2,17],[-4,1]],[[2564,3639],[-1,-26]],[[2563,3613],[-3,-2]],[[2560,3611],[-6,-4],[0,6]],[[2554,3613],[-2,16]],[[2806,3655],[0,-33]],[[2806,3622],[-6,-7]],[[2800,3615],[-7,23],[0,8]],[[2040,3599],[-8,0]],[[2032,3599],[-14,0]],[[2578,3631],[-6,3],[-2,-34]],[[2570,3600],[-7,13]],[[2576,3660],[2,-29]],[[2156,3672],[0,-73]],[[2156,3599],[-14,0]],[[2142,3599],[0,0]],[[2169,3672],[0,-73]],[[2169,3599],[-13,0]],[[2181,3600],[-8,0]],[[2173,3600],[-4,-1]],[[2324,3671],[0,-71]],[[2324,3600],[-8,0]],[[2316,3600],[-5,0]],[[2311,3600],[0,56]],[[2260,3600],[-8,-1]],[[2252,3599],[-7,0]],[[2227,3600],[-13,0]],[[2214,3600],[-2,0]],[[2336,3663],[0,-63]],[[2336,3600],[-9,0]],[[2327,3600],[-3,0]],[[2542,3628],[-1,-28]],[[2541,3600],[-4,-8]],[[2537,3592],[-5,40],[-1,1]],[[2849,3668],[2,-11],[6,-21],[0,-10]],[[2857,3626],[0,-6]],[[2857,3620],[-1,-2]],[[2856,3618],[-4,22]],[[2849,3649],[-1,8]],[[2365,3654],[0,-45]],[[2365,3609],[-16,1]],[[2349,3610],[0,53]],[[2752,3621],[-5,-17],[-6,-7]],[[2741,3597],[-1,20]],[[2740,3617],[2,11]],[[2742,3628],[-2,17]],[[2659,3644],[-1,-29],[1,-27]],[[2659,3588],[-2,4]],[[2657,3592],[-8,18]],[[2649,3610],[-3,21],[1,16]],[[2635,3592],[-6,-17]],[[2629,3575],[-3,21],[-4,3]],[[2622,3599],[-2,22]],[[2637,3628],[-2,-36]],[[2349,3610],[0,-10]],[[2349,3600],[-11,0]],[[2338,3600],[-2,0]],[[2588,3631],[-2,-20]],[[2586,3611],[-5,4],[-3,16]],[[2518,3615],[-10,27]],[[2508,3642],[0,14]],[[2722,3644],[-2,-18],[1,-9],[-5,-11],[1,-4]],[[2717,3602],[-7,-15],[-3,5]],[[2707,3592],[-3,34]],[[2499,3662],[-1,-42],[3,-8]],[[2501,3612],[1,-16]],[[2502,3596],[-4,16],[-1,-10]],[[2497,3602],[-2,5],[-3,40]],[[2649,3610],[-3,-14],[-4,-5]],[[2642,3591],[-5,-1]],[[2637,3590],[-2,2]],[[2508,3642],[0,0]],[[2508,3642],[-5,-12],[-2,-18]],[[2668,3604],[-2,-10],[-7,-14]],[[2659,3580],[0,8]],[[2831,3657],[2,-3]],[[2833,3654],[-2,4]],[[2475,3607],[-4,-22]],[[2471,3585],[-12,1]],[[2459,3586],[-3,23]],[[2833,3654],[5,3],[2,-14]],[[2840,3643],[-4,-22]],[[2836,3621],[-7,-22]],[[2829,3599],[0,33]],[[2829,3632],[1,13]],[[2616,3634],[-5,-35],[0,-13]],[[2611,3586],[-6,2]],[[2605,3588],[-3,32]],[[2697,3608],[-5,-14]],[[2692,3594],[-4,10],[-3,34]],[[2311,3600],[-1,0]],[[2310,3600],[-14,0]],[[2733,3627],[-2,-14]],[[2731,3613],[-5,-9],[-4,5],[-4,-18]],[[2718,3591],[-1,11]],[[2829,3644],[0,0]],[[2815,3598],[-3,6]],[[2812,3604],[-2,-1],[-4,19]],[[2818,3636],[-3,-9],[0,-29]],[[2377,3618],[0,-19]],[[2377,3599],[0,-14]],[[2377,3585],[-12,2]],[[2365,3587],[0,22]],[[1597,3581],[-1,-1]],[[1596,3580],[-3,3],[-2,-10]],[[1591,3573],[-4,23],[-4,-4],[-6,28]],[[2828,3641],[1,-9]],[[2829,3599],[-6,-22]],[[2823,3577],[-1,3]],[[2822,3580],[-3,15],[-4,3]],[[2685,3636],[-4,-15],[0,-13],[-4,-13]],[[2677,3595],[-2,8],[-6,-12],[1,9]],[[2497,3602],[-6,-26]],[[2491,3576],[-5,-2]],[[2486,3574],[0,12],[-2,29],[0,8]],[[2800,3615],[-1,-35]],[[2799,3580],[-5,-36]],[[2794,3544],[0,27],[-7,33]],[[2741,3597],[-2,-10]],[[2739,3587],[-3,-10]],[[2736,3577],[-5,36]],[[2849,3626],[0,-15],[-5,-12]],[[2844,3599],[-2,-10]],[[2842,3589],[-1,21],[-5,11]],[[2840,3643],[6,-5],[3,-12]],[[2768,3608],[-1,-35]],[[2767,3573],[-4,-13],[-6,8],[-2,-6]],[[2755,3562],[0,8],[-5,6]],[[2750,3576],[4,29],[-1,18]],[[2511,3591],[-5,-6],[-3,4]],[[2503,3589],[-1,7]],[[2508,3642],[3,-51]],[[2520,3604],[0,-15]],[[2520,3589],[-9,1]],[[2511,3590],[0,1]],[[2856,3618],[1,-20]],[[2857,3598],[-6,25],[0,8]],[[2692,3594],[1,-12],[-4,-5]],[[2689,3577],[-6,0],[-4,-14]],[[2679,3563],[-3,17]],[[2676,3580],[1,15]],[[2684,3592],[0,0]],[[2586,3611],[-1,-23]],[[2585,3588],[-7,-30]],[[2578,3558],[0,6],[-5,4],[-1,10]],[[2572,3578],[-2,22]],[[2622,3599],[-7,-26]],[[2615,3573],[-4,0]],[[2611,3573],[0,13]],[[2605,3588],[-4,-22]],[[2601,3566],[-4,4]],[[2597,3570],[-1,62]],[[2537,3592],[-8,-17]],[[2529,3575],[-2,21]],[[2857,3621],[0,-1]],[[2857,3626],[1,4],[-1,-9]],[[2597,3570],[-7,-22]],[[2590,3548],[-5,40]],[[2554,3613],[-2,-80]],[[2552,3533],[-8,-1]],[[2544,3532],[-2,0]],[[2542,3532],[1,62],[-2,6]],[[2853,3583],[-10,-50]],[[2843,3533],[0,1]],[[2843,3534],[-1,11]],[[2842,3545],[3,39],[-1,15]],[[2849,3626],[1,-19],[5,-15],[-2,-9]],[[2707,3592],[-2,-5]],[[2705,3587],[-3,-12],[-3,-2],[-1,-11],[-6,-16]],[[2692,3546],[-3,31]],[[2782,3612],[-4,-98]],[[2778,3514],[-3,0]],[[2775,3514],[1,8],[-3,12],[-3,-5],[1,-15]],[[2771,3514],[-1,0]],[[2770,3514],[-5,0]],[[2765,3514],[2,59]],[[2750,3576],[-4,-14],[-2,-16]],[[2744,3546],[-5,41]],[[2486,3574],[0,-44],[-7,1]],[[2479,3531],[-5,0]],[[2474,3531],[0,16],[-3,38]],[[2812,3604],[0,-46]],[[2812,3558],[-6,6],[-7,16]],[[2857,3621],[4,-5],[-4,-18]],[[2842,3589],[-14,-44]],[[2828,3545],[-1,3],[0,26],[-4,3]],[[2459,3586],[0,-21]],[[2459,3565],[-12,2]],[[2447,3567],[-3,0],[0,11]],[[2397,3613],[0,-49]],[[2397,3564],[-11,2]],[[2386,3566],[-1,0],[0,32],[-8,1]],[[2736,3577],[-8,-13]],[[2728,3564],[-2,-7],[-5,-1]],[[2721,3556],[-3,35]],[[2572,3578],[-2,-7],[-2,-37]],[[2568,3534],[-8,-1]],[[2560,3533],[0,78]],[[2560,3533],[-2,0]],[[2558,3533],[-6,0]],[[2420,3610],[-1,-49]],[[2419,3561],[-18,3]],[[2401,3564],[-4,0]],[[2529,3575],[1,-22]],[[2530,3553],[-10,0]],[[2520,3553],[0,36]],[[2503,3589],[-1,-29]],[[2502,3560],[-2,-13],[1,-12]],[[2501,3535],[-2,-16],[-2,12]],[[2497,3531],[-6,45]],[[2794,3544],[-1,-5],[-1,-25]],[[2792,3514],[-2,0]],[[2790,3514],[-9,0]],[[2781,3514],[-3,0]],[[2432,3579],[-1,-72]],[[2431,3507],[-12,-1]],[[2419,3506],[0,55]],[[2365,3587],[-1,-34]],[[2364,3553],[-15,3]],[[2349,3556],[0,44]],[[2657,3592],[0,-10],[-6,-22],[-3,-18]],[[2648,3542],[-5,30],[-1,19]],[[2822,3580],[0,-34],[-3,-31]],[[2819,3515],[-4,0]],[[2815,3515],[-4,0]],[[2811,3515],[1,43]],[[2676,3580],[-5,-7],[-2,-21],[-9,-15]],[[2660,3537],[-1,27],[0,16]],[[2721,3556],[-7,-11],[-2,-13]],[[2712,3532],[-3,29],[-4,26]],[[1920,3599],[0,-248],[5,0],[0,-27],[0,-130],[-1,-49],[0,-16],[0,-129],[-1,-1],[0,-39]],[[1923,2960],[-3,2]],[[1920,2962],[0,79],[-21,0],[0,49]],[[1899,3090],[0,510]],[[1899,3090],[-2,1],[-6,21],[-6,13],[-6,-7],[-2,11]],[[1877,3129],[0,61],[-6,1],[0,33],[-16,-2],[0,33],[-3,0],[0,21],[-4,-3],[-1,10],[-9,10],[-6,29],[-5,4]],[[1827,3326],[0,51],[1,16],[-1,28],[3,10],[1,11],[5,16],[6,9],[5,23],[-1,19],[1,15],[0,38],[3,29],[-1,9]],[[2542,3532],[-10,8]],[[2532,3540],[-2,13]],[[2327,3600],[-1,-11],[0,-64]],[[2326,3525],[-10,0]],[[2316,3525],[0,64],[0,11]],[[2310,3600],[0,-108]],[[2310,3492],[0,-48],[-7,0]],[[2303,3444],[0,11],[-2,2],[-4,19],[-2,-7],[-2,24],[-3,3],[-1,23],[-3,-18],[-4,7]],[[2282,3508],[3,17],[-4,-1]],[[2281,3524],[0,17],[3,0],[2,13],[4,5],[0,41]],[[2240,3600],[0,-100]],[[2240,3500],[-2,-14],[-5,11],[-2,11],[-3,0]],[[2228,3508],[-1,17],[-4,34],[-4,7]],[[2219,3566],[-5,34]],[[2338,3600],[0,-62]],[[2338,3538],[0,-30]],[[2338,3508],[-9,1]],[[2329,3509],[0,16],[-3,0]],[[2316,3525],[0,-33]],[[2316,3492],[-6,0]],[[2270,3600],[0,-76]],[[2270,3524],[-18,0]],[[2252,3524],[0,75]],[[2252,3524],[0,-24]],[[2252,3500],[-12,0]],[[2281,3524],[-11,0]],[[2270,3524],[0,0]],[[2349,3556],[0,-18]],[[2349,3538],[-11,0]],[[2219,3566],[0,-42],[-9,0]],[[2210,3524],[-11,0]],[[2199,3524],[0,76]],[[2032,3599],[0,-21],[0,-32],[1,-46],[-1,-22],[-2,-9],[6,-13],[3,-24],[6,-16]],[[2045,3416],[-1,-8],[-4,2]],[[2040,3410],[0,4],[-10,0],[0,-13],[-5,0]],[[2025,3401],[0,6]],[[2025,3407],[0,7],[-18,-1],[0,41],[-21,0]],[[1986,3454],[1,109],[4,21],[1,16]],[[1986,3454],[0,-40]],[[1986,3414],[-39,0]],[[1947,3414],[0,186]],[[1947,3414],[0,-194]],[[1947,3220],[0,-71]],[[1947,3149],[0,-150]],[[1947,2999],[-9,0],[0,-9],[-4,-14]],[[1934,2976],[-9,-31],[-2,15]],[[2115,3600],[0,-93]],[[2115,3507],[-1,0],[0,-83]],[[2114,3424],[0,-59]],[[2114,3365],[-9,0]],[[2105,3365],[0,65],[-12,-1],[0,17],[-6,0],[0,8]],[[2087,3454],[0,145]],[[2142,3599],[0,-92]],[[2142,3507],[-3,0]],[[2139,3507],[-24,0]],[[2173,3600],[-1,-93]],[[2172,3507],[-3,0]],[[2169,3507],[-15,0]],[[2154,3507],[-12,0]],[[2199,3524],[0,-17]],[[2199,3507],[-15,0]],[[2184,3507],[-12,0]],[[2843,3533],[0,-17]],[[2843,3516],[0,-1]],[[2843,3515],[-7,0]],[[2836,3515],[-4,0]],[[2832,3515],[-3,18],[-3,5],[2,7]],[[2629,3575],[0,-8],[-6,-41]],[[2623,3526],[0,0]],[[2623,3526],[-5,2]],[[2618,3528],[-3,45]],[[2053,3599],[1,-15],[-1,-36],[-4,-10],[0,-22],[2,-11],[-1,-43]],[[2050,3462],[-2,-4],[0,-20],[-3,-22]],[[2087,3454],[-12,0]],[[2075,3454],[-12,0],[0,8],[-13,0]],[[2386,3566],[-1,-60]],[[2385,3506],[-7,0]],[[2378,3506],[0,60],[-1,19]],[[1622,3463],[-2,-12],[-4,20],[-3,-9],[-1,12],[-5,34],[-2,-1],[0,20],[-5,14],[1,8],[-5,31]],[[2648,3542],[-1,-19]],[[2647,3523],[-2,0]],[[2645,3523],[-6,1]],[[2639,3524],[-2,15],[-2,26],[2,25]],[[2861,3569],[-1,-2]],[[2860,3567],[0,1]],[[2860,3568],[1,1]],[[2863,3585],[-1,-16]],[[2862,3569],[-3,7],[0,17],[4,-8]],[[2639,3524],[-1,0]],[[2638,3524],[-15,2]],[[2660,3537],[-6,-12]],[[2654,3525],[-7,-2]],[[2511,3590],[0,-32]],[[2511,3558],[-9,2]],[[2520,3553],[0,-46]],[[2520,3507],[-1,0]],[[2519,3507],[-8,0]],[[2511,3507],[0,51]],[[2611,3573],[-2,-43]],[[2609,3530],[-4,-1]],[[2605,3529],[-4,37]],[[2590,3548],[0,-17]],[[2590,3531],[-6,2]],[[2584,3533],[-6,2]],[[2578,3535],[0,23]],[[2378,3506],[-8,0]],[[2370,3506],[-6,0]],[[2364,3506],[0,47]],[[2870,3516],[-1,0]],[[2869,3516],[0,2],[1,-2]],[[2872,3516],[-1,0]],[[2871,3516],[-1,31],[-1,-31]],[[2869,3516],[-1,0]],[[2868,3516],[-1,0]],[[2867,3516],[-2,0]],[[2865,3516],[0,22],[1,4],[-4,15],[0,12]],[[2862,3569],[0,0]],[[2863,3585],[5,-2],[4,-67]],[[2744,3546],[-4,-9],[0,-20]],[[2740,3517],[-7,1]],[[2733,3518],[-2,17]],[[2731,3535],[0,4]],[[2731,3539],[-3,25]],[[2697,3534],[-3,-10]],[[2694,3524],[-1,0]],[[2693,3524],[-1,22]],[[2712,3532],[-1,-5]],[[2711,3527],[-5,1]],[[2706,3528],[-9,-4]],[[2697,3524],[0,10]],[[2474,3531],[-2,-25]],[[2472,3506],[-10,0]],[[2462,3506],[-1,34],[-2,25]],[[2860,3567],[-3,-2]],[[2857,3565],[3,3]],[[2857,3570],[-1,5]],[[2856,3575],[1,6]],[[2857,3581],[0,-11]],[[2856,3575],[-1,-10],[-1,-49]],[[2854,3516],[-1,0]],[[2853,3516],[-10,0]],[[2853,3583],[0,-13],[4,11]],[[1633,3396],[2,-22]],[[1635,3374],[-31,1]],[[1604,3375],[-3,18],[-1,17],[-3,8],[-3,32],[-6,20],[-2,51],[5,18],[0,34]],[[2832,3515],[-13,0]],[[2826,3548],[0,0]],[[2679,3563],[-5,-24],[-1,-15]],[[2673,3524],[-13,1]],[[2660,3525],[-6,0]],[[2811,3515],[-8,0]],[[2803,3515],[-3,0]],[[2800,3515],[-8,-1]],[[2618,3528],[-8,2]],[[2610,3530],[-1,0]],[[2447,3567],[-1,-61]],[[2446,3506],[-7,0]],[[2439,3506],[-2,0]],[[2437,3506],[-6,1]],[[2693,3524],[-9,0]],[[2684,3524],[-6,0]],[[2678,3524],[-5,0]],[[2578,3535],[-4,-3]],[[2574,3532],[-6,2]],[[2755,3562],[-1,-3],[1,-44]],[[2755,3515],[-11,1]],[[2744,3516],[-4,1]],[[2497,3531],[-3,-25]],[[2494,3506],[-2,0]],[[2492,3506],[-1,0]],[[2491,3506],[-1,-30]],[[2490,3476],[-1,13],[-4,4],[0,-8],[-6,1]],[[2479,3486],[0,45]],[[2857,3570],[0,-5]],[[2861,3569],[1,0]],[[2865,3516],[-6,0]],[[2859,3516],[-5,0]],[[2765,3514],[-9,1]],[[2756,3515],[-1,0]],[[2760,3539],[0,0]],[[1807,3571],[0,-121],[-3,-32],[-2,-2],[-4,24],[-7,0],[-3,-11],[1,-43],[1,-63],[2,-35],[1,-31],[-2,-11],[0,-19]],[[1791,3227],[-28,151]],[[2605,3529],[-10,0]],[[2595,3529],[-5,2]],[[2462,3506],[-6,0]],[[2456,3506],[-10,0]],[[2401,3564],[-1,-58]],[[2400,3506],[-2,0]],[[2398,3506],[-12,0]],[[2386,3506],[-1,0]],[[2228,3508],[0,-64]],[[2228,3444],[-12,0]],[[2216,3444],[-6,0],[0,80]],[[2733,3518],[-2,0]],[[2731,3518],[-12,3]],[[2719,3521],[-9,2]],[[2710,3523],[1,4]],[[2419,3506],[-1,0]],[[2418,3506],[-11,0]],[[2407,3506],[-7,0]],[[2511,3507],[-1,0]],[[2510,3507],[0,0]],[[2510,3507],[-2,14],[-7,14]],[[2364,3506],[-15,1]],[[2349,3507],[0,31]],[[2532,3540],[0,-34]],[[2532,3506],[-12,1]],[[1697,3374],[-43,0]],[[1654,3374],[1,90],[1,-1],[0,25],[-3,17]],[[2544,3532],[1,-50]],[[2545,3482],[-6,-7],[-5,4]],[[2534,3479],[0,2]],[[2534,3481],[-2,25]],[[2349,3507],[2,-63]],[[2351,3444],[-7,0]],[[2344,3444],[-6,0]],[[2338,3444],[0,64]],[[2568,3489],[-2,-10],[-2,6]],[[2564,3485],[-2,-3],[-4,16]],[[2558,3498],[0,35]],[[2574,3532],[-4,-43],[-2,0]],[[2584,3533],[-1,-29]],[[2583,3504],[-2,-26]],[[2581,3478],[-4,-2],[-4,-17]],[[2573,3459],[-5,30]],[[2492,3506],[0,0]],[[2510,3507],[-14,0]],[[2496,3507],[-2,-1]],[[2558,3498],[-5,-25]],[[2553,3473],[-6,3]],[[2547,3476],[-2,6]],[[2775,3514],[-4,0]],[[2594,3507],[0,-17]],[[2594,3490],[-4,3]],[[2590,3493],[-5,3],[-2,8]],[[2595,3529],[-1,-22]],[[2697,3524],[-3,0]],[[2479,3486],[0,-73]],[[2479,3413],[-9,0]],[[2470,3413],[-3,0]],[[2467,3413],[5,38]],[[2472,3451],[4,19],[0,18],[-3,18],[-1,0]],[[2623,3526],[2,-15]],[[2625,3511],[-6,11],[-3,-6],[-2,-27]],[[2614,3489],[-5,23]],[[2609,3512],[1,18]],[[2609,3512],[-4,-5],[-2,-18]],[[2603,3489],[-5,22],[-4,-4]],[[2701,3508],[-5,-20],[-4,-1]],[[2692,3487],[-3,10],[-7,-3]],[[2682,3494],[2,30]],[[2706,3528],[-5,-20]],[[2710,3523],[-2,-37]],[[2708,3486],[-5,-19]],[[2703,3467],[0,-4]],[[2703,3463],[-4,19],[3,20],[-1,6]],[[2638,3524],[0,-15],[-3,-9],[1,-33],[-1,-13]],[[2635,3454],[-2,-10]],[[2633,3444],[-5,20],[-2,19]],[[2626,3483],[1,4],[-2,24]],[[2660,3525],[2,-12],[0,-23]],[[2662,3490],[-2,-7],[-6,-5]],[[2654,3478],[-1,0],[-3,17],[-2,-3]],[[2648,3492],[-3,31]],[[2282,3508],[0,-32],[3,0],[0,-17]],[[2285,3459],[-6,0],[0,-16],[-6,0]],[[2273,3443],[-3,1]],[[2270,3444],[0,80]],[[2678,3524],[-5,-5],[-8,-32]],[[2665,3487],[-3,3]],[[2329,3509],[-3,0],[0,-81]],[[2326,3428],[-4,0],[-1,16],[-4,0]],[[2317,3444],[-1,0],[0,48]],[[2648,3492],[-3,-28]],[[2645,3464],[-2,-8],[-4,3],[-1,-12],[-3,7]],[[2682,3494],[-1,-4]],[[2681,3490],[-6,-15],[-4,-16]],[[2671,3459],[-3,19],[-2,-11]],[[2666,3467],[-1,20]],[[2270,3444],[-6,0]],[[2264,3444],[-12,0]],[[2252,3444],[0,56]],[[2216,3444],[0,-28]],[[2216,3416],[-2,-2],[-3,-26],[-1,-4],[-5,8],[-1,22],[-5,-23]],[[2199,3391],[0,33]],[[2199,3424],[0,83]],[[2719,3521],[3,-39]],[[2722,3482],[-7,-24]],[[2715,3458],[-7,28]],[[2626,3483],[-5,-17],[-1,-23]],[[2620,3443],[-6,-4]],[[2614,3439],[0,1]],[[2614,3440],[1,10],[-1,39]],[[2731,3518],[-1,-30]],[[2730,3488],[-2,-5],[-2,13],[-4,-14]],[[2303,3444],[-1,0]],[[2302,3444],[-9,-1]],[[2293,3443],[-5,0],[0,16],[-3,0]],[[2744,3516],[0,-54]],[[2744,3462],[0,-4]],[[2744,3458],[-2,8],[-10,-9]],[[2732,3457],[0,17],[-2,14]],[[2853,3516],[1,-7]],[[2854,3509],[1,-25]],[[2855,3484],[-2,-5]],[[2853,3479],[-4,-10]],[[2849,3469],[-3,12],[-4,8]],[[2842,3489],[1,26]],[[2868,3477],[-3,3],[-6,36]],[[2867,3516],[1,-26],[3,-24],[3,-39],[-4,36],[-2,14]],[[2872,3516],[2,-59]],[[2874,3457],[0,0]],[[2874,3457],[-1,11],[-2,48]],[[2868,3516],[2,0]],[[2869,3516],[0,0]],[[2756,3515],[0,-54]],[[2756,3461],[-12,1]],[[2868,3477],[3,-33],[-3,4],[-6,35]],[[2862,3483],[-8,26]],[[2815,3515],[0,-7]],[[2815,3508],[0,-23],[-3,-34]],[[2812,3451],[-8,12]],[[2804,3463],[1,8],[-2,44]],[[2834,3459],[-2,-14]],[[2832,3445],[-3,8],[-1,21],[-3,-4],[0,21],[-3,12],[-7,5]],[[2836,3515],[1,-13],[-3,-43]],[[2842,3489],[4,-8],[2,-22]],[[2848,3459],[-14,0]],[[2790,3514],[0,-57]],[[2790,3457],[-4,1]],[[2786,3458],[-6,1]],[[2780,3459],[1,55]],[[2804,3463],[-3,-19],[-3,2]],[[2798,3446],[0,52],[2,17]],[[2798,3446],[-1,-28]],[[2797,3418],[-6,9]],[[2791,3427],[-1,4],[0,26]],[[2770,3514],[0,-54]],[[2770,3460],[0,-2]],[[2770,3458],[-14,3]],[[2780,3459],[-3,0]],[[2777,3459],[-7,1]],[[2614,3440],[-9,18],[-2,12]],[[2603,3470],[0,19]],[[2603,3470],[-3,-17],[-5,5]],[[2595,3458],[-1,9],[0,23]],[[2832,3445],[1,-14],[-2,-4]],[[2831,3427],[-2,-13]],[[2829,3414],[-3,6],[-1,10],[-4,12]],[[2821,3442],[-6,-2],[-3,11]],[[2338,3444],[-3,0],[0,-17],[-2,0]],[[2333,3427],[-7,1]],[[2703,3463],[-4,-30]],[[2699,3433],[-4,10]],[[2695,3443],[-1,14],[-3,4]],[[2691,3461],[1,26]],[[2862,3483],[0,-14],[4,-27],[-2,-5],[-4,17]],[[2860,3454],[-2,8],[-3,22]],[[2510,3507],[1,-17],[-4,0],[0,-35]],[[2507,3455],[-6,-3]],[[2501,3452],[-9,1]],[[2492,3453],[4,37],[0,17]],[[2252,3444],[-3,0]],[[2249,3444],[-12,0]],[[2237,3444],[-9,0]],[[2519,3507],[0,-65]],[[2519,3442],[-5,-17]],[[2514,3425],[-4,12],[-3,18]],[[2492,3453],[-4,-5]],[[2488,3448],[-2,13],[5,0],[-2,10],[1,5]],[[2154,3424],[-15,0]],[[2139,3424],[0,83]],[[2154,3507],[0,-83]],[[2534,3481],[-3,0],[0,-19],[-3,-26]],[[2528,3436],[0,5],[-9,1]],[[2169,3424],[0,0]],[[2169,3424],[-15,0]],[[2169,3507],[0,-83]],[[2139,3424],[-25,0]],[[2184,3507],[0,-83]],[[2184,3424],[-15,0]],[[2199,3424],[-15,0]],[[2184,3424],[0,0]],[[2370,3506],[-1,-24],[2,-11]],[[2371,3471],[-2,-14]],[[2369,3457],[-2,-5],[-10,1],[-2,-21],[-4,1]],[[2351,3433],[0,11]],[[2437,3506],[0,-30],[-3,0],[0,-16],[-3,1]],[[2431,3461],[-13,1]],[[2418,3462],[0,44]],[[2386,3506],[0,-70]],[[2386,3436],[-5,1]],[[2381,3437],[-2,0],[-3,33],[-5,1]],[[2439,3506],[2,-14],[2,-30]],[[2443,3462],[-3,-5],[0,-64]],[[2440,3393],[-3,9],[-7,1]],[[2430,3403],[1,11],[0,47]],[[2455,3463],[0,-22]],[[2455,3441],[-9,4],[-3,17]],[[2456,3506],[1,-40],[-2,-3]],[[2398,3506],[-1,-1],[0,-70]],[[2397,3435],[-1,0]],[[2396,3435],[-10,1]],[[2407,3506],[0,-43],[2,-3],[2,-16],[0,-19]],[[2411,3425],[-12,2],[-2,8]],[[2418,3462],[-1,-24]],[[2417,3438],[0,-13],[-3,0],[-1,-16],[-3,0]],[[2410,3409],[1,16]],[[2472,3451],[-3,0],[0,11],[-14,1]],[[1654,3374],[-18,0]],[[1636,3374],[-1,0]],[[2590,3493],[-5,-24]],[[2585,3469],[-4,9]],[[2564,3485],[-3,-48],[-1,-15]],[[2560,3422],[-4,1]],[[2556,3423],[1,24],[0,25],[-4,1]],[[2557,3468],[0,0]],[[2691,3461],[-2,-19],[-5,-11]],[[2684,3431],[-1,10],[0,50],[-2,-1]],[[2732,3457],[0,-33]],[[2732,3424],[-4,-2]],[[2728,3422],[-8,-9]],[[2720,3413],[-6,22]],[[2714,3435],[1,23]],[[2654,3478],[-1,-34]],[[2653,3444],[-6,4]],[[2647,3448],[-2,16]],[[2595,3458],[0,-20]],[[2595,3438],[-2,-7],[-5,-1]],[[2588,3430],[-3,39]],[[2488,3448],[1,-11],[-2,-8],[-1,-15]],[[2486,3414],[-7,-1]],[[2317,3444],[0,-49],[-1,-8]],[[2316,3387],[-6,0]],[[2310,3387],[0,41],[-8,0],[0,16]],[[2666,3467],[-2,2],[-4,-23]],[[2660,3446],[-3,1],[-3,-19]],[[2654,3428],[-1,16]],[[2573,3459],[2,-27]],[[2575,3432],[-3,-24]],[[2572,3408],[-5,12],[-4,3],[-2,-11],[-1,10]],[[2684,3431],[0,-10]],[[2684,3421],[-1,5],[-4,-15],[-1,-12],[-2,4]],[[2676,3403],[-8,44]],[[2668,3447],[3,12]],[[2714,3435],[-8,-1]],[[2706,3434],[-3,20],[0,13]],[[2860,3454],[3,-21],[-2,0],[-6,18],[5,-20],[-6,-2]],[[2854,3429],[-2,5],[1,45]],[[2633,3444],[3,-21]],[[2636,3423],[-3,-12],[-7,-15]],[[2626,3396],[-1,17],[-5,30]],[[2547,3476],[-1,-29]],[[2546,3447],[-7,12],[-4,0]],[[2535,3459],[-1,20]],[[2535,3459],[1,-23],[-3,-32],[3,-3],[-1,-17]],[[2535,3384],[-1,-5]],[[2534,3379],[-5,6]],[[2529,3385],[-2,0],[1,51]],[[2588,3430],[1,-24]],[[2589,3406],[-4,-1]],[[2585,3405],[-4,4],[-6,23]],[[2854,3429],[3,-3],[-3,-11],[-5,11],[-1,15],[1,28]],[[2668,3447],[-2,-18]],[[2666,3429],[-1,10],[-5,7]],[[2556,3423],[0,-17]],[[2556,3406],[-9,6]],[[2547,3412],[-1,35]],[[2381,3437],[1,-30],[-2,-16],[0,-22]],[[2380,3369],[-5,1]],[[2375,3370],[-6,-1]],[[2369,3369],[-2,0]],[[2367,3369],[1,61],[1,27]],[[2614,3439],[-4,-7],[0,-22]],[[2610,3410],[-1,9],[-6,10],[-4,-13]],[[2599,3416],[-4,22]],[[2647,3448],[-5,-22],[1,-6],[-3,-8],[-3,-15]],[[2637,3397],[-1,26]],[[2744,3458],[0,-19],[-1,-17]],[[2743,3422],[-6,1]],[[2737,3423],[-5,1]],[[2706,3434],[2,-8],[-2,-20]],[[2706,3406],[-4,0]],[[2702,3406],[-1,-9]],[[2701,3397],[-1,6],[-1,30]],[[2812,3451],[-7,-71]],[[2805,3380],[-1,14],[-7,24]],[[2467,3413],[0,-6],[-13,1]],[[2454,3408],[1,33]],[[2075,3454],[3,-48],[-1,-19],[0,-14]],[[2077,3373],[-18,-2],[-9,18],[-11,0]],[[2039,3389],[1,21]],[[2756,3461],[-1,-46]],[[2755,3415],[-9,-7]],[[2746,3408],[-3,14]],[[2430,3403],[-4,-14]],[[2426,3389],[-3,12],[-4,1],[1,18],[-3,18]],[[2695,3443],[-6,-16]],[[2689,3427],[-2,-18]],[[2687,3409],[-3,-2],[0,14]],[[2454,3408],[-1,-17],[-4,1]],[[2449,3392],[-5,1]],[[2444,3393],[-4,0]],[[2770,3458],[-1,-63]],[[2769,3395],[-14,4]],[[2755,3399],[0,16]],[[2777,3459],[1,-68]],[[2778,3391],[0,-7],[-9,0]],[[2769,3384],[0,11]],[[2293,3443],[0,-40]],[[2293,3403],[-14,0]],[[2279,3403],[-6,8],[0,32]],[[2547,3412],[-5,-16],[-1,-13]],[[2541,3383],[-3,-6],[-3,7]],[[2848,3459],[-1,-17],[2,-30],[0,-13]],[[2849,3399],[-2,-11]],[[2847,3388],[-2,4],[-2,-11],[-1,14],[-2,-8],[-1,15],[-4,0],[-1,13],[-3,12]],[[2786,3458],[-2,-70]],[[2784,3388],[-6,3]],[[2791,3427],[2,-12],[-4,-26],[-2,0]],[[2787,3389],[-3,-1]],[[2367,3369],[-14,0]],[[2353,3369],[-2,64]],[[2875,3262],[0,1]],[[2875,3263],[6,14],[2,58],[0,17],[0,-15],[-2,-69],[-6,-6]],[[2871,3346],[-3,6]],[[2868,3352],[0,41],[5,6],[2,-7],[1,-48],[-4,-8],[-1,10]],[[2874,3457],[6,-69],[-5,33],[-1,36]],[[2514,3425],[0,-50]],[[2514,3375],[-6,1]],[[2508,3376],[-5,12],[-3,25]],[[2500,3413],[1,39]],[[2025,3407],[-4,-1],[0,-28],[4,-10]],[[2025,3368],[0,-101]],[[2025,3267],[-27,1]],[[1998,3268],[-1,16],[-2,0]],[[1995,3284],[0,129],[-9,1]],[[2105,3365],[0,-64],[-7,-1]],[[2098,3300],[-3,6],[-7,71],[-1,-4],[-10,0]],[[2500,3413],[-2,-21],[-2,-1]],[[2496,3391],[-2,13],[-6,-8]],[[2488,3396],[-2,18]],[[2821,3442],[-4,-53]],[[2817,3389],[-10,-26]],[[2807,3363],[-2,17]],[[2666,3429],[-2,-35]],[[2664,3394],[-4,5],[-6,22]],[[2654,3421],[0,7]],[[2654,3421],[1,-13],[-4,-16]],[[2651,3392],[-2,-8],[-2,6],[-6,-3],[-1,-10]],[[2640,3377],[-2,17]],[[2638,3394],[-1,3]],[[2676,3403],[-2,-28]],[[2674,3375],[-3,-1],[-5,-13]],[[2666,3361],[-2,33]],[[2626,3396],[-3,-15]],[[2623,3381],[-3,-12]],[[2620,3369],[-10,1]],[[2610,3370],[0,0]],[[2610,3370],[0,4]],[[2610,3374],[0,1]],[[2610,3375],[1,22],[-1,13]],[[2264,3444],[0,-82]],[[2264,3362],[-15,0]],[[2249,3362],[0,82]],[[2279,3403],[0,-41]],[[2279,3362],[-15,0]],[[2249,3362],[-3,0],[0,-32]],[[2246,3330],[-9,0]],[[2237,3330],[0,49]],[[2237,3379],[0,65]],[[2237,3379],[-21,-1]],[[2216,3378],[0,38]],[[2310,3387],[-5,0],[0,-41]],[[2305,3346],[-12,0]],[[2293,3346],[0,57]],[[2333,3427],[-2,-19],[1,-19],[-1,-10]],[[2331,3379],[-10,-4],[-1,12],[-3,0]],[[2317,3387],[-1,0]],[[2344,3444],[0,-98]],[[2344,3346],[-9,0]],[[2335,3346],[0,33],[-4,0]],[[2353,3369],[0,-23]],[[2353,3346],[-9,0]],[[2701,3397],[-4,-16]],[[2697,3381],[-2,35],[-6,11]],[[2829,3414],[2,-18],[-1,-16]],[[2830,3380],[-1,2],[-7,-29]],[[2822,3353],[-3,28],[-2,8]],[[2529,3385],[0,-6]],[[2529,3379],[-11,2],[-1,-7]],[[2517,3374],[-3,1]],[[2599,3416],[0,-25],[-1,-9]],[[2598,3382],[-5,2]],[[2593,3384],[-4,22]],[[2426,3389],[1,-30]],[[2427,3359],[-12,1]],[[2415,3360],[-5,1],[0,13]],[[2410,3374],[0,35]],[[2396,3435],[0,-73]],[[2396,3362],[-6,1]],[[2390,3363],[-10,1],[0,5]],[[2720,3413],[-1,-37]],[[2719,3376],[0,-6]],[[2719,3370],[-6,2],[-7,34]],[[2410,3374],[-6,0],[0,-13],[-5,1]],[[2399,3362],[-3,0]],[[2585,3405],[-1,-47]],[[2584,3358],[-2,-13]],[[2582,3345],[-3,5],[-1,-8],[-3,13],[-4,0]],[[2571,3355],[-1,4]],[[2570,3359],[2,15],[0,34]],[[2697,3381],[-4,-23]],[[2693,3358],[-2,20],[-2,2]],[[2689,3380],[-2,29]],[[2610,3370],[0,0]],[[2610,3375],[-5,5],[-5,-5]],[[2600,3375],[-2,7]],[[2805,3380],[-6,-21],[-6,-35]],[[2793,3324],[-6,12]],[[2787,3336],[-2,5],[2,48]],[[2847,3388],[-2,-29]],[[2845,3359],[-4,-9],[-6,14]],[[2835,3364],[-5,16]],[[2689,3380],[-3,-3],[-8,-22],[-2,-2]],[[2676,3353],[-2,22]],[[2746,3408],[0,-14],[-3,-13],[1,-15]],[[2744,3366],[-5,19],[-2,1]],[[2737,3386],[0,37]],[[2184,3424],[0,-81]],[[2184,3343],[-15,0]],[[2169,3343],[0,1]],[[2169,3344],[0,80]],[[2199,3391],[0,-48]],[[2199,3343],[-15,0]],[[2169,3344],[-15,-1]],[[2154,3343],[0,81]],[[2139,3424],[0,-80]],[[2139,3344],[-25,-1]],[[2114,3343],[0,22]],[[2737,3386],[-2,-33],[1,-31]],[[2736,3322],[-1,-1]],[[2735,3321],[-5,-3]],[[2730,3318],[0,11]],[[2730,3329],[1,14],[-5,29]],[[2726,3372],[3,34],[-1,16]],[[2154,3343],[0,0]],[[2154,3343],[-15,0]],[[2139,3343],[0,1]],[[2570,3359],[-2,0]],[[2568,3359],[-13,27]],[[2555,3386],[1,20]],[[2726,3372],[-1,9],[-6,-5]],[[2630,3352],[-1,-5]],[[2629,3347],[-1,0]],[[2628,3347],[0,13],[-3,7]],[[2625,3367],[-2,14]],[[2638,3394],[-8,-42]],[[2666,3361],[0,-4]],[[2666,3357],[-7,-25],[-5,1]],[[2654,3333],[-1,26],[-2,33]],[[2755,3399],[0,-78]],[[2755,3321],[-4,0]],[[2751,3321],[0,14],[-4,27],[-3,4]],[[2216,3378],[1,-56]],[[2217,3322],[-6,0],[0,-16],[-12,0]],[[2199,3306],[0,37]],[[1995,3284],[-32,0],[0,-64],[-16,0]],[[2039,3389],[1,-154]],[[2040,3235],[-15,0]],[[2025,3235],[0,32]],[[2025,3368],[2,13],[-2,3]],[[2025,3384],[0,3]],[[2025,3387],[0,14]],[[2488,3396],[-3,0],[1,-14],[-3,-14],[-4,-4],[3,-19],[-3,-8],[1,-10]],[[2480,3327],[-3,2],[0,-28]],[[2477,3301],[-1,-1]],[[2476,3300],[0,13],[-2,-5]],[[2474,3308],[-4,1]],[[2470,3309],[0,49]],[[2470,3358],[0,55]],[[2719,3370],[-5,-37]],[[2714,3333],[0,-1]],[[2714,3332],[-5,3]],[[2709,3335],[-3,-1]],[[2706,3334],[-2,27],[-3,17],[2,14],[-1,14]],[[2508,3376],[-3,-24],[-1,4]],[[2504,3356],[-6,12],[-2,11]],[[2496,3379],[0,12]],[[2470,3358],[-21,1]],[[2449,3359],[0,33]],[[2864,3357],[-2,-18],[-2,2],[1,15],[-4,1]],[[2857,3357],[1,44]],[[2858,3401],[5,11],[3,0],[1,-57],[-3,2]],[[2555,3386],[0,-24],[-3,-12]],[[2552,3350],[-3,-8],[-4,7],[-2,-8]],[[2543,3341],[-2,10],[0,32]],[[2857,3357],[-7,2]],[[2850,3359],[-5,0]],[[2849,3399],[8,11],[1,-9]],[[2593,3384],[-3,-20],[0,-14]],[[2590,3350],[-3,-2],[-3,10]],[[2706,3334],[-4,-9],[-6,1]],[[2696,3326],[-3,11],[0,21]],[[2496,3379],[-2,1],[-2,-45]],[[2492,3335],[-3,12],[-4,1],[-5,-21]],[[2293,3346],[0,-33]],[[2293,3313],[-14,1]],[[2279,3314],[0,48]],[[2444,3393],[-1,-14],[-3,-20],[0,-34],[-6,1]],[[2434,3326],[-6,1]],[[2428,3327],[0,33],[-1,-1]],[[2769,3384],[0,-61]],[[2769,3323],[-6,-1]],[[2763,3322],[-8,-1]],[[2640,3377],[1,-26],[-1,-10]],[[2640,3341],[-3,8],[-5,2],[-2,-8]],[[2630,3343],[-1,4]],[[2449,3359],[0,-49]],[[2449,3310],[0,-17]],[[2449,3293],[-6,1],[0,16],[-3,-1]],[[2440,3309],[-6,1],[0,16]],[[2654,3333],[-3,-1],[-5,-19]],[[2646,3313],[0,1]],[[2646,3314],[-1,17],[-2,-3],[-3,13]],[[2787,3336],[-2,-12]],[[2785,3324],[-4,20],[-6,-20]],[[2775,3324],[-6,-1]],[[2098,3300],[0,-28],[-7,4],[-7,-22]],[[2084,3254],[0,13],[-33,0],[0,-32]],[[2051,3235],[-11,0]],[[2822,3353],[-1,-4]],[[2821,3349],[-4,-15]],[[2817,3334],[-6,2]],[[2811,3336],[-2,4],[-2,23]],[[2751,3321],[-3,0]],[[2748,3321],[-12,1]],[[2317,3387],[0,-25],[2,0],[0,-32]],[[2319,3330],[-4,0],[-1,-33],[-3,0]],[[2311,3297],[-3,0],[0,33],[-3,0],[0,16]],[[2335,3346],[0,-21],[2,-12]],[[2337,3313],[-5,-37],[-3,6]],[[2329,3282],[0,48],[-10,0]],[[2600,3375],[1,-33],[1,-16]],[[2602,3326],[-2,0]],[[2600,3326],[-7,-1]],[[2593,3325],[-3,25]],[[2568,3359],[-2,-29],[-3,-25]],[[2563,3305],[-5,7],[-2,-4]],[[2556,3308],[-3,2]],[[2553,3310],[0,18],[-1,22]],[[2534,3379],[-1,-16],[0,-21],[1,-17],[-1,-19]],[[2533,3306],[0,-6]],[[2533,3300],[-5,-2],[-1,8]],[[2527,3306],[0,20],[1,15],[1,38]],[[2543,3341],[-2,-24]],[[2541,3317],[-7,-4],[-1,-7]],[[2835,3364],[0,-18],[3,-15]],[[2838,3331],[-1,-1]],[[2837,3330],[-2,-6],[0,-19]],[[2835,3305],[-2,-12],[-4,-2]],[[2829,3291],[-2,16]],[[2827,3307],[-1,17],[-5,25]],[[2730,3329],[-16,4]],[[2696,3326],[-3,-12]],[[2693,3314],[-13,-8]],[[2680,3306],[-1,9],[0,18],[-3,20]],[[2625,3367],[-2,-36],[-2,-1],[-2,-21],[-2,-6]],[[2617,3303],[-4,10]],[[2613,3313],[1,21],[6,35]],[[2610,3370],[-5,-37]],[[2605,3333],[-3,-7]],[[2527,3306],[-4,-1]],[[2523,3305],[0,14],[-4,4],[-3,14]],[[2516,3337],[1,37]],[[2504,3356],[-1,-48]],[[2503,3308],[-2,-7]],[[2501,3301],[-9,1]],[[2492,3302],[0,33]],[[2811,3336],[-3,-31],[0,-13],[-4,-12]],[[2804,3280],[-5,-4],[-2,10]],[[2797,3286],[-3,34],[-1,4]],[[2237,3330],[0,-16]],[[2237,3314],[-20,0]],[[2217,3314],[0,8]],[[1791,3227],[0,-24],[4,-29],[1,-22],[3,-27],[6,-28]],[[1805,3097],[-3,-24],[-5,-16]],[[1797,3057],[-25,-1],[0,-8],[-45,-1],[0,-5],[-8,0],[-10,5],[-3,-30]],[[1706,3017],[-3,14]],[[1703,3031],[2,14],[2,49],[-1,100]],[[1706,3194],[1,0],[0,181]],[[1636,3374],[0,-32],[3,0],[0,-17],[2,-16],[4,0],[0,-17],[2,1],[0,-17],[4,0],[0,-16],[3,1],[0,-17],[2,-3],[0,-33]],[[1656,3208],[-8,14],[-9,27],[-3,-15],[-4,-7],[1,-17],[-4,17],[-6,-5]],[[1623,3222],[0,33],[-3,2],[-4,18],[2,15],[-1,18],[-4,5],[-4,32],[-3,6],[-2,24]],[[1706,3194],[-34,-1],[1,-5]],[[1673,3188],[-3,4],[-8,1],[-1,12],[-4,3]],[[1657,3208],[-1,0]],[[2516,3337],[-1,-19],[-5,-11]],[[2510,3307],[-7,1]],[[2415,3360],[0,-65]],[[2415,3295],[-6,1]],[[2409,3296],[0,16],[-11,1]],[[2398,3313],[1,16],[0,33]],[[2680,3306],[-2,-20],[-3,-4]],[[2675,3282],[-7,41]],[[2668,3323],[1,7],[-3,27]],[[2374,3297],[-2,10],[0,-22],[-3,2],[-1,-17],[-3,-3]],[[2365,3267],[-1,0],[0,43]],[[2364,3310],[2,24],[-2,17],[3,-1],[2,19]],[[2375,3370],[-1,-73]],[[2613,3313],[-2,-20]],[[2611,3293],[-5,26],[-1,14]],[[2390,3363],[-1,-24],[-1,0],[0,-25],[-2,1],[0,-27]],[[2386,3288],[-3,3],[-1,15],[-8,-9]],[[2364,3310],[-1,-11],[-6,-5],[-1,17],[-2,-10]],[[2354,3301],[-1,45]],[[2628,3347],[-7,-55]],[[2621,3292],[-2,-11]],[[2619,3281],[-2,22]],[[2114,3343],[0,-82]],[[2114,3261],[0,-42]],[[2114,3219],[-7,0],[0,-17],[-3,0],[0,-16],[-2,0],[0,-16],[-6,0],[-1,-17]],[[2095,3153],[-6,1]],[[2089,3154],[-5,0],[0,32]],[[2084,3186],[0,68]],[[2837,3330],[4,-22],[10,-17],[0,-12]],[[2851,3279],[-1,-8],[-5,-4],[-2,7]],[[2843,3274],[-8,31]],[[2850,3359],[2,-16],[2,-9]],[[2854,3334],[-4,-11],[2,-23],[-11,17],[-3,14]],[[2398,3313],[0,-54],[-1,0]],[[2397,3259],[-5,-6],[-2,19],[-4,14]],[[2386,3286],[0,2]],[[2264,3362],[0,-65]],[[2264,3297],[0,-7]],[[2264,3290],[0,0]],[[2264,3290],[-5,-1],[-3,8],[-4,1]],[[2252,3298],[-6,-1],[0,33]],[[2279,3314],[0,-17]],[[2279,3297],[-15,0]],[[2428,3327],[-2,-33],[-7,1]],[[2419,3295],[-4,0]],[[2571,3355],[0,-43],[2,-17]],[[2573,3295],[-5,-21],[-2,2]],[[2566,3276],[-3,29]],[[2470,3309],[-6,0]],[[2464,3309],[-15,1]],[[2864,3357],[4,-5]],[[2871,3346],[0,-12],[-4,-30],[-3,-14],[-3,2],[-4,15],[-2,-10],[-3,25],[2,-1],[0,13]],[[2593,3325],[-1,-44]],[[2592,3281],[-7,14],[-3,-6]],[[2582,3289],[0,15]],[[2582,3304],[0,41]],[[2582,3304],[-5,-17],[-2,6]],[[2575,3293],[-2,2]],[[2668,3323],[-5,-9],[0,-25]],[[2663,3289],[-9,-10]],[[2654,3279],[3,29],[-11,5]],[[2646,3314],[-2,-12],[0,-20]],[[2644,3282],[-2,-10],[-3,5],[-2,-11]],[[2637,3266],[-6,14]],[[2631,3280],[3,9],[0,12],[-4,39]],[[2630,3340],[1,2]],[[2631,3342],[-1,1]],[[2553,3310],[-4,2],[-4,-11]],[[2545,3301],[-4,16]],[[2827,3307],[-6,-15],[-3,4]],[[2818,3296],[-1,38]],[[2476,3300],[0,-1]],[[2476,3299],[-2,9]],[[2492,3302],[-4,-5]],[[2488,3297],[-11,4]],[[2631,3280],[-6,-8]],[[2625,3272],[-4,20]],[[2354,3301],[0,-3]],[[2354,3298],[-2,-15],[-4,-2],[-3,13],[-1,-7]],[[2344,3287],[-1,9],[-6,17]],[[2311,3297],[0,-16]],[[2311,3281],[-13,0]],[[2298,3281],[0,33],[-2,-14],[-3,2]],[[2293,3302],[0,11]],[[2785,3324],[-6,-40]],[[2779,3284],[-2,9],[-2,31]],[[2139,3343],[0,-82]],[[2139,3261],[-25,0]],[[2169,3343],[0,-82]],[[2169,3261],[-15,0]],[[2154,3261],[0,82]],[[2184,3343],[0,-82]],[[2184,3261],[-15,0]],[[2199,3306],[0,-45]],[[2199,3261],[-15,0]],[[2154,3261],[-15,0]],[[2709,3335],[0,-41],[-2,-33]],[[2707,3261],[-3,0]],[[2704,3261],[-2,1]],[[2702,3262],[0,13],[-5,28],[-3,-3]],[[2694,3300],[-1,14]],[[2818,3296],[-1,-36]],[[2817,3260],[-2,-5],[-4,8],[-3,-1]],[[2808,3262],[-4,18]],[[2523,3305],[0,-7]],[[2523,3298],[-6,-1],[-4,-24],[-1,0]],[[2512,3273],[-2,34]],[[2797,3286],[-2,-13]],[[2795,3273],[-6,2],[-7,-12]],[[2782,3263],[-4,14],[1,7]],[[2714,3332],[2,-27]],[[2716,3305],[4,-29],[0,-18]],[[2720,3258],[-2,0]],[[2718,3258],[-11,3]],[[2730,3318],[0,-16]],[[2730,3302],[-14,3]],[[2611,3293],[-5,-38]],[[2606,3255],[-1,22],[-3,10]],[[2602,3287],[2,16],[-4,23]],[[2329,3282],[-3,2]],[[2326,3284],[-4,-15],[-11,-14]],[[2311,3255],[0,26]],[[2252,3298],[0,-98]],[[2252,3200],[-15,0]],[[2237,3200],[0,45]],[[2237,3245],[0,69]],[[2440,3309],[-2,-12],[1,-24],[-2,-29]],[[2437,3244],[-3,0],[0,-12],[-4,7],[-2,-6]],[[2428,3233],[-6,8],[-3,-1]],[[2419,3240],[0,55]],[[2602,3287],[-5,-6],[0,-14],[-4,2]],[[2593,3269],[-1,12]],[[1877,3129],[-3,-16],[-2,-44],[7,0],[0,-28]],[[1879,3041],[-7,0],[-12,9],[-3,-31],[-13,22],[-17,0]],[[1827,3041],[0,59]],[[1827,3100],[0,226]],[[2675,3282],[-2,-30],[-2,-15],[2,-5]],[[2673,3232],[-3,-5]],[[2670,3227],[0,0]],[[2670,3227],[-7,62]],[[2735,3321],[3,-44],[3,-11]],[[2741,3266],[-8,-39]],[[2733,3227],[-2,14]],[[2731,3241],[-3,-5],[0,19]],[[2728,3255],[2,47]],[[2782,3263],[0,-3]],[[2782,3260],[-4,6],[-3,-9],[-3,-22]],[[2772,3235],[-3,4],[-2,19]],[[2767,3258],[-2,16],[-2,48]],[[2767,3258],[-6,3],[-7,-7]],[[2754,3254],[0,18],[1,24],[-4,25]],[[2748,3321],[-6,-60]],[[2742,3261],[-1,5]],[[2217,3314],[0,-65]],[[2217,3249],[-2,-1]],[[2215,3248],[-10,1],[0,-16],[-3,0]],[[2202,3233],[-3,0]],[[2199,3233],[0,28]],[[2754,3254],[-5,10]],[[2749,3264],[-2,-6],[-5,3]],[[2694,3300],[-3,-21],[0,-16]],[[2691,3263],[-6,-9]],[[2685,3254],[-1,30],[-4,22]],[[2545,3301],[-1,-73]],[[2544,3228],[-10,0]],[[2534,3228],[0,54],[-1,18]],[[2298,3281],[0,-32],[-1,0],[0,-39]],[[2297,3210],[-7,-9],[-1,7]],[[2289,3208],[0,96],[4,-2]],[[2654,3279],[-1,-6]],[[2653,3273],[-4,2],[-3,-7],[-2,14]],[[2237,3245],[-3,4],[-17,0]],[[2289,3208],[-4,13]],[[2285,3221],[-3,-11],[-3,4]],[[2279,3214],[0,83]],[[2409,3296],[-2,-48]],[[2407,3248],[-5,-8],[-9,1]],[[2393,3241],[4,18]],[[2556,3308],[-1,-81]],[[2555,3227],[-11,1]],[[2344,3287],[0,-22],[-4,0],[0,-27]],[[2340,3238],[-11,0]],[[2329,3238],[0,19],[-3,0],[0,27]],[[2619,3281],[-3,-30],[2,-26]],[[2618,3225],[-8,-1]],[[2610,3224],[-3,0]],[[2607,3224],[-3,0]],[[2604,3224],[2,11],[0,20]],[[2566,3276],[0,-50]],[[2566,3226],[-10,1]],[[2556,3227],[-1,0]],[[2365,3267],[0,-14],[-3,-7]],[[2362,3246],[-2,-4],[0,-21],[-6,-6]],[[2354,3215],[0,83]],[[2464,3309],[0,-55]],[[2464,3254],[-15,1]],[[2449,3255],[0,38]],[[2449,3255],[0,-28],[-3,1]],[[2446,3228],[-4,-4],[-2,-13]],[[2440,3211],[0,26],[-3,7]],[[2476,3299],[-2,-24],[2,-6],[0,-16],[-3,-4],[-1,-17],[-3,-6]],[[2469,3226],[2,-13],[-2,-12]],[[2469,3201],[-3,-5]],[[2466,3196],[0,13]],[[2466,3209],[1,46],[-3,-1]],[[2512,3273],[0,-47]],[[2512,3226],[-1,0]],[[2511,3226],[-6,0]],[[2505,3226],[-5,0]],[[2500,3226],[1,75]],[[2829,3291],[-2,-21]],[[2827,3270],[-4,-30],[-3,-11]],[[2820,3229],[-1,25],[-2,6]],[[2386,3286],[0,-19],[-5,0],[-2,-13],[-5,-2],[0,-21]],[[2374,3231],[-10,1],[-2,14]],[[2685,3254],[-5,-14]],[[2680,3240],[-4,-2]],[[2676,3238],[-3,-6]],[[2534,3228],[-6,-2]],[[2528,3226],[-5,0]],[[2523,3226],[0,0]],[[2523,3226],[0,72]],[[2728,3255],[-8,3]],[[2849,3208],[-2,-9],[-9,-9]],[[2838,3190],[-1,51]],[[2837,3241],[2,5],[4,-28],[6,-10]],[[2843,3274],[-2,-22],[1,-9]],[[2842,3243],[-3,9],[-2,-12]],[[2837,3240],[-10,30]],[[2582,3289],[-2,-38]],[[2580,3251],[-2,20],[-3,14],[0,8]],[[2488,3297],[0,-71]],[[2488,3226],[-3,0]],[[2485,3226],[-16,0]],[[2702,3262],[-7,2]],[[2695,3264],[-4,-1]],[[2500,3226],[-4,0]],[[2496,3226],[-8,0]],[[2523,3226],[-11,0]],[[2354,3215],[0,-38]],[[2354,3177],[-1,-42]],[[2353,3135],[-13,0]],[[2340,3135],[0,33],[-3,0]],[[2337,3168],[0,32],[1,16],[2,0],[0,22]],[[2264,3290],[0,-90]],[[2264,3200],[0,-32]],[[2264,3168],[-12,0]],[[2252,3168],[0,32]],[[2279,3214],[-6,7],[-1,22],[-8,47]],[[2580,3251],[0,-25]],[[2580,3226],[-13,0]],[[2567,3226],[-1,0]],[[2419,3240],[0,-11]],[[2419,3229],[-3,1],[0,-16],[-9,4]],[[2407,3218],[-2,9],[2,21]],[[2593,3269],[0,-44]],[[2593,3225],[-12,0]],[[2581,3225],[-1,1]],[[2625,3272],[1,-13],[-3,-34]],[[2623,3225],[-1,0]],[[2622,3225],[-4,0]],[[1998,3268],[4,-49]],[[2002,3219],[-4,0],[0,-70]],[[1998,3149],[-14,0]],[[1984,3149],[-37,0]],[[2285,3221],[-1,-21]],[[2284,3200],[-20,0]],[[2670,3227],[-11,-1]],[[2659,3226],[-4,31],[-3,-1]],[[2652,3256],[1,17]],[[2851,3279],[3,7],[0,-18],[-4,-10],[3,-3],[-2,-14],[-5,-20],[-4,14],[0,8]],[[2604,3224],[-4,0]],[[2600,3224],[-7,1]],[[2808,3262],[0,-53],[-1,-31],[2,-3]],[[2809,3175],[-4,-31]],[[2805,3144],[-2,22],[-4,34]],[[2799,3200],[-5,26],[0,18],[1,29]],[[2393,3241],[-7,-40],[0,-16]],[[2386,3185],[-3,-6]],[[2383,3179],[-9,1]],[[2374,3180],[0,51]],[[2329,3238],[-5,-6],[0,-64]],[[2324,3168],[0,-16],[-4,-1]],[[2320,3151],[-6,0],[0,17],[-6,0]],[[2308,3168],[0,16]],[[2308,3184],[0,52],[3,19]],[[2652,3256],[-3,-3],[-4,-28]],[[2645,3225],[-4,0]],[[2641,3225],[-5,0]],[[2636,3225],[1,41]],[[2308,3184],[-9,0]],[[2299,3184],[0,26],[-2,0]],[[2636,3225],[-8,0]],[[2628,3225],[-5,0]],[[2799,3200],[-12,-4]],[[2787,3196],[-3,22]],[[2784,3218],[-2,17],[0,25]],[[2837,3240],[0,1]],[[2838,3190],[-2,-3]],[[2836,3187],[-2,21],[-4,3],[-4,10],[-5,1]],[[2821,3222],[-1,7]],[[2025,3235],[0,-17],[3,0],[0,-15],[-8,0]],[[2020,3203],[0,6],[-7,1],[-1,-7],[-9,0],[-1,16]],[[2084,3186],[-6,0],[0,-16],[-3,0],[0,-17],[-12,0],[0,-48]],[[2063,3105],[-12,0]],[[2051,3105],[0,49],[0,81]],[[2695,3264],[0,-65],[2,-12]],[[2697,3187],[-3,-37],[-2,-19]],[[2692,3131],[-4,26],[-1,36]],[[2687,3193],[-1,37],[-2,9],[-4,1]],[[2754,3254],[3,-11],[2,6],[1,-14],[1,-26],[-2,-18]],[[2759,3191],[0,0]],[[2759,3191],[-11,1]],[[2748,3192],[1,72]],[[2784,3218],[-5,-22],[-4,1]],[[2775,3197],[0,20],[-3,18]],[[2748,3192],[-7,1]],[[2741,3193],[-7,1],[1,21],[-2,12]],[[2709,3211],[-2,-14],[-2,-45]],[[2705,3152],[-6,20],[-2,15]],[[2704,3261],[4,-46],[1,-4]],[[2821,3222],[1,-10],[-1,-37]],[[2821,3175],[-12,0]],[[2139,3261],[0,-81]],[[2139,3180],[-10,0]],[[2129,3180],[-15,0]],[[2114,3180],[0,39]],[[2716,3197],[-7,14]],[[2718,3258],[-1,-22],[-2,-2],[1,-37]],[[2184,3261],[0,-81]],[[2184,3180],[-11,0]],[[2173,3180],[-4,0]],[[2169,3180],[0,81]],[[2199,3233],[0,-53]],[[2199,3180],[-12,0]],[[2187,3180],[-3,0]],[[2154,3261],[0,-81]],[[2154,3180],[-11,0]],[[2143,3180],[-4,0]],[[2772,3235],[-3,-9],[0,-16],[-4,-19]],[[2765,3191],[-6,0]],[[2169,3180],[-11,0]],[[2158,3180],[-4,0]],[[2731,3241],[1,-28],[0,-19]],[[2732,3194],[-17,0]],[[2715,3194],[1,3]],[[2659,3226],[-1,0]],[[2658,3226],[-11,-1]],[[2647,3225],[-2,0]],[[2466,3209],[-19,2],[0,-9]],[[2447,3202],[-1,26]],[[2237,3200],[-5,0],[0,-48]],[[2232,3152],[-5,0],[-3,8]],[[2224,3160],[1,12],[-2,0],[0,27],[-3,-5]],[[2220,3194],[-2,7],[-1,31],[-2,16]],[[2836,3183],[0,4]],[[2849,3208],[0,14],[7,5],[-1,-11],[5,4],[-4,-27],[-2,-17],[-2,-1],[-1,17],[-2,-18],[-6,2],[-6,-10],[-1,17]],[[2220,3194],[-4,-2],[-1,-16],[-7,0]],[[2208,3176],[-1,8],[-1,33],[-4,0],[0,16]],[[1640,3048],[2,-18],[-4,-9],[-3,21],[5,6]],[[1644,3055],[10,-15],[-5,-7],[-3,2],[-2,20]],[[1657,3208],[0,-79],[-1,-18]],[[1656,3111],[-3,7],[-8,-1],[-4,9],[-8,3],[-5,-5],[-1,14],[-4,11],[2,24],[-1,25],[-1,11],[0,13]],[[2407,3218],[-6,-8],[0,-10]],[[2401,3200],[-9,1],[0,-16]],[[2392,3185],[-6,0]],[[2374,3180],[-6,-15]],[[2368,3165],[-2,5],[-9,1],[-3,6]],[[2440,3211],[-1,-46],[-2,0],[2,-19]],[[2439,3146],[-6,1],[0,-17],[-2,1]],[[2431,3131],[1,29],[-2,6],[1,46],[-4,1],[1,20]],[[2687,3193],[-8,-27],[-2,-9]],[[2677,3157],[-1,22],[0,59]],[[2431,3131],[-1,0]],[[2430,3131],[-9,1]],[[2421,3132],[0,25],[-2,0],[1,21],[0,51],[-1,0]],[[2741,3193],[4,-38]],[[2745,3155],[-4,-10],[1,-9],[-6,-5],[0,10],[-4,-15]],[[2732,3126],[0,16]],[[2732,3142],[1,28],[-1,24]],[[2337,3168],[-13,0]],[[2677,3157],[-4,-26]],[[2673,3131],[-1,2]],[[2672,3133],[-2,8]],[[2670,3141],[-6,28]],[[2664,3169],[-1,5]],[[2663,3174],[3,30],[3,12],[1,11]],[[2051,3105],[0,-16],[-17,0]],[[2034,3089],[-14,0],[0,34]],[[2020,3123],[-1,15],[0,65],[1,0]],[[2775,3197],[0,-12],[-3,-27]],[[2772,3158],[-7,33]],[[2208,3176],[0,-41],[-5,0]],[[2203,3135],[-2,13],[-2,-3]],[[2199,3145],[0,35]],[[2421,3132],[-5,1]],[[2416,3133],[-1,0]],[[2415,3133],[0,16],[-3,0],[-2,17],[-3,3],[0,14],[-3,0],[0,17],[-3,0]],[[2554,3182],[-4,8]],[[2550,3190],[-3,5],[-7,-18],[-4,13],[-2,15],[-3,2]],[[2531,3207],[-3,19]],[[2556,3227],[-1,-34],[-1,-11]],[[2447,3202],[0,-24],[1,-17]],[[2448,3161],[0,-32],[2,-1],[0,-25],[-2,1]],[[2448,3104],[-1,1],[-5,36],[-3,5]],[[2663,3174],[-5,7],[-3,13]],[[2655,3194],[0,11],[3,21]],[[2567,3226],[0,-83]],[[2567,3143],[-3,6],[-6,20]],[[2558,3169],[-4,13]],[[2523,3182],[-9,0]],[[2514,3182],[-1,19],[-2,0],[0,25]],[[2523,3226],[0,-44]],[[2530,3149],[-1,-22]],[[2529,3127],[-5,0]],[[2524,3127],[0,52],[-1,3]],[[2531,3207],[-1,-58]],[[2514,3182],[-1,-30]],[[2513,3152],[-10,0]],[[2503,3152],[0,41],[2,8],[0,25]],[[2485,3185],[-5,0],[-3,-12],[-3,9],[-2,-6]],[[2472,3176],[0,25],[-3,0]],[[2485,3226],[0,-41]],[[2503,3152],[-4,-3]],[[2499,3149],[-2,0],[0,49],[-1,0],[0,28]],[[2499,3149],[0,-16]],[[2499,3133],[-7,11],[-5,0]],[[2487,3144],[0,25],[-2,16]],[[2655,3194],[-1,-4]],[[2654,3190],[-3,-1]],[[2651,3189],[-1,22],[-3,14]],[[2581,3225],[-2,-66],[1,-6]],[[2580,3153],[0,-17],[-5,-5],[-1,12]],[[2574,3143],[-4,8],[-3,-8]],[[2601,3201],[-6,-44],[-6,-27],[-1,0]],[[2588,3130],[-3,8],[0,14],[-5,1]],[[2600,3224],[1,-23]],[[2628,3200],[1,-6],[-2,-18],[0,-27]],[[2627,3149],[-2,8],[-5,2]],[[2620,3159],[2,45],[0,21]],[[2628,3225],[0,-25]],[[2641,3225],[-1,-7],[2,-28],[-1,-28]],[[2641,3162],[-1,-9]],[[2640,3153],[0,3]],[[2640,3156],[-4,35],[-3,9],[-5,0]],[[2620,3159],[-4,-2]],[[2616,3157],[0,18],[-3,9]],[[2613,3184],[2,10],[3,31]],[[2613,3184],[-3,16],[0,24]],[[2651,3189],[-2,-14]],[[2649,3175],[-2,4],[-3,-19],[-3,2]],[[2836,3183],[1,-10],[-6,-34],[-5,-16]],[[2826,3123],[-2,7],[-3,45]],[[2607,3224],[-2,-28],[0,-14],[-3,-25]],[[2602,3157],[-1,44]],[[2616,3157],[-1,-7]],[[2615,3150],[-1,0]],[[2614,3150],[-12,1]],[[2602,3151],[0,6]],[[2299,3184],[0,-16],[-3,0],[0,-33]],[[2296,3135],[-9,0]],[[2287,3135],[0,16],[-2,8]],[[2285,3159],[-1,41]],[[2020,3123],[-10,17],[-3,9],[-9,0]],[[2787,3196],[3,-27],[-2,-38]],[[2788,3131],[-2,-7],[-4,-27]],[[2782,3097],[0,0]],[[2782,3097],[-10,60]],[[2772,3157],[0,1]],[[2114,3180],[0,-81]],[[2114,3099],[0,-2]],[[2114,3097],[-19,0],[0,56]],[[2715,3194],[2,-47]],[[2717,3147],[0,-14]],[[2717,3133],[-3,-9],[-3,16]],[[2711,3140],[-6,12]],[[2466,3196],[-2,6],[1,-22],[-3,-4],[3,-10],[-3,-6]],[[2462,3160],[-14,1]],[[2550,3190],[0,-6],[-3,-38]],[[2547,3146],[-17,3]],[[1654,2908],[3,-10],[-3,0],[0,10]],[[1671,3049],[-8,19],[-2,23],[-5,20]],[[1673,3188],[6,-95],[-1,-21],[-3,0],[-4,-23]],[[2472,3176],[-1,-23],[1,-9]],[[2472,3144],[0,-8]],[[2472,3136],[-3,0],[0,-16],[-2,0]],[[2467,3120],[-5,19]],[[2462,3139],[0,21]],[[2602,3151],[1,-13]],[[2603,3138],[-4,-29],[-5,-31]],[[2594,3078],[-8,0]],[[2586,3078],[0,43],[2,9]],[[2805,3144],[2,-16],[-2,-13]],[[2805,3115],[-5,-4],[-6,17],[-6,3]],[[2224,3160],[-2,-10],[-2,-30],[1,-16]],[[2221,3104],[-5,22],[0,-15],[-2,4]],[[2214,3115],[-3,3],[-4,-7],[-4,24]],[[2415,3133],[-4,0],[0,-8],[-5,1],[-3,-8]],[[2403,3118],[0,11],[-3,6]],[[2400,3135],[-1,16],[-4,9],[0,25],[-3,0]],[[2252,3168],[-1,0],[0,-33]],[[2251,3135],[-3,0],[-2,-11],[-5,1],[-5,-9]],[[2236,3116],[0,19],[-4,0],[0,17]],[[2285,3159],[-8,-2],[2,-22],[-6,0]],[[2273,3135],[-6,0]],[[2267,3135],[0,33],[-3,0]],[[2640,3156],[-5,-10]],[[2635,3146],[-8,-3]],[[2627,3143],[0,6]],[[2664,3169],[-4,-39]],[[2660,3130],[-4,-9]],[[2656,3121],[-2,14]],[[2654,3135],[2,8],[-2,20],[2,14],[-2,13]],[[1681,2860],[6,-36],[-4,3],[-2,33]],[[1680,2944],[7,-14],[1,-20],[-4,4],[-1,21],[-3,9]],[[1703,3031],[-5,0],[-4,-38]],[[1694,2993],[-3,5],[-2,-12],[-3,7],[0,18],[-2,23],[-2,14],[-5,-1],[-2,-6],[-4,8]],[[2732,3142],[-15,5]],[[2692,3131],[-12,-51]],[[2680,3080],[-1,15]],[[2679,3095],[-2,31],[-4,5]],[[2761,3140],[-1,-8],[-5,1],[-6,-24]],[[2749,3109],[-2,27],[-2,19]],[[2759,3191],[1,-21],[2,-8],[-1,-22]],[[2772,3157],[-5,-61]],[[2767,3096],[-1,2]],[[2766,3098],[-2,35],[-3,7]],[[2558,3169],[0,-70]],[[2558,3099],[0,-2]],[[2558,3097],[-11,1]],[[2547,3098],[0,48]],[[2654,3135],[-5,0]],[[2649,3135],[-1,23],[1,17]],[[2711,3140],[-4,-31],[-3,-12],[-2,-18]],[[2702,3079],[-6,23],[-2,15]],[[2694,3117],[-2,14]],[[2089,3154],[0,-98]],[[2089,3056],[-6,0],[0,-16],[-17,1],[0,16],[-3,0]],[[2063,3057],[0,48]],[[2487,3144],[-1,0]],[[2486,3144],[-14,0]],[[2400,3135],[-3,0],[-1,-22],[-13,2]],[[2383,3115],[0,64]],[[2308,3168],[0,-33],[-2,-16],[-7,0]],[[2299,3119],[-3,0],[0,16]],[[2524,3127],[-6,1]],[[2518,3128],[0,8],[-5,0]],[[2513,3136],[0,16]],[[2158,3180],[0,-81]],[[2158,3099],[-3,0]],[[2155,3099],[-12,0]],[[2143,3099],[0,81]],[[2173,3180],[0,-81]],[[2173,3099],[-3,0]],[[2170,3099],[-12,0]],[[2143,3099],[-2,0]],[[2141,3099],[-12,0]],[[2129,3099],[0,81]],[[2187,3180],[0,-81]],[[2187,3099],[-2,0]],[[2185,3099],[-12,0]],[[2199,3145],[0,-46]],[[2199,3099],[-12,0]],[[2383,3115],[0,-11]],[[2383,3104],[-2,0]],[[2381,3104],[-13,2]],[[2368,3106],[0,59]],[[2129,3099],[-3,0]],[[2126,3099],[-12,0]],[[2649,3135],[-3,-16]],[[2646,3119],[-6,22],[0,12]],[[2820,3095],[0,1]],[[2820,3095],[0,0]],[[2826,3123],[-6,-28]],[[2820,3095],[-3,18],[-4,-1],[-1,-9]],[[2812,3103],[-4,4]],[[2808,3107],[-3,8]],[[2368,3106],[-9,1],[0,-30]],[[2359,3077],[-6,-1]],[[2353,3076],[0,59]],[[2574,3143],[-1,-45]],[[2573,3098],[-15,1]],[[2670,3141],[-2,-11],[-6,-3]],[[2662,3127],[-2,3]],[[2267,3135],[0,-40]],[[2267,3095],[-16,0]],[[2251,3095],[0,40]],[[2320,3151],[0,-16],[-3,0],[0,-65]],[[2317,3070],[-6,0]],[[2311,3070],[-12,0]],[[2299,3070],[0,49]],[[2340,3135],[-3,0],[0,-49],[-3,0],[0,-16]],[[2334,3070],[-17,0]],[[2462,3139],[0,-21],[-5,-9],[0,-11],[-3,-17],[-2,4],[3,-18],[-4,-4]],[[2451,3063],[0,0]],[[2451,3063],[-4,0]],[[2447,3063],[1,4],[0,37]],[[2287,3135],[-1,0],[0,-32],[-2,0]],[[2284,3103],[-3,8],[-8,0],[0,24]],[[2236,3116],[2,-13],[0,-33]],[[2238,3070],[-5,-4],[-5,14]],[[2228,3080],[-6,1],[-1,23]],[[2627,3143],[0,-25]],[[2627,3118],[-10,-4]],[[2617,3114],[-3,2],[1,34]],[[2782,3097],[-1,-9]],[[2781,3088],[-7,9],[-5,-13]],[[2769,3084],[-2,12]],[[2646,3119],[0,-16]],[[2646,3103],[-8,0]],[[2638,3103],[0,9]],[[2638,3112],[-3,34]],[[2749,3109],[0,0]],[[2749,3109],[-4,-13],[-2,-24]],[[2743,3072],[-4,-13]],[[2739,3059],[-2,-5],[-5,21],[2,16]],[[2734,3091],[1,20],[-3,15]],[[2114,3097],[0,-89]],[[2114,3008],[0,-47]],[[2114,2961],[-13,0]],[[2101,2961],[0,16],[-6,0],[0,30],[-3,0],[0,49],[-3,0]],[[2513,3136],[-1,-3],[-1,-24]],[[2511,3109],[-12,3]],[[2499,3112],[0,21]],[[2586,3078],[-5,-19]],[[2581,3059],[-4,30]],[[2577,3089],[-4,9]],[[2614,3150],[-2,-28],[-4,-12],[-2,-16],[-2,0]],[[2604,3094],[-1,44]],[[2617,3114],[-1,-55]],[[2616,3059],[-11,-3]],[[2605,3056],[-1,38]],[[2034,3089],[0,-81],[-4,0],[0,-32],[-9,2],[0,-34]],[[2021,2944],[-3,-1],[-34,0]],[[1984,2943],[0,146],[0,60]],[[1984,2943],[-8,1],[0,-52]],[[1976,2892],[-29,1]],[[1947,2893],[0,106]],[[2547,3098],[-3,0]],[[2544,3098],[-15,3]],[[2529,3101],[0,26]],[[2214,3115],[0,-58]],[[2214,3057],[-9,2],[-6,24]],[[2199,3083],[0,16]],[[2734,3091],[-8,-10],[-2,-8],[-4,12]],[[2720,3085],[-3,48]],[[2447,3063],[-3,-12],[2,-19],[-3,1],[-5,11]],[[2438,3044],[-1,12]],[[2437,3056],[-2,25],[-5,3],[0,47]],[[2638,3112],[-9,0],[-2,6]],[[2499,3112],[0,-41]],[[2499,3071],[-8,0]],[[2491,3071],[0,5],[-5,1]],[[2486,3077],[0,67]],[[2486,3077],[0,-6],[-6,0]],[[2480,3071],[-6,0]],[[2474,3071],[0,19],[-2,7],[0,39]],[[2672,3133],[-2,-41]],[[2670,3092],[-2,-7],[-3,5],[-2,-7]],[[2663,3083],[-1,44]],[[2766,3098],[-2,-2],[-9,-39]],[[2755,3057],[-3,14],[1,7],[-1,31],[-3,0]],[[2720,3085],[-1,-7]],[[2719,3078],[-3,-23]],[[2716,3055],[-2,1],[-6,20],[-4,-10]],[[2704,3066],[-2,13]],[[2605,3056],[1,-22]],[[2606,3034],[-4,-4]],[[2602,3030],[-5,5]],[[2597,3035],[-3,43]],[[2465,3054],[0,-16]],[[2465,3038],[-6,1]],[[2459,3039],[0,24],[-8,0]],[[2467,3120],[0,-30],[-2,0],[0,-36]],[[2474,3071],[0,-17],[-9,0]],[[2656,3121],[-2,-12],[2,-13]],[[2656,3096],[-6,-31]],[[2650,3065],[-1,-6],[-6,13]],[[2643,3072],[4,21],[-1,10]],[[2518,3128],[0,-71]],[[2518,3057],[-5,-2]],[[2513,3055],[-2,0]],[[2511,3055],[0,54]],[[2284,3103],[0,-30]],[[2284,3073],[-1,-19]],[[2283,3054],[-16,0]],[[2267,3054],[0,41]],[[2299,3070],[-1,-8],[-4,0]],[[2294,3062],[-2,11],[-8,0]],[[2251,3095],[0,-27]],[[2251,3068],[-1,-6],[-5,8],[-2,-14]],[[2243,3056],[-2,-3],[-3,17]],[[2353,3076],[0,-46]],[[2353,3030],[0,-57]],[[2353,2973],[-8,12]],[[2345,2985],[0,12],[-3,-4],[-3,22],[-5,14]],[[2334,3029],[0,41]],[[2403,3118],[0,-49]],[[2403,3069],[-6,1]],[[2397,3070],[-4,1],[0,14],[-9,8],[-1,11]],[[1920,2962],[0,-21],[-5,0],[-7,-16],[0,-34]],[[1908,2891],[-6,-10],[-4,-29],[-4,49],[-3,40]],[[1891,2941],[-3,40],[-2,-14],[-4,27],[0,13],[-3,34]],[[2679,3095],[-6,-15],[-2,2]],[[2671,3082],[-1,10]],[[2416,3133],[0,-81]],[[2416,3052],[-3,0]],[[2413,3052],[-5,16],[-5,1]],[[2437,3056],[-7,17],[-1,-15],[-6,0],[0,-5]],[[2423,3053],[-7,-1]],[[2663,3083],[-1,-5]],[[2662,3078],[-2,12],[-4,6]],[[2808,3107],[-3,-26],[-3,-2],[-1,-12],[-4,1],[0,-17],[-3,-20]],[[2794,3031],[-12,66]],[[2694,3117],[-2,-12],[2,-23],[-1,-21],[-1,-8]],[[2692,3053],[-6,1],[-2,-11]],[[2684,3043],[-4,37]],[[2529,3101],[-1,-44]],[[2528,3057],[-10,0]],[[2228,3080],[0,-70]],[[2228,3010],[-14,0]],[[2214,3010],[0,47]],[[2627,3055],[-3,1]],[[2624,3056],[-5,0]],[[2619,3056],[-3,3]],[[2627,3118],[0,-63]],[[2638,3103],[0,-28]],[[2638,3075],[-3,-2],[-2,-19]],[[2633,3054],[-6,1]],[[2704,3066],[-3,-32]],[[2701,3034],[-1,-2]],[[2700,3032],[0,6],[-8,-2],[0,17]],[[2820,3095],[0,1]],[[2820,3095],[-4,-26],[-1,-18],[-1,26]],[[2814,3077],[-2,26]],[[2511,3055],[-9,0]],[[2502,3055],[-3,0],[0,16]],[[2755,3057],[2,-7]],[[2757,3050],[-5,-18],[-4,24],[-5,6],[0,10]],[[2797,3015],[0,1]],[[2797,3015],[0,0]],[[2814,3077],[0,-41],[-2,-16],[-4,5],[-8,-3],[-3,-6]],[[2797,3016],[-1,2]],[[2796,3018],[0,0]],[[2796,3018],[-2,13]],[[2368,3106],[0,-30],[3,-1],[0,-33]],[[2371,3042],[0,-48],[-4,0]],[[2367,2994],[0,0]],[[2367,2994],[-2,25],[-1,57],[-5,1]],[[2381,3104],[-1,-23],[2,-2],[0,-29],[2,-17]],[[2384,3033],[-3,0]],[[2381,3033],[-2,-3],[-8,12]],[[2063,3057],[0,-128],[-1,-49],[-11,-1]],[[2051,2879],[0,32],[-12,0],[0,16],[-17,0]],[[2022,2927],[-1,17]],[[2397,3070],[0,-65]],[[2397,3005],[-6,-6]],[[2391,2999],[-5,13],[-2,21]],[[2643,3072],[-1,-22]],[[2642,3050],[-4,11],[0,14]],[[2544,3098],[0,-57]],[[2544,3041],[0,-16]],[[2544,3025],[-9,1]],[[2535,3026],[-1,25],[-6,1]],[[2528,3052],[0,5]],[[1827,3041],[0,-116]],[[1827,2925],[-17,0],[0,16],[-9,0],[0,-81],[-7,-1]],[[1794,2859],[-4,3],[-1,9],[1,34],[-2,6],[0,19],[3,6]],[[1791,2936],[3,21],[1,27],[-1,43],[2,19],[1,11]],[[1805,3097],[3,-8],[12,-5],[2,15],[5,1]],[[2185,3099],[0,-89]],[[2185,3010],[-15,0]],[[2170,3010],[0,89]],[[2199,3083],[-1,1],[0,-74]],[[2198,3010],[-13,0]],[[2577,3089],[-2,-1],[-2,-25],[-3,-7],[-2,-20],[-4,-11],[-2,-11]],[[2562,3014],[-3,6],[-2,20]],[[2557,3040],[1,-1],[0,58]],[[2170,3010],[-15,-1]],[[2155,3009],[0,90]],[[2155,3009],[-14,-1]],[[2141,3008],[0,91]],[[2141,3008],[-15,0]],[[2126,3008],[0,91]],[[2769,3084],[0,-8],[2,-45],[4,-28]],[[2775,3003],[-4,-4],[-9,11],[-2,9]],[[2760,3019],[-3,12]],[[2757,3031],[3,8],[-3,11]],[[2126,3008],[-12,0]],[[2557,3040],[-13,1]],[[2796,3018],[0,0]],[[2796,3018],[1,-4],[-7,-21],[-6,-32]],[[2784,2961],[-2,0],[-3,25]],[[2779,2986],[-2,31],[-2,18],[2,16],[4,37]],[[2779,2986],[-2,2],[-1,12]],[[2776,3000],[-1,3]],[[2662,3078],[1,-30]],[[2663,3048],[-5,-14]],[[2658,3034],[-1,13],[-5,6],[-2,12]],[[2267,3054],[0,-32]],[[2267,3022],[-4,16],[-5,-25],[-3,7]],[[2255,3020],[1,19],[-4,2],[-1,27]],[[2684,3043],[1,-10]],[[2685,3033],[-2,5]],[[2683,3038],[-4,-3]],[[2679,3035],[-5,14]],[[2674,3049],[-3,33]],[[2674,3049],[-5,0],[-3,-8]],[[2666,3041],[-3,7]],[[2739,3059],[0,-18],[1,-42],[-1,-6]],[[2739,2993],[-6,7],[-5,18]],[[2728,3018],[-1,24],[-4,17],[-2,0],[-2,19]],[[2581,3059],[-1,-29]],[[2580,3030],[-2,-20],[-5,-6],[0,-7]],[[2573,2997],[-5,14],[-5,-5]],[[2563,3006],[-1,8]],[[2214,3010],[0,-19]],[[2214,2991],[-3,12],[-4,5],[-8,2]],[[2199,3010],[-1,0]],[[2243,3056],[0,-46]],[[2243,3010],[-15,0]],[[2597,3035],[-5,-5],[-5,-19]],[[2587,3011],[-3,28],[-4,-9]],[[2728,3018],[0,-32]],[[2728,2986],[-5,-10]],[[2723,2976],[-5,14],[-5,28]],[[2713,3018],[3,37]],[[2491,3071],[1,-55]],[[2492,3016],[-8,0],[-4,6]],[[2480,3022],[0,49]],[[2367,2994],[-6,7],[-8,29]],[[2713,3018],[-2,-12]],[[2711,3006],[-6,10],[-1,20],[-3,-2]],[[2642,3050],[-5,-17]],[[2637,3033],[-2,1],[0,-59]],[[2635,2975],[-3,0],[0,-18]],[[2632,2957],[-4,-9]],[[2628,2948],[-7,2]],[[2621,2950],[2,11]],[[2623,2961],[4,16],[2,16]],[[2629,2993],[3,15],[2,26],[-1,20]],[[2294,3062],[1,-9],[-2,-11],[1,-21]],[[2294,3021],[-2,4],[-3,-15],[-3,4],[-2,18]],[[2284,3032],[-1,22]],[[2438,3044],[-3,-8],[-1,-36]],[[2434,3000],[-11,2]],[[2423,3002],[0,51]],[[2757,3031],[-8,-27],[-3,-6],[-4,-24]],[[2742,2974],[-3,19]],[[2650,3065],[-1,-23],[2,-14]],[[2651,3028],[-5,-27]],[[2646,3001],[-2,-6]],[[2644,2995],[-6,31],[-1,7]],[[2480,3022],[0,-14],[-6,-3],[0,-16]],[[2474,2989],[-4,5],[3,11],[-8,1]],[[2465,3006],[0,32]],[[2502,3055],[0,-49],[-2,-14]],[[2500,2992],[-8,-3]],[[2492,2989],[0,27]],[[2311,3070],[1,-6],[0,-32],[3,-15],[2,0]],[[2317,3017],[-2,-6]],[[2315,3011],[-3,9],[-4,-6],[-2,-18],[-6,-6]],[[2300,2990],[-1,9],[-6,13],[1,9]],[[2334,3029],[-2,5],[-2,-16]],[[2330,3018],[-7,2],[-1,10],[-5,-13]],[[2413,3052],[-4,-1],[0,-15],[4,-33]],[[2413,3003],[-7,1]],[[2406,3004],[-9,1]],[[2255,3020],[0,-78]],[[2255,2942],[-12,-1]],[[2243,2941],[0,69]],[[2658,3034],[-3,-11]],[[2655,3023],[-4,5]],[[2459,3039],[0,-70],[-3,0],[0,-16]],[[2456,2953],[-12,0]],[[2444,2953],[-1,6]],[[2443,2959],[3,6],[-2,13],[3,8],[-1,14],[3,-3],[-2,37],[6,12],[-2,17]],[[2443,2959],[0,-8],[-6,9]],[[2437,2960],[0,40],[-3,0]],[[2619,3056],[-1,-24],[-2,-9]],[[2616,3023],[-10,0]],[[2606,3023],[0,11]],[[2528,3052],[-1,-59]],[[2527,2993],[-8,-17]],[[2519,2976],[1,5],[-7,0],[0,25]],[[2513,3006],[0,49]],[[2101,2961],[-6,0],[0,-33],[-1,0],[0,-80],[-1,0]],[[2093,2848],[-29,0],[0,-83]],[[2064,2765],[-14,0],[0,82],[1,0],[0,32]],[[2629,2993],[-1,11],[-3,1]],[[2625,3005],[-1,51]],[[1791,2936],[-40,-2]],[[1751,2934],[-27,0],[-6,1],[-3,11],[-4,3]],[[1711,2949],[2,28],[-3,10],[-4,30]],[[2625,3005],[-5,-5]],[[2620,3000],[-4,6]],[[2616,3006],[0,17]],[[2700,3032],[-4,-4],[2,-19],[-2,-12],[2,-31]],[[2698,2966],[-4,18]],[[2694,2984],[-3,26],[-6,23]],[[2513,3006],[-5,0],[0,-11],[-3,-3]],[[2505,2992],[-5,0]],[[2284,3032],[0,-1]],[[2284,3031],[-4,-29],[0,-13],[-3,15],[0,18],[-3,-2],[-2,-13],[-2,4],[-1,14]],[[2269,3025],[-2,-3]],[[2423,3002],[0,-16]],[[2423,2986],[-10,0]],[[2413,2986],[0,17]],[[2535,3026],[0,-74]],[[2535,2952],[-9,2]],[[2526,2954],[1,39]],[[2679,3035],[-2,-5],[-4,-30],[1,-9]],[[2674,2991],[-1,-7]],[[2673,2984],[-3,1],[-5,11]],[[2665,2996],[0,16]],[[2665,3012],[1,29]],[[1891,2941],[-15,0],[0,-48],[-14,0],[-3,16],[0,-146]],[[1859,2763],[-32,-1]],[[1827,2762],[0,163]],[[2665,3012],[-7,22]],[[2381,3033],[0,-90]],[[2381,2943],[-7,1]],[[2374,2944],[-3,24]],[[2371,2968],[-4,11],[0,15]],[[2563,3006],[-3,-29],[-4,-8],[-2,-19]],[[2554,2950],[-1,14],[-3,3]],[[2550,2967],[0,16],[-3,0],[0,33],[-3,9]],[[2683,3038],[1,-29],[3,-35]],[[2687,2974],[-4,-6]],[[2683,2968],[-1,-2]],[[2682,2966],[-4,11],[-2,-5],[-2,19]],[[2269,3025],[0,-90]],[[2269,2935],[-12,0]],[[2257,2935],[-2,7]],[[2587,3011],[1,-13],[-3,-17]],[[2585,2981],[-2,-17],[1,-9],[-5,-28]],[[2579,2927],[0,21],[-4,8]],[[2575,2956],[-2,41]],[[2465,3006],[0,-90]],[[2465,2916],[-3,0],[0,-11],[-4,0]],[[2458,2905],[-2,0],[0,48]],[[2694,2984],[-5,-8]],[[2689,2976],[-2,-2]],[[2711,3006],[-11,-52]],[[2700,2954],[0,2]],[[2700,2956],[-2,10]],[[2644,2995],[-2,-26],[-2,6]],[[2640,2975],[-3,0]],[[2637,2975],[-2,0]],[[2595,2958],[0,6],[-6,0],[-1,16],[-3,1]],[[2602,3030],[-3,-12],[0,-43],[-4,-17]],[[2665,2996],[-3,-11]],[[2662,2985],[-3,22]],[[2659,3007],[-4,16]],[[2606,3023],[2,-47]],[[2608,2976],[1,-32]],[[2609,2944],[-10,3]],[[2599,2947],[-6,0]],[[2593,2947],[2,11]],[[2345,2985],[0,-69]],[[2345,2916],[-1,6]],[[2344,2922],[-3,7],[-6,-2]],[[2335,2927],[-5,-2]],[[2330,2925],[0,0]],[[2330,2925],[0,93]],[[2391,2999],[0,-60]],[[2391,2939],[-7,-2]],[[2384,2937],[-3,6]],[[2300,2990],[0,-61]],[[2300,2929],[-13,1]],[[2287,2930],[-3,2]],[[2284,2932],[0,99]],[[2284,2932],[-12,3]],[[2272,2935],[-3,0]],[[2371,2968],[-6,-11]],[[2365,2957],[-3,7],[-7,-8],[-2,17]],[[2760,3019],[-3,-21],[0,-12],[-3,-39]],[[2754,2947],[-4,-10]],[[2750,2937],[-4,1],[-3,21]],[[2743,2959],[-1,15]],[[1711,2949],[-3,-22]],[[1708,2927],[-5,28],[-6,22],[-3,16]],[[2330,2925],[-5,14],[-8,8],[-3,-6]],[[2314,2941],[1,70]],[[2659,3007],[-5,-41]],[[2654,2966],[-7,27]],[[2647,2993],[-1,8]],[[2550,2967],[-6,1],[-1,-16],[-5,0]],[[2538,2952],[-3,0]],[[2616,3006],[0,-18],[-8,-12]],[[2492,2989],[0,-8]],[[2492,2981],[-8,0]],[[2484,2981],[-10,0]],[[2474,2981],[0,8]],[[2776,3000],[-3,-18],[-1,-20],[-3,-15],[-3,-36]],[[2766,2911],[-3,5],[-6,32],[-3,-1]],[[2314,2941],[0,-10]],[[2314,2931],[-12,-11]],[[2302,2920],[-2,9]],[[2743,2959],[-2,1],[-3,-18],[-4,25],[-4,1],[-2,18]],[[2723,2976],[-5,-30]],[[2718,2946],[-10,-55]],[[2708,2891],[-3,10]],[[2705,2901],[-3,23],[1,17],[-3,13]],[[2575,2956],[-5,-15],[-4,-25],[-5,-16]],[[2561,2900],[-1,0]],[[2560,2900],[-3,12],[-5,34],[2,4]],[[2199,3010],[0,-81]],[[2199,2929],[-14,0]],[[2185,2929],[0,81]],[[2214,2991],[0,-62]],[[2214,2929],[-15,0]],[[2243,2941],[0,-13]],[[2243,2928],[-15,1]],[[2228,2929],[0,81]],[[2185,2929],[-15,-1]],[[2170,2928],[0,82]],[[2170,2928],[-14,0]],[[2156,2928],[-1,81]],[[2228,2929],[-14,0]],[[2156,2928],[-15,-1]],[[2141,2927],[0,81]],[[2126,3008],[1,-81]],[[2127,2927],[-13,0]],[[2114,2927],[0,34]],[[2141,2927],[-14,0]],[[2406,3004],[0,-13],[-6,-41],[2,-15],[4,-12]],[[2406,2923],[-11,2]],[[2395,2925],[-4,0],[0,14]],[[2662,2985],[3,-31],[0,-9]],[[2665,2945],[-7,-10]],[[2658,2935],[-4,18]],[[2654,2953],[0,13]],[[2621,2950],[-4,-16]],[[2617,2934],[-8,0]],[[2609,2934],[0,10]],[[2620,3000],[0,-39],[3,0]],[[2474,2981],[1,-41],[-2,-8],[0,-15]],[[2473,2917],[-4,-6]],[[2469,2911],[-3,-13],[-1,18]],[[2519,2976],[1,-24],[-5,-3]],[[2515,2949],[0,11],[-10,-1]],[[2505,2959],[0,33]],[[2413,2986],[0,-38],[-1,-24],[0,-14]],[[2412,2910],[-2,-5],[-4,18]],[[2437,2960],[0,-33]],[[2437,2927],[-15,2]],[[2422,2929],[1,57]],[[2644,2952],[-4,23]],[[2647,2993],[0,-17],[-3,-24]],[[2777,2879],[-1,3]],[[2777,2879],[0,0]],[[2784,2961],[-4,-36],[-1,-24],[-2,12],[2,-27],[-2,-6],[-4,9]],[[2773,2889],[-1,5]],[[2772,2894],[-6,17]],[[1947,2893],[0,-80]],[[1947,2813],[0,-65]],[[1947,2748],[-2,0]],[[1945,2748],[-3,21],[0,36],[-2,6],[-6,58],[0,107]],[[2673,2984],[1,-7],[-1,-14],[0,-21]],[[2673,2942],[-5,-21]],[[2668,2921],[-3,24]],[[2526,2954],[-1,-46]],[[2525,2908],[-10,0]],[[2515,2908],[0,41]],[[2654,2953],[0,-8],[-4,-9],[-1,-13]],[[2649,2923],[-2,14]],[[2647,2937],[-3,15]],[[2505,2959],[-2,-5]],[[2503,2954],[-4,-2],[-4,-12]],[[2495,2940],[-3,0],[0,41]],[[2682,2966],[-5,-29]],[[2677,2937],[-4,5]],[[2365,2957],[0,-52]],[[2365,2905],[-3,8],[-2,-14],[-7,10],[-5,-4]],[[2348,2905],[-3,11]],[[2750,2937],[0,-27],[-3,-8]],[[2747,2902],[-4,4],[0,11],[-8,-29]],[[2735,2888],[-1,-1]],[[2734,2887],[-4,24],[-7,25]],[[2723,2936],[-5,10]],[[2422,2929],[1,-19],[-4,-14],[-1,-11]],[[2418,2885],[-2,17],[-4,8]],[[2700,2956],[-7,-35]],[[2693,2921],[-4,36],[0,19]],[[2593,2947],[-1,0],[-2,-38],[-4,1],[-2,-36]],[[2584,2874],[-8,0]],[[2576,2874],[-1,13],[2,20],[2,3],[0,17]],[[2495,2940],[-2,-5],[0,-27]],[[2493,2908],[-5,0]],[[2488,2908],[0,21],[-4,3],[0,49]],[[2488,2908],[-3,-14]],[[2485,2894],[-12,23]],[[2693,2921],[-2,-8]],[[2691,2913],[-1,0]],[[2690,2913],[-4,8],[-3,47]],[[1945,2748],[-37,0]],[[1908,2748],[0,16]],[[1908,2764],[0,127]],[[2637,2975],[1,-12],[-3,-43]],[[2635,2920],[-1,0]],[[2634,2920],[0,21],[-2,16]],[[2647,2937],[-1,-13],[-4,-14]],[[2642,2910],[-1,7],[-6,3]],[[2374,2944],[1,-42],[-2,-21],[-3,0],[2,-23]],[[2372,2858],[-1,0]],[[2371,2858],[-6,0]],[[2365,2858],[0,47]],[[2690,2913],[-1,-7]],[[2689,2906],[-4,9],[-5,-13]],[[2680,2902],[-3,35]],[[2560,2900],[-6,-21],[-1,-23],[-3,-1]],[[2550,2855],[-9,1]],[[2541,2856],[-3,2],[0,25]],[[2538,2883],[0,69]],[[2114,2927],[0,-80]],[[2114,2847],[0,-82]],[[2114,2765],[0,-81]],[[2114,2684],[0,-16],[-8,0]],[[2106,2668],[-11,0]],[[2095,2668],[0,98],[-2,0],[0,82]],[[2515,2908],[-4,0]],[[2511,2908],[-8,0]],[[2503,2908],[0,46]],[[2444,2953],[-1,-17],[3,8],[0,-34],[1,-29],[-3,-6],[3,-10],[-2,-8]],[[2445,2857],[0,-2]],[[2445,2855],[-2,0]],[[2443,2855],[-5,1]],[[2438,2856],[-1,0]],[[2437,2856],[0,71]],[[2634,2920],[-1,-18],[-2,0]],[[2631,2902],[-2,19],[-1,27]],[[2576,2874],[-1,-16]],[[2575,2858],[-3,10],[-7,0],[0,-4]],[[2565,2864],[-4,21],[0,15]],[[2705,2901],[-7,-4],[-2,13],[-3,-6]],[[2693,2904],[-2,9]],[[2538,2883],[-9,-29]],[[2529,2854],[-5,-1]],[[2524,2853],[1,55]],[[2503,2908],[0,-17],[-3,0],[0,-16],[-3,0]],[[2497,2875],[0,33],[-4,0]],[[2458,2905],[0,-33]],[[2458,2872],[-6,1],[0,-17]],[[2452,2856],[-7,1]],[[2658,2935],[0,-48]],[[2658,2887],[-8,-8]],[[2650,2879],[0,9]],[[2650,2888],[-1,35]],[[2631,2902],[0,-6]],[[2631,2896],[-10,0],[0,-6]],[[2621,2890],[-2,6]],[[2619,2896],[-2,38]],[[2772,2894],[-2,-12],[-3,-4],[-5,-36]],[[2762,2842],[-3,-19],[-1,15]],[[2758,2838],[-2,-2],[-1,18],[-3,5]],[[2752,2859],[-4,24],[-1,19]],[[1751,2934],[0,-65],[-1,-1],[0,-85]],[[1750,2783],[-28,-15],[0,26],[-4,8],[-1,19],[1,10],[-2,45],[-5,42],[-3,9]],[[2609,2934],[2,-55]],[[2611,2879],[0,-4]],[[2611,2875],[-10,-1]],[[2601,2874],[-2,0]],[[2599,2874],[0,73]],[[2599,2874],[-10,-3]],[[2589,2871],[-5,3]],[[2330,2925],[0,-1]],[[2330,2924],[-9,-5],[-4,-9],[-3,-15]],[[2314,2895],[0,36]],[[2723,2936],[-1,-52],[1,-7]],[[2723,2877],[-4,-2],[-5,9],[-2,-12]],[[2712,2872],[-4,9],[0,10]],[[2668,2921],[1,-9],[-3,-9],[-1,-14]],[[2665,2889],[-4,0]],[[2661,2889],[-3,-2]],[[2022,2927],[0,-63]],[[2022,2864],[-15,-43],[0,-8],[-12,1],[0,-33]],[[1995,2781],[-8,0]],[[1987,2781],[-4,4],[1,28],[-2,33],[-2,4],[-1,42],[-3,0]],[[2384,2937],[-2,-34],[-1,0],[-1,-45]],[[2380,2858],[0,0]],[[2380,2858],[-8,0]],[[2680,2902],[0,-3]],[[2680,2899],[-4,-19],[-5,-10]],[[2671,2870],[-1,13],[-5,6]],[[1827,2762],[0,-87]],[[1827,2675],[-41,85],[0,23],[3,19]],[[1789,2802],[5,7],[2,28],[-2,22]],[[1908,2764],[-20,0],[0,-2],[-29,1]],[[2257,2935],[0,-80]],[[2257,2855],[-4,0]],[[2253,2855],[-10,1]],[[2243,2856],[0,72]],[[2395,2925],[-1,-67]],[[2394,2858],[-7,0]],[[2387,2858],[-7,0]],[[2650,2888],[-6,4]],[[2644,2892],[-2,0]],[[2642,2892],[0,18]],[[2734,2887],[-8,-28]],[[2726,2859],[-3,18]],[[1789,2802],[-39,-19]],[[2272,2935],[0,-82]],[[2272,2853],[-5,0]],[[2267,2853],[-10,2]],[[2287,2930],[0,-78]],[[2287,2852],[-5,0]],[[2282,2852],[-10,1]],[[2619,2896],[-8,-17]],[[2314,2851],[-2,0],[-1,-20],[1,-7]],[[2312,2824],[-4,0]],[[2308,2824],[-6,1]],[[2302,2825],[0,26]],[[2302,2851],[0,69]],[[2314,2895],[0,-44]],[[2302,2851],[-6,0]],[[2296,2851],[-9,1]],[[2185,2929],[-1,-81]],[[2184,2848],[-3,0]],[[2181,2848],[-11,1]],[[2170,2849],[0,79]],[[2199,2929],[0,-82]],[[2199,2847],[-4,0]],[[2195,2847],[-11,1]],[[2344,2922],[-1,-71]],[[2343,2851],[-3,16],[-5,-6]],[[2335,2861],[0,66]],[[2170,2849],[-4,-1]],[[2166,2848],[-10,-1]],[[2156,2847],[0,81]],[[2228,2929],[0,-83]],[[2228,2846],[-4,0]],[[2224,2846],[-10,0]],[[2214,2846],[0,83]],[[2243,2856],[0,-10],[-4,0]],[[2239,2846],[-11,0]],[[2214,2846],[-4,0]],[[2210,2846],[-11,1]],[[2437,2856],[-17,0]],[[2420,2856],[-2,29]],[[2156,2847],[-4,0]],[[2152,2847],[-11,0]],[[2141,2847],[0,80]],[[2064,2765],[0,-97]],[[2064,2668],[-2,0]],[[2062,2668],[-30,1]],[[2032,2669],[-11,-1]],[[2021,2668],[0,179],[1,17]],[[2127,2927],[0,-80]],[[2127,2847],[-13,0]],[[2141,2847],[-4,0]],[[2137,2847],[-10,0]],[[2335,2861],[-1,-4]],[[2334,2857],[0,-10],[-4,1]],[[2330,2848],[0,76]],[[2420,2856],[-18,1]],[[2402,2857],[-8,1]],[[2330,2848],[-10,-1]],[[2320,2847],[-6,4]],[[2348,2905],[0,-73]],[[2348,2832],[-1,0]],[[2347,2832],[-1,5]],[[2346,2837],[-3,14]],[[2485,2894],[-2,-18],[-2,-34],[-2,-10]],[[2479,2832],[-11,24]],[[2468,2856],[-2,20],[3,4],[0,31]],[[2642,2892],[-4,-2]],[[2638,2890],[-6,3],[-1,-4]],[[2631,2889],[0,7]],[[2752,2859],[2,-18],[-2,-20],[-7,7]],[[2745,2828],[0,36],[-5,1],[-5,23]],[[2468,2856],[-3,0],[0,-16],[-5,0]],[[2460,2840],[-1,32],[-1,0]],[[2689,2906],[-7,-28]],[[2682,2878],[-2,21]],[[2693,2904],[1,-6],[-1,-32],[0,-23],[-1,-19]],[[2692,2824],[-3,-14]],[[2689,2810],[-3,11]],[[2686,2821],[-1,37],[-3,20]],[[2365,2858],[0,-26]],[[2365,2832],[-17,0]],[[2712,2872],[2,-9]],[[2714,2863],[-7,-25]],[[2707,2838],[-2,8],[-6,-7],[-2,-19]],[[2697,2820],[-5,4]],[[2524,2853],[0,-12]],[[2524,2841],[-13,0]],[[2511,2841],[0,67]],[[2511,2841],[-3,0]],[[2508,2841],[-11,1]],[[2497,2842],[0,33]],[[2497,2842],[-12,-1],[0,-8]],[[2485,2833],[-6,-1]],[[2565,2864],[0,-40],[-4,0]],[[2561,2824],[-8,-1],[-3,8]],[[2550,2831],[0,24]],[[2686,2821],[-7,-10],[-1,8],[-4,-9]],[[2674,2810],[-3,35]],[[2671,2845],[0,25]],[[2631,2889],[-1,-40]],[[2630,2849],[1,-17]],[[2631,2832],[-5,-6]],[[2626,2826],[-5,5]],[[2621,2831],[0,59]],[[2621,2831],[-9,-1]],[[2612,2830],[-1,45]],[[1987,2781],[-9,0],[0,-16],[-8,-1],[0,-81],[0,-40]],[[1970,2643],[-9,0],[0,40],[0,81],[-3,0],[0,17],[-6,0],[0,32],[-5,0]],[[2638,2890],[0,-37]],[[2638,2853],[-8,-4]],[[2644,2892],[0,-47],[-2,-3]],[[2642,2842],[0,11],[-4,0]],[[2650,2879],[3,-20],[0,-13]],[[2653,2846],[-5,-20]],[[2648,2826],[-6,0]],[[2642,2826],[0,16]],[[2671,2845],[-2,11],[-6,-15]],[[2663,2841],[-2,48]],[[2663,2841],[-1,-5]],[[2662,2836],[-3,-10]],[[2659,2826],[-4,8],[-2,12]],[[2747,2761],[3,6]],[[2747,2761],[0,0]],[[2745,2828],[-1,-24],[1,-23]],[[2745,2781],[0,-18],[-4,10]],[[2741,2773],[-4,22],[-3,4]],[[2734,2799],[-3,24],[-5,36]],[[2726,2859],[-3,-13],[-2,-22],[-4,-17]],[[2717,2807],[-3,56]],[[2541,2856],[-3,-27],[1,-39],[2,-12],[-2,-12]],[[2539,2766],[-1,1]],[[2538,2767],[-2,19],[-4,-7],[-1,33],[-3,28],[1,14]],[[2612,2830],[1,-23]],[[2613,2807],[-12,-3]],[[2601,2804],[0,70]],[[2601,2804],[-3,-6],[0,-19]],[[2598,2779],[-3,-3],[0,-16],[-3,0]],[[2592,2760],[0,49],[-3,0]],[[2589,2809],[0,62]],[[2589,2809],[-10,0]],[[2579,2809],[-2,11],[-2,38]],[[2460,2840],[-3,-16],[1,-4],[0,-28]],[[2458,2792],[-7,0],[0,32],[1,32]],[[2346,2837],[-12,-1]],[[2334,2836],[0,21]],[[2579,2809],[-1,-9]],[[2578,2800],[-9,0],[0,-9],[-5,1]],[[2564,2792],[-3,0],[0,12]],[[2561,2804],[0,20]],[[2021,2668],[-7,0],[0,-25],[3,-15]],[[2017,2628],[-21,0]],[[1996,2628],[-1,153]],[[2717,2807],[1,-28]],[[2718,2779],[-5,-20]],[[2713,2759],[-8,30]],[[2705,2789],[0,8],[2,41]],[[2734,2799],[-2,-8]],[[2732,2791],[-1,-7],[-3,24],[-7,-36]],[[2721,2772],[-3,7]],[[2479,2832],[-3,-27],[-6,-14],[-5,-16]],[[2465,2775],[-3,-12]],[[2462,2763],[-4,20]],[[2458,2783],[0,9]],[[2381,2712],[-4,0]],[[2377,2712],[-1,16],[-4,4],[-4,-27],[-3,0]],[[2365,2705],[0,36]],[[2365,2741],[0,56]],[[2365,2797],[0,35]],[[2371,2858],[0,-14],[1,-16],[0,-40],[5,-55],[4,-21]],[[2380,2858],[2,-30],[0,-83],[2,0]],[[2384,2745],[-2,-33]],[[2382,2712],[-1,0]],[[2389,2777],[1,-24],[-2,-8],[-4,0]],[[2387,2858],[1,-56],[1,0],[0,-25]],[[2402,2810],[-3,0],[-2,-33]],[[2397,2777],[-8,0]],[[2402,2857],[0,-47]],[[2420,2803],[-6,-27],[-4,1]],[[2410,2777],[0,16],[-2,9],[-6,8]],[[2420,2856],[0,-53]],[[2334,2836],[0,-62]],[[2334,2774],[-9,8],[-3,14]],[[2322,2796],[-1,6]],[[2321,2802],[-1,45]],[[2458,2783],[-1,-9],[-3,1],[0,-24],[-3,0],[0,24],[-2,1]],[[2449,2776],[-3,12],[2,15],[-2,2],[0,19],[2,9],[-1,19],[-2,-16],[0,19]],[[2674,2810],[0,-10]],[[2674,2800],[-7,-23]],[[2667,2777],[-5,59]],[[2438,2856],[-2,-22],[-3,-20],[-1,-22]],[[2432,2792],[-4,-21],[-4,-9]],[[2424,2762],[0,31],[-4,10]],[[2550,2831],[-2,-8],[0,-33],[-1,0],[0,-32]],[[2547,2758],[-6,0],[-2,8]],[[2443,2855],[-3,-27],[0,-20],[-3,-31]],[[2437,2777],[-4,0],[-1,15]],[[2253,2855],[0,-83]],[[2253,2772],[0,-9]],[[2253,2763],[-12,1]],[[2241,2764],[-2,0]],[[2239,2764],[0,82]],[[2449,2776],[-1,-3]],[[2448,2773],[-2,-5],[-9,0]],[[2437,2768],[0,9]],[[2267,2853],[0,-81]],[[2267,2772],[-2,0]],[[2265,2772],[-12,0]],[[2642,2826],[-3,-29]],[[2639,2797],[-2,11]],[[2637,2808],[-3,5],[-3,19]],[[2538,2767],[-5,-18],[-1,-11],[3,-12]],[[2535,2726],[-13,0]],[[2522,2726],[1,50]],[[2523,2776],[1,65]],[[2282,2852],[0,-82]],[[2282,2770],[-2,1]],[[2280,2771],[-13,1]],[[2296,2851],[0,-31]],[[2296,2820],[0,-50]],[[2296,2770],[-14,0]],[[2302,2825],[0,-5],[-6,0]],[[2321,2802],[-6,10],[-3,12]],[[2181,2848],[0,-82]],[[2181,2766],[-15,0]],[[2166,2766],[0,82]],[[2095,2668],[-7,0]],[[2088,2668],[-1,0]],[[2087,2668],[-23,0]],[[2195,2847],[0,-81]],[[2195,2766],[-14,0]],[[2166,2766],[0,0]],[[2166,2766],[-14,0]],[[2152,2766],[0,81]],[[2152,2766],[-14,0]],[[2138,2766],[-1,81]],[[2138,2766],[-1,0]],[[2137,2766],[-23,-1]],[[2210,2846],[0,-82]],[[2210,2764],[-1,0]],[[2209,2764],[-14,2]],[[2224,2846],[0,-82]],[[2224,2764],[0,0]],[[2224,2764],[-14,0]],[[2239,2764],[-15,0]],[[2705,2789],[-4,-8]],[[2701,2781],[-2,11],[-2,28]],[[2659,2826],[-3,-34]],[[2656,2792],[-3,5]],[[2653,2797],[-3,9],[-2,20]],[[2508,2841],[0,-65]],[[2508,2776],[-11,0]],[[2497,2776],[0,66]],[[2497,2776],[0,0]],[[2497,2776],[-12,0],[0,10]],[[2485,2786],[0,47]],[[2523,2776],[-15,0]],[[2347,2832],[0,-16]],[[2347,2816],[0,-26]],[[2347,2790],[-8,-22]],[[2339,2768],[-5,6]],[[2667,2777],[-8,-25]],[[2659,2752],[-1,32],[-2,8]],[[2637,2808],[-1,-6],[-2,-29],[-1,0]],[[2633,2773],[-6,-5]],[[2627,2768],[-1,-3]],[[2626,2765],[0,12]],[[2626,2777],[0,49]],[[2365,2797],[-3,9],[-1,-8],[-3,10],[-2,-11],[-4,0],[-5,19]],[[2485,2786],[-1,-8]],[[2484,2778],[-2,-1],[-6,-34]],[[2476,2743],[-5,0],[0,16],[-6,0],[0,16]],[[2561,2804],[-1,-25],[-2,-20],[-8,-1],[0,-32],[-2,-1]],[[2548,2725],[-1,0],[0,33]],[[2626,2777],[-11,4]],[[2615,2781],[-2,26]],[[2653,2797],[0,0]],[[2653,2797],[-1,0],[-7,-30]],[[2645,2767],[-3,27],[-3,3]],[[2308,2824],[0,-89]],[[2308,2735],[-10,0]],[[2298,2735],[-2,35]],[[2701,2781],[-1,-12]],[[2700,2769],[-3,-4],[-3,-31],[0,-6]],[[2694,2728],[0,-1]],[[2694,2727],[-3,-4],[-2,11]],[[2689,2734],[1,16],[-3,11],[-4,3]],[[2683,2764],[5,25],[1,21]],[[2322,2796],[0,-38],[4,-24]],[[2326,2734],[-18,1]],[[2683,2764],[-1,18],[-5,20],[-3,-2]],[[2365,2741],[-8,-11],[-4,12]],[[2353,2742],[-3,0]],[[2350,2742],[-3,5],[0,43]],[[1970,2643],[0,-15]],[[1970,2628],[0,-84],[-23,0]],[[1947,2544],[0,204]],[[2592,2760],[1,-8],[-4,-6]],[[2589,2746],[-5,4],[-1,10],[-5,-15]],[[2578,2745],[0,55]],[[2410,2777],[0,-17]],[[2410,2760],[-5,1],[0,-8],[-5,0]],[[2400,2753],[-2,0],[-1,24]],[[2732,2791],[1,-16]],[[2733,2775],[0,-21]],[[2733,2754],[0,-9]],[[2733,2745],[0,0]],[[2733,2745],[0,-2]],[[2733,2743],[0,-4]],[[2733,2739],[-5,-25],[2,-22]],[[2730,2692],[0,-10],[-5,8]],[[2725,2690],[0,20]],[[2725,2710],[0,21],[-4,41]],[[2645,2767],[0,-4]],[[2645,2763],[-3,1],[-4,-27]],[[2638,2737],[-4,8]],[[2634,2745],[-1,28]],[[2615,2781],[2,-18]],[[2617,2763],[-1,-7],[-8,-1],[0,-10],[-3,-1]],[[2605,2744],[-1,17],[-6,18]],[[2564,2792],[0,-23],[3,-37]],[[2567,2732],[-3,-22],[0,-33]],[[2564,2677],[-8,0],[-2,18],[-6,23]],[[2548,2718],[0,7]],[[2424,2762],[-2,-23],[-1,-19]],[[2421,2720],[-8,0]],[[2413,2720],[-3,24],[0,16]],[[2681,2726],[-5,-21]],[[2676,2705],[-3,-9],[-4,51]],[[2669,2747],[-2,30]],[[2683,2764],[-3,-34],[1,-4]],[[2578,2745],[-3,-13]],[[2575,2732],[-6,12],[-2,-12]],[[2736,2719],[2,-11],[-4,-19],[2,30]],[[2733,2739],[2,-16],[-2,-26],[-3,-5]],[[2738,2761],[3,-1],[3,-16],[-3,-10],[-2,-18],[-1,20],[0,25]],[[2736,2768],[2,-3],[0,-41],[-3,14],[-1,19],[2,11]],[[2741,2773],[0,-11],[-5,8],[-2,-10],[-1,15]],[[2649,2755],[-4,8]],[[2653,2797],[0,-30],[-4,-12]],[[2659,2752],[0,-9]],[[2659,2743],[-3,-21]],[[2656,2722],[-7,0]],[[2649,2722],[0,33]],[[2339,2768],[0,-31]],[[2339,2737],[0,-43]],[[2339,2694],[-13,-1]],[[2326,2693],[-1,18],[1,23]],[[2437,2768],[0,-24]],[[2437,2744],[-5,0],[-3,-13],[-1,-17],[-3,-18]],[[2425,2696],[-2,3],[-2,21]],[[2350,2742],[-2,-5],[-9,0]],[[2713,2759],[1,-17],[3,-29]],[[2717,2713],[-10,-16]],[[2707,2697],[-1,15],[-4,6]],[[2702,2718],[1,27],[-3,24]],[[2497,2776],[0,-66]],[[2497,2710],[-12,-1]],[[2485,2709],[0,25],[-1,44]],[[2462,2763],[-1,-6],[-1,-26],[-2,3],[-1,-24]],[[2457,2710],[-1,-13],[-4,-14],[-3,6]],[[2449,2689],[0,2]],[[2449,2691],[-1,0]],[[2448,2691],[-3,2],[1,14]],[[2446,2707],[4,3],[2,21],[-2,5],[0,16],[-3,1],[1,20]],[[2626,2765],[-2,-18],[-6,-8]],[[2618,2739],[-1,24]],[[1996,2628],[-26,0]],[[2725,2710],[-2,2],[-5,-26]],[[2718,2686],[-1,27]],[[2605,2744],[0,-32]],[[2605,2712],[-12,-1],[-1,8]],[[2592,2719],[-3,27]],[[2485,2709],[0,-32]],[[2485,2677],[-14,0]],[[2471,2677],[0,23],[5,43]],[[2400,2753],[0,-41],[-1,-16]],[[2399,2696],[-3,0]],[[2396,2696],[-7,0]],[[2389,2696],[-1,16],[-6,0]],[[2669,2747],[-1,5],[-5,-33]],[[2663,2719],[-4,24]],[[2522,2726],[0,-15]],[[2522,2711],[-14,-1]],[[2508,2710],[0,66]],[[2508,2710],[-11,0]],[[2471,2677],[-13,0]],[[2458,2677],[-1,33]],[[2449,2691],[0,0]],[[2446,2707],[-10,-1]],[[2436,2706],[-1,18],[2,20]],[[2634,2745],[-1,-46]],[[2633,2699],[0,-6]],[[2633,2693],[-3,0],[-3,19]],[[2627,2712],[0,0]],[[2627,2712],[0,56]],[[2702,2718],[-2,2]],[[2700,2720],[-6,8]],[[2265,2772],[0,-44]],[[2265,2728],[-4,-1],[-5,-15]],[[2256,2712],[-3,51]],[[2280,2771],[0,-53]],[[2280,2718],[-11,-18]],[[2269,2700],[-1,-7],[-3,13]],[[2265,2706],[0,22]],[[2298,2735],[2,-6]],[[2300,2729],[-14,-47]],[[2286,2682],[-2,-4],[-4,40]],[[2548,2718],[-1,-2],[0,-23],[-3,0],[0,-24],[-1,-2]],[[2543,2667],[-12,-1]],[[2531,2666],[-1,12],[2,6],[1,37],[2,5]],[[2627,2712],[-8,-1]],[[2619,2711],[1,6],[-3,12],[1,10]],[[2166,2766],[0,-82]],[[2166,2684],[-2,0]],[[2164,2684],[-12,0]],[[2152,2684],[0,82]],[[2181,2766],[-1,-82]],[[2180,2684],[-4,0]],[[2176,2684],[-10,0]],[[2195,2766],[0,-82]],[[2195,2684],[-3,0]],[[2192,2684],[-12,0]],[[2152,2684],[-3,0]],[[2149,2684],[-12,0]],[[2137,2684],[0,82]],[[2137,2684],[-2,0]],[[2135,2684],[-14,0]],[[2121,2684],[-7,0]],[[2649,2722],[-3,-7],[-2,-15]],[[2644,2700],[-4,11]],[[2640,2711],[-2,12],[0,14]],[[2209,2764],[0,-81]],[[2209,2683],[-2,0]],[[2207,2683],[-12,1]],[[2241,2764],[1,-40],[-3,-7]],[[2239,2717],[-10,-34]],[[2229,2683],[-5,0]],[[2224,2683],[0,81]],[[2256,2712],[3,-28]],[[2259,2684],[-4,-13]],[[2255,2671],[-6,-18]],[[2249,2653],[-1,11],[-2,-7],[-7,60]],[[2224,2683],[-3,0]],[[2221,2683],[-12,0]],[[1908,2748],[0,-130]],[[1908,2618],[-20,-1],[0,-38],[-6,0],[0,-18]],[[1882,2561],[-55,114]],[[2689,2734],[-6,-10]],[[2683,2724],[-2,2]],[[2619,2711],[-4,-18],[1,-13]],[[2616,2680],[-4,0],[-2,16],[-4,-1]],[[2606,2695],[-1,17]],[[2592,2719],[-3,-4],[0,-37]],[[2589,2678],[0,-16],[-5,0]],[[2584,2662],[-3,0],[0,16],[-3,0]],[[2578,2678],[0,36],[-3,18]],[[2413,2720],[0,-25]],[[2413,2695],[-14,1]],[[2676,2705],[-1,-12]],[[2675,2693],[-8,-43]],[[2667,2650],[-2,14],[-1,24]],[[2664,2688],[1,13],[-2,18]],[[2640,2711],[0,-13],[-7,1]],[[1947,2544],[-40,0]],[[1907,2544],[1,74]],[[2578,2678],[-1,-16]],[[2577,2662],[-12,-1]],[[2565,2661],[-1,16]],[[2353,2742],[-3,-36],[0,-43],[2,0]],[[2352,2663],[2,-24]],[[2354,2639],[-14,0]],[[2340,2639],[-1,0],[0,55]],[[2436,2706],[0,-21],[-2,-39]],[[2434,2646],[-1,17],[-5,-19],[-3,19]],[[2425,2663],[0,33]],[[2664,2688],[-8,2]],[[2656,2690],[0,32]],[[2365,2705],[1,-41]],[[2366,2664],[-14,-1]],[[2326,2693],[0,-9]],[[2326,2684],[-17,-15]],[[2309,2669],[0,1]],[[2309,2670],[-2,28],[-7,31]],[[2687,2662],[-1,-2]],[[2686,2660],[-2,11],[-1,53]],[[2689,2734],[-2,-72]],[[2694,2727],[2,-28],[-1,-47]],[[2695,2652],[-6,10]],[[2689,2662],[-2,0]],[[2377,2712],[2,-8],[0,-16],[5,-32]],[[2384,2656],[-2,-4],[0,-13]],[[2382,2639],[-12,0]],[[2370,2639],[-4,25]],[[2309,2670],[-12,-40]],[[2297,2630],[-7,4]],[[2290,2634],[-4,48]],[[2265,2706],[-6,-22]],[[2700,2720],[1,-37],[6,-6]],[[2707,2677],[-1,-6]],[[2706,2671],[-4,-42]],[[2702,2629],[-3,7]],[[2699,2636],[-1,14],[-3,2]],[[2531,2666],[-2,-33],[2,-21]],[[2531,2612],[-10,0]],[[2521,2612],[-1,36]],[[2520,2648],[2,63]],[[2686,2660],[-3,-7]],[[2683,2653],[-3,16],[-4,14],[-1,10]],[[2606,2695],[-1,-24],[-4,-3],[-2,-22]],[[2599,2646],[-4,0],[0,16],[-2,0],[-1,15],[-3,1]],[[2656,2690],[0,-17]],[[2656,2673],[-10,1]],[[2646,2674],[-2,26]],[[2707,2697],[2,-12]],[[2709,2685],[-2,-8]],[[2425,2663],[-3,-8]],[[2422,2655],[-9,0]],[[2413,2655],[0,40]],[[2565,2661],[-1,0],[0,-24]],[[2564,2637],[-17,-1]],[[2547,2636],[-3,0],[-1,31]],[[2290,2634],[-5,-20]],[[2285,2614],[-3,29],[-7,-22]],[[2275,2621],[0,16],[-5,19],[2,8],[-3,6],[0,30]],[[2249,2653],[1,-14],[-8,-30]],[[2242,2609],[-1,8],[-5,-5]],[[2236,2612],[-7,71]],[[2449,2689],[-1,-18],[-3,-10],[-2,-17]],[[2443,2644],[-3,-5],[1,-17]],[[2441,2622],[-2,-3]],[[2439,2619],[-4,3]],[[2435,2622],[-1,24]],[[2718,2686],[4,-38]],[[2722,2648],[3,-7],[-1,-24],[-4,16]],[[2720,2633],[-3,25],[-5,5],[-3,22]],[[2389,2696],[2,-33],[-4,0],[0,-13],[-3,6]],[[2725,2640],[3,-6],[-3,-18],[-1,18],[1,6]],[[2729,2681],[2,-11],[-2,-10],[0,21]],[[2725,2690],[3,-7],[0,-22],[3,-10],[-2,-9],[-4,14],[-3,-8]],[[2633,2693],[0,-31]],[[2633,2662],[-1,-9],[-4,0]],[[2628,2653],[-1,0]],[[2627,2653],[0,59]],[[2627,2653],[-7,1]],[[2620,2654],[-5,13]],[[2615,2667],[1,13]],[[2646,2674],[1,-23]],[[2647,2651],[-11,2],[0,-8]],[[2636,2645],[-3,17]],[[2520,2648],[-4,-6],[-8,-6]],[[2508,2636],[0,74]],[[2458,2677],[-1,-49]],[[2457,2628],[-7,14],[-7,2]],[[2508,2636],[-1,-1]],[[2507,2635],[-10,-4]],[[2497,2631],[0,79]],[[2497,2631],[-3,-1]],[[2494,2630],[-7,-3]],[[2487,2627],[0,50],[-2,0]],[[2275,2621],[-9,-30]],[[2266,2591],[-3,23],[-2,-7]],[[2261,2607],[-6,64]],[[2683,2653],[-5,-20]],[[2678,2633],[-5,-6]],[[2673,2627],[-5,13]],[[2668,2640],[-1,10]],[[2413,2655],[-1,-25]],[[2412,2630],[-7,0],[0,-16],[-10,0]],[[2395,2614],[1,27],[2,18],[-2,37]],[[2395,2614],[2,-16],[3,-5],[2,-15]],[[2402,2578],[-5,-28],[-2,-4]],[[2395,2546],[-7,4]],[[2388,2550],[0,32],[-3,0],[0,33],[-3,0],[0,24]],[[2615,2667],[-2,-25],[0,-15]],[[2613,2627],[1,-3]],[[2614,2624],[-3,-11],[-5,0],[0,-16]],[[2606,2597],[-10,0]],[[2596,2597],[3,31],[0,18]],[[2340,2639],[-1,-11],[1,-28],[2,-20]],[[2342,2580],[-4,-19]],[[2338,2561],[-2,8],[-2,18],[-3,5]],[[2331,2592],[0,12],[-4,20],[-1,15],[0,45]],[[2668,2640],[-8,0]],[[2660,2640],[-4,1]],[[2656,2641],[0,32]],[[2725,2611],[-1,-25],[-1,20],[2,5]],[[2719,2604],[-4,8]],[[2715,2612],[-4,12],[-4,21],[1,18],[-2,8]],[[2720,2633],[2,-14],[1,-11],[-4,-4]],[[2176,2684],[0,-72]],[[2176,2612],[-1,-25],[-11,-1]],[[2164,2586],[0,17]],[[2164,2603],[0,81]],[[2164,2603],[-15,0]],[[2149,2603],[0,81]],[[2149,2603],[-14,0]],[[2135,2603],[0,81]],[[2135,2603],[-1,0]],[[2134,2603],[-12,0]],[[2122,2603],[-1,0]],[[2121,2603],[0,81]],[[2121,2603],[-15,0]],[[2106,2603],[0,65]],[[2192,2684],[0,-73]],[[2192,2611],[-16,1]],[[2331,2592],[-11,-9],[-2,-7]],[[2318,2576],[0,28],[-2,-7]],[[2316,2597],[-2,26],[-3,6],[0,16],[-2,24]],[[2221,2683],[0,-114]],[[2221,2569],[-3,-11],[-3,12],[-2,-9],[-3,13]],[[2210,2574],[-3,15]],[[2207,2589],[0,94]],[[2207,2589],[-11,1]],[[2196,2590],[-4,0],[0,21]],[[2236,2612],[-2,-2],[-1,-14],[-6,-24]],[[2227,2572],[-3,-4]],[[2224,2568],[-3,1]],[[2596,2597],[-1,0]],[[2595,2597],[-10,0]],[[2585,2597],[0,32],[-1,0],[0,33]],[[2585,2597],[-1,-33]],[[2584,2564],[-2,3],[-1,13],[-3,-14],[0,14],[-3,0]],[[2575,2580],[0,24],[2,0],[0,58]],[[2471,2677],[3,-35],[0,-20]],[[2474,2622],[-3,-6]],[[2471,2616],[-1,-4],[-13,0]],[[2457,2612],[0,16]],[[2487,2627],[-2,-1]],[[2485,2626],[-7,-2]],[[2478,2624],[-4,-2]],[[2656,2641],[0,-9],[-5,0]],[[2651,2632],[-4,8]],[[2647,2640],[0,11]],[[2247,2559],[-5,50]],[[2261,2607],[-11,-39]],[[2250,2568],[-3,-9]],[[2715,2612],[-2,-23],[-3,-7]],[[2710,2582],[-8,47]],[[2316,2597],[-12,-38]],[[2304,2559],[-7,71]],[[2087,2668],[-2,-167]],[[2085,2501],[-23,-82]],[[2062,2419],[0,32],[0,217]],[[2062,2419],[-2,-6]],[[2060,2413],[-6,33],[-5,9],[-5,25],[-1,18],[-5,15],[-3,23],[-3,18]],[[2032,2554],[0,115]],[[2032,2554],[-6,17],[-5,47],[-4,10]],[[2106,2603],[-8,0]],[[2098,2603],[-2,18],[-3,4],[-1,22],[-1,-3],[-3,24]],[[2098,2603],[3,-4],[2,-38],[5,0],[2,-10],[5,0]],[[2115,2551],[-16,-113]],[[2099,2438],[-14,63]],[[2620,2654],[0,-27],[-2,0]],[[2618,2627],[-5,0]],[[2547,2636],[0,-24],[-1,0],[0,-27],[-2,-7],[1,-15],[-3,-6],[-2,-20]],[[2540,2537],[-5,-19]],[[2535,2518],[-1,12],[3,24],[-2,-2],[1,21],[-5,21],[0,18]],[[2370,2639],[2,-26],[-1,-22]],[[2371,2591],[-4,-3]],[[2367,2588],[-3,9],[-9,7]],[[2355,2604],[-1,35]],[[2435,2622],[-4,-3],[-1,-18],[-3,-2],[0,-35],[-1,-16],[1,-17]],[[2427,2531],[-3,6],[-2,-13],[0,19]],[[2422,2543],[0,112]],[[2689,2662],[0,-24],[-3,0],[0,-24]],[[2686,2614],[-3,-7]],[[2683,2607],[-5,0],[0,26]],[[2636,2645],[2,-9],[-1,-38]],[[2637,2598],[-4,0]],[[2633,2598],[-3,0]],[[2630,2598],[-2,28],[0,27]],[[2699,2636],[-2,-10],[0,-56]],[[2697,2570],[-2,11]],[[2695,2581],[-9,33]],[[2575,2580],[-5,-1]],[[2570,2579],[-4,1],[-2,20],[0,22]],[[2564,2622],[0,15]],[[2630,2598],[-8,-1]],[[2622,2597],[-3,0],[-1,30]],[[2422,2543],[-2,1]],[[2420,2544],[-3,27]],[[2417,2571],[-2,3],[-3,24],[0,32]],[[2647,2640],[-2,-8],[0,-29]],[[2645,2603],[-1,-5],[-7,0]],[[2521,2563],[-11,0]],[[2510,2563],[-3,0]],[[2507,2563],[0,72]],[[2521,2612],[0,-49]],[[2457,2612],[0,-16]],[[2457,2596],[-11,-1]],[[2446,2595],[-4,12],[-1,15]],[[2271,2541],[-5,50]],[[2285,2614],[3,-35]],[[2288,2579],[-13,-45]],[[2275,2534],[-2,-7],[-2,14]],[[2660,2640],[0,-17]],[[2660,2623],[-1,-31]],[[2659,2592],[-4,-4]],[[2655,2588],[-4,10],[0,34]],[[2673,2627],[0,-20]],[[2673,2607],[-9,2],[0,14],[-4,0]],[[2655,2588],[0,-45]],[[2655,2543],[-10,1]],[[2645,2544],[0,20]],[[2645,2564],[0,39]],[[2355,2604],[3,-12],[-1,-68]],[[2357,2524],[-3,16],[-2,18],[-6,9],[-4,13]],[[2388,2550],[-5,0],[-1,-17],[-3,0],[0,-17]],[[2379,2516],[-2,-1]],[[2377,2515],[-2,23],[-1,40],[-3,13]],[[2710,2582],[1,-16]],[[2711,2566],[-3,-23]],[[2708,2543],[-8,8]],[[2700,2551],[-1,15],[-2,4]],[[2564,2622],[-4,-6],[-2,-14],[-1,-24],[-7,-48]],[[2550,2530],[-6,-3]],[[2544,2527],[-4,10]],[[2507,2563],[-5,0]],[[2502,2563],[-7,0]],[[2495,2563],[-1,67]],[[2294,2523],[-6,56]],[[2304,2559],[-2,-11]],[[2302,2548],[-8,-25]],[[2683,2607],[1,-38]],[[2684,2569],[-1,-19]],[[2683,2550],[-5,0],[-1,7],[-8,3]],[[2669,2560],[0,10]],[[2669,2570],[4,37]],[[2417,2571],[-13,-16],[-2,23]],[[2495,2563],[-2,0]],[[2493,2563],[-4,0]],[[2489,2563],[0,19],[-4,13],[0,31]],[[2622,2597],[0,-22]],[[2622,2575],[-6,-3],[0,6]],[[2616,2578],[-2,46]],[[2616,2578],[-1,-39]],[[2615,2539],[-9,2]],[[2606,2541],[0,56]],[[2489,2563],[-2,0]],[[2487,2563],[-4,0],[0,-9],[-4,1]],[[2479,2555],[-1,69]],[[2669,2570],[-5,1]],[[2664,2571],[-5,21]],[[2439,2619],[0,-22],[-3,5],[2,-15],[-2,-6],[0,-31],[-2,7],[2,-23],[-4,-6],[1,-11]],[[2433,2517],[-1,-13],[2,-10],[-2,-12]],[[2432,2482],[-1,-6]],[[2431,2476],[1,5]],[[2432,2481],[-2,9]],[[2430,2490],[1,27],[-4,14]],[[2479,2555],[-2,-11]],[[2477,2544],[-6,3]],[[2471,2547],[0,69]],[[2570,2579],[1,-28],[-1,-5],[0,-28]],[[2570,2518],[-2,13],[-18,-1]],[[2446,2595],[-1,-49]],[[2445,2546],[-2,5],[-6,-10],[-1,-17],[-3,-7]],[[1907,2544],[-17,0],[-8,17]],[[2247,2559],[-8,-34]],[[2239,2525],[-2,7],[-2,26],[-4,1],[-4,13]],[[2471,2547],[0,0]],[[2471,2547],[-9,0]],[[2462,2547],[-2,0]],[[2460,2547],[0,49],[-3,0]],[[2695,2581],[-4,-19],[-2,-2]],[[2689,2560],[-5,9]],[[2257,2495],[-7,73]],[[2271,2541],[-14,-46]],[[2196,2590],[0,-92]],[[2196,2498],[-16,0]],[[2180,2498],[0,81],[-16,1]],[[2164,2580],[0,6]],[[2535,2518],[-1,-6]],[[2534,2512],[-1,-3],[-9,0],[-2,-6]],[[2522,2503],[-1,60]],[[2720,2539],[-1,0]],[[2720,2539],[0,0]],[[2716,2543],[-1,1]],[[2716,2543],[0,0]],[[2723,2582],[-2,-30],[-1,19],[3,11]],[[2719,2604],[3,-5],[1,-10],[-4,-5],[0,-35],[2,-7],[-6,3]],[[2715,2545],[-4,21]],[[2318,2576],[2,-34],[-2,-10],[-1,-33]],[[2317,2499],[-6,0],[-7,-22]],[[2304,2477],[-3,53],[1,18]],[[2149,2603],[0,-106]],[[2149,2497],[-14,1]],[[2135,2498],[-1,105]],[[2135,2498],[-3,0]],[[2132,2498],[-1,20],[-7,25],[-2,-6]],[[2122,2537],[0,66]],[[2367,2588],[0,-19],[-2,-11],[0,-51]],[[2365,2507],[-2,-7]],[[2363,2500],[-6,24]],[[2164,2580],[-1,-83]],[[2163,2497],[-14,0]],[[2122,2537],[-2,-5],[-5,19]],[[2645,2564],[-4,0]],[[2641,2564],[-8,-1]],[[2633,2563],[0,35]],[[2633,2563],[-6,0]],[[2627,2563],[-4,0],[-1,12]],[[2606,2541],[-2,-13],[-5,4],[-2,-14]],[[2597,2518],[-2,0]],[[2595,2518],[0,79]],[[2595,2518],[-11,0]],[[2584,2518],[0,46]],[[2460,2547],[-10,0],[-3,-5]],[[2447,2542],[-2,4]],[[2377,2515],[-8,-4]],[[2369,2511],[-4,-4]],[[2664,2571],[-3,-24]],[[2661,2547],[-2,-4]],[[2659,2543],[-4,0]],[[2338,2561],[2,-7]],[[2340,2554],[-14,-61]],[[2326,2493],[-5,-24]],[[2321,2469],[-1,10],[0,18],[-3,2]],[[2210,2574],[0,-76]],[[2210,2498],[-14,0]],[[2700,2551],[1,-12],[-6,-19],[-2,4]],[[2693,2524],[-3,13],[-1,23]],[[2584,2518],[0,-37]],[[2584,2481],[-6,0]],[[2578,2481],[-8,0]],[[2570,2481],[0,37]],[[2180,2498],[-8,-1]],[[2172,2497],[-9,0]],[[2363,2500],[-9,-12]],[[2354,2488],[-3,5]],[[2351,2493],[-8,16]],[[2343,2509],[-2,36],[-1,9]],[[2627,2563],[0,-33]],[[2627,2530],[-8,-1],[0,-34]],[[2619,2495],[-3,1]],[[2616,2496],[-2,17],[1,26]],[[2287,2502],[-6,-23]],[[2281,2479],[-6,55]],[[2294,2523],[-7,-21]],[[2420,2544],[-4,-3],[0,-66],[-2,0]],[[2414,2475],[-3,7],[-3,-17],[-3,-3]],[[2405,2462],[-6,-1]],[[2399,2461],[0,68],[-4,17]],[[2224,2568],[0,-97]],[[2224,2471],[-11,0]],[[2213,2471],[-3,0],[0,27]],[[2239,2525],[1,-27],[2,-11]],[[2242,2487],[0,-20]],[[2242,2467],[-14,0]],[[2228,2467],[-4,4]],[[2669,2560],[3,-26],[0,-18]],[[2672,2516],[-4,-7],[-1,-22]],[[2667,2487],[-2,0]],[[2665,2487],[-1,40],[-3,20]],[[2693,2524],[2,-10],[0,-16],[2,-14]],[[2697,2484],[-8,0],[0,-40],[8,-2],[-2,-41]],[[2695,2401],[-6,3]],[[2689,2404],[0,44],[-2,0],[0,27],[-3,10],[-2,31]],[[2682,2516],[-1,18],[2,-1],[0,17]],[[2257,2495],[0,-7]],[[2257,2488],[-15,-1]],[[2720,2539],[1,-17],[-3,-15],[-1,12],[1,21],[1,-1]],[[2715,2545],[0,-1]],[[2716,2543],[2,-8],[-2,-20],[1,-26],[-4,8]],[[2713,2497],[-6,16]],[[2707,2513],[1,30]],[[2641,2564],[-2,-16],[-3,-9],[-1,-12],[-3,-16],[-1,-15]],[[2631,2496],[-1,1]],[[2630,2497],[0,32],[-3,1]],[[2645,2544],[0,-48]],[[2645,2496],[-3,0]],[[2642,2496],[-7,1]],[[2635,2497],[-4,-1]],[[2522,2503],[0,-22]],[[2522,2481],[-12,0]],[[2510,2481],[0,82]],[[2502,2563],[0,-98]],[[2502,2465],[-6,0]],[[2496,2465],[0,19]],[[2496,2484],[0,62],[-3,0],[0,17]],[[2496,2484],[-9,-2]],[[2487,2482],[0,81]],[[2510,2481],[-1,-16]],[[2509,2465],[-7,0]],[[2487,2482],[-2,0]],[[2485,2482],[-3,0]],[[2482,2482],[0,14],[-2,0],[-3,19],[0,29]],[[2682,2516],[-8,0]],[[2674,2516],[-2,0]],[[2343,2509],[-3,-19],[-7,-41]],[[2333,2449],[-2,15],[-2,-8]],[[2329,2456],[-2,-1],[-1,38]],[[2132,2498],[6,-16],[5,-2],[4,-15],[2,-39],[1,-9]],[[2150,2417],[-11,1],[0,-11],[-5,0],[0,-59],[-7,0],[0,-43]],[[2127,2305],[-24,115]],[[2103,2420],[-4,18]],[[2707,2513],[-4,-22]],[[2703,2491],[-4,5],[-2,-12]],[[2447,2542],[1,-8],[0,-52]],[[2448,2482],[-3,0]],[[2445,2482],[-13,0]],[[2399,2461],[-4,-2]],[[2395,2459],[-13,1],[-3,-3]],[[2379,2457],[1,30],[-1,29]],[[2304,2477],[-3,-11],[-3,-32],[-3,-9]],[[2295,2425],[-2,7]],[[2293,2432],[-1,18],[-2,14],[-1,26],[-2,12]],[[2665,2487],[-5,1]],[[2660,2488],[-3,8]],[[2657,2496],[2,24],[0,23]],[[2462,2547],[1,-65]],[[2463,2482],[-1,0]],[[2462,2482],[-7,0]],[[2455,2482],[-7,0]],[[2471,2547],[0,-65]],[[2471,2482],[-3,0]],[[2468,2482],[-5,0]],[[2482,2482],[-11,0]],[[2430,2490],[-1,-5]],[[2429,2485],[-2,-9],[0,-22]],[[2427,2454],[-11,0]],[[2416,2454],[-2,21]],[[2657,2496],[0,-8],[-5,1]],[[2652,2489],[-7,1],[0,6]],[[2281,2479],[-6,-18],[-1,-25]],[[2274,2436],[-9,22],[-5,6]],[[2260,2464],[-3,24]],[[2544,2527],[1,-46]],[[2545,2481],[-1,-24],[3,-23],[3,-13],[-1,-35]],[[2549,2386],[2,-7],[-5,-33],[-8,-8],[-4,1],[7,10],[-5,23],[0,25],[-1,32],[-2,5]],[[2533,2434],[0,5]],[[2533,2439],[0,3]],[[2533,2442],[2,49],[-1,21]],[[2616,2496],[1,-14]],[[2617,2482],[-13,-1]],[[2604,2481],[0,38],[-7,-1]],[[2570,2481],[-3,0]],[[2567,2481],[-10,1]],[[2557,2482],[-12,-1]],[[2630,2497],[-5,-2]],[[2625,2495],[-6,0]],[[2604,2481],[-1,0]],[[2603,2481],[-15,0]],[[2588,2481],[-4,0]],[[2379,2457],[-2,-35],[-3,-26],[1,-18],[-2,-8]],[[2373,2370],[0,-11],[1,-18]],[[2374,2341],[-5,0]],[[2369,2341],[1,131],[-1,39]],[[2689,2404],[-1,0]],[[2688,2404],[-3,2]],[[2685,2406],[-1,21],[-5,5],[-2,19],[-3,6]],[[2674,2457],[0,59]],[[2674,2457],[-2,-3]],[[2672,2454],[0,18],[-4,1],[-1,14]],[[2533,2442],[-2,-53],[0,-23],[-8,2]],[[2523,2368],[-1,65]],[[2522,2433],[0,48]],[[2717,2469],[-2,-37],[-1,28],[3,9]],[[2713,2497],[3,-25],[-1,-41],[-3,-2]],[[2712,2429],[-9,21]],[[2703,2450],[0,39],[0,2]],[[2369,2341],[-6,0]],[[2363,2341],[1,19],[-1,16],[1,18]],[[2364,2394],[1,21],[-2,8],[-4,62],[-5,3]],[[2351,2493],[-3,-9],[3,-90]],[[2351,2394],[0,-7],[-5,0]],[[2346,2387],[-3,1]],[[2343,2388],[0,8],[-4,7],[-2,19],[-2,-3],[0,22],[-2,8]],[[2293,2432],[-9,-33]],[[2284,2399],[-6,-18]],[[2278,2381],[-3,52],[-1,3]],[[2093,2372],[-3,0],[-30,41]],[[2103,2420],[-10,-48]],[[2321,2469],[-7,-13]],[[2314,2456],[-8,-7]],[[2306,2449],[-2,28]],[[2213,2471],[0,-43]],[[2213,2428],[-17,0]],[[2196,2428],[0,70]],[[2196,2428],[-24,-1]],[[2172,2427],[0,70]],[[2172,2427],[0,-78]],[[2172,2349],[-22,0]],[[2150,2349],[3,13],[-3,12],[3,26],[0,11],[-3,6]],[[2635,2497],[-1,-73]],[[2634,2424],[-13,4]],[[2621,2428],[3,33],[1,34]],[[2642,2496],[1,-31],[0,-44]],[[2643,2421],[-6,2]],[[2637,2423],[-3,1]],[[2660,2488],[1,-24],[2,-12],[-3,-4],[-1,-12],[4,-22]],[[2663,2414],[-7,3]],[[2656,2417],[-4,1]],[[2652,2418],[0,71]],[[2652,2418],[-7,3]],[[2645,2421],[-2,0]],[[2621,2428],[0,0]],[[2621,2428],[-4,54]],[[2703,2450],[-3,-14],[-1,-18],[2,-18],[-2,-37]],[[2699,2363],[-3,-1],[-1,11],[0,28]],[[2364,2394],[-13,0]],[[2329,2456],[-1,-67]],[[2328,2389],[-6,1],[-7,23]],[[2315,2413],[-1,43]],[[2441,2417],[0,1]],[[2441,2418],[-2,19],[-6,-2],[2,19],[-3,-2],[-1,24]],[[2445,2482],[-4,-65]],[[2432,2481],[-3,4]],[[2260,2464],[-4,-22],[-3,-30]],[[2253,2412],[-2,-37]],[[2251,2375],[-6,11]],[[2245,2386],[-2,35],[1,14],[0,16],[-2,16]],[[2672,2454],[-3,-14],[0,-28]],[[2669,2412],[-5,2]],[[2664,2414],[-1,0]],[[2663,2414],[0,0]],[[2441,2418],[-3,-27],[-2,-3]],[[2436,2388],[-6,0]],[[2430,2388],[-1,0]],[[2429,2388],[0,38],[-2,28]],[[2496,2465],[0,-49]],[[2496,2416],[-6,0],[0,-24],[-4,-11]],[[2486,2381],[-3,24],[-1,15]],[[2482,2420],[3,62]],[[2482,2420],[-4,-1],[-7,9]],[[2471,2428],[-3,54]],[[2416,2454],[1,-15],[-1,-38],[-6,-6],[-2,-10]],[[2408,2385],[-4,0]],[[2404,2385],[0,1]],[[2404,2386],[1,18],[0,58]],[[2621,2428],[-2,-20]],[[2619,2408],[-7,1],[0,-8],[-6,0]],[[2606,2401],[-1,0]],[[2605,2401],[0,41],[-5,8]],[[2600,2450],[3,31]],[[2471,2428],[0,-91]],[[2471,2337],[-1,2]],[[2470,2339],[-1,11],[-2,-1]],[[2467,2349],[-3,14],[-2,23],[0,31]],[[2462,2417],[0,65]],[[2564,2365],[0,0]],[[2564,2365],[0,0]],[[2556,2397],[1,-21],[-3,-16],[-5,-7],[1,17],[2,6],[-3,10]],[[2557,2482],[-3,-14],[-1,-36],[3,-35]],[[2567,2368],[-3,-3]],[[2564,2365],[3,4]],[[2567,2369],[0,-1]],[[2567,2481],[0,-110]],[[2567,2371],[-11,-10],[7,19],[-2,10],[-1,-11],[-3,25],[-1,-7]],[[2522,2433],[-13,0]],[[2509,2433],[0,32]],[[2462,2417],[-10,-1]],[[2452,2416],[2,14]],[[2454,2430],[0,41],[1,11]],[[2578,2370],[0,-4]],[[2578,2370],[0,0]],[[2578,2481],[0,-101]],[[2578,2380],[-1,11],[-4,-21],[-6,1]],[[2454,2430],[-11,-3],[-1,-10]],[[2442,2417],[-1,0]],[[2600,2450],[0,-16],[-6,9],[0,-17]],[[2594,2426],[-6,1],[0,54]],[[2594,2426],[-2,-12],[1,-25],[-3,-21]],[[2590,2368],[-1,-22]],[[2589,2346],[-11,20]],[[2578,2370],[8,-2],[-4,18],[-4,-6]],[[2306,2449],[-1,-44],[3,-31],[-2,-17]],[[2306,2357],[0,7],[-4,2]],[[2302,2366],[-1,30],[-4,15],[-3,4],[1,10]],[[2228,2467],[0,-79]],[[2228,2388],[-10,1]],[[2218,2389],[-5,0],[0,39]],[[2245,2386],[-7,3]],[[2238,2389],[-10,-1]],[[2509,2433],[0,-11]],[[2509,2422],[-10,0],[-3,-6]],[[2278,2381],[-5,-10]],[[2273,2371],[-1,3]],[[2272,2374],[-6,15],[-4,-13],[-3,8],[-3,29],[-3,-1]],[[2343,2388],[-9,-28]],[[2334,2360],[-4,11],[-2,18]],[[2404,2386],[-4,0],[0,-9],[-10,-3]],[[2390,2374],[1,33],[4,0],[0,52]],[[2390,2374],[0,-3]],[[2390,2371],[-7,-1],[0,17],[-2,0],[0,-17],[-8,0]],[[2685,2406],[-3,1]],[[2682,2407],[-13,5]],[[2315,2413],[1,-72]],[[2316,2341],[-8,-4]],[[2308,2337],[-2,20]],[[2429,2388],[2,-19],[-5,4],[-4,-9]],[[2422,2364],[-1,2],[-3,-15]],[[2418,2351],[-1,26],[-2,8],[-7,0]],[[2605,2401],[-1,0],[0,-24],[-11,1],[-3,-10]],[[2712,2429],[5,-3],[-1,-34],[-1,9],[-3,-1]],[[2712,2400],[-3,2],[-10,-56]],[[2699,2346],[0,17]],[[2523,2368],[-3,-13],[-2,13],[-5,-7],[-4,14]],[[2509,2375],[0,47]],[[2302,2366],[-9,-15]],[[2293,2351],[-3,4],[-6,44]],[[2452,2416],[-2,-14],[0,-21],[3,-21]],[[2453,2360],[-4,-5]],[[2449,2355],[-3,1]],[[2446,2356],[-3,6],[1,28],[-1,0],[-1,27]],[[2486,2381],[2,-43],[3,-9]],[[2491,2329],[-3,-5]],[[2488,2324],[-4,0],[-3,8],[-3,-9],[-3,8]],[[2475,2331],[-4,6]],[[2637,2423],[-2,-21],[-1,-17],[-7,-17]],[[2627,2368],[-4,13],[0,11],[-3,3],[-1,13]],[[2218,2389],[0,-40]],[[2218,2349],[-12,1]],[[2206,2350],[-10,0]],[[2196,2350],[0,78]],[[2196,2350],[-17,-1]],[[2179,2349],[-7,0]],[[2645,2421],[1,-28],[-2,0],[-1,-47]],[[2643,2346],[-5,6],[-13,-1]],[[2625,2351],[2,17]],[[2509,2375],[-11,-23],[-2,13]],[[2496,2365],[0,51]],[[2656,2417],[0,-13],[-4,-14],[1,-14],[-3,-24]],[[2650,2352],[-3,-11],[-2,-28]],[[2645,2313],[-2,1]],[[2643,2314],[0,32]],[[2093,2158],[0,214]],[[2127,2305],[7,-32]],[[2134,2273],[-2,-22],[-3,4],[-4,-7],[-4,-42],[-2,-31],[0,-27],[-3,-5],[-5,-39],[-8,14],[-3,21],[-5,4],[-2,15]],[[2446,2356],[-5,0],[-5,32]],[[2150,2349],[0,-94]],[[2150,2255],[-10,2],[-6,16]],[[2467,2349],[-5,-17],[-2,5]],[[2460,2337],[-2,-9],[-5,32]],[[2664,2414],[1,-2],[1,-28],[2,-17]],[[2668,2367],[-2,-23]],[[2666,2344],[-3,0]],[[2663,2344],[-3,8],[-10,0]],[[2496,2365],[1,-13],[-6,-23]],[[2682,2407],[-1,-7],[2,-29],[-1,-11],[-3,-2]],[[2679,2358],[-6,18],[-5,-9]],[[2093,2158],[-5,6],[-3,10],[-5,31],[-2,1],[-5,23],[-4,50],[-1,50],[-5,39],[0,23],[-3,22]],[[2334,2360],[2,-33]],[[2336,2327],[-5,-26],[-8,26],[-3,-13],[-4,-2]],[[2316,2312],[0,29]],[[2272,2374],[-3,-39],[-4,-27]],[[2265,2308],[-2,-8]],[[2263,2300],[-13,62]],[[2250,2362],[1,13]],[[2619,2408],[-5,-75]],[[2614,2333],[-8,0]],[[2606,2333],[0,68]],[[2625,2351],[1,-32],[4,-21]],[[2630,2298],[-13,0],[-1,-8]],[[2616,2290],[-3,14],[1,29]],[[2688,2404],[0,-83]],[[2688,2321],[-3,-30],[1,-7]],[[2686,2284],[-4,-20]],[[2682,2264],[-3,19]],[[2679,2283],[0,75]],[[2717,2342],[0,-27],[-5,4]],[[2712,2319],[-2,1],[1,19],[-1,9],[2,20],[4,-6],[1,-20]],[[2718,2343],[-1,-1]],[[2717,2342],[0,27],[1,-26]],[[2712,2400],[4,-7],[0,-20],[-5,-4],[0,-14],[-2,-10],[0,-14]],[[2709,2331],[-10,-1]],[[2699,2330],[0,16]],[[2699,2330],[0,-8]],[[2699,2322],[-2,0]],[[2697,2322],[-9,-1]],[[2606,2301],[0,-19]],[[2606,2282],[-8,36],[2,1],[3,-17],[3,-1]],[[2606,2333],[0,-31]],[[2606,2302],[-2,0],[-1,16],[-2,-1],[-4,13],[0,-11],[-8,27]],[[2293,2351],[-5,-26]],[[2288,2325],[-6,-20]],[[2282,2305],[-2,39],[-7,27]],[[2363,2341],[0,-16]],[[2363,2325],[-4,2],[-2,-12],[-3,2]],[[2354,2317],[-4,-1],[-4,71]],[[2238,2389],[0,-68]],[[2238,2321],[-9,0]],[[2229,2321],[-11,0],[0,28]],[[2250,2362],[-4,-59]],[[2246,2303],[-3,-19]],[[2243,2284],[-5,37]],[[2447,2239],[-8,16],[0,10],[-2,22]],[[2437,2287],[6,3]],[[2443,2290],[2,-23],[2,-8],[0,-20]],[[2440,2306],[-7,-4],[-3,16],[-3,-14],[-4,5]],[[2423,2309],[2,15],[-3,40]],[[2430,2388],[2,-10],[1,-25],[4,-15],[0,-23],[3,-9]],[[2449,2355],[-2,-48]],[[2447,2307],[-3,-7]],[[2444,2300],[-4,6]],[[2354,2317],[0,-42]],[[2354,2275],[-15,-1]],[[2339,2274],[-3,53]],[[2390,2371],[3,-5],[1,-41],[3,0],[0,-14],[-3,-8]],[[2394,2303],[-3,2],[-17,0]],[[2374,2305],[0,36]],[[2404,2385],[1,-72]],[[2405,2313],[-4,-11]],[[2401,2302],[-7,1]],[[2418,2351],[-4,-28]],[[2414,2323],[-4,-18],[-4,11],[-1,-3]],[[2679,2283],[-3,-9]],[[2676,2274],[-5,36],[-4,7],[-1,27]],[[2282,2305],[-8,-49]],[[2274,2256],[-9,52]],[[2308,2337],[-3,-16],[1,-12]],[[2306,2309],[-4,4],[-9,-9]],[[2293,2304],[-1,18],[-4,3]],[[2423,2309],[0,-7]],[[2423,2302],[-5,15],[-4,6]],[[2258,2269],[-3,-20]],[[2255,2249],[-1,18],[-8,36]],[[2263,2300],[-5,-26],[0,-5]],[[2460,2337],[0,-11]],[[2460,2326],[-8,-9],[-1,-9]],[[2451,2308],[-4,-1]],[[2663,2344],[0,-69],[1,-13]],[[2664,2262],[-2,-28]],[[2662,2234],[-4,10],[-3,29],[-4,20],[-6,20]],[[2643,2314],[-8,-7],[0,-17],[-2,1]],[[2633,2291],[-3,7]],[[2470,2339],[-5,-37],[-2,-3],[0,-24]],[[2463,2275],[-4,0]],[[2459,2275],[0,27],[1,24]],[[2179,2349],[0,-124]],[[2179,2225],[0,-38],[-1,-30],[-1,-3]],[[2177,2154],[-6,23],[-2,18],[-5,14],[-1,20],[-5,27],[-2,-6],[-6,5]],[[2206,2350],[0,-41]],[[2206,2309],[-6,2],[-1,-53],[0,-33]],[[2199,2225],[-3,0]],[[2196,2225],[-17,0]],[[2229,2321],[0,-66]],[[2229,2255],[-7,21],[-12,2]],[[2210,2278],[-2,0],[0,31],[-2,0]],[[2676,2274],[-1,-11]],[[2675,2263],[-11,-1]],[[2723,2234],[0,0]],[[2723,2234],[0,0]],[[2723,2234],[-1,0]],[[2722,2234],[0,-2]],[[2722,2232],[-2,-6],[-6,-1]],[[2714,2225],[0,26]],[[2714,2251],[-2,24],[1,14],[-3,17],[2,13]],[[2717,2342],[3,-64],[0,-11],[3,-33]],[[2718,2343],[2,-57],[-3,56]],[[2374,2305],[-4,-35]],[[2370,2270],[0,21],[-5,10],[-2,24]],[[2316,2312],[-4,14],[3,-70]],[[2315,2256],[-5,-11]],[[2310,2245],[-2,15],[-2,49]],[[2471,2238],[-3,0],[-1,14],[-4,23]],[[2470,2339],[0,-49],[1,-20],[2,-9],[-2,-23]],[[2475,2140],[1,8]],[[2475,2140],[0,0]],[[2475,2331],[-1,-51],[2,5],[2,-9]],[[2478,2276],[-2,-12],[0,-17],[2,-25],[0,-27]],[[2478,2195],[-4,17],[1,18],[-2,6]],[[2473,2236],[-2,2]],[[2616,2290],[0,-36]],[[2616,2254],[0,0]],[[2616,2254],[-5,-16]],[[2611,2238],[-3,0],[1,20],[-3,24]],[[2606,2301],[0,1]],[[2488,2324],[-3,-17],[-3,-11]],[[2482,2296],[-4,-2],[-1,-9],[3,-14]],[[2480,2271],[-2,5]],[[2709,2331],[-2,-14],[2,1],[0,-15],[3,-14],[0,-23]],[[2712,2266],[-6,-1],[-4,-17],[-3,-5]],[[2699,2243],[0,79]],[[2370,2270],[-2,-11],[3,-21]],[[2371,2238],[-5,-2],[-10,-22]],[[2356,2214],[0,60],[-2,1]],[[2339,2274],[2,-10],[-1,-28]],[[2340,2236],[-2,6],[-2,21],[0,-11],[3,-17],[-1,-24]],[[2338,2211],[-4,-9],[-2,11]],[[2332,2213],[-1,7],[-4,-3]],[[2327,2217],[-12,39]],[[2492,2227],[-1,5]],[[2492,2228],[0,-1]],[[2491,2230],[1,-2]],[[2491,2232],[0,-2]],[[2490,2231],[0,1]],[[2490,2232],[0,0]],[[2490,2232],[-9,25],[-1,14]],[[2482,2296],[1,-13],[2,5],[1,-16],[3,-1],[1,23],[3,13],[1,-23],[0,-7],[3,-6],[-3,-8],[2,-7],[-3,4],[0,-11],[-6,0],[3,-18]],[[2459,2275],[-3,6],[-3,-3]],[[2453,2278],[-2,13],[0,17]],[[2293,2304],[2,-16]],[[2295,2288],[-9,-61]],[[2286,2227],[-7,-1]],[[2279,2226],[-5,29]],[[2274,2255],[0,1]],[[2423,2302],[0,-38]],[[2423,2264],[-1,-7],[-5,-17],[2,0],[0,-16],[-5,-16],[-9,9]],[[2405,2217],[0,86],[-4,-1]],[[2699,2243],[0,0]],[[2699,2243],[-2,22],[-4,1],[-4,15]],[[2689,2281],[3,6],[5,35]],[[2689,2281],[-3,3]],[[2243,2284],[-6,-36]],[[2237,2248],[-4,-5]],[[2233,2243],[-4,12]],[[2425,2227],[5,-15],[-4,-14],[-5,17],[4,12]],[[2444,2300],[-1,-10]],[[2437,2287],[-5,-2],[-6,-38]],[[2426,2247],[1,17],[-4,0]],[[2310,2245],[0,-24],[-2,0]],[[2308,2221],[-2,6]],[[2306,2227],[-3,6],[-2,28],[-2,3],[-4,24]],[[2453,2278],[-3,-36]],[[2450,2242],[-2,-16]],[[2448,2226],[-1,13]],[[2210,2278],[0,-52]],[[2210,2226],[-11,-1]],[[2274,2255],[-8,-28],[-1,3]],[[2265,2230],[-3,9],[-4,30]],[[2405,2217],[-9,23],[-7,13],[-8,-1],[-8,-6],[-2,-8]],[[2255,2249],[-3,-12],[-6,-17]],[[2246,2220],[-2,13],[1,13],[-8,2]],[[2614,2237],[0,-10],[-3,9],[3,1]],[[2616,2254],[1,-12],[-6,-4]],[[2633,2291],[2,-14],[-5,2],[-10,-33],[-4,8]],[[2306,2227],[-4,-22],[-1,-20],[-8,-30]],[[2293,2155],[-1,3]],[[2292,2158],[3,14],[-7,45],[-2,10]],[[2448,2226],[-4,-7]],[[2444,2219],[-3,-19],[-2,12],[-4,-6],[0,21],[-3,-1],[0,22],[-6,-1]],[[2699,2243],[0,-46]],[[2699,2197],[-4,-9],[0,11],[-6,1]],[[2689,2200],[-4,-1],[0,10],[-2,5]],[[2683,2214],[-1,50]],[[2683,2214],[-8,5]],[[2675,2219],[-1,31],[1,13]],[[2466,2147],[0,1]],[[2466,2147],[0,0]],[[2475,2140],[-3,-15],[-2,10],[-2,32],[-2,-17]],[[2466,2150],[0,3]],[[2466,2153],[0,1]],[[2466,2154],[1,3]],[[2467,2157],[0,1]],[[2467,2158],[0,16],[-6,47],[-5,18],[-1,14],[-2,-10],[-3,-1]],[[2473,2236],[0,-20],[-2,-10],[5,-17],[0,-19],[-1,-5],[1,-17]],[[2215,2226],[-5,0]],[[2233,2243],[-1,-5]],[[2232,2238],[-3,-24],[-2,11],[-12,1]],[[2486,2179],[1,-13],[-4,2],[3,11]],[[2490,2232],[-2,-2],[0,-4],[-3,-4],[2,-18],[4,-12],[-1,-8],[5,-2],[4,-17],[1,8],[3,-30],[0,-17],[-3,-12],[-2,6],[-4,-24],[4,38],[-1,15],[-4,-6],[-1,27],[-3,12],[-5,-1],[-1,6],[-2,6],[-3,2]],[[2356,2214],[0,-1]],[[2356,2213],[-3,0]],[[2353,2213],[-2,3],[-5,-9],[1,43],[-3,7],[-2,-23],[-2,2]],[[2265,2230],[-6,-51]],[[2259,2179],[-7,1],[-1,11]],[[2251,2191],[0,8],[-5,21]],[[2714,2225],[0,-23],[3,-19]],[[2717,2183],[-4,-9]],[[2713,2174],[-3,16],[0,28],[2,5],[-1,17],[3,11]],[[2712,2266],[1,-13],[-2,-18],[-2,-44],[1,-13]],[[2710,2178],[-2,0],[-1,22],[-2,6],[-6,-9]],[[2327,2217],[-2,-26],[-2,0],[-1,-18],[-2,-10],[-3,7],[-2,-12]],[[2315,2158],[-4,32],[-3,31]],[[2279,2226],[-2,-9],[-1,-36]],[[2276,2181],[-10,-51]],[[2266,2130],[-4,20]],[[2262,2150],[-3,25],[0,4]],[[2443,2178],[2,-9],[-1,-19],[-3,16],[2,12]],[[2467,2158],[-6,9],[1,-13],[-1,-6],[-1,3],[-2,-17],[-4,1],[-3,5],[4,13],[-3,8],[-1,11],[-3,-28],[-2,9],[0,19],[-3,20],[1,27]],[[2251,2191],[-8,-61]],[[2243,2130],[-11,26]],[[2232,2156],[0,82]],[[2232,2156],[0,-30]],[[2232,2126],[-17,0]],[[2215,2126],[0,100]],[[2722,2232],[4,-43]],[[2726,2189],[-2,-3],[1,-27],[-8,-1],[0,25]],[[2723,2234],[3,-45]],[[2726,2189],[0,0]],[[2726,2189],[-3,45]],[[2315,2158],[-1,-6]],[[2314,2152],[-3,-15],[-9,-35]],[[2302,2102],[-9,53]],[[2292,2158],[-8,-37]],[[2284,2121],[-1,8]],[[2283,2129],[-7,52]],[[2215,2126],[-19,-1]],[[2196,2125],[0,100]],[[2196,2125],[-16,0]],[[2180,2125],[-3,17],[0,12]],[[2346,2172],[-2,-10],[-9,-36],[8,39],[3,7]],[[2337,2146],[-5,50],[0,17]],[[2338,2211],[3,-10],[-1,-5],[2,-16],[-1,-15],[-1,3],[-3,-22]],[[2356,2213],[-11,-30],[6,25],[2,5]],[[2337,2146],[-3,-3],[-2,-36],[-5,-23],[-3,-7]],[[2324,2077],[-1,0],[-4,26],[-2,0],[0,16],[-2,7],[-1,26]],[[2689,2200],[1,-51],[-4,0],[0,-31]],[[2686,2118],[-6,-9]],[[2680,2109],[0,-1]],[[2680,2108],[0,12],[-2,18],[-7,4],[-1,28]],[[2670,2170],[3,30],[2,19]],[[2710,2178],[1,-17]],[[2711,2161],[-1,-59],[-8,0]],[[2702,2102],[-10,0]],[[2692,2102],[-5,17],[-1,-1]],[[2262,2150],[-13,-63]],[[2249,2087],[-6,43]],[[2736,2070],[0,0]],[[2736,2070],[0,0]],[[2735,2070],[-2,0]],[[2733,2070],[0,0]],[[2733,2070],[-3,0],[-1,-33]],[[2729,2037],[-2,38],[-3,-6],[-6,18]],[[2718,2087],[1,19],[-4,21],[-2,18]],[[2713,2145],[1,20],[-1,9]],[[2726,2189],[0,-15],[9,-104]],[[2274,2084],[-3,11],[-4,-21]],[[2267,2074],[-5,37],[4,19]],[[2283,2129],[-9,-45]],[[2718,2087],[-1,-18]],[[2717,2069],[-7,-1],[0,-81]],[[2710,1987],[-8,0]],[[2702,1987],[0,115]],[[2711,2161],[2,-16]],[[2302,2102],[-1,-53]],[[2301,2049],[-1,0]],[[2300,2049],[-1,6]],[[2299,2055],[-5,-1]],[[2294,2054],[-2,3]],[[2292,2057],[0,0]],[[2292,2057],[0,0]],[[2292,2057],[-2,31],[-3,26],[-3,7]],[[2245,2037],[0,7],[-13,-1]],[[2232,2043],[0,83]],[[2249,2087],[3,-18]],[[2252,2069],[-7,-32]],[[2301,2043],[0,6]],[[2324,2077],[-5,-18],[-3,3],[-4,-9],[0,-14],[7,18],[-18,-53],[8,28],[2,13],[-5,-9],[-5,7]],[[2261,2047],[-4,10],[-2,-6]],[[2255,2051],[-3,18]],[[2267,2074],[-6,-27]],[[2292,2057],[0,-4]],[[2292,2053],[-7,-21],[1,-15]],[[2286,2017],[-1,-4],[-7,13]],[[2278,2026],[0,41],[-1,15],[-3,2]],[[2232,2043],[-16,-1]],[[2216,2042],[-1,0]],[[2215,2042],[0,84]],[[2215,2042],[-19,2]],[[2196,2044],[0,81]],[[2196,2044],[0,-84]],[[2196,1960],[-3,-1]],[[2193,1959],[-2,17],[-3,56],[-3,14],[-1,31],[-3,22],[-1,26]],[[2692,2102],[4,-32],[-3,-23]],[[2693,2047],[-4,5],[-6,0]],[[2683,2052],[-1,7],[0,33],[-2,17]],[[2702,1987],[-3,-6]],[[2699,1981],[0,31]],[[2699,2012],[0,8],[-4,9],[-2,18]],[[2278,2026],[-6,-31]],[[2272,1995],[-5,12],[0,13],[-4,4],[-2,23]],[[2729,2037],[-9,0],[-4,5],[1,27]],[[2733,2070],[1,-44],[4,-67],[5,-62],[0,-5]],[[2743,1892],[-11,-2]],[[2732,1890],[1,98]],[[2733,1988],[-1,30],[-3,19]],[[2735,2070],[4,-24],[-3,24]],[[2736,2070],[5,-38],[1,-24],[-2,-9],[0,31],[-3,-36],[0,1],[-1,38],[-1,6],[1,15],[-3,16]],[[2258,1933],[-10,1]],[[2248,1934],[-3,0]],[[2245,1934],[0,103]],[[2255,2051],[-3,-5],[8,-89],[0,-1]],[[2260,1956],[-3,-12],[1,-11]],[[2733,1988],[-23,-1]],[[2288,1964],[0,10]],[[2288,1974],[0,-9],[0,-1]],[[2287,1940],[0,3]],[[2287,1943],[1,15],[3,1],[3,17],[5,12],[-12,-48]],[[2301,2043],[-1,6]],[[2289,2006],[-3,11]],[[2292,2053],[1,-19],[6,-29],[-7,-22],[-3,23]],[[2299,2055],[-1,-19],[-3,6],[-1,12]],[[2272,1995],[-4,-42]],[[2268,1953],[-1,-6],[-7,9]],[[2699,2012],[-5,0],[0,-8],[-12,0]],[[2682,2004],[1,48]],[[2232,2043],[0,-109]],[[2232,1934],[-16,-6],[0,33]],[[2216,1961],[0,81]],[[2245,1934],[-13,0]],[[2216,1961],[-20,-1]],[[2289,2006],[-2,-6],[1,-18]],[[2288,1982],[-9,-8],[3,-13]],[[2282,1961],[-6,-26]],[[2276,1935],[-1,2]],[[2275,1937],[-1,11],[-6,5]],[[2699,1981],[-1,-26]],[[2698,1955],[-15,0]],[[2683,1955],[-4,0]],[[2679,1955],[3,49]],[[2710,1987],[0,-16],[3,0],[1,-22],[2,-10],[3,0],[-3,-10],[6,-36],[3,-37]],[[2725,1856],[-12,1]],[[2713,1857],[-14,0]],[[2699,1857],[0,98],[-1,0]],[[2732,1890],[0,-34]],[[2732,1856],[-7,0]],[[2286,1936],[-3,-27],[0,14],[3,13]],[[2276,1935],[2,-3],[-1,-14]],[[2277,1918],[-2,19]],[[2279,1905],[-2,12]],[[2277,1917],[5,27],[0,-15],[-3,-24]],[[2288,1982],[0,-8]],[[2288,1964],[-1,-6],[-3,-12],[-2,15]],[[2232,1934],[0,-132]],[[2232,1802],[0,-16],[-4,1]],[[2228,1787],[-10,0],[-1,9],[-3,-10]],[[2214,1786],[-1,14],[1,26],[-4,29],[-3,4],[-5,26],[-1,34],[-2,2],[-2,29],[-4,9]],[[2277,1918],[0,-1]],[[2279,1905],[0,0]],[[2279,1905],[0,-2]],[[2279,1903],[-2,-13],[-2,11],[-6,-8]],[[2269,1893],[-4,5],[-5,13],[0,11]],[[2260,1922],[-2,11]],[[2683,1955],[0,-29]],[[2683,1926],[-2,-15],[3,-14],[-1,-29],[-3,9],[-3,20],[2,24],[0,34]],[[2699,1857],[-14,0]],[[2685,1857],[5,32],[-3,19],[1,-18],[-2,3],[0,18],[-3,15]],[[2248,1934],[0,-149]],[[2248,1785],[-8,1]],[[2240,1786],[0,14],[-8,2]],[[2260,1922],[-3,-21],[-1,-46]],[[2256,1855],[-3,0],[0,-70]],[[2253,1785],[-5,0]],[[2276,1844],[0,1]],[[2276,1844],[0,0]],[[2278,1871],[2,20],[-3,-40],[1,20]],[[2274,1841],[-15,0],[-3,14]],[[2269,1893],[3,0],[1,-23],[3,-4],[-2,-25]],[[2747,1840],[-9,1]],[[2738,1841],[-3,0],[0,15],[-3,0]],[[2743,1892],[3,-33],[1,-19]],[[2748,1840],[-1,0]],[[2748,1840],[0,0]],[[2725,1856],[-2,-28],[4,-21],[3,-31]],[[2730,1776],[-6,0],[0,-17],[-3,0],[0,-16],[-8,0]],[[2713,1743],[0,57]],[[2713,1800],[0,57]],[[2713,1800],[-14,-1]],[[2699,1799],[0,58]],[[2699,1799],[0,-24]],[[2699,1775],[-5,0],[0,33],[-9,1]],[[2685,1809],[-3,16],[2,8],[1,24]],[[2738,1841],[0,-66]],[[2738,1775],[0,-16],[-6,-30]],[[2732,1729],[0,36],[-2,11]],[[2273,1788],[0,0]],[[2273,1788],[0,18],[3,39]],[[2276,1844],[-3,-56]],[[2274,1841],[-3,-45],[-3,-8],[2,24],[-4,-16],[-4,18],[2,-24],[-3,-1]],[[2261,1789],[-6,-14]],[[2255,1775],[-2,10]],[[2751,1785],[0,0]],[[2751,1785],[0,0]],[[2747,1840],[3,-55]],[[2750,1785],[-1,-5]],[[2749,1780],[0,-4]],[[2749,1776],[-11,-1]],[[2699,1775],[0,-33]],[[2699,1742],[-5,1],[0,-5]],[[2694,1738],[0,-2]],[[2694,1736],[0,-10],[-3,0]],[[2691,1726],[-3,21],[-3,62]],[[2240,1786],[2,-39],[1,0],[0,-51]],[[2243,1696],[-15,1]],[[2228,1697],[0,90]],[[2713,1743],[-14,-1]],[[2228,1697],[-1,-21],[-5,-19]],[[2222,1657],[-3,50],[-5,33],[1,29],[-1,17]],[[2274,1671],[1,-9]],[[2275,1662],[-1,0]],[[2274,1662],[-1,14],[1,-5]],[[2274,1671],[-1,14],[-1,30],[0,2]],[[2272,1717],[2,-46]],[[2272,1717],[0,48],[0,17],[1,6]],[[2273,1788],[-1,-33],[0,-38]],[[2270,1662],[-11,0],[-3,2]],[[2256,1664],[-1,32]],[[2255,1696],[0,79]],[[2261,1789],[4,-1],[2,-9],[4,6],[-1,-27],[-1,-18],[-2,-8],[0,-28],[2,-13],[1,-29]],[[2255,1696],[-9,0]],[[2246,1696],[-3,0]],[[2754,1731],[0,0]],[[2754,1731],[-1,0]],[[2753,1731],[0,0]],[[2753,1731],[0,0]],[[2753,1731],[0,-3],[-21,1]],[[2749,1776],[3,-16],[2,-29]],[[2732,1729],[-2,-36],[-17,1]],[[2713,1694],[0,49]],[[2693,1697],[0,0]],[[2694,1736],[2,-11],[1,-26],[-5,9],[-1,18]],[[2713,1694],[-14,0]],[[2699,1694],[-1,26],[3,10],[-4,1],[0,-9],[-3,16]],[[2753,1731],[2,-5],[0,-72],[0,-44]],[[2755,1610],[-5,2],[-18,0]],[[2732,1612],[0,117]],[[2732,1612],[0,-14]],[[2732,1598],[-11,-1],[0,49],[-8,0]],[[2713,1646],[0,48]],[[2696,1682],[3,-39],[-1,-2],[-2,41]],[[2713,1646],[0,-17],[-3,0],[0,-20],[-5,3]],[[2705,1612],[-1,24],[-4,13],[-1,28],[0,17]],[[2246,1696],[-8,-98]],[[2238,1598],[-2,-3],[-4,24],[-8,11],[0,9],[-2,18]],[[2256,1664],[-1,-30],[4,-3],[0,-16]],[[2259,1615],[0,-52]],[[2259,1563],[-10,-3],[-5,20],[-2,12],[-4,6]],[[2275,1662],[1,-17],[-1,1],[-2,9],[1,7]],[[2272,1627],[-2,-16],[-2,-5],[-9,9]],[[2270,1662],[1,-16],[0,-14],[-1,-5],[2,0]],[[2732,1598],[0,-52]],[[2732,1546],[0,-32]],[[2732,1514],[-13,0]],[[2719,1514],[-4,18],[-3,-2],[-4,20],[-2,18],[-1,44]],[[2272,1627],[2,-40],[0,-14],[3,-11],[-1,-18],[-4,-11],[0,-13],[-4,9],[-5,28],[-4,6]],[[2755,1610],[-2,-64]],[[2753,1546],[-5,-4],[-10,0],[-6,4]],[[2745,1408],[-1,0]],[[2744,1408],[-1,-5]],[[2743,1403],[0,0]],[[2743,1403],[-2,6],[-4,-15],[-4,3]],[[2733,1397],[-1,35],[0,82]],[[2753,1546],[0,-14],[-2,-27],[-3,-24],[-1,-30],[1,-18],[-3,-25]],[[2749,1429],[-4,-44],[-3,-21],[5,38],[2,27]],[[2733,1397],[-2,-7],[-5,-5],[-2,20],[1,23],[2,-17],[3,-9],[1,9],[-2,17],[-4,2],[-2,28],[-2,35],[2,6],[-2,8],[-1,-13],[-1,20]],[[2670,2170],[-2,1],[-2,19],[-4,20],[0,24]],[[2329,5836],[5,0],[0,71],[6,-2],[3,-14],[4,-77],[0,-20],[3,-11],[4,-3]],[[2449,5685],[4,10],[4,-28],[17,3],[7,-23],[3,7],[6,-6],[-12,-30],[-12,-19],[-9,-19],[-8,-30]],[[2435,5418],[0,-112]],[[2416,5400],[3,15],[3,-11],[5,1],[8,13]],[[2452,5386],[0,-80]],[[2435,5418],[8,15],[4,4],[7,19],[3,-12],[-4,-26],[1,-11],[-2,-21]],[[2452,5386],[6,15],[4,-16]],[[2461,5440],[1,-5],[-6,-18],[5,23]],[[2527,5500],[-2,16],[-6,0]],[[2519,5516],[3,16],[5,15],[11,5],[4,-14],[-7,-3],[0,-7],[-8,-28]],[[2515,5674],[7,11],[-8,-35],[-8,-18],[1,-5],[-6,-10],[-1,16],[15,41]],[[2508,5469],[1,13],[7,24],[0,-19],[3,-3],[2,-32]],[[2527,5500],[-5,-41],[-1,22],[-5,6],[0,18],[3,11]],[[2558,5369],[0,-63]],[[2558,5306],[-3,0],[0,-32],[-4,0]],[[2532,5447],[7,-4],[5,-15],[1,-17],[7,-42],[6,0]],[[2572,5306],[-14,0]],[[2558,5369],[3,7],[6,-18],[1,8],[4,-12],[4,26],[9,22],[8,3]],[[2576,5232],[-6,-20],[4,37],[-6,2],[-3,-28],[-5,6],[-3,-15],[-3,-21]],[[2544,5109],[0,-21],[-4,-4]],[[2541,5030],[3,30],[6,13],[5,49],[3,4],[2,19],[2,1],[-6,-61],[0,-18],[-3,-16],[-2,-21]],[[2657,5262],[-8,8],[5,13],[-1,13],[4,-2],[3,-20],[-3,-12]],[[2640,5376],[1,-1],[-1,-21],[-3,14],[3,8]],[[2642,5274],[-3,0]],[[2639,5274],[0,0]],[[2639,5274],[-1,16],[-3,0],[0,16],[-21,0],[0,17],[-3,0]],[[2611,5418],[7,2],[-2,-15],[0,-37],[6,-8],[5,7],[2,-13],[7,16],[2,-13],[2,-33],[-1,-17],[3,3],[1,-16],[5,-20],[-6,0]],[[2629,5243],[6,-9],[-4,-7],[-2,16]],[[2639,5274],[-12,13],[-3,-20],[0,-20],[-7,31],[-12,18],[-2,-2],[-4,-23],[-6,0]],[[2625,5144],[-8,-3],[-2,18]],[[2615,5159],[4,10],[-3,3],[-2,24],[5,30],[6,11]],[[2606,5129],[1,13],[5,16],[3,1]],[[2602,5230],[1,-26],[-3,-5],[2,31]],[[2590,5102],[-2,7],[2,10],[0,-17]],[[2599,5049],[-5,-1]],[[2587,5049],[0,22],[4,13],[4,-2],[5,43],[1,-23],[-2,-34],[0,-19]],[[2599,5049],[2,-2],[3,41],[-2,-45],[3,21]],[[2662,5129],[2,-28],[-3,1],[0,-25],[3,-13]],[[2657,4935],[0,-22],[-3,-10],[-5,0],[-1,-16]],[[2660,4853],[6,46],[5,7],[4,11],[5,-14],[3,-30],[1,-27]],[[2687,4749],[2,-36],[-1,-16],[-2,-49],[-3,1],[-2,10]],[[2677,4616],[-1,-13],[-5,-13],[-3,-27],[-1,-25]],[[2667,4538],[-2,11],[-7,-2]],[[2660,4482],[0,0]],[[2660,4482],[0,0]],[[2667,4538],[-7,-46],[-1,-10]],[[2758,2838],[0,-29],[2,-1],[-3,-25],[-7,-16]],[[2747,2761],[-2,20]],[[2773,2889],[4,-11],[-4,-20],[-4,-1],[-6,-31],[-3,-15],[-1,4],[3,27]],[[612,650],[-3,2]],[[612,650],[0,0]],[[642,482],[7,-28],[4,-3],[5,-15],[5,-32],[0,-21],[2,0],[1,-17],[5,-23],[-5,-33],[-4,-13],[-5,-2],[-6,-25],[-4,-39],[-6,22],[-1,15],[1,42],[-3,54],[-2,17],[3,23],[4,33],[-2,18],[0,20],[1,7]],[[543,847],[2,-8],[0,-41],[-3,-18],[-6,9],[-3,12],[-1,16],[2,16],[4,13],[5,1]],[[524,804],[0,-18],[-2,-7],[-1,-16],[-1,20],[4,21]],[[612,650],[6,-4],[-5,-19],[-5,10],[-7,0],[2,23],[6,-8]],[[610,605],[3,-3],[2,-19],[-1,-9],[-3,-5],[-3,33],[2,3]],[[622,544],[0,-12],[-3,-6],[0,10],[3,8]],[[621,624],[3,-25],[5,10],[2,-4],[4,-19],[3,-6],[0,-16],[-2,-10],[-7,-13],[-4,4],[0,32],[-5,6],[-1,14],[0,23],[2,4]],[[582,751],[5,-34],[-1,-13],[2,1],[4,-31],[-4,-8],[-3,15],[-6,-8],[-5,53],[5,1],[3,24]],[[9969,6328],[8,-11],[1,-9],[7,-27],[-6,12],[-3,17],[-9,18],[2,0]],[[2,6364],[1,-16],[-3,6],[2,10]],[[72,6369],[0,-22],[-3,-1],[-1,21],[4,2]],[[75,6373],[4,-7],[-2,-10],[-3,4],[1,13]],[[80,6378],[1,-12],[-4,8],[3,4]],[[22,6380],[3,0],[1,-12],[8,-7],[-5,-6],[-1,-19],[-4,-9],[-3,13],[5,11],[-8,17],[4,12]],[[46,6341],[-1,-6],[-4,10],[-8,-4],[11,13],[2,7],[1,20],[4,-5],[-2,-12],[0,-18],[-3,-5]],[[9963,6393],[3,-8],[-2,-9],[-1,17]],[[64,6395],[-1,-31],[5,0],[-1,-20],[-6,-7],[-3,-11],[-1,17],[-3,-24],[-1,12],[3,16],[-1,12],[5,-4],[-3,26],[7,14]],[[9996,6400],[3,-10],[-3,-19],[-4,5],[-1,16],[5,8]],[[76,6416],[4,-9],[-2,-11],[-3,-1],[1,21]],[[9939,6420],[1,-12],[-3,-16],[0,-14],[-5,0],[-1,-16],[-4,13],[5,16],[3,1],[4,28]],[[149,6423],[-1,-6],[6,-6],[5,4],[6,-3],[-14,-8],[-7,5],[-3,-7],[-6,12],[4,7],[2,-7],[8,9]],[[180,6467],[3,-11],[-3,-10],[-5,-4],[0,18],[5,7]],[[132,6473],[4,-19],[-2,-17],[-4,-6],[3,-10],[-8,-9],[-10,-16],[-4,7],[-9,-7],[10,18],[7,1],[7,14],[3,16],[-3,8],[2,17],[4,3]],[[9831,6490],[0,-29],[-3,8],[-8,1],[7,18],[4,2]],[[229,6525],[3,-5],[-1,-13],[-6,-12],[0,18],[4,12]],[[254,6561],[2,-13],[-1,-9],[-7,15],[6,7]],[[9806,6581],[7,-1],[5,-24],[4,-2],[-7,-12],[-3,8],[-4,-16],[-5,9],[2,16],[-5,-3],[0,11],[-5,0],[5,15],[6,-1]],[[273,6550],[9,46],[-1,15],[5,22],[8,1],[-3,8],[1,18],[5,20],[6,7],[6,-10],[-1,-24],[-12,-27],[-6,-34],[-17,-42]],[[356,6738],[-4,-24],[-2,14],[6,10]],[[341,6770],[2,-33],[5,28],[3,-2],[1,-18],[-3,-4],[-5,-27],[6,13],[1,-16],[-6,-8],[-2,-16],[-3,6],[1,-19],[-4,3],[-19,-36],[-4,-14],[-7,13],[11,24],[11,12],[-3,18],[5,3],[-1,15],[9,5],[-9,5],[-3,21],[3,17],[11,10]],[[254,7255],[8,-3],[-3,-12],[-5,15]],[[244,7371],[-4,-20],[-4,11],[8,9]],[[387,6793],[1,-11],[-5,0],[-2,7],[6,4]],[[361,6809],[7,-17],[-6,-18],[-4,2],[-1,24],[4,9]],[[373,6822],[-1,-14],[3,-1],[-4,-19],[-3,22],[2,12],[3,0]],[[448,6859],[7,-15],[-6,0],[-1,15]],[[462,6951],[2,-19],[-2,-10],[-3,17],[3,12]],[[421,6964],[7,0],[2,-16],[4,-41],[3,5],[2,-15],[-4,0],[-2,10],[-2,-18],[-5,-7],[-6,4],[-8,-3],[-7,-16],[0,-13],[-8,-14],[-6,5],[-3,22],[1,13],[6,11],[4,40],[3,10],[6,-5],[10,25],[3,3]],[[476,6987],[5,-13],[-3,-10],[-5,20],[3,3]],[[540,6996],[0,-17],[-4,-16],[4,33]],[[530,7002],[0,-30],[-7,-21],[0,33],[4,-8],[1,25],[2,1]],[[517,7021],[0,-22],[-5,14],[5,8]],[[506,7029],[1,-19],[3,2],[3,-23],[-1,-11],[-10,14],[1,25],[3,12]],[[519,7040],[2,-12],[-5,4],[3,8]],[[557,7304],[0,-2]],[[557,7302],[0,-12]],[[557,7290],[-4,-9],[0,-16],[-7,0],[0,-17],[-8,0],[-1,-16],[-8,0],[0,-32],[2,0],[1,-63],[-2,-18],[8,0],[0,-46]],[[538,7073],[-2,36],[-5,4],[-2,-13],[-2,6],[-1,-18],[-10,-20],[-5,-26],[-2,20],[-1,-22],[-4,-2],[-4,13],[-2,-15],[-9,-15],[-5,0],[1,22],[3,21],[-6,5],[-3,-16],[0,-23],[-5,-35],[-4,3],[2,-21],[-3,-9],[-4,15],[-2,-25],[-6,5],[-1,38],[-4,9],[-2,-9],[3,-15],[2,-41],[-4,17],[0,-16],[-6,-1],[-3,24],[-5,9],[-1,-19],[6,-15],[-9,-26],[2,42],[-1,15],[3,10],[9,3],[2,24],[4,12],[4,-1],[-1,18],[8,43],[13,36],[12,12],[7,1],[7,7],[-5,-19],[7,-32],[3,-5],[-2,35],[6,-3],[2,-14],[6,-5],[1,13],[-8,19],[-2,12],[6,51],[15,50],[14,23],[12,39]],[[1312,7032],[4,-18],[-2,-36],[-4,34],[2,20]],[[1328,7131],[5,-23],[3,-39],[-1,-39],[-2,-28],[-4,-12],[-7,19],[5,31],[-7,-31],[-8,28],[5,29],[-3,7],[0,17],[5,12],[-1,20],[10,9]],[[602,7626],[6,22],[2,30]],[[610,7678],[19,2],[0,-54],[-27,0]],[[507,7662],[-5,-42],[-6,-5],[1,28],[10,19]],[[496,7666],[-7,-16]],[[489,7650],[-1,16],[8,0]],[[497,7669],[0,31],[5,0],[1,15],[0,33],[5,0],[0,16],[5,1],[1,15],[0,33],[5,0],[0,32],[7,1],[0,32],[4,1],[0,30],[2,16],[5,0],[0,33],[5,0],[2,15],[0,33],[5,0],[0,16],[5,0],[2,32],[29,0],[0,-15],[5,0],[0,16],[5,0],[0,17],[10,0],[0,-17],[34,0]],[[639,8055],[0,-230],[-5,0],[0,-16],[-9,0],[0,-16],[-5,0],[-3,-33],[-9,1],[0,-16],[-5,0],[0,-33],[2,0],[0,-39]],[[605,7673],[-11,-20],[-16,-26],[-5,7],[-1,14],[-6,14],[2,37],[-3,-16],[-5,-6],[0,-28],[-8,20],[5,-14],[4,-37],[1,-15],[-5,-17],[-4,8],[-10,61],[-7,15],[1,17],[-3,-4],[-2,-20],[-3,-5],[-3,19],[-7,2],[-1,24],[-2,7],[-13,-35],[-6,-6]],[[603,7248],[7,-5],[-9,-2],[2,7]],[[709,8055],[1,-16],[0,-65],[-3,-1],[0,-65],[-4,0],[0,-63],[-4,0],[0,-16],[-4,0],[0,-33],[-5,0],[0,-16],[-8,-1],[0,-32],[-9,-1],[0,-32],[1,-1],[0,-63],[2,-17],[9,0]],[[685,7633],[0,-34],[-5,-19],[-7,-10],[-8,-3],[-1,-10],[-8,-8],[0,-59],[-3,-9],[-7,-6],[-2,-24],[-3,0],[2,-13],[-4,-8],[-3,5],[-2,-14],[-7,3],[-7,-35],[-3,-32],[11,-1]],[[628,7356],[-6,-32],[-5,10],[-2,-27],[-2,13],[-9,-37],[-5,18],[-1,-17],[-4,-15],[3,-12],[-5,-3],[-3,12],[-8,-14],[-3,-13],[9,5],[-1,-15],[-8,9],[1,-11],[-6,3],[-10,-40],[7,14],[7,-11],[-9,-56],[-4,24],[0,-23],[-6,5],[-2,-16],[-11,-10],[-2,-16],[-2,20],[-2,-2],[1,-23],[-2,-23]],[[557,7290],[8,-8],[-2,40],[2,16],[8,42],[7,15],[4,20],[6,17],[4,-19],[-1,29],[-2,-2],[-1,21],[3,67],[2,15],[3,2],[-4,29],[2,28],[6,24]],[[610,7678],[-1,13],[-4,-18]],[[639,8055],[43,-1],[27,1]],[[650,7096],[-5,7],[5,14],[0,-21]],[[697,7246],[-2,-11],[-5,0],[7,11]],[[680,7252],[-3,-20],[-5,-17],[2,23],[6,14]],[[691,7249],[-4,-17],[-4,9],[4,13],[4,-5]],[[715,7364],[7,-3],[2,-11],[-8,-6],[-3,-19],[-3,21],[5,18]],[[709,7506],[4,-11],[3,-20],[-8,16],[1,15]],[[714,7512],[8,-16],[1,8],[4,-9],[-3,-16],[5,0],[2,19],[9,-18],[-6,-19],[2,-1],[0,-22],[9,3],[-5,-36],[-5,2],[-7,14],[-2,-7],[6,-12],[-3,-24],[-3,-2],[-5,14],[-2,-6],[4,-9],[-4,-9],[-5,2],[-7,-29],[-4,3],[3,-17],[-10,-42],[-7,-4],[2,18],[6,23],[-3,-2],[2,20],[-5,-17],[-1,5],[4,23],[-7,8],[-7,-7],[2,-14],[3,11],[6,2],[-5,-39],[-7,15],[-1,37],[-6,19],[1,24],[3,17],[7,24],[10,1],[1,-19],[6,-44],[-1,20],[0,28],[-2,16],[7,-3],[-9,18],[0,15],[6,16],[4,-12],[1,-25],[2,25],[8,-9],[-1,20],[5,-14],[-6,26],[0,7]],[[716,7532],[3,-3],[4,-20],[-8,13],[-5,2],[4,16],[2,-8]],[[741,7591],[2,-15],[4,6],[-2,-19],[5,11],[0,-21],[-3,-11],[-7,17],[2,-21],[-5,1],[-3,-10],[-1,25],[-1,-27],[-5,-2],[0,-13],[-10,21],[-1,19],[6,-3],[-3,11],[1,10],[7,-5],[0,23],[4,14],[5,-3],[3,-25],[2,17]],[[731,7619],[9,12],[-4,-31],[-4,5],[-1,14]],[[714,7672],[-2,-1],[-3,-26],[-7,-18],[-6,-1],[-1,-22],[-4,-1],[1,-24],[-4,-6],[2,-9],[-6,-22],[0,-14],[-4,18],[1,-16],[-3,3],[-5,-18],[-8,3],[-1,-23],[-8,-20],[-2,-11],[-6,9],[1,-23],[-4,-6],[0,-15],[-8,4],[0,-25],[-5,7],[-9,-27],[0,-11],[5,8],[-2,-19],[2,-10]],[[685,7633],[14,0],[0,17],[10,0],[0,22],[4,0]],[[713,7672],[1,0]],[[1264,7497],[-1,-6]],[[1264,7497],[0,0]],[[1246,7543],[-4,-6]],[[1246,7543],[0,0]],[[1242,7537],[-6,-6],[-4,-13],[-2,13]],[[1230,7531],[0,17]],[[1230,7548],[1,7]],[[1231,7555],[1,-12],[8,1],[2,-7]],[[1236,7577],[8,-25],[-11,7],[-1,10],[4,8]],[[1242,7693],[2,-20],[11,-24],[4,-22],[9,-34],[-2,-8],[8,-44]],[[1274,7541],[-9,-42]],[[1265,7499],[-4,-16]],[[1261,7483],[-2,-7]],[[1259,7476],[-4,28],[-6,27],[0,34],[3,7],[-1,15],[-6,-36],[-8,28],[-6,4],[-3,28],[-3,25],[0,58]],[[1225,7694],[17,-1]],[[1218,7694],[6,0]],[[1224,7694],[1,-12],[-3,-32],[-3,19],[-1,25]],[[1243,7124],[5,0],[-5,-13],[0,13]],[[1232,7171],[0,17]],[[1232,7171],[0,0]],[[1295,7203],[1,-20],[8,-24],[-3,-6],[2,-21],[-6,-8],[-3,12],[2,8],[-5,13],[-3,-7],[-1,31],[3,4],[2,17],[3,1]],[[1287,7224],[2,-11],[-1,-22],[-6,-8],[-5,19],[2,18],[8,4]],[[1302,7174],[-5,19],[0,22],[-1,17],[4,-8],[3,-20],[3,2],[3,-28],[-4,-16],[-3,12]],[[1281,7291],[11,-42],[-8,-17],[-4,3],[1,24],[-1,31],[1,1]],[[1255,7279],[-1,12],[5,-6],[-5,-50],[-3,-47],[2,4],[-1,-36],[-2,6],[-1,36],[-2,-58],[-2,13],[-2,36],[2,30],[5,0],[-2,21],[-6,3],[1,10],[-3,22],[0,25],[3,-8],[2,22],[5,-11],[5,-24]],[[1254,7345],[13,-16],[9,-1],[3,-15],[2,-49],[-2,-11],[-5,19],[-4,32],[2,-45],[4,-4],[0,-15],[-3,-16],[-6,10],[0,-9],[-6,-3],[-2,45],[1,22],[-3,2],[-1,16],[-6,25],[4,13]],[[1297,7391],[3,-25],[-3,-22],[9,-9],[-3,-32],[7,-13],[1,-38],[7,2],[15,-39]],[[1333,7215],[2,-22],[-3,-16],[-4,1],[-5,-13],[2,-23],[-4,0],[-5,15],[-6,-14],[0,-17],[-4,-12],[2,-11],[0,-19],[-4,-10],[-3,18]],[[1301,7092],[4,14],[1,27],[2,0],[0,39],[5,7],[-4,5],[-2,22],[-5,7],[-1,13],[-4,14],[2,26],[-5,-1],[-1,14],[-8,17],[-4,30],[3,-6],[-1,24],[-1,-13],[-11,16],[-6,13]],[[1265,7360],[6,11],[4,-10],[4,27],[10,18],[8,-15]],[[1195,7482],[-10,-1]],[[1185,7481],[-1,0]],[[1184,7481],[0,0]],[[1184,7481],[1,32],[10,-31]],[[1181,7531],[5,-16],[-3,-31],[-3,12],[1,35]],[[1265,7360],[-1,18],[11,6],[-8,7],[-3,27],[2,16],[-6,10],[3,19],[11,-28],[-7,27],[-4,7],[0,22]],[[1264,7497],[1,2]],[[1274,7541],[3,-28],[6,-30],[8,-64],[6,-28]],[[1242,7537],[0,0]],[[1246,7543],[-1,-7],[9,-59],[0,-23],[-2,1],[-8,71],[0,-19],[-2,5],[6,-50],[5,-22],[0,-22],[-5,3],[7,-23],[-3,-15],[-6,17],[1,-35],[-4,-7],[-2,-14],[-6,-13],[-2,21],[1,25],[4,9],[0,15],[-7,60],[0,21],[-3,42],[2,7]],[[1198,7513],[-3,-30]],[[1195,7483],[-11,44],[1,22],[4,-7],[2,10],[5,-2],[4,16],[9,-21],[-5,-23],[-3,-11],[4,-4],[6,24],[3,4],[10,-13],[2,-14],[-3,-16],[-6,12],[8,-28],[-8,-4],[-5,13],[-14,28]],[[1230,7548],[-1,-17],[-3,18],[-2,40],[7,-34]],[[1141,7662],[12,20]],[[1153,7682],[19,47],[7,1],[3,18]],[[1182,7748],[16,-17],[6,-12],[3,-22],[-5,-46],[6,-8],[4,-15],[2,-22],[-5,0]],[[1209,7606],[1,-23],[-4,10],[-8,-9],[1,20],[-3,41],[-3,20],[9,13],[-8,5],[-4,29],[2,-38],[-2,-21],[-8,16],[-1,25],[-3,-15],[-7,13],[-4,-11],[8,-5],[6,-14],[-3,-5],[8,-16],[-5,-17],[5,8],[4,-5],[4,-43],[-6,-12],[0,9],[-7,-11],[-3,10],[1,-26],[-7,27],[-7,3],[-15,41],[-9,37]],[[1222,7764],[-9,-1]],[[1213,7763],[-1,2]],[[1212,7765],[-9,70]],[[1203,7835],[7,13],[7,-19],[5,-25],[-2,-25],[2,-15]],[[1225,7694],[-1,0]],[[1218,7694],[-5,69]],[[1222,7764],[2,-12],[8,-6],[0,-11],[6,-11],[4,-31]],[[1212,7765],[-1,-23],[-4,3],[6,-27],[-1,-25],[7,-65],[0,-10],[3,-40],[-1,-21],[-6,-1],[-3,17],[-3,33]],[[1182,7748],[0,38],[5,0],[2,17],[-4,8],[12,12],[6,12]],[[1202,7390],[4,-22],[1,-24],[-1,-15],[-7,-4],[1,64],[2,1]],[[1232,7171],[-3,14],[-7,54],[2,16],[-4,-3],[2,25],[-5,-2],[1,15],[-5,2],[-1,24],[5,17],[-5,12],[1,28],[-5,-2],[-4,21],[6,1],[-4,8],[2,20],[6,6],[-1,-12],[4,3],[6,-17],[5,0],[-1,-24],[5,-69],[2,-49],[-2,-71]],[[1195,7482],[0,1]],[[1198,7513],[15,-37],[4,-18],[3,10],[5,0],[3,-52],[-7,-3],[-3,11],[-18,46],[7,-33],[1,-26],[-5,-16],[-3,4],[-5,26],[6,-16],[-10,38],[1,7],[-5,20],[-2,7]],[[393,8405],[8,-5],[-9,-28],[-1,34],[2,-1]],[[402,8450],[9,-22],[1,-20],[4,-21],[0,-18],[-7,24],[-18,16],[1,18],[4,23],[6,0]],[[413,8493],[9,-10],[6,-16],[-7,-19],[-4,-22],[-5,-1],[-7,25],[-6,8],[0,13],[6,17],[8,5]],[[454,8495],[6,0],[0,-16],[5,0],[0,-17],[6,0],[0,-15],[31,0]],[[502,8447],[-4,-22],[0,-64],[-1,0],[0,-65],[4,0],[0,-47],[10,-1]],[[511,8248],[2,-14],[6,-2],[-14,-23],[-10,-25],[-9,-6],[-12,-16],[-13,6],[-5,8],[-18,-20],[-7,6],[-7,-28],[-9,7],[0,-24],[-4,-22],[-1,-19],[-10,-15],[-8,8],[-9,-12]],[[383,8057],[-2,11],[7,8],[-11,32],[0,-21],[-6,1],[-2,26],[1,9],[-6,5],[-2,22],[4,12],[-5,13],[-5,-11],[-1,26],[11,8],[-6,6],[-4,19],[14,6],[-4,30],[2,26],[11,53],[6,21],[6,-1],[9,39],[9,-9],[9,-40],[-2,46],[-4,18],[0,12],[8,6],[1,18],[7,17],[6,-14],[7,5],[6,27],[7,12]],[[462,7926],[2,-13],[-2,-7],[0,20]],[[354,7965],[2,-19],[6,4],[6,-10],[-2,-44],[5,-24],[-13,-12],[-5,-21],[-6,20],[-5,-1],[-11,26],[-3,0],[-7,15],[-2,22],[3,9],[13,-6],[1,12],[10,22],[9,-2],[-1,9]],[[165,7998],[2,-17],[8,-22],[6,-2],[4,-13],[-10,0],[-10,31],[-3,4],[3,19]],[[389,8058],[1,-11],[7,6],[-1,-15],[6,1],[6,-8],[1,-19],[-5,-19],[-4,-5],[2,-13],[-4,-6],[-3,-28],[-4,1],[-8,24],[5,20],[-7,-8],[-6,10],[13,30],[-2,14],[4,6],[-1,20]],[[511,8248],[36,0],[0,16],[20,0],[0,16],[41,2],[0,-18],[59,0],[34,0],[0,17],[9,0],[0,16],[9,0],[2,16]],[[721,8313],[0,-162]],[[721,8151],[-13,1],[0,-55],[1,0],[0,-42]],[[497,7669],[-1,-3]],[[489,7650],[-2,-15],[-10,-19],[-1,13],[-10,5],[8,12],[6,16],[-3,2],[-1,32],[7,24],[-7,1],[-2,-9],[-4,29],[2,29],[7,22],[-5,25],[-3,31],[-3,15],[-4,37],[1,11],[-7,31],[3,13],[3,38],[-1,6],[-4,-42],[-4,-10],[3,-26],[-1,-30],[-4,-11],[-16,-24],[-15,-9],[-11,8],[-2,21],[2,4],[-7,20],[-7,31],[-1,12],[4,16],[-1,12],[4,4],[-2,15],[4,0],[2,16],[4,4],[3,17],[7,-1],[0,-33],[4,3],[6,25],[-4,15],[-10,9],[6,1],[4,10],[-6,3],[-5,-13],[-1,34],[-5,-18],[2,-13],[-12,-6],[-2,16],[-6,-7],[-2,10],[-7,-5]],[[903,8477],[0,-40],[2,-18],[0,-115],[-16,0],[1,-16],[0,-128],[-7,0],[0,-9],[-35,0]],[[848,8151],[-20,0],[-2,10]],[[826,8161],[-4,6],[-7,-5],[-7,-20],[-3,-26],[-13,1],[-3,22],[-1,-15],[-10,-16]],[[778,8108],[0,11],[-10,0],[0,32],[-47,0]],[[721,8313],[0,81]],[[721,8394],[31,-1],[0,13],[67,100],[41,0],[0,26],[29,2]],[[889,8534],[14,0],[0,-57]],[[859,8695],[8,-16],[22,0]],[[889,8679],[0,-63],[0,-82]],[[721,8394],[16,82],[0,26],[-5,-1],[-5,9],[-2,24],[0,32],[17,1],[1,31],[5,0],[0,33],[6,1],[1,14],[6,1],[1,-10],[7,-4],[15,66],[45,-4],[30,0]],[[848,8151],[0,-107],[-8,-1],[0,-21]],[[840,8022],[-8,0],[0,20]],[[832,8042],[-5,20],[-4,-3],[-11,16],[-9,25],[7,31],[12,27],[4,3]],[[965,7882],[-9,-34],[0,10],[9,24]],[[865,7898],[-2,-18],[-4,-4],[6,22]],[[859,7893],[2,22],[3,-9],[-5,-13]],[[859,7922],[-3,-32],[-3,12],[6,20]],[[885,7950],[3,-1],[-2,-15],[5,7],[-8,-27],[-8,-40],[1,-12],[-6,-14],[-7,-2],[1,14],[13,43],[6,30],[2,17]],[[861,7957],[-1,-19],[-3,9],[4,10]],[[902,7976],[5,-4],[-1,-12],[7,5],[1,-8],[-10,-13],[-5,-15],[-2,8],[6,16],[-7,-4],[0,9],[6,18]],[[863,7934],[3,34],[6,-3],[-5,-50],[-4,19]],[[842,7871],[2,3],[1,90],[-3,7]],[[842,7971],[6,16],[5,-10],[5,19],[3,-14],[1,-19],[-10,-29],[6,-10],[-7,-22],[-3,-27],[-6,-4]],[[922,7996],[0,-6],[-11,-21],[-3,13],[14,14]],[[876,8014],[4,-5],[-5,-8],[1,13]],[[842,8013],[0,1]],[[842,8013],[0,0]],[[855,8027],[3,-18],[-4,6],[1,12]],[[842,7978],[0,32]],[[842,8010],[7,21],[0,-30],[4,25],[2,-27],[-4,-15],[-4,8],[-5,-14]],[[860,8058],[3,-21],[-6,-3],[3,24]],[[842,8021],[-2,1]],[[903,8477],[10,2],[0,7],[27,0],[0,-17],[16,-3],[41,0],[3,-23],[-4,-29],[4,-13],[-3,-29],[8,-3],[2,20],[12,-3],[0,-16],[5,-1],[0,-15],[5,-1],[0,-64],[4,-7],[0,-42],[23,0]],[[1056,8240],[0,-282]],[[1056,7958],[-6,9],[-16,-1],[0,17],[-39,-1],[-20,-89],[0,-8]],[[975,7885],[-10,27],[1,8],[-10,-1],[-3,17],[-7,4],[4,32],[0,26],[-6,-16],[-2,-14],[-7,-20],[-4,15],[-7,11],[-6,-4],[9,38],[-11,-7],[3,17],[-9,-16],[5,21],[-10,-9],[-7,1],[-1,8],[10,9],[5,11],[-11,-7],[-5,19],[3,32],[11,0],[-2,9],[-8,-2],[-11,-34],[-3,14],[-2,-15],[-6,-11],[-4,4],[0,35],[-3,-13],[1,-30],[-4,-4],[-3,-2],[-6,21],[3,26],[5,21],[1,17],[-7,-35],[-2,-15],[-3,12],[-4,-44],[-10,-20]],[[710,7776],[2,-11],[-6,-4],[4,15]],[[788,7774],[-3,-21],[1,24],[2,-3]],[[752,7967],[-3,-12],[2,26],[1,-14]],[[842,8021],[0,-11]],[[842,7978],[0,-7]],[[842,7871],[-12,8],[2,15],[-4,-2],[-4,-20],[-2,37],[0,-24],[-5,-17],[-2,-17],[-1,26],[-2,-53],[-9,33],[0,-15],[4,-8],[-4,-11],[0,-16],[-7,-9],[2,39],[-6,-52],[-4,14],[0,-21],[-4,0],[-7,-40],[-1,21],[-3,-22],[-7,9],[-2,-8],[-8,-9],[0,10],[-6,7],[2,28],[5,12],[7,0],[1,13],[7,10],[-1,8],[8,30],[-4,0],[-12,-30],[-4,3],[-6,22],[4,49],[8,34],[1,27],[3,5],[1,30],[-4,33],[9,12],[10,28],[9,19],[5,-20],[4,-4],[8,11],[4,-8],[15,-9],[2,-7]],[[778,8108],[-5,-27],[-9,-7],[-9,-29],[2,-23],[-4,0],[-5,-13],[-2,-13],[-5,-16],[-3,-38],[-4,-15],[-11,4],[7,-14],[3,-18],[-4,-29],[-2,-7],[-12,-3],[-1,-10],[8,0],[-2,-22],[-5,-11],[-5,3],[2,13],[-3,15],[0,-20],[-4,-26],[-7,-2],[3,-20],[-11,-17],[0,-27],[-3,-5],[2,-29],[3,11],[10,0],[4,-17],[6,-12],[1,-12]],[[1056,7958],[0,-15],[13,-17],[2,17],[13,-24],[8,29],[18,3],[-4,-49],[4,-17],[10,-17],[2,-26],[28,-97],[3,-49],[0,-14]],[[1141,7662],[-1,19],[-7,25],[-8,13],[2,15],[-6,-7],[-21,48],[-5,6],[-7,20],[4,9],[1,-5],[6,26],[-5,36],[4,16],[5,-25],[2,2],[-5,26],[-4,8],[-2,-18],[-4,-23],[-15,-24],[-15,8],[-17,27],[6,21],[-4,31],[-4,-8],[5,-16],[-7,-13],[-27,23],[-27,-7],[-10,-10]],[[1056,9469],[0,-495]],[[1056,8974],[-9,-24],[-2,-16],[-13,-34],[-9,4],[-8,-17],[-4,5],[-4,-34],[-3,-15],[-7,-4],[-12,-30],[1,-38],[-7,-19],[-8,6]],[[971,8758],[-2,22],[3,33],[-3,7],[5,9],[-1,10],[-10,-1],[-3,-9],[-13,14],[-8,-12],[-6,2],[-7,-10],[-3,12],[4,9],[-13,19],[-1,12],[4,18],[-6,9],[-6,-7],[-4,-14],[-11,-13],[-11,0],[-6,-12],[-31,1],[1,-114],[2,3],[9,-25],[5,-26]],[[502,8447],[1,48],[4,0],[0,49],[5,1],[0,14],[11,0],[0,16],[5,1],[0,16],[7,0],[-1,49],[-7,-1],[0,130],[5,1],[0,32],[6,0],[0,63],[5,0],[0,49],[-6,0]],[[537,8915],[0,81],[18,0],[0,31],[30,0],[0,65],[23,1],[0,-33],[12,0],[0,33],[12,0],[0,-16],[6,1],[0,-17],[12,0],[1,49],[18,-1],[0,28],[19,0],[1,16],[0,67],[-4,0],[0,17],[-12,0],[0,48],[1,17],[-6,0],[0,16],[-6,0],[0,16],[-6,0],[1,43]],[[657,9377],[64,-1],[84,0],[73,0],[39,0],[0,91],[46,4],[48,-3],[45,1]],[[971,8758],[-12,-19],[-14,-2],[-3,-11],[-8,-4],[-4,-13],[-6,8],[-8,-15],[-4,1],[-6,-21],[-17,-3]],[[1056,8974],[0,-734]],[[789,9842],[-1,-15],[-4,14],[5,1]],[[657,9377],[0,5],[-26,0],[0,19],[-25,-2],[-1,16],[-31,1],[-40,1],[0,12],[-11,1],[0,-13],[-27,0],[0,13],[-12,0],[0,-13],[-13,1],[0,13],[-21,1],[0,-12],[-49,-1],[0,-38],[-24,0]],[[377,9381],[-17,22],[-4,15],[-13,26],[6,8],[4,32],[0,56],[24,-4],[29,13],[9,11],[13,29],[11,43],[6,60],[-3,6],[12,35],[3,24],[9,20],[7,26],[5,-16],[-10,-9],[7,-2],[6,18],[8,0],[16,24],[15,35],[9,5],[-3,-37],[5,-26],[-1,35],[4,9],[-5,25],[-6,0],[13,33],[14,12],[-6,-10],[5,-9],[33,14],[14,22],[7,19],[13,46],[4,8],[6,-14],[10,-5],[1,-13],[13,-1],[1,-16],[-6,-18],[-12,-13],[6,-4],[-4,-13],[13,0],[4,6],[-1,16],[7,14],[3,17],[3,-13],[7,9],[7,-17],[-3,-20],[14,-22],[7,21],[12,1],[10,7],[9,-8],[3,-26],[3,27],[10,-11],[-6,-25],[0,-16],[11,-5],[-15,-7],[24,2],[-5,-23],[16,-4],[3,-10],[3,16],[12,2],[-1,-25],[9,16],[8,5],[7,15],[19,-4],[9,-17],[7,0],[3,-15],[11,5],[9,-22],[20,-15],[15,7],[15,-10],[4,6],[16,-32],[18,-4],[4,9],[34,19],[14,-14],[11,-21],[3,-15],[13,-11],[11,-29],[5,8],[6,-6],[0,-214]],[[537,8915],[-5,0],[0,-17],[-63,1],[-48,-1],[0,32],[-6,1],[0,32],[-7,0],[0,65],[-2,0],[0,64],[-3,20]],[[403,9112],[16,2],[2,-26],[-3,-12],[1,-22],[-2,-10],[2,-18],[6,-12],[4,6],[11,-5],[10,7],[3,-12],[6,-1],[10,8],[6,-20],[2,20],[8,35],[8,-9],[6,5],[-5,19],[-15,10],[-7,-12],[2,32],[-8,35],[-9,8],[-4,24],[4,15],[4,1],[9,-31],[-2,-25],[5,-19],[9,-20],[11,19],[11,-32],[15,3],[2,18],[-4,22],[-9,-2],[-5,13],[-9,-3],[-2,-19],[-7,-3],[-11,36],[2,30],[9,15],[-10,18],[-11,-11],[-10,-2],[-4,13],[-6,-6],[-22,18],[-4,55],[-7,36],[-11,21],[-23,57]],[[459,8563],[1,-15],[-9,4],[8,11]],[[201,8590],[1,-19],[18,-22],[14,26],[5,-3],[5,-14],[2,-23],[11,-10],[3,-13],[15,-4],[9,-7],[-5,-29],[-12,7],[-8,-29],[1,-10],[-6,-4],[2,15],[-6,21],[-10,7],[1,16],[-10,23],[-8,12],[-12,-15],[-4,-13],[-8,11],[-3,22],[5,55]],[[394,9104],[-4,-8],[-17,-18],[21,26]],[[454,8495],[7,34],[1,16],[8,-10],[-4,-10],[18,4],[11,10],[10,50],[-5,58],[-1,28],[-8,27],[-7,2],[1,21],[11,-2],[8,22],[0,19],[-3,20],[-7,17],[4,4],[-4,-1],[-6,-29],[-9,1],[-6,-14],[-7,-4],[-2,-12],[-9,-16],[-2,-27],[-5,-12],[-1,32],[-10,29],[-4,-12],[6,-15],[1,-18],[-14,29],[-20,-1],[-21,-22],[-8,9],[-25,18],[-7,27],[3,15],[-1,15],[-7,17],[-6,29],[6,-5],[6,12],[3,18],[9,-7],[6,-29],[5,-4],[6,14],[-4,8],[-8,2],[-2,-7],[-6,26],[-20,16],[-15,5],[-14,28],[-5,5],[8,24],[6,0],[0,16],[8,18],[3,-10],[10,25],[4,19],[11,17],[6,-10],[13,1],[3,7],[-11,16],[5,19],[8,11],[11,6],[1,-7],[8,28],[8,7]],[[1287,6940],[2,-10],[-1,-19],[-4,28],[3,1]],[[1328,6954],[1,-16],[-4,-11],[-4,14],[7,13]],[[1284,6989],[4,-30],[-2,-7],[-4,9],[2,11],[0,17]],[[1276,6999],[3,-21],[-1,-17],[9,-51],[1,-16],[-5,2],[-6,41],[-5,36],[1,26],[3,0]],[[1321,7000],[3,-15],[0,-28],[-7,3],[3,22],[-2,12],[3,6]],[[1269,7019],[4,-15],[-1,-10],[-5,-1],[0,22],[2,4]],[[1263,7031],[3,-6],[-6,-17],[3,23]],[[1267,7045],[-5,-7],[2,14],[3,-7]],[[1259,7057],[4,-3],[-3,-18],[-3,10],[2,11]],[[1269,7060],[2,-13],[-2,-9],[-3,15],[3,7]],[[1263,7110],[7,-13],[-6,2],[0,-16],[-4,17],[3,10]],[[1271,7124],[1,-26],[-3,13],[2,13]],[[1323,7131],[-5,-4],[5,13],[0,-9]],[[1267,7171],[4,-3],[0,-25],[-3,4],[-7,-13],[-2,-12],[-3,7],[5,31],[6,11]],[[1262,7207],[5,-6],[7,0],[4,-28],[-2,-14],[4,-18],[4,2],[5,-17],[5,-27],[0,-32],[3,8],[2,-20],[3,-17],[-8,20],[-6,-14],[7,6],[2,-24],[3,5],[4,-28],[-5,-9],[5,-3],[2,14],[1,-31],[-4,-8],[4,-5],[1,-26],[-4,0],[4,-12],[-2,-25],[-6,7],[-5,44],[-5,-1],[2,27],[-3,-7],[1,18],[-3,-5],[-7,22],[-7,3],[0,19],[5,0],[-3,17],[2,28],[-4,-9],[-5,8],[7,36],[-3,14],[-1,52],[-8,3],[-2,19],[1,14]],[[1333,7215],[8,-6],[4,-19],[5,-5],[1,-18],[5,-9],[4,5],[2,-21],[0,-19],[-4,-26],[1,-35],[4,-56],[-3,-16],[-3,-24],[-4,-28],[-9,-27],[-2,20],[-3,-21],[-2,7],[-3,42],[5,17],[-5,-5],[-2,19],[6,22],[0,75],[-9,51],[-5,-5],[-1,9],[-9,-25],[-4,-1],[3,-16],[-5,-53],[-6,16],[-1,29]],[[3118,92],[2,-6]],[[3120,86],[0,-17]],[[3120,69],[-4,1]],[[3116,70],[0,9]],[[3116,79],[1,8]],[[3117,87],[1,5]],[[3115,132],[0,-13]],[[3115,119],[-1,-1]],[[3114,118],[-2,11]],[[3112,129],[3,8]],[[3115,137],[0,-5]],[[3117,107],[2,-13]],[[3119,94],[-1,-2]],[[3117,87],[-2,1]],[[3115,88],[-1,3]],[[3114,91],[0,18]],[[3114,109],[3,-2]],[[3126,150],[-1,-30]],[[3125,120],[-1,0]],[[3124,120],[0,3]],[[3124,123],[0,27]],[[3124,150],[2,0]],[[3122,64],[1,-13]],[[3123,51],[-3,0]],[[3120,51],[0,15]],[[3120,66],[2,-2]],[[3122,106],[0,-12]],[[3122,94],[-3,0]],[[3117,107],[1,6]],[[3118,113],[4,-7]],[[3146,118],[0,-2]],[[3146,116],[1,-18]],[[3147,98],[-2,-17]],[[3145,81],[-1,10]],[[3144,91],[0,8]],[[3144,99],[1,17]],[[3145,116],[1,2]],[[3141,111],[1,-3]],[[3142,108],[0,-7]],[[3142,101],[-2,-7]],[[3140,94],[-1,11]],[[3139,105],[2,6]],[[3135,67],[3,-5]],[[3138,62],[-1,-7]],[[3137,55],[-3,1]],[[3134,56],[1,11]],[[3120,66],[0,3]],[[3120,86],[1,2]],[[3121,88],[1,-24]],[[3124,123],[-2,5]],[[3122,128],[0,0]],[[3122,128],[0,22]],[[3122,150],[2,0]],[[3144,142],[-1,-3]],[[3143,139],[-1,1]],[[3142,140],[1,6]],[[3143,146],[1,-4]],[[3128,88],[0,-4]],[[3128,84],[-3,1]],[[3125,85],[0,-1]],[[3125,84],[-1,7]],[[3124,91],[0,11]],[[3124,102],[4,-2],[0,-12]],[[3128,84],[-1,-29]],[[3127,55],[-1,4]],[[3126,59],[-1,26]],[[3139,121],[-1,-15]],[[3138,106],[-1,-2]],[[3137,104],[-1,10]],[[3136,114],[1,8]],[[3137,122],[1,6]],[[3138,128],[1,-7]],[[3135,150],[0,-21]],[[3135,129],[-1,0]],[[3134,129],[-2,-4]],[[3132,125],[0,10]],[[3132,135],[0,14]],[[3132,149],[3,1]],[[3131,150],[0,-18]],[[3131,132],[-1,-10]],[[3130,122],[0,-1]],[[3130,121],[-5,-1]],[[3126,150],[5,0]],[[3137,150],[-1,-26]],[[3136,124],[-1,5]],[[3135,150],[2,0]],[[3149,134],[0,-24]],[[3149,110],[0,4]],[[3149,114],[-2,16]],[[3147,130],[-1,13]],[[3146,143],[1,2]],[[3147,145],[2,-11]],[[3144,139],[1,-24]],[[3145,115],[-2,-3]],[[3143,112],[0,27]],[[3144,142],[0,-3]],[[3148,102],[1,-16]],[[3149,86],[0,-4]],[[3149,82],[-2,-8]],[[3147,74],[-2,6]],[[3145,80],[0,1]],[[3147,98],[1,4]],[[3132,88],[3,-13]],[[3135,75],[0,-8]],[[3134,56],[-2,-1]],[[3132,55],[0,33]],[[3132,88],[0,0]],[[3132,88],[0,0]],[[3149,110],[-1,-8]],[[3146,116],[3,-2]],[[3132,90],[0,-2]],[[3132,88],[-3,1]],[[3129,89],[2,26]],[[3131,115],[1,-25]],[[3138,148],[0,-17]],[[3138,131],[0,-3]],[[3137,122],[-1,2]],[[3137,150],[1,-2]],[[3118,117],[0,-4]],[[3114,109],[-1,6]],[[3113,115],[1,3]],[[3115,119],[3,-2]],[[3124,120],[0,-18]],[[3124,91],[0,0]],[[3124,91],[-2,3]],[[3122,106],[0,22]],[[3146,56],[-1,-3]],[[3145,53],[0,13]],[[3145,66],[1,-10]],[[3120,51],[-4,-2]],[[3116,49],[0,21]],[[3141,86],[0,-9]],[[3141,77],[-1,-3]],[[3140,74],[-2,14]],[[3138,88],[2,5]],[[3140,93],[1,-7]],[[3117,145],[1,-12]],[[3118,133],[0,-16]],[[3115,132],[2,13]],[[3115,88],[1,-9]],[[3116,49],[-3,9],[1,33]],[[3147,74],[0,-4]],[[3147,70],[2,-14]],[[3149,56],[-3,0]],[[3145,66],[0,13]],[[3145,79],[0,1]],[[3136,114],[-2,-6]],[[3134,108],[0,21]],[[3113,115],[-1,14]],[[3115,137],[1,18]],[[3116,155],[1,-10]],[[3126,59],[-3,-8]],[[3123,51],[2,33]],[[3143,112],[-1,-4]],[[3141,111],[0,8]],[[3141,119],[0,13]],[[3141,132],[1,8]],[[3130,121],[1,-6]],[[3129,89],[-1,-1]],[[3144,91],[-3,-5]],[[3140,93],[0,1]],[[3142,101],[2,-2]],[[3142,69],[-1,-17]],[[3141,52],[-4,3]],[[3138,62],[2,12]],[[3141,77],[1,-8]],[[3121,133],[1,-5]],[[3118,133],[3,0]],[[3145,79],[-3,-10]],[[3141,119],[-2,2]],[[3138,131],[2,2]],[[3140,133],[1,-1]],[[3121,133],[-1,18]],[[3120,151],[2,-1]],[[3132,125],[-2,-3]],[[3131,132],[1,3]],[[3139,105],[-1,1]],[[3131,150],[1,-1]],[[3147,130],[-1,-12]],[[3145,116],[0,-1]],[[3144,139],[2,4]],[[3145,53],[-4,-1]],[[3123,51],[0,0]],[[3121,88],[3,3]],[[3135,92],[1,0]],[[3136,92],[2,-4]],[[3135,75],[0,17]],[[3132,88],[3,4]],[[3134,108],[-2,-18]],[[3132,55],[-5,0]],[[3137,104],[-1,-12]],[[3116,155],[4,-4]],[[3150,81],[3,-9]],[[3153,72],[-2,-10]],[[3151,62],[-4,8]],[[3149,82],[1,-1]],[[3140,133],[1,13]],[[3141,146],[2,0]],[[3178,127],[1,-9],[-5,9],[4,0]],[[3156,127],[-2,-12]],[[3154,115],[0,-1]],[[3154,114],[0,17]],[[3154,131],[2,-4]],[[3152,138],[-1,-8]],[[3151,130],[-2,4]],[[3147,145],[5,-7]],[[3151,62],[-2,-6]],[[3154,114],[-1,-2]],[[3153,112],[-1,-2]],[[3152,110],[-1,1]],[[3151,111],[0,19]],[[3152,138],[2,-7]],[[3153,112],[3,-14]],[[3156,98],[-2,-6]],[[3154,92],[-2,5]],[[3152,97],[0,13]],[[3152,97],[-2,-16]],[[3149,86],[2,21]],[[3151,107],[0,4]],[[3151,107],[-2,3]],[[3157,112],[-3,3]],[[3156,127],[2,4],[-1,-19]],[[3157,112],[1,-10],[-2,-4]],[[3154,92],[-1,-20]],[[3164,89],[3,-5],[-7,-9],[-1,7],[5,7]],[[3181,19],[4,-11],[-7,-8],[0,12],[3,7]],[[3138,148],[3,-2]],[[2929,4276],[0,0]],[[2776,2882],[0,0]],[[2491,2230],[1,-3]],[[2491,2232],[0,0]],[[2492,2227],[0,0]],[[2466,2148],[0,0]],[[2747,1840],[0,0]],[[2751,1785],[0,0]],[[842,8014],[0,0]]],"transform":{"scale":[0.035867454651151036,0.0053667111220030185],"translate":[-178.8716846945846,17.680841450221845]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment