Skip to content

Instantly share code, notes, and snippets.

@gustavderdrache
Last active January 13, 2016 17:09
Show Gist options
  • Save gustavderdrache/f2b29b63d121c5826a9e to your computer and use it in GitHub Desktop.
Save gustavderdrache/f2b29b63d121c5826a9e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FNS map</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.12/d3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js"></script>
<style>
.fns-map__state {
pointer-events: visibleFill;
fill: white;
stroke: none;
transition: fill 250ms;
}
.fns-map__boundary {
pointer-events: none;
stroke: black;
fill: none;
}
.fns-map__state--outlying-area {
stroke: black;
}
.fns-map__state:hover {
fill: red;
}
#fns-map svg {
width: 960px;
height: 600px;
border: 1px solid black;
overflow: hidden;
}
</style>
</head>
<body>
<div id="fns-map"></div>
<script src="script.js"></script>
<script>
fnsMap('#fns-map');
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
(function ($, d3, topojson) {
window.fnsMap = fnsMap;
// function fnsMap(target: string): void
// Note that "target" should be a <div> or similar block container; this function will create an SVG element that it "owns".
function fnsMap(target) {
/*
* Data path constants.
* TOPOJSON_PATH: the directory holding the two TopoJSON files
* OUTLYING_AREAS: where the outlying-areas.json file lives
* US_STATES: where the us-states.json file lives
* DATA_PATH: the path to the AJAX endpoint
*/
var TOPOJSON_PATH = '',
OUTLYING_AREAS = TOPOJSON_PATH + 'outlying-areas.json',
US_STATES = TOPOJSON_PATH + 'us-states.json',
DATA_PATH = 'states.json';
// Used to set up the view box.
// NOTE: this isn't the *actual* height/width of the map; that can be set using CSS.
var width = 960,
height = 500;
var path = d3.geo.path()
.projection(albersFns());
var svg = d3.select(target)
.append('svg')
.classed('fns-map', true)
.attr({
viewBox: '0 0 ' + width + ' ' + height,
});
$.when($.getJSON(OUTLYING_AREAS), $.getJSON(US_STATES))
.pipe(mapReady);
// called when the two map data files are loaded
// we're adding an extra parameter (the svg) so we can draw on it
function mapReady(outlyingAreas, usStates) {
// jQuery gives us all three arguments as an array, so filter some out
outlyingAreas = outlyingAreas[0];
usStates = usStates[0];
// convert from TopoJSON to GeoJSON
var outlying = topojson.feature(outlyingAreas, outlyingAreas.objects['outlying-areas']),
states = topojson.feature(usStates, usStates.objects['us-states']),
boundary = topojson.mesh(usStates, usStates.objects['us-states']);
// given a feature, return a unique identifier
function id(feature) {
return 'fns-map-' + feature.id;
}
// draw our objects
// we're surrounding our <path> elements with SVG <a> tags, which makes them clickable links.
// in this pass, the links are just "#", but we'll be overwriting them once we have the AJAX callback complete
svg.selectAll('a.fns-map__state--continental')
.data(states.features)
.enter()
.append('svg:a')
.attr({
id: id,
class: 'fns-map__state fns-map__state--continental',
'xlink:href': '#',
})
.append('svg:path')
.attr('d', path);
svg.selectAll('a.fns-map__state--outlying-area')
.data(outlying.features)
.enter()
.append('svg:a')
.attr({
id: id,
class: 'fns-map__state fns-map__state--outlying-area',
'xlink:href': '#',
})
.append('svg:path')
.attr('d', path);
// this element should be considered inert.
svg.append('svg:path')
.datum(boundary)
.attr({
d: path,
class: 'fns-map__boundary',
});
console.log(outlyingAreas, usStates);
}
}
/*
* NOTE: Below this line, there be dragons.
*
* Well, no, but there is a kinda gnarly custom map projection coming up.
*/
// hacky map projection
// "borrows" heavily from https://gist.github.com/mbostock/5629120
function albersFns() {
var eps = 1e-6;
var lower48 = d3.geo.albers();
// gua
var alaska = d3.geo.conicEqualArea()
.rotate([154, 0])
.center([-2, 58.5])
.parallels([55, 65]);
// ESRI:102007
var hawaii = d3.geo.conicEqualArea()
.rotate([157, 0])
.center([-3, 19.9])
.parallels([8, 18]);
// not standard but who cares
var puertoRico = d3.geo.conicEqualArea()
.rotate([66, 0])
.center([0, 18])
.parallels([8, 18]);
// EPSG:3993
var guam = d3.geo.conicEqualArea()
.rotate([0, 0])
// hat tip http://www.travelmath.com/country/Guam
.center([13.4667, 144.7831])
.parallels([13.2, 13.7]);
var point,
pointStream = {
point: function(x, y) {
point = [x, y];
}
},
lower48Point,
alaskaPoint,
hawaiiPoint,
puertoRicoPoint,
guamPoint;
function albersFns(coords) {
var x = coords[0],
y = coords[1];
// figure out which projection "owns" the (x,y) pair we were given
// if they do, they'll set point to a non-null value
point = null;
(lower48Point(x, y), point)
|| (alaskaPoint(x, y), point)
|| (hawaiiPoint(x, y), point)
|| (puertoRicoPoint(x, y), point)
|| (guamPoint(x, y), point);
// return what we found (if anything)
return point;
};
// given coordinates, invert them
albersFns.invert = function (coords) {
var k = lower48.scale(),
t = lower48.translate(),
x = (coords[0] - t[0])/k,
y = (coords[1] - t[1])/k,
proj;
// magic numbers ahoy
// certain regions are "owned" by various projections, hence the conditional blocks
if (y >= 0.120 && y < 0.234 && x >= -0.425 && x < -0.214) {
proj = alaska;
} else if (y > 0.166 && y < 0.234 && x >= -0.214 && x < -0.115) {
proj = hawaii;
} else if (y >= 0.204 && y < 0.234 && x >= 0.320 && x < 0.380) {
proj = puertoRico;
} else {
proj = lower48;
}
return proj.invert(coords);
};
// some sort of multi-polygon something-or-other
albersFns.stream = function(stream) {
var lower48Stream = lower48.stream(stream),
alaskaStream = alaska.stream(stream),
hawaiiStream = hawaii.stream(stream),
puertoRicoStream = puertoRico.stream(stream),
guamStream = guam.stream(stream);
return {
point: function(x, y) {
lower48Stream.point(x, y);
alaskaStream.point(x, y);
hawaiiStream.point(x, y);
puertoRicoStream.point(x, y);
guamStream.point(x, y);
},
sphere: function() {
lower48Stream.sphere();
alaskaStream.sphere();
hawaiiStream.sphere();
puertoRicoStream.sphere();
guamStream.sphere();
},
lineStart: function() {
lower48Stream.lineStart();
alaskaStream.lineStart();
hawaiiStream.lineStart();
puertoRicoStream.lineStart();
guamStream.lineStart();
},
lineEnd: function() {
lower48Stream.lineEnd();
alaskaStream.lineEnd();
hawaiiStream.lineEnd();
puertoRicoStream.lineEnd();
guamStream.lineEnd();
},
polygonStart: function() {
lower48Stream.polygonStart();
alaskaStream.polygonStart();
hawaiiStream.polygonStart();
puertoRicoStream.polygonStart();
guamStream.polygonStart();
},
polygonEnd: function() {
lower48Stream.polygonEnd();
alaskaStream.polygonEnd();
hawaiiStream.polygonEnd();
puertoRicoStream.polygonEnd();
guamStream.polygonEnd();
}
};
};
albersFns.precision = function(precision) {
if (!arguments.length) {
return lower48.precision();
}
lower48.precision(precision);
alaska.precision(precision);
hawaii.precision(precision);
puertoRico.precision(precision);
guam.precision(precision);
return albersFns;
};
albersFns.scale = function (scale) {
if (!arguments.length) {
return lower48.scale();
}
lower48.scale(scale);
alaska.scale(scale * 0.35); // "alaska is a very big state", said captain obvious
hawaii.scale(scale);
puertoRico.scale(scale);
guam.scale(scale);
// recompute translation for reasons that escape me
return albersFns.translate(lower48.translate());
}
albersFns.translate = function (translate) {
if (!arguments.length) {
return lower48.translate();
}
var k = lower48.scale(),
x = +translate[0],
y = +translate[1];
// magic numbers ahoy
// clipExtent is the magic that makes each of these areas mutually exclusive: going out of bounds makes `point' null.
lower48Point = lower48
.translate(translate)
.clipExtent([
[x - 0.455 * k, y - 0.238 * k],
[x + 0.455 * k, y + 0.238 * k],
])
.stream(pointStream)
.point;
alaskaPoint = alaska
.translate([x - 0.307 * k, y + 0.201 * k])
.clipExtent([
[x - 0.425 * k + eps, y + 0.120 * k + eps],
[x - 0.214 * k - eps, y + 0.234 * k - eps],
])
.stream(pointStream)
.point;
hawaiiPoint = hawaii
.translate([x - 0.205 * k, y + 0.212 * k])
.clipExtent([
[x - 0.214 * k + eps, y + 0.166 * k + eps],
[x - 0.115 * k - eps, y + 0.234 * k - eps],
])
.stream(pointStream)
.point;
puertoRicoPoint = puertoRico
.translate([x + 0.350 * k, y + 0.224 * k])
.clipExtent([
[x + 0.320 * k, y + 0.204 * k],
[x + 0.380 * k, y + 0.234 * k],
])
.stream(pointStream)
.point;
guamPoint = guam
.translate([x + 0.5 * k, y + 0.25 * k])
.clipExtent([
[x + 0.53 * k, y + 0.23 * k],
[x + 0.58 * k, y * 0.27 * k],
])
.stream(pointStream)
.point;
return albersFns;
};
// ... and engage.
return albersFns.scale(1070);
}
})(jQuery, d3, topojson);
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.001971379631347664,0.0011072965169405214],"translate":[-178.19451843993755,18.96390918584938]},"arcs":[[[968,29647],[-32,-53],[-24,24],[-9,73],[18,18],[50,-52],[-3,-10]],[[1109,29665],[-43,-19],[-57,40],[6,46],[62,-39],[32,-28]],[[160,29519],[-11,-31],[-12,1],[-68,50],[-10,17],[40,24],[11,18],[-4,24],[-30,33],[-55,43],[-21,31],[13,18],[27,12],[82,2],[45,-52],[33,-19],[79,-12],[-41,-22],[-23,-22],[-29,-83],[-26,-32]],[[531,29579],[-15,-12],[-27,-9],[-77,10],[-47,-3],[-52,-6],[-39,-16],[-8,22],[1,18],[169,50],[39,26],[25,33],[22,61],[17,19],[11,-1],[24,-25],[-8,-32],[-22,-27],[-7,-26],[-6,-82]],[[812,29715],[3,-31],[58,4],[18,-16],[0,-59],[-7,-17],[-9,-4],[-21,13],[-24,-30],[-108,-74],[-33,41],[-64,-65],[45,169],[51,25],[19,19],[-5,50],[24,82],[51,-4],[24,-34],[-1,-22],[-21,-47]],[[1102,29837],[-12,-26],[-49,28],[-18,23],[-3,24],[14,39],[40,0],[23,-16],[22,-29],[7,-19],[-24,-24]],[[2354,29958],[100,-37],[123,5],[46,-9],[0,-11],[-79,-15],[-27,5],[-69,-20],[-47,-4],[-107,19],[-83,-13],[-22,5],[-26,17],[-30,28],[-1,18],[27,7],[73,-24],[8,13],[62,23],[52,-7]],[[2906,30081],[-37,-14],[-41,14],[19,48],[19,25],[38,31],[44,-13],[35,-39],[-77,-52]],[[1784,29867],[-272,-38],[-41,26],[41,14],[49,8],[102,43],[126,37],[98,44],[85,29],[24,48],[-74,24],[-15,19],[35,23],[30,32],[70,38],[63,-47],[13,-32],[-6,-38],[-12,-40],[-55,-20],[-8,-21],[30,-59],[-114,-52],[-169,-38]],[[3785,30360],[-33,-29],[-9,11],[-6,35],[18,28],[56,60],[37,-11],[12,-16],[-1,-23],[-14,-30],[-18,-14],[-21,-1],[-21,-10]],[[4313,30600],[-8,-36],[-8,-14],[-78,20],[-52,-7],[-6,21],[5,19],[82,30],[33,0],[22,-15],[10,-18]],[[5189,31050],[-155,-97],[-50,-71],[-39,-68],[-30,-37],[-22,-6],[-25,-18],[-51,-48],[-22,-6],[-164,-111],[-12,-2],[8,29],[50,41],[33,38],[37,62],[21,23],[6,31],[3,62],[9,24],[35,47],[26,26],[34,9],[69,-8],[28,24],[9,18],[-17,17],[-4,29],[4,49],[20,44],[35,39],[48,30],[61,21],[45,1],[79,-45],[12,-21],[-19,-46],[-11,-42],[-51,-38]],[[6079,31391],[-7,-2],[-13,22],[0,20],[8,15],[24,35],[16,12],[21,6],[6,-9],[-19,-41],[-22,-27],[-14,-31]],[[5874,31552],[22,-43],[37,27],[28,37],[22,48],[14,19],[19,-25],[53,-35],[-45,-53],[-86,-80],[-29,-53],[-2,-23],[84,18],[23,-3],[15,-18],[-23,-22],[-46,-19],[-39,-38],[-91,-66],[-35,-55],[-41,-21],[-56,-5],[-97,-36],[-60,-33],[-15,-18],[-19,-9],[-22,1],[-24,-15],[-26,-30],[-22,-15],[-35,-3],[-18,-12],[-21,1],[-57,36],[-14,21],[50,43],[37,14],[55,7],[54,39],[111,52],[34,28],[23,99],[25,17],[14,40],[61,-1],[29,-45],[9,-6],[5,5],[3,35],[32,25],[-18,18],[-57,23],[-43,11],[-27,-1],[-23,12],[-17,28],[-8,26],[2,27],[14,30],[26,33],[31,19],[65,13],[58,22],[31,3],[24,-9],[6,-85]],[[6266,31705],[-19,-16],[-15,-3],[-12,9],[-53,-11],[-10,6],[-23,54],[-2,28],[9,22],[24,20],[38,18],[37,-4],[65,-50],[31,-29],[6,-18],[-23,-17],[-53,-9]],[[6408,31765],[-22,-7],[-5,9],[-3,40],[-17,63],[33,23],[20,5],[8,-10],[24,-47],[23,-12],[17,-10],[-30,-14],[-48,-40]],[[7934,32004],[-44,-20],[-47,20],[-40,38],[-4,46],[88,-30],[19,-14],[28,-40]],[[8064,32406],[-12,-4],[-35,27],[-13,21],[-9,32],[71,47],[15,0],[13,-26],[2,-20],[-19,-59],[-13,-18]],[[7466,32527],[49,-149],[22,-30],[31,-15],[45,-17],[26,-22],[23,-33],[3,-16],[-139,61],[-88,-88],[-26,-12],[-249,-4],[-50,-16],[-32,-29],[-57,-80],[-28,-31],[-31,-19],[-64,-21],[-78,3],[-40,11],[-22,38],[-19,75],[0,21],[8,36],[69,50],[23,26],[90,171],[26,23],[27,6],[76,-12],[66,50],[140,76],[31,9],[101,1],[28,-12],[21,-21],[18,-30]],[[9553,32519],[-17,-4],[-13,9],[-19,52],[-2,21],[37,-16],[13,-37],[1,-25]],[[9475,32681],[-2,-72],[-8,-11],[-13,19],[-29,-21],[-15,16],[6,25],[-2,19],[21,2],[5,36],[-3,15],[10,32],[15,7],[15,-67]],[[23768,32616],[51,-117],[3,-42],[-49,-14],[-39,6],[-20,13],[-6,19],[13,60],[-26,35],[-29,12],[-27,-21],[-1,59],[20,42],[-11,58],[-1,43],[7,14],[27,-2],[55,-44],[33,-121]],[[9294,32660],[-31,-19],[-10,-25],[-23,-11],[-20,-21],[-67,-92],[-29,-18],[32,80],[5,25],[1,17],[-10,59],[19,-2],[16,12],[33,53],[29,5],[31,63],[16,5],[9,-9],[-14,-38],[30,-35],[-8,-34],[-9,-15]],[[22995,32449],[13,-12],[12,8],[21,32],[36,-6],[26,-11],[16,-13],[-8,-47],[-7,-76],[-15,-27],[-14,-38],[-52,23],[-42,48],[-60,83],[-34,60],[-3,26],[-21,18],[-41,104],[-24,81],[-37,10],[-48,23],[-18,44],[13,40],[67,19],[101,-101],[15,-43],[36,-50],[7,-70],[19,-27],[42,-98]],[[9062,32849],[-7,-71],[-70,45],[-18,23],[12,16],[67,5],[16,-18]],[[8882,32829],[8,-1],[15,7],[33,51],[11,2],[0,-16],[-15,-50],[26,-67],[24,-33],[-2,-11],[-62,-23],[-47,17],[-24,-6],[-23,-24],[-15,26],[-11,124],[3,22],[26,43],[33,20],[14,-6],[12,-17],[3,-18],[-9,-40]],[[22771,33035],[11,-25],[0,-16],[-73,-60],[-1,-13],[-18,-37],[-15,-13],[-27,-40],[-52,-44],[7,130],[-52,76],[53,38],[34,-11],[57,-4],[55,33],[21,-14]],[[11479,33286],[-20,-29],[-39,2],[-21,10],[-7,25],[59,75],[13,10],[11,-3],[5,-31],[-1,-59]],[[23950,32986],[-17,-99],[-35,-102],[-53,-54],[-38,12],[-28,44],[-25,-3],[-28,9],[-15,37],[15,47],[-13,36],[-14,-32],[-24,-29],[-60,-38],[-42,-73],[-20,-47],[-25,52],[-15,122],[-2,52],[44,79],[56,74],[12,222],[180,112],[17,-6],[59,-83],[62,-117],[16,-52],[1,-92],[-8,-71]],[[22638,33754],[96,-20],[88,2],[30,-37],[20,-39],[12,-37],[3,-35],[-2,-24],[-11,-27],[2,-8],[172,-86],[81,-90],[33,-48],[18,-40],[34,-100],[72,-117],[38,-35],[21,-35],[-12,-1],[-51,26],[-109,78],[-9,-4],[-10,-42],[-17,-37],[-25,-26],[20,-8],[89,16],[74,-76],[28,-13],[28,-55],[1,-21],[-16,-40],[-12,-17],[4,-11],[20,-6],[82,11],[15,-19],[-13,-158],[12,-58],[0,-27],[-10,-35],[0,-29],[7,-31],[1,-27],[-20,-71],[-22,-12],[-36,0],[-27,20],[-40,61],[-38,94],[-14,14],[-50,14],[-9,11],[-32,2],[-23,39],[3,51],[-19,53],[2,23],[-22,10],[-18,-15],[9,-51],[-11,-40],[-39,17],[-66,126],[-75,102],[-30,24],[8,30],[37,15],[30,-1],[6,17],[-63,98],[3,28],[22,50],[-28,20],[-78,-15],[-28,10],[-23,40],[-13,34],[-68,7],[-25,-5],[-45,52],[-20,33],[8,17],[41,30],[24,-4],[46,-32],[17,1],[46,42],[7,38],[34,31],[-6,33],[-18,55],[-42,16],[-85,-33],[-74,-51],[-29,20],[-7,31],[79,85],[35,47],[-7,28],[-25,36],[-2,90],[16,21]],[[23037,33671],[-26,-3],[-31,14],[-72,73],[-2,22],[11,24],[41,45],[17,11],[99,-5],[32,-12],[7,-21],[-1,-21],[-11,-22],[-2,-22],[6,-24],[-12,-23],[-56,-36]],[[23376,33546],[-11,-150],[-20,9],[-19,0],[-39,-21],[-41,9],[-20,17],[-7,19],[8,44],[-23,25],[-77,9],[-29,11],[-16,47],[-4,61],[12,23],[39,17],[30,74],[17,10],[64,148],[32,-10],[56,-90],[71,-130],[-23,-122]],[[11927,33841],[-35,-21],[-12,7],[-1,18],[8,28],[16,28],[53,53],[54,36],[28,-2],[9,-23],[-33,-47],[-87,-77]],[[12167,33912],[-25,-2],[-38,24],[5,29],[54,34],[54,-5],[4,-19],[-2,-22],[-5,-13],[-17,-12],[-30,-14]],[[4281,34021],[67,-18],[37,12],[33,-10],[5,-21],[-57,-47],[-23,3],[-68,56],[6,25]],[[23054,33922],[-6,-13],[-64,1],[-24,11],[-8,39],[6,35],[15,28],[18,53],[14,89],[95,-99],[29,-45],[15,-54],[-33,-20],[-41,-10],[-16,-15]],[[22423,34210],[33,-62],[48,5],[27,-47],[20,-71],[-15,-46],[-21,10],[-24,-26],[-14,-87],[7,-88],[-7,-87],[-28,-89],[-5,-59],[-11,-18],[-12,-6],[-15,16],[-22,12],[-28,-50],[-34,0],[-28,114],[25,190],[56,38],[-33,52],[-71,60],[6,34],[-54,96],[-3,23],[9,81],[50,72],[66,12],[47,-30],[26,-27],[5,-22]],[[22740,34354],[33,-29],[19,30],[34,-1],[63,-27],[38,-39],[22,-46],[1,-27],[-6,-61],[5,-63],[-3,-32],[-8,-27],[-15,-21],[-15,-3],[-50,56],[-56,102],[-44,31],[-1,-11],[12,-29],[35,-54],[6,-33],[25,-40],[11,-31],[6,-40],[0,-35],[-7,-30],[-11,-19],[-17,-8],[-86,8],[-51,-20],[-60,11],[-15,18],[-9,30],[-5,72],[-15,103],[4,79],[-39,71],[-33,43],[-48,39],[-32,38],[9,31],[49,22],[80,-5],[174,-53]],[[12777,34463],[-65,-29],[-11,1],[-40,-59],[-31,-25],[-40,46],[10,73],[35,48],[178,-16],[14,-14],[0,-11],[-13,-10],[-37,-4]],[[4075,34517],[-52,-43],[-48,16],[-14,31],[0,13],[137,35],[-23,-52]],[[21926,34668],[43,-99],[31,-77],[28,-93],[47,-191],[21,-72],[7,-40],[5,-104],[-7,-22],[-14,-21],[-2,-29],[13,-79],[0,-121],[-12,-67],[-14,-10],[-35,22],[-28,36],[-21,38],[-52,121],[-15,56],[-1,40],[8,30],[17,18],[29,49],[-4,8],[-22,-11],[-46,-7],[-40,39],[-32,20],[6,70],[-8,20],[-62,-22],[-23,20],[-5,26],[1,39],[12,34],[59,86],[-6,16],[-29,4],[-37,29],[-18,97],[-40,55],[-24,-5],[-54,-156],[-27,-34],[-76,-22],[15,43],[7,39],[-27,117],[-1,46],[19,33],[53,14],[29,19],[22,33],[6,31],[42,83],[19,16],[52,-1],[110,-92],[33,-13],[48,-59]],[[12658,35118],[-14,-25],[-13,7],[-29,29],[-58,43],[-26,29],[-2,13],[20,13],[68,-34],[29,-32],[25,-43]],[[12832,35094],[4,-49],[20,6],[78,51],[41,15],[53,2],[42,-23],[8,-18],[-3,-21],[-34,-43],[2,-28],[36,-52],[88,-28],[11,-16],[0,-19],[-61,-85],[-23,-20],[-16,-5],[-111,16],[-101,28],[-41,4],[-15,-9],[-29,-26],[21,-8],[89,-6],[31,-39],[14,-28],[7,-31],[-18,-13],[-38,-9],[-45,0],[-57,-35],[-31,-40],[-113,-10],[-86,-54],[-30,-26],[-11,-31],[-32,-23],[-73,-23],[43,-21],[7,-17],[1,-24],[-6,-21],[-58,-93],[-109,-76],[-28,4],[-12,9],[-10,15],[0,14],[141,153],[-6,7],[-38,6],[-61,42],[-43,-27],[-9,1],[11,36],[28,42],[-5,12],[-15,11],[-36,7],[-55,2],[-41,-11],[-26,-22],[-2,-9],[56,2],[16,-11],[15,-21],[9,-25],[3,-28],[-11,-37],[-27,-47],[-40,8],[-81,104],[-36,153],[-69,117],[-3,28],[19,72],[70,103],[76,28],[53,43],[52,13],[32,-1],[44,-19],[17,-39],[-10,-19],[4,-9],[31,-24],[33,-82],[39,-73],[25,-30],[34,-18],[-35,56],[-21,69],[-10,137],[-10,37],[20,9],[55,-5],[-1,21],[-59,46],[-36,38],[-13,31],[0,26],[32,39],[18,11],[19,4],[37,-8],[17,-12],[48,-87],[22,-27],[19,0],[17,14],[16,29],[16,17],[17,6],[53,-13],[18,5],[9,22],[-1,39],[13,14],[4,29],[-29,42],[33,13],[110,-32],[47,-36],[-24,-66]],[[21540,35474],[73,-88],[0,-20],[-14,-61],[-40,-17],[11,-24],[30,-18],[21,15],[76,85],[24,18],[14,2],[93,-26],[82,-40],[24,-33],[13,-56],[-21,-123],[-67,-21],[-32,2],[-33,18],[-55,-42],[45,-33],[138,-7],[41,-69],[12,-53],[-29,-98],[-78,27],[-69,56],[-141,81],[-33,3],[-23,-14],[-6,-48],[1,-106],[-37,-54],[-111,24],[-44,79],[-40,127],[-153,149],[-42,30],[-55,89],[22,71],[7,41],[29,11],[43,32],[24,68],[39,-55],[52,-54],[0,51],[25,39],[50,-1],[24,8],[34,38],[48,19],[28,-22]],[[22259,35460],[-3,-22],[-69,2],[-70,33],[-35,43],[7,20],[65,18],[62,-41],[43,-53]],[[22073,35400],[129,-21],[94,5],[86,-135],[54,-109],[31,-77],[17,-74],[24,-71],[-2,-10],[-50,48],[-36,97],[-18,39],[-18,17],[-19,36],[-37,92],[-1,27],[-17,24],[-19,10],[-21,-4],[-8,-9],[4,-65],[17,-71],[93,-155],[62,-89],[12,-29],[8,-81],[-27,-37],[33,-75],[-1,-14],[-7,-14],[-89,-34],[-81,-138],[-89,-81],[-41,-13],[-19,13],[-19,31],[-11,42],[-3,52],[22,33],[44,170],[1,56],[-55,77],[-33,64],[-18,88],[-29,234],[-14,75],[-20,62],[-25,50],[-19,55],[-13,60],[5,23],[43,-31],[53,-86],[27,-57]],[[13076,35579],[18,-8],[19,54],[14,2],[60,-46],[37,11],[24,-56],[21,-6],[20,7],[11,-4],[-4,-59],[-44,-60],[-20,-15],[-29,15],[-10,6],[-19,27],[-14,33],[-9,1],[-33,-40],[1,-19],[14,-29],[-2,-19],[-37,-8],[-36,4],[-43,-25],[-11,16],[-6,44],[-14,-5],[-21,-55],[-22,-34],[-41,-29],[-9,-14],[-30,-2],[-45,-18],[-27,3],[-164,59],[-38,22],[134,137],[71,53],[41,-3],[41,-17],[22,3],[1,61],[-38,45],[2,19],[84,30],[32,-4],[35,-16],[33,-26],[31,-35]],[[13041,35692],[-15,-6],[-37,27],[-25,30],[17,22],[71,47],[35,1],[14,-8],[5,-14],[-2,-22],[-16,-27],[-47,-50]],[[8763,35775],[-37,-15],[-40,8],[-31,89],[24,3],[50,59],[110,47],[28,6],[-104,-197]],[[17059,36896],[-25,-6],[37,60],[49,65],[46,41],[60,17],[-7,-29],[-78,-56],[-82,-92]],[[15305,37119],[-26,-28],[-100,17],[20,54],[77,35],[84,-54],[-55,-24]],[[15450,36891],[-56,-13],[-13,27],[30,66],[23,38],[18,9],[64,75],[71,54],[66,80],[67,114],[12,42],[31,5],[51,-28],[31,-39],[-15,-32],[-168,-161],[-14,-21],[-15,-55],[-14,-19],[-22,-9],[-16,-24],[-11,-39],[-20,-21],[-32,-2],[-21,-10],[-13,-20],[-34,-17]],[[6117,37406],[47,-45],[24,-2],[78,13],[29,-9],[28,-20],[17,-29],[3,-52],[-12,-46],[3,-65],[-2,-29],[41,-37],[13,-50],[7,-54],[-90,-18],[-90,-3],[-78,-36],[-16,-27],[13,-40],[-22,-10],[-19,8],[-38,38],[-41,17],[-145,27],[-181,108],[-78,22],[-79,79],[-72,100],[47,16],[47,9],[211,-15],[26,71],[27,18],[67,21],[62,39],[29,-1],[28,-15],[60,24],[31,5],[25,-12]],[[16778,37364],[-16,-22],[-44,8],[-24,14],[79,58],[13,-12],[-8,-46]],[[16131,37466],[11,-25],[98,6],[28,-4],[11,-12],[-13,-17],[-38,-22],[-110,-39],[-89,-51],[-12,5],[-16,56],[-17,22],[-10,32],[1,12],[16,21],[33,32],[23,12],[84,-28]],[[15490,37467],[0,-24],[-16,-23],[15,-42],[-26,-72],[-11,-46],[-14,-28],[-14,-12],[-14,7],[-3,16],[8,25],[-33,-1],[-10,63],[18,20],[7,27],[2,18],[22,80],[7,6],[3,-19],[7,-6],[12,8],[17,35],[7,4],[16,-36]],[[13277,37386],[-25,-3],[33,45],[23,87],[30,-12],[7,-16],[-51,-90],[-17,-11]],[[2766,37473],[109,-59],[71,6],[55,-50],[24,-40],[-84,29],[-121,-2],[-164,121],[-59,27],[14,68],[63,35],[32,-92],[60,-43]],[[15352,37806],[-65,-8],[-29,12],[-4,12],[12,46],[-1,19],[32,7],[37,-21],[11,-23],[7,-44]],[[3415,40347],[7,-22],[53,4],[75,-10],[82,-21],[81,7],[103,68],[61,18],[61,9],[67,-16],[65,-36],[25,-21],[20,-37],[13,-45],[20,-32],[122,-39],[77,-16],[19,-22],[17,-30],[64,-22],[67,8],[38,-8],[114,-1],[142,-33],[-23,-88],[-46,-38],[-130,12],[-130,-12],[-54,-45],[-45,-57],[-6,-56],[-26,-25],[-27,-12],[-22,31],[-30,94],[-20,26],[-23,16],[-63,29],[-65,19],[-37,2],[-28,33],[-15,47],[-25,24],[-51,34],[-53,28],[-163,58],[-53,8],[-55,-6],[-58,-27],[-56,-40],[-58,-30],[-60,-6],[-57,17],[-54,39],[-27,28],[-14,47],[1,47],[7,46],[29,111],[51,22],[93,-79]],[[6130,42684],[-20,-5],[1,14],[58,36],[107,46],[-4,-10],[-57,-35],[-85,-46]],[[18866,45775],[0,-264],[0,-263],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-263],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-263],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-264],[0,-263],[0,-264],[0,-264],[0,-264],[122,-37],[120,-37],[37,73],[130,-56],[113,-49],[72,63],[79,68],[105,5],[119,6],[79,3],[0,-58],[-30,-96],[-24,-81],[65,-74],[7,-7],[88,-43],[83,-40],[37,-112],[91,-85],[69,-65],[66,-63],[94,-89],[67,-63],[88,-83],[52,-50],[25,-97],[31,-115],[-19,-69],[42,-11],[81,77],[77,48],[95,58],[64,40],[119,2],[57,115],[0,162],[60,-3],[36,22],[15,48],[-38,65],[114,30],[83,22],[117,60],[115,58],[55,-45],[55,-44],[106,-105],[7,-25],[-7,-49],[-10,-50],[64,-138],[19,-15],[53,-20],[64,-45],[28,-40],[91,-63],[16,-27],[9,-42],[15,-37],[17,-26],[16,-37],[40,-44],[76,-49],[52,-34],[74,-48],[74,-97],[65,-85],[74,-83],[-11,-67],[75,-103],[78,-131],[61,-117],[43,-65],[51,-94],[63,-115],[71,-131],[55,-84],[72,-118],[35,-70],[-24,-48],[-30,-60],[92,-28],[64,-20],[-16,-66],[-21,-87],[72,-34],[48,-24],[-10,-45],[27,-52],[5,-86],[87,6],[39,2],[52,-38],[70,-50],[69,-47],[59,-40],[77,-24],[96,-34],[47,-70],[87,-29],[33,-98],[100,-36],[59,24],[22,-40],[16,-46],[5,-57],[-6,-57],[-25,-47],[-19,-51],[-12,-54],[-5,-59],[3,-62],[10,-55],[31,-101],[10,-62],[2,-42],[-69,-145],[-24,-69],[3,-31],[-50,-73],[-92,-101],[-42,-58],[-20,19],[-119,15],[-43,129],[-23,100],[-34,88],[1,19],[31,59],[118,47],[2,19],[-44,13],[-11,21],[-12,94],[3,83],[-3,55],[-20,112],[-29,68],[-77,134],[-6,34],[33,42],[21,40],[-129,-69],[-176,-72],[-76,-50],[-16,-20],[-5,-17],[14,-48],[-3,-15],[-15,-28],[-18,-79],[-39,-84],[-19,-18],[-69,32],[-18,27],[-35,109],[8,30],[25,24],[35,53],[43,82],[82,208],[53,1],[95,41],[-148,21],[-23,11],[-20,28],[-17,46],[-31,51],[-56,17],[-25,19],[-37,62],[-25,28],[-14,34],[-2,41],[-11,21],[-39,7],[-21,14],[-6,105],[-77,28],[-31,23],[-51,66],[-14,32],[-5,26],[13,73],[-6,14],[-45,-8],[-280,113],[15,149],[-52,196],[-56,79],[11,31],[12,17],[25,0],[108,-58],[101,-68],[13,10],[-162,145],[-40,43],[-10,53],[-1,28],[13,14],[152,-13],[9,11],[-154,42],[-31,0],[-34,-61],[-16,-14],[-33,3],[-11,9],[-39,74],[-37,51],[-70,72],[-13,50],[-3,75],[9,71],[57,161],[23,28],[6,17],[-18,-2],[-16,-15],[-47,-75],[-48,-123],[-40,-42],[-25,10],[-37,50],[-78,61],[-91,16],[-57,62],[-84,174],[-11,87],[-11,21],[-46,28],[-28,42],[-43,211],[-58,147],[-14,77],[5,77],[-8,8],[-19,-60],[-6,-31],[-36,-9],[34,-60],[9,-31],[-17,3],[-35,-8],[59,-103],[26,-161],[39,-119],[26,-97],[11,-73],[17,-70],[45,-155],[7,-30],[-6,-26],[-15,-29],[-26,-12],[-82,21],[-30,38],[-44,70],[-62,33],[-153,-16],[-12,5],[0,57],[18,103],[-14,41],[-80,150],[2,30],[110,68],[-54,6],[-43,-27],[-16,17],[-26,96],[-17,36],[-9,8],[-4,-91],[18,-49],[2,-27],[-2,-39],[-12,-28],[-20,-17],[-20,-4],[-37,19],[-41,37],[-36,17],[-14,14],[-17,41],[-28,30],[-134,39],[-80,46],[-7,-12],[25,-49],[3,-29],[-21,-9],[-36,-46],[11,-7],[38,15],[43,-1],[70,-29],[64,-37],[23,-20],[10,-31],[8,-11],[63,-36],[3,-19],[-41,-56],[83,6],[49,-20],[61,-86],[21,-49],[3,-62],[-13,-18],[-24,-12],[-169,-20],[-61,-75],[-13,-1],[-46,20],[-84,60],[-105,56],[-240,168],[-6,8],[-4,33],[-17,16],[-32,14],[-45,43],[-58,71],[-35,55],[-14,40],[-34,46],[-108,95],[-57,36],[-50,21],[-43,5],[-12,12],[20,21],[3,12],[-96,20],[-92,45],[-231,125],[-120,78],[-70,38],[-29,21],[-14,17],[17,18],[47,19],[32,21],[50,79],[3,26],[-27,57],[-12,53],[1,29],[6,29],[8,18],[21,19],[15,9],[18,-6],[59,-72],[8,-27],[-3,-98],[17,-116],[6,9],[5,38],[4,73],[6,35],[13,34],[21,18],[66,-10],[31,6],[-129,52],[-81,98],[-15,10],[-44,4],[-47,-39],[-121,-129],[-34,-23],[-152,-71],[-103,-15],[-116,12],[-99,23],[-248,113],[-39,26],[58,70],[2,21],[-20,72],[-16,20],[-24,11],[-7,-8],[0,-21],[6,-39],[-19,-21],[-42,-22],[-71,-22],[-220,57],[-225,47],[-202,10],[-284,-38],[-152,-38],[-88,-3],[-85,7],[-7,26],[39,16],[-2,19],[-50,60],[-74,36],[-100,13],[-58,18],[-14,22],[-36,21],[-56,20],[-25,36],[20,112],[19,68],[19,46],[49,76],[-17,-6],[-70,-56],[-62,-57],[-56,-76],[-34,-34],[-44,-32],[-67,8],[-92,47],[-79,24],[-66,1],[-26,9],[45,42],[26,33],[35,54],[8,27],[-241,8],[-8,29],[-1,21],[-8,17],[-34,13],[-49,-10],[-79,-33],[-34,25],[12,15],[26,10],[52,49],[-71,25],[-36,29],[-18,24],[1,86],[19,55],[159,54],[-50,21],[-101,-8],[-67,-45],[-80,-66],[-54,-24],[-28,16],[-36,6],[-45,-5],[-31,-17],[-15,-28],[-18,-19],[-21,-10],[-14,3],[-22,29],[-46,18],[-22,22],[-13,-14],[-15,-42],[-17,-21],[-77,-22],[-42,4],[-51,53],[-7,18],[17,46],[111,181],[-11,-1],[-36,-29],[-72,-72],[-32,-22],[-55,-2],[-25,8],[-32,-6],[-36,-20],[-24,-21],[-11,-23],[8,-4],[55,27],[31,7],[9,-13],[-43,-82],[-26,-77],[-25,-20],[-40,3],[-43,-7],[0,-22],[80,-62],[29,-9],[38,-22],[5,-22],[-14,-60],[-10,-23],[-17,-13],[-66,2],[-21,-6],[-44,-37],[-22,-31],[8,-3],[38,26],[55,13],[73,2],[54,14],[36,25],[35,-7],[34,-40],[10,-34],[-14,-30],[-28,-21],[-42,-13],[-27,-19],[-11,-26],[-6,-37],[-1,-51],[10,-90],[-8,-12],[-16,-7],[-23,-1],[-22,-21],[-49,-120],[-17,-13],[-21,13],[-19,-2],[-16,-15],[-35,-12],[-54,-8],[-47,3],[-82,26],[-33,18],[-26,30],[-74,-32],[-20,14],[-45,83],[-10,-5],[-9,-89],[-14,-32],[-45,-65],[-25,-112],[-8,-3],[-8,16],[-28,100],[-15,22],[-41,-57],[-4,-21],[10,-75],[-9,-11],[-83,40],[-21,2],[-5,-7],[28,-57],[-3,-21],[-118,-112],[-30,4],[-19,11],[-22,-1],[-74,-42],[-21,2],[-28,24],[-13,-1],[-7,-25],[-1,-50],[-28,-48],[-89,-77],[-23,-35],[-18,-48],[-13,-5],[-53,31],[-60,20],[-8,-10],[18,-29],[-4,-18],[-26,-7],[-33,2],[-40,12],[-56,-13],[-73,-39],[-60,1],[-84,64],[-23,5],[-7,18],[16,52],[24,40],[18,18],[79,50],[92,19],[57,30],[70,62],[37,48],[72,121],[-5,9],[-17,7],[-159,-115],[-24,-11],[-31,1],[-128,44],[-27,19],[-18,55],[35,126],[25,60],[62,94],[82,100],[28,65],[42,173],[-2,79],[-19,96],[-1,57],[17,18],[187,88],[89,67],[171,98],[47,-1],[34,-34],[40,-27],[46,-20],[58,2],[72,25],[113,-10],[234,-64],[49,-4],[2,8],[-36,46],[-161,26],[-67,26],[-191,116],[-43,44],[18,21],[46,17],[16,17],[7,29],[27,40],[46,50],[72,49],[135,72],[-53,3],[-97,-13],[-35,-14],[-66,-52],[-25,-36],[-36,-71],[-16,-14],[-67,-10],[-184,-7],[-32,36],[-17,6],[-23,-5],[-169,-93],[-60,-48],[-44,-54],[-66,-39],[-91,-25],[-67,-32],[-72,-62],[-24,-47],[-1,-23],[17,-71],[-18,-13],[-41,-5],[-66,-47],[-139,-139],[-18,-51],[1,-17],[22,-40],[-15,-25],[-40,-41],[-87,-64],[-57,-24],[-38,-1],[-35,9],[-64,41],[-52,3],[-3,-6],[70,-44],[72,-57],[44,-47],[18,-38],[1,-38],[-16,-40],[-51,-69],[-49,-20],[-127,-21],[-40,-17],[-13,-12],[87,-29],[8,-15],[-12,-58],[-23,-19],[-73,-34],[-64,-10],[-10,6],[12,46],[-4,11],[-24,9],[-35,-17],[-86,-67],[-9,-11],[31,-18],[-7,-15],[-46,-48],[-20,-32],[-31,-33],[-139,-99],[11,-25],[-37,-87],[-20,-76],[25,-32],[117,-38],[56,-9],[67,-26],[121,-72],[40,-46],[6,-22],[-3,-24],[-15,-32],[-38,-61],[-91,-90],[-41,-26],[-63,-20],[-20,-15],[-80,-85],[-22,-47],[4,-40],[-16,-28],[-103,-56],[4,-9],[37,-5],[-13,-49],[-6,-68],[-18,-11],[-65,1],[-82,-27],[-5,-7],[-2,-49],[-214,-36],[-47,-93],[-24,-28],[-84,-68],[-51,-27],[-59,-16],[-31,-23],[-3,-29],[-16,-26],[-51,-42],[-25,-52],[-18,-9],[-95,-12],[-19,-17],[-9,-71],[-17,-3],[-34,17],[-43,-13],[-99,-81],[-21,-28],[2,-16],[15,-15],[24,-48],[-2,-33],[-38,-90],[-13,-13],[-46,-23],[-19,-50],[-42,6],[-34,-10],[-23,-33],[-24,-19],[-26,-5],[-33,-26],[-40,-48],[-36,-30],[-34,-13],[-33,-4],[-32,7],[-29,-5],[-25,-18],[-25,-28],[-20,-78],[-25,-35],[-16,-6],[-33,5],[-49,17],[-50,-6],[-80,-48],[-26,-36],[51,-8],[25,-11],[-1,-10],[-26,-9],[-45,0],[-27,-8],[-33,-21],[-83,-22],[-31,-16],[-63,-91],[-7,-20],[8,-5],[35,10],[41,-15],[21,-20],[14,-23],[13,-46],[8,-6],[-79,-77],[-23,-33],[-14,-12],[-10,10],[-9,85],[-6,14],[-19,2],[-18,-27],[-40,-101],[-43,-51],[-324,-130],[-48,-29],[-9,-56],[-13,-48],[-22,-38],[-25,-25],[-5,18],[2,135],[-7,27],[-32,17],[-15,-2],[-20,-8],[-32,-29],[-20,-7],[-25,2],[-42,-29],[-100,-92],[-66,-23],[-17,-19],[-28,-51],[-19,-19],[-27,-1],[-37,15],[-29,-11],[-22,-37],[-23,-14],[-64,27],[-28,-19],[-36,-47],[-38,-31],[-40,-16],[-104,-15],[-41,10],[-9,13],[2,61],[17,44],[15,20],[21,19],[30,2],[57,-14],[-7,15],[-20,17],[-52,30],[-52,15],[-29,-9],[-42,-23],[-28,-27],[-15,-30],[-18,-99],[-11,-27],[-121,-173],[-48,-54],[-47,4],[-22,-20],[-32,-44],[-30,-20],[-27,1],[-21,9],[-15,14],[2,14],[21,13],[-8,35],[-34,56],[-24,31],[-45,4],[-7,-26],[15,-132],[-2,-30],[-28,-38],[-74,-42],[-23,4],[-66,83],[-63,17],[-4,-27],[14,-56],[-16,-51],[-45,-48],[-35,-23],[-24,1],[-1,34],[21,65],[6,55],[-11,44],[2,34],[12,23],[83,65],[36,10],[18,-16],[24,-3],[28,11],[18,21],[7,31],[36,40],[65,48],[73,90],[84,130],[97,113],[112,95],[121,75],[245,103],[18,-7],[-22,-33],[15,-21],[24,-3],[90,17],[35,22],[11,-21],[-12,-27],[-54,-26],[1,-23],[78,-104],[25,-15],[21,1],[8,14],[-6,75],[26,14],[54,4],[35,-10],[17,-23],[31,-19],[45,-15],[28,4],[11,25],[-19,29],[-87,64],[-24,27],[-6,37],[12,48],[28,70],[42,94],[38,66],[78,74],[52,37],[132,112],[255,115],[63,74],[85,81],[37,20],[0,-31],[12,-28],[57,-19],[37,-7],[17,6],[5,30],[-8,54],[-2,51],[4,48],[9,38],[38,67],[57,77],[77,89],[49,41],[46,21],[45,39],[76,92],[25,15],[55,18],[20,-8],[12,-23],[15,-14],[56,-13],[37,21],[-6,10],[-31,7],[-19,14],[-18,55],[-37,33],[-9,37],[7,58],[32,137],[5,140],[29,81],[57,29],[126,20],[-74,36],[-28,1],[-48,17],[-18,87],[1,64],[31,74],[118,124],[129,87],[-17,7],[-16,25],[59,173],[58,154],[-78,-131],[-91,-101],[-266,-117],[-180,-97],[-86,-24],[-57,25],[-44,94],[-25,33],[-32,61],[13,80],[26,55],[56,9],[64,-27],[55,-2],[-71,54],[-103,48],[-46,-16],[-36,-76],[-47,-53],[-42,19],[-25,21],[17,-64],[-31,-98],[-12,-68],[45,-180],[-8,-71],[-82,-33],[-67,59],[-140,227],[-49,65],[-109,106],[-37,-15],[-46,-53],[-44,-14],[-118,78],[-55,59],[-52,72],[-79,-40],[-70,-47],[-81,-75],[-55,0],[-147,-64],[-16,-1],[-21,-35],[-20,-16],[-17,-67],[-200,-52],[-198,29],[69,37],[78,29],[67,70],[-29,93],[-5,47],[1,60],[73,85],[-76,-1],[-49,-30],[-46,64],[-21,124],[52,74],[25,56],[20,78],[2,67],[-41,114],[-116,240],[-53,179],[-91,95],[68,156],[75,143],[98,63],[-8,10],[-54,-1],[-35,-8],[-32,-46],[-33,-36],[-103,-181],[-66,-88],[-44,-25],[70,-35],[11,-28],[13,-66],[-18,-80],[-18,-44],[-82,4],[-73,-64],[-174,-70],[-234,-40],[-114,5],[-120,81],[1,48],[5,40],[-172,141],[-98,139],[-69,3],[-61,37],[-72,58],[6,47],[12,33],[-44,23],[-57,-2],[-65,15],[171,180],[59,120],[48,17],[62,-18],[86,-48],[73,-21],[26,-22],[27,-42],[-29,-70],[-26,-50],[32,14],[90,76],[68,68],[32,-7],[21,-12],[37,-70],[46,-70],[102,67],[55,84],[-46,37],[-56,21],[-144,29],[35,24],[92,-3],[35,23],[-37,32],[-45,28],[-125,-94],[-227,4],[-158,56],[-158,-10],[-25,11],[-31,30],[89,70],[63,39],[4,23],[-37,3],[-69,-19],[-31,32],[5,57],[-11,-5],[-27,-31],[-39,15],[-33,25],[17,27],[34,38],[-15,5],[-30,-8],[-30,-48],[7,-40],[-1,-56],[-51,-11],[-43,7],[-31,57],[-33,122],[-87,32],[-22,61],[56,79],[-25,41],[-59,13],[-67,-40],[-30,36],[-5,39],[-2,56],[18,5],[16,-11],[135,31],[13,15],[-107,48],[-30,49],[44,28],[80,3],[112,29],[-47,52],[-10,29],[-9,47],[18,81],[132,183],[128,154],[40,35],[59,19],[55,-15],[57,-33],[11,15],[-20,13],[-24,63],[79,24],[47,71],[3,21],[-50,-30],[-53,-48],[-13,48],[-14,112],[24,106],[18,47],[44,46],[126,18],[22,-9],[5,21],[-76,66],[31,52],[28,27],[153,42],[83,-13],[105,-49],[61,-61],[-9,-31],[-15,-18],[-32,-21],[-11,-16],[5,-12],[45,36],[74,45],[41,-20],[33,-35],[36,1],[114,30],[58,32],[71,83],[95,53],[132,169],[39,69],[46,11],[41,-7],[28,-56],[42,-17],[238,14],[121,26],[84,55],[88,93],[51,62],[24,81],[-31,104],[-32,87],[-43,199],[-118,131],[-84,39],[-53,-5],[39,83],[112,-9],[73,17],[60,40],[19,31],[29,62],[-10,67],[-16,36],[-40,39],[-49,59],[-34,19],[-29,-1],[-141,-117],[-86,-2],[-63,21],[-55,-66],[-155,-59],[-82,-58],[-153,-147],[-38,-66],[-49,-3],[-35,128],[-166,123],[-50,-42],[28,-38],[37,-28],[62,-12],[-26,-37],[-21,-49],[-62,46],[-111,68],[-115,34],[-300,-4],[-197,-69],[-18,15],[-19,5],[-32,-16],[-15,-28],[-21,-18],[-40,-6],[-81,10],[-156,43],[-354,63],[-92,39],[-79,93],[1,62],[35,27],[-3,90],[-69,24],[-140,129],[-51,55],[11,6],[25,-15],[48,-11],[117,18],[41,84],[87,23],[80,-11],[-18,22],[-20,18],[-209,43],[-29,-13],[-374,75],[-296,132],[-24,25],[-28,56],[40,56],[40,26],[2,-31],[7,-30],[169,70],[89,91],[168,16],[39,25],[52,49],[75,84],[105,44],[72,40],[93,23],[80,-39],[24,-5],[145,-8],[48,17],[20,12],[15,20],[-142,71],[14,39],[18,27],[166,82],[127,28],[69,-2],[197,106],[109,30],[204,20],[167,5],[46,-38],[-90,8],[-40,-7],[28,-13],[32,-27],[-9,-35],[-55,-103],[4,-83],[-36,-26],[-35,-38],[172,-119],[266,-8],[144,22],[84,-36],[68,-8],[189,18],[142,-25],[60,10],[132,178],[51,27],[56,-30],[73,-26],[47,19],[38,-46],[-18,95],[-26,36],[-215,66],[-144,-33],[-45,37],[15,74],[-154,180],[-64,37],[-76,2],[-39,62],[-32,81],[65,33],[59,15],[55,-26],[62,-106],[58,-16],[-17,-105],[72,-97],[161,-91],[130,34],[91,-1],[55,-19],[133,-82],[68,-10],[213,43],[2,80],[-18,57],[-50,36],[-143,-6],[-112,59],[-95,-16],[-176,-91],[-88,36],[-55,48],[-89,50],[-12,93],[75,108],[55,51],[-49,37],[-125,26],[-216,-27],[-10,37],[1,39],[-88,-77],[-90,16],[-122,-8],[-269,68],[-96,84],[-40,68],[-73,187],[-92,116],[-640,397],[-291,99],[-140,111],[-88,27],[-84,11],[-107,35],[72,44],[50,15],[-52,-46],[39,-11],[63,26],[34,31],[49,134],[51,202],[-13,80],[355,-16],[236,13],[78,19],[298,30],[77,23],[143,68],[169,120],[144,159],[23,42],[10,-11],[13,7],[15,60],[19,141],[72,133],[305,304],[142,120],[47,54],[49,40],[35,-38],[16,-11],[10,-18],[-29,-8],[-48,-39],[-66,-26],[-16,-13],[39,3],[116,28],[66,35],[326,63],[177,105],[7,23],[262,131],[36,-5],[42,-16],[-73,-87],[52,-22],[-46,-103],[95,-2],[21,-47],[6,40],[-1,59],[7,58],[14,40],[67,-18],[150,42],[-182,6],[-109,93],[-61,1],[203,137],[186,83],[42,-1],[20,-16],[5,-25],[-40,-16],[-40,-30],[18,-26],[27,-3],[90,21],[39,27],[191,-3],[56,19],[13,19],[247,4],[45,13],[154,74],[142,89],[66,48],[113,124],[96,80],[159,80],[38,-10],[-52,-16],[-35,-34],[49,-45],[334,-93],[84,-5],[34,-56],[-28,-54],[-86,-59],[-174,-61],[53,-23],[35,-55],[51,-7],[83,21],[66,33],[135,109],[42,61],[32,15],[113,-14],[64,-31],[73,-56],[-27,-53],[-29,-31],[94,-41],[105,-9],[100,-34],[140,69],[110,15],[104,-3],[134,38],[227,-51],[58,13],[91,-9],[97,-31],[34,-32],[-103,-70],[-17,-72],[36,-30],[66,-5],[8,-42],[41,-11],[205,4],[-16,-20],[-10,-25],[-64,-53],[366,-30],[49,30],[75,11],[161,41],[60,-18],[71,-41],[66,-9],[62,8],[143,60],[165,3],[68,-19],[72,8],[215,-68],[79,-8],[106,-89],[55,-3],[62,38],[54,-1],[53,-36],[86,-11],[40,-57],[43,-21],[326,-42],[161,19],[235,-5],[114,-27],[119,3],[194,-98],[103,-16],[20,-22],[293,-24],[103,51],[179,14],[161,43],[91,-1],[107,-10],[41,5],[29,19],[259,-75],[145,-85],[63,-63],[304,-90],[87,-50],[60,-55],[35,-6],[25,16],[106,-5],[40,-8]],[[45716,10195],[-45,-20],[-66,2],[-13,7],[26,13],[78,17],[20,-19]],[[46011,10308],[-12,-9],[-55,-93],[-195,-31],[11,21],[41,5],[57,29],[-11,50],[-23,55],[-20,6],[-14,32],[1,101],[-13,59],[-32,61],[-10,-12],[-24,-104],[-19,-136],[-10,-44],[-57,-3],[-52,9],[-25,-2]],[[45549,10302],[-6,185],[-6,170],[-5,169],[-5,170],[-6,169],[-5,170],[-5,170],[-6,169],[13,167],[12,167],[12,166],[13,167],[12,167],[13,167],[12,167],[12,167],[13,166],[12,167],[13,167],[12,167],[12,167],[13,167],[12,166],[12,167],[4,43],[0,14],[2,22],[-45,59]],[[45664,14481],[-9,12],[-6,11],[6,1],[82,-2],[81,-1],[82,-1],[81,-2],[81,-1],[82,-1],[81,-2],[81,-1],[82,-1],[81,-2],[82,-1],[81,-2],[81,-1],[82,-1],[81,-2],[81,-1]],[[46957,14483],[14,-115],[13,-116],[14,-115],[13,-116],[13,-115],[14,-115],[13,-116],[14,-115],[13,-116],[13,-115],[14,-116],[13,-115],[14,-115],[13,-116],[13,-115],[14,-116],[12,-52],[10,-85],[72,-251],[21,-105],[-6,-44],[9,-37],[24,-31],[-5,-35],[-32,-41],[-21,-49],[-15,-87],[0,0],[-30,-154],[-1,-94],[30,-127],[0,-1],[6,-56],[-19,-250],[13,-161],[30,-105]],[[47270,10871],[-164,0],[-164,0],[-164,0],[-164,0],[-164,0],[-164,0],[-164,0],[-164,-1],[-7,-64],[3,-62],[18,-59],[73,-112],[7,-27],[-13,-86],[2,-62],[-7,-32],[-18,-27],[-5,-31]],[[44887,15387],[-2,-17],[10,-36],[0,-20],[-7,-13],[-18,-7],[-13,-9],[-2,-15],[-1,-7],[1,-17],[2,-16],[-8,-20],[-58,-50],[-25,-64],[9,-79],[-21,-80],[-50,-81],[-21,-90],[7,-100],[-25,-81],[-57,-61],[-20,-38],[0,-3]],[[44588,14483],[1,-28],[5,-22],[-19,-42],[-49,-43],[-26,-42],[-3,-40],[-12,-20],[-21,-9],[-13,-61],[-10,-142],[-26,-81],[-42,-20],[-22,-32],[-3,-44],[-25,-50],[-47,-57],[-15,-55],[15,-51],[-3,-21],[-14,-17],[-51,-24],[-8,-13],[-5,-13],[10,-26],[6,-40],[-8,-67],[-12,-28],[-12,-26],[-42,-47],[-12,-36],[19,-25],[-1,-28],[-22,-30],[6,-33],[5,-22],[20,-20],[7,-56],[-14,-71],[2,-59],[24,-49],[5,-20],[-23,-160],[1,-23]],[[44154,12690],[-99,0],[-92,0],[-91,-1],[-91,0],[-91,0],[-91,0],[-91,0],[-91,-1],[-92,0],[-91,0],[-91,0],[-91,0],[-91,-1],[-91,0],[-91,0],[-92,0]],[[42687,12687],[0,122],[-1,123],[-1,122],[-1,123],[-26,20],[-47,11],[-24,-7],[-28,6],[-19,-21],[-13,-3],[-10,4],[-6,18],[-22,13],[-26,44]],[[42463,13262],[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,99],[1,98],[2,98],[-12,126],[-11,125],[-11,126],[-12,126],[-11,126],[-12,125],[-11,126],[-11,126]],[[42395,15838],[141,0],[141,0],[142,0],[141,0],[141,0],[141,0],[142,0],[141,0],[141,0],[142,0],[141,0],[141,0],[141,0],[142,0],[141,0],[141,0],[23,-71],[22,-46],[3,-34],[-4,-34],[-37,-73],[-34,-34],[-19,-36],[-25,-35],[-40,-96],[83,2],[84,2],[83,2],[93,2]],[[35076,16289],[0,-320],[0,-320],[0,-320],[0,-320],[0,-321],[0,-320],[0,-320],[0,-320],[0,-320],[0,-320],[0,-321],[0,-320],[0,-320],[0,-320],[-1,-320],[0,-321]],[[35075,11166],[-115,0],[-179,-1],[-179,-1],[-180,0],[-179,-1],[-179,0],[-241,133],[-240,134],[-241,134],[-241,133],[-240,134],[-241,134],[-240,133],[-241,134],[25,51],[32,136]],[[32196,12419],[2,8],[0,0],[70,9],[33,35],[20,62],[4,64],[-11,64],[-30,48],[-50,32],[-28,88],[-8,146],[9,78],[26,12],[25,35],[23,60],[18,65],[11,70],[2,90],[-7,107],[46,133],[45,82],[84,101],[20,30],[0,25],[0,3],[-17,34],[-76,70],[-32,50],[-3,47],[-1,0],[-10,45],[-81,185],[-27,102],[1,75]],[[32254,14474],[0,6],[9,321],[-29,111],[-7,63],[9,77],[-3,47],[-13,42],[-4,76],[-1,94],[-23,60],[-5,27],[13,64],[24,33],[38,24],[45,8],[50,-8],[38,-29],[25,-50],[25,-26],[25,-1],[33,42],[29,89],[9,5],[1,389],[1,354]],[[32543,16292],[158,0],[158,0],[159,0],[158,-1],[158,0],[159,0],[158,0],[158,0],[159,-1],[158,0],[158,0],[159,0],[158,0],[158,0],[159,-1],[158,0]],[[30356,12520],[-29,-8],[-33,19],[-28,87],[-31,68],[17,19],[25,-65],[63,-100],[16,-20]],[[29805,12872],[-23,-2],[-31,9],[-16,48],[26,4],[23,-7],[19,-38],[2,-14]],[[30358,13024],[25,-66],[-37,8],[-38,-4],[-12,37],[-11,50],[-8,13],[-27,4],[-2,5],[-3,24],[8,12],[83,-56],[22,-27]],[[29498,13506],[-36,-13],[-27,12],[-43,87],[91,11],[40,-38],[5,-10],[-30,-49]],[[29364,13602],[-27,-3],[-41,10],[14,21],[23,15],[7,-11],[24,-32]],[[29579,13651],[104,-46],[55,22],[10,-22],[-6,-20],[-126,-35],[-38,25],[-4,33],[-13,32],[18,11]],[[27375,20805],[138,-1],[134,0],[134,0],[133,0],[134,0],[134,0],[134,0],[133,0],[134,0],[134,0],[134,0],[133,0],[134,0],[134,0],[134,0],[133,0]],[[29519,20804],[0,-169],[0,-169],[0,-170],[0,-169],[0,-169],[0,-170],[0,-169],[0,-169],[0,-170],[1,-169],[0,-169],[0,-170],[0,-169],[0,-169],[0,-170],[0,-169],[118,-148],[119,-147],[119,-148],[119,-148],[119,-147],[119,-148],[118,-148],[119,-147],[93,-125],[93,-124],[93,-125],[93,-124],[93,-125],[93,-124],[93,-124],[93,-125],[129,-179],[129,-179],[129,-179],[128,-179],[129,-179],[129,-179],[129,-179],[138,-191]],[[32196,12419],[-58,-10],[-146,-19],[-145,-19],[-145,-20],[-145,-19],[-145,-19],[-145,-20],[-145,-19],[-146,-19],[-1,5],[-3,99],[-24,35],[-30,-21],[-14,128],[8,61],[-4,59],[-28,145],[-76,177],[-163,219],[-82,74],[-66,92],[-41,26],[-52,7],[-15,-42],[-59,29],[9,103],[-58,144],[-47,16],[-118,-10],[-158,79],[-47,47],[-16,85],[-74,73],[-97,72],[-55,-17],[-71,11],[-101,52],[-59,6],[-115,-15],[-43,11],[-40,65],[-43,33],[9,80],[-6,73],[7,56],[-20,124],[15,115],[-13,42],[-24,32],[-76,47],[-14,59],[12,81],[-20,54],[-62,50],[-59,115],[-74,62],[-30,105],[-46,64],[-15,58],[-102,204],[-108,160],[-16,92],[-5,126],[43,77],[23,68],[-3,62],[-6,45],[-37,79],[-144,47],[-117,196],[-7,149],[-46,153],[-1,100],[-7,108],[35,23],[31,-8],[-3,-43],[11,-77],[36,-58],[35,-25],[32,-57],[24,-17],[24,-4],[-13,36],[-14,24],[-17,74],[-33,96],[-37,52],[-19,96],[-16,22],[-10,36],[36,42],[49,30],[66,8],[188,-14],[40,25],[33,-8],[24,3],[-51,25],[-29,-8],[-33,5],[-67,-5],[-27,11],[-30,30],[-20,3],[-62,-52],[-27,6],[-66,57],[-28,8],[-46,-32],[-6,-140],[14,-105],[-27,-10],[-32,43],[-49,25],[-41,39],[-57,73],[-30,27],[-33,-61],[-2,28],[17,70],[-5,118],[51,-94],[-15,66],[-40,73],[-31,25],[-38,130],[-85,78],[-69,127],[-140,209],[-9,184],[-51,232],[21,133],[-3,93],[-25,142],[-26,77],[-113,211],[-110,142],[-16,108],[-8,108],[24,97],[21,101],[15,27],[6,-11],[-4,-22],[15,-6],[6,45],[9,23],[-16,3],[1,14],[10,28],[34,134],[-3,168],[36,206],[-2,68],[-23,146],[-23,88],[-41,62],[18,91],[-2,87],[-8,15]],[[38638,18999],[0,-170],[1,-169],[0,-169],[0,-170],[1,-169],[0,-169],[1,-170],[0,-169],[0,-169],[1,-170],[0,-169],[0,-169],[1,-170],[0,-169],[0,-169],[1,-170]],[[38644,16289],[-125,0],[-126,0],[-125,0],[-125,0]],[[38143,16289],[-192,0],[-192,0],[-191,0],[-192,0],[-192,0],[-191,0],[-192,0],[-192,0],[-191,0],[-192,0],[-192,0],[-191,0],[-192,0],[-192,0],[-191,0],[-192,0]],[[35076,16289],[0,226],[0,226],[0,225],[0,226],[0,226],[0,226],[0,226],[0,225],[0,226],[0,226],[0,226],[0,225],[0,226],[0,226],[0,226],[0,226]],[[35076,19902],[159,0],[160,0],[159,0],[159,0],[160,0],[159,0],[159,0],[159,0],[160,0],[159,0],[159,0],[160,0],[159,0],[159,0],[160,0],[159,0]],[[37625,19902],[126,0],[127,0],[127,0],[126,-1],[127,0],[126,0],[127,0],[127,0],[0,-112],[0,-113],[0,-113],[0,-113],[0,-113],[0,-113],[0,-112],[0,-113]],[[53969,20815],[0,-49],[1,-68],[0,-49],[0,-68],[1,-77],[0,-71],[1,-63],[-2,-36],[-3,-57],[-13,-22],[-6,-51]],[[53948,20204],[-44,5],[-73,-14],[-97,-31],[-54,19],[-55,-33],[-187,-9],[-39,17],[-50,-62],[-81,-36],[-203,-139],[-24,-28]],[[53041,19893],[-26,57],[-21,45],[41,35],[32,27],[29,25],[19,17],[-15,34],[-15,35],[4,86],[4,86],[4,85],[4,86],[4,86],[4,86],[4,85],[4,86]],[[53117,20854],[43,-2],[42,-3],[43,-2],[43,-3],[42,-2],[43,-2],[43,-3],[42,-2],[1,-24],[22,3],[3,21],[60,-2],[61,-1],[61,-1],[60,-1],[61,-2],[61,-1],[60,-1],[61,-2],[0,-9]],[[51316,17995],[-11,23],[-25,19],[-10,7]],[[51270,18044],[40,61],[28,-53],[29,-58],[-45,-74],[-6,75]],[[52133,18831],[-22,-31],[-19,-58],[-44,-69],[3,-46],[8,-33],[-4,-69],[28,-67],[54,-109],[10,-171],[42,-114],[63,-133],[49,-37],[3,-50],[-23,-81],[-30,-38],[39,8],[19,-19],[19,-68],[-1,-43]],[[52327,17603],[-54,-1],[-112,0],[-113,0],[-51,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,144],[-5,143],[-5,143],[-5,143],[-5,143],[-5,143],[-5,143],[-5,143]],[[51948,18747],[39,73],[16,22],[21,11],[63,3],[46,-25]],[[48905,5040],[-13,-2],[-1,14],[22,17],[15,-1],[0,-19],[-23,-9]],[[49015,5090],[-33,-9],[27,35],[9,54],[15,-42],[0,-25],[-18,-13]],[[49133,5136],[-15,-19],[-7,6],[0,27],[-22,60],[1,15],[49,-58],[2,-16],[-8,-15]],[[49280,5195],[-23,-21],[-24,16],[27,21],[78,23],[-30,-29],[-28,-10]],[[49389,5274],[-9,0],[5,13],[20,25],[7,-10],[-1,-12],[-22,-16]],[[49486,5364],[-13,-5],[20,39],[5,-3],[-12,-31]],[[49616,5580],[-100,-170],[11,42],[39,91],[13,43],[26,27],[25,49],[2,57],[36,40],[12,6],[-64,-185]],[[48777,6764],[-18,-24],[-37,18],[-20,31],[-9,60],[32,-64],[12,-14],[40,-7]],[[48753,6853],[-1,-53],[-25,89],[-17,98],[24,-32],[19,-102]],[[49715,7509],[9,-67],[-47,155],[-58,241],[-31,188],[21,-51],[21,-105],[85,-361]],[[47320,9644],[-50,-33],[-55,24],[34,5],[24,-10],[63,47],[33,35],[38,13],[-87,-81]],[[49047,10627],[24,-82],[36,-334],[25,-117],[44,-314],[74,-304],[104,-367],[170,-446],[20,-64],[-22,-53],[-7,-56],[-2,-84],[6,-82],[21,-100],[38,-153],[-21,30],[-56,220],[-7,129],[8,183],[-13,-5],[-11,-59],[-6,-70],[-14,-27],[-19,107],[1,48],[21,56],[-6,20],[-33,29],[-8,45],[5,45],[-19,24],[-15,-1],[10,-110],[16,-68],[19,-162],[32,-99],[18,-82],[215,-880],[51,-112],[19,-80],[20,-168],[4,-216],[-35,-395],[-8,-269],[-5,8],[-3,29],[-9,3],[-30,-123],[-42,-111],[-13,-173],[-20,-87],[-60,-91],[-37,2],[-91,-69],[-63,18],[-76,-38],[-50,4],[-29,82],[4,36],[12,37],[19,8],[67,-85],[13,36],[-20,43],[-39,24],[-29,26],[-57,195],[-60,134],[-10,90],[-103,54],[-75,83],[-49,147],[-28,261],[-33,29],[-14,21],[33,97],[33,81],[-26,-20],[-20,-30],[-25,-72],[-19,-11],[-17,11],[-19,137],[6,169],[27,64],[-42,1],[-43,-24],[6,-56],[-6,-31],[-32,8],[-24,20],[-32,58],[-44,112],[-91,309],[-18,43],[-30,46],[14,14],[26,8],[58,139],[46,84],[15,58],[-2,25],[-21,36],[-26,-32],[-12,9],[-29,73],[-29,21],[-20,-16],[21,-60],[19,-22],[-7,-87],[-8,-28],[-18,-25],[-27,13],[-14,-21],[-17,23],[-16,38],[-18,62],[48,353],[44,225],[6,257],[3,38],[-4,68],[-60,148],[-264,362],[-205,428],[-177,160],[-135,-35],[-23,-32],[-10,-42],[8,-48],[-12,-20],[-36,3],[-49,-12],[-127,-112],[-45,4],[-41,-29],[-30,-22],[-80,-12],[-67,-25],[-29,13],[-19,66],[0,67],[15,-51],[24,-41],[11,16],[4,36],[-24,70],[-76,91],[-87,132],[26,-5],[7,29],[-27,37],[12,43],[19,45],[-37,-7],[-33,-32],[-1,-39],[-7,-30],[-17,4],[-33,38],[-162,107],[-142,60],[109,27],[59,-21],[-7,32],[-15,21],[-46,26],[-59,-10],[-38,12],[-38,-25],[-42,-39],[-37,-19],[-146,-28],[-119,-30],[19,32],[20,20],[70,31],[11,64],[-17,62],[-18,-15],[-19,-48],[-24,34],[-26,0],[-7,-77],[-34,-51],[-15,-52],[-99,-41],[-13,14],[29,49],[-2,28],[-21,-15]],[[47270,10871],[21,-71],[40,-148],[2,-34],[47,-5],[81,-9],[81,-8],[81,-9],[81,-8],[80,-9],[81,-8],[81,-9],[81,-8],[81,-8],[81,-9],[81,-8],[80,-9],[81,-8],[81,-9],[81,-8],[81,-8],[0,-30],[14,-47],[3,-54],[6,-25],[16,-16],[26,-4],[25,30],[16,66],[4,74],[-9,85],[1,71],[13,41],[15,11],[13,22],[11,5],[28,-12],[105,-60],[86,-8]],[[49090,10844],[-22,-220],[-10,78],[-1,76],[17,44],[16,22]],[[49368,11800],[-26,-77],[-62,-48],[-19,2],[-16,-14],[9,-34],[16,-25],[-1,-23],[-16,-31],[-32,-9],[-19,-35],[6,-34],[11,-19],[-2,-32],[-37,-33],[-9,-31],[18,-10],[15,10],[10,-7],[-22,-54],[-20,-32],[-19,-59],[-43,-16],[1,-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]],[[46957,14483],[165,-3],[165,-3],[165,-3],[164,-3]],[[47616,14471],[154,3],[153,3],[154,4],[153,3]],[[48230,14484],[-3,-1],[-25,-61],[-74,-115],[-20,-88],[96,-98],[0,-1],[57,-80],[40,-31],[40,-9],[25,-26],[14,-64],[0,0],[117,-315],[0,0],[120,-162],[48,-80],[25,-78],[103,-127],[35,-68],[2,-52],[12,-37],[22,-21],[22,-46],[21,-72],[41,-62],[61,-52],[45,-120],[29,-188],[29,-108],[44,-46],[60,-160],[19,-95],[-1,-84],[31,-65],[103,-72]],[[11471,43],[-23,-43],[-28,3],[-101,93],[-13,50],[8,232],[-38,188],[-42,144],[30,74],[41,57],[45,108],[-37,138],[9,83],[22,15],[106,-102],[215,-152],[57,-108],[10,-115],[39,-14],[19,-79],[56,-69],[19,-40],[-23,-63],[-103,-122],[-130,-53],[-115,-137],[-23,-88]],[[10827,1633],[-30,-25],[-32,12],[-8,61],[-32,79],[56,16],[31,-23],[16,-25],[20,-42],[-21,-53]],[[11011,1778],[14,-16],[54,24],[39,9],[65,-60],[23,-40],[43,-44],[15,-32],[-13,-38],[-47,-63],[-65,-15],[-38,-27],[-50,6],[-15,12],[-5,79],[-16,86],[-32,-10],[-37,29],[-37,72],[-5,43],[21,68],[36,9],[27,-38],[23,-54]],[[10643,2033],[107,-24],[25,10],[18,-20],[89,-13],[15,-7],[-18,-47],[-57,-42],[-81,37],[-137,13],[5,36],[13,26],[2,44],[19,-13]],[[10346,2251],[17,-5],[22,6],[8,-72],[26,-40],[10,-23],[-28,-26],[-55,-10],[-26,20],[-26,45],[-29,-12],[-5,36],[-5,11],[-20,-10],[19,-47],[-50,-3],[-16,6],[-14,52],[-51,102],[0,39],[-18,47],[76,14],[53,83],[29,8],[56,-133],[-1,-38],[12,-36],[16,-14]],[[9138,2598],[-10,-40],[-18,7],[-4,35],[11,49],[29,42],[32,65],[27,-10],[-15,-42],[-1,-46],[-37,-26],[-14,-34]],[[9547,2681],[-44,-51],[-26,22],[-49,8],[-19,38],[-52,35],[-21,47],[32,89],[75,74],[115,-3],[24,-59],[2,-44],[-15,-49],[-7,-70],[-15,-37]],[[418,8342],[-10,-4],[1,11],[9,11],[8,-3],[-3,-9],[-5,-6]],[[44407,21267],[31,-61],[54,-56],[30,-52],[7,-48],[33,-52],[57,-55],[33,-49],[10,-42],[-2,-65],[-12,-88],[-21,-64],[-30,-39],[-21,-54],[-15,-70],[-45,-65],[-76,-59],[-85,-41],[-94,-22],[-55,-51],[-17,-80],[7,-67],[34,-54],[19,-58],[5,-60],[-24,-100],[-52,-140],[-57,-91],[-63,-41],[-28,-61],[7,-80],[-5,-46],[-26,-16]],[[44006,19340],[-45,48],[-8,34],[-36,33],[-5,22],[-28,19],[-25,66],[-128,-1],[-128,-2],[-128,-1],[-128,-1],[-128,-2],[-128,-1],[-128,-1],[-128,-2],[-128,-1],[-127,-1],[-128,-2],[-128,-1],[-128,-1],[-128,-1],[-128,-2],[-127,-1]],[[41813,19541],[-31,67],[-17,63],[11,29],[2,101],[-6,172],[-13,97],[-18,22],[-2,30],[14,38],[-4,26],[-23,14],[-7,33],[9,52],[-5,32],[-20,12],[-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,5]],[[41450,21266],[-13,74],[-14,33],[-2,26],[-42,64],[-3,25],[5,31],[28,60],[25,100],[5,67],[20,51],[1,27],[-4,37],[-11,32],[-33,23],[-4,10],[-3,37],[14,23],[4,26],[-4,32],[-20,56],[-9,56],[74,4]],[[41464,22160],[165,0],[165,0],[165,0],[165,0],[165,0],[165,0],[165,0],[165,0],[165,0],[164,0],[165,0],[165,0],[165,0],[165,0],[165,0],[168,1]],[[44106,22161],[3,-56],[10,-41],[21,-33],[31,-25],[5,-48],[-21,-71],[-7,-88],[7,-104],[16,-95],[24,-84],[56,-62],[86,-39],[52,-60],[15,-81],[3,-7]],[[34059,23061],[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,-141],[0,-141],[1,-141]],[[34060,20805],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-94,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-94,0],[-95,0]],[[32542,20805],[-189,0],[-189,0],[-188,0],[-189,0],[-188,0],[-189,0],[-188,-1],[-189,0]],[[31033,20804],[0,202],[0,202],[-1,201],[0,202],[0,201],[0,202],[-1,201],[0,222],[0,4],[32,137],[7,66],[-9,38],[6,36],[19,34],[0,38],[-21,42],[-38,27],[-56,13],[-30,49],[-2,83],[42,128],[86,174],[48,122],[8,72],[52,166],[95,260],[37,166],[-23,73],[-48,70],[-75,67],[-53,77],[-14,39]],[[31094,24418],[-17,49],[-9,62],[13,35],[-11,62],[-34,88],[-14,60],[3,21],[4,9],[-1,145],[0,144],[0,145],[-1,145],[0,145],[-1,144],[0,145],[-1,145],[0,145],[0,145],[-1,144],[0,145],[-1,145],[0,145],[0,144],[-1,144]],[[31022,27119],[163,0],[216,0],[123,0]],[[31524,27119],[0,-222],[0,-224],[0,-223],[0,-223],[54,-91],[41,-56],[25,-60],[40,-63],[8,-22],[14,-68],[-11,-49],[21,-49],[-3,-25],[-16,-12],[-3,-4],[0,-5],[6,-8],[55,-48],[54,-66],[70,-46],[21,-27],[92,-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,-3],[70,18],[15,0],[7,-7],[4,-20],[-1,-33],[-7,-45],[-21,-46],[3,-43],[-16,-98],[-16,-66],[-1,-65],[-20,-37],[11,-44],[-7,-67],[6,-17],[25,-31],[10,-82],[-4,-15],[-45,-32],[-15,-22],[-5,-30],[19,-86],[-19,-48],[-2,-41],[4,-11],[41,-22],[49,-49],[16,-10],[11,2],[21,16],[24,33],[47,33],[56,72],[3,20],[4,11],[7,-1],[18,-9],[36,-44],[30,-24],[6,-5],[2,-12],[-1,-43],[17,-34],[5,-56],[17,-55],[13,-67],[46,-87],[25,-62],[27,-28],[17,-33],[12,-40],[4,-31],[-16,-58],[5,-24],[14,-26],[48,-60],[9,-5],[44,7],[24,-11],[23,-30],[24,-45],[16,-45],[4,-54],[24,-60],[4,-53],[15,-23],[30,-32],[29,-19],[11,-2],[8,9],[3,29],[11,22],[37,32],[34,-1],[129,-26],[9,2],[6,8],[22,49],[18,18],[27,6],[80,-11],[93,6],[48,-13],[70,17],[80,-13],[11,8],[2,10],[-7,18],[-1,36],[16,42],[6,36],[16,21],[22,11],[18,-1],[17,-20],[20,-32],[34,-88],[18,-31],[23,-27],[33,-24]],[[45847,21253],[0,-141],[8,-117],[15,-52],[18,-38],[19,-25],[22,-76],[25,-127],[23,-84],[18,-35]],[[45995,20558],[-1,-241],[-1,-271],[0,-270],[-1,-271],[-1,-271],[-1,-270],[0,-271],[-1,-256],[0,-4],[-24,-28],[-16,-47],[4,-52],[-6,-37],[-16,-22],[8,-56],[32,-90],[19,-89],[7,-87],[-6,-63],[-28,-57],[-26,-123],[-23,-50],[-28,-16],[-24,-46],[-22,-75],[-24,-37],[-24,2],[-18,-14],[-12,-29],[1,-32],[15,-33],[-5,-30],[-24,-28],[0,-14],[8,-8],[-3,-13],[-15,-14],[-10,-41],[1,-70],[-8,-34],[-16,-2],[-2,-19],[27,-78]],[[45731,17001],[-16,-16],[-28,-65],[-6,-71],[16,-78],[-42,-63],[-101,-48],[-53,-43],[-6,-36],[7,-56],[20,-76],[4,-52],[-13,-29],[-72,20],[-132,68],[-88,-2],[-45,-73],[-15,-55],[5,-45]],[[45166,16281],[-35,55],[-24,25],[-5,-2],[-5,-7],[-2,-17],[1,-12],[4,-14],[-2,-9],[-6,-1],[-26,21],[-31,61],[-37,100],[-8,79],[20,59],[0,61],[-20,65],[-11,64],[0,61],[-50,93],[-102,124],[-74,76],[-48,29],[-56,62],[-63,95],[-34,72],[-4,50],[29,134],[84,291],[9,35],[3,12],[-4,13],[-8,12],[-35,34],[-68,30],[-63,16],[-50,-35],[-44,70],[-38,176],[-92,185],[-147,195],[-86,132],[-24,70],[-21,105],[-17,140],[1,116],[29,138]],[[44407,21267],[234,-2],[228,-3],[228,-2],[229,-2],[228,-2],[229,-3],[64,0]],[[47377,20534],[-2,-294],[-1,-293],[-2,-294],[-2,-294],[-2,-294],[-1,-294],[-2,-294],[-1,-299]],[[47364,18178],[-8,-9],[-12,-39],[13,-39],[0,-32],[-14,-25],[5,-18],[23,-12],[9,-28],[-5,-45],[-51,-45],[-98,-50],[-21,-15],[-17,-6],[-9,3],[0,0],[-12,9],[-18,21],[-31,9],[-50,-6],[-20,-43],[10,-78],[-17,-60],[-44,-41],[-32,-55],[-19,-69],[-31,-41],[-41,-15],[-34,-63],[-26,-112],[-28,-70],[-30,-27],[-42,7],[-53,41],[-30,41],[-8,43],[-16,30],[-14,14],[-10,0],[0,-6],[3,-12],[-5,-13],[-32,-4],[-15,-18],[5,-31],[-7,-22],[-19,-13],[-10,-29],[-1,-46],[-14,-42],[-25,-39],[-38,13],[-49,64],[-50,15],[-51,-34],[-38,-47],[-25,-59],[-24,-14],[-35,44],[-83,62],[-43,14],[-31,-15],[-22,6],[-7,17],[-6,7],[-6,-8],[-1,-54],[-7,-34],[-14,-14],[-11,11],[-7,37],[-18,12],[-28,-13],[-28,5],[-25,22],[-9,-2],[-7,-10],[2,-42],[-6,-34],[-13,-22],[-18,-5],[-24,11],[-10,-10]],[[45995,20558],[3,-6],[19,-23],[15,-13],[12,-2],[6,-20],[29,-12],[52,-5],[48,8],[43,20],[107,83]],[[46329,20588],[126,0],[153,-1],[154,0],[154,0],[154,0],[153,0],[154,0],[0,-53]],[[42395,16289],[-117,0],[-118,0],[-117,0],[-117,0],[-117,0],[-117,0],[-118,0],[-117,0],[-117,0],[-117,0],[-118,0],[-117,0],[-117,0],[-117,0],[-117,0],[-118,0],[-117,0],[-117,0],[-117,0],[-117,0],[-118,0],[-117,0],[-117,0],[-117,0],[-118,0],[-117,0],[-117,0],[-117,0],[-117,0],[-118,0],[-117,0],[-117,0]],[[38638,18999],[106,0],[107,0],[106,0],[106,0],[107,0],[106,0],[106,0],[106,0],[107,0],[106,0],[106,0],[107,0],[106,0],[106,0],[107,0],[106,0],[106,0],[107,0],[106,0],[106,0],[107,0],[106,0],[106,0],[107,0],[106,0],[106,0],[107,0],[106,0],[106,0],[107,0],[106,0],[91,0]],[[42025,18999],[117,-117],[31,-1],[36,18],[28,-26],[18,-72],[-2,-37],[-24,-2],[-30,-43],[-36,-85],[9,-80],[53,-74],[36,-76],[18,-75],[35,-59],[79,-63],[-1,-35],[0,-117],[0,-118],[0,-118],[0,-117],[1,-118],[0,-118],[0,-118],[0,-117],[0,-118],[1,-118],[0,-117],[0,-118],[0,-118],[0,-117],[1,-118],[0,-118]],[[44998,15840],[-36,-2]],[[44962,15838],[-1,11],[2,25],[3,11],[7,2],[8,-1],[12,-23],[5,-23]],[[48485,17596],[12,-25],[5,-134],[-3,-26],[-18,-55],[1,-29],[15,-45],[54,-105],[5,-41],[21,-40],[19,-60],[57,-127],[90,-105],[70,-28]],[[48813,16776],[-192,-219],[-87,-80],[-84,-64],[-7,-11],[-19,-70],[-51,-62],[-31,-66],[-76,-55],[-54,-75],[-135,-74],[-76,-25],[-51,-43]],[[47950,15932],[-4,-2],[-4,-2],[-4,-2],[-4,-3],[-4,-2],[-4,-2],[-4,-2],[-4,-2],[-176,9],[-176,9],[-177,9],[-176,8],[-176,9],[-176,9],[-176,9],[-176,9],[-169,-5],[-169,-5],[-169,-4],[-168,-5],[-15,28],[-45,6],[-68,10],[-3,0],[20,-93],[1,-80],[-2,-1],[-79,0],[-88,0],[-88,0],[-87,0],[-88,0],[-87,0],[-88,0],[-101,0]],[[45016,15837],[27,79],[24,21],[10,5],[26,-15],[12,-5],[27,28],[23,82],[14,86],[4,91],[-17,72]],[[47364,18178],[29,29],[29,4],[24,-31],[33,-8],[44,15],[40,-10],[36,-37],[35,-68],[32,-99],[58,-60],[83,-22],[61,-39],[39,-56],[31,-18],[38,30],[39,16],[40,-19],[52,-47],[78,11],[103,67],[61,-3],[18,-75],[44,-78],[69,-81],[5,-3]],[[43828,9516],[-19,-13],[-84,78],[-5,34],[41,30],[25,-3],[40,-39],[15,-11],[7,-16],[-4,-26],[-16,-34]],[[45301,9707],[-28,-47],[2,18],[20,47],[14,19],[-8,-37]],[[45332,9793],[-14,-29],[14,138],[-20,116],[21,-51],[7,-60],[-8,-114]],[[45131,10043],[2,-42],[-25,21],[-37,1],[16,15],[12,14],[5,15],[47,52],[-13,-38],[-7,-38]],[[44981,10141],[-35,-24],[-185,92],[-46,75],[-41,16],[-51,9],[-54,-92],[-41,-124],[65,-68],[56,-32],[91,27],[51,60],[42,-2],[20,13],[18,31],[35,-25],[1,-25],[-25,-35],[-32,-29],[-19,-35],[36,-70],[57,-23],[22,10],[13,79],[35,50],[47,-11],[-6,-31],[6,-30],[22,-52],[-2,-73],[4,-18],[-51,-32],[-38,-11],[-31,-42],[16,-25],[-31,-22],[-21,9],[-11,-8],[-3,-26],[-16,-24],[23,-73],[48,-47],[34,-60],[136,-78],[33,2],[32,-79],[27,-27],[25,-14],[-3,-55],[-45,-39],[-12,-48],[-11,-26],[-20,33],[-21,25],[-48,-75],[-23,-15],[11,80],[-18,31],[-27,81],[-40,50],[-28,16],[-22,32],[-26,12],[-23,-3],[-38,19],[-3,42],[-10,32],[-30,38],[-143,72],[-1,-30],[10,-22],[20,-15],[25,-29],[0,-85],[-11,-36],[-4,-52],[-10,-52],[-17,-42],[-39,-28],[-18,24],[-28,113],[-39,35],[-62,4],[-43,-25],[-46,-109],[-38,-18],[-127,56],[-146,87],[4,28],[23,9],[44,-11],[-3,29],[-45,97],[-8,43],[6,53],[-15,-1],[-27,-45],[-93,38],[-25,45],[-55,127],[-77,5],[-35,77],[-63,-33],[-32,-35],[-28,-56],[11,-28],[28,-46],[-13,-22],[-89,-33],[-209,37],[-60,34],[-82,72],[-113,58],[-55,10],[-53,-12],[-156,-6],[-36,-16],[-31,-25],[-19,28],[-10,49],[18,8],[20,29],[19,57],[2,35],[-13,22]],[[42813,9946],[34,90],[8,33],[-5,153],[-15,56],[2,32],[16,84],[-3,77],[28,92],[21,49],[23,99],[5,64],[10,48],[-7,51],[17,38],[-11,52],[-3,69],[-20,26],[-35,102],[1,45],[-37,95],[0,33],[-36,49],[-7,32],[-3,132],[-9,39],[-30,76],[-71,110],[1,115],[0,114],[0,114],[0,115],[0,114],[0,114],[0,114],[0,115]],[[44154,12690],[3,-44],[24,-26],[2,-48],[-22,-69],[0,-48],[22,-27],[-1,-28],[-24,-30],[-4,-33],[17,-35],[8,-40],[-1,-46],[22,-60],[35,-39],[23,-45],[2,-25],[2,-24],[-5,-33],[-29,-50],[-22,-35],[-14,-14],[-7,-24],[-2,-53],[-32,-68],[-66,-78],[-44,-99],[-21,-121],[-23,-77],[-23,-33],[-12,-63],[0,-93],[-15,-52],[-30,-10],[-7,-54],[18,-97],[-8,-41],[-21,-32],[-2,-25],[122,0],[121,0],[122,0],[122,0],[122,0],[122,0],[122,0],[122,0],[-15,-104],[-36,-140],[-1,-37],[9,-45],[0,-26],[13,-38],[29,-39],[26,-57],[23,-103],[6,-48],[19,-66],[9,-12],[14,-8],[13,-7]],[[54894,20141],[-39,-15],[-91,33],[75,29],[12,9],[10,42],[1,21],[28,-90],[4,-29]],[[54624,20241],[-140,-44],[-22,28],[35,13],[44,68],[29,8],[46,-39],[8,-34]],[[54257,20539],[-18,40],[-18,21],[-18,21],[0,34],[1,51],[-21,10],[-2,62],[-2,41],[-38,-1],[-31,0],[-51,-1],[-52,-1],[-38,-1]],[[53117,20854],[-13,22],[16,76],[16,76],[16,76],[16,76],[16,76],[16,75],[16,76],[16,76]],[[53232,21483],[50,-2],[50,-3],[50,-2],[50,-3],[50,-2],[50,-3],[49,-2],[50,-3]],[[53631,21463],[72,-3],[73,-3],[72,-3],[72,-3],[72,-3],[72,-3],[72,-4],[72,-3],[44,25],[53,71],[32,15],[52,42],[25,9],[60,-4]],[[54474,21596],[-12,-47],[15,-46],[9,-48],[23,-47],[20,-4],[21,9],[16,-2],[10,-20],[-4,-24],[-25,-6],[-46,-42],[-40,-16],[-20,-51],[-30,-58],[-59,-91],[25,-28],[91,-32],[40,-32],[61,-171],[-14,-17],[-5,-31],[54,-44],[18,-122],[44,-41],[67,-26],[81,37],[68,51],[-2,42],[-43,97],[-10,45],[-32,30],[-12,-25],[-20,32],[-3,18],[19,9],[23,-3],[25,-17],[67,-106],[18,-139],[4,-88],[-7,-30],[-20,6],[-37,-5],[-175,-46],[-39,-40],[-89,-44],[-5,22],[6,45],[-5,92],[-18,4],[-139,-150],[-53,-9],[-45,-44],[-10,24],[-8,113],[28,94],[-15,-1],[-28,-34]],[[52232,17228],[-14,-3]],[[52218,17225],[14,32],[45,151],[20,53],[-20,-106],[-34,-98],[-11,-29]],[[52327,17603],[0,-26],[-7,-40],[-11,-15],[0,40],[-8,14],[-14,-18],[-9,-19],[-3,-78],[-10,-39],[-33,-12],[-34,-102],[-31,-58],[-11,-36]],[[52156,17214],[-48,-9],[-76,-14],[-20,-41]],[[52012,17150],[-39,18],[-58,-2],[11,55],[17,49],[-31,48],[-18,6],[-18,20],[21,41],[11,42],[-6,52],[9,39],[-16,-5],[-24,-42],[-15,-16],[-10,36],[-10,-8],[-7,-25],[-16,-14],[-33,34],[-48,40],[-27,68],[-15,52],[15,95],[33,17],[44,-15],[57,0],[-9,21],[-20,-3],[-60,77],[-19,46],[-33,13],[-15,-45],[-17,-12],[21,98],[27,4],[40,28],[-12,56],[-25,25],[-46,-31],[1,40],[8,51],[35,0],[30,-17],[26,83],[1,37],[-43,-54],[-9,116],[41,111],[40,49],[50,-2],[51,8],[-32,21],[-32,11],[24,44],[21,8],[21,38],[-50,-6],[6,73],[-24,-15],[-29,-7],[-11,-30],[2,-52],[-8,-33],[-23,-27],[-37,-21],[-4,36],[-13,17],[-4,-78],[-10,-27],[-28,73],[-8,-14],[1,-21],[-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,-48],[-8,-41],[18,-190],[22,-52],[21,-49],[11,-46],[-22,-7],[-37,38],[-31,29],[-38,93],[-6,37],[-9,29],[4,-67],[13,-75],[119,-168],[22,-65],[16,-50],[-4,-49],[-31,34],[-26,44],[-71,50],[-89,31],[-50,115],[0,-48],[-11,-41],[-31,50],[-19,42],[-7,47],[-38,-4],[-40,-40],[-39,10],[-5,78],[11,42],[43,99],[41,50],[19,65],[-7,101]],[[51270,18044],[-35,23],[-56,76],[-91,54],[-13,26],[2,30],[12,41],[-28,40],[-68,40],[-30,33]],[[50963,18407],[-6,8],[-3,41],[-9,26],[-15,12],[-3,17],[9,25],[-9,26],[-28,28],[-10,25],[9,21],[-14,10],[-37,-2],[-36,21],[-36,42],[-42,7],[-73,-42],[-42,-10],[-18,-24],[-9,-41],[-18,-21],[-40,0],[-6,1],[-46,14],[-33,26],[-6,10],[4,22],[-6,10],[-10,2],[-9,-13],[-10,-39],[-79,-105],[-38,21],[-15,-1],[-111,-148],[-33,-24],[-65,-67],[1,116],[1,115],[2,116],[1,115]],[[50075,18747],[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]],[[55581,22787],[-19,-18],[-21,6],[0,45],[6,15],[7,6],[10,-12],[17,-42]],[[55802,22910],[-29,-17],[-33,7],[1,-47],[-4,-17],[-36,24],[-13,16],[1,63],[32,60],[24,23],[31,-16],[24,-67],[2,-29]],[[55998,24196],[-31,-15],[42,-63],[78,-61],[57,-12],[32,16],[0,1],[9,-4],[9,-34],[-5,-32],[-15,-15],[-17,-11],[-3,-25],[8,-25],[12,-22],[13,-39],[-5,-34],[-12,-29],[-5,-30],[10,-25],[27,-34],[16,-33],[26,-18],[13,13],[10,17],[11,13],[18,-8],[22,-9],[23,-12],[-3,-27],[15,-47],[11,-89],[-17,-40],[3,-54],[47,-15],[12,-17],[2,-19],[-104,-138],[-87,19],[-48,-36],[-50,-11],[-21,-61],[-28,-13],[-37,4],[-33,17],[-24,-8],[-35,-111],[-28,9],[-11,-39],[-15,-18],[-22,-15],[-18,49],[-12,47],[-18,10],[-23,12],[-24,0],[-17,-7],[-20,-30],[-28,-26],[-22,22],[-17,35],[-15,-56],[-21,-59],[3,-69],[-9,-41],[-20,11],[-20,36],[-57,28],[-45,-2],[9,38],[43,55],[-13,11],[-21,-8],[-9,8],[15,49],[1,56],[-19,-20],[-24,-58],[-58,-46],[3,-78],[-54,-158],[-3,-68],[-35,-54],[-45,-46],[-60,13],[-46,-40],[-23,-47],[-20,-7],[-11,59],[-7,19],[-17,-87],[-18,-6],[-6,62],[-8,41],[-24,-36],[-15,-93],[-17,8],[-5,35],[-12,10],[-4,-39],[6,-56],[-8,-30],[-16,16],[-17,27],[-27,-20],[-24,-8],[0,27],[4,33],[-49,-18],[-59,-62],[-46,-85],[16,-14],[18,-28],[-80,-131],[-81,-119],[-62,-194],[-25,-22],[-21,-36]],[[54511,21770],[-41,85],[-8,68],[-46,80],[-18,56],[-6,62],[2,67],[-3,100],[-4,100],[-4,100],[-4,100],[-4,100],[-4,100],[-4,100],[-4,100],[-4,101],[-3,100],[-4,100],[-4,100],[-4,100],[-4,100],[-4,100],[-4,90]],[[54332,23779],[13,13],[30,26],[21,-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,57],[23,28],[7,57],[37,60],[19,34],[5,30],[-10,37],[1,70],[13,84],[16,91],[35,82],[57,90],[14,117],[16,125],[69,121],[78,137],[44,78],[81,142],[57,101],[29,46],[30,56],[49,-17],[48,-16],[-7,-80],[6,-40],[2,-18],[23,-34],[34,-23],[25,-7],[30,0],[81,45],[95,30],[53,27],[10,26],[23,9],[39,-8],[70,-64],[82,-97],[65,-77],[2,-133],[1,-140],[2,-149],[1,-106],[1,-145],[2,-116],[1,-151],[1,-80],[9,-24],[-5,-31],[-2,-16],[0,-13],[4,-16],[-1,-22],[-8,-20],[-4,-24],[-1,-12]],[[46779,23605],[-7,-12],[-14,1],[-11,12],[-11,40],[4,8],[27,-5],[10,-17],[2,-27]],[[46994,24057],[-17,-4],[-14,10],[2,43],[18,74],[18,33],[23,-13],[-5,-9],[5,-79],[-8,-35],[-22,-20]],[[48584,21723],[0,0],[-36,-251],[-29,-104],[-51,-60],[3,15],[5,18],[-1,60],[-9,23],[-19,9],[-23,-6],[-28,-23],[-9,-23],[11,-24],[-6,-21],[-23,-19],[-15,-44],[-7,-70],[-9,-43],[-12,-17],[-46,-26],[-24,-22],[-21,-32],[-19,-54],[-17,-73],[-6,-57],[6,-31],[-15,-20],[-25,-37],[-5,-14],[1,-22],[-5,-10],[-12,0],[-10,-10],[-23,-40],[-41,-102],[-6,-19]],[[48058,20574],[-5,-5],[-169,-9],[-169,-9],[-169,-8],[-169,-9]],[[46329,20588],[33,25],[54,58],[30,53],[29,69],[28,85],[57,128],[28,77],[27,98],[20,103],[13,107],[7,111],[-1,115],[-14,116],[-26,117],[-14,59],[-6,16],[-48,150],[-55,208],[1,17],[51,124],[1,17],[-5,100],[-11,51],[-26,68],[1,17],[53,86],[32,66],[28,80],[19,93],[9,106],[-1,71],[-9,35],[1,27],[11,20],[57,24],[19,42],[4,74],[11,37],[19,-1],[18,15],[16,31],[22,9],[27,-14],[37,46],[48,105],[37,58],[26,13],[5,-10],[-16,-31],[-5,-34],[6,-38],[-5,-36],[-12,-49],[7,-16],[-21,-80],[-1,-40],[13,-30],[15,11],[17,51],[5,28],[-7,3],[3,22],[12,40],[11,19],[9,-2],[3,-22],[-4,-42],[-28,-98],[-5,-30],[6,-9],[33,62],[27,98],[21,76],[4,41],[-6,106],[1,43],[8,30],[29,34],[49,38],[48,20],[48,3],[33,10],[19,18],[-6,14],[-32,11],[-25,24],[-17,36],[-5,42],[5,47],[21,46],[35,45],[11,34],[-13,21],[15,7],[44,-6],[30,6],[17,18],[42,-19],[64,-56],[62,-32],[58,-9],[43,-20],[27,-30],[19,-34],[12,-37],[28,-21],[44,-5],[34,-16],[26,-27],[139,-69],[59,-37],[32,-36],[9,-23],[-3,-23],[3,-24],[24,-47],[9,-4],[6,-23],[2,-42],[7,-27],[12,-15],[-7,-5],[-43,24],[-25,-8],[-11,-31],[-2,-29],[8,-28],[55,-83],[14,-76],[3,-92],[-7,-35],[-6,-79],[-4,-122],[-1,-42],[-18,-41],[-49,-59],[-1,11],[-12,3],[-13,-8],[-17,-51],[-16,-91],[-18,-50],[-22,-8],[-13,-13],[-4,-19],[-24,-12],[-42,-7],[-30,-28],[-21,-78],[1,-38],[-10,-47],[0,-40],[12,-33],[34,-34],[57,-33],[34,-5],[24,14],[25,55],[23,21],[29,9],[11,25],[48,109],[0,25],[-17,9],[2,7],[23,4],[19,15],[17,25],[29,18],[71,29],[38,32],[24,6],[35,-18],[46,-40],[36,-58],[27,-77],[34,-198],[41,-320],[28,-180],[14,-38],[8,-19],[0,0]],[[47498,24254],[65,-12],[7,7],[18,-24],[3,-21],[-8,-17],[-11,-9],[-15,-1],[-23,17],[-39,45],[3,15]],[[48033,24428],[5,-20],[-12,-30],[-36,-15],[-72,2],[-47,11],[-22,21],[-5,11],[2,24],[11,2],[15,-13],[23,5],[31,24],[16,18],[1,12],[-10,23],[8,9],[39,-8],[14,-15],[26,-51],[13,-10]],[[47720,24638],[-7,-5],[-26,36],[-5,21],[4,18],[9,1],[16,-16],[9,-19],[2,-22],[-2,-14]],[[47714,24743],[0,-19],[-16,4],[-13,13],[-10,22],[-13,55],[-20,39],[30,43],[18,6],[19,-10],[2,-26],[-14,-41],[1,-42],[16,-44]],[[45952,23611],[-24,12],[-21,36],[-12,36],[-1,37],[29,93],[3,15],[-4,9],[-16,10],[-37,-17],[-37,-3],[-12,6],[-5,16],[1,25],[7,30],[23,54],[0,52],[10,29],[-10,56],[3,26],[-16,29],[-42,38],[-98,50],[10,57],[-4,24],[-24,36],[-103,42],[-70,20],[-69,0],[-50,15],[-56,5],[-36,26],[-35,25],[-36,26],[-36,25],[-63,22],[-64,22],[-63,21],[-63,22],[-64,22],[-63,21],[-63,22],[-64,22],[-14,38],[-14,38],[-14,38],[-14,38],[-30,16],[-15,8],[-11,20],[-27,-9],[-10,33],[3,7]],[[44531,24952],[33,8],[96,47],[81,58],[67,67],[84,42],[101,15],[72,24],[43,33],[58,63],[33,19],[41,6],[31,24],[21,44],[39,49],[58,56],[33,22],[8,-11],[3,-19],[-2,-29],[14,-23],[31,-18],[15,-23],[-3,-30],[8,-25],[20,-20],[5,-45],[-9,-69],[-2,-45],[7,-20],[7,-12],[11,11],[14,25],[5,15],[4,15],[84,70],[17,3],[27,-18],[128,-25],[51,-18],[53,-40],[18,-15],[65,-129],[29,-51],[19,-14],[10,-20],[9,-45],[10,-14],[95,-10],[43,8],[26,19],[29,-12],[32,-42],[32,-12],[31,19],[29,-1],[27,-20],[13,-14],[8,0],[54,65],[65,57],[87,62],[51,28],[13,-7],[80,20],[73,2],[95,-12],[89,14],[81,42],[73,23],[62,5],[24,-12],[-15,-28],[-9,-48],[-1,-68],[-5,-43],[-10,-18],[-1,-18],[7,-16],[61,-11],[32,-22],[37,-1],[41,20],[32,-7],[22,-36],[32,-6],[31,26],[22,23],[19,11],[14,2],[16,-12],[10,-20],[27,-56],[13,-37],[8,-56],[5,-19],[0,-33],[-18,-22],[-5,-17],[11,-18],[60,-5],[27,-17],[10,-20],[-7,-21],[4,-23],[15,-24],[48,-37],[12,-18],[-4,-18],[-14,-12],[-25,-5],[-184,34],[-54,6],[-8,-13],[-5,-2],[-9,4],[-15,0],[-8,9],[-7,23],[-16,14],[-25,7],[-22,-18],[-26,-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,-52],[-47,-30],[-64,-7],[-35,-14],[-6,-21],[-23,0],[-41,20],[-42,5],[-43,-8],[-32,-21],[-34,-64],[-7,-31],[-24,-28],[-65,-43],[-3,-15],[-34,-49],[-11,-27],[0,-26],[-11,1],[-23,30],[-1,40],[21,50],[19,24],[17,-2],[10,22],[4,46],[-6,23],[-33,-9],[-17,-18],[-21,-4],[-26,10],[-23,-25],[-19,-60],[-24,-40],[-27,-18],[-19,20],[-9,60],[0,48],[11,56],[-6,12],[-11,-19],[-18,-47],[-23,-104],[-15,-33],[-20,-15],[-32,-62],[-43,-112],[-49,-107],[-55,-105],[-33,-56],[-10,-8],[-5,-19],[-2,-44]],[[45639,25510],[-9,-30],[2,-17],[-62,-77],[-22,-49],[-19,-8],[-15,33],[0,27],[16,20],[14,29],[2,40],[-5,14],[-19,-35],[10,-8],[3,-6],[-3,-13],[-71,19],[-21,28],[3,39],[24,49],[85,105],[37,30],[107,46],[59,11],[59,0],[43,-16],[26,-30],[-25,-20],[-116,-17],[-4,-6],[23,-16],[4,-12],[-21,-31],[-105,-99]],[[45267,26156],[-2,-15],[18,-5],[-3,-7],[-20,-14],[-57,-27],[-38,-9],[-19,10],[-2,18],[15,27],[0,14],[-16,0],[4,10],[23,22],[199,136],[85,50],[45,15],[7,-7],[-49,-51],[-8,-22],[2,-13],[-16,-28],[-145,-95],[-23,-9]],[[44952,26224],[-14,-9],[-15,2],[-19,-14],[-24,-29],[-56,-41],[-86,-54],[-101,-49],[-203,-89],[-126,-93],[-56,-56],[-218,-279],[-131,-148],[-213,-209],[-20,-27],[-1,-24]],[[43669,25105],[-10,0],[-35,-50],[-15,-33],[-34,-9],[0,-130],[0,-130],[0,-130],[0,-130],[-17,-14],[-21,-30],[-29,-8],[-137,-107],[-22,-31],[-25,-71],[-45,-81],[-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,-53],[1,-5],[65,-73],[54,-40],[48,-13],[38,-31],[27,-49],[37,-33],[47,-15],[47,-41],[72,-100],[37,-86],[63,-61],[102,-65],[67,-57],[32,-49],[21,-126],[17,-266]],[[41464,22160],[0,202],[0,203],[0,203],[0,203],[0,202],[0,203],[0,203],[0,203],[-39,67],[-84,54],[-21,33],[-39,81],[-16,34],[-3,28],[19,30],[77,87],[24,40],[12,39],[18,90]],[[41412,24365],[-7,69],[4,107],[-15,81],[-4,40],[-9,50],[-58,131],[-14,106],[-14,53],[-5,134],[2,38],[11,73],[-24,49],[-4,40],[-11,321],[-8,45],[2,149],[-44,156],[-21,53],[-11,65],[1,30],[-36,107],[-24,117],[2,102],[-8,77],[3,60],[-6,89],[7,51],[1,80],[-50,281]],[[41072,27119],[62,0],[216,0],[217,0],[216,0],[216,0],[120,-1],[2,191],[1,150],[110,-18],[33,-27],[10,-13],[-3,-42],[9,-126],[20,-105],[46,-126],[0,0],[4,-49],[15,-31],[27,-29],[105,-35],[182,-40],[104,-47],[24,-53],[49,-21],[72,10],[52,22],[43,50],[61,11],[52,-3],[52,-5],[29,-7],[81,-40],[52,-32],[76,-60],[42,-27],[20,-63],[24,-81],[33,0],[25,48],[65,8],[84,-33],[75,-94],[107,-84],[65,-42],[67,0],[84,42],[90,80],[65,14],[38,-7],[22,-63],[27,-24],[70,7],[145,-12],[116,17],[26,-36],[24,-57],[47,-18],[63,18],[101,-12]],[[45016,15837],[0,-2],[-10,-8],[-7,8],[-1,5]],[[44962,15838],[8,-67],[-7,-49],[-25,-19],[-4,-27],[15,-31],[0,-14],[-6,-11],[-17,-4],[-13,-7],[-10,-24],[20,-48],[-4,-57],[-28,-67],[-4,-26]],[[42395,15838],[0,113],[0,112],[0,113],[0,113]],[[42025,18999],[-8,8],[-36,77],[-15,93],[-29,60],[-44,28],[-27,60],[-12,94],[-28,94],[-13,28]],[[45469,10162],[-6,-10],[-45,18],[-28,18],[-5,17],[76,-31],[8,-12]],[[45549,10302],[-148,-14],[-65,46],[-27,9],[-16,-1],[-76,-43],[-86,-32],[-20,10],[-29,2],[-62,-111],[-39,-27]],[[44588,14483],[130,0],[135,0],[134,-1],[135,0],[135,0],[135,0],[134,-1],[138,0]],[[37630,24365],[1,-210],[1,-210],[1,-210],[0,-210],[0,-2],[0,-3],[0,-3],[0,-3],[-4,0],[-4,0],[-4,0],[-4,0]],[[37617,23514],[-111,0],[-111,0],[-112,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-112,0],[-111,0],[-111,0],[-111,0],[-111,0],[-112,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-112,0],[-111,0],[-111,0],[-111,0],[-111,0],[-112,0],[-111,0],[-111,0],[-111,0],[-111,0],[-111,0],[-112,0],[-111,0],[0,-113],[0,-114],[0,-113],[0,-113]],[[31524,27119],[94,0],[216,0],[216,0],[216,0],[217,0],[49,0],[167,0],[216,0],[217,0],[216,0],[216,0],[216,0],[217,0],[216,0],[216,0],[164,0],[53,0],[216,0],[216,0],[216,0],[217,0],[216,0],[216,0],[217,0],[216,0],[216,0],[216,0],[217,0],[216,0],[216,0],[162,0]],[[37619,27119],[1,-171],[0,-172],[1,-172],[1,-173],[0,-172],[1,-172],[1,-172],[1,-172],[0,-173],[1,-172],[1,-172],[0,-172],[1,-173],[1,-172],[1,-172],[0,-172]],[[51562,14171],[-11,-3],[-20,10],[-28,19],[-6,14],[26,-5],[39,-35]],[[51584,14160],[-13,-11],[46,113],[92,143],[25,22],[-76,-122],[-74,-145]],[[51950,14654],[-92,-64],[-11,3],[61,46],[42,15]],[[52070,14699],[-68,-25],[-6,8],[78,52],[25,181],[3,84],[-11,147],[0,31],[13,-48],[11,-137],[-4,-105],[-23,-152],[-18,-36]],[[52024,15255],[-8,-18],[-33,100],[34,-33],[6,-26],[1,-23]],[[51895,15882],[16,1]],[[51911,15883],[51,-291],[101,-316],[12,-54],[-23,48],[-75,209],[-41,151],[-41,252]],[[50538,13468],[-73,109],[-68,103],[-69,103],[-68,103],[-69,103],[-68,104],[-69,103],[-68,103],[-72,3],[-72,4],[-71,3],[-72,4],[-72,4],[-71,3],[-72,4],[-72,3],[-2,71],[-2,51],[-45,86],[-27,50],[-56,-44],[-3,22],[2,38],[-5,13],[-16,9],[-80,5],[-80,5],[-81,5],[-80,6],[-81,5],[-80,5],[-81,5],[-80,5],[-19,9],[-36,-30],[-95,-45],[-47,-40],[-17,2],[-81,-38],[-81,-38],[-9,0]],[[47616,14471],[19,193],[14,44],[14,10],[53,0],[33,22],[30,116],[67,91],[31,23],[45,18],[107,22],[115,88],[83,84],[66,23],[21,31],[15,40],[9,54],[7,12],[38,-4],[29,47],[28,27],[28,16],[18,0],[6,-14],[5,-40],[6,-14],[12,-1],[16,9],[22,26],[56,81],[37,31],[57,18],[41,-42],[25,14],[73,166],[29,30],[22,12],[37,2],[1,46],[13,69],[1,47],[24,69]],[[48969,15937],[8,-14],[184,-3],[183,-2],[184,-3],[183,-2],[184,-3],[183,-3],[184,-2],[183,-3],[184,-2],[184,-3],[183,-2],[184,-3],[183,-2],[184,-3],[183,-2],[126,-2]],[[51856,15883],[-13,-70],[7,-40],[27,-42],[30,-104],[23,-140],[-32,57],[-34,30],[-53,23],[-47,41],[4,-58],[-5,-63],[-36,19],[-25,21],[22,-67],[-48,20],[-32,-4],[-20,-59],[-28,-36],[-41,-12],[-60,54],[-20,66],[-8,73],[-3,-86],[10,-90],[-3,-69],[58,-13],[55,12],[73,-3],[48,13],[29,21],[70,-19],[5,-82],[-8,-83],[-4,-87],[19,0],[22,28],[12,157],[63,58],[21,-4],[21,-50],[6,-51],[8,-71],[-15,-106],[-98,-126],[-69,-115],[-36,-24],[-52,13],[-58,30],[-28,5],[-22,-9],[-13,35],[-9,65],[-23,22],[-17,-2],[-12,-70],[-54,-19],[-74,28],[-77,58],[33,-62],[192,-116],[22,-22],[20,-32],[-27,-49],[-21,-57],[-3,-44],[-7,-28],[-77,-75],[-42,14],[-106,135],[49,-117],[38,-50],[78,-26],[146,44],[48,-48],[-39,-85],[-39,-59],[-51,-7],[-46,-16],[-13,-40],[-32,-3],[-50,-2],[-78,-4],[-43,9],[-60,-83],[-22,-11],[-32,15],[-13,67],[-14,33],[-1,-125],[6,-34],[11,-25],[-70,-68],[-67,-85],[-24,-23],[-27,-43],[-56,-122],[-14,-90],[-20,-99],[-2,45],[3,75],[-14,87],[-8,-159],[-22,-74],[-199,6],[-81,-37]],[[41412,24365],[-119,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-119,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-119,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-119,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-119,0],[-118,0],[-118,0],[-118,0],[-118,0],[-118,0],[-119,0],[-118,0]],[[37619,27119],[55,0],[216,0],[216,0],[216,0],[217,0],[216,0],[216,0],[217,0],[216,0],[216,0],[216,0],[217,0],[216,0],[216,0],[217,0],[216,0],[154,0]],[[37625,19902],[-1,225],[0,226],[-1,226],[0,226],[0,226],[-1,226],[0,225],[-1,226]],[[37621,21708],[176,0],[175,0],[176,0],[175,0],[176,0],[176,0],[175,0],[176,0],[175,0],[176,0],[175,0],[176,0],[176,0],[175,0],[176,0],[200,0],[152,-134],[90,-42],[43,39],[93,23],[142,6],[91,-19],[37,-43],[74,-48],[109,-53],[65,-57],[22,-63],[38,-39],[39,-12]],[[54511,21770],[-23,-117],[-14,-57]],[[53631,21463],[-8,33],[-29,57],[-6,24],[1,28],[16,72],[11,22],[12,43],[18,168],[16,97],[11,178],[11,52],[13,32],[21,84],[37,68],[25,84],[30,74],[4,43],[23,93],[15,167],[15,26],[68,23],[22,17],[72,69],[23,28],[14,29],[11,47],[8,12],[2,26],[-25,108],[-1,40],[56,123],[-12,72],[8,18]],[[54113,23520],[50,174],[46,81],[64,-27],[34,3],[25,28]],[[52786,18709],[-59,-136],[-2,26],[74,170],[-13,-60]],[[52309,18983],[25,30],[58,57],[89,67],[-123,227],[-29,13],[-32,111],[-37,31],[-10,17],[-1,85],[3,48],[6,29],[32,24],[18,49],[0,25],[-24,79],[0,25],[46,48],[61,93],[36,102],[14,30],[18,21],[40,29]],[[52499,20223],[50,-41],[50,-41],[51,-41],[50,-42],[50,-41],[50,-41],[51,-41],[48,-41]],[[52899,19894],[-8,-71],[-50,-142],[-22,-33],[-24,-30],[-19,-12],[-17,-23],[-20,-36],[-19,-72],[11,-65],[97,-24],[26,20],[14,-47],[7,-65],[-7,-70],[-16,-72],[-13,-88],[-10,-136],[-16,-122],[-2,37],[10,148],[-16,-15],[-11,-34],[-30,-191],[-41,-102],[-37,-70],[-39,11],[9,-56],[-11,-29],[-9,-61],[-23,-40],[-22,4],[-31,-28],[-12,-21],[-1,-41],[-21,-36],[-75,-186],[-66,-55],[-15,8],[17,88],[12,89],[-40,39],[-38,20],[-44,-3],[-48,69],[-62,50],[-87,136],[3,38],[-2,63],[26,100],[25,70],[35,36],[101,37],[26,55],[15,47]],[[38143,15838],[-21,-1],[-1,-253],[-1,-254],[-1,-254],[0,-254],[-1,-254],[-1,-254],[0,-254],[-1,-254],[-1,-253],[-1,-254],[0,-254],[-1,-254],[-1,-254],[-1,-254],[0,-254],[-1,-254],[-114,0],[-114,0],[-114,0],[-114,0],[-114,0],[-114,0],[-114,0],[-114,0],[-114,0],[-114,0],[-114,-1],[-115,0],[-114,0],[-114,0],[-114,0],[-114,0],[-3,0],[52,-164],[0,0],[61,-46]],[[36395,11564],[-4,1],[-111,1],[-112,1],[-111,1],[-112,1],[-111,2],[-112,1],[-111,1],[-112,1],[0,-102],[0,-102],[-1,-101],[0,-102],[-179,0],[-180,-1],[-64,0]],[[38143,16289],[0,-113],[0,-112],[0,-113],[0,-113]],[[29519,20804],[189,0],[190,0],[189,0],[189,0],[189,0],[190,0],[189,0],[189,0]],[[32542,20805],[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,-141],[0,-141],[0,-141],[0,-141],[0,-142],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[1,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141],[0,-141]],[[52758,19470],[-24,-4],[24,87],[45,39],[16,-8],[0,-30],[-6,-27],[-30,-40],[-25,-17]],[[53610,19888],[-37,-58],[33,-6],[28,17],[27,35],[61,47],[53,20],[16,4],[25,-33],[50,27],[51,15],[-221,-151],[-45,-17],[-65,-45],[-61,-31],[-44,-12],[-219,-111],[-17,-3],[-19,11],[-180,-58],[-74,-6],[-67,-20],[49,46],[1,18],[-11,13],[-27,-4],[-27,-48],[-44,-15],[-9,51],[15,41],[20,38],[43,60],[62,38],[31,32],[22,-28],[5,39],[17,22],[18,12],[44,1],[23,6],[17,13],[18,2],[48,-18],[47,5],[37,25],[40,8],[104,6],[103,17],[41,32],[87,89],[50,25],[-78,-103],[-41,-48]],[[50353,21727],[-16,-31],[-15,3],[-11,10],[-4,20],[3,25],[13,10],[37,-9],[1,-10],[-8,-18]],[[51706,22601],[-7,-3],[1,20],[7,12],[15,6],[0,-10],[-16,-25]],[[51783,22861],[-16,-8],[-4,11],[2,10],[14,12],[22,0],[-3,-10],[-15,-15]],[[53182,23518],[4,-60],[-11,-71],[9,-77],[-12,-160],[32,-125],[-8,-83],[2,-89],[-5,-22],[-25,-52],[-15,-50],[-8,-51],[0,-33],[22,-147],[4,-65],[-1,-38],[-19,-121],[-1,-34],[5,-10],[7,-1],[22,38],[9,6],[13,-9],[30,-58],[-2,-102],[-1,-74],[-2,-83],[-2,-125],[-1,-91],[-1,-83],[-1,-63],[-7,-47],[13,-55]],[[53041,19893],[-21,-23],[-54,-79],[-37,-42],[-30,-14],[-19,-36],[-20,-23],[20,79],[21,67],[18,129],[-6,104],[-22,43],[-22,28],[26,-103],[5,-126],[-1,-3]],[[52499,20223],[-11,34],[-18,27],[-91,45],[-23,30],[-21,41],[-15,50],[-7,53],[-1,42],[7,47],[-21,31],[0,29],[-13,19],[-60,36],[-18,49],[-39,46],[-70,1],[-70,0],[-70,0],[-70,0],[-70,0],[-69,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,1],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-69,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,0],[-70,1],[-70,0],[-70,0],[-70,0],[0,121],[0,122],[0,5]],[[49930,21053],[30,22],[97,82],[49,60],[51,49],[54,39],[43,51],[32,62],[35,46],[38,30],[20,32],[3,33],[-7,45],[-17,56],[-2,45],[12,32],[3,22],[-7,12],[-80,32],[0,0],[3,155],[-1,5],[4,1],[185,69],[118,24],[143,6],[171,-34],[66,-30],[42,-40],[48,-11],[55,19],[76,6],[98,-6],[52,-9],[7,-13],[6,4],[7,20],[26,22],[73,32],[10,-7],[15,17],[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],[12,10],[29,47],[3,18],[19,18],[14,29],[-16,4],[-37,-8],[-8,8],[19,38],[-4,22],[-6,9],[-12,4],[-42,-34],[-13,-3],[-2,18],[-22,39],[58,70],[206,193],[21,29],[8,27],[-6,23],[-5,5],[3,6],[198,249],[112,114],[93,64],[71,31],[48,-5],[27,5],[23,0],[118,0],[211,0],[211,1],[125,0]],[[49547,19582],[-60,-39],[-11,-37],[18,-46],[10,-60],[1,-74],[-34,-161],[-69,-249],[-34,-157],[-1,-64],[-46,-85],[-89,-104],[-62,-62],[-36,-22],[-30,2],[-24,25],[-27,-17],[-30,-59],[-28,-31],[-26,-2],[-22,-38],[-18,-75],[-17,-43],[-16,-12],[-2,-38],[14,-64],[-1,-23],[-7,-1],[-8,3],[-17,-14],[-20,-36],[-7,-1],[-5,7],[-6,47],[-16,33],[-26,20],[-36,-44],[-46,-106],[-21,-70],[8,-48],[4,-70],[-11,-28],[-25,-11],[-20,-38],[-14,-65],[-35,-42],[-56,-17],[-58,30]],[[48058,20574],[-1,-3],[7,-16],[46,-9],[31,-19],[24,-28],[88,-56],[27,-34],[27,-19],[27,-3],[18,11],[10,25],[12,1],[15,-21],[50,-24],[1,-7],[-137,-42],[-29,-19],[35,-13],[35,3],[34,20],[41,-1],[35,-9],[11,7],[5,4],[60,-54],[22,-8],[23,6],[24,21],[53,26],[82,33],[79,13],[75,-6],[48,9],[44,34],[96,111],[111,90],[182,111],[177,86]],[[49546,20794],[0,-75],[0,-95],[0,-94],[0,-95],[0,-95],[0,-94],[0,-95],[0,-95],[0,-95],[0,-94],[0,-95],[0,-95],[1,-95]],[[42463,13262],[-114,46],[-29,29],[-53,33],[-47,68],[-93,84],[-35,20],[-12,-2],[-19,-42],[-49,-32],[-27,-2],[-49,13],[-10,10],[-7,25],[-19,18],[-15,-14],[-71,-35],[-10,-24],[-41,-1],[-39,17],[-101,-55],[-34,-43],[-36,-15],[-19,-42],[-11,6],[-38,52],[-38,16],[-53,51],[-2,45],[-6,6],[-9,5],[-12,-4],[-23,-39],[-13,-10],[-14,1],[-51,27],[-22,46],[-10,14],[-12,3],[-22,-14],[-12,-51],[-10,-13],[-22,-9],[2,-26],[-20,-70],[-10,-14],[-13,2],[-14,18],[-10,25],[-4,21],[7,56],[-4,18],[-10,6],[-26,-26],[-22,1],[-28,-26],[-17,-8],[-17,6],[-26,43],[-45,27],[-18,50],[-8,15],[-9,4],[-10,-2],[-16,-16],[-53,-66],[-24,-21],[-20,-4],[-20,6],[-12,17],[-3,67],[-11,20],[-49,43],[-10,39],[-5,55],[-58,-9],[-72,6],[-33,-48],[-17,-9],[-20,9],[-58,66],[-62,-14],[-35,8],[-86,48],[-68,5],[-28,9],[-15,11],[-6,75],[-27,63],[-9,17],[-46,44],[-7,2],[-5,-10],[-10,-50],[-14,-2],[-53,14],[-48,-15],[-28,25],[-92,115],[-37,30],[-30,9],[0,108],[0,108],[0,108],[0,108],[0,108],[0,108],[0,108],[-1,108],[0,108],[0,108],[0,108],[0,108],[0,109],[0,108],[0,108],[0,108],[-95,0],[-95,0],[-95,0],[-96,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0],[-95,0]],[[27886,24555],[51,23],[39,-17],[51,-41],[50,-123],[50,-207],[10,-68],[39,-42],[45,-2],[181,-31],[27,2],[0,1],[33,7],[103,79],[111,26],[132,-6],[81,-22],[30,-39],[70,-5],[168,46],[184,32],[100,34],[112,68],[256,87],[128,10],[65,33],[15,17],[9,0],[134,0],[135,0],[135,0],[134,1],[135,0],[135,0],[134,0],[126,0]],[[27375,20805],[-65,110],[-27,164],[-6,69],[8,183],[-19,78],[-49,129],[21,112],[22,68],[55,298],[13,24],[23,-1],[40,50],[-19,12],[-27,-24],[24,118],[28,100],[18,37],[9,328],[16,252],[27,82],[-10,86],[11,116],[-7,116],[56,563],[-8,68],[17,91],[-16,241],[7,268],[-14,34],[-7,37],[13,6],[26,-39],[121,0],[77,36],[28,-12],[33,-49],[41,-10],[51,9]],[[52309,18983],[-50,-80],[-75,-27],[-41,-30],[-10,-15]],[[50075,18747],[-66,0],[-66,0],[-66,0],[-66,0],[-66,0],[-66,0],[-66,0],[-66,0],[0,105],[-1,104],[0,104],[0,105],[0,104],[0,105],[0,104],[1,104]],[[49546,20794],[94,47],[42,31],[43,30],[22,18],[24,16],[159,117]],[[54190,20339],[-14,-17],[-5,44],[10,50],[10,1],[5,-26],[-6,-52]],[[54253,20345],[-25,-25],[-28,5],[14,33],[5,49],[14,54],[8,16],[17,15],[-5,-147]],[[54257,20539],[-19,-23],[-20,35],[-10,38],[-15,22],[-16,8],[14,-84],[-32,-62],[-9,-162],[-40,-68],[-125,-43],[-37,4]],[[50538,13468],[-6,-3],[-134,-135],[-40,-59],[-111,-228],[-28,-147],[-23,62],[6,46],[0,38],[-27,-81],[26,-118],[-24,-45],[-73,-84],[-40,-13],[-45,-24],[-14,-83],[-61,-76],[-35,-34],[-65,20],[20,-73],[-24,-56],[-41,-42],[-51,-28],[-29,3],[-25,-14],[-20,-36],[-48,-33],[-50,19],[-56,11],[-32,-20],[53,-33],[28,-47],[-5,-64],[-14,-25],[-34,-34],[-14,5],[-9,31],[-11,62],[-16,-13],[-2,-29],[-14,-11],[-47,101],[2,-77],[17,-59],[16,-29],[16,-18],[4,-27],[-32,-67],[-17,-14],[-30,-11],[-16,-41],[5,-35]],[[37621,21708],[0,226],[-1,226],[0,225],[-1,226],[0,226],[-1,226],[-1,225],[0,226]],[[47950,15932],[115,-1],[246,-2],[174,-1],[143,-1],[85,-1],[107,-1],[24,19],[53,-3],[72,-4]],[[41100,6498],[-7,-42],[-42,196],[-68,443],[-3,253],[11,87],[17,-357],[76,-453],[16,-127]],[[41007,7528],[-16,-52],[5,78],[41,176],[84,231],[35,39],[-97,-254],[-52,-218]],[[41179,8072],[-11,-3],[25,74],[4,30],[41,94],[21,14],[9,-40],[-41,-66],[-48,-103]],[[41306,8298],[-18,-3],[23,48],[37,25],[82,94],[34,6],[18,32],[7,5],[-5,-39],[-66,-57],[-112,-111]],[[42181,9195],[-25,-8],[110,139],[23,46],[30,-2],[-49,-78],[-89,-97]],[[42813,9946],[-24,2],[-53,-148],[30,-84],[-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],[-62,-104],[-57,-59],[-137,-139],[-38,-30],[-62,-64],[-84,-49],[-82,-76],[-27,-12],[52,65],[61,64],[-52,-9],[-82,30],[-50,2],[0,-24],[-38,-33],[-39,49],[-17,33],[-8,28],[-17,7],[-16,-13],[59,-199],[25,-9],[27,-19],[-34,-47],[-37,-35],[-58,-23],[-49,72],[-11,-91],[-6,-91],[-17,-23],[-26,-33],[-15,25],[-7,35],[-16,-31],[-25,-24],[-41,-5],[-31,-12],[1,-38],[7,-38],[54,30],[-19,-97],[-50,-96],[-41,-23],[-62,14],[-15,-10],[-14,-20],[72,-150],[-46,-227],[-30,-82],[-21,-11],[-22,-2],[-80,73],[-44,57],[38,-154],[106,-45],[5,-58],[-1,-50],[-20,-59],[-20,-77],[15,-54],[16,-134],[14,-61],[16,-186],[17,-81],[95,-296],[32,-3],[6,-32],[-4,-62],[-68,-17],[-29,-28],[-6,-24],[-4,-13],[-9,2],[-33,17],[-74,84],[-109,52],[-143,20],[-97,43],[-52,64],[-55,38],[-57,12],[-47,35],[-38,58],[-55,37],[-72,16],[-47,43],[-32,106],[0,1],[-30,177],[-36,111],[-72,138],[-6,18],[0,0],[-1,22],[9,80],[-8,57],[-22,47],[-6,50],[13,52],[0,63],[-10,73],[-46,79],[-80,85],[-69,124],[-57,163],[-56,113],[-55,63],[-38,76],[-21,91],[-6,53],[9,14],[-34,101],[-77,187],[-44,137],[-11,86],[-49,103],[-86,120],[-47,77],[-11,54],[0,0],[-134,157],[-39,98],[-31,31],[-35,-3],[-18,9],[-1,22],[-11,1],[-22,-20],[-71,-4],[-121,12],[-87,27],[-54,41],[-38,-5],[-21,-53],[-46,-34],[-71,-15],[-60,-98],[-51,-180],[-22,-117],[6,-51],[-13,-38],[-33,-23],[-33,-53],[-35,-82],[-39,-39],[-46,3],[-83,62],[-123,123],[-96,76],[-69,29],[-61,57],[-53,85],[-50,56],[-44,29],[-53,94],[-60,159],[-30,123],[0,130],[-78,283],[-42,123],[-31,56],[-60,67],[-90,79],[-121,156],[-152,235],[-107,142],[-63,48],[-54,85],[-47,121],[-45,77],[-5,4]],[[34060,20805],[0,-113],[0,-113],[0,-113],[0,-113],[0,-113],[0,-113],[0,-113],[0,-112],[127,0],[127,0],[127,0],[127,0],[127,0],[127,0],[127,0],[127,0]],[[52156,17214],[-112,-356],[5,-65],[-23,-21],[-34,-17],[-35,-39],[-23,-44],[-21,-116],[-41,-130],[-25,54],[-7,47],[12,121],[44,200],[48,123],[37,59],[31,120]],[[52232,17228],[0,0],[-55,-137],[-23,-15],[64,149]],[[51316,17995],[-7,-103],[-24,-51],[-37,-38],[-48,-70],[-12,-64],[-15,-119],[20,-41],[21,-10],[62,27],[32,-12],[71,-145],[133,-57],[48,-35],[40,-75],[59,-44],[46,-63],[1,-41],[-16,-48],[-6,-66],[-19,-41],[-47,-5],[-29,11],[-152,231],[-18,21],[-57,121],[-66,65],[-21,-2],[95,-120],[38,-83],[68,-118],[49,-50],[35,-77],[34,-37],[90,-51],[-31,-38],[50,-31],[7,-59],[-5,-66],[-69,26],[-3,-49],[7,-29],[-31,-24],[-43,33],[-111,177],[1,-24],[9,-27],[64,-114],[58,-69],[49,-31],[37,-57],[14,-34],[8,-53],[-28,-36],[-31,-19],[-31,35],[-23,38],[-48,63],[-15,72],[-37,-4],[-154,90],[-123,11],[12,-18],[15,-13],[99,-22],[39,-41],[81,-37],[47,-10],[20,-114],[65,-78],[9,-58],[44,-6],[79,57],[51,-20],[73,-16],[17,-46],[13,-87],[26,-98],[16,-96]],[[51895,15882],[-39,1]],[[48813,16776],[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],[63,-64],[24,0],[62,28],[57,7],[15,9],[21,26],[1,53],[5,14],[9,6],[12,1],[25,-19],[26,0],[108,61],[8,-5],[13,-28],[48,36],[28,34],[12,50],[23,50],[-4,22],[-16,29],[20,67],[30,66],[109,200],[35,122],[46,78],[15,62],[34,61],[24,127],[15,25],[21,5],[22,-16],[15,-24],[10,-38],[55,-33],[47,-4],[32,24],[19,44],[26,84],[24,49],[16,63],[16,43],[25,27],[63,-2],[32,38],[25,44],[15,14],[17,-2],[57,70],[74,146],[16,92],[19,66],[7,68],[15,37],[66,-74],[38,-42],[86,-97],[57,-64],[22,73],[33,108]],[[53182,23518],[87,0],[211,1],[211,0],[211,1],[211,0]],[[28072,25504],[-4,-17],[-8,0],[-15,37],[-2,25],[13,18],[18,-52],[-2,-11]],[[28305,25676],[-2,-20],[-20,-16],[-10,4],[0,24],[-5,4],[-21,-29],[1,57],[10,61],[9,1],[14,-40],[24,-46]],[[28253,25856],[-3,-17],[-28,21],[-9,19],[1,43],[7,28],[5,5],[17,-12],[5,-7],[5,-80]],[[28215,26364],[24,-119],[11,50],[69,-86],[0,-42],[-8,-14],[-15,-5],[-13,13],[-12,29],[-16,16],[-33,10],[-17,33],[-6,23],[-1,67],[-9,20],[-17,5],[-17,16],[-26,46],[-4,12],[13,38],[28,63],[20,31],[13,-4],[16,-19],[19,-34],[-4,-25],[-76,-48],[-2,-11],[36,-13],[14,-12],[13,-40]],[[28089,26612],[-8,-9],[-27,12],[-16,20],[-6,25],[10,48],[14,13],[8,-3],[4,-42],[24,-45],[-3,-19]],[[27991,26675],[14,-30],[-55,19],[-23,17],[-7,17],[-8,54],[4,18],[24,6],[46,-67],[5,-34]],[[28108,26830],[7,-20],[-20,-19],[-15,-3],[-23,31],[-10,4],[8,-47],[-3,-17],[-47,29],[-9,24],[14,24],[29,25],[11,3],[58,-34]],[[27973,27119],[-7,-14],[-7,3],[-5,11],[19,0]],[[27886,24555],[-16,12],[-24,4],[-53,45],[-31,45],[-94,-3],[-19,29],[-105,-29],[-33,30],[-57,-19],[14,84],[-3,106],[3,104],[14,-76],[36,-80],[17,91],[12,114],[-35,44],[-58,33],[-20,106],[136,91],[-72,19],[-29,41],[-35,5],[-3,-31],[-11,-42],[-12,55],[-4,65],[-14,110],[-56,177],[-34,229],[-43,114],[-81,108],[-22,63],[-19,160],[11,122],[-15,85],[39,-5],[103,-67],[129,-53],[39,-38],[62,-28],[346,-45],[22,5],[45,27],[19,-3],[51,-63],[25,-7],[33,3],[24,12],[42,43],[6,-16],[-1,-40],[15,-57],[30,-73],[12,-46],[-62,-129],[-12,-3],[-1,44],[-8,9],[-117,-218],[-41,-103],[-4,-47],[2,-27],[16,-7],[37,11],[55,43],[3,9],[-51,-15],[-25,-2],[3,49],[6,23],[34,73],[35,43],[50,46],[29,38],[20,56],[56,66],[10,18],[-2,55],[3,10],[27,-7],[11,-94],[-7,-42],[-48,-51],[-5,-18],[8,-70],[-8,-6],[-18,8],[-5,-5],[45,-75],[14,-59],[2,-53],[-12,-101],[-13,-17],[-23,7],[-30,31],[-6,-10],[-24,-78],[-8,6],[-15,93],[-8,7],[-46,-42],[-19,-41],[-16,-65],[-20,-30],[57,-7],[52,13],[42,-31],[14,0],[38,30],[12,20],[31,98],[16,18],[23,1],[23,14],[34,54],[1,21],[-12,121],[3,68],[-6,21],[-15,23],[2,22],[12,35],[0,33],[-10,29],[5,32],[32,71],[6,31],[38,70],[-9,28],[-29,35],[-18,30],[-18,48],[-14,16],[-4,-8],[19,-77],[-4,-5],[-50,41],[-12,27],[-6,36],[4,26],[27,27],[33,10],[-3,22],[-41,73],[-27,33],[-20,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,2],[-10,-12],[-27,-3],[-17,28],[-18,53],[-34,126],[52,0],[216,0],[217,0],[216,0],[216,0],[216,0],[217,0],[216,0],[216,0],[217,0],[216,0],[216,0],[216,0],[217,0],[53,0]],[[46263,23731],[-9,-12],[-16,8],[-6,-17],[4,-42],[-6,-19],[-13,3],[-1,-7],[12,-19],[1,-20],[-9,-22],[-10,-11],[-9,2],[-13,-25],[-19,-52],[-7,-30],[6,-8],[-4,-17],[-47,-79],[-18,-7],[-20,11],[-14,23],[-8,35],[-2,27],[3,19],[41,69],[19,46],[10,51],[19,32],[28,14],[22,32],[18,49],[19,22],[23,-7],[9,-18],[-3,-31]],[[46329,23831],[-15,-9],[-28,3],[-10,21],[15,52],[6,-10],[24,-1],[8,-5],[3,-13],[-3,-38]],[[44377,25124],[-29,-13],[-12,3],[5,17],[15,20],[67,51],[12,-1],[4,-12],[-33,-25],[-12,-13],[-2,-14],[-15,-13]],[[44460,25247],[-17,-6],[-36,8],[1,13],[37,19],[17,5],[4,-8],[-6,-31]],[[45952,23611],[-1,-23],[-10,-46],[-28,-35],[-75,-46],[-12,-31],[-1,-25],[-48,-105],[-24,-65],[-15,-67],[4,-42],[26,-17],[20,6],[16,31],[24,28],[32,25],[23,36],[33,89],[37,51],[19,3],[6,-2],[38,24],[30,-8],[19,-35],[19,-24],[4,-22],[-9,-50],[-18,-53],[-25,-55],[-24,-84],[-20,-111],[-5,-83],[12,-57],[-11,-51],[-35,-44],[-28,-60],[-21,-74],[-12,-63],[-3,-50],[3,-38],[13,-51],[-1,-26],[-37,-113],[-14,-55],[-2,-43],[-10,-43],[-29,-87],[-8,-48],[-2,-44],[6,-72],[-3,-25],[1,-18],[7,-13],[0,-23],[-7,-33],[3,-26],[13,-18],[8,-35],[4,-52],[10,-44],[16,-34],[3,-51],[-10,-66],[-6,-124],[0,-41]],[[43669,25105],[0,-1],[17,-23],[43,-33],[34,-5],[43,7],[171,58],[72,40],[71,68],[7,2],[29,-12],[10,-6],[92,78],[30,10],[23,-3],[30,-30],[7,-19],[-10,-35],[-27,-53],[-12,-45],[0,-36],[-11,-39],[-29,-53],[10,-14],[78,38],[11,15],[2,9],[-5,11],[9,4],[61,-52],[41,-28],[34,-14],[31,8]],[[44378,25254],[-7,-7],[-19,16],[-3,12],[5,13],[9,-3],[13,-19],[2,-12]],[[44521,25343],[-17,-14],[-6,6],[4,28],[9,16],[12,5],[7,-7],[-1,-18],[-8,-16]]],"objects":{"us-states":{"type":"GeometryCollection","geometries":[{"arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]]],"type":"MultiPolygon","id":"AK"},{"arcs":[[[62]],[[63,64,65,66,67]]],"type":"MultiPolygon","id":"AL"},{"arcs":[[68,69,70,71,72,73]],"type":"Polygon","id":"AR"},{"arcs":[[74,75,76,77,78]],"type":"Polygon","id":"AZ"},{"arcs":[[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85,86,-77,87]]],"type":"MultiPolygon","id":"CA"},{"arcs":[[88,89,90,91,92,93]],"type":"Polygon","id":"CO"},{"arcs":[[94,95,96,97]],"type":"Polygon","id":"CT"},{"arcs":[[98,99]],"type":"Polygon","id":"DC"},{"arcs":[[100,101,102]],"type":"Polygon","id":"DE"},{"arcs":[[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114,-68,115]]],"type":"MultiPolygon","id":"FL"},{"arcs":[[[116]],[[117,-116,-67,118,119,120]]],"type":"MultiPolygon","id":"GA"},{"arcs":[[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]]],"type":"MultiPolygon","id":"HI"},{"arcs":[[129,130,131,132,133,134]],"type":"Polygon","id":"IA"},{"arcs":[[135,136,137,138,139,140,141]],"type":"Polygon","id":"ID"},{"arcs":[[142,143,144,145,-130,146]],"type":"Polygon","id":"IL"},{"arcs":[[147,148,-144,149,150]],"type":"Polygon","id":"IN"},{"arcs":[[151,-89,152,153]],"type":"Polygon","id":"KS"},{"arcs":[[[154,155]],[[156,157,158,159,-145,-149,160]]],"type":"MultiPolygon","id":"KY"},{"arcs":[[[161]],[[162]],[[163]],[[164]],[[165,166,-71,167]]],"type":"MultiPolygon","id":"LA"},{"arcs":[[[168]],[[169]],[[170,-98,171,172,173,174]]],"type":"MultiPolygon","id":"MA"},{"arcs":[[[175,176]],[[-102,177,178,179,-100,180,181,182]]],"type":"MultiPolygon","id":"MD"},{"arcs":[[[183]],[[184]],[[185,186,187]]],"type":"MultiPolygon","id":"ME"},{"arcs":[[[188]],[[189]],[[190,191,-151,192]],[[193]],[[194]],[[195]],[[196]],[[197,198]],[[199]],[[200]]],"type":"MultiPolygon","id":"MI"},{"arcs":[[201,202,-134,203,204,205]],"type":"Polygon","id":"MN"},{"arcs":[[-146,-160,206,-156,207,-74,208,-154,209,-131]],"type":"Polygon","id":"MO"},{"arcs":[[[210]],[[211,-168,-70,212,-65]]],"type":"MultiPolygon","id":"MS"},{"arcs":[[213,214,-142,215,216]],"type":"Polygon","id":"MT"},{"arcs":[[[217]],[[218]],[[219]],[[220]],[[221]],[[222,223]],[[224,-120,225,226,227]]],"type":"MultiPolygon","id":"NC"},{"arcs":[[228,-217,229,-205]],"type":"Polygon","id":"ND"},{"arcs":[[-132,-210,-153,-94,230,231]],"type":"Polygon","id":"NE"},{"arcs":[[232,-174,233,234,-187]],"type":"Polygon","id":"NH"},{"arcs":[[[235]],[[236,237,238]]],"type":"MultiPolygon","id":"NJ"},{"arcs":[[239,240,-75,-91,241]],"type":"Polygon","id":"NM"},{"arcs":[[-78,-87,242,-138,243]],"type":"Polygon","id":"NV"},{"arcs":[[[244]],[[245]],[[246]],[[247]],[[248]],[[249,-172,-97,250,-238,251,252]]],"type":"MultiPolygon","id":"NY"},{"arcs":[[253,-161,-148,-192,254,255]],"type":"Polygon","id":"OH"},{"arcs":[[-73,256,-242,-90,-152,-209]],"type":"Polygon","id":"OK"},{"arcs":[[257,-139,-243,-86,258]],"type":"Polygon","id":"OR"},{"arcs":[[-237,259,-103,-183,260,-256,261,-252]],"type":"Polygon","id":"PA"},{"arcs":[[[262]],[[263]],[[264,-95,-171]]],"type":"MultiPolygon","id":"RI"},{"arcs":[[265,-121,-225]],"type":"Polygon","id":"SC"},{"arcs":[[-204,-133,-232,266,-214,-229]],"type":"Polygon","id":"SD"},{"arcs":[[267,-226,-119,-66,-213,-69,-208,-155,-207,-159]],"type":"Polygon","id":"TN"},{"arcs":[[[268]],[[269]],[[270]],[[271]],[[272]],[[-72,-167,273,-240,-257]]],"type":"MultiPolygon","id":"TX"},{"arcs":[[274,-92,-79,-244,-137]],"type":"Polygon","id":"UT"},{"arcs":[[[-179,275]],[[-176,276]],[[-181,-99,277,-223,278,-227,-268,-158,279]]],"type":"MultiPolygon","id":"VA"},{"arcs":[[-173,-250,280,-234]],"type":"Polygon","id":"VT"},{"arcs":[[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[-258,289,-140]]],"type":"MultiPolygon","id":"WA"},{"arcs":[[[290]],[[291]],[[292]],[[293]],[[-198,294,-147,-135,-203,295]],[[296]],[[297]]],"type":"MultiPolygon","id":"WI"},{"arcs":[[-182,-280,-157,-254,-261]],"type":"Polygon","id":"WV"},{"arcs":[[-231,-93,-275,-136,-215,-267]],"type":"Polygon","id":"WY"}]}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment