Skip to content

Instantly share code, notes, and snippets.

@HarryStevens
Last active January 15, 2022 18:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save HarryStevens/7518a2ee0ad35172b8ff4782a6ccd2df to your computer and use it in GitHub Desktop.
Save HarryStevens/7518a2ee0ad35172b8ff4782a6ccd2df to your computer and use it in GitHub Desktop.
Scale Bar With Zooming
license: gpl-3.0

This block uses d3-geo-scale-bar with d3-zoom to make a map with a scale bar that updates as the user zooms in and out.

<!DOCTYPE html>
<html>
<head>
<style>
body {
display: table;
margin: 0 auto;
}
svg {
overflow: visible;
}
.state {
fill: #eee;
stroke: #ccc;
}
</style>
</head>
<body>
<script src="https://d3js.org/d3.v6.min.js"></script>
<script src="https://unpkg.com/topojson-client@3"></script>
<script src="https://unpkg.com/d3-geo-scale-bar@1"></script>
<script>
const projection = d3.geoAlbers();
const path = d3.geoPath(projection);
const scaleBar = d3.geoScaleBar()
.projection(projection)
.left(.1)
.top(.9)
.units(d3.geoScaleMiles)
.tickFormat(d => d)
.zoomClamp(false);
const zoom = d3.zoom()
.scaleExtent([1, 20])
.on("zoom", event => {
const { transform } = event;
g.attr("transform", transform);
scaleBar.zoomFactor(transform.k);
bar.call(scaleBar);
});
const svg = d3.select("body").append("svg");
const g = svg.append("g");
const bar = svg.append("g");
d3.json("ne_50m_admin_1_states_provinces_lakes.json")
.then(data => {
const geojson = topojson.feature(data, data.objects.ne_50m_admin_1_states_provinces_lakes);
const states = g.selectAll(".state")
.data(geojson.features)
.enter().append("path")
.attr("class", "state");
draw();
addEventListener("resize", draw);
function draw(){
const width = Math.min(innerWidth, 800);
const height = width * .63;
projection.fitSize([width, height], geojson);
scaleBar.size([width, height]);
zoom.translateExtent([[0, 0], [width, height]]);
svg
.attr("width", width)
.attr("height", height)
.call(zoom);
bar.call(scaleBar);
states
.attr("d", path)
.on("mouseover", function(){
d3.select(this).style("stroke", "black").raise();
})
.on("mouseout", function(){
d3.select(this).style("stroke", "#ccc");
});
}
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","arcs":[[[18860,5266],[-12,-8],[-55,-94],[-195,-30],[11,21],[41,4],[58,30],[-12,49],[-22,55],[-21,6],[-13,32],[0,101],[-13,59],[-31,61],[-11,-12],[-23,-104],[-20,-136],[-9,-44],[-58,-3],[-51,9],[-25,-2]],[[18399,5260],[-7,186],[-5,169],[-5,170],[-6,169],[-5,169],[-5,170],[-6,169],[-5,170],[12,166],[13,167],[12,167],[13,166],[12,167],[12,167],[13,167],[12,166],[12,167],[13,167],[12,166],[12,167],[13,167],[12,167],[13,166],[12,167],[3,42],[1,15],[1,21],[-44,60]],[[18514,9437],[-9,12],[-6,11],[6,0],[81,-1],[82,-1],[81,-2],[81,-1],[81,-1],[82,-2],[81,-1],[81,-2],[82,-1],[81,-1],[81,-2],[81,-1],[82,-1],[81,-2],[81,-1],[82,-1]],[[19806,9439],[13,-116],[13,-115],[14,-115],[13,-116],[14,-115],[13,-115],[13,-116],[14,-115],[13,-115],[13,-116],[14,-115],[13,-115],[14,-116],[13,-115],[13,-115],[14,-116],[12,-52],[10,-85],[72,-251],[21,-105],[-6,-44],[9,-37],[23,-31],[-4,-35],[-32,-41],[-21,-49],[-15,-87],[0,0],[-30,-153],[-1,-94],[30,-128],[0,0],[6,-56],[-19,-250],[12,-161],[31,-105]],[[20118,5829],[-164,0],[-164,0],[-163,0],[-164,0],[-164,0],[-164,0],[-164,0],[-164,0],[-7,-65],[4,-62],[17,-59],[73,-112],[7,-27],[-13,-86],[3,-61],[-8,-32],[-18,-28],[-5,-31]],[[18565,5153],[-44,-19],[-66,2],[-14,6],[27,13],[78,17],[19,-19]],[[17738,10342],[-3,-17],[11,-36],[0,-20],[-8,-13],[-17,-7],[-13,-9],[-3,-15],[0,-7],[1,-17],[2,-16],[-8,-20],[-59,-50],[-24,-64],[8,-79],[-20,-80],[-50,-81],[-22,-90],[8,-100],[-25,-80],[-58,-61],[-19,-38],[0,-3]],[[17439,9439],[0,-28],[6,-23],[-19,-41],[-49,-43],[-26,-42],[-4,-41],[-11,-20],[-21,-9],[-13,-60],[-10,-142],[-26,-81],[-42,-20],[-22,-32],[-3,-44],[-25,-50],[-47,-57],[-15,-55],[16,-51],[-3,-21],[-15,-17],[-51,-24],[-8,-12],[-5,-14],[10,-26],[6,-40],[-7,-66],[-13,-28],[-12,-27],[-42,-46],[-12,-36],[19,-26],[-1,-28],[-21,-30],[6,-33],[5,-22],[19,-20],[7,-55],[-14,-72],[3,-58],[23,-49],[5,-21],[-23,-160],[1,-22]],[[17005,7647],[-99,0],[-91,-1],[-91,0],[-91,0],[-91,0],[-91,0],[-91,-1],[-91,0],[-91,0],[-92,0],[-91,0],[-91,-1],[-91,0],[-91,0],[-91,0],[-91,0]],[[15540,7644],[-1,122],[0,122],[-1,123],[-1,122],[-26,21],[-47,10],[-24,-7],[-28,6],[-19,-20],[-13,-4],[-10,5],[-7,17],[-21,13],[-26,44]],[[15316,8218],[1,98],[2,98],[1,98],[2,98],[1,98],[1,98],[2,99],[1,98],[2,98],[1,98],[2,98],[1,98],[1,98],[2,98],[1,98],[2,98],[-12,126],[-11,125],[-11,126],[-12,126],[-11,125],[-11,126],[-12,126],[-11,125]],[[15248,10792],[141,0],[141,0],[141,0],[141,0],[141,0],[142,0],[141,0],[141,0],[141,0],[141,0],[141,0],[141,0],[141,0],[142,0],[141,0],[141,0],[22,-70],[22,-46],[4,-34],[-4,-34],[-38,-73],[-34,-34],[-18,-36],[-26,-35],[-39,-96],[83,2],[83,2],[84,2],[93,2]],[[7936,6124],[-115,-1],[-179,0],[-179,-1],[-179,0],[-179,-1],[-179,-1],[-241,134],[-240,134],[-240,133],[-240,134],[-241,133],[-240,134],[-240,133],[-241,134],[25,51],[32,136]],[[5060,7376],[2,8],[0,0],[70,9],[33,35],[20,62],[4,64],[-11,64],[-30,48],[-50,32],[-28,88],[-8,145],[9,79],[26,11],[25,36],[23,59],[18,65],[11,71],[2,89],[-7,108],[46,132],[45,82],[84,101],[19,30],[1,25],[0,3],[-18,34],[-75,70],[-32,50],[-3,46],[-1,1],[-10,44],[-81,185],[-27,102],[1,76]],[[5118,9430],[0,6],[9,320],[-29,111],[-7,63],[9,77],[-3,48],[-13,41],[-4,76],[-1,94],[-23,59],[-5,27],[13,65],[24,33],[38,23],[45,8],[50,-7],[38,-29],[25,-50],[25,-26],[25,-1],[32,41],[30,89],[9,6],[1,389],[0,353]],[[5406,11246],[159,0],[158,0],[158,0],[158,0],[158,0],[158,-1],[159,0],[158,0],[158,0],[158,0],[158,-1],[158,0],[158,0],[159,0],[158,0],[158,-1]],[[7937,11243],[0,-319],[0,-320],[0,-320],[0,-320],[0,-320],[0,-320],[0,-320],[0,-320],[0,-320],[0,-320],[0,-320],[0,-320],[-1,-320],[0,-320],[0,-320],[0,-320]],[[5060,7376],[-58,-10],[-145,-19],[-145,-19],[-145,-20],[-145,-19],[-145,-19],[-145,-20],[-145,-19],[-145,-19],[-1,5],[-4,99],[-23,35],[-31,-21],[-13,128],[7,61],[-3,59],[-29,145],[-75,176],[-163,220],[-83,73],[-65,93],[-41,25],[-52,7],[-15,-41],[-59,28],[9,103],[-57,144],[-47,16],[-119,-10],[-158,79],[-46,47],[-16,85],[-74,73],[-98,72],[-54,-17],[-71,11],[-101,52],[-59,6],[-115,-15],[-43,11],[-40,65],[-43,33],[9,80],[-5,73],[6,56],[-19,124],[15,115],[-13,41],[-25,32],[-76,47],[-14,59],[13,82],[-20,53],[-63,51],[-58,114],[-74,62],[-30,105],[-46,64],[-16,58],[-101,204],[-108,160],[-16,92],[-5,126],[43,77],[23,67],[-3,62],[-6,45],[-37,80],[-144,47],[-117,195],[-7,149],[-46,153],[0,100],[-7,107],[34,24],[32,-9],[-4,-42],[11,-77],[36,-58],[35,-25],[32,-57],[24,-17],[24,-4],[-13,36],[-14,23],[-17,75],[-32,95],[-38,53],[-19,96],[-16,22],[-10,36],[36,42],[49,30],[66,8],[188,-14],[40,24],[33,-8],[24,4],[-51,25],[-29,-8],[-33,5],[-67,-5],[-27,11],[-30,30],[-20,3],[-62,-53],[-27,7],[-66,57],[-28,8],[-46,-33],[-6,-140],[15,-104],[-28,-10],[-32,43],[-49,25],[-40,39],[-57,73],[-30,26],[-34,-60],[-1,28],[17,70],[-5,117],[51,-93],[-16,66],[-40,72],[-30,25],[-38,131],[-85,78],[-69,126],[-140,209],[-9,184],[-51,232],[21,132],[-3,94],[-25,142],[-26,76],[-113,211],[-109,143],[-17,107],[-8,108],[24,97],[21,101],[15,27],[6,-11],[-4,-22],[15,-6],[6,44],[9,24],[-16,3],[2,14],[9,28],[34,133],[-3,168],[36,206],[-2,68],[-23,147],[-23,87],[-41,63],[18,90],[-1,87],[-9,15]],[[244,15756],[138,0],[134,0],[133,0],[134,0],[134,0],[133,0],[134,0],[133,0],[134,0],[134,0],[133,0],[134,0],[133,0],[134,0],[134,0],[133,0]],[[2386,15756],[0,-170],[0,-169],[0,-169],[0,-169],[0,-170],[0,-169],[0,-169],[0,-169],[0,-170],[0,-169],[0,-169],[0,-169],[1,-169],[0,-170],[0,-169],[0,-169],[118,-148],[119,-147],[119,-148],[118,-147],[119,-148],[119,-147],[118,-148],[119,-147],[93,-125],[93,-124],[93,-125],[93,-124],[93,-124],[92,-125],[93,-124],[93,-124],[129,-179],[129,-179],[128,-179],[129,-179],[129,-179],[128,-178],[129,-179],[138,-191]],[[2446,8607],[103,-46],[56,22],[10,-22],[-7,-20],[-125,-35],[-38,25],[-4,33],[-13,33],[18,10]],[[2231,8558],[-27,-3],[-41,10],[14,21],[23,15],[8,-11],[23,-32]],[[2365,8462],[-36,-13],[-27,12],[-43,87],[91,11],[39,-37],[6,-11],[-30,-49]],[[3224,7981],[25,-67],[-37,9],[-38,-4],[-12,36],[-11,50],[-8,13],[-26,5],[-2,4],[-3,25],[7,11],[83,-56],[22,-26]],[[2671,7829],[-22,-2],[-31,9],[-16,48],[25,3],[24,-6],[18,-38],[2,-14]],[[3222,7477],[-29,-8],[-33,18],[-28,88],[-31,68],[17,19],[25,-65],[63,-100],[16,-20]],[[7937,11243],[0,226],[0,226],[0,225],[0,226],[0,226],[0,225],[0,226],[0,225],[0,226],[0,226],[0,225],[0,226],[0,226],[0,225],[0,226],[0,225]],[[7937,14853],[159,0],[159,0],[159,0],[159,0],[160,0],[159,0],[159,0],[159,0],[159,0],[159,0],[159,0],[160,0],[159,0],[159,0],[159,0],[159,0]],[[10483,14853],[127,0],[126,0],[126,0],[127,0],[126,0],[127,0],[126,0],[127,0],[0,-113],[0,-112],[0,-113],[0,-113],[0,-113],[0,-112],[0,-113],[0,-113]],[[11495,13951],[0,-169],[1,-169],[0,-170],[1,-169],[0,-169],[0,-169],[1,-169],[0,-170],[0,-169],[1,-169],[0,-169],[0,-170],[1,-169],[0,-169],[1,-169],[0,-170]],[[11501,11243],[-125,0],[-125,0],[-126,0],[-125,0]],[[11000,11243],[-191,0],[-192,0],[-191,0],[-192,0],[-191,0],[-191,0],[-192,0],[-191,0],[-192,0],[-191,0],[-192,0],[-191,0],[-192,0],[-191,0],[-192,0],[-191,0]],[[26810,15766],[0,-49],[0,-67],[1,-50],[0,-68],[1,-77],[0,-71],[0,-62],[-1,-37],[-3,-56],[-13,-22],[-6,-52]],[[26789,15155],[-45,5],[-73,-13],[-97,-31],[-53,18],[-55,-33],[-186,-8],[-40,17],[-50,-62],[-80,-37],[-203,-139],[-24,-27]],[[25883,14845],[-26,57],[-21,45],[41,35],[31,27],[30,25],[19,16],[-16,35],[-15,35],[4,85],[4,86],[4,86],[4,85],[4,86],[4,86],[5,86],[4,85]],[[25959,15805],[42,-2],[43,-3],[42,-2],[43,-2],[43,-3],[42,-2],[43,-3],[43,-2],[0,-24],[22,3],[3,21],[61,-1],[60,-2],[61,-1],[60,-1],[61,-2],[60,-1],[61,-1],[60,-1],[1,-10]],[[24160,12948],[-12,23],[-24,19],[-11,7]],[[24113,12997],[41,61],[27,-53],[29,-58],[-45,-74],[-5,75]],[[25170,12556],[-55,0],[-112,0],[-112,0],[-51,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-4,143],[-5,143],[-5,143],[-5,143],[-5,143],[-5,143],[-5,143],[-5,143]],[[24791,13700],[38,72],[17,22],[21,11],[63,4],[45,-25]],[[24975,13784],[-22,-32],[-19,-57],[-43,-69],[3,-46],[7,-33],[-3,-69],[27,-67],[55,-109],[10,-171],[41,-114],[64,-132],[49,-38],[2,-50],[-22,-81],[-30,-37],[39,7],[19,-19],[19,-68],[-1,-43]],[[20118,5829],[21,-71],[40,-147],[1,-35],[48,-5],[81,-9],[80,-8],[81,-9],[81,-8],[81,-8],[80,-9],[81,-8],[81,-9],[81,-8],[81,-9],[80,-8],[81,-8],[81,-9],[81,-8],[80,-9],[81,-8],[1,-30],[13,-47],[3,-53],[6,-26],[16,-16],[26,-3],[25,30],[17,65],[4,75],[-10,84],[1,71],[13,42],[15,10],[13,22],[11,5],[28,-12],[105,-60],[86,-8]],[[21893,5585],[24,-81],[36,-335],[25,-116],[44,-314],[73,-304],[104,-367],[170,-445],[21,-64],[-23,-54],[-6,-55],[-2,-84],[6,-82],[20,-100],[39,-153],[-22,30],[-56,220],[-6,129],[8,182],[-14,-4],[-10,-59],[-6,-70],[-14,-27],[-20,106],[2,48],[20,57],[-6,20],[-33,29],[-7,45],[4,44],[-19,24],[-15,-1],[10,-110],[16,-68],[20,-162],[31,-98],[19,-82],[215,-879],[50,-112],[19,-80],[20,-169],[4,-215],[-35,-395],[-8,-269],[-5,8],[-3,29],[-8,4],[-31,-124],[-41,-111],[-14,-173],[-20,-86],[-59,-92],[-37,3],[-91,-69],[-64,18],[-76,-39],[-50,5],[-28,81],[4,37],[12,36],[19,9],[67,-86],[13,36],[-21,43],[-38,24],[-29,26],[-58,196],[-59,133],[-10,90],[-104,55],[-74,82],[-49,147],[-28,261],[-33,29],[-13,21],[32,96],[34,82],[-27,-21],[-20,-30],[-25,-71],[-19,-11],[-16,11],[-20,137],[6,169],[27,63],[-42,2],[-43,-24],[6,-56],[-6,-31],[-31,8],[-24,19],[-33,59],[-44,112],[-91,308],[-17,43],[-30,46],[14,14],[26,8],[58,139],[46,84],[15,58],[-3,25],[-20,36],[-27,-32],[-11,9],[-30,73],[-29,20],[-19,-15],[21,-60],[18,-22],[-7,-87],[-7,-28],[-18,-25],[-28,14],[-14,-22],[-16,23],[-16,38],[-19,62],[48,353],[45,225],[5,256],[3,38],[-3,68],[-60,148],[-264,362],[-205,428],[-177,160],[-135,-35],[-23,-32],[-10,-43],[9,-47],[-13,-20],[-36,2],[-48,-11],[-127,-112],[-45,4],[-41,-29],[-30,-22],[-80,-12],[-67,-25],[-29,13],[-19,66],[0,67],[15,-52],[24,-40],[11,16],[4,36],[-24,70],[-76,91],[-87,131],[27,-4],[6,28],[-27,37],[12,43],[19,45],[-37,-7],[-33,-31],[-1,-39],[-6,-31],[-18,5],[-33,38],[-162,106],[-141,61],[108,27],[59,-21],[-7,32],[-14,20],[-47,26],[-59,-10],[-37,13],[-38,-26],[-42,-38],[-38,-20],[-145,-28],[-119,-29],[19,31],[20,20],[70,31],[11,64],[-17,62],[-18,-15],[-19,-48],[-24,35],[-26,0],[-7,-77],[-34,-52],[-15,-51],[-99,-41],[-13,13],[29,50],[-2,27],[-21,-15]],[[20168,4603],[-51,-33],[-55,24],[35,4],[24,-9],[63,46],[33,36],[38,13],[-87,-81]],[[22561,2469],[8,-66],[-47,154],[-57,242],[-31,187],[21,-51],[20,-105],[86,-361]],[[21599,1814],[0,-53],[-26,89],[-17,98],[24,-32],[19,-102]],[[21623,1725],[-18,-24],[-37,18],[-20,31],[-8,60],[31,-64],[12,-15],[40,-6]],[[22462,541],[-101,-169],[11,42],[39,91],[13,43],[27,27],[24,49],[2,57],[36,40],[12,6],[-63,-186]],[[22332,326],[-14,-5],[20,39],[6,-3],[-12,-31]],[[22235,236],[-10,0],[5,13],[20,25],[7,-10],[-1,-12],[-21,-16]],[[22126,157],[-23,-21],[-24,16],[26,21],[79,23],[-30,-29],[-28,-10]],[[21979,98],[-15,-19],[-8,6],[0,27],[-21,60],[1,15],[49,-58],[1,-16],[-7,-15]],[[21861,52],[-33,-9],[27,36],[9,53],[15,-42],[0,-25],[-18,-13]],[[21751,2],[-13,-2],[-1,14],[22,17],[15,-1],[0,-19],[-23,-9]],[[19806,9439],[164,-3],[165,-3],[164,-3],[165,-3]],[[20464,9427],[153,3],[153,3],[154,3],[153,3]],[[21077,9439],[-3,-1],[-25,-61],[-74,-115],[-20,-87],[96,-99],[0,-1],[57,-79],[39,-31],[40,-9],[25,-26],[15,-64],[0,0],[116,-315],[0,0],[120,-162],[49,-80],[24,-77],[103,-127],[35,-69],[2,-51],[12,-37],[23,-21],[21,-47],[21,-71],[41,-62],[61,-52],[45,-120],[29,-188],[28,-108],[44,-46],[61,-160],[19,-95],[-1,-84],[31,-65],[102,-72]],[[22213,6757],[-26,-76],[-62,-48],[-19,2],[-15,-14],[9,-34],[15,-25],[0,-23],[-16,-31],[-33,-9],[-18,-36],[6,-33],[11,-19],[-3,-32],[-36,-33],[-9,-32],[18,-9],[14,9],[11,-7],[-22,-53],[-20,-33],[-19,-58],[-44,-16],[2,-19],[25,-17],[20,-45],[-38,-83],[-25,7],[-14,18],[-10,-65],[4,-35],[-9,-72],[-15,-86],[-10,-35],[2,-66],[6,-64]],[[21936,5802],[-22,-220],[-10,78],[-1,76],[17,44],[16,22]],[[16857,14293],[-44,47],[-8,34],[-36,34],[-6,21],[-27,19],[-25,66],[-128,-1],[-128,-2],[-128,-1],[-128,-1],[-127,-2],[-128,-1],[-128,-1],[-128,-2],[-128,-1],[-128,-1],[-127,-2],[-128,-1],[-128,-1],[-128,-1],[-128,-2],[-126,-1]],[[14667,14493],[-31,67],[-17,63],[11,29],[2,101],[-7,172],[-12,97],[-18,22],[-2,30],[14,38],[-5,26],[-22,13],[-7,33],[9,53],[-6,32],[-19,11],[-8,18],[3,24],[-10,16],[-24,7],[-10,59],[5,111],[-9,79],[-23,46],[-11,43],[0,41],[-24,64],[-48,87],[-31,115],[-14,142],[-34,80],[-15,4]],[[14304,16216],[-13,75],[-14,33],[-2,25],[-42,64],[-3,25],[6,31],[27,61],[25,100],[5,67],[20,50],[1,28],[-3,36],[-12,32],[-33,24],[-4,10],[-3,36],[14,23],[4,27],[-4,32],[-20,55],[-9,57],[74,3]],[[14318,17110],[165,0],[164,0],[165,0],[165,0],[165,0],[165,0],[164,0],[165,0],[165,0],[165,0],[165,0],[164,0],[165,0],[165,0],[165,1],[167,0]],[[16957,17111],[4,-56],[9,-41],[21,-33],[31,-25],[5,-48],[-20,-70],[-7,-88],[6,-105],[16,-94],[24,-84],[56,-62],[86,-39],[51,-60],[16,-81],[3,-7]],[[17258,16218],[31,-62],[53,-55],[31,-52],[7,-48],[32,-52],[58,-55],[33,-48],[9,-42],[-1,-66],[-12,-88],[-21,-64],[-30,-38],[-22,-55],[-14,-70],[-45,-65],[-76,-59],[-85,-40],[-94,-22],[-55,-51],[-17,-80],[8,-68],[33,-54],[19,-57],[5,-60],[-24,-100],[-51,-140],[-58,-91],[-62,-41],[-28,-61],[6,-80],[-5,-45],[-26,-16]],[[3887,22066],[163,0],[216,0],[123,0]],[[4389,22066],[0,-222],[0,-223],[0,-224],[0,-223],[54,-91],[40,-55],[26,-60],[39,-63],[8,-23],[14,-67],[-10,-49],[21,-49],[-4,-25],[-16,-12],[-3,-4],[1,-5],[5,-9],[56,-47],[54,-66],[69,-46],[22,-27],[91,-132],[47,-85],[50,-61],[24,-71],[52,-61],[12,-31],[4,-7],[7,-1],[31,15],[9,-4],[15,-25],[4,-37],[11,-15],[20,-9],[22,-2],[70,17],[15,0],[7,-7],[4,-20],[-1,-32],[-7,-46],[-21,-46],[3,-42],[-16,-99],[-16,-66],[-1,-64],[-20,-37],[11,-44],[-7,-67],[6,-17],[25,-31],[10,-82],[-4,-16],[-45,-32],[-15,-21],[-6,-30],[20,-87],[-19,-47],[-2,-41],[4,-11],[41,-22],[49,-49],[16,-10],[11,2],[21,16],[23,33],[48,33],[56,72],[3,20],[4,11],[7,-1],[18,-9],[35,-44],[31,-24],[5,-5],[3,-12],[-2,-43],[17,-34],[5,-56],[18,-55],[12,-67],[46,-87],[25,-62],[27,-28],[17,-33],[12,-39],[5,-32],[-16,-58],[4,-23],[15,-27],[47,-60],[9,-5],[44,7],[24,-10],[23,-30],[24,-45],[16,-46],[4,-54],[24,-59],[4,-53],[15,-24],[30,-32],[29,-19],[11,-1],[8,8],[3,29],[11,23],[37,31],[34,0],[129,-27],[9,2],[6,9],[22,48],[18,19],[27,6],[80,-12],[92,7],[48,-14],[70,18],[81,-13],[10,8],[3,10],[-8,18],[-1,35],[16,43],[6,36],[16,20],[22,11],[18,-1],[17,-19],[20,-32],[34,-88],[18,-31],[23,-28],[33,-24]],[[6921,18010],[0,-141],[0,-141],[0,-140],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-140],[0,-141],[1,-141],[0,-141]],[[6922,15756],[-95,0],[-95,0],[-95,0],[-95,0],[-94,0],[-95,0],[-95,0],[-95,0],[-94,0],[-95,0],[-95,0],[-95,0],[-94,0],[-95,0],[-95,0],[-95,0]],[[5405,15756],[-188,0],[-188,0],[-189,0],[-188,0],[-189,0],[-188,0],[-188,0],[-189,0]],[[3898,15756],[0,201],[0,201],[0,202],[-1,201],[0,202],[0,201],[0,202],[-1,221],[0,4],[32,137],[7,66],[-8,37],[5,36],[20,35],[-1,38],[-21,41],[-38,28],[-56,13],[-29,48],[-2,84],[41,128],[87,173],[47,122],[8,72],[52,166],[95,260],[37,166],[-22,73],[-49,70],[-75,66],[-53,77],[-14,40]],[[3959,19367],[-17,48],[-9,62],[13,36],[-10,61],[-35,88],[-14,61],[3,21],[4,8],[0,145],[-1,145],[0,144],[-1,145],[0,145],[0,144],[-1,145],[0,145],[-1,144],[0,145],[-1,145],[0,144],[0,145],[-1,145],[0,144],[-1,144]],[[17258,16218],[233,-2],[228,-3],[229,-2],[228,-2],[228,-2],[228,-3],[65,0]],[[18697,16204],[-1,-141],[8,-117],[16,-52],[17,-38],[19,-25],[22,-76],[25,-127],[23,-84],[18,-35]],[[18844,15509],[-1,-240],[0,-271],[-1,-270],[-1,-271],[-1,-270],[0,-271],[-1,-271],[-1,-255],[0,-4],[-23,-28],[-16,-47],[4,-52],[-6,-37],[-17,-22],[8,-56],[32,-90],[19,-89],[7,-87],[-6,-63],[-28,-57],[-26,-123],[-23,-49],[-27,-17],[-25,-46],[-22,-75],[-23,-37],[-25,3],[-18,-14],[-12,-30],[2,-31],[15,-33],[-5,-31],[-25,-28],[1,-13],[7,-8],[-3,-14],[-15,-13],[-9,-42],[1,-69],[-9,-35],[-16,-1],[-2,-19],[27,-78]],[[18580,11955],[-16,-17],[-28,-64],[-6,-71],[17,-78],[-42,-63],[-101,-48],[-53,-43],[-6,-36],[7,-56],[20,-76],[3,-52],[-13,-29],[-72,20],[-131,68],[-88,-2],[-44,-73],[-16,-55],[6,-44]],[[18017,11236],[-36,54],[-24,25],[-5,-2],[-5,-7],[-2,-17],[1,-12],[4,-14],[-2,-9],[-6,0],[-26,21],[-31,60],[-37,100],[-8,79],[21,59],[0,61],[-21,65],[-10,63],[0,62],[-51,93],[-101,124],[-75,76],[-47,29],[-56,61],[-63,95],[-34,73],[-4,50],[29,133],[84,292],[9,34],[3,13],[-4,12],[-8,12],[-36,34],[-68,30],[-62,16],[-50,-35],[-44,70],[-38,176],[-92,185],[-147,195],[-86,132],[-23,70],[-21,105],[-18,139],[1,116],[29,139]],[[18844,15509],[3,-6],[19,-23],[16,-13],[11,-2],[6,-20],[29,-12],[52,-5],[48,8],[43,21],[107,82]],[[19178,15539],[125,0],[154,0],[153,0],[154,0],[154,-1],[153,0],[154,0],[0,-52]],[[20225,15486],[-2,-294],[-2,-294],[-1,-293],[-2,-294],[-2,-294],[-2,-293],[-1,-294],[-1,-299]],[[20212,13131],[-8,-9],[-12,-39],[13,-39],[-1,-32],[-13,-25],[4,-18],[24,-12],[9,-28],[-5,-44],[-51,-45],[-98,-51],[-21,-15],[-18,-6],[-8,3],[0,0],[-12,10],[-18,20],[-31,9],[-50,-6],[-20,-42],[10,-78],[-17,-60],[-44,-42],[-32,-55],[-19,-68],[-30,-42],[-42,-14],[-34,-64],[-25,-112],[-28,-69],[-31,-27],[-42,7],[-52,40],[-31,42],[-8,42],[-16,31],[-14,13],[-9,1],[-1,-7],[4,-11],[-5,-13],[-33,-5],[-14,-17],[5,-31],[-8,-22],[-18,-13],[-11,-29],[-1,-47],[-13,-42],[-26,-38],[-37,13],[-49,64],[-51,15],[-50,-35],[-38,-46],[-25,-59],[-24,-15],[-35,45],[-83,62],[-43,13],[-31,-15],[-21,7],[-8,17],[-5,7],[-7,-8],[0,-54],[-8,-34],[-14,-15],[-11,12],[-7,37],[-18,12],[-28,-13],[-28,5],[-25,22],[-9,-2],[-7,-10],[2,-43],[-5,-33],[-13,-22],[-19,-5],[-24,11],[-10,-10]],[[11495,13951],[106,0],[106,0],[107,0],[106,0],[106,0],[106,0],[106,0],[107,0],[106,0],[106,0],[106,0],[107,0],[106,0],[106,0],[106,0],[106,0],[107,0],[106,0],[106,0],[106,0],[106,0],[107,0],[106,0],[106,0],[106,0],[106,0],[107,0],[106,0],[106,0],[106,0],[106,0],[92,0]],[[14879,13951],[117,-116],[30,-1],[37,18],[27,-27],[19,-72],[-3,-36],[-24,-2],[-30,-43],[-36,-85],[9,-80],[54,-75],[35,-75],[18,-75],[35,-59],[79,-63],[-1,-35],[0,-117],[0,-118],[0,-118],[1,-117],[0,-118],[0,-117],[0,-118],[0,-118],[1,-117],[0,-118],[0,-117],[0,-118],[0,-118],[1,-117],[0,-118],[0,-118]],[[15248,11243],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0],[-118,0],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0],[-118,0],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0],[-118,0],[-117,0],[-117,0],[-117,0],[-117,0],[-117,0]],[[20212,13131],[28,29],[30,4],[24,-31],[33,-8],[43,15],[40,-10],[37,-37],[34,-68],[32,-99],[58,-60],[83,-22],[61,-39],[39,-56],[31,-18],[38,30],[39,16],[40,-19],[52,-47],[78,11],[103,68],[61,-4],[18,-74],[44,-78],[69,-82],[4,-2]],[[21331,12550],[12,-25],[6,-134],[-4,-27],[-17,-55],[1,-29],[14,-45],[54,-105],[6,-40],[21,-40],[18,-60],[58,-127],[89,-105],[70,-28]],[[21659,11730],[-191,-219],[-88,-80],[-84,-64],[-6,-10],[-19,-71],[-51,-62],[-32,-66],[-75,-55],[-54,-75],[-135,-73],[-76,-26],[-51,-43]],[[20797,10886],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-176,9],[-176,8],[-176,9],[-176,9],[-176,9],[-176,9],[-175,8],[-176,9],[-169,-4],[-169,-5],[-168,-5],[-169,-5],[-15,28],[-44,7],[-69,9],[-2,1],[20,-93],[0,-81],[-2,-1],[-79,0],[-87,0],[-88,0],[-87,0],[-88,0],[-87,0],[-88,0],[-100,0]],[[17867,10791],[26,80],[24,21],[10,4],[26,-14],[12,-5],[27,28],[24,81],[13,86],[4,91],[-16,73]],[[17848,10794],[-36,-2]],[[17812,10792],[-1,11],[2,25],[3,11],[7,2],[8,0],[12,-24],[5,-23]],[[17005,7647],[3,-44],[25,-26],[1,-48],[-22,-69],[1,-48],[22,-27],[-2,-28],[-24,-30],[-4,-33],[17,-35],[8,-40],[-1,-46],[22,-60],[35,-39],[23,-45],[2,-25],[2,-23],[-5,-34],[-29,-49],[-22,-36],[-13,-13],[-8,-25],[-2,-52],[-32,-68],[-66,-78],[-43,-100],[-22,-121],[-22,-76],[-24,-33],[-12,-63],[0,-94],[-15,-51],[-30,-10],[-6,-54],[17,-97],[-7,-41],[-21,-31],[-2,-26],[121,0],[122,0],[121,0],[122,0],[122,0],[122,0],[121,0],[122,0],[-15,-104],[-36,-140],[-1,-37],[9,-45],[0,-26],[13,-38],[29,-38],[26,-58],[23,-103],[6,-47],[19,-66],[10,-13],[14,-7],[12,-8]],[[17831,5099],[-34,-24],[-186,93],[-46,75],[-41,15],[-50,10],[-54,-92],[-41,-124],[65,-68],[55,-32],[92,27],[51,60],[41,-2],[20,12],[18,32],[35,-25],[2,-25],[-25,-35],[-32,-29],[-19,-35],[36,-70],[57,-23],[21,10],[13,78],[35,51],[48,-11],[-7,-32],[7,-30],[21,-51],[-2,-73],[4,-18],[-51,-32],[-38,-11],[-31,-43],[16,-24],[-31,-22],[-21,9],[-10,-8],[-4,-26],[-16,-24],[24,-73],[48,-47],[33,-60],[136,-78],[33,2],[33,-79],[26,-27],[25,-14],[-3,-54],[-45,-40],[-12,-47],[-11,-27],[-20,34],[-21,24],[-48,-74],[-23,-16],[12,80],[-18,32],[-28,80],[-40,50],[-28,16],[-22,32],[-26,13],[-23,-4],[-38,19],[-2,42],[-11,32],[-30,38],[-143,72],[0,-30],[9,-22],[21,-15],[24,-29],[0,-85],[-10,-36],[-5,-52],[-9,-52],[-18,-41],[-39,-28],[-17,23],[-28,113],[-39,35],[-63,4],[-42,-25],[-46,-109],[-38,-18],[-127,57],[-146,86],[4,28],[23,10],[44,-12],[-2,29],[-45,97],[-9,43],[6,53],[-14,-1],[-27,-45],[-93,38],[-26,45],[-54,127],[-77,4],[-35,77],[-63,-32],[-32,-36],[-28,-55],[11,-29],[28,-45],[-13,-22],[-90,-33],[-208,37],[-60,34],[-82,71],[-113,59],[-55,9],[-53,-11],[-155,-6],[-36,-16],[-31,-25],[-20,28],[-9,49],[18,8],[20,29],[18,57],[2,34],[-12,23]],[[15666,4905],[34,90],[8,32],[-5,154],[-15,55],[2,33],[15,83],[-2,77],[28,93],[20,48],[23,99],[6,64],[10,48],[-7,51],[16,38],[-11,52],[-3,69],[-20,26],[-35,102],[2,45],[-37,95],[-1,33],[-35,49],[-7,32],[-3,132],[-10,38],[-30,76],[-70,111],[0,114],[0,114],[1,114],[0,115],[0,114],[0,114],[0,114],[0,115]],[[17981,5001],[2,-42],[-25,21],[-37,2],[17,14],[11,14],[6,15],[46,53],[-13,-39],[-7,-38]],[[18182,4752],[-14,-29],[14,138],[-20,116],[21,-51],[7,-61],[-8,-113]],[[18151,4666],[-28,-47],[2,18],[20,47],[14,18],[-8,-36]],[[16679,4475],[-19,-13],[-84,78],[-5,34],[42,30],[25,-3],[40,-39],[14,-11],[7,-16],[-4,-26],[-16,-34]],[[25959,15805],[-14,22],[16,76],[16,76],[16,76],[16,76],[17,75],[16,76],[16,76],[16,76]],[[26074,16434],[50,-3],[49,-2],[50,-2],[50,-3],[50,-2],[50,-3],[49,-2],[50,-3]],[[26472,16414],[72,-3],[72,-3],[72,-3],[72,-3],[72,-4],[72,-3],[73,-3],[72,-3],[44,24],[52,71],[32,16],[52,42],[25,9],[60,-5]],[[27314,16546],[-12,-46],[15,-46],[9,-48],[24,-47],[19,-4],[21,8],[16,-2],[10,-20],[-4,-23],[-25,-6],[-46,-42],[-40,-16],[-20,-51],[-30,-58],[-59,-91],[25,-28],[91,-32],[40,-32],[61,-170],[-14,-17],[-5,-32],[54,-43],[17,-122],[45,-42],[67,-26],[81,37],[68,51],[-3,42],[-42,97],[-11,45],[-31,30],[-12,-25],[-21,32],[-2,18],[19,9],[22,-3],[26,-17],[66,-106],[19,-138],[4,-88],[-8,-30],[-19,6],[-37,-6],[-175,-46],[-39,-40],[-89,-43],[-5,21],[6,45],[-5,92],[-18,5],[-138,-150],[-54,-10],[-45,-44],[-10,25],[-8,112],[28,95],[-15,-2],[-28,-34]],[[27097,15490],[-17,40],[-19,22],[-18,21],[1,33],[0,51],[-21,10],[-2,63],[-2,40],[-38,-1],[-31,0],[-50,-1],[-52,-1],[-38,-1]],[[27464,15192],[-140,-44],[-22,29],[35,13],[44,67],[29,8],[46,-38],[8,-35]],[[27733,15092],[-39,-14],[-90,33],[74,28],[13,10],[9,42],[1,20],[29,-89],[3,-30]],[[24113,12997],[-34,23],[-56,76],[-91,54],[-13,26],[1,30],[13,41],[-28,40],[-69,40],[-29,33]],[[23807,13360],[-6,7],[-3,42],[-9,26],[-15,11],[-3,18],[9,24],[-9,26],[-28,29],[-10,24],[9,22],[-14,10],[-37,-2],[-36,20],[-36,42],[-42,8],[-73,-42],[-42,-11],[-18,-24],[-9,-40],[-18,-21],[-40,0],[-6,1],[-46,14],[-32,25],[-6,11],[3,21],[-6,10],[-10,2],[-9,-12],[-9,-39],[-80,-105],[-38,21],[-14,-1],[-111,-148],[-33,-24],[-65,-67],[1,115],[1,116],[2,115],[1,116]],[[22920,13700],[117,0],[117,0],[117,0],[117,0],[117,0],[117,0],[117,0],[117,0],[116,0],[117,0],[117,0],[117,0],[117,0],[117,0],[117,0],[117,0]],[[25170,12556],[-1,-26],[-6,-39],[-12,-16],[1,40],[-9,14],[-13,-17],[-9,-20],[-4,-78],[-9,-39],[-34,-11],[-33,-102],[-31,-58],[-12,-36]],[[24998,12168],[-47,-9],[-76,-15],[-20,-40]],[[24855,12104],[-39,17],[-58,-1],[11,55],[17,48],[-31,49],[-18,6],[-19,20],[22,40],[11,43],[-7,52],[10,39],[-16,-6],[-24,-41],[-15,-17],[-10,37],[-10,-9],[-7,-25],[-16,-14],[-33,35],[-48,39],[-27,68],[-15,53],[15,95],[33,17],[44,-16],[57,0],[-9,21],[-20,-3],[-60,77],[-19,47],[-33,12],[-15,-44],[-17,-12],[21,98],[27,4],[40,27],[-12,56],[-25,25],[-46,-31],[1,40],[9,51],[34,0],[30,-17],[25,83],[2,37],[-43,-54],[-9,116],[41,111],[40,49],[50,-2],[51,8],[-32,20],[-33,11],[25,44],[21,8],[20,39],[-49,-6],[6,73],[-24,-15],[-29,-7],[-11,-31],[2,-51],[-8,-33],[-23,-27],[-37,-21],[-4,36],[-12,16],[-5,-78],[-10,-26],[-28,73],[-8,-15],[1,-20],[-7,-36],[-24,-19],[2,-46],[-9,-25],[-76,40],[-2,-14],[43,-86],[31,-30],[4,-47],[-27,-39],[-37,34],[-6,-3],[20,-57],[13,-51],[-13,-42],[2,-52],[-3,-47],[-8,-42],[18,-190],[22,-51],[21,-50],[11,-46],[-22,-7],[-36,38],[-32,29],[-38,93],[-6,37],[-9,29],[4,-67],[14,-75],[118,-168],[22,-64],[16,-51],[-4,-48],[-31,34],[-26,44],[-71,49],[-89,31],[-50,115],[0,-48],[-11,-40],[-31,49],[-19,43],[-6,46],[-39,-3],[-40,-40],[-39,9],[-4,79],[10,41],[44,99],[41,50],[18,65],[-6,101]],[[25074,12182],[-13,-3]],[[25061,12179],[13,31],[45,152],[20,52],[-19,-106],[-34,-97],[-12,-29]],[[28202,20533],[2,-19],[23,-33],[34,-23],[25,-8],[30,1],[81,45],[95,29],[53,28],[9,25],[24,9],[38,-7],[71,-65],[82,-96],[65,-77],[2,-133],[1,-140],[1,-148],[1,-106],[2,-146],[1,-115],[2,-151],[1,-81],[9,-23],[-6,-32],[-2,-16],[1,-12],[3,-16],[0,-22],[-9,-21],[-4,-23],[-1,-38],[9,-23],[15,-14],[12,0],[16,-14],[21,-24],[32,-21],[32,-8],[23,6],[27,-14],[10,-34],[-6,-32],[-15,-15],[-17,-11],[-3,-25],[9,-25],[12,-22],[13,-39],[-6,-34],[-12,-29],[-5,-30],[10,-25],[27,-34],[16,-33],[27,-18],[12,13],[10,17],[11,13],[18,-8],[22,-9],[23,-12],[-3,-27],[15,-46],[11,-89],[-17,-41],[3,-53],[47,-16],[12,-16],[2,-20],[-103,-137],[-88,19],[-48,-36],[-49,-11],[-22,-61],[-27,-13],[-38,3],[-32,18],[-25,-9],[-34,-111],[-28,10],[-12,-40],[-14,-17],[-22,-15],[-19,49],[-12,47],[-17,10],[-24,12],[-24,0],[-16,-7],[-20,-30],[-29,-26],[-22,21],[-17,35],[-14,-56],[-21,-59],[3,-69],[-9,-41],[-20,11],[-20,36],[-57,29],[-45,-3],[9,39],[43,54],[-13,11],[-21,-7],[-9,7],[15,50],[1,55],[-19,-19],[-24,-58],[-57,-46],[2,-78],[-54,-158],[-3,-68],[-35,-54],[-45,-46],[-60,13],[-45,-40],[-24,-47],[-20,-7],[-10,59],[-8,18],[-17,-86],[-17,-6],[-7,62],[-8,40],[-23,-35],[-16,-93],[-16,8],[-5,35],[-12,10],[-4,-39],[6,-56],[-9,-29],[-16,15],[-16,27],[-27,-20],[-25,-8],[0,27],[5,33],[-49,-18],[-59,-62],[-46,-85],[16,-14],[18,-27],[-80,-132],[-82,-119],[-61,-193],[-25,-23],[-21,-35]],[[27351,16721],[-41,84],[-8,68],[-46,81],[-18,55],[-6,62],[3,67],[-4,100],[-4,100],[-4,100],[-4,100],[-4,100],[-4,100],[-4,100],[-3,100],[-4,100],[-4,100],[-4,100],[-4,100],[-4,100],[-4,100],[-4,100],[-3,90]],[[27173,18728],[12,13],[31,26],[20,-4],[17,-38],[14,-26],[17,8],[14,36],[0,50],[19,35],[24,5],[21,-1],[11,17],[-1,24],[-8,40],[2,47],[54,84],[66,56],[23,29],[7,57],[37,60],[19,34],[5,30],[-10,37],[1,70],[13,83],[15,91],[35,82],[57,90],[15,118],[15,124],[69,121],[78,137],[45,78],[80,142],[57,101],[29,46],[30,55],[49,-16],[49,-17],[-8,-79],[6,-40]],[[28641,17860],[-30,-18],[-32,8],[1,-47],[-4,-18],[-36,25],[-13,16],[1,63],[32,59],[24,24],[31,-16],[24,-67],[2,-29]],[[28420,17737],[-19,-18],[-21,6],[-1,44],[7,15],[7,7],[10,-12],[17,-42]],[[21430,16673],[0,0],[-36,-251],[-29,-103],[-50,-60],[3,14],[5,19],[-2,60],[-9,23],[-18,9],[-24,-7],[-27,-22],[-9,-23],[11,-24],[-7,-21],[-22,-19],[-15,-45],[-7,-69],[-9,-43],[-12,-17],[-46,-26],[-24,-22],[-21,-32],[-19,-53],[-17,-74],[-6,-57],[6,-31],[-15,-20],[-25,-37],[-5,-14],[1,-21],[-5,-11],[-13,0],[-9,-10],[-23,-39],[-41,-103],[-6,-19]],[[20905,15525],[-5,-5],[-169,-9],[-169,-8],[-168,-9],[-169,-8]],[[19178,15539],[32,25],[54,59],[30,52],[29,69],[28,85],[57,128],[28,77],[27,98],[20,102],[14,108],[6,111],[0,115],[-14,116],[-27,116],[-14,60],[-6,16],[-48,149],[-54,208],[1,17],[51,124],[1,17],[-5,100],[-11,51],[-26,67],[1,18],[52,86],[32,66],[29,79],[19,93],[8,107],[0,70],[-9,36],[1,27],[11,19],[56,25],[19,42],[4,73],[12,37],[19,-1],[17,16],[17,30],[21,9],[27,-13],[37,45],[48,105],[37,59],[26,12],[5,-10],[-16,-31],[-5,-34],[6,-38],[-5,-36],[-12,-49],[7,-16],[-20,-79],[-1,-40],[12,-30],[15,10],[17,52],[5,27],[-7,3],[3,22],[12,40],[11,20],[9,-3],[3,-21],[-4,-42],[-28,-99],[-5,-30],[6,-8],[33,61],[28,99],[20,75],[4,41],[-6,106],[1,44],[8,29],[29,34],[49,38],[48,20],[48,3],[33,10],[19,18],[-6,14],[-33,11],[-24,24],[-17,36],[-5,42],[5,47],[21,46],[35,45],[11,33],[-13,22],[15,7],[44,-6],[30,6],[17,18],[5,-2],[36,-17],[65,-56],[62,-32],[58,-9],[43,-20],[26,-30],[20,-34],[12,-37],[27,-21],[44,-5],[35,-16],[25,-27],[139,-69],[59,-37],[32,-36],[9,-23],[-3,-22],[3,-25],[24,-47],[9,-4],[6,-23],[2,-41],[7,-28],[12,-14],[-7,-6],[-43,24],[-25,-7],[-11,-31],[-2,-30],[8,-27],[55,-84],[14,-75],[3,-92],[-7,-36],[-6,-79],[-4,-122],[-1,-41],[-19,-41],[-48,-59],[-1,11],[-12,3],[-13,-9],[-17,-50],[-16,-92],[-18,-49],[-22,-8],[-13,-13],[-4,-19],[-24,-12],[-42,-7],[-29,-28],[-22,-78],[1,-38],[-10,-47],[1,-40],[11,-33],[34,-34],[57,-33],[35,-5],[23,14],[25,55],[23,21],[29,9],[11,25],[48,109],[0,24],[-17,10],[2,6],[23,5],[19,14],[17,26],[29,18],[71,29],[38,32],[24,5],[35,-17],[46,-40],[36,-58],[27,-77],[33,-198],[41,-320],[28,-179],[15,-39],[7,-19],[0,0]],[[18801,18560],[-24,12],[-21,36],[-12,36],[-1,38],[29,92],[3,15],[-3,9],[-17,10],[-36,-17],[-37,-3],[-12,6],[-5,16],[0,25],[8,30],[22,54],[0,52],[11,29],[-10,55],[2,27],[-15,28],[-42,38],[-98,51],[10,56],[-4,24],[-24,37],[-103,42],[-70,19],[-70,1],[-49,15],[-56,5],[-36,25],[-35,26],[-36,25],[-36,26],[-63,21],[-63,22],[-64,22],[-63,21],[-63,22],[-63,22],[-64,22],[-63,21],[-14,38],[-14,38],[-15,38],[-14,38],[-29,16],[-15,8],[-12,20],[-26,-9],[-10,33],[2,7]],[[17381,19900],[34,9],[95,47],[81,57],[68,67],[84,42],[100,15],[72,24],[43,33],[58,63],[33,19],[41,6],[31,24],[21,44],[39,49],[58,55],[33,23],[8,-11],[3,-19],[-2,-29],[14,-23],[31,-18],[14,-23],[-2,-30],[8,-25],[19,-20],[5,-45],[-9,-69],[-1,-45],[7,-20],[7,-12],[11,11],[14,25],[5,15],[3,15],[85,70],[16,3],[28,-18],[128,-25],[50,-18],[53,-40],[18,-15],[65,-129],[30,-51],[18,-14],[10,-20],[9,-45],[10,-14],[95,-10],[43,9],[26,18],[29,-12],[32,-42],[31,-12],[31,19],[29,-1],[28,-19],[13,-15],[8,1],[54,64],[65,57],[87,62],[50,28],[14,-7],[80,21],[72,2],[95,-13],[89,15],[81,41],[72,23],[63,5],[24,-12],[-16,-27],[-8,-49],[-1,-68],[-5,-43],[-10,-18],[-1,-17],[7,-17],[61,-10],[32,-22],[37,-1],[41,20],[32,-8],[22,-35],[32,-6],[31,25],[21,24],[19,10],[15,2],[15,-12],[11,-20],[26,-55],[13,-38],[8,-56],[6,-19],[-1,-32],[-18,-22],[-4,-18],[10,-17],[60,-5],[27,-18],[11,-19],[-7,-22],[4,-22],[14,-25],[48,-36],[12,-18],[-4,-18],[-14,-12],[-25,-6],[-183,35],[-54,6],[-8,-13],[-5,-2],[-9,3],[-16,1],[-8,8],[-6,23],[-16,15],[-26,6],[-22,-17],[-25,-68],[4,-13],[-4,-44],[6,-12],[0,-10],[-7,-8],[-15,1],[-23,11],[-86,103],[-65,52],[-81,38],[-64,18],[-47,-1],[-39,-26],[-30,-53],[-47,-29],[-64,-7],[-35,-14],[-5,-21],[-24,-1],[-40,20],[-42,6],[-44,-9],[-32,-20],[-33,-64],[-7,-32],[-25,-27],[-64,-43],[-4,-16],[-34,-48],[-10,-27],[0,-26],[-12,1],[-23,30],[0,39],[21,51],[19,24],[16,-2],[10,22],[4,46],[-6,23],[-32,-9],[-17,-18],[-21,-4],[-26,10],[-23,-25],[-19,-60],[-24,-40],[-27,-19],[-19,21],[-9,60],[0,47],[11,57],[-6,11],[-11,-18],[-18,-47],[-23,-104],[-15,-34],[-20,-14],[-32,-62],[-43,-112],[-49,-107],[-54,-105],[-33,-56],[-11,-8],[-5,-19],[-2,-44]],[[18708,20639],[-117,-17],[-3,-6],[22,-17],[4,-11],[-20,-31],[-105,-100],[-9,-29],[1,-17],[-61,-77],[-22,-49],[-19,-8],[-15,33],[0,27],[15,20],[15,29],[2,40],[-6,14],[-19,-36],[11,-7],[3,-6],[-4,-13],[-70,19],[-22,28],[4,38],[24,50],[85,105],[37,29],[107,47],[58,10],[59,0],[43,-15],[27,-30],[-25,-20]],[[18140,21112],[-23,-9],[-2,-15],[18,-4],[-3,-8],[-20,-13],[-57,-28],[-38,-9],[-19,10],[-2,19],[15,27],[0,13],[-16,0],[4,11],[23,21],[199,136],[84,50],[45,16],[8,-8],[-49,-51],[-8,-21],[2,-14],[-16,-27],[-145,-96]],[[19872,19149],[-5,-9],[5,-79],[-8,-35],[-22,-20],[-17,-4],[-14,10],[3,43],[17,73],[18,34],[23,-13]],[[20411,19190],[6,7],[19,-24],[2,-20],[-7,-17],[-12,-9],[-14,-2],[-24,18],[-38,45],[3,15],[65,-13]],[[20867,19386],[13,-9],[5,-20],[-12,-30],[-36,-15],[-72,1],[-47,12],[-22,21],[-4,11],[2,24],[10,1],[15,-13],[23,6],[31,24],[16,18],[1,12],[-9,22],[7,10],[39,-9],[14,-15],[26,-51]],[[20543,19658],[16,-17],[9,-19],[2,-22],[-3,-13],[-7,-5],[-25,35],[-6,22],[4,18],[10,1]],[[20561,19672],[-16,5],[-12,13],[-11,22],[-13,54],[-20,39],[30,44],[18,5],[19,-10],[3,-25],[-14,-42],[0,-42],[16,-43],[0,-20]],[[19588,18604],[28,-6],[9,-17],[2,-26],[-6,-13],[-14,1],[-11,12],[-11,40],[3,9]],[[13927,22066],[62,0],[216,0],[216,0],[216,0],[216,0],[119,-1],[2,191],[2,150],[109,-18],[33,-28],[10,-13],[-3,-41],[9,-126],[20,-105],[46,-126],[0,0],[4,-49],[15,-31],[28,-29],[104,-35],[182,-40],[103,-47],[25,-53],[48,-21],[73,10],[51,22],[43,50],[61,11],[52,-3],[53,-5],[28,-7],[81,-40],[52,-32],[76,-60],[42,-27],[20,-63],[24,-80],[33,0],[25,47],[65,8],[84,-33],[74,-94],[107,-84],[66,-41],[66,0],[84,41],[90,81],[65,14],[38,-8],[22,-63],[27,-24],[69,8],[146,-13],[116,17],[26,-36],[23,-56],[47,-18],[64,18],[100,-13],[-14,-9],[-14,2],[-20,-13],[-24,-29],[-55,-42],[-87,-53],[-100,-50],[-203,-89],[-126,-92],[-56,-56],[-217,-279],[-132,-148],[-212,-209],[-20,-27],[-2,-24]],[[16520,20053],[-9,1],[-35,-51],[-15,-32],[-34,-10],[0,-130],[0,-130],[-1,-130],[0,-130],[-16,-13],[-22,-31],[-29,-7],[-136,-107],[-22,-31],[-25,-72],[-45,-80],[-11,-43],[2,-58],[69,-46],[25,-45],[13,-55],[-2,-47],[-34,-93],[-7,-37],[4,-114],[-17,-35],[14,-92],[1,-32],[-11,-101],[-7,-29],[13,-52],[2,-6],[63,-73],[54,-40],[49,-13],[38,-31],[27,-49],[37,-32],[46,-15],[48,-41],[72,-100],[36,-86],[63,-61],[102,-65],[67,-57],[32,-49],[21,-126],[17,-266]],[[14318,17110],[0,202],[0,203],[0,203],[0,202],[0,203],[0,203],[0,202],[0,203],[-39,67],[-84,54],[-21,33],[-39,81],[-16,34],[-3,27],[19,30],[77,87],[24,40],[12,40],[18,89]],[[14266,19313],[-7,69],[5,108],[-16,80],[-4,40],[-9,50],[-58,132],[-13,106],[-15,52],[-5,134],[2,38],[11,73],[-24,49],[-3,40],[-12,320],[-8,46],[3,148],[-45,157],[-21,53],[-11,64],[1,31],[-36,106],[-24,117],[2,102],[-7,77],[3,60],[-7,89],[8,51],[0,80],[-49,281]],[[15248,10792],[0,113],[0,113],[0,113],[0,112]],[[14879,13951],[-8,8],[-37,78],[-14,92],[-30,60],[-43,28],[-28,61],[-11,93],[-28,94],[-13,28]],[[17867,10791],[-1,-2],[-10,-8],[-7,9],[-1,4]],[[17812,10792],[9,-67],[-8,-48],[-24,-19],[-4,-27],[14,-31],[0,-14],[-6,-12],[-16,-3],[-14,-7],[-10,-25],[20,-47],[-4,-57],[-28,-67],[-3,-26]],[[18399,5260],[-148,-14],[-65,46],[-27,9],[-16,-1],[-76,-42],[-86,-33],[-20,10],[-29,2],[-62,-110],[-39,-28]],[[17439,9439],[129,0],[135,-1],[135,0],[134,0],[135,-1],[134,0],[135,0],[138,0]],[[18319,5120],[-7,-10],[-45,19],[-27,17],[-5,18],[76,-32],[8,-12]],[[5395,22066],[168,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[163,0],[53,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[217,0],[216,0],[216,0],[216,0],[161,0]],[[10477,22066],[1,-171],[1,-172],[0,-172],[1,-172],[1,-172],[0,-173],[1,-172],[1,-172],[0,-172],[1,-172],[1,-172],[1,-172],[0,-172],[1,-172],[1,-172],[0,-172]],[[10488,19314],[1,-210],[1,-210],[1,-210],[1,-209],[0,-3],[-1,-3],[0,-3],[0,-3],[-4,0],[-4,0],[-4,0],[-4,1]],[[10475,18464],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,-1],[-111,0],[-111,0],[-111,0],[-112,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-112,0],[-111,0],[-111,0],[-111,0],[-111,0],[0,-113],[0,-113],[0,-113],[0,-114]],[[4389,22066],[93,0],[216,0],[216,0],[216,0],[216,0],[49,0]],[[20464,9427],[19,192],[13,44],[14,10],[53,1],[34,22],[29,115],[68,91],[30,23],[45,18],[107,22],[115,88],[83,84],[66,23],[21,31],[14,40],[10,54],[7,12],[38,-4],[29,47],[28,27],[28,15],[17,1],[7,-14],[4,-41],[6,-13],[12,-1],[17,9],[21,26],[56,81],[37,31],[57,18],[42,-43],[25,15],[72,166],[29,30],[22,12],[37,2],[1,46],[13,68],[1,47],[24,69]],[[21815,10891],[8,-14],[184,-2],[183,-3],[183,-2],[184,-3],[183,-2],[183,-3],[184,-3],[183,-2],[183,-3],[184,-2],[183,-3],[183,-2],[184,-3],[183,-2],[183,-3],[126,-1]],[[24699,10838],[-13,-70],[7,-40],[27,-42],[30,-104],[23,-140],[-32,57],[-34,30],[-53,23],[-47,40],[4,-58],[-5,-62],[-36,19],[-25,21],[22,-67],[-48,20],[-31,-4],[-21,-59],[-28,-36],[-40,-12],[-61,54],[-20,66],[-8,73],[-3,-86],[11,-91],[-4,-68],[58,-13],[55,12],[73,-3],[48,13],[29,21],[70,-19],[5,-82],[-8,-83],[-4,-87],[19,1],[22,28],[12,156],[63,58],[21,-4],[20,-50],[7,-51],[7,-70],[-14,-107],[-98,-125],[-69,-116],[-36,-24],[-51,14],[-59,29],[-28,6],[-22,-10],[-13,36],[-9,65],[-22,21],[-18,-2],[-11,-69],[-55,-20],[-74,29],[-77,58],[33,-63],[192,-116],[22,-21],[20,-32],[-27,-50],[-21,-56],[-3,-44],[-7,-28],[-77,-75],[-41,13],[-106,135],[48,-117],[39,-49],[78,-27],[146,44],[47,-48],[-39,-84],[-39,-59],[-51,-7],[-45,-16],[-14,-41],[-32,-2],[-50,-3],[-78,-3],[-43,9],[-59,-83],[-23,-12],[-31,16],[-14,67],[-14,33],[0,-125],[6,-34],[11,-25],[-70,-68],[-67,-85],[-24,-23],[-27,-43],[-56,-122],[-14,-89],[-20,-100],[-2,45],[3,75],[-14,87],[-9,-159],[-21,-73],[-199,5],[-80,-37]],[[23383,8424],[-73,109],[-69,103],[-68,103],[-69,103],[-68,103],[-68,103],[-69,103],[-68,103],[-72,4],[-72,4],[-71,3],[-72,4],[-71,3],[-72,4],[-72,3],[-71,4],[-3,71],[-2,50],[-45,86],[-26,50],[-56,-43],[-3,21],[2,38],[-5,13],[-16,9],[-80,5],[-81,6],[-80,5],[-80,5],[-81,5],[-80,5],[-80,6],[-81,5],[-18,8],[-36,-30],[-95,-45],[-47,-39],[-17,2],[-81,-38],[-81,-39],[-9,0]],[[24738,10837],[16,0]],[[24754,10837],[51,-290],[101,-316],[12,-54],[-23,48],[-75,209],[-42,151],[-40,252]],[[24867,10210],[-8,-18],[-34,100],[35,-33],[6,-26],[1,-23]],[[24913,9654],[-68,-24],[-6,8],[78,51],[24,182],[4,83],[-12,147],[1,31],[12,-48],[11,-137],[-4,-104],[-22,-152],[-18,-37]],[[24792,9609],[-92,-64],[-10,4],[60,46],[42,14]],[[24427,9116],[-13,-11],[47,113],[91,143],[25,22],[-76,-122],[-74,-145]],[[24405,9126],[-11,-2],[-20,10],[-27,19],[-6,14],[26,-5],[38,-36]],[[11828,22066],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[217,0],[154,0]],[[14266,19313],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-119,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,1],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-119,0],[-118,0],[-118,0]],[[10477,22066],[55,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0]],[[10483,14853],[0,226],[-1,226],[0,225],[-1,226],[0,226],[-1,225],[0,226],[-1,226]],[[10479,16659],[176,0],[175,0],[176,0],[175,0],[175,0],[176,0],[175,0],[175,0],[176,0],[175,0],[176,0],[175,0],[175,0],[176,0],[175,0],[200,0],[152,-135],[90,-42],[43,40],[92,22],[143,6],[90,-18],[38,-43],[73,-48],[109,-53],[65,-58],[22,-62],[38,-39],[39,-13]],[[26953,18469],[50,174],[47,81],[63,-27],[34,3],[26,28]],[[27351,16721],[-23,-117],[-14,-58]],[[26472,16414],[-8,33],[-29,57],[-6,24],[1,27],[16,72],[11,23],[12,42],[18,168],[16,97],[11,178],[11,52],[13,32],[21,84],[37,68],[25,84],[30,74],[4,43],[22,93],[16,166],[15,26],[68,23],[21,18],[72,68],[23,29],[15,29],[11,46],[8,13],[2,25],[-26,109],[-1,40],[56,123],[-12,72],[8,17]],[[25151,13935],[26,31],[58,56],[88,68],[-122,226],[-30,13],[-32,111],[-37,31],[-9,17],[-2,85],[4,48],[5,29],[32,24],[18,49],[1,25],[-24,79],[-1,25],[47,47],[60,94],[36,102],[15,30],[17,21],[40,29]],[[25341,15175],[50,-41],[51,-41],[50,-42],[50,-41],[50,-41],[50,-41],[50,-42],[49,-40]],[[25741,14846],[-9,-71],[-49,-142],[-22,-33],[-24,-30],[-19,-12],[-17,-23],[-20,-36],[-19,-72],[11,-65],[97,-24],[26,20],[13,-47],[8,-65],[-7,-70],[-17,-71],[-12,-89],[-10,-135],[-16,-122],[-2,37],[10,148],[-16,-16],[-11,-34],[-30,-191],[-41,-101],[-37,-71],[-39,12],[9,-56],[-11,-29],[-9,-61],[-23,-40],[-22,4],[-31,-28],[-12,-21],[-1,-41],[-21,-36],[-75,-186],[-65,-54],[-16,7],[17,88],[12,89],[-40,39],[-38,20],[-43,-3],[-48,69],[-62,50],[-87,136],[3,38],[-3,63],[27,100],[25,69],[35,36],[101,37],[25,56],[15,46]],[[25628,13662],[-60,-137],[-1,27],[74,169],[-13,-59]],[[11000,11243],[0,-112],[0,-113],[1,-113],[0,-112]],[[11001,10793],[-22,-1],[0,-254],[-1,-253],[-1,-254],[-1,-254],[0,-253],[-1,-254],[-1,-254],[-1,-254],[0,-253],[-1,-254],[-1,-254],[-1,-253],[0,-254],[-1,-254],[-1,-253],[-1,-254],[-113,0],[-114,0],[-114,0],[-114,-1],[-114,0],[-114,0],[-114,0],[-114,0],[-114,0],[-114,0],[-113,0],[-114,0],[-114,0],[-114,0],[-114,0],[-114,0],[-3,-1],[52,-164],[0,0],[61,-46]],[[9255,6521],[-4,2],[-111,1],[-112,1],[-111,1],[-112,1],[-111,1],[-111,1],[-112,1],[-111,1],[0,-101],[-1,-102],[0,-101],[0,-102],[-180,0],[-179,-1],[-64,0]],[[2386,15756],[189,0],[189,0],[189,0],[189,0],[189,0],[189,0],[189,0],[189,0]],[[5405,15756],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[1,-140],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-140],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141]],[[23128,16753],[0,0],[4,155],[-1,5],[4,2],[184,69],[118,23],[143,7],[171,-34],[66,-31],[42,-40],[48,-10],[55,18],[76,6],[97,-6],[52,-9],[7,-12],[7,3],[6,20],[26,22],[73,32],[10,-6],[15,16],[20,40],[37,44],[54,48],[49,25],[44,2],[30,12],[14,22],[5,19],[-6,17],[3,18],[2,9],[-2,8],[-5,15],[-5,79],[-8,37],[-12,28],[-15,17],[2,19],[26,23],[-2,-21],[7,-7],[13,10],[28,47],[3,18],[19,18],[14,29],[-16,4],[-37,-9],[-8,9],[19,38],[-4,22],[-6,9],[-12,3],[-42,-33],[-13,-3],[-2,18],[-22,39],[59,69],[205,194],[21,29],[8,26],[-6,23],[-6,6],[3,6],[198,248],[113,115],[93,64],[70,30],[48,-4],[27,4],[23,0],[118,0],[211,1],[211,0],[125,0]],[[26024,18467],[3,-60],[-10,-71],[9,-76],[-12,-161],[31,-124],[-7,-83],[2,-89],[-6,-22],[-25,-52],[-14,-50],[-9,-51],[1,-33],[21,-147],[4,-65],[0,-38],[-19,-121],[-2,-34],[6,-10],[7,0],[21,37],[10,6],[12,-9],[30,-57],[-2,-103],[-1,-74],[-1,-83],[-2,-124],[-2,-91],[-1,-83],[-1,-63],[-7,-47],[14,-55]],[[25883,14845],[-21,-23],[-55,-79],[-36,-43],[-30,-13],[-19,-36],[-20,-23],[19,79],[22,67],[17,128],[-5,105],[-22,42],[-22,29],[26,-103],[4,-126],[0,-3]],[[25341,15175],[-11,34],[-18,26],[-91,46],[-23,30],[-21,41],[-14,50],[-8,52],[0,42],[7,47],[-21,31],[-1,29],[-13,20],[-59,35],[-18,49],[-39,47],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-69,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-69,1],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-69,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-69,1],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[0,121],[0,122],[0,5]],[[22775,16004],[30,22],[97,82],[49,59],[51,50],[54,39],[43,51],[31,62],[35,46],[38,30],[21,31],[3,33],[-7,45],[-17,57],[-3,44],[12,33],[3,22],[-7,11],[-80,32]],[[26451,14840],[-36,-58],[32,-6],[28,17],[27,34],[61,47],[53,21],[16,4],[25,-33],[50,27],[51,14],[-221,-150],[-45,-17],[-65,-45],[-61,-31],[-44,-12],[-218,-111],[-18,-3],[-18,11],[-180,-57],[-74,-7],[-68,-20],[50,46],[1,18],[-12,13],[-26,-4],[-28,-47],[-43,-16],[-9,52],[15,40],[19,38],[44,60],[61,37],[32,33],[22,-29],[4,39],[17,23],[18,12],[44,0],[24,7],[17,12],[17,3],[48,-18],[47,5],[38,25],[39,8],[104,5],[103,18],[41,32],[87,89],[50,25],[-78,-104],[-41,-47]],[[25600,14422],[-24,-4],[24,87],[45,39],[16,-8],[0,-30],[-6,-27],[-30,-40],[-25,-17]],[[24641,17826],[-15,-16],[-16,-7],[-4,11],[2,10],[14,12],[22,0],[-3,-10]],[[24543,17568],[7,12],[15,6],[0,-10],[-16,-25],[-7,-3],[1,20]],[[23167,16650],[-11,10],[-4,19],[3,25],[13,11],[36,-9],[2,-10],[-9,-18],[-15,-31],[-15,3]],[[22392,15746],[0,-76],[0,-94],[0,-95],[0,-95],[0,-94],[0,-95],[0,-95],[0,-94],[0,-95],[0,-94],[0,-95],[0,-95],[0,-95]],[[22392,14534],[-60,-39],[-11,-37],[18,-46],[10,-60],[1,-73],[-33,-162],[-69,-249],[-35,-157],[-1,-64],[-45,-84],[-89,-104],[-63,-63],[-35,-21],[-30,2],[-24,25],[-27,-17],[-30,-59],[-28,-31],[-26,-2],[-22,-38],[-18,-75],[-17,-43],[-16,-12],[-1,-38],[13,-64],[-1,-23],[-7,-1],[-8,4],[-17,-15],[-20,-36],[-7,0],[-5,6],[-6,47],[-16,33],[-26,20],[-36,-44],[-46,-106],[-20,-70],[8,-47],[3,-70],[-11,-29],[-25,-11],[-20,-38],[-13,-65],[-35,-41],[-56,-17],[-59,30]],[[20905,15525],[-1,-2],[7,-16],[46,-10],[31,-19],[24,-28],[88,-55],[27,-35],[27,-18],[26,-4],[18,11],[10,25],[13,2],[15,-22],[49,-24],[2,-7],[-137,-41],[-29,-19],[34,-14],[35,4],[35,19],[40,-1],[35,-9],[12,8],[4,4],[60,-54],[22,-8],[24,6],[24,20],[53,27],[81,32],[79,14],[75,-6],[48,9],[44,34],[96,111],[111,89],[182,111],[177,87]],[[15316,8218],[-114,46],[-29,29],[-52,33],[-47,68],[-94,84],[-35,20],[-11,-2],[-19,-41],[-50,-33],[-27,-2],[-49,13],[-9,10],[-7,26],[-20,17],[-14,-14],[-71,-35],[-11,-24],[-40,-1],[-40,18],[-100,-55],[-34,-44],[-36,-14],[-19,-42],[-11,6],[-38,51],[-38,16],[-53,51],[-2,45],[-6,6],[-9,5],[-12,-4],[-23,-39],[-13,-10],[-13,2],[-52,26],[-21,46],[-11,15],[-12,2],[-22,-14],[-12,-51],[-10,-13],[-21,-9],[1,-25],[-19,-71],[-10,-14],[-13,3],[-14,17],[-11,25],[-4,21],[8,56],[-5,19],[-10,5],[-25,-26],[-22,1],[-28,-26],[-18,-8],[-16,7],[-26,42],[-45,27],[-18,51],[-8,14],[-10,4],[-10,-2],[-16,-16],[-52,-66],[-24,-21],[-20,-4],[-20,7],[-12,16],[-3,67],[-12,21],[-48,42],[-10,39],[-5,55],[-58,-9],[-72,6],[-33,-48],[-17,-9],[-20,9],[-58,66],[-62,-13],[-35,7],[-86,49],[-67,4],[-28,9],[-15,11],[-7,75],[-27,63],[-8,17],[-46,44],[-7,1],[-5,-10],[-11,-49],[-13,-2],[-53,14],[-49,-15],[-27,25],[-92,115],[-37,29],[-30,10],[0,108],[0,108],[0,108],[0,108],[0,108],[0,108],[0,108],[-1,108],[0,108],[0,107],[0,108],[0,108],[0,108],[0,108],[0,108],[0,108],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,1],[-95,0],[-95,0],[-94,0],[-95,0]],[[244,15756],[-64,110],[-28,164],[-5,69],[7,183],[-19,78],[-49,129],[21,112],[22,68],[55,297],[13,24],[23,-1],[40,51],[-18,11],[-28,-24],[25,118],[27,101],[18,36],[10,328],[16,251],[26,83],[-9,85],[10,116],[-7,117],[56,562],[-8,68],[18,91],[-17,240],[8,269],[-15,34],[-7,37],[14,5],[26,-39],[120,1],[77,36],[28,-12],[33,-49],[41,-10],[51,9]],[[755,19504],[50,22],[40,-17],[51,-40],[50,-124],[49,-206],[10,-68],[39,-42],[45,-2],[182,-31],[26,2],[0,0],[33,8],[103,79],[111,26],[132,-6],[81,-22],[30,-40],[70,-4],[167,46],[185,32],[99,33],[112,69],[256,87],[127,9],[65,33],[15,17],[9,0],[135,1],[134,0],[135,0],[134,0],[135,1],[134,0],[135,0],[125,0]],[[25151,13935],[-50,-80],[-75,-27],[-40,-30],[-11,-14]],[[22920,13700],[-66,0],[-66,0],[-66,0],[-66,0],[-66,0],[-66,0],[-66,0],[-66,0],[0,104],[0,104],[0,105],[0,104],[0,105],[0,104],[0,104],[0,104]],[[22392,15746],[94,46],[41,31],[43,30],[22,18],[25,16],[158,117]],[[27097,15490],[-19,-23],[-20,35],[-10,39],[-14,21],[-16,8],[13,-83],[-32,-63],[-8,-162],[-40,-67],[-125,-44],[-37,4]],[[27093,15297],[-25,-25],[-28,4],[14,34],[6,48],[14,54],[8,17],[16,14],[-5,-146]],[[27030,15291],[-14,-17],[-5,43],[10,50],[10,2],[5,-27],[-6,-51]],[[23383,8424],[-7,-3],[-134,-135],[-40,-59],[-110,-228],[-28,-146],[-23,62],[6,46],[0,37],[-28,-81],[27,-117],[-24,-45],[-73,-84],[-40,-14],[-45,-23],[-14,-83],[-61,-76],[-35,-34],[-65,20],[20,-73],[-24,-56],[-41,-42],[-51,-28],[-29,3],[-25,-14],[-20,-36],[-48,-33],[-49,19],[-57,11],[-31,-20],[53,-33],[28,-47],[-6,-64],[-14,-25],[-33,-33],[-15,5],[-9,30],[-11,63],[-15,-14],[-3,-29],[-13,-10],[-48,100],[3,-77],[16,-58],[16,-30],[16,-18],[4,-27],[-32,-66],[-17,-15],[-29,-11],[-17,-41],[5,-35]],[[10479,16659],[0,225],[-1,226],[0,226],[-1,225],[0,226],[-1,225],[0,226],[-1,226]],[[20797,10886],[115,-1],[245,-1],[175,-2],[143,-1],[85,0],[106,-1],[24,18],[53,-3],[72,-4]],[[15666,4905],[-25,2],[-53,-149],[31,-83],[-2,-30],[-106,-17],[-241,-168],[-94,-90],[5,30],[113,117],[-40,18],[-64,-29],[-23,11],[27,97],[-9,86],[-46,2],[-29,-68],[-20,3],[-27,29],[-20,-9],[15,-155],[29,-64],[24,-81],[-66,-100],[-61,-83],[-7,-80],[-61,-104],[-58,-59],[-136,-139],[-39,-29],[-61,-65],[-85,-48],[-81,-77],[-27,-11],[52,65],[61,64],[-53,-9],[-81,30],[-49,1],[-1,-23],[-38,-33],[-39,49],[-17,32],[-8,28],[-17,7],[-16,-13],[59,-199],[25,-8],[27,-20],[-34,-46],[-37,-35],[-58,-24],[-49,73],[-11,-91],[-6,-91],[-17,-23],[-26,-33],[-14,25],[-7,35],[-17,-32],[-25,-23],[-41,-5],[-30,-12],[0,-38],[7,-38],[55,30],[-20,-97],[-50,-96],[-40,-23],[-63,14],[-15,-10],[-14,-19],[73,-151],[-47,-227],[-29,-82],[-21,-10],[-22,-3],[-81,73],[-43,57],[38,-154],[105,-45],[6,-58],[-1,-50],[-21,-58],[-19,-78],[14,-54],[17,-133],[14,-61],[16,-186],[16,-81],[96,-296],[32,-3],[5,-32],[-3,-61],[-69,-18],[-29,-28],[-5,-23],[-4,-13],[-9,1],[-33,17],[-75,84],[-108,52],[-143,21],[-97,42],[-52,64],[-55,38],[-57,12],[-47,35],[-37,58],[-55,37],[-72,16],[-47,43],[-33,106],[0,1],[-29,177],[-37,111],[-71,137],[-7,18],[0,0],[0,23],[9,79],[-8,58],[-23,47],[-5,49],[12,52],[1,63],[-10,73],[-46,79],[-81,85],[-68,124],[-57,163],[-56,113],[-55,62],[-38,77],[-21,91],[-6,52],[9,15],[-34,101],[-77,187],[-44,136],[-11,87],[-48,103],[-86,119],[-47,77],[-11,54],[-1,0],[-134,157],[-39,98],[-30,31],[-35,-3],[-18,9],[-1,22],[-11,1],[-22,-20],[-71,-4],[-121,12],[-87,27],[-54,41],[-37,-5],[-22,-53],[-46,-34],[-70,-15],[-61,-98],[-50,-180],[-22,-117],[6,-51],[-14,-38],[-32,-23],[-34,-53],[-34,-81],[-40,-40],[-45,3],[-84,63],[-122,123],[-95,76],[-70,29],[-61,56],[-53,85],[-49,56],[-45,29],[-52,93],[-60,160],[-30,123],[0,130],[-79,282],[-41,123],[-31,56],[-60,68],[-90,78],[-121,157],[-151,234],[-108,142],[-62,48],[-55,84],[-46,122],[-45,77],[-5,3]],[[15034,4155],[-25,-9],[110,139],[24,46],[29,-2],[-49,-78],[-89,-96]],[[14160,3258],[-18,-4],[23,49],[37,25],[83,93],[33,7],[18,32],[7,5],[-5,-40],[-66,-56],[-112,-111]],[[14034,3032],[-11,-3],[24,74],[5,30],[40,93],[21,14],[9,-39],[-41,-66],[-47,-103]],[[13862,2489],[-16,-52],[4,77],[42,176],[83,231],[35,39],[-96,-254],[-52,-217]],[[13955,1459],[-7,-42],[-42,196],[-69,443],[-2,252],[10,87],[18,-356],[76,-453],[16,-127]],[[6922,15756],[0,-113],[0,-113],[0,-113],[0,-112],[0,-113],[0,-113],[0,-113],[0,-113],[127,0],[127,0],[126,0],[127,0],[127,0],[127,0],[127,0],[127,0]],[[24160,12948],[-8,-103],[-23,-50],[-37,-39],[-49,-69],[-12,-64],[-15,-120],[21,-40],[21,-11],[62,27],[32,-12],[71,-144],[132,-57],[49,-36],[39,-75],[59,-43],[46,-63],[1,-41],[-16,-48],[-6,-66],[-19,-42],[-47,-4],[-29,10],[-152,231],[-18,21],[-56,121],[-67,65],[-20,-1],[94,-120],[39,-84],[67,-117],[49,-50],[36,-77],[33,-37],[90,-52],[-31,-37],[50,-31],[7,-59],[-5,-66],[-69,26],[-2,-49],[6,-29],[-31,-23],[-43,32],[-111,177],[1,-24],[9,-27],[64,-114],[58,-69],[49,-30],[37,-58],[14,-34],[8,-53],[-27,-35],[-32,-20],[-31,35],[-23,38],[-48,64],[-15,71],[-36,-4],[-154,90],[-124,11],[12,-18],[16,-12],[98,-23],[39,-41],[81,-37],[48,-10],[19,-113],[65,-78],[9,-58],[45,-7],[78,57],[51,-20],[73,-16],[17,-46],[13,-87],[26,-98],[16,-96]],[[24738,10837],[-39,1]],[[21659,11730],[4,-29],[-7,-31],[16,-37],[14,-57],[19,-36],[23,-28],[39,-25],[47,-44],[36,-13],[12,2],[40,43],[34,22],[35,47],[62,-64],[25,0],[61,28],[58,7],[14,9],[22,26],[0,53],[5,14],[10,6],[11,2],[26,-20],[25,0],[108,61],[8,-5],[14,-28],[47,36],[28,34],[12,50],[24,50],[-5,22],[-15,29],[20,66],[29,67],[109,200],[35,121],[46,78],[15,62],[34,62],[24,126],[15,26],[21,4],[21,-16],[16,-23],[10,-38],[55,-34],[47,-4],[32,24],[19,45],[26,83],[24,49],[16,63],[16,43],[25,27],[62,-2],[32,38],[25,44],[15,14],[18,-2],[56,70],[74,146],[16,92],[19,66],[8,67],[14,37],[66,-73],[38,-43],[86,-96],[57,-64],[22,73],[33,108]],[[24998,12168],[-111,-356],[4,-65],[-22,-21],[-34,-17],[-35,-39],[-23,-44],[-21,-116],[-41,-130],[-25,54],[-7,47],[12,121],[44,199],[48,124],[37,59],[31,120]],[[25074,12182],[0,0],[-54,-138],[-23,-14],[64,149]],[[26024,18467],[86,1],[211,0],[211,0],[210,1],[211,0]],[[973,22066],[52,0],[216,0],[216,0],[217,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[216,0],[53,0]],[[755,19504],[-16,12],[-24,3],[-54,45],[-30,46],[-94,-3],[-19,29],[-105,-29],[-33,29],[-57,-19],[14,84],[-3,107],[3,103],[14,-76],[36,-80],[17,91],[12,115],[-35,44],[-58,32],[-20,106],[136,91],[-72,19],[-29,41],[-35,5],[-2,-31],[-12,-41],[-12,54],[-4,65],[-14,110],[-56,177],[-34,229],[-42,113],[-82,108],[-21,64],[-20,160],[11,121],[-15,85],[39,-5],[103,-67],[129,-52],[39,-39],[62,-28],[345,-44],[23,4],[44,27],[19,-3],[51,-62],[26,-8],[33,3],[24,12],[42,43],[5,-16],[-1,-40],[15,-56],[31,-74],[11,-45],[-61,-129],[-12,-3],[-2,44],[-8,8],[-116,-217],[-41,-104],[-4,-46],[1,-27],[17,-7],[37,10],[55,43],[3,10],[-52,-16],[-24,-1],[3,49],[6,23],[33,72],[36,44],[50,46],[29,38],[19,55],[56,66],[10,19],[-2,54],[3,11],[27,-8],[11,-93],[-6,-42],[-48,-51],[-6,-18],[8,-70],[-7,-7],[-18,8],[-6,-4],[45,-76],[15,-59],[2,-52],[-13,-101],[-13,-17],[-23,6],[-29,32],[-7,-10],[-24,-79],[-8,7],[-15,93],[-8,7],[-46,-42],[-18,-41],[-16,-65],[-21,-30],[58,-7],[52,13],[41,-31],[15,-1],[37,31],[12,20],[31,98],[16,18],[24,0],[22,15],[34,54],[1,21],[-12,120],[4,68],[-7,22],[-15,22],[2,22],[12,36],[1,32],[-10,29],[4,33],[32,70],[6,31],[39,71],[-10,28],[-29,34],[-18,31],[-18,47],[-14,16],[-4,-7],[19,-78],[-4,-5],[-50,42],[-12,26],[-6,36],[5,27],[27,26],[32,10],[-3,22],[-40,73],[-27,33],[-21,16],[-28,4],[-13,12],[-3,17],[6,22],[15,7],[43,-9],[23,16],[-2,29],[-7,16],[1,103],[-16,84],[-9,14],[-9,1],[-10,-11],[-27,-3],[-16,28],[-19,53],[-34,126]],[[823,22066],[19,0],[-8,-14],[-7,3],[-4,11]],[[977,21777],[7,-20],[-21,-19],[-14,-3],[-23,31],[-10,4],[8,-47],[-3,-17],[-47,29],[-9,23],[13,25],[30,25],[10,3],[59,-34]],[[860,21622],[13,-30],[-54,19],[-23,17],[-7,17],[-8,54],[3,18],[25,6],[45,-67],[6,-34]],[[957,21559],[-8,-9],[-27,12],[-16,20],[-5,25],[10,48],[13,13],[9,-3],[3,-42],[24,-45],[-3,-19]],[[1083,21311],[25,-118],[10,49],[69,-85],[0,-42],[-8,-14],[-14,-5],[-14,12],[-12,29],[-15,16],[-33,10],[-17,34],[-6,23],[-2,66],[-8,21],[-18,4],[-17,16],[-26,46],[-3,13],[12,37],[28,64],[21,30],[12,-4],[16,-19],[19,-34],[-4,-25],[-76,-48],[-2,-11],[37,-13],[13,-12],[13,-40]],[[1121,20804],[-3,-17],[-27,20],[-10,19],[1,43],[7,28],[6,6],[16,-12],[5,-7],[5,-80]],[[1173,20624],[-2,-20],[-19,-16],[-10,4],[-1,24],[-5,4],[-21,-29],[1,57],[11,61],[9,1],[13,-40],[24,-46]],[[941,20452],[-5,-18],[-7,1],[-16,36],[-2,26],[14,18],[18,-52],[-2,-11]],[[16520,20053],[0,0],[18,-24],[43,-33],[34,-4],[43,7],[170,57],[72,41],[71,67],[7,2],[30,-12],[9,-6],[92,78],[30,10],[23,-2],[30,-31],[7,-19],[-10,-35],[-27,-53],[-12,-45],[0,-36],[-11,-39],[-29,-52],[10,-15],[78,38],[11,15],[2,9],[-5,11],[9,5],[61,-52],[40,-29],[34,-14],[31,8]],[[18801,18560],[-1,-23],[-10,-45],[-28,-36],[-75,-45],[-11,-31],[-2,-25],[-48,-106],[-23,-64],[-16,-67],[5,-43],[25,-17],[20,7],[16,31],[24,27],[32,25],[24,37],[32,88],[37,51],[19,3],[6,-1],[38,23],[31,-8],[18,-35],[19,-23],[4,-23],[-9,-50],[-18,-53],[-25,-55],[-23,-83],[-21,-111],[-5,-84],[12,-56],[-11,-51],[-35,-44],[-28,-60],[-21,-74],[-12,-63],[-2,-50],[3,-38],[12,-51],[0,-26],[-38,-113],[-14,-55],[-2,-43],[-9,-43],[-29,-86],[-9,-48],[-2,-44],[7,-73],[-4,-24],[2,-19],[7,-12],[0,-23],[-8,-33],[3,-26],[13,-19],[9,-35],[3,-52],[10,-43],[16,-35],[3,-50],[-10,-66],[-5,-124],[0,-41]],[[17311,20195],[-17,-6],[-36,8],[0,13],[38,19],[17,5],[4,-8],[-6,-31]],[[17205,20236],[9,-3],[13,-19],[2,-12],[-7,-7],[-20,16],[-2,12],[5,13]],[[17380,20307],[-8,-16],[-17,-14],[-6,6],[4,28],[8,16],[13,5],[6,-7],[0,-18]],[[17257,20112],[-12,-13],[-2,-14],[-15,-13],[-29,-12],[-12,2],[5,17],[15,20],[67,51],[12,-1],[4,-12],[-33,-25]],[[19083,18736],[23,-7],[9,-18],[-3,-31],[-9,-12],[-16,8],[-6,-17],[4,-41],[-6,-20],[-14,3],[0,-7],[12,-19],[1,-20],[-9,-22],[-10,-10],[-9,1],[-13,-25],[-19,-51],[-7,-30],[6,-9],[-4,-17],[-47,-79],[-18,-7],[-20,11],[-13,23],[-9,35],[-2,27],[3,19],[41,70],[19,45],[10,51],[19,32],[28,15],[22,31],[17,49],[20,22]],[[19145,18837],[25,-1],[8,-5],[3,-13],[-3,-38],[-15,-9],[-28,3],[-10,21],[15,52],[5,-10]]],"transform":{"scale":[0.001973501852821189,0.0011080658182821993],"translate":[-124.7099777491515,24.542349340056262]},"objects":{"ne_50m_admin_1_states_provinces_lakes":{"type":"GeometryCollection","geometries":[{"arcs":[[[0,1,2,3,4]],[[5]]],"type":"MultiPolygon","properties":{"name":"Alabama"}},{"arcs":[[6,7,8,9,10,11]],"type":"Polygon","properties":{"name":"Arkansas"}},{"arcs":[[12,13,14,15,16]],"type":"Polygon","properties":{"name":"Arizona"}},{"arcs":[[[-14,17,18,19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]]],"type":"MultiPolygon","properties":{"name":"California"}},{"arcs":[[26,27,28,29,30,31]],"type":"Polygon","properties":{"name":"Colorado"}},{"arcs":[[32,33,34,35]],"type":"Polygon","properties":{"name":"Connecticut"}},{"arcs":[[36,37]],"type":"Polygon","properties":{"name":"District of Columbia"}},{"arcs":[[38,39,40]],"type":"Polygon","properties":{"name":"Delaware"}},{"arcs":[[[-5,41,42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]]],"type":"MultiPolygon","properties":{"name":"Florida"}},{"arcs":[[[-4,54,55,56,57,-42]],[[58]]],"type":"MultiPolygon","properties":{"name":"Georgia"}},{"arcs":[[59,60,61,62,63,64]],"type":"Polygon","properties":{"name":"Iowa"}},{"arcs":[[65,66,67,68,69,70,71]],"type":"Polygon","properties":{"name":"Idaho"}},{"arcs":[[-65,72,73,74,75,76]],"type":"Polygon","properties":{"name":"Illinois"}},{"arcs":[[-75,77,78,79,80]],"type":"Polygon","properties":{"name":"Indiana"}},{"arcs":[[-30,81,82,83]],"type":"Polygon","properties":{"name":"Kansas"}},{"arcs":[[[-76,-81,84,85,86,87,88]],[[89,90]]],"type":"MultiPolygon","properties":{"name":"Kentucky"}},{"arcs":[[[-9,91,92,93]],[[94]],[[95]],[[96]],[[97]]],"type":"MultiPolygon","properties":{"name":"Louisiana"}},{"arcs":[[[-36,98,99,100,101,102]],[[103]],[[104]]],"type":"MultiPolygon","properties":{"name":"Massachusetts"}},{"arcs":[[[-38,105,106,107,-39,108,109,110]],[[111,112]]],"type":"MultiPolygon","properties":{"name":"Maryland"}},{"arcs":[[[113,114,115]],[[116]],[[117]]],"type":"MultiPolygon","properties":{"name":"Maine"}},{"arcs":[[[118,119,-79,120]],[[121,122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]]],"type":"MultiPolygon","properties":{"name":"Michigan"}},{"arcs":[[131,132,-63,133,134]],"type":"Polygon","properties":{"name":"Minnesota"}},{"arcs":[[-12,135,-83,136,-60,-77,-89,137,-91,138]],"type":"Polygon","properties":{"name":"Missouri"}},{"arcs":[[[-2,139,-92,-8,140]],[[141]]],"type":"MultiPolygon","properties":{"name":"Mississippi"}},{"arcs":[[142,143,144,145,-67,146]],"type":"Polygon","properties":{"name":"Montana"}},{"arcs":[[[-56,147,148,149,150]],[[151,152]],[[153]],[[154]],[[155]],[[156]],[[157]]],"type":"MultiPolygon","properties":{"name":"North Carolina"}},{"arcs":[[158,-135,159,-144,160]],"type":"Polygon","properties":{"name":"North Dakota"}},{"arcs":[[-29,161,162,-61,-137,-82]],"type":"Polygon","properties":{"name":"Nebraska"}},{"arcs":[[163,-115,164,-101,165]],"type":"Polygon","properties":{"name":"New Hampshire"}},{"arcs":[[[166,167,168]],[[169]]],"type":"MultiPolygon","properties":{"name":"New Jersey"}},{"arcs":[[-17,-32,170,171,172]],"type":"Polygon","properties":{"name":"New Mexico"}},{"arcs":[[-15,-20,173,-70,174]],"type":"Polygon","properties":{"name":"Nevada"}},{"arcs":[[[175,176,-99,-35,177,-168,178,179]],[[180]],[[181]],[[182]],[[183]],[[184]]],"type":"MultiPolygon","properties":{"name":"New York"}},{"arcs":[[185,186,-85,-80,-120,187]],"type":"Polygon","properties":{"name":"Ohio"}},{"arcs":[[-11,188,-171,-31,-84,-136]],"type":"Polygon","properties":{"name":"Oklahoma"}},{"arcs":[[-19,189,190,-71,-174]],"type":"Polygon","properties":{"name":"Oregon"}},{"arcs":[[-179,-167,191,-40,-108,192,-186,193]],"type":"Polygon","properties":{"name":"Pennsylvania"}},{"arcs":[[[-33,-103,194]],[[195]],[[196]]],"type":"MultiPolygon","properties":{"name":"Rhode Island"}},{"arcs":[[-57,-151,197]],"type":"Polygon","properties":{"name":"South Carolina"}},{"arcs":[[-62,-163,198,-145,-160,-134]],"type":"Polygon","properties":{"name":"South Dakota"}},{"arcs":[[-3,-141,-7,-139,-90,-138,-88,199,-148,-55]],"type":"Polygon","properties":{"name":"Tennessee"}},{"arcs":[[[-10,-94,200,-172,-189]],[[201]],[[202]],[[203]],[[204]],[[205]]],"type":"MultiPolygon","properties":{"name":"Texas"}},{"arcs":[[-16,-175,-69,206,-27]],"type":"Polygon","properties":{"name":"Utah"}},{"arcs":[[[-37,207,-152,208,-149,-200,-87,209,-106]],[[-110,210]],[[-112,211]]],"type":"MultiPolygon","properties":{"name":"Virginia"}},{"arcs":[[212,-166,-100,-177]],"type":"Polygon","properties":{"name":"Vermont"}},{"arcs":[[[213,-72,-191,214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]]],"type":"MultiPolygon","properties":{"name":"Washington"}},{"arcs":[[[-64,-133,223,-122,224,-73]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230]]],"type":"MultiPolygon","properties":{"name":"Wisconsin"}},{"arcs":[[-86,-187,-193,-107,-210]],"type":"Polygon","properties":{"name":"West Virginia"}},{"arcs":[[-28,-207,-68,-146,-199,-162]],"type":"Polygon","properties":{"name":"Wyoming"}}]}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment