Skip to content

Instantly share code, notes, and snippets.

@nkelner
Last active November 12, 2020 00:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nkelner/5898357 to your computer and use it in GitHub Desktop.
Save nkelner/5898357 to your computer and use it in GitHub Desktop.
A simple vector map of Vermont's Counties.
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.county-boundary {
fill: none;
stroke: #777;
stroke-dasharray: 2,2;
stroke-linejoin: round;
}
.state-boundary {
fill: none;
stroke: none;
stroke-linejoin: round;
}
text {
font-family: helvetica;
fill: black;
font-weight: 300;
text-anchor: middle;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 700;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var projection = d3.geo.mercator()
var path = d3.geo.path()
.projection(projection);
d3.json("vt-counties.json", function(error, vt) {
var vermont = topojson.feature(vt, vt.objects.counties);
projection
.scale(1)
.translate([0, 0]);
var b = path.bounds(vermont),
s = .95 / Math.max((b[1][0] - b[0][0]) / width, (b[1][1] - b[0][1]) / height),
t = [(width - s * (b[1][0] + b[0][0])) / 2, (height - s * (b[1][1] + b[0][1])) / 2];
projection
.scale(s)
.translate(t);
svg.selectAll(".counties")
.data(topojson.feature(vt, vt.objects.counties).features)
.enter().append("path")
.attr("class", function(d) {return "county " + d.properties.name;})
.attr("d", path)
.style("fill", "white")
.transition()
.duration(3000)
.style("fill", "#ddc");
svg.append("path")
.datum(topojson.mesh(vt, vt.objects.counties, function(a, b){return a !== b; }))
.attr("d", path)
.attr("class", "county-boundary");
svg.selectAll(".county-label")
.data(topojson.feature(vt, vt.objects.counties).features)
.enter().append("text")
.attr("transform", function(d) { return "translate(" + path.centroid(d) + ")"; })
.attr("dy", ".35em")
.text(function(d) { return d.properties.name; })
.style("font-size", "0px")
.transition()
.delay(3500)
.style("font-size", "12px");
});
d3.select(self.frameElement).style("height", height + "px");
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.000019697452234522252,0.000022897373903738095],"translate":[-73.43747252999992,42.726941337000085]},"objects":{"counties":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2,3,4]],"id":"50011","properties":{"name":"Franklin County"}},{"type":"Polygon","arcs":[[5,6,7]],"id":"50009","properties":{"name":"Essex County"}},{"type":"Polygon","arcs":[[8,9,-4]],"id":"50013","properties":{"name":"Grand Isle County"}},{"type":"Polygon","arcs":[[-7,10,11,-1,12]],"id":"50019","properties":{"name":"Orleans County"}},{"type":"Polygon","arcs":[[13,14,15,-2,-12]],"id":"50015","properties":{"name":"Lamoille County"}},{"type":"Polygon","arcs":[[16,17,18,-14,-11,-6]],"id":"50005","properties":{"name":"Caledonia County"}},{"type":"Polygon","arcs":[[-16,19,20,21,-9,-3]],"id":"50007","properties":{"name":"Chittenden County"}},{"type":"Polygon","arcs":[[22,23,-20,-15,-19]],"id":"50023","properties":{"name":"Washington County"}},{"type":"Polygon","arcs":[[-24,24,25,26,27,-21]],"id":"50001","properties":{"name":"Addison County"}},{"type":"Polygon","arcs":[[28,29,-25,-23,-18]],"id":"50017","properties":{"name":"Orange County"}},{"type":"Polygon","arcs":[[30,31,32,33,-26,-30]],"id":"50027","properties":{"name":"Windsor County"}},{"type":"Polygon","arcs":[[34,35,-27,-34]],"id":"50021","properties":{"name":"Rutland County"}},{"type":"Polygon","arcs":[[-33,36,37,-35]],"id":"50003","properties":{"name":"Bennington County"}},{"type":"Polygon","arcs":[[38,-37,-32]],"id":"50025","properties":{"name":"Windham County"}}]},"states":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[12,7,16,28,30,38,37,35,27,21,9,4]],"id":"50","properties":{"name":"Vermont"}}]}},"arcs":[[[44859,99621],[125,-867],[648,-4494],[233,-1615],[0,-1],[94,-648],[0,-1],[-11,-11],[-2282,-2232],[-18,-18]],[[43648,89734],[-338,171],[-5,3],[-50,25],[-386,196],[-944,479],[-554,-76],[-126,-17],[-10,-1],[-2547,-228],[-125,-13],[-834,-76],[-226,-23],[-326,-33],[-1454,-147],[-526,-47],[-140,-12],[-82,-428],[-56,-4],[-186,0],[-137,-430],[-537,-3],[-56,-282],[-105,-472],[-20,-111],[-49,-275],[-130,0],[-319,-2],[-135,4],[-63,-260],[-93,-290],[-397,-1237],[-47,-192],[-32,-122],[-8,3],[-264,77],[-909,262],[-608,176],[-27,14],[-54,28],[-165,50],[-207,46],[-4,1],[-575,167],[-252,-297],[-113,-140],[-47,-54],[-60,-42],[-8,-10],[-414,-507],[-112,-134],[-163,-187],[-672,-779],[-180,-212],[-113,-85],[-7,-2],[-48,-17],[-148,-81],[-103,-63],[-70,-60],[-70,-85],[-37,-66],[-56,-26],[-68,-12],[-117,-2],[-93,19],[-58,7],[-60,0],[-116,-21],[-151,-4],[-1,1],[-69,16],[-71,43],[-88,85],[-60,23],[-19,-2],[-84,-6],[-86,-70],[-40,-50],[-4,-71],[41,-48],[99,-93],[-41,-30],[-67,-33],[38,-49],[20,-26],[84,-81],[-127,-79],[103,-77]],[[26084,83248],[-226,40],[-423,47],[-1508,212],[-329,38],[-748,109],[-604,78],[-123,18],[-323,82],[-100,-25],[-15,2],[-173,22],[-13,1],[-153,22],[-1046,144],[-2409,815],[-36,11],[-124,40],[-96,31],[-80,26],[-106,34],[-40,13],[-77,26],[-103,33],[-37,12],[-255,81],[-35,11],[-127,41],[-57,16],[-121,33],[-15,6],[-156,53],[-130,43],[-390,123],[-68,17],[-82,26],[-32,10],[-27,9],[-242,78],[-686,215],[-295,92],[-317,104],[-139,44],[-862,275],[-779,249],[-503,161],[-145,51],[-25,8],[-1091,345]],[[10613,87170],[-161,312],[-187,281],[-301,266],[-403,328],[-250,287],[-57,73],[-36,50],[-23,45],[-27,63],[-33,101],[-14,50],[-14,54],[-10,45],[-11,74],[-5,72],[-2,44],[3,49],[12,49],[5,46],[23,78],[25,58],[22,53],[30,78],[26,39],[20,41],[42,73],[36,58],[35,49],[37,49],[29,38],[44,65],[42,59],[51,65],[117,150],[138,169],[135,148],[146,127],[149,128],[127,86],[153,91],[160,90],[153,72],[199,62],[209,56],[193,37],[100,35],[88,51],[53,66],[17,61],[3,72],[25,51],[33,35],[81,73],[80,102],[31,64],[-22,107],[-48,96],[-98,118],[-73,105],[-16,50],[3,85],[27,178],[70,184],[87,149],[26,67],[-11,130],[15,81],[130,133],[109,86],[73,90],[28,69],[7,45],[6,89],[-2,93],[21,95],[38,89],[60,104],[38,67],[52,164],[22,80],[21,380],[5,92],[-20,89],[-55,83],[-109,78],[-157,-5],[-126,15],[-144,1],[-157,19],[-129,33],[-126,48],[-121,49],[-141,56],[-127,38],[-136,33],[-134,45],[-108,83],[-218,331],[-113,188],[-13,84],[-26,96],[-66,88],[-92,74],[-94,75],[-54,82],[-35,91],[-17,90],[-4,93],[34,88],[59,81],[111,63],[121,51],[118,62],[129,80],[152,137],[60,79],[80,95],[70,77],[57,92],[15,25],[58,81],[10,13],[58,62],[129,142],[127,145],[227,256],[230,270],[107,135],[134,170],[75,86],[168,233],[156,264]],[[12482,99858],[33,0],[2777,45],[1116,18],[1198,20],[21,0],[143,3],[110,3],[12,0],[7,0],[12,0],[18,1],[16,0],[227,5],[150,3],[274,6],[225,5],[70,1],[112,-1],[180,-3],[114,-1],[393,-6],[98,-1],[301,-5],[285,-4],[513,-7],[258,-3],[83,-2],[157,-2],[345,-6],[655,-10],[28,-1],[722,-13],[188,-3],[3,0],[4,-1],[45,0],[173,-4],[344,-6],[1226,27],[278,5],[207,5],[683,15],[103,2],[458,9],[117,2],[54,1],[684,9],[142,2],[1013,13],[99,4],[622,10],[47,1],[114,1],[82,2],[156,2],[238,-3],[381,-5],[475,-6],[210,-3],[551,-4],[438,-3],[54,-1],[93,0],[1094,-9],[372,-3],[1111,-9],[181,3],[544,7],[324,-2],[482,-3],[766,-5],[150,-1],[273,-4],[539,-6],[472,-5],[61,-1],[497,-6],[12,0],[48,-1],[4,0],[2,0],[397,-4],[1010,-12],[382,-17],[412,-19],[297,-13],[174,-8],[277,-12],[741,-50],[169,-12],[15,-1],[68,-5],[22,-2],[201,-21],[325,-33],[107,-12],[140,-14],[695,-73],[78,0]],[[81237,70795],[-139,117],[-5,4],[-59,49],[-152,128],[-101,84],[-37,31],[-120,101],[-446,366],[-353,301],[-118,103],[-335,285],[-599,503],[-539,453],[-53,42],[-402,333],[-129,114],[-324,269],[-938,790],[354,131],[31,16],[33,16],[132,52],[15,6],[127,48],[338,127],[480,185],[527,408],[65,45],[318,246],[563,428],[905,692],[-229,172],[-535,457],[-135,118],[-512,472],[-1227,1006],[507,446],[74,62],[1152,948],[926,727],[688,616],[-278,129],[-1031,477],[-305,132],[-936,431],[-2,1],[-64,29],[-56,25],[-603,262],[-154,81],[387,313],[199,162],[392,302],[42,40],[95,91],[80,51],[39,25],[82,80],[76,74],[21,15],[62,40],[121,102],[223,189],[912,756],[214,176],[760,623],[-1070,481],[-821,352],[-119,54],[-256,119],[-32,26],[-9,15],[-18,8],[-33,14],[-980,416],[-955,402],[-350,126],[-112,101],[-456,174]],[[76050,89186],[-434,190],[-193,107],[-101,22],[-1017,445],[757,595],[259,269],[404,326],[9,7],[175,78],[26,12],[16,7],[129,101],[152,120],[76,60],[85,149],[315,258],[82,35],[192,86],[94,80],[60,-17],[352,274],[77,61],[26,20],[120,93],[95,74],[529,413],[891,694],[80,71],[58,64],[-129,50],[-537,244],[-306,161],[-110,58],[-53,9],[-51,8],[-76,35],[-553,250],[-87,40],[-376,172],[-456,318],[205,331],[-30,194],[196,560],[190,541],[65,186],[105,299],[77,219],[129,366],[475,1354],[149,345]],[[78191,99620],[479,10],[2076,46],[912,20],[40,1],[1182,31],[174,3],[112,1],[35,1],[43,1],[134,2],[14,0],[61,1],[3,0],[1,0],[50,1],[59,1],[52,1],[516,9],[873,11],[454,6],[1538,4],[367,-1],[90,0],[250,-1],[665,-3],[1526,17],[290,9],[377,7],[460,9],[252,4],[1366,16],[420,-2],[344,-1],[517,-2],[225,-2],[532,-3],[585,7],[41,0],[18,1],[133,1],[20,0],[913,11],[602,7],[416,5],[148,3],[479,4],[7,0],[26,0],[15,0],[7,0],[6,0],[157,2],[57,0],[61,-4],[8,-1],[1620,17],[-19,-5],[-140,-14],[-135,-30],[-151,-67],[-111,-85],[-61,-96],[-17,-98],[-4,-57],[-110,-45],[-23,-5],[-66,14],[-28,2],[-78,-2],[-87,21],[-320,82],[-128,50],[-127,68],[-72,29],[-58,16],[-140,23],[-181,-26],[-78,-16],[-123,-42],[-53,-20],[-131,-67],[-88,-23],[-76,-18],[-164,-11],[-125,-15],[-143,-24],[-121,-31],[-10,-27],[-42,-25],[-6,-4],[-7,-5],[-6,-4],[-42,-36],[-2,-1],[-6,-6],[-5,-6],[-6,-6],[-4,-6],[-18,-27],[0,-1],[-5,-6],[-2,-5],[-90,-110],[-89,-107],[-24,-27],[19,-19],[-85,-195],[-98,-76],[-3,-17],[-6,-62],[-1,-29],[189,-130],[62,-11],[6,-1],[8,-1],[32,-4],[60,-25],[8,-11],[5,-39],[15,-33],[36,-55],[32,-37],[31,-17],[86,-63],[38,-6],[8,-2],[28,-6],[35,-8],[1,0],[9,-2],[8,-3],[8,-3],[8,-4],[6,-3],[52,-28],[0,-1],[30,-17],[2,0],[7,-5],[7,-5],[7,-5],[6,-6],[5,-5],[22,-24],[1,-2],[6,-6],[4,-6],[5,-7],[3,-7],[4,-8],[6,-17],[3,-7],[2,-7],[1,-8],[1,-8],[0,-1],[2,-25],[0,-14],[-1,-8],[-2,-7],[-1,-7],[-4,-13],[35,-53],[4,-16],[37,-6],[225,-37],[0,-1],[-1,-24],[-1,-48],[0,-2],[1,-8],[0,-8],[2,-7],[2,-8],[2,-7],[46,-116],[3,-7],[1,-2],[43,-84],[1,-31],[-46,-185],[-49,-40],[-84,-45],[-11,-13],[-4,-19],[17,-18],[94,-86],[10,-23],[32,-77],[-2,-6],[-1,-1],[-2,-8],[0,-2],[-2,-11],[-38,-179],[-1,-5],[-1,-8],[0,-8],[0,-16],[-124,-19],[-23,8],[-33,21],[-39,30],[-26,2],[-8,-7],[0,-23],[9,-25],[15,-30],[28,-39],[52,-22],[105,-45],[35,-15],[10,-6],[0,-69],[1,-8],[0,-6],[5,-33],[0,-1],[1,-8],[3,-7],[0,-3],[14,-39],[1,-5],[3,-7],[4,-7],[3,-4],[45,-71],[9,-42],[-10,-16],[0,-22],[9,-23],[19,-17],[7,-5],[8,-3],[41,-16],[34,-20],[1,-2],[193,-195],[2,-2],[6,-6],[3,-2],[73,-59],[3,-3],[7,-5],[8,-4],[1,-1],[38,-21],[6,-3],[8,-4],[6,-2],[117,-44],[2,-1],[9,-3],[6,-2],[91,-91],[62,-32],[142,-74],[161,-58],[3,-1],[10,-16],[-14,-68],[-16,-78],[-20,-51],[-35,-87],[-27,-29],[-90,7],[-13,2],[-48,6],[-1,-7],[-2,-8],[-2,-8],[-2,-7],[-3,-7],[-4,-7],[-4,-7],[-5,-7],[-70,-88],[-5,-6],[-5,-6],[-6,-6],[-1,0],[-38,-32],[-6,-5],[-6,-5],[-2,-1],[-37,-24],[-291,-186],[-4,-3],[-56,-33],[-2,-1],[-7,-4],[-8,-3],[-8,-4],[-2,0],[-52,-18],[-7,-2],[-3,-1],[11,-92],[1,-13],[-127,-107],[-113,-100],[-2,-4],[-4,-7],[-5,-6],[-5,-7],[-1,0],[-42,-47],[-24,-25],[-4,-5],[-4,-4],[-66,-59],[-2,-2],[-6,-5],[-7,-5],[-5,-3],[-92,-55],[-6,-4],[-3,-1],[-7,-4],[-8,-4],[-1,-1],[-6,-2],[-139,-69],[-16,-18],[-76,-81],[-50,-69],[-11,-37],[0,-1],[-3,-7],[-15,-38],[0,-1],[-3,-7],[-4,-7],[-3,-6],[-38,-57],[0,-1],[-5,-6],[-5,-7],[-3,-2],[-59,-62],[-3,-3],[-6,-6],[-6,-5],[-5,-3],[-47,-33],[-3,-2],[-7,-5],[-8,-4],[-8,-3],[-1,-1],[-40,-17],[-8,-2],[-3,-2],[-110,-36],[-6,-2],[-8,-2],[-9,-2],[-9,-1],[-9,-1],[-3,0],[-130,-5],[-6,0],[-9,0],[-3,0],[-148,10],[-133,-40],[-84,-53],[-31,-24],[-61,-45],[-20,-28],[-38,-51],[-27,-36],[-9,-37],[55,-57],[-4,-15],[-2,-7],[-2,-8],[-1,-7],[0,-8],[0,-46],[0,-2],[-1,-2],[-63,-42],[-115,-77],[-5,-4],[-55,-41],[-7,-5],[-6,-6],[-6,-6],[-5,-6],[-5,-7],[-4,-7],[-4,-7],[-3,-7],[-2,-7],[-2,-8],[-36,-50],[-4,-15],[-6,-64],[5,-25],[6,-8],[38,-23],[8,-5],[2,-5],[8,-22],[1,-2],[58,-156],[1,-1],[0,-2],[34,-83],[3,-72],[-3,-18],[-15,-14],[-78,-55],[-3,-2],[-6,-6],[-6,-5],[-2,-1],[-51,-52],[-56,-20],[-17,-13],[-81,-116],[-1,-9],[-41,-41],[-5,-5],[-5,-6],[-5,-7],[-4,-7],[-4,-7],[0,-1],[-46,-98],[-50,-75],[-37,-22],[-54,-14],[-84,-12],[-5,-1],[-8,-1],[-7,-2],[-57,-16],[-2,0],[-8,-3],[-8,-3],[-8,-4],[-6,-3],[-70,-34],[-1,-1],[-7,-4],[-5,-3],[-32,-12],[-86,-47],[-48,-36],[-34,-25],[-36,-33],[-43,-38],[-70,-111],[-3,-16],[-5,-22],[5,-50],[4,-9],[29,-24],[2,-2],[6,-5],[5,-5],[26,-29],[17,-7],[31,-34],[5,-6],[17,-19],[2,-2],[93,-97],[32,-34],[2,-6],[0,-1],[0,-8],[0,-7],[1,-8],[2,-8],[2,-7],[2,-8],[3,-7],[1,0],[0,-10],[-29,-59],[-3,-7],[-1,-3],[-38,-107],[-46,-125],[-1,-5],[-2,-8],[-2,-7],[-1,-8],[0,-14],[5,-79],[-7,-79],[-1,-16],[-56,-73],[-43,-42],[-4,-2],[-7,-5],[-7,-4],[-6,-6],[-7,-5],[-5,-6],[-2,-3],[-22,-21],[-73,-51],[-3,-3],[-6,-5],[-7,-5],[-5,-6],[-6,-7],[-4,-6],[-5,-7],[-3,-7],[-2,-4],[-8,-18],[-28,-32],[-38,-21],[-58,-14],[-87,-17],[-131,-2],[-6,-1],[-9,0],[-9,-2],[-9,-1],[-2,-1],[-89,-22],[-53,-13],[-6,-2],[-9,-2],[-8,-3],[-8,-4],[-2,-1],[-125,-65],[-24,-5],[-114,-73],[-44,-31],[-35,-65],[11,-55],[-281,-203],[-26,-16],[-1,-1],[-7,-5],[-6,-5],[-182,-156],[-91,-53],[-1,0],[-7,-4],[-7,-5],[-6,-6],[-6,-5],[-6,-6],[-5,-6],[0,-1],[-13,-15],[-88,-24],[-29,-23],[-95,-134],[-254,-203],[-66,-21],[-36,-2],[-4,0],[-9,0],[-9,-2],[-8,-1],[-9,-3],[-3,0],[-28,-9],[-139,-27],[-1,0],[-9,0],[-9,-2],[-9,-1],[-8,-3],[-5,-1],[-161,-53],[-66,-113],[-2,-5],[-32,-55],[-69,-119],[2,0],[9,-1],[5,0],[4,0],[6,0],[9,0],[22,-32],[4,-5],[5,-6],[6,-6],[6,-5],[6,-6],[2,-1],[184,-265],[5,-7],[81,-118],[-23,-61],[-24,-63],[-8,-15],[0,-15],[2,-194],[13,-25],[36,-46],[70,-38],[34,-1],[148,59],[11,-16],[17,-28],[-8,-19],[-2,-6],[-2,-8],[-2,-7],[-6,-41],[-1,-7],[0,-8],[0,-8],[1,-8],[2,-7],[0,-1],[12,-52],[2,-7],[3,-7],[3,-8],[4,-7],[4,-6],[5,-7],[4,-5],[19,-22],[4,-5],[28,-32],[1,-1],[4,-4],[2,-2],[5,-5],[93,-81],[335,-322],[129,-124],[5,-5],[4,-3],[218,-173],[12,-16],[1,-1],[5,-7],[5,-6],[7,-5],[6,-6],[6,-4],[23,-15],[29,-24],[23,-24],[-51,-86],[0,-29],[0,-11],[13,-23],[18,-20],[28,-18],[150,-35],[2,-4],[1,-3],[3,-7],[4,-6],[5,-7],[5,-6],[6,-6],[7,-7],[22,-37],[-19,-16],[-64,-47],[1,-31],[0,-30],[3,-6],[3,-8],[2,-7],[1,-6],[11,-66],[1,-2],[0,-7],[1,-2],[1,-28],[0,-14],[-1,-8],[-1,-7],[-1,-5],[-1,-3],[-7,-24],[14,-22],[26,-39],[26,-57],[42,-91],[3,-7],[3,-7],[0,-1],[9,-56],[-54,-74],[17,-8],[65,-31],[27,-7],[7,-2],[9,-2],[8,-4],[8,-3],[8,-4],[7,-5],[7,-5],[6,-5],[3,-2],[13,-12],[4,-4],[6,-6],[5,-6],[5,-7],[4,-6],[4,-7],[3,-8],[2,-7],[1,-4],[7,-26],[8,-28],[48,-15],[44,-9],[90,-18],[97,-2],[53,-18],[48,-15],[33,-11],[30,-60],[-46,-23],[-171,-49],[-34,-22],[-10,-10],[-1,-25],[31,-45],[94,-94],[13,-23],[6,-21],[-3,-26],[-8,-28],[-15,-17],[-8,-9],[-29,-24],[-88,-34],[13,-46],[4,-16],[92,-95],[40,-36],[43,-27],[58,-23],[38,-9],[107,-5],[158,1],[37,-4],[26,-14],[2,-2],[11,-19],[5,-30],[-28,-33],[-64,-27],[46,-22],[68,-33],[3,-1],[8,-3],[6,-2],[91,-37],[2,-1],[7,-3],[31,-15],[1,0],[46,-2],[77,5],[37,15],[26,16],[17,18],[16,34],[7,19],[21,-12],[96,-51],[4,-2],[8,-4],[8,-3],[41,-15],[24,-13],[42,-35],[17,-27],[11,-17],[3,-37],[48,-64],[90,-72],[26,-29],[26,-59],[1,-7],[1,-47],[-3,-19],[-23,-40],[-16,-14],[-30,-12],[-34,-5],[-101,0],[-27,-14],[7,-11],[17,-27],[21,-20],[119,-59],[7,-4],[7,-5],[6,-3],[34,-25],[1,-2],[7,-5],[6,-5],[6,-6],[5,-7],[5,-6],[8,-12],[4,-7],[2,-3],[50,-57],[73,-64],[48,-30],[28,-11],[169,-6],[6,-8],[57,-88],[11,-17],[1,-2],[-18,-9],[47,-116],[2,-6],[31,-16],[61,-72],[-20,-48],[-11,-4],[-33,-12],[-70,11],[-84,42],[-101,68],[-66,15],[-1,-6],[-3,-7],[-1,-2],[-23,-55],[-2,-6],[-4,-7],[-3,-6],[-25,-37],[0,-1],[-5,-6],[-5,-6],[-1,-2],[-21,-23],[0,-52],[-9,-84],[-4,-24],[-3,-15],[8,-16],[46,-95],[49,-155],[33,-108],[-1,-68],[-32,-74],[-55,-42],[-108,-34],[-205,5],[-8,-47],[-3,-18],[65,-70],[183,-11],[197,47],[35,-5],[10,-11],[15,-16],[-13,-32],[-79,-51],[-2,-2],[-10,-6],[-12,-19],[-12,-19],[-49,-78],[8,-4],[3,-1],[2,-1],[19,-10],[19,1],[71,2],[2,0],[3,0],[9,0],[9,-1],[9,-1],[9,-2],[8,-2],[9,-3],[6,-3],[8,-3],[120,77],[65,23],[54,-8],[7,-1],[56,-43],[10,-42],[-28,-63],[-50,-32],[-14,-32],[8,-9],[5,-4],[87,-14],[61,13],[79,32],[66,46],[55,20],[32,-5],[20,-3],[36,-46],[-27,-64],[-56,-42],[-9,-44],[10,-9],[37,-32],[63,-5],[100,-5],[-9,-22],[-56,-149],[-51,-54],[-91,-64],[-73,-31],[-1,0],[-36,-16],[-7,-3],[-8,-4],[-7,-5],[-2,-1],[-131,-89],[-60,-21],[-59,-8],[-60,10],[-150,103],[-5,0],[-88,-3],[-1,-2],[49,-125],[5,-8],[1,-3],[4,-7],[3,-7],[3,-7],[2,-8],[1,-7],[1,-8],[6,-11],[106,-65],[-2,-3],[-1,-2],[-4,-7],[-3,-7],[-1,-2],[-48,-130],[-25,-24],[-84,-41],[-67,8],[-13,-7],[-176,-100],[6,-23],[-4,-2],[-8,-4],[-2,-1],[-58,-23],[-146,-27],[-428,-42],[-3,0],[-2,-1],[-126,-16],[-29,-3],[-129,25],[-228,-12],[-8,0],[-92,0],[-427,-32],[-25,-3],[-13,-4],[-107,-61],[-168,-236],[-17,-24],[11,-6],[270,-141],[5,-3],[4,-3],[222,-139],[130,-35],[2,-1],[5,-1],[106,-35],[4,-1],[8,-4],[8,-3],[7,-4],[8,-5],[7,-5],[6,-5],[6,-6],[6,-6],[5,-6],[5,-6],[4,-7],[4,-7],[3,-7],[3,-8],[2,-7],[1,-8],[1,-4],[0,-6],[2,-12],[0,-3],[0,-8],[53,-32],[74,-81],[0,-1],[4,-7],[3,-8],[4,-6],[5,-7],[5,-6],[6,-6],[6,-6],[7,-5],[7,-5],[7,-4],[8,-4],[8,-4],[42,-18],[84,-41],[62,-51],[2,-2],[1,-5],[3,-7],[0,-2],[-2,-35],[-76,-126],[-2,-2],[-3,-8],[-3,-6],[-20,-50],[-1,-1],[-1,-2],[-15,-41],[-1,-5],[-3,-8],[-1,-7],[-1,-8],[0,-8],[0,-8],[-87,-102],[-3,-4],[-5,-7],[-112,-89],[-161,-116],[-142,-51],[-22,-3],[-17,-2],[-57,-2],[-227,31],[-12,-5],[-10,-5],[-12,-16],[0,-6],[14,-107],[3,-29],[65,-44],[155,-71],[103,-62],[55,-65],[4,-35],[40,-80],[70,-74],[86,-59],[9,-4],[47,-16],[101,-57],[56,-31],[43,-53],[-50,-71],[-81,-38],[-35,-3],[-13,-1],[-10,2],[-103,17],[-86,36],[-22,6],[-45,11],[-33,-12],[-9,-21],[25,-92],[-2,-7],[-17,-39],[-3,-6],[-2,0],[-199,-4],[-24,0],[-35,56],[-83,19],[-14,-48],[-1,-2],[-2,-8],[-3,-7],[-3,-4],[-4,-8],[0,-1],[-30,-118],[-31,-118],[-1,-2],[-36,-63],[-4,-6],[-5,-7],[-5,-6],[-6,-6],[-4,-4],[-29,-26],[-90,-156],[-28,-21],[-27,-21],[-5,-2],[-68,-24],[-4,-1],[-24,-4],[-33,-5],[-171,-26],[-168,-25],[-59,-9],[-122,19],[-29,9],[-250,-31],[-42,-31],[-5,-3],[-7,-4],[-8,-5],[-6,-2],[-35,-16],[-2,-1],[-8,-3],[-1,0],[-31,-11],[-108,-175],[-18,-9],[-54,-29],[-7,-1],[-9,-2],[-5,-1],[-360,-95],[-3,-1],[-6,-2],[-70,-24],[-3,-1],[-33,8],[-31,16],[-57,61],[-12,36],[20,70],[45,38],[-21,21],[-109,-64],[-1,-1],[-4,-2],[-352,-187],[-3,-2],[-45,-22],[-49,-25],[-6,-9],[-20,-107],[-1,-4],[-2,-7],[-3,-8],[-3,-7],[-4,-7],[-1,-2],[79,-40],[101,-52],[148,-80],[-64,-51],[-95,-64],[-176,-105],[-142,48],[-6,1],[-8,2],[-9,2],[-9,2],[-9,0],[-9,1],[-9,-1],[-9,0],[-6,-1],[-92,-15],[-2,0],[-9,-2],[-9,-2],[-8,-3],[-8,-3],[-8,-4],[-8,-4],[-7,-4],[-7,-5],[-7,-5],[-6,-6],[-2,-3],[-142,-147],[-3,-3],[-5,-7],[-3,-5],[-15,-21],[-1,-1],[-4,-7],[-4,-7],[-3,-7],[-3,-7],[-19,-61],[0,-1],[-2,-7],[-2,-8],[-1,-7],[0,-1],[-17,-244],[-54,-153],[-20,-38],[-124,-122],[-128,-100],[-125,-37],[-62,-11],[-137,-13],[-78,-18],[-99,-49],[-34,-17],[-72,-5],[-55,-19],[-33,-35],[25,-43],[0,-1],[-12,-28],[-1,-39],[7,-42],[1,-7],[-98,-99],[-37,-24],[-101,-67],[-20,-42],[-32,-17],[-90,-46],[-140,-68],[-49,-23],[-3,-2],[-137,-57],[-86,-36],[-39,-34],[-29,-14],[-8,-4],[-235,-101],[-16,-2],[-1,0],[-9,-1],[-9,-2],[-8,-2],[-2,-1],[-423,-129],[-4,-1],[-58,-20],[-3,0],[-8,-4],[-8,-3],[-7,-4],[-3,-2],[-28,-17],[-5,-3],[-7,-5],[-6,-5],[-7,-6],[-5,-6],[-6,-6],[-4,-7],[-1,-1],[-68,-26],[-47,-19],[-78,5],[-49,7],[-1,0],[-107,9],[-1,0],[-1,0],[-62,-4],[-4,0],[-375,-11],[-14,1],[-9,0],[-1,1],[-73,8],[-8,2],[-2,0],[-57,11],[-206,-22],[-65,-24],[-61,-44],[-34,-25],[-13,-18],[-29,-38],[-27,-64],[-80,-123],[-27,-19],[-96,-30],[-58,-7],[-63,4],[-121,20],[-48,19],[-54,25],[-27,29],[-69,37],[-382,113],[-20,-7],[-170,-24],[-111,-15],[-204,-81],[-61,-27],[-187,-94],[-154,-60],[-90,-3],[-23,-1],[-135,26],[-96,0],[-226,16],[-100,-3],[-59,-12],[-77,-30],[-60,-33],[-135,-84],[-73,-48],[-51,-24],[-54,-31],[-55,-37],[-58,-65],[0,-66],[100,-95],[70,-75],[13,-54],[-22,-42],[-58,-27],[-58,-11],[-212,20],[-92,0],[-230,-47],[-64,-38],[-17,-43],[-8,-84],[-41,-98],[2,-75],[40,-34],[98,-56],[38,-44],[-13,-44],[-49,-43],[-47,-21],[-90,-61],[2,-57],[18,-57],[23,-47],[29,-64],[94,-162],[25,-59],[0,-52],[-29,-51],[-73,-44],[-79,-27],[-102,-29],[-77,-19],[-89,1],[-98,-2],[-53,-10],[-67,-14],[-72,-22],[-100,-31],[-79,-13],[-97,-16],[-86,-25],[-113,-53],[-54,-27]],[[10613,87170],[-26,-600],[11,-63],[24,-75],[37,-688],[-6,-85],[-213,-480],[-34,-75],[-21,-77],[-6,-63],[13,-986],[-28,-49],[-113,-86],[-104,-48],[-93,-28],[-98,-26],[-395,-68],[-80,-34],[-59,-29],[-46,-49],[-29,-48],[-35,-72],[-20,-58],[-31,-160],[-26,-43],[-8,-13],[-28,-46],[-16,-52],[9,-92],[13,-79],[108,-749],[6,-46],[-33,-57],[-69,-82],[-47,-64],[-12,-17],[-44,-63],[-77,-76],[-54,-46],[-41,-49],[-65,-50],[-67,-65],[-50,-43],[-80,-50],[-41,-29],[-96,-56],[-63,-32],[-79,-43],[-71,-35],[-98,-48],[-75,-33],[-75,-32],[-126,-53],[-126,-47],[-132,-45],[-136,-45],[-129,-44],[-118,-38],[-111,-29],[-215,-50],[-106,-24],[-569,-138],[-62,-11],[-609,-108],[-1520,-268],[-282,-15]],[[3841,80218],[-62,38],[-9,6],[-181,95],[-30,43],[-12,18],[-1,1],[-47,68],[-56,69],[-117,85],[-92,64],[-57,59],[-5,86],[-5,91],[-15,66],[-7,35],[-66,83],[-92,67],[-20,14],[-47,44],[-43,40],[-42,71],[21,32],[43,52],[92,46],[33,38],[84,96],[10,85],[-7,14],[-64,122],[-5,9],[-3,3],[-102,81],[-70,119],[-42,115],[-9,92],[-1,17],[-77,77],[-125,82],[-130,62],[-39,57],[-12,18],[-4,37],[6,73],[110,115],[33,68],[27,138],[31,170],[1,3],[-1,2],[-52,119],[-15,69],[62,58],[191,83],[54,21],[126,50],[-5,35],[-17,12],[-36,27],[-1,0],[-39,28],[-124,117],[-67,40],[25,40],[52,21],[20,8],[72,32],[54,45],[51,51],[39,42],[15,74],[-48,58],[-2,22],[-4,47],[30,19],[65,41],[51,50],[27,47],[17,29],[39,38],[59,29],[9,5],[115,-8],[57,22],[2,112],[-37,44],[-76,49],[-35,46],[45,85],[27,51],[10,80],[-31,64],[-4,43],[-2,31],[4,7],[57,26],[10,5],[146,20],[-6,141],[-62,61],[-53,44],[-2,4],[-9,23],[23,35],[76,34],[89,39],[43,27],[27,24],[10,27],[33,67],[49,57],[57,67],[14,26],[17,67],[-40,33],[-85,11],[-63,12],[-5,1],[-36,75],[5,44],[14,121],[7,56],[-18,170],[-2,31],[21,116],[1,44],[-2,111],[-4,164],[-8,59],[21,251],[3,128],[1,51],[0,199],[-8,82],[-13,78],[-12,138],[2,37],[2,14],[30,67],[38,56],[45,59],[56,48],[64,57],[111,75],[48,40],[55,64],[48,40],[20,24],[56,67],[87,159],[10,19],[16,40],[23,67],[32,78],[33,50],[51,78],[26,54],[38,86],[16,33],[13,58],[31,54],[65,76],[43,42],[73,52],[72,38],[75,31],[65,39],[111,69],[52,37],[42,44],[50,61],[26,49],[11,49],[17,112],[0,10],[1,9],[-27,336],[-1,6],[-10,64],[-11,67],[-19,87],[-15,51],[-29,44],[-9,9],[-138,72],[-162,105],[-96,113],[-56,51],[-35,26],[-62,31],[-58,30],[-83,45],[-51,35],[-68,59],[-53,62],[-47,56],[-27,19],[-82,46],[-121,61],[-23,7],[-80,28],[-15,6],[-74,32],[-103,32],[-118,45],[-101,58],[-95,59],[-69,56],[-87,121],[-2,2],[-77,91],[-45,30],[-26,13],[-36,9],[-68,16],[-32,17],[-16,21],[-36,77],[-8,33],[18,103],[-1,26],[-8,13],[-64,34],[-22,18],[32,48],[10,23],[1,2],[2,38],[0,3],[-42,50],[11,56],[32,28],[28,44],[27,42],[-8,43],[-16,89],[2,38],[14,28],[79,26],[8,7],[33,28],[50,76],[11,17],[25,8],[118,38],[73,47],[63,77],[61,75],[13,35],[133,357],[147,503],[79,243],[80,212],[2,3],[205,312],[93,91],[37,36],[141,90],[146,80],[22,8],[163,61],[175,85],[74,77],[32,74],[12,54],[9,117],[0,91],[-37,394],[-14,338],[-4,121],[11,141],[15,191],[61,403],[-20,182],[-21,46],[-30,24],[-45,37],[-8,5],[-175,110],[-57,34],[-136,106],[-126,132],[-112,154],[-14,20],[-9,15],[-8,12],[-63,147],[-22,115],[18,95],[37,60],[130,127],[26,48],[45,94],[12,33],[57,90],[21,33],[119,250],[24,49],[84,173],[153,2],[243,4],[9,0],[323,5],[143,3],[284,4],[170,3],[446,8],[10,0],[154,3],[87,1],[347,6],[1,0],[12,0],[131,2],[264,5],[310,5],[76,1],[30,0],[37,1],[356,6],[111,1],[46,1],[933,12],[47,1],[200,2],[107,2],[51,1],[56,0],[31,1],[140,1],[615,8],[486,8],[165,3],[45,1],[17,0],[106,2],[9,0],[862,15],[10,0],[63,1]],[[76050,89186],[-185,-161],[-340,-279],[-435,-387],[-55,-20],[-531,-444],[-154,-129],[-59,-49],[-76,-71],[-57,-51],[-189,-147],[-400,-350],[-49,-26],[-267,-235],[-199,-189],[-76,-83],[-108,-116],[-123,-74],[-87,-41],[-2,-1],[-53,-48],[-147,-130],[-92,-35],[-625,287],[-586,250],[-141,60],[-1126,480],[-1136,486],[-390,162],[-1174,494],[311,-698],[335,-721],[22,-62],[27,-54],[43,-96],[244,-536],[16,-31],[12,-23],[27,-55],[8,-18],[44,-95],[10,-23],[202,-467],[-1040,307],[-66,20],[-705,194],[-191,57],[-227,65],[-463,131],[-140,53],[-53,20],[-46,17],[-28,-40],[-59,-74],[-90,-110],[-116,-147],[-221,-273],[-109,-138],[-203,-246],[-56,-67],[-28,-30],[-1,0],[-36,-38],[-223,-266],[-203,-252],[-119,-149],[-314,-376],[-112,-136],[-201,-246],[-111,-134],[-133,-166],[-75,-88],[-179,-206],[-87,-97],[-10,-13],[-113,-134],[-31,-42],[-209,-290],[-91,-127],[-14,-17],[-53,-68],[-408,-453],[-5,-4],[-77,-58],[-89,-109],[-162,-200],[-70,-88],[-523,-590],[-52,-60],[-12,-14],[-202,-248],[-393,-443],[-244,-292],[-187,-223],[-99,-144],[-77,-59],[-83,-83],[-102,37],[-67,40],[-15,9],[-79,11],[-56,19],[-486,165],[-109,38],[-56,20],[-14,4],[-874,268],[-150,50],[-487,154],[-529,176],[-185,57],[-1045,321],[-252,83],[-125,41],[-18,6],[-393,123],[-68,22],[-56,17],[0,1],[-511,163]],[[53973,81111],[337,356],[-563,173],[-456,140],[-1135,356],[-872,274],[-474,154],[-171,55],[-152,48],[-26,9],[-60,11],[-618,200],[-149,41],[-230,74],[-52,19],[-64,12],[-190,62],[-434,138],[-137,47],[417,514],[1,1],[79,98],[4,5],[71,88],[4,4],[1325,1632],[1259,1550],[-154,81],[-239,63],[-426,134],[-867,264],[-539,168],[-124,39],[-16,5],[-606,195],[-493,160],[-280,74],[-320,94],[-897,297],[-74,10],[-214,82],[-18,4],[-209,51],[-709,232],[-1787,587],[-67,22]],[[44859,99621],[758,-7],[274,-2],[133,-1],[1422,26],[738,13],[70,1],[146,2],[259,4],[1451,-12],[429,-13],[326,-11],[766,-24],[220,-7],[7,0],[143,-5],[49,-1],[80,-3],[212,-7],[637,-20],[300,-9],[193,2],[263,3],[208,-3],[83,-1],[237,-3],[1037,-30],[238,-7],[483,-14],[782,-39],[221,-14],[116,-2],[377,12],[568,12],[511,-4],[120,-1],[326,-1],[218,0],[232,3],[240,3],[120,1],[85,1],[62,1],[4,0],[821,14],[402,7],[84,1],[567,9],[373,7],[18,0],[16,0],[40,1],[111,1],[134,2],[423,5],[605,8],[94,1],[79,1],[286,4],[101,1],[36,0],[117,1],[115,1],[866,6],[17,0],[259,-5],[129,-1],[64,0],[17,0],[365,-4],[154,-1],[235,-2],[72,0],[184,-1],[288,-2],[290,-2],[1,0],[6,0],[103,1],[112,1],[316,2],[25,1],[1,0],[8,0],[2,0],[170,1],[32,1],[123,1],[247,2],[5,0],[633,6],[353,4],[315,3],[89,1],[316,3],[528,8],[195,3],[405,6],[362,6],[93,2],[311,7],[362,6],[141,3],[359,6],[1675,29],[602,10],[477,8],[834,-12],[429,-11],[350,-10],[140,2],[323,5],[383,9]],[[53973,81111],[-663,-744],[-109,-141],[-240,-305],[-49,-55],[-127,-144],[-188,-210],[-494,-525],[-102,-111],[-99,-106],[-204,-223],[-18,-20],[-47,-51],[-34,-38],[-3,-4],[-364,-409],[-54,-62],[-227,-260]],[[50951,77703],[-231,-269],[-198,-256],[-500,-576],[-484,-555],[-414,-599],[-108,-132],[-65,-73],[-42,-61],[-72,-80],[-62,-77],[-454,-556],[-229,-276],[-668,145],[-197,99],[-162,74],[-273,133],[-740,331],[-194,94],[-451,213],[-2,1],[-115,44],[-35,16],[-540,249],[-323,151],[-1691,790],[-61,-70],[-125,-155],[-108,-128],[-76,-92],[-84,-100],[-116,-144],[-124,-146],[-50,-60],[-64,-79],[-135,-163],[-119,-144],[-127,-152],[-116,-139],[-104,-138],[-1514,-1831],[-1094,387],[-98,32],[-190,70],[-142,52],[-371,129],[-202,70],[-1225,427],[-13,4],[-213,54],[-267,110],[-493,177],[-17,5],[-204,59],[-315,94],[-815,268],[-1987,397]],[[32132,75327],[-1708,329],[1557,1783],[223,267],[-1177,382],[-203,66],[1087,1376],[-1002,190],[-1487,1197],[-259,217],[-124,114],[-60,43],[-12,9],[-363,302],[-118,107],[-258,224],[-197,177],[-173,154],[-193,168],[-185,161],[-207,180],[-107,95],[-56,55],[-339,229],[-281,44],[-9,2],[-397,50]],[[81237,70795],[-73,-33],[-52,-28],[-92,-56],[-86,-37],[-53,-10],[-49,-15],[-54,-16],[-66,-25],[-18,-7],[-74,-27],[-22,-8],[-99,-36],[-53,-12],[-28,-6],[-68,-4],[-97,-5],[-102,-4],[-104,-6],[-96,-17],[-55,-12],[-75,-25],[-79,-32],[-76,-30],[-69,-22],[-64,-17],[-67,-104],[-53,6],[-88,11],[-119,90],[-129,88],[-195,75],[-205,99],[-126,19],[-77,22],[-186,66],[-16,7],[-207,82],[-303,50],[-84,2],[-67,-17],[-40,-7],[-236,-19],[-92,-28],[-89,-28],[-57,-32],[-138,-79],[-108,-62],[-51,-32],[-116,-77],[-42,-79],[-120,-43],[-185,-44],[-145,-17],[-54,3],[-199,32],[-156,47],[-84,12],[-255,36],[-50,-9],[-85,-26],[-12,-2],[-156,-22],[-117,-5],[-193,-9],[-228,-6],[-43,-2],[-31,3],[-86,2],[-49,1],[-46,6],[-188,26],[-63,0],[-56,-7],[-91,3],[-151,-44],[-6,-11],[-40,-15],[-37,-84],[-52,-120],[-70,-49],[-61,-23],[-172,-44],[-62,-41],[-293,-88],[-28,-5],[-51,-9],[-11,-2],[-56,-16],[-62,-21],[-101,-24],[-63,-21],[-163,-61],[-111,-24],[-121,-16],[-70,-8],[-140,-18],[-51,19],[-94,16],[-192,38],[-123,14],[-53,-2],[-140,-66],[-21,-10],[-1,0],[-35,-10],[-8,-26],[-16,-12],[-21,-61],[-13,-35],[33,-45],[5,-4],[37,-21],[30,-48],[2,-72],[-26,-46],[-15,-57],[10,-173],[-11,-128],[-47,-82],[-72,-60],[-40,-27],[-34,-55],[-35,-35],[-101,-59],[-56,-22],[-64,-11],[-103,-6],[-77,-41],[-17,-63],[-53,-53],[-97,-25],[-64,-10],[-105,-13],[-13,-4],[-56,-10],[-14,-12],[-5,-2],[-39,-12],[-49,-45],[-54,-46],[-61,-32],[-82,-40],[-54,-64],[-11,-12],[-108,-120],[-159,-197],[-53,-94],[-66,-180],[85,-105],[18,0],[73,-17],[106,53],[85,26],[96,-31],[-38,-40],[26,-62],[-11,-88],[-22,18],[-43,-17],[-33,-109],[17,-49],[-1,0],[-42,-37],[70,-31],[3,-95],[17,-69],[38,-44],[50,-59],[58,-78],[70,-98],[20,-52],[58,-66],[151,-89],[71,-70],[31,-54],[27,-36],[28,-75],[1,-44],[-37,-59],[-80,-91],[-23,-65],[-74,-162],[-21,-46],[-37,-74],[-17,-47],[-21,-88],[5,-58],[29,-104],[34,-64],[-29,-86],[-87,-140],[-48,-43],[-54,-23],[-31,-8],[-29,-5],[-3,-2],[-38,-10],[-57,-78],[78,-78],[-13,-53],[37,-32],[-6,-44],[-6,-44],[-35,-85],[-35,-46],[-44,-46],[-76,-41],[-100,-44],[-29,-49],[-1,-54],[-31,-69],[-10,-66],[-17,-49],[-18,-48],[9,-48],[42,-29],[41,-32],[65,-54],[84,-76],[90,-99],[31,-37],[74,-103],[35,-88],[26,-74],[79,-114],[25,-44],[23,-98],[38,-85],[70,-63],[54,-22],[71,-36],[28,-40],[14,-50],[39,-55],[74,-11],[146,14],[44,-23],[-15,-45],[-72,-95],[21,-14],[68,-29],[48,-14],[41,7],[21,11],[24,-1],[21,-14],[1,-19],[-17,-13],[-13,-13]],[[70952,62407],[-59,16],[-52,14],[-13,4],[-126,28],[-48,13],[-33,7],[-23,5],[-62,13],[-144,34],[-56,13],[-231,55],[-79,18],[-352,84],[-54,13],[-59,15],[-164,40],[-635,150],[-28,6],[-71,15],[-112,25],[-151,36],[-49,12],[-52,15],[-275,65],[-112,27],[-51,12],[-74,14],[-154,37],[-209,52],[-26,6],[-28,7],[-295,70],[-79,18],[-224,53],[-82,27],[-461,111],[-238,60],[-74,19],[-64,15],[-532,127],[-755,182],[-112,25],[-97,23],[-87,1],[-122,5],[-51,0],[-391,-23],[-206,-12],[-212,-12],[-69,-7],[-315,-16],[-263,-12],[-282,-13],[-68,-12],[-461,-22],[-55,-2],[-421,-24],[-391,-24],[-51,-3],[-580,-21],[-370,-25],[-736,-50],[-465,-32],[-126,-9],[-773,-59],[-5,0],[-339,-17],[-77,34],[-320,86],[-188,50],[-183,50],[-76,20],[-149,42],[-924,262],[-1301,370]],[[54300,64513],[273,308],[286,322],[1075,1213],[147,166],[180,207],[136,156],[546,620],[-56,934],[-1,36],[-2,27],[-6,132],[469,338],[121,99],[540,465],[168,117],[114,79],[299,181],[94,68],[350,284],[198,155],[83,50],[103,143],[602,689],[73,68],[240,273],[80,110],[106,125],[85,110],[206,227],[547,457],[254,212],[-96,130],[40,55],[1,1],[94,125],[33,22],[25,17],[197,232],[40,47],[35,41],[-88,46],[-40,33],[-51,28],[-98,66],[-13,44],[49,32],[58,5],[-26,32],[-3,4],[40,29],[0,1],[24,38],[-42,59],[1,45],[-27,12],[-19,9],[-5,1],[-58,18],[-48,-28],[-19,-14],[-43,-35],[-59,-41],[-52,-27],[-50,10],[-2,0],[-43,39],[10,41],[3,11],[47,23],[47,8],[8,1],[51,15],[55,25],[60,22],[-6,4],[-7,37],[-68,24],[-1,0],[-209,73],[-33,7],[-36,8],[-11,11],[-305,75],[-11,36],[-181,47],[-467,172],[-125,42],[-175,57],[-381,130],[-273,91],[-421,140],[-281,93],[-480,156],[-446,149],[-1039,344],[-239,82],[-566,186],[-205,67],[-353,118],[-139,46],[-401,133],[-669,222],[-144,48],[-341,108],[-48,16],[-501,166],[-561,185],[-789,260],[-374,124],[-409,140]],[[32132,75327],[-518,-631],[-932,-1135],[-33,-40],[-250,-305],[1760,-563],[-554,-673],[-406,-495],[-43,-64],[-12,-15],[-63,-72],[-6,-19],[-4,-14],[-11,-14],[-5,5],[-37,20],[-13,5],[-20,7],[-21,9],[-19,9],[-17,-2],[-16,-2],[-25,-13],[-35,-13],[-56,-21],[-55,-6],[-57,7],[-49,12],[-70,25],[-73,18],[-90,13],[-61,7],[-66,21],[-50,16],[-87,23],[-66,-2],[-50,5],[-61,26],[-70,12],[-91,15],[-60,33],[-34,6],[-19,4],[-28,6],[-43,6],[-53,27],[-6,-6],[-53,-66],[-27,-35],[-394,-507],[-483,-636],[-96,-129],[-104,-128],[-32,-44],[-155,-199],[-64,-81],[-216,-278],[-387,-498],[-50,-63],[-110,-143],[-226,-291],[-80,-103],[-144,-186],[-206,-266],[307,-93],[476,-146],[-245,-438],[-195,-356],[-203,-360],[-684,-1211],[-353,-586],[-8,-14],[-82,-151],[-78,-133],[-749,-1272],[-256,-502]],[[24660,62644],[-90,371],[-28,126],[-12,43],[-12,57],[-94,425],[0,2],[-11,47],[-16,78],[-11,48],[-45,213],[-20,92],[-19,90],[-26,119],[-26,122],[-11,50],[-32,148],[-21,102],[-53,246],[-7,34],[-20,89],[-23,110],[-50,232],[-33,151],[-14,67],[-11,58],[-45,228],[-23,121],[-8,39],[-24,123],[-8,43],[-18,193],[-285,1395],[-149,773],[-1180,35],[-531,69],[-71,12],[-90,14],[-88,15],[-258,42],[14,-58],[12,-46],[23,-97],[28,-118],[31,-129],[24,-94],[10,-44],[12,-54],[42,-164],[-131,-11],[-75,-6],[-132,-12],[-128,-12],[-177,-15],[-135,-11],[-313,-27],[-208,-18],[-326,-28],[-204,-18],[-140,-12],[-70,-6],[-208,-19],[-208,-18],[-106,-10],[-74,-6],[-13,50],[-33,124],[-22,-3],[-125,-18],[-110,-15],[-73,-10],[-74,-10],[-155,-21],[-103,-13],[-58,-8],[-152,-19],[-185,-22],[-74,-9],[-149,-19],[-98,-11],[-246,-30],[-108,-13],[-65,-8],[-66,-8],[-83,-9],[-96,-11],[-77,-10],[-110,-13],[-79,-8],[-113,-13],[-107,-12],[-205,-24],[-182,-20],[-89,-11],[-102,-11],[-131,-15],[-126,-14],[-165,-19],[-255,-30],[-63,-9],[-311,-36],[-100,-8],[-138,-9],[-163,-16],[-138,-13],[-82,-12],[-257,-32],[-156,-19],[-93,-12],[-83,-7],[-156,-19],[-130,-15],[-130,-16],[-137,-16],[-110,-13],[-74,-9],[-368,-44],[-98,-8],[-25,-2],[-130,-10],[-73,-6],[-112,-9],[-266,-21],[-83,-7],[-173,-14],[-146,-12],[-140,-11],[-161,-13],[-57,-3],[-59,-5],[-51,-4],[-57,-5],[-101,-9],[-27,-2],[-514,-41],[-102,-8],[-282,-23],[-259,-17],[-71,-4],[-62,-4],[-53,-4],[-164,-11],[-194,-13],[-108,-8],[-167,-11],[-39,3],[-2139,173]],[[6327,67136],[27,56],[92,388],[-65,252],[-225,325],[-6,9],[-172,357],[-60,142],[-45,105],[-64,237],[-36,133],[-16,368],[-1,35],[36,265],[-9,372],[-58,205],[-93,211],[-19,44],[-148,238],[-222,308],[-16,331],[69,342],[122,121],[41,41],[119,73],[136,81],[223,138],[199,144],[103,111],[75,151],[57,119],[33,138],[64,207],[47,83],[129,203],[122,186],[177,275],[111,160],[148,217],[41,145],[34,118],[34,135],[10,44],[3,60],[-2,44],[-9,57],[-20,50],[-23,54],[-20,42],[-26,47],[-30,48],[-32,54],[-39,54],[-28,40],[-29,36],[-13,17],[-25,33],[-22,45],[-6,21],[-9,35],[8,44],[7,34],[50,255],[10,44],[-2,51],[5,94],[1,49],[-3,53],[-8,50],[-12,49],[-3,45],[-17,60],[-11,58],[-9,45],[-39,83],[-98,147],[-42,62],[-35,55],[-16,50],[-10,52],[-8,78],[-5,53],[0,49],[-3,50],[-9,50],[-14,69],[-17,60],[-16,62],[-32,94],[-26,48],[-40,43],[-33,36],[-40,36],[-29,28],[-14,14],[-39,32],[-37,35],[-42,36],[-39,32],[-48,34],[-48,34],[-48,31],[-77,49],[-46,21],[-44,26],[-39,35],[-36,40],[-15,46],[-8,46],[13,123],[3,24],[-7,44],[-24,47],[-8,47],[6,68],[-12,46],[-34,43],[-40,33],[-57,26],[-71,16],[-20,4],[-61,13],[-50,13],[-48,32],[-32,41],[-25,39],[-9,62],[-1,10],[-1,44],[-14,50],[-26,48],[-37,41],[-69,61],[-47,34],[-56,52],[-48,37],[-47,38],[-39,28],[-17,18],[-22,24],[-6,56],[11,50],[7,36],[-5,17],[0,15],[-21,47],[-107,63],[-68,68],[-14,6],[-363,163],[-85,28],[-107,20],[-130,29],[-54,69],[-51,65],[-108,120],[-73,27]],[[54300,64513],[-313,79],[-49,15],[-242,68],[-537,152],[-329,94],[-89,31],[-240,69],[-87,24],[-389,111],[-56,16],[-278,80],[-101,-347],[-18,-59],[-22,-117],[-8,-47],[-69,-221],[-16,-55],[-129,-429],[-37,-125],[-35,-113],[-48,-160],[-12,-43],[-29,-99],[-81,-269],[-51,-163],[-44,-148],[-52,-177],[-35,-119],[-80,-251],[-1,-6],[-13,-67],[-17,-48],[-12,-33],[-17,-52],[-13,-44],[-122,-428],[-69,-235],[-51,-177],[-71,23],[-284,82],[-304,88],[-203,57],[-146,34],[-306,76],[-191,46],[-87,33],[-176,48],[-166,34],[-231,49],[-317,79],[-62,20],[-322,85],[-272,62],[-113,26],[-545,130],[-67,16],[-107,26],[-19,5],[-136,36],[-86,21],[-296,72],[-253,60],[-106,26],[-546,132],[-87,22],[-424,105],[-44,-80],[-56,-110],[-48,-95],[-71,-118],[-171,40],[-114,26],[-276,61],[-249,76],[-162,50],[-10,2],[-26,6],[-219,15],[-59,15],[-26,-41],[-84,-174],[-217,-445],[-47,-100],[-238,-350],[-227,-324],[-90,-138],[-106,-158],[-40,-60],[-51,-75],[-80,-116],[-2,-4],[-187,-334],[-29,-48],[-48,-81],[-122,-201],[-194,-331],[-124,-212],[-99,63],[-333,40],[-254,-347],[-91,-124],[-8,-87],[-19,-23],[-24,-31],[-36,-35],[-165,-168],[-107,-147],[-58,-80],[-33,-44],[-37,-51],[-271,-371],[-361,-493],[-217,-297],[-37,-54],[-41,-56],[-46,-60],[-87,-146],[-43,-73],[-180,-249],[-326,-398],[-63,3],[-1419,346],[-498,148],[-58,17],[-194,24],[-74,15],[-652,159]],[[35338,56890],[-597,153],[-60,15],[-65,16],[-2,0],[-105,27],[-29,7],[-68,17],[-160,39],[-95,24],[-89,22],[-510,126],[-703,175],[-674,167],[-531,132],[-238,60],[-120,29],[-84,21],[-312,78],[-55,14],[-147,36],[-70,18],[-149,37],[-192,48],[-280,69],[-87,22],[-100,23],[-71,16],[-3,0],[-99,23],[-50,11],[-79,19],[-94,22],[-40,10],[-224,53],[-139,32],[-499,118],[-56,14],[-93,21],[-149,36],[-86,20],[-153,36],[-515,122],[-362,-27],[-219,-17],[-96,-8],[-332,-26],[-84,328],[-32,125],[-15,57],[-18,75],[-32,127],[-25,98],[-36,145],[-17,76],[-9,57],[-11,64],[-17,102],[-8,45],[-8,52],[-40,132],[-40,125],[-39,119],[-16,50],[-19,53],[-33,161],[-18,93],[-17,85],[-40,246],[-182,744],[-82,427],[-38,322],[-11,88],[-910,-92]],[[35338,56890],[-53,-37],[-106,-135],[-106,-137],[-280,-357],[-35,-46],[-18,-22],[-66,-78],[-17,-21],[-38,-43],[-55,-66],[-188,-218],[-33,-38],[-60,-70],[-20,-24],[-90,-105],[-191,-222],[-57,-66],[-75,-88],[-129,-150],[-53,-62],[-253,-295],[-50,-58],[-232,-266],[-138,-158],[-39,-44],[-130,-149]],[[32826,53935],[-282,-323],[-222,-254],[-33,-37],[-81,-93],[-175,-220],[-155,-198],[-53,12],[-257,60],[-95,-109],[-65,-86],[-35,-46],[-41,-55],[-33,-43],[-60,-80],[-29,-38],[-128,-170],[-51,-67],[-80,-108],[-159,-212],[-33,-44],[-35,-48],[-6,-8],[-220,-294],[-57,-76],[-448,-606],[-142,-192],[-32,-42],[-121,-161],[-28,-38],[-159,-215],[-64,-86],[-75,-102],[-40,-54],[-48,-65],[-53,-71],[-160,-207],[-451,105],[8,135],[-40,515],[-6,76],[-8,126],[-10,77],[-65,761],[-357,-116],[-171,-56],[-280,-91],[-215,-70],[-81,-27],[-52,-17],[-124,-40],[-52,-17],[-180,-53],[-239,-70],[-69,-21],[-123,-36],[-370,-109],[-101,-30],[-178,-52],[-53,-18],[-185,-60],[-48,-16],[-27,-9],[-28,-9],[-142,-46],[-268,-88],[-153,-50],[-48,-14],[-227,-67],[-76,-23],[-38,-13],[-71,17],[-446,110],[-271,68],[-586,142],[-1,-815],[369,121],[54,-140],[385,-1006],[9,-21],[175,-388],[90,-199]],[[24321,48025],[-411,-131],[-229,-83],[-184,-57],[-296,-101],[-25,-8],[-24,-9],[-105,-35],[-147,-50],[-68,-23],[-63,-24],[-220,-64],[-100,-30],[-387,-118],[-378,-116],[-317,-97],[-17,54],[-22,72],[-34,107],[-21,71],[-13,43],[-22,74],[-18,59],[-29,89],[-23,75],[-18,58],[-17,59],[-22,68],[-19,67],[-23,73],[-31,105],[-16,42],[-28,96],[-119,398],[-4,17],[-5,0],[-14,-2],[-27,-1],[-52,-2],[-30,-6],[-31,-11],[-19,-7],[-11,0],[-17,4],[-4,9],[-57,129],[101,10],[2,22],[5,55],[-242,-5],[-412,-10],[-10,0],[-441,-11],[-282,-9],[-7,0],[-1043,-32],[-340,-10],[-328,-10],[-107,-3],[-56,-2],[-122,-4],[-240,-7],[-139,-4],[-99,-2],[-22,-1],[-1006,-32],[-358,-11],[-474,-15],[-41,-1],[-26,-1],[-213,-6],[-3,-1],[-143,-4],[-44,-2],[-211,-9],[31,-115],[-135,-5],[-455,-14],[-82,-3],[-128,-4],[-346,-11],[-358,-11],[-95,-3],[-78,-3],[-65,-2],[-131,-4],[-114,-4],[-14,0],[-297,-10],[-78,-2],[-246,-8],[-132,-5],[-141,-4],[-322,-17],[12,-62],[48,-249],[24,-119],[11,-49],[27,-132],[19,-92],[19,-90],[34,-154],[33,-149],[18,-85],[66,-307],[19,-90],[48,-236],[1,-6],[12,-61],[11,-52],[27,-133],[15,-71],[25,-121],[14,-67],[11,-52],[9,-43],[16,-78],[36,-168],[48,-230],[38,-178],[-333,-26],[-151,-11],[-234,-18],[-90,-8],[-86,-7],[-30,-2],[-56,-5],[-219,-18],[-73,-6],[-153,-12],[-68,-5],[-118,-10],[-88,-8],[-269,-22],[-224,-16],[-164,-10],[-282,-21],[-67,-6],[-118,-8],[-51,-4],[-97,-8],[-97,-7],[-207,-16],[-105,-8],[-276,-20],[-127,-10],[-56,-4],[-56,-4],[-51,-3],[-62,-5],[-252,-19],[-326,-25],[-194,-14],[-319,-24],[-232,-17],[-18,-2],[-148,-10],[-108,-8],[-124,-9],[-127,-9],[-202,-14],[-69,-5],[-469,-35],[-491,-34],[-89,-7],[-131,-10],[-75,-5],[-90,-7],[-84,-7],[-73,-5],[-38,-3],[-64,-5],[-102,-7],[-104,-16]],[[3821,44810],[189,261],[166,200],[74,82],[100,151],[67,93],[-5,65],[-62,60],[-104,106],[-52,86],[-30,113],[-56,126],[-28,108],[-156,109],[-20,11],[-98,52],[-77,58],[-31,12],[-138,51],[-113,59],[-81,43],[-177,118],[-111,61],[-7,54],[-15,107],[-29,140],[-37,62],[-11,21],[-2,2],[-11,16],[-29,47],[-34,55],[-67,61],[-81,49],[-46,28],[-57,36],[-108,50],[-90,47],[-73,60],[-35,51],[-24,39],[-32,101],[12,50],[47,107],[27,44],[25,42],[21,46],[46,80],[56,62],[42,36],[56,41],[64,41],[97,49],[90,41],[93,33],[86,24],[54,30],[3,1],[9,8],[47,41],[56,65],[34,36],[4,7],[33,56],[23,44],[-12,58],[-39,38],[-56,34],[-53,32],[-27,15],[-19,12],[-25,13],[-43,22],[-61,35],[-53,30],[-50,49],[-23,27],[-16,19],[-4,21],[-11,64],[23,89],[14,39],[17,45],[24,39],[31,47],[24,52],[30,88],[47,70],[33,46],[49,77],[26,55],[43,87],[43,63],[13,44],[-20,72],[-265,354],[-202,272],[-117,96],[-517,427],[-25,52],[-35,90],[-30,87],[-40,83],[-45,78],[-45,111],[-35,99],[-60,127],[-60,99],[-24,30],[-31,38],[-57,85],[-31,46],[-32,53],[-6,10],[-36,70],[-2,4],[-35,88],[-11,65],[-4,49],[5,62],[10,61],[16,67],[18,75],[22,84],[16,47],[1,3],[26,77],[27,58],[22,59],[7,72],[-1,69],[-6,73],[3,52],[-7,77],[-18,80],[-18,76],[-4,82],[2,69],[-12,123],[-8,50],[-10,54],[-26,42],[-30,45],[-24,41],[-19,46],[-37,64],[-47,57],[-43,68],[-27,49],[-10,51],[-12,54],[-1,45],[-1,52],[7,46],[17,49],[27,39],[16,43],[17,86],[8,49],[2,45],[13,64],[17,47],[23,46],[6,18],[17,55],[8,57],[2,59],[6,71],[2,32],[24,43],[20,66],[20,52],[15,61],[5,52],[17,66],[24,66],[18,63],[5,62],[2,34],[1,20],[-3,56],[-11,45],[-19,43],[-22,49],[-25,78],[-17,45],[-18,32],[-10,18],[-40,57],[-4,6],[-32,53],[-30,61],[-108,80],[-78,42],[-37,14],[-28,11],[-68,22],[-84,24],[-71,22],[-87,19],[-62,25],[-11,5],[-7,4],[-39,26],[-67,50],[-33,40],[-58,61],[-84,50],[-81,30],[-60,27],[-61,35],[-54,27],[-23,12],[-84,45],[-52,33],[-39,36],[-21,73],[4,19],[15,75],[16,51],[52,102],[38,98],[40,100],[28,76],[32,97],[47,134],[10,71],[35,86],[27,80],[27,98],[19,84],[10,86],[-3,105],[19,100],[25,54],[37,48],[38,49],[54,67],[46,63],[71,94],[57,77],[90,132],[35,45],[112,159],[50,58],[19,20],[33,35],[45,55],[40,90],[6,51],[10,67],[19,69],[14,44],[59,72],[37,51],[26,56],[15,80],[-18,93],[-11,63],[-11,100],[-24,72],[-38,58],[-41,64],[5,62],[-2,63],[-9,54],[-26,54],[-46,70],[-28,59],[25,48],[58,55],[63,69],[65,65],[56,31],[87,36],[53,25],[58,53],[96,76],[51,44],[53,49],[42,86],[3,49],[-15,45],[-22,60],[25,47],[49,33],[58,90],[10,45],[11,54],[29,88],[17,86],[5,57],[28,43],[35,39],[44,31],[48,77],[-10,86],[-32,37],[-23,41],[-21,42],[8,82],[31,83],[34,44],[37,37],[35,33],[66,27],[73,19],[52,40],[12,15],[21,28],[21,62],[-1,19],[-1,28],[-21,92],[-14,42],[-7,49],[-11,48],[5,83],[9,46],[31,36],[102,37],[93,1],[81,19],[42,36],[15,68],[34,55],[43,39],[65,29],[69,29],[72,22],[76,13],[78,16],[57,32],[33,38],[40,39],[29,40],[43,39],[56,28],[56,24],[62,22],[71,15],[33,14],[31,13],[71,24],[57,34],[11,44],[10,39],[-19,42],[0,47],[30,39],[49,31],[47,28],[43,34],[37,38],[17,43],[42,38],[40,33],[28,48],[-1,88],[16,47],[47,32],[59,30],[53,32],[44,30],[18,41],[16,91],[61,83],[56,23],[52,23],[55,22],[63,28],[56,26],[56,32],[-7,79],[-30,42],[65,54],[60,5],[101,15],[71,20],[67,18],[60,31],[55,36],[46,34],[43,39],[52,33],[44,22],[56,-3],[65,-11],[49,-10],[31,-6],[79,-1],[64,28],[28,39],[-4,28],[-6,53],[15,43],[30,36],[54,24],[69,14],[184,356],[95,164],[41,72],[24,43]],[[70952,62407],[-36,-52],[-35,-33],[-8,-7],[-38,-36],[-21,-42],[-18,-46],[6,-53],[30,-58],[15,-52],[-5,-53],[-3,-66],[6,-46],[4,-63],[4,-46],[11,-54],[-19,-125],[55,-39],[55,-34],[98,-65],[59,-23],[144,-35],[22,-45],[-37,-33],[-41,-37],[-49,-40],[-16,-55],[-22,-68],[-24,-41],[-48,-14],[-61,17],[-87,14],[-104,-25],[-60,-32],[-69,-15],[-53,-12],[-48,-25],[-80,-35],[-92,-87],[-21,-3],[-23,-3],[2,39],[-29,-4],[-2,-1],[-31,-35],[-12,-44],[1,-54],[-2,-67],[-14,-87],[-31,-37],[-51,-71],[-16,-42],[26,-42],[37,-109],[34,-57],[27,-53],[8,-65],[-3,-58],[15,-42],[33,-53],[100,-88],[53,-30],[67,-16],[24,3],[65,-7],[72,2],[50,16],[27,43],[1,85],[15,56],[46,43],[48,34],[71,38],[54,-1],[63,-12],[75,-21],[65,-24],[68,-16],[55,-25],[48,-35],[44,-66],[2,-46],[-17,-72],[-12,-53],[-17,-87],[-14,-53],[-21,-42],[-45,-40],[-54,-33],[-63,-26],[-110,-30],[-135,-3],[-101,3],[-64,-4],[-42,-40],[7,-7],[-16,-20],[68,-39],[68,-30],[68,-28],[59,-28],[61,-21],[60,-17],[76,-17],[51,-12],[72,-33],[49,-37],[30,-72],[-28,-45],[-43,-23],[-59,-26],[-108,-26],[-95,-2],[-55,9],[-75,48],[-57,47],[-110,10],[-97,-30],[-66,-21],[-63,-13],[-119,-16],[-50,-11],[-7,-6],[-18,-5],[-1,-9],[-42,-34],[37,-41],[56,-25],[67,-41],[38,-39],[42,-84],[-19,-53],[-100,-88],[-84,-64],[-63,-62],[-37,-38],[-24,-45],[-24,-57],[-36,-56],[-43,-49],[-53,-34],[-74,-16],[-75,2],[-89,11],[-79,6],[-75,0],[-57,-5],[-88,-28],[-36,-70],[16,-51],[66,-32],[56,-11],[66,-10],[57,-13],[76,-48],[37,-52],[-22,-49],[-21,-10],[-73,-13],[-81,-4],[-58,-13],[-53,-16],[-93,-27],[-116,-40],[-79,-31],[-83,-25],[-99,-39],[-68,-56],[-41,-64],[-8,-55],[25,-65],[37,-49],[42,-46],[76,-80],[31,-42],[23,-48],[-18,-54],[-60,-54],[-62,-18],[-60,-10],[-64,-15],[-59,-40],[-34,-52],[1,-60],[14,-48],[-3,-71],[-31,-64],[-87,-35],[-87,1],[-87,30],[-53,24],[-54,32],[-49,32],[-60,19],[-60,22],[-2,4],[-22,5],[-30,-43],[-56,-22],[-36,-55],[-28,-44],[-18,-65],[-2,-48],[9,-43],[15,-31],[75,-83],[105,-45],[88,-28],[35,-70],[-38,-65],[-112,11],[-51,55],[-43,77],[-64,55],[-15,18],[-85,20],[-102,3],[-56,-12],[-64,-12],[-59,-22],[-48,-38],[-60,-19],[-31,-46],[5,-60],[21,-62],[22,-45],[19,-52],[13,-52],[17,-44],[14,-52],[-20,-49],[-46,-28],[-60,-11],[-49,-14],[-50,-20],[-77,-38],[-4,-3],[-25,-61],[-80,-83],[-167,-70],[-50,-32],[-1,-68],[19,-42],[45,-47],[79,-52],[71,-73],[33,-96],[-5,-79],[-60,-166],[6,-27],[29,-131],[-3,-51],[-33,-91],[-16,-67],[43,-117],[59,-37],[139,67],[117,38],[86,-14],[13,-13],[447,-71],[209,-50],[30,-16],[26,-27],[-14,-32],[-84,-26],[-175,-23],[-59,-22],[-62,-4],[-97,-36],[-39,-27],[79,-130],[-4,-4],[-7,-5],[-5,-6],[-5,-6],[-48,-61],[-1,0],[-4,-7],[-4,-7],[-4,-7],[-3,-7],[-3,-7],[0,-1],[-14,-44],[-3,-10],[-62,-56],[-193,-174],[-59,-37],[-33,-19],[-109,-66],[-231,-16],[-89,-37],[-43,-90],[-3,-266],[0,-1],[-2,-7],[0,-1],[-13,-57],[-1,-7],[-1,-8],[0,-7],[0,-88],[0,-6],[3,-52],[8,-140],[0,-2],[1,-8],[20,-114],[21,-116],[2,-7],[3,-8],[2,-17],[-33,-54],[-21,-24],[-331,-327],[-27,-16],[-77,-36],[-252,-28],[-133,-108],[-7,-5],[-3,-2],[-165,-103],[-5,-3],[-6,-3],[-117,-61],[-2,-1],[-6,-2],[-579,-260],[-258,-173],[-67,-97],[-20,-47],[17,-26],[-69,-164],[-52,-37],[-97,-36],[-365,-9],[-121,-115],[-7,-12],[-24,-144],[-1,-6],[-2,-7],[-3,-8],[0,-2],[-22,-51],[-1,-2],[7,-7],[189,-215],[93,-151],[-5,-24],[-44,-16],[-74,-26],[-84,-30],[-98,-34],[-71,-25],[-137,-2],[-28,0],[-14,-2],[-173,-23],[-100,-111],[-84,-112],[-59,-80],[-4,-12],[-27,-82],[2,-13],[202,-369],[2,-5],[25,-132],[37,-255],[1,-7],[0,-7],[0,-33],[0,-8],[-1,-7],[-1,-4],[-17,-90],[-4,-11],[-77,-204],[-4,-10],[-67,-159],[-2,-5],[-4,-7],[-4,-7],[-3,-5],[-24,-32],[-5,-6],[-51,-88],[-8,-37],[4,-30],[0,-4],[5,-48],[7,-16],[6,-6],[1,-1],[6,-6],[5,-6],[5,-7],[4,-6],[4,-7],[3,-8],[2,-7],[2,-7],[1,-5],[6,-33],[1,-2],[48,-129],[3,-18],[18,-93],[22,-114],[-133,-183],[-103,-143],[-199,-397],[-176,-198],[-191,-97],[-179,-93],[-11,-17],[-7,-16],[-1,-19],[11,-39],[0,-3],[2,-8],[1,-7],[0,-5],[2,-73],[76,-164],[-64,-176],[-140,49],[6,-54],[2,-19]],[[62560,45606],[-54,14],[-101,35],[-89,21],[-155,36],[-279,65],[-134,43],[-16,4],[-33,8],[-679,171],[-74,9],[-658,174],[-201,51],[-39,10],[-16,4],[-96,22],[-68,20],[-28,6],[-539,131],[-784,201],[-77,19],[-52,12],[-108,25],[-136,33],[-492,123],[-99,25],[-102,27],[-240,62],[-783,202],[-129,24],[-430,107],[-111,23],[-429,86],[-642,122],[-345,67],[-346,71],[-118,23],[-294,58],[-69,13],[-281,53],[-181,34],[-484,90],[-15,5],[-40,13],[-277,54],[-299,54],[-155,27],[-193,38],[-663,130],[-920,205],[-366,83],[-309,79],[-63,18],[-1603,424],[-184,50],[-140,36],[-51,13],[-7,2],[-80,21],[-86,23],[-15,4],[-181,48],[-438,114],[-144,37],[-87,24],[-805,212],[-86,22],[-630,167],[-382,100],[-265,72],[-147,38],[-101,27],[-120,30],[-177,47],[-81,20],[-66,16],[-24,4],[-146,29],[-9,3],[-174,55],[-525,137],[-783,185],[-28,7],[-64,14],[-345,79],[-110,26],[-59,14],[-257,59],[-86,15],[-396,94],[-134,32],[-52,13],[-31,7],[-170,40],[-60,15],[-16,4],[-247,56],[-311,71],[-176,50],[-62,13],[-79,16],[-64,15],[-94,24],[-52,11],[-1477,363],[-78,8],[-182,38],[-662,135],[-1206,247],[-132,26],[-102,9],[-50,16],[-73,27],[-765,163],[-874,196],[208,245],[-281,68],[223,286],[-535,133],[221,284],[-285,69],[243,291],[-206,60]],[[62560,45606],[5,-70],[-47,-33],[-4,-3],[-7,-5],[-8,-4],[-1,0],[-462,-173],[-182,-112],[-130,-143],[-118,-122],[-66,-72],[-154,-172],[-3,-6],[-38,-64],[-3,-6],[-5,-7],[-5,-6],[-6,-6],[-6,-6],[-7,-5],[-7,-5],[-7,-4],[-8,-4],[-78,-39],[-8,-4],[-6,-2],[-348,-130],[-277,-104],[-201,-89],[-4,-3],[-12,-8],[-7,-4],[-8,-4],[-8,-4],[-8,-3],[-373,-134],[-245,-88],[-97,-34],[0,-1],[-8,-2],[-9,-2],[-9,-2],[-8,-1],[-73,-9],[-9,-1],[-9,0],[-298,-31],[-3,-1],[-20,-16],[0,-1],[-16,-66],[-2,-8],[-2,-7],[-3,-7],[-4,-7],[-2,-3],[-18,-31],[-3,-4],[-5,-7],[-5,-6],[-6,-6],[-4,-4],[-85,-75],[-1,-2],[-7,-5],[-7,-5],[-4,-2],[-215,-132],[-82,-50],[-35,-26],[-2,-3],[-4,-7],[-5,-6],[-3,-4],[-182,-209],[-4,-4],[-286,-248],[-1,-1],[-6,-5],[-1,0],[-113,-85],[-7,-4],[-7,-5],[-2,-1],[-69,-38],[-5,-3],[-8,-4],[-2,0],[-36,-15],[-79,-32],[-80,-76],[-1,-2],[-68,-201],[17,-25],[-126,-114],[-1,-150],[0,-1],[-3,-228],[0,-6],[-1,-8],[-1,-6],[-30,-135],[103,-163],[4,-34],[-4,-164],[-44,-321],[-231,-283],[-179,-171],[-27,-28],[-47,-92],[-71,-191],[0,-1],[-28,-72],[-14,-34],[-142,-342],[-27,-66],[-3,-2],[-7,-4],[-8,-4],[-2,-1],[-33,-16],[-6,-3],[-218,-63],[-70,-39],[-60,-103],[-28,-105],[-35,-85],[-97,-179],[-182,-291],[3,-169],[59,-91],[59,-61],[69,-28],[35,-122],[18,-60],[57,-114],[-84,-114],[-3,-4],[-57,-24],[14,-2],[-41,-11],[-51,-4],[-287,-225],[-135,-111],[-120,-37],[-136,-39],[-82,-34],[-50,-31],[-79,-61],[-97,-36],[-235,-51],[-91,-33],[-32,2],[-59,-22],[-155,-52],[-266,-85],[-114,-33],[-128,-48],[-134,-80],[-196,-167],[-54,-88],[13,-279],[-44,-6],[-2,-2],[-9,-14],[-7,-12],[-26,-39],[-4,-20],[-29,-69],[-2,-73],[8,-69],[32,-56],[34,-118],[18,-201],[-63,-115],[-11,-20],[2,-40],[30,-61],[28,-161],[5,-25],[-59,-144],[-213,-232],[-95,-98],[-80,-61],[-94,-53],[-80,-83],[-153,-219],[-86,-132],[-45,-67],[-15,-39],[6,-47],[0,-1],[33,-52],[88,-72],[2,-2],[10,-8],[96,-42],[6,-3],[5,-3],[17,-9],[58,-31],[4,-2],[7,-5],[1,0],[75,-50],[6,-4],[7,-6],[6,-5],[6,-6],[5,-6],[4,-6],[26,-15],[5,-4],[7,-5],[7,-5],[6,-5],[6,-6],[5,-7],[1,-1],[109,-144],[21,-16],[1,0],[0,-1],[7,-5],[6,-6],[6,-6],[5,-6],[7,-10],[50,-31],[60,-37],[34,-73],[108,-158],[-15,-26],[-19,-32],[-14,-90],[19,-127],[6,-40],[7,-49],[3,-51],[3,-44],[-27,-95],[-35,-60],[-95,-164],[-44,-69],[-7,-10],[-100,-99],[-32,-46],[-63,-119],[-154,-292],[-3,-63],[0,-5],[0,-1],[0,-70],[0,-7],[1,-8],[0,-3],[18,-96],[0,-3],[16,-79],[7,-33],[0,-27],[-16,-59],[-42,-118],[-16,-44],[-68,-192],[-1,-4],[-2,-8],[-1,-3],[-7,-37],[-71,-191],[1,-275],[-25,-49],[-55,-268],[-28,-115],[-43,-83],[-70,-193],[-32,-368],[-35,-119],[-15,-48],[-5,-64],[-13,-56],[-49,-135],[5,-119],[-52,-128],[-92,-70],[-158,-77],[-138,-91],[-94,-76],[-76,-118],[-41,-123],[-19,-25],[14,-121],[53,-161],[1,-130],[-26,-86],[8,-47],[24,-32],[119,-64],[19,-20],[281,-103],[120,-5],[323,-57],[147,5],[29,-7],[202,-31],[12,-79],[-181,-189],[-135,-117],[-137,-92],[-96,-80],[-63,-64],[-34,-62],[-329,-384],[-43,-106],[23,-77],[27,-44],[121,-126],[43,-29],[44,-47],[139,-107],[102,-61],[60,-32],[89,-70],[83,-87],[21,-37],[17,-48],[-26,-64],[-45,-44],[-30,-29],[-28,-24],[-22,-30],[-77,-123],[-104,-142],[-39,-96],[0,-90],[-132,-346],[-71,-108],[-50,-167],[-74,-203],[-58,-53],[-135,-177],[-206,-261],[-135,-86],[-56,-48],[-60,-103],[-26,-19],[-274,-92],[-41,-13],[-187,-58],[-148,-73],[-28,-24],[-60,-81],[-54,-87],[-28,-69],[-22,-166],[0,-91],[56,-195],[51,-98],[99,-190],[15,-54]],[[50983,22116],[-24,-4],[-209,9],[-490,11],[-7,0],[-141,3],[-324,8],[-105,3],[-357,9],[-134,2],[-202,5],[-282,5],[-58,1],[-856,17],[-153,6],[-280,9],[-149,3],[-1273,20],[-295,3],[-62,-4],[-60,3],[-252,7],[-29,-2],[-105,-4],[-53,1],[-57,-2],[-42,-2],[-61,-4],[-141,-11],[-62,-4],[-155,-10],[-708,-46],[-267,-23],[-435,-41],[-549,-50],[-57,-5],[-334,-27],[-1,0],[-245,-21],[-674,-61],[-561,-50],[-222,-21],[-110,-10],[-967,-87],[-604,-54],[-208,-19],[-309,-27],[-58,-5],[-67,-3],[-54,9],[-10,2],[-49,9],[-52,10],[-482,104],[-327,64],[-266,53],[-325,70],[-530,115],[-9,2],[-158,33],[-979,218],[-318,68],[-1534,328],[-166,35],[-41,9],[-274,58],[-19,4],[-68,15],[-171,36],[-304,64],[-473,99],[-177,38]],[[31403,23087],[-6,430],[-5,375],[-2,140],[-2,140],[-6,400],[0,56],[-4,254],[-2,114],[-570,16],[-482,14],[-125,4],[-85,2],[-838,22],[-57,1],[-184,5],[-96,3]],[[28939,25063],[13,313],[8,181],[4,68],[15,321],[6,131],[24,525],[9,175],[2,60],[12,244],[629,27],[7,568],[5,458],[1403,55],[-4,120],[-1,228],[267,-91],[403,-137],[903,-305],[53,-18],[75,-25],[31,-11],[210,-71],[1414,-484],[68,1218],[151,259],[117,202],[185,317],[482,734],[140,223],[180,451],[38,95],[12,30],[12,30],[29,72],[2,4],[182,456],[167,421],[53,185],[-56,8],[-191,27],[85,271],[-1114,224],[-21,26],[-131,17],[-449,61],[-537,72],[33,309],[31,301],[-334,44],[-343,45],[-378,49],[26,56],[80,166],[11,57],[207,1005],[3,19],[18,83],[21,104],[157,766],[34,168],[94,454],[22,110],[143,697],[63,304],[47,228],[752,-176],[220,308],[184,258],[26,36],[42,53],[1,1],[695,984],[28,41],[177,258],[362,528],[117,171],[53,77],[90,131],[188,274],[54,79],[330,482],[330,481],[-731,179],[-386,95],[-16,4],[-233,57],[-1012,250],[-89,25],[-1100,269],[-1521,372],[-958,234],[152,242],[557,876],[-274,73],[-362,96],[109,165],[211,293],[29,40],[30,41],[61,85],[292,406],[79,110],[81,112],[9,12],[105,146],[28,38],[27,38],[106,147],[134,186],[31,42],[485,674],[-21,6],[-22,7],[-91,22],[-55,15],[-50,19],[-43,34],[-5,49],[26,48],[49,20],[61,13],[48,22],[21,47],[0,66],[-8,52],[-36,32],[-79,40],[-58,17],[-77,5],[-61,-4],[-56,21],[-29,51],[-36,43],[-50,64],[-12,49],[31,42],[58,18],[61,7],[40,41],[-49,22],[-51,7],[-56,9],[-56,31],[-54,35],[-48,84],[-2,8],[-1,8],[-1,11],[0,1],[1,4],[1,3],[1,5],[0,3],[2,6],[2,6],[2,5],[-9,2],[-126,30],[-73,18],[-247,59],[-532,128],[-762,183],[-172,-224],[-52,-67],[-106,-138],[-637,160],[-494,124],[-80,20],[-484,122],[-121,30],[-47,805],[-13,3],[-138,-44],[-50,-17],[-192,-61],[-118,-38],[-113,-36],[-48,-16],[-267,-86],[-323,-103],[-54,-18],[-2204,-708],[-773,-253]],[[28939,25063],[-341,12],[-420,13],[-26,0],[-494,15],[-696,20],[-2419,70],[-219,6],[-111,3],[-758,22],[-12,-559],[-517,0],[-252,0],[263,576],[-246,9],[-31,1],[-74,3],[-25,1],[-28,1],[-112,4],[-45,1],[-120,3],[-198,6],[-834,27],[-1438,46],[-760,0],[-889,-2],[-407,0],[-212,6],[-195,1],[-85,4],[-131,5],[-152,7],[-952,45],[-94,5],[-76,4],[-149,7],[-125,6],[-51,2],[-52,3],[-147,7],[-223,11],[-307,15],[-279,12],[-389,19],[-212,10],[-72,4],[-14,0],[-64,3],[-62,2],[-38,2],[-16,0],[-62,2],[-62,3],[-62,2],[-61,1],[-74,3],[-344,10],[-343,10],[-237,8],[-635,21],[-115,4],[-115,3],[-500,16],[-128,4],[-484,15],[-77,2],[-83,3],[-64,2],[-57,3],[-65,2],[-78,2],[-55,1],[-26,2],[-163,10],[-180,12],[-269,9]],[[9294,25671],[-5,125],[8,182],[3,60],[3,83],[5,133],[4,91],[2,94],[5,141],[8,228],[18,440],[2,24],[4,70],[10,74],[-11,49],[2,119],[-2,116],[24,100],[13,328],[11,87],[5,91],[7,142],[23,506],[10,194],[8,155],[5,90],[7,149],[1,6],[3,59],[2,48],[2,45],[4,74],[22,474],[13,269],[8,183],[8,196],[3,74],[5,97],[6,71],[0,129],[8,143],[18,405],[16,300],[14,294],[3,62],[10,334],[22,643],[5,109],[9,208],[12,214],[4,77],[3,57],[3,274],[-46,63],[-5,8],[0,7],[18,296],[0,5],[0,7],[4,10],[6,13],[99,83],[101,84],[1,4],[9,5],[53,38],[22,36],[-21,97],[-23,103],[-20,56],[-50,134],[-15,20],[-110,133],[-31,20],[-31,20],[-90,146],[-1,4],[-13,59],[-6,28],[-20,96],[8,18],[33,42],[14,18],[15,8],[30,9],[-2,13],[-9,43],[-116,55],[-27,12],[-1,2],[-56,62],[-153,178],[-16,42],[-150,135],[-44,25],[-35,40],[-54,-34],[-44,61],[-41,26],[-21,-1],[-38,49],[16,3],[-78,30],[-29,15],[-20,2],[-116,11],[-26,3],[-1,16],[0,3],[-2,52],[-1,4],[-363,109],[-9,1],[-15,2],[-18,2],[-22,3],[-18,-3],[-59,-11],[-14,-3],[-7,-1],[-42,-20],[-17,-8],[-1,25],[-2,55],[-17,94],[-12,10],[-5,3],[-2,3],[-21,8],[-147,50],[-1,0],[-17,-2],[-349,-26],[-76,-5],[-22,-2],[-17,-7],[-35,-57],[-7,-11],[-22,17],[-83,98],[0,1],[5,13],[162,138],[49,33],[34,50],[-40,32],[-54,12],[-45,25],[-5,3],[-47,19],[-50,16],[29,39],[44,38],[11,21],[11,20],[30,39],[36,45],[31,39],[21,46],[8,138],[1,25],[10,159],[5,86],[-5,7],[-1,1],[-55,82],[-154,150],[-64,60],[-14,9],[-101,26],[-30,-4],[-18,-22],[-7,-14],[-6,-12],[-6,-5],[-26,-4],[-19,2],[-14,13],[0,13],[15,47],[8,27],[45,138],[15,48],[-3,21],[-13,102],[-31,241],[-26,60],[-80,59],[-52,25],[-2,1],[-53,17],[-38,-6],[-2,-1],[-30,-16],[-34,-29],[-48,-63],[-12,-15],[-37,-37],[-12,-3],[-7,-2],[-29,0],[-34,5],[-13,5],[-8,2],[-31,12],[-5,9],[-3,9],[-3,17],[-24,8],[-49,16],[-15,6],[-10,3],[-52,16],[-66,22],[-2,0],[-131,12],[-20,1],[-100,7],[-28,1],[-52,3],[-3,-1],[-27,-3],[-73,-47],[-11,-5],[-21,-9],[-40,-6],[-20,-3],[-151,1],[-31,4],[-6,7],[-28,36],[-6,6],[-48,25],[-33,13],[-8,-1],[-5,-1],[-13,-1],[-183,-83],[-7,-28],[-2,-6],[-8,-5],[-28,-6],[-8,-1],[-63,-13],[-28,-1],[-5,0],[-43,9],[-8,7],[-33,38],[-10,11],[-12,13],[-29,-2],[-21,-2],[-36,-4],[-33,-20],[-47,-35],[-46,-39],[-29,-72],[-10,-11],[-24,-23],[-27,-13],[-36,3],[-24,5],[-12,4],[-12,5],[-36,26],[-73,65],[-30,50],[-20,35],[-14,11],[-19,4],[-22,1],[-135,-13],[-59,-28],[-6,-10],[-4,-3],[-20,-14],[-34,-8],[-294,-44],[-49,0],[-12,3],[-13,3],[-7,2],[-56,42],[-32,10],[-109,4],[-6,1],[-40,-20],[-21,-18],[-5,-18],[-5,-40],[21,-26],[26,-33],[49,-35],[15,-11],[22,-28],[0,-2],[0,-25],[-157,-136],[-79,-57],[-53,-59],[-17,-22],[-7,-10],[1,-14],[0,-5],[1,-2],[14,-15],[52,-31],[9,-6],[6,-3],[104,-211],[1,-28],[-13,-30],[-5,-12],[-10,-23],[-26,-27],[-212,-153],[-8,-6],[-129,-66],[-7,-4],[-149,-53],[-4,-2],[5,-8],[13,-16],[48,-65],[4,-6],[2,-6],[23,-65],[2,-17],[-3,-13],[-2,-8],[-16,-17],[-22,-10],[-58,-6],[-95,4],[-23,-3],[-27,-9],[-15,-9],[-10,-6],[-10,-58],[41,-48],[56,-30],[127,-93],[1,-1],[5,-279],[-9,-27],[-9,-29],[-24,-49],[-41,-55],[-29,-14],[-8,-4],[-59,-16],[-67,-5],[-91,7],[-14,0],[-39,-14],[-20,-7],[-34,-29],[-24,-27],[0,-25],[24,-36],[5,-26],[-11,-21],[-8,-15],[-23,-12],[-191,-79],[-22,-8],[-47,0],[-51,5],[-101,35],[-9,3],[-72,35],[-25,8],[-168,128],[-98,60],[-398,183],[-216,101],[-130,61],[-225,106],[-19,9],[-13,5],[-86,44],[-63,46],[9,48],[1,1],[110,158],[2,3],[4,6],[188,341],[1,1],[3,7],[1,2],[2,5],[2,7],[1,3],[79,77],[12,33],[-9,69],[-15,92],[-38,82],[-60,52],[47,53],[39,45],[15,17],[4,5],[5,7],[24,36],[4,7],[4,7],[3,7],[2,6],[27,82],[8,25],[1,2],[124,172],[47,55],[-41,73],[-152,167],[-156,156],[-81,81],[-104,112],[-9,10],[-1,1],[1,2],[33,157],[50,200],[92,99],[21,23],[219,101],[118,98],[84,289],[24,28],[151,179],[4,4],[4,7],[1,1],[18,28],[214,292],[127,173],[3,4],[4,7],[3,7],[4,7],[2,8],[2,7],[28,120],[1,7],[0,3],[6,45],[1,5],[0,8],[0,40],[2,45],[0,4],[0,5],[0,2],[0,1],[2,7],[2,7],[0,3],[0,5],[1,8],[0,82],[0,1],[-2,142],[0,4],[-1,48],[5,29],[0,1],[4,29],[17,30],[30,28],[21,10],[71,17],[16,4],[6,2],[98,28],[2,0],[8,3],[8,3],[8,3],[4,3],[45,24],[4,2],[7,4],[7,5],[6,5],[6,6],[6,6],[5,6],[1,1],[82,108],[3,6],[5,6],[2,5],[15,28],[109,162],[69,116],[162,132],[4,63],[118,108],[203,143],[24,9],[8,3],[8,3],[8,4],[5,3],[42,27],[2,1],[7,5],[6,6],[32,27],[12,11],[7,5],[5,6],[5,6],[5,7],[29,42],[15,20],[5,6],[4,7],[4,7],[2,5],[0,1],[15,35],[58,75],[180,144],[4,3],[6,5],[2,3],[47,48],[4,4],[5,6],[5,7],[4,6],[4,7],[3,8],[2,7],[1,2],[14,48],[1,6],[2,7],[1,8],[1,4],[1,3],[1,6],[0,1],[1,8],[0,8],[0,8],[-1,7],[-1,4],[-6,32],[0,2],[-1,2],[-2,7],[-2,8],[-2,3],[-37,224],[18,218],[11,118],[62,78],[72,42],[78,124],[44,24],[137,131]],[[31403,23087],[-934,197],[-246,51],[-130,24],[-76,13],[-67,-21],[-6,-71],[0,-2],[-10,-113],[-29,-315],[-21,-594],[0,-1],[-7,-85],[-3,-36],[-20,-255],[-43,-556],[-13,-167],[-6,-78],[-53,-196],[-403,3],[-97,0],[-5,-54],[-20,-227],[-5,-58],[-4,-49],[-53,-598],[-48,-553],[-4,-48],[-4,-47],[-6,-63],[-33,-378],[-7,-78],[-14,-152],[-18,-205],[-4,-57],[-6,-65],[0,-1],[-9,-120],[-5,-59],[-24,-265],[-18,-207],[-19,-210],[-36,-520],[-75,3],[-180,8],[-64,2],[-171,8],[-18,1],[-818,36],[-160,7],[-135,6],[-96,4],[-109,5],[-61,2],[-71,3],[-69,3],[-75,3],[-68,3],[-96,4],[-86,3],[-61,3],[-358,11],[-111,4],[-139,5],[-150,6],[-887,34],[-129,5],[-577,22],[-827,32],[-24,1],[-894,35],[-1,-9],[-4,-36],[-4,-47],[-10,-89],[-2,-9],[-15,-48],[-35,-113],[-17,-77],[-7,-174],[-6,-71],[-8,-72],[-6,-62],[-9,-121],[41,-44],[-29,-168],[-20,-216],[-1,-142],[-23,-461],[-16,-315],[-6,-125],[-5,-97],[-9,-173],[-4,-53],[-7,-96],[-57,-846],[-38,-546],[-4,-56],[-36,-511],[-26,-422],[-14,-233],[-24,-362],[-27,-372],[-15,-222],[13,-45],[-2,-65],[6,-45],[-16,-116],[-36,-262],[-29,-475],[-6,-103],[-2,-45],[-4,-67],[-9,-162],[-5,-81],[-31,-401],[431,-10],[233,-8],[87,-3],[45,-2],[963,-32],[29,-1],[33,-1],[1416,-49],[13,0],[192,-6],[732,-24],[227,-8],[-91,-2268],[3,-113],[-4,-24],[-4,-25],[-45,-24],[-3,-61],[-1,-15],[-5,-88],[-24,-466],[-34,-625],[-12,-238],[-16,-284],[-14,-226],[-71,-1084],[-8,-109],[-12,-187],[-8,-211],[-2,-62],[-1,-36],[-5,-129],[-3,-71],[-12,-341],[-6,-155],[0,-7],[-4,-100],[0,-11],[-5,-91],[-12,-281],[-1,-56],[-2,-50],[-1,-9],[-2,-40],[-3,-70],[-9,-161],[-28,-236],[-6,-239]],[[25773,538],[-4533,82],[-193,3],[-88,1],[-385,5],[-56,1],[-724,8],[-322,7],[-399,8],[-268,9],[-70,2],[-3,0],[-119,6],[-24,-2],[-63,-3],[-326,5],[-477,8],[-53,1],[-392,9],[-960,23],[-24,1],[-50,2],[-83,1],[-252,0],[-910,15],[-535,9],[-535,8],[-520,9],[-340,5],[-69,1],[-121,2],[-153,3],[-65,1],[-19,0],[-510,8],[-407,7],[-174,3],[-44,0],[-98,2],[-63,1],[-9,0],[-108,2],[-844,14],[-1626,27],[-561,9],[-750,2443],[195,210],[18,20],[25,27],[-9,74],[23,30],[118,150],[-174,273],[86,616],[59,30],[285,-54],[33,383],[66,1363],[3,80],[28,743],[50,1336],[33,623],[7,123],[7,125],[1,27],[79,1447],[48,837],[108,1872],[24,341],[186,2553],[8,122],[120,1648],[34,554],[111,1841],[64,1183],[8,142],[3,62],[60,754],[37,268],[97,2464],[5,120]],[[50983,22116],[-39,-124],[39,0],[-69,-170],[-149,-231],[-75,-186],[-9,-66],[17,-71],[158,-324],[-88,-217],[-73,-68],[-291,-225],[-173,-114],[-22,-76],[0,-45],[21,-37],[63,-67],[119,-86],[102,-107],[-4,-100],[-36,-77],[-67,-65],[-103,-75],[-43,-15],[-140,-111],[-60,-99],[0,-145],[-6,-160],[-6,-82],[1,-69],[5,-46],[11,-60],[11,-94],[-13,-72],[-50,-66],[-46,-33],[-51,-21],[-57,-32],[-55,-47],[-5,-70],[14,-44],[33,-51],[84,-106],[40,-66],[16,-18],[58,-67],[90,-48],[63,-21],[105,-11],[55,6],[49,6],[83,-19],[32,-19],[22,-13],[31,-18],[19,-18],[7,-27],[5,-54],[1,-77],[-6,-25],[-2,-7],[-21,-61],[28,-44],[169,-170],[11,-11],[123,-100],[40,-33],[7,-11],[74,-127],[10,-17],[7,-205],[-79,-151],[-69,-57],[-283,-141],[-71,-85],[11,-169],[160,-149],[58,-175],[74,-144],[58,-65],[66,-64],[-16,-70],[-12,-51],[-14,-99],[-183,-193],[-144,-113],[-302,-235],[-159,-47],[-107,-62],[-66,-74],[-22,-54],[-117,-88],[-333,-174],[-121,-99],[-47,-49],[-26,-64],[-3,-114],[0,-4],[7,-13],[18,-36],[64,-67],[70,-50],[87,-53],[76,-80],[38,-85],[-44,-264],[-49,-248],[24,-163],[160,-256],[223,-106],[189,-132],[17,-3],[180,-91],[75,-39],[48,-59],[8,-114],[-53,-133],[-60,-81],[-169,-80],[-39,-15],[-63,-14],[-132,14],[-102,11],[-158,-11],[-213,-159],[-79,-182],[-8,-66],[8,-69],[29,-62],[55,-65],[95,-99],[-25,-64],[-79,-84],[-86,-76],[-79,-61],[-172,-92],[-184,-163],[-63,-23],[-102,-7],[-115,29],[-61,50],[-92,20],[-38,-6],[-147,-50],[-57,-30],[-58,-53],[-194,-99],[-76,-34],[-296,-38],[-253,-44],[-206,-64],[-153,-21],[-232,-14],[-17,3],[-98,-19],[-148,-55],[-196,-128],[-241,-103],[-144,-67],[-64,-69],[-45,-112],[10,-41],[51,-53],[36,-23],[64,-21],[36,0],[76,-35],[45,-46],[48,-81],[46,-132],[11,-86],[-1,-113],[-12,-54],[-20,-25],[13,-14],[2,-39],[-4,-56],[-24,-59],[4,-57],[86,-233],[64,-180],[1,-130],[-51,-105],[-72,-45],[-107,-39],[-100,-47],[-17,-42],[-24,-284],[34,-51],[-20,-183],[-38,-73],[-100,-91],[-352,-228],[-39,-17],[-253,-105],[-4,-2],[-217,-83],[-44,-20],[-31,-15],[-119,-324],[26,-407],[1,-8],[0,-1],[12,-184],[5,-18],[1,-4],[1,-8],[1,-8],[1,-7],[0,-4],[-2,-52],[-1,-4],[-1,-8],[-1,-7],[-2,-8],[-3,-7],[0,-2],[-2,-5],[-1,-1],[-33,-77],[-2,-4],[-3,-7],[-2,-4],[-34,-59],[-30,-64],[72,-84],[24,-36],[151,-224],[150,-142],[51,-234],[-13,-99],[16,-161],[48,-307],[102,-227],[67,-70],[14,-31],[21,-82],[-6,-129],[19,-65],[48,-126],[198,-222],[1,-1],[7,-5],[100,-63],[199,-155],[47,-41],[194,-144],[17,-3],[152,-92],[45,-46],[61,-27],[195,-121],[300,-216],[76,-80],[17,-70],[-7,-107],[-38,-115],[-5,-13],[-172,-69],[-8,-13],[-47,-80],[63,-224],[38,0],[267,81],[64,182],[198,110],[74,28],[53,-3],[89,20],[91,2],[81,-1],[135,-22],[47,-18],[117,-78],[140,-132],[83,-19],[150,-75],[148,-147],[76,-80],[65,-106],[50,-189],[-4,-10],[49,-256],[23,-55],[110,-107],[325,-266],[57,-38],[133,-139],[139,-192],[-28,-23],[-18,-106],[-60,2],[-78,2],[-194,4],[-2367,59],[-2910,69],[-97,2],[-143,3],[-3227,77],[-1970,46],[-2326,54],[-217,5],[-2157,50],[-2092,43],[-344,7],[-4285,89],[-1323,24],[-138,2]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment