Skip to content

Instantly share code, notes, and snippets.

@ThomasThoren
Last active December 19, 2022 04:45
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ThomasThoren/550b2ce8b1e2470e75b2 to your computer and use it in GitHub Desktop.
Save ThomasThoren/550b2ce8b1e2470e75b2 to your computer and use it in GitHub Desktop.
Shaded relief map
<!DOCTYPE html>
<html>
<head>
<title>Shaded relief</title>
<meta charset="utf-8">
<style>
body {
padding: 0;
margin: 0;
}
.parishes {
fill: none;
stroke: white;
stroke-width: 1px;
stroke-opacity: 1;
}
.raster {
fill: none;
opacity: 1;
}
.country-border {
fill: none;
stroke: red;
stroke-width: 5px;
stroke-opacity: 0.7;
}
</style>
</head>
<body>
<svg id="map"></svg>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/queue.v1.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script>
var map_width = 600,
map_height = 600;
var svg = d3.select("#map")
.attr("width", map_width)
.attr("height", map_height);
var la_vector_projection = d3.geo.mercator()
.scale(1)
.translate([0, 0]);
var la_vector_path = d3.geo.path()
.projection(la_vector_projection);
queue()
.defer(d3.json, "louisiana.json")
.await(ready);
function ready(error, louisiana) {
if (error) throw error;
var parishes = topojson.feature(louisiana, louisiana.objects.louisiana);
var b = la_vector_path.bounds(parishes),
s = 1 / Math.max((b[1][0] - b[0][0]) / map_width, (b[1][1] - b[0][1]) / map_height),
t = [(map_width - s * (b[1][0] + b[0][0])) / 2, (map_height - s * (b[1][1] + b[0][1])) / 2];
// Update the projection to use computed scale & translate.
la_vector_projection
.scale(s)
.translate(t);
// Raster
var raster_width = (b[1][0] - b[0][0]) * s;
var raster_height = (b[1][1] - b[0][1]) * s;
var rtranslate_x = (map_width - raster_width) / 2;
var rtranslate_y = (map_height - raster_height) / 2;
// Shaded relief, Louisiana
// svg.append("clipPath")
// .attr("id", "la_clip")
// .append("use")
// .attr("xlink:href", "#louisiana");
svg.append("image")
.attr("clip-path", "url(#la_clip)")
.attr("xlink:href", "louisiana-crop.png")
.attr("class", "raster")
.attr("width", raster_width)
.attr("height", raster_height)
.attr("transform", "translate(" + rtranslate_x + ", " + rtranslate_y + ")");
// svg.append("use")
// .attr("xlink:href", "#louisiana");
// Draw parishes
svg.append("path")
.datum(parishes)
.datum(parishes, function(a, b) { return a !== b; })
.attr("class", "parishes")
.attr("id", "louisiana") // For shaded relief
.attr("d", la_vector_path);
}
// Allows iframe on bl.ocks.org.
d3.select(self.frameElement).style("height", map_height + "px");
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"louisiana":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[4,5,6,7,8]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[9,10,11,12,13,14]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[15,16,17,18,19,20,21]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[22,23,24,25,26,27,28]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[29,30,-16,31,32]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[33,34,35,36]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[37,38,-8,39,-30]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[40,41,42,43,44,45,-3]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[46,47,48,49,50]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-51,51,52,53,-45,54]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[55,56,57,58]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[59,60,61,62,63]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[64,65,66,67]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[68,69,70,71,72,73,74]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[75,-58,76,77,-18,78,79]]},{"type":"MultiPolygon","properties":{"STATEFP":"22"},"arcs":[[[80,81,82]],[[83,84,-75,85,-49]]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-9,-39,86,87,88]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[89,90,91,92,-43,93]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[94,95,-84,-48,96,-92]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[97,-69,-85,-96,98,99,100,101]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-21,102,103,104,-35,105]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[106,-88,107,108]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[109,110,111,112]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[113,-67,114,115]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[116,117,-80,118,-6]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-105,119,-90,120,121,122,-36]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-104,123,124,125,-99,-95,-91,-120]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[126,-32,-22,-106,-34,127]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[128,-122,129,130,131,132]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-28,133,-124,-103,-20,134]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[135,-112,136,137,138,-82,139,-73]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[140,141,142,143,144]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[145,146,-145,147]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-147,148,149,150,-141]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[151,-12,152]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[153,-133,154,-143]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[155,156,157,-116,158,159,160]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-152,161,-65,162,-157,163,-13]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-46,-54,164,-4]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-62,165,166,167,-71,168]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-50,-86,-74,-140,-81,169,170,-52]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-142,-151,171,-128,-37,-123,-129,-154]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[172,173,-138,174]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-87,-38,-33,-127,-172,-150,175,-108]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[176,-109,-176,-149,-146]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-94,-42,177,-130,-121]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-119,-79,-17,-31,-40,-7]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[178,179,-14,-164,-156,180,181,-110]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[182,-10,183,-166,-61]]},{"type":"MultiPolygon","properties":{"STATEFP":"22"},"arcs":[[[-126,184,-100]],[[185,186,-64,187,-102]]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-83,-139,-174,188,-170]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-137,-111,-182,189,-160,190,-175]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[191,-59,-76,-118]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-27,192,-186,-101,-185,-125,-134]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-184,-15,-180,193,-167]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-188,-63,-169,-70,-98]]},{"type":"MultiPolygon","properties":{"STATEFP":"22"},"arcs":[[[-25,194]],[[-57,195,-23,196,-77]]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-163,-68,-114,-158]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-194,-179,-113,-136,-72,-168]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-93,-97,-47,-55,-44]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-161,-190,-181]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-178,-41,-2,197,-131]]},{"type":"Polygon","properties":{"STATEFP":"22"},"arcs":[[-197,-29,-135,-19,-78]]}]}},"arcs":[[[6070713,28713389],[32394,52133],[22403,88342],[-1760,125372],[4939,44784],[29688,41928],[45847,24612],[31957,-21419],[14722,-86351],[16688,-68917],[4560,-75209],[15081,-40773],[57314,-14191],[36859,-1057],[36822,10853],[44919,31265],[30048,35780],[12734,37892],[1798,41903],[-21930,80684],[-47777,61905],[-58014,25214],[-39110,5523],[-136690,33041],[-29254,15992],[-35762,38230],[-132678,175150],[-129763,105513],[-18487,41470],[-6433,36981],[18126,53884],[38751,27472],[29046,-39647],[40226,-119967],[10578,-14480],[38864,-4083],[15139,12678],[17558,46105],[-1210,100279],[-18166,102967],[18771,44568],[85980,69135],[58126,66852],[16955,31120],[15743,59937],[14531,84909],[13927,28431],[29366,17289],[76613,8454],[45412,13063],[34513,49563],[1212,48794],[-19679,58400],[-85943,67979],[3805,22260],[24408,17651],[73341,3914],[32450,30569],[3405,47809],[-23557,101190],[1362,83206],[11542,110316],[35328,32393],[34267,-14961],[49669,-70189],[39792,768],[24976,31241],[22327,43007],[28666,39382],[11902,33905],[-25013,9462],[-45337,-15920],[-26111,19474],[-13567,36619],[-16046,78090],[-20587,65219],[-5166,48748],[-28534,36595],[-46225,-5426],[-25223,-16641],[-29270,-51653],[-65696,-58880],[-51468,-22667],[-1815,27663],[40661,32921],[19773,38252],[-3386,43704],[-13681,43464],[1135,77778],[21911,43295],[52754,47138],[6321,12415],[10482,80587],[25449,26943],[-20965,11645],[-13869,26727],[-7341,46321],[869,46634],[17144,30376],[34815,38156],[5695,23533],[-29120,3938],[-15572,-26679],[-36424,-9532],[-18090,16377],[-23008,40677],[-3349,25502],[20832,61041],[-12941,15704],[-22404,-32897],[-28022,-3434],[-32243,10157],[8874,40822],[10880,91538],[13056,20098],[-10539,19019],[-27682,-14937],[-20967,6605],[-16555,55325],[4881,87143],[22536,-18033],[44826,-17913],[55061,13951],[11978,14912],[-11259,43631],[-25072,3170],[-16290,20940],[-4902,42671],[-29687,5090],[-23634,-28408],[-28343,-54604],[-67702,-12103],[-21572,1800],[-2364,43297],[28648,48266],[24106,20530],[-42423,39694],[-15610,27207],[29441,49250],[33189,-4971],[-7304,50548],[15345,100157],[-24371,5572],[-33187,-64428],[-18639,5596],[-51314,48507],[-927,47137],[16801,11478],[45394,1969],[10860,39429],[-18032,26943],[-23443,13976],[2137,22907],[-28211,4732],[19072,31913],[587,33834],[22460,42719],[38561,22475],[15649,-4465],[43103,-51533],[22101,29128],[1721,37605],[17162,38300],[-43821,27903],[6755,44737],[21381,24516],[40038,11190],[-3084,19812],[-41268,19186],[-24315,-5091],[7967,24254],[27815,30592],[14530,63706],[-6224,30880],[20434,14673],[8705,-11167],[-9537,-31721],[11675,-9604],[31524,5739],[48420,-10278],[11863,28959],[-24617,37870],[-41571,-4468],[-26678,41063],[2251,20362],[27039,25863],[18316,-576],[49669,-34603],[25148,7996],[-2253,31217],[-33755,62241],[-43482,46994],[-32508,-8284],[-8288,15224],[7096,34099],[15743,8043],[51221,3603],[-13699,22547],[-38676,2185],[-14002,12391],[2536,23894],[30084,15008],[-30312,47666],[37428,18346],[24295,40797],[-1268,45408],[17276,47714],[24144,31865],[4825,41975],[-34759,-11622],[-34704,14407],[-19280,60057],[24143,10062],[9177,32946],[-12544,10110],[-11107,-20701],[-23634,1081],[12546,38230],[33794,6362],[10142,23918],[-55517,-12151],[909,29897],[16500,57871],[-4902,17649],[-40624,10950],[1286,35660],[36312,-20533],[31011,14336],[20871,104433],[21004,25550],[2081,30593],[-13511,15416],[-66774,4826],[-18411,21275],[6925,46994],[45943,20916],[25941,34482],[12583,59073],[95,31409],[-27947,44231],[-32073,19619],[-29783,-9558],[-3821,-69589],[-17162,-37149],[-46717,4179],[-15858,23292],[22479,49683],[5470,32489],[-61533,79196],[-5981,-17602],[20001,-26966],[-11978,-24230],[-32999,20340],[-22516,52276],[-12015,10998],[-29973,-7181],[-42422,-24901],[-35024,16930],[-94,45120],[-30009,16449],[-24428,-28167],[-28477,-7229],[-16576,29104],[-37483,10927],[-18979,14912],[-25015,-4324],[-31466,14938],[-42044,3626],[3311,15872],[47702,14408],[11466,23339],[-28269,-72],[-23065,14312],[-14324,29177],[-25771,-2882],[-28306,-50067],[-16784,-11382],[-18978,19786],[-6339,34771],[-17579,28767],[-1116,24807],[41628,13327],[22460,16425],[-6774,23387],[-37333,33042],[-17313,39406],[-27190,25525],[-42990,-528],[-13227,16402],[30237,45095],[2895,26246],[-18032,14312],[-45033,4394],[6981,30185],[25999,14600],[2895,27207],[-37029,6963],[-18487,23030],[4655,38611],[-32073,14384],[-22971,35252],[-40454,39116],[-2989,20387],[24011,13712],[48005,11502],[13547,41832],[-12507,3313],[-40510,-30232],[-20492,15440],[-436,63298],[-31977,20387],[-16009,-5475],[-25543,-45649],[-50010,-18105],[-40474,18201],[-30255,69062],[32961,17410],[37655,51675],[60492,61594],[2837,21394],[-68306,-6842],[-29197,24493],[-25959,54629],[-3633,43344],[29876,-360],[59812,-58328],[23008,12343],[-19546,49034],[-27664,27759],[-28817,10229],[23520,12318],[47266,55904],[39584,28551],[-2876,13207],[-69424,40893],[-17804,19427],[5619,14744],[65848,10134],[11068,14672],[-48457,47762],[-6490,59864],[34133,46105],[13549,-84887],[18353,-30904],[27777,7012],[6679,65459],[14513,10999],[52508,-8862],[22517,12632],[-4976,16520],[-69953,69422],[-43994,19307],[-27966,51771],[-8949,55615],[11011,21995],[19509,-12127],[20946,-69925],[30994,-3890],[3028,26413],[-12470,42384],[7096,94682],[-4637,142854],[-6621,32801],[-54193,83518],[9101,18778],[38657,6627],[20265,25022],[-17577,35563],[-39793,-30665],[-17691,23486],[6396,42599],[20150,49587],[77674,33906],[20094,28576],[-397,40196],[23596,33499],[50029,8548],[45431,-8692],[11976,13206],[-3026,41279],[49499,24278],[15987,18178],[6774,59072]],[[5708136,37168429],[1080,-17123],[220984,144],[474820,2955],[212318,5570],[167154,-120],[173132,3866],[100929,-5090],[258715,2136],[50766,-1344],[1156035,1272],[228517,3698],[456047,-1128],[197655,-5402],[381876,-3194],[19641,-4035],[148969,2762],[33833,7083],[389803,-3985],[163389,528],[-39,313201],[-2591,1347440],[-1551,93987],[-891,359066],[638757,-3698],[416255,-1729],[228403,-1969],[361214,1033],[279908,-3579],[4446,-348644],[302,-356880],[2611,-14744],[-3064,-198517],[-4750,-44688],[1438,-84020],[-3123,-241307],[-926,-256818],[-3085,-114039],[-3633,-347684],[758,-93290],[268780,-1008],[517487,2713],[181762,-264],[963451,8838],[301269,936],[4012,1633],[317390,-768],[99547,1080],[912589,-2497],[843412,-817],[235706,-4827],[2328,4587],[159129,649]],[[17261100,37170398],[-700,-214989],[1117,-339040],[209179,-335],[509332,-6747],[481345,-4108],[694803,-3097],[473,-100542],[-6624,-342641],[1022,-177024],[4844,-428919],[-1987,-172678],[1647,-105800],[-3009,-274085],[416,-167515],[3898,-99893],[416,-314667],[-794,-242434],[3747,-51652],[1059,-374771],[439928,1418],[201837,1897],[-2707,-354360],[5241,-348669],[2252,-66180],[-75,-290413],[4030,-340599],[114,-1091799],[1277341,-17025],[671129,1633],[-4863,-26990],[1080,-101814],[-25735,-47930],[-7511,-34195],[14362,-19091],[58296,-7707],[44012,-72232],[-5941,-57968],[-28553,-22427],[-26433,-34314],[-31467,888],[-35894,-50667],[-45677,-10806],[-21948,-32081],[623,-28168],[-17918,-18874],[-12129,-40366],[-89197,-28792],[-21324,21156],[-6415,-26655],[11184,-41134],[23273,-11862],[-8855,-21972],[-21041,-11215],[-7569,-21779],[10917,-21155],[-29119,-33162],[1665,-28047],[-22346,-26655],[27569,-23917],[8306,-77057],[-26187,-26174],[19110,-63322],[44976,-25071],[31978,2017],[12318,-20338],[63255,8093],[-9858,-25862],[-31296,-6677],[23216,-31721],[29859,-76480],[-4711,-55902],[-14495,-44161],[36463,-23317],[33529,-3770],[17748,-22091],[-26642,-26175],[7645,-13015],[57180,-32441],[38657,9726],[-19451,-69879],[2214,-69420],[-11277,-25263],[29460,-26173],[42630,-95813],[30369,-12630],[172,-40246],[-454686,-120],[-402975,-3554],[-166094,0],[-154096,-2209],[-876809,2714],[-2631,-709248],[-3349,-77562],[2612,-266495]],[[19810560,28415797],[-306228,1728],[-93377,3482],[-37201,5716],[-47909,-5740],[-152130,1344],[-1258192,-17025],[-603334,7877],[-1249,341393],[-167815,-4202],[-151789,5402],[-319529,-14864],[-113700,-3938],[-192698,1825],[-12508,6315],[-641859,-7227],[-665850,-4444],[-243011,-1152],[-349747,-192],[-123046,2737],[-508594,8237],[-538188,3866],[-678244,-433],[-507080,-9724],[-1682908,769],[-136273,-2619],[-574971,-336],[-340682,-1249],[-117447,1777],[-590525,4828],[-328403,1032],[-413247,3457],[-1491913,264],[-315404,721],[-34796,-32033]],[[24950255,99876260],[258563,-240],[149310,2616],[840725,-12895],[317108,-3529],[318583,-9582],[329198,890],[271846,-3866],[139603,-4947],[235802,-1778],[267570,-6434],[371166,-1226],[536446,-5402],[135423,-5187],[159150,264],[132980,-3410],[192395,1632],[178204,-4778],[192282,-1008],[189575,-5979],[551224,-6868],[531015,-8573],[243654,-2570],[146094,1322],[61760,-3650],[268346,-2210],[318034,-4274],[27645,-5187],[150957,4083],[125470,-576],[294893,-4491],[290125,-360],[166433,-6028],[169689,-3385],[162121,-552],[47455,-4034],[403107,-5260],[316311,-5594],[64429,-2379],[406531,-456],[732152,-7780],[352661,-6339],[299416,-2834],[381099,-1920],[79566,-1466],[599549,-3290]],[[37355920,99726730],[43349,-117854],[1382,-43440],[-18883,-21012],[-56274,-36164],[-24409,-49465],[5451,-80660],[14948,-51509],[-1495,-68628],[-7323,-21060],[-26964,-24493],[-72336,-24974],[-33038,-20531],[-62043,-66059],[14209,-52301],[103785,-147439],[5657,-32226],[-18145,-67981],[-29290,-17265],[-39319,-408],[-62177,13063],[-49517,-101430],[170,-15320],[40757,-59313],[-2668,-29896],[-17806,-30856],[-6869,-60610],[87589,8934],[14474,-7060],[12622,-46681],[-32961,-92378],[11333,-66060],[42139,-49610],[-8629,-105010],[1855,-29848],[17597,-85366],[9253,-83061],[25051,-75593],[33340,-73911],[18809,-57943],[-13000,-55014],[-46035,-6148],[-17446,5476],[-39206,-10111],[-16215,-36500],[2611,-29030],[44238,-35036],[47001,-13231],[13927,-28094],[-4825,-41231],[-25487,-14216],[-51089,34386],[-24976,3002],[-22348,-28504],[1249,-42766],[48421,-71319],[2479,-18537],[-29764,-41495],[-40586,-19811],[-1931,-29080],[13946,-12415],[51863,7469],[24467,-25574],[-27588,-33378],[-52660,-20748],[-6376,-37196],[34646,-56141],[12563,-42647],[36821,-47235],[-2743,-25044],[-54361,-69999],[-42556,-111827],[-24427,-44665],[-11674,-37244],[-9593,-86494],[16820,-82677],[85867,-175583],[19187,-69397],[123047,-179545],[53263,-100687],[57730,-85367],[49972,-41733],[111240,-77803],[22025,-39477],[11656,-77515],[-6528,-55805],[-21779,-22740],[-38391,-13952],[-85981,336],[-28608,-12271],[-32924,-37411],[-8932,-44448],[7797,-57344],[22706,-15223],[58903,-20700],[34078,-29729],[-11014,-67115],[-24503,-27759],[-44655,-20292],[-15004,-17865],[4674,-33114],[89460,-275092],[32735,-70142],[83539,-134521],[24408,-62890],[16121,-65388],[284,-65434],[-20018,-74465],[-8800,-55806],[-812,-154380],[-11069,-54197],[-84864,-234847],[-44238,-51940],[-20115,-48601],[-7342,-42071],[342,-75953],[11750,-94515],[25411,-118744],[42234,-58664],[69234,-47475],[44277,-40220],[16083,-63947],[-2044,-56359],[-9177,-49850],[-25033,-32274],[-25241,-17937],[-27247,-4132],[-128384,26246],[-57824,-12149],[-37484,-17795],[-19906,-24588],[18809,-28888],[37786,-4106],[65298,4130],[24429,-8020],[38770,-53766],[1419,-64690],[-36008,-49011],[-66113,-48025]],[[37430206,92879193],[-39867,-21516],[-47399,-69230],[-42365,-72951],[-64674,-155052],[-28950,-45793],[-93340,-87335],[-41836,-73935],[-39205,-82317],[-22745,-74153],[-25241,-107841],[-27266,-57824],[-22839,-25909],[-85657,-53118],[-88459,-20147],[-118884,-2400],[-41476,-23390],[-67720,-87815],[-84127,-90960],[-29215,-22356],[-42440,-12535],[-56917,16881],[-71674,35611],[-36386,7132],[-52527,-15729],[-126359,-1296],[-34550,-36356],[-6851,-58448],[-1607,-68990],[15288,-68869],[45146,-117759],[-9327,-5523],[-352586,-275452],[-135118,-102872],[-610034,-471735],[-423616,-327104],[-20322,-8189],[2667,-17169],[-32619,-2906],[18,-88608],[-30843,-15201],[-9346,-42791],[6300,-88847],[12431,-22836],[-20283,-15849],[17598,-66948],[-6396,-14265],[8381,-38829],[17825,-19785],[-30710,-36452],[-6471,-35011],[-43292,14983],[-26074,-18417],[-28250,-2402],[-28270,-31432],[-46566,-14025],[-76348,37990],[-29480,-2378],[-46584,-18105],[-68952,8669],[-25563,-10447],[-39450,11599],[-19414,-22188],[-18885,10181],[-15571,-14263],[-4598,-39070],[-19945,-26582],[-27587,-14575],[-24542,9845],[-25297,-39477],[-58658,-2450],[-21703,-27494],[-40415,-890],[-39338,28264],[-35517,-336],[-37824,12823],[-45847,-37101],[-4919,-23629],[-17824,-8835],[-101382,6915],[-16577,45553],[-44863,-5667],[-70785,16281],[-26056,16375],[-28268,-19401],[-50615,36980],[-65506,30784],[-46208,38301],[-26301,936],[-22118,-37893],[-41553,-19929],[2820,-68150],[-20152,-4346],[-20151,28936],[-22499,5810],[-21702,-29632],[-429804,4852],[-452568,-6340],[-238885,1560],[-79451,2090],[-236898,-4130],[-82708,3026],[-558981,1992]],[[30809689,89513582],[-2214,87720],[-322,457111],[-1910,437372],[2649,32946],[1797,515702],[-1495,216838],[1893,346506],[-653288,2498],[-158998,2546],[-523940,5331],[-444601,1680],[-173889,3890],[-76,107627],[-5280,94298],[-5127,174623],[-188,503263],[-1817,322207],[-34003,-15778],[-111258,-1056],[-12223,-6892],[-51070,2090],[-15553,22596],[-34476,-4299],[-36708,16185],[-35023,-16113],[-24353,-29992],[-14949,10759],[-9308,-21469],[-41117,15873],[1986,-40221],[-15212,14791],[-31638,-10661],[-36915,840],[-53472,22788],[2668,18683],[-26283,57270],[-37408,21589],[32375,27302],[-16254,16785],[-359,66252],[-66453,37917],[16386,10950],[-13056,61904],[-30161,47523],[-30899,5811],[-33094,-19403],[-33359,42622],[7153,18899],[20776,-1584],[-34211,47233],[-28799,-6316],[-21419,13327],[16008,27736],[-34589,16209],[-5921,42382],[-40001,18346],[-5790,61258],[4181,22979],[-33150,9077],[-42252,43416],[-28080,-5042],[3084,-23221],[-74362,2882],[9348,-21636],[-27436,-25767],[-10729,11767],[-44446,14120],[-19073,-5428],[-27834,14385],[-34475,-11479],[-9972,26918],[-35099,22189],[-27608,53188],[-14778,12943],[-25751,46993],[-8988,31554],[-27834,-528],[-23652,29848],[-30162,-21804],[-20320,15585],[-51600,4058],[-13283,-33666],[-40020,10157],[-10104,-17577],[-16859,10422],[-32506,-10710],[-43104,20579],[-7248,-46201],[-41135,-7804],[-20928,13327],[-42156,-15248],[-32848,12101],[-38051,30402],[-34287,12173],[-11314,36020],[-27153,-6748],[-27040,10543],[-6186,-19692],[-61023,18227],[-14891,12029],[5354,39743],[-33850,26702],[-68893,7396],[-30805,-30208],[-24523,-6196],[-31466,22117],[-372264,-2162],[-380550,4010],[-472303,480],[-192055,1754],[-265394,-288]],[[24937028,93756555],[681,466162],[0,588414],[-163747,-504],[226,349677],[164165,-456],[1475,572949],[-1853,412400],[-4372,146886],[1949,103256],[-2138,82053],[663,383943],[4409,674524],[-3067,128446],[4106,38709],[11902,1954415],[-1172,218831]],[[65775036,43100785],[24748,333275],[-1154,302852],[-4276,197674],[2535,34196],[-5317,723317],[1307,82173],[-4030,94252],[-511,218998],[-3521,54701],[3028,130271],[-3482,171573],[-15743,61881],[493,267192],[8553,2229844],[4579,129911],[-2007,480067],[1249,312937],[-4483,73624],[-436,251320],[2082,436532],[-2139,84212],[511,472456],[-2554,1254317]],[[65774468,51498360],[524375,-360],[454497,3651],[129934,-1945],[398300,-2211],[89025,3988],[101931,-3507],[82536,3531],[26433,-4996],[430637,-1033],[106019,12679],[116310,-3937],[28799,2065],[154040,-2017],[517205,5786],[300398,-3193],[280626,5835],[418414,697],[2139,4106]],[[69936086,51517499],[2498,-170228],[1058,-497476],[-2156,-20581],[2516,-138482],[4844,-970027],[1551,-486911],[241989,2233],[-398,-86112],[76311,-648],[228,-264143],[246473,601],[-3557,-222095],[11825,-45217],[21608,-33354],[-3234,-23678],[-20511,-34938],[-21609,-55974],[10407,-25838],[34928,-33690],[2612,-27447],[21116,-80971],[-8268,-35228],[6716,-26222],[26585,-23005],[29518,-76121],[14741,-6867],[18846,-38302],[-5961,-35010],[24144,-47186],[47133,-28023],[25488,-36787],[64580,-28024],[10104,-29248],[17332,-11261],[18051,-55878],[18146,-33066],[-9177,-91225],[19811,-1609],[1249,-28720],[23557,-19738],[833,-21469],[-26585,-14480],[15288,-39092],[18448,-10326],[-25846,-49370],[15649,-27664],[-14570,-62650],[8968,-12415],[33984,-8163],[151,-25863],[14493,-18681],[2404,-51148],[22574,-18899],[16839,2522],[26624,-59384],[-13625,-15224],[12034,-41375],[-6490,-22860],[-22289,-9173],[-8591,-30833],[14948,-42551],[-45166,-22091],[-17010,-40199],[35554,-52203],[-12223,-16185],[2573,-83205],[18165,6003],[25335,-14672],[2593,-39068],[14097,-16426],[23197,1321],[21287,-57703],[23218,-3362],[40624,-27855],[-6642,-43704],[26983,-37459],[26206,384],[-4277,-22333],[24371,-21107],[26700,192],[17047,-41663],[-18940,-28864],[8968,-13183],[-9971,-41709],[8363,-21781],[-19337,-18970],[10198,-34290],[32300,-38012],[-8609,-14768],[16102,-16233],[-4637,-45024],[30976,-31385],[-26888,-17339],[25108,-56838],[36481,-12246],[-14512,-31817],[51940,-12776],[-8893,-22571],[17086,-7445],[-8099,-21683],[23445,-29128],[29366,5858],[4389,-27470],[19036,-18875],[-1363,-17721],[19583,-10517],[24201,9940],[833,-21226],[26906,1489],[37692,-77274],[-33188,-31193],[20586,-1945],[-9952,-18514],[9933,-27687],[-11409,-22477],[-5846,-47882],[-10011,-16305],[3595,-42623],[-34645,-10180],[4504,-42840],[-5374,-33810],[-17918,-30064],[49782,15176],[10237,-27544],[-4410,-35346],[24221,-10134],[32696,6845],[-27190,-24975],[30615,-12847],[-6755,-72182],[18108,-17578],[10558,-37844],[-15137,-64355],[16065,-38733],[8420,17938],[38846,-6364],[55137,-40005],[21343,-40726],[-2705,-27832],[-32414,-2904],[-4824,-29057],[-14929,-6987],[29915,-54991],[-11732,-29704],[8723,-25957],[-23671,-34339],[22838,-10277],[-11390,-27879],[13755,-40487],[-8420,-21995],[27003,-18369],[-4106,-22454],[-18563,5499],[-2497,-30903],[-18771,-14648],[4730,-49948],[-17956,-16929],[3028,-35755],[21834,-71847]],[[71669436,44586755],[-28741,-5379],[-6206,-31456],[8685,-49347],[-8516,-9462],[6170,-34482],[-9311,-13976],[10634,-37171],[22669,3530],[3425,-62698],[37522,-19691],[13037,8259],[23690,-14095],[-303,-28816],[-14248,-4058],[8135,-25646],[-13150,-19474],[46472,-48722],[-1003,-21011],[-38298,-58303],[-4597,-73145],[14645,-33018],[40474,-63921],[-32413,-35179],[-7625,-39287],[32203,-41349],[-15232,-4179],[3539,-44040],[-29385,-44183],[-10332,-28839],[21609,-14240],[474,-47906],[24636,-37941],[-13283,-16185],[509,-34650],[-12753,10782],[-29573,-37077],[5732,-22763],[19755,-12992],[-23501,-49922],[48061,-26392],[25355,-54460],[24882,-20700],[-25942,-23484],[-264,-30256],[16858,-2377],[-20076,-53310],[246,-31457],[-22270,-15417],[511,-22235],[19641,-11526],[2233,-23750],[32601,-1585],[-17502,-27229],[13529,-408],[41287,-41495],[8761,-27928],[10615,13328],[22592,-17457],[-16329,-12680],[21722,-37795],[-18469,-27111],[-19204,-24],[-7664,-19162],[18052,-12415],[-227,-43656],[-15082,-44713],[13663,-12391],[-18127,-16881],[3935,-19354],[-26623,-25118],[965,-37195],[19281,-23388],[-24825,-88944],[-13490,-26320],[13963,-12294],[-33358,-18658],[-38089,-39933],[-4976,-49084],[17199,7590],[-3784,-23222],[26471,-37027],[-14589,-36428],[26301,-95644],[-18107,-23892],[2989,-24158],[-15895,-5690],[56519,-28048],[-19034,-9701],[27889,-26246],[-19943,-144],[474,-71632],[9972,-35754],[-33455,-30185],[17920,-58184],[32620,-56501],[26245,-32275],[-9915,-45599],[22725,20699],[20984,-31001],[-890,-73553],[-39584,-36955],[-2856,-45888],[-14437,3072],[547,-37531],[-22062,4154],[-38752,-25454],[6944,-24757],[24846,2882],[12411,-78979],[29140,-72688],[14381,-7347],[-5488,-100567],[0,-122947],[-3481,-97107],[4483,-284554],[6226,-155604],[-1003,-225531],[5620,-202213],[3159,-502999],[7872,-55159],[-6642,-25934],[-7435,-146502],[10104,-34987],[587,-52901],[-9632,-139468],[7606,-118431],[-1021,-291709],[-3727,-157117],[7493,-192585],[1930,-369391],[-6982,-26366],[2156,-62842],[5053,-575663],[284,-191767],[4105,-265921],[-4105,-7107],[6621,-511884],[-1797,-331691],[252245,-333806],[723883,-886006],[123993,-542813],[183881,-543486],[158392,-371577],[128346,-377819]],[[73467217,33118929],[-1566067,855678],[-757337,413840],[-256916,125852],[-7001,29104],[-67135,24540],[-60114,4658],[-88213,-1608],[-65393,12366],[-64939,30737],[-72848,52012],[-45847,2210],[-28704,-11502],[-83652,-50788],[-109292,-24805],[-70369,1176],[-62555,8741],[-54380,15225],[-66944,25789],[-61193,-12559],[-135669,-90264],[-101740,-64644],[-68214,-54244],[-42837,-52589],[-66984,-55062],[-43084,-5426],[-78751,30640],[-72299,42862],[-67532,9750],[-101344,-34002],[-121931,15273],[-26244,-2834],[-74873,-24470],[-32034,-16017],[-110030,-68844],[-185204,-38206],[-218903,-14600],[-491944,-51915],[-158884,-5282],[-365718,3481]],[[67314099,34143202],[7929,43224],[44069,186725],[15023,50115],[-25090,203318],[-14456,136609],[-11088,136106],[-7758,317307],[12545,153323],[21268,125780],[45298,92354],[123937,124627],[18146,31313],[-1514,38180],[-13776,79724],[-48212,99438],[-14455,89808],[-24409,28190],[-27398,15609],[-51713,-13783],[-96047,-54726],[-23917,5883],[-10142,43655],[6395,38758],[23804,56142],[-3444,51773],[-63425,58350],[-30937,120],[-144145,-97588],[-41438,9870],[-1570,24228],[14039,37605],[-2630,47498],[-24048,57943],[16518,44399],[52507,47715],[18335,48530],[-8042,26053],[-37199,47570],[-3727,28287],[23141,49467],[340,65004],[-55025,108082],[-24956,8092],[-33264,-30377],[-19111,1177],[-132490,97637],[1930,38253],[28326,17697],[42857,-7539],[8005,29176],[-38354,38228],[-21704,39357],[1211,93122],[-21552,42455],[7815,54006],[-32677,49923],[-62007,33137],[-19697,4658],[-29708,28672],[10918,20844],[24788,-22645],[19243,-2761],[7248,24518],[-38184,91992],[-38,-28622],[-27417,2833],[-25450,22956],[5467,20388],[-28873,11837],[-8705,24855],[-34721,22811],[-56140,12799],[-36652,-9820],[-25694,26461],[15250,33498],[-14532,4828],[-23159,-22358],[-16802,17938],[-6586,55063],[-26982,15824],[21078,24398],[-32374,9268],[-12129,14672],[-27702,-409],[-53169,70383],[-37976,2065],[-23841,17098],[-14210,41301],[16878,67261],[-11107,27015],[11865,19619],[-10237,32465],[-49329,79842],[-28496,28096],[20587,38540],[23765,18707],[24599,4539],[-5432,25164],[11525,57656],[-22518,16304],[-30841,40847],[-10350,58280],[-30067,16809],[9649,47714],[-21760,19066],[7570,15200],[-27778,17361],[8590,17721],[-16102,45073],[14400,3409],[-1135,37005],[25108,9749],[23483,51196],[-10823,32010],[16442,41277],[-41930,61449],[2517,33138],[-38543,72],[-1837,18827],[29311,40029],[-2044,28935],[-23311,1945],[-22744,22117],[-48667,7251],[-8326,61233],[19546,43729],[133,31769],[12565,29872],[-15384,21443],[-21155,-16017],[-38031,-8475],[-31052,4562],[-19432,46561],[-29271,26318],[-39963,-600],[3009,138195],[-5772,108875],[1079,68196],[-1174,268512],[2309,283041],[-681,247142],[-3312,115960],[172,146045],[-2328,225459],[1949,271826],[4844,287724],[-3784,861873],[-3576,265223],[2365,625155]],[[32755832,79026589],[-623,69206],[6451,913741],[-1665,611179],[7550,265295],[-10955,412279],[5260,222360],[-2081,3987],[2856,376546],[151,278742]],[[32762776,82179924],[968333,-18417],[199358,-432],[38317,-4227],[1472951,4515],[104543,696],[20661,-116942],[20588,-34004],[66471,-66202],[31523,-20748],[52640,-22189],[35705,-28766],[7267,-22237],[-7323,-71967],[1721,-50427],[454933,552],[65261,962],[194854,-3218],[165052,-530],[-5108,434156],[279774,2664],[112282,-1680],[588840,13952],[381233,-4466]],[[38012652,82170969],[11221,792],[630164,-5452],[134969,-1896],[10330,-27424],[3992,-74223],[12242,-53861],[8156,-109739],[-11352,-48003],[-58658,-40821],[-34059,-33618],[-58656,-46851],[-24694,-45167],[7097,-44737],[17597,-50523],[52356,-24878],[47852,-6026],[26245,5354],[64389,37701],[49897,1128],[23481,-20386],[170,-41352],[-15950,-16425],[-65526,-22018],[-123444,-68414],[-20416,-44183],[-113,-150658],[-9537,-58232],[-29404,-50283],[-17824,-14791],[-98903,-11094],[-22253,-38901],[39263,-51461],[50975,1922],[87511,-5115],[47039,-9222],[56917,-31192],[26661,-38277],[5752,-43320],[-10332,-47737],[-31560,-58784],[-58223,-43967],[-45431,-11311],[-29592,-20459],[-26982,-58328],[15402,-38684],[47512,-12799],[98695,24782],[54040,30184],[33227,33066],[36082,75497],[31467,113989],[33075,28984],[34457,-5859],[19129,-15681],[40624,-76289],[6963,-37868],[-4521,-59312],[-28194,-54534],[-17086,-13712],[-166737,-32056],[-45638,-28336],[-95063,-112910],[-37692,-34458],[-84466,-36572],[-62724,-36740],[-22290,-33257],[-23577,-67982],[-5468,-93674],[18997,-45937],[27890,-28888],[45753,-7010],[77125,6962],[0,11263],[47834,34770],[60776,58280],[73435,64282],[124088,71151],[78220,72208],[36198,19738],[50161,2018],[28269,-16953],[13681,-28312],[6697,-90962],[-35573,-51675],[-43254,-33954],[-48459,-11695],[-54909,-30544],[-20776,-21900],[-7834,-25815],[6566,-34217],[67210,-46201],[32091,-127726],[39943,-83061],[3993,-47977],[-8042,-44257],[-21420,-51171],[-71335,-99821],[2120,-37366],[23747,-32296],[39452,-5619],[57407,8307],[35364,11575],[54344,56119],[33169,16785],[46189,1416],[78392,-10278],[51768,19475],[77257,80155],[46566,21756],[28364,-7851],[18846,-25790],[32980,-24471],[34779,-4489],[19904,20098],[6907,28864],[38752,37436],[40643,-18681],[7134,-33018],[-9688,-41255],[3577,-28072],[49933,-61064],[50465,-21467],[48931,-41831],[98354,2762],[23350,8331],[29688,38446],[31598,15392],[30066,1080],[54021,-30256],[57599,-14335],[46886,24733],[18866,35227],[29064,10446],[18846,-28047],[6111,-40727],[33623,-19258],[68346,30184],[45828,-27495],[57579,-13783],[104466,-51219],[20359,-41831],[-28533,-17579],[-22934,6628],[-31088,-6580],[-11731,-34121],[16801,-13760],[38734,-5547],[11202,-18129],[-9423,-31242],[-48175,-19355],[-69330,-35754],[-8665,-25286],[18846,-10997],[66756,6555],[22422,-23124]],[[40655395,79156909],[-4598,-34652],[-59130,-63802],[24427,-50067],[-1532,-29128],[-15290,-29152],[3558,-22572],[35138,-37436],[-6131,-36884],[30067,-21996],[37180,-4442],[25487,13231],[24958,-4970],[30312,-66901],[65128,-39549],[30880,-32802],[1893,-37172],[-24257,-58712],[6697,-76841],[-25203,-82773],[1458,-44929],[35856,-9700],[32110,24565],[18695,40629],[16556,72208],[23955,28816],[46925,21732],[35080,-31194],[3463,-84214],[63311,-70958],[24618,-50884],[-3804,-48625],[-14002,-21517],[-43254,-37267],[-31524,-46393],[-31958,-96988],[436,-25550],[25903,-43392],[57105,-49178],[29159,-16761],[43594,-41086],[-5467,-18083],[-48250,-25382],[-7474,-40749],[43482,-59288],[6376,-49851],[-26414,-14143],[-44713,-8694],[-44693,-49275],[-15251,-7155],[-81609,-8788],[-92696,19907],[-60058,32272],[-32468,3314],[-22876,-18129],[-25904,-50619],[9516,-28192],[26908,-40799],[-5790,-23723],[-30199,-1418],[-42291,72160],[-42610,7851],[-32999,-28406],[-29234,-130200],[-10464,-96098],[-24221,-27976],[-40339,20003],[-11675,46417],[34152,54005],[12263,45001],[-4447,19402],[-24580,6700],[-29252,-47115],[-25469,-26582],[-23689,6845],[-16898,41830],[-53339,75161],[-43426,-1226],[-10614,-24061],[33338,-59048],[-4369,-25910],[-45773,-72662],[-37975,7036],[-14646,18177],[-26451,-2208],[-76236,-45577],[-57579,-23965],[-18997,-23750],[-29480,-71703],[-68704,-81691],[-18165,-29440],[14608,-37916],[59717,6098],[34134,19523],[65678,12799],[36290,-14551],[20550,-86207],[23897,-73841],[24371,-42695],[27001,-17169],[17730,2978],[80096,97517],[16916,11814],[41607,-17145],[-4106,-34818],[-44559,-25214],[-33113,-42432],[-10332,-49057],[7663,-36861],[22613,-41327],[43519,-57053],[1514,-59264],[12393,-11575],[103766,-32010],[32791,-58328],[62460,-54149],[3103,-27758],[-41834,-5284],[-23671,24687],[-27985,4201],[-18299,-24972],[437,-43369],[17009,-47065],[57295,-1656],[22574,-9557],[8685,-57223],[-32451,-48243],[-46585,-117928],[4749,-25213],[40947,-44857],[17104,-37747],[-21399,-48171],[9820,-18153],[41343,-6293],[14816,-50691],[17787,-24805],[13377,-50884],[21078,-50811],[-9196,-25262],[-70501,265],[-17314,-16642],[37541,-45359],[-11050,-15945],[-30179,-1610],[-14400,-28838],[24825,-50259],[35062,-43608],[7095,-41399],[-9253,-12847],[-72697,-46849],[-15098,-25742],[7777,-41351],[14890,-27711],[60833,8118],[795,-40871],[-35667,-44857],[-2157,-17577],[57995,-105728],[53263,-13689],[15441,-24612],[10198,-81476],[31675,-43584],[5488,-20987],[-8345,-62458],[6206,-36092],[15555,-31385]],[[40750798,74832748],[-284261,1417],[6225,-1055899],[-712455,0],[-1099306,24],[-100323,-6386]],[[38560678,73771904],[-322821,984],[-228706,-1152],[-816996,192],[-195651,-1321],[-700760,-696],[-278736,15584],[-838832,-2545],[-128156,2809],[-157617,-4418],[-889371,-6028],[-72547,3818],[-579681,-12223],[-37882,2859],[-360191,4034],[-204562,168]],[[32748169,73773969],[-321,328689],[-1533,63826],[113,364182],[-907,547303],[-2310,234151],[1665,209489],[11732,1129449],[3614,580515],[3842,464266],[-2630,510563],[-10219,316732],[5979,349389],[-1362,154066]],[[48262088,80400755],[1443736,-9580],[781500,-1681],[504376,-6820],[524449,-3386],[-14928,17289],[29555,41783],[34664,73721],[34664,-6581],[32129,23654],[-14796,33546],[18353,56093],[19377,12103],[78013,-3314],[9687,24229],[43331,1634],[80058,59408],[18864,35755],[22953,6028],[13264,25332],[22951,-4417],[11220,18682],[58128,-6629],[31618,3868],[24977,-21997],[17842,18683],[44353,-44017],[20909,4395],[22441,60489],[32639,552],[31619,29680],[21399,-17601],[28062,20338],[43859,51701],[7153,53333],[17862,50066],[42857,42334],[33151,23102],[30086,7684],[27531,-44593],[-4107,-37388],[22404,-61616],[13774,-14313],[20397,7685],[28024,-41279],[16802,-42911],[50465,-30808],[42838,-2786],[22952,-17049],[33113,-49515],[40775,-8837],[18884,17553],[26982,-46225],[12772,38517],[34191,2282],[70881,-45601],[38771,-36284],[30803,-49346],[28364,-8380],[34154,-24205],[66794,-13713],[38712,106739],[38203,78666],[55044,103929],[99887,134279],[29573,31362],[27039,4418],[22423,41807],[54041,51723],[50993,39621],[76481,50621],[116254,64354],[159112,71535],[117805,46729],[83653,24181],[113739,-8236],[145847,-4995],[68856,-11550],[121874,4922],[122933,40077],[105582,53861],[88233,10951],[68345,16593],[107114,-7877],[60663,-55589],[76973,-80924],[96804,-92547],[3669,-32560],[-27662,-87168],[-26775,-24518],[33756,-89639],[-10444,-42479],[6982,-57176],[-19867,-60728],[-928,-43439],[-11751,-25647],[24637,-33618],[10292,-32921],[-7757,-35924],[27380,-33306],[-5677,-52853],[-46054,-37099]],[[55238011,80586977],[-48610,32466],[-67834,29054],[-64144,-5642],[-157314,-87912],[-305112,-187638],[-48610,-41757],[-47114,-51077],[-33964,-56358],[-14741,-59263],[-14909,-84478],[-30768,-74969],[-30008,-121481],[-26246,-121266],[-22043,-131303],[-5563,-64258],[-21929,-99678],[-17276,-166171],[5809,-116702],[29138,-143405],[55989,-139299],[81724,-153395],[49764,-38325],[147191,-10831],[76839,-18897],[124542,-25598],[42424,-15705],[105809,-56815],[31997,-12871],[65695,-14911],[119093,-10543],[212736,-1032],[48665,-16689],[5753,-9412],[82442,85341],[55590,43391],[47570,27136],[91562,34122],[88667,25165],[97067,8309],[92641,1008],[86792,-11983],[63672,-17049],[86983,-31336],[25675,-27158],[116729,-82605],[125790,-46945],[25583,-12967]],[[56571757,78505245],[25505,-15825],[132451,-52829],[117314,-28816],[73795,0],[81306,7132]],[[57002128,78414907],[9537,-151209],[-3804,-148880],[-79470,-170493],[-9462,-14407],[-64332,-52829],[-85148,-48003],[-698226,-410621],[-28383,-33618],[0,-67236],[41629,-559502],[3783,-33595],[-13245,-36020],[-20814,-21611],[-26489,-7203],[-73796,2401],[-119508,14384],[-117012,2425],[-32166,9604],[-49196,26416],[-54872,43199],[-119226,115285],[-39736,43225],[-185431,326551],[-22705,24014],[-62442,88847],[-32167,31218],[-62441,45623],[-39735,21613],[-68118,26390],[-62442,0],[-47323,-9606],[-70009,-28790],[-132451,-110485],[-30276,-33593],[-54872,-91250],[-18922,-40822],[-13244,-76841],[0,-86424],[22706,-76840],[34059,-64859],[51087,-79219],[47305,-48027],[34059,-26438],[87038,-52805],[43520,-19233],[117334,-31218],[264901,-60008],[111638,-21611],[107854,-26438],[34059,-4803],[168421,-45601],[134344,-28815],[39735,-14409],[62440,-33618],[51089,-33593],[56765,-62434],[34059,-67260],[22706,-72039],[17030,-84023],[10974,-92210],[76064,-35754],[-268629,-400296],[-65942,-68942],[-47644,-58328],[-85148,-67235],[-79471,-48026],[-39736,-16809],[-87038,-21612],[-111657,-33619],[-58658,-4802],[-141911,-24014],[-210030,-14406],[-213832,-33619],[-225168,-21611],[-39735,-9606],[-85148,-62434],[-85147,-79243],[-88932,-98452],[-71902,-103257],[-54872,-64834],[-62442,-100830],[-17029,-69638],[-1892,-67236],[5677,-60033],[-1892,-57632],[-11353,-105657],[-64335,-218518],[0,-55229],[34059,-19210],[32168,0],[88932,21612],[18920,-45625],[-3783,-57632],[-13246,-103231],[3746,-28792],[-9423,-36044],[11353,-21611],[60549,-67236],[13245,-36020],[-35326,-65916],[-36575,-1320],[-70881,-13280],[-58468,-28023],[-29592,-93170],[-49197,-26414],[-43520,-9605],[-66225,12007],[-34059,-28816],[-43519,-91250],[-70011,-88848],[-68856,-68508],[-274401,-300186],[-131543,-180050],[-18846,-17865],[-69082,-40823],[-181534,-127628],[-37219,-8910],[-297088,-110868],[-32167,-43222],[-15136,-43224],[-13247,-62409],[3786,-84047],[13244,-50426],[28383,-45626],[87020,-98452],[13529,-25166],[82518,-96796],[88931,-81668],[40227,-60512],[84901,-69543],[10881,-41710],[-15402,-32514],[-12697,-50716],[2914,-66154],[-4504,-42720],[-52336,-89112],[-13757,-46945],[-79471,-98454],[-62440,-55229],[-83255,-48026],[-98412,-7204],[-37843,2401],[-47305,14408],[-94608,38421],[-66226,43223],[-56764,62433],[-32167,62434],[-34059,98454],[-20813,40797],[-20813,64836],[-11353,55229],[-11790,107987],[2423,141220],[11523,85463],[1628,90360],[-33606,131280],[-30748,77633],[-5676,100831],[-32167,16809],[-124881,-52829],[-32168,-16785],[-100285,-31216],[-51088,-7204],[-172186,-7205],[-104087,-12007],[-43520,-9604],[-111637,-36020],[-49198,-21611],[-37843,-26415],[-45412,-50427],[-41626,-55230],[-41629,-72038],[-5676,-48026],[-17030,-45625],[-17029,-69639],[-15137,-103254],[-15137,-60033],[-60549,-204110],[-37844,-192081],[-32167,-120065],[-45412,-132070],[-20813,-74441],[-22706,-105657],[-17030,-105656],[-5676,-79243],[-34059,-112838],[-3783,-79243],[-35952,-463450],[54872,-19210],[49197,-28816],[49197,-12006],[90823,-9605],[87039,7203],[136236,24014],[145716,33618],[83255,4802],[87038,28815],[54873,26416],[62499,21082],[100226,26944],[96444,16688],[60474,4946],[89310,28816],[47171,31241],[58581,28528],[126606,55494],[117465,7179],[51087,-4802],[107872,-26415],[45412,-4801],[49196,-24014],[77427,-50283],[41780,-52972],[28383,-64835],[9460,-62435],[-9460,-36019],[-58658,-93626],[-47303,-64835],[-34059,-38422],[-137353,-108009],[-46187,-26006],[-50672,-3170],[-115347,21900],[-49726,24],[-92734,-12055],[-35668,2521],[-52867,16954],[-110105,47810],[-56763,16809],[-105980,4803],[-85924,19425],[-73018,9390],[-586872,-2593],[-128989,-29176],[-86680,-3050],[-37068,-11838],[-53889,-29752],[-23482,504],[-85904,-154619],[-22706,-25215],[-97238,-147895]],[[50390086,69112403],[42801,344106],[-140871,-4827],[-182877,-3050],[-4826,-3458],[-62251,73264],[-2630,28288],[14399,20362],[-5015,24542],[-60700,15921],[-82176,-20124],[-102082,7349],[-54759,36186],[-29935,-2760],[-35004,-23102],[-14722,-34651],[-16746,2211],[-29857,35419],[-3558,21899],[-17388,7493],[-59849,-7757],[-42821,-16233],[-103159,-76313],[-83199,-4562],[-241913,5642],[-93207,-1849],[-443259,3050],[-226416,264],[-186017,8790],[-261629,15320],[-582862,2545],[-775,-10302]],[[47276783,69556066],[-125262,141868],[-43594,58688],[-74078,142205],[-47115,71487],[-64732,117976],[-89083,135938],[-71295,128853],[-106643,262582],[-13321,57342],[-5733,88825],[6434,54124],[36385,107578],[72792,168523],[38790,127701],[33491,142806],[-2308,94059],[-22386,400993],[-12695,130871],[7474,233502],[-59963,34962],[-71031,-22067],[-27569,15248],[-9858,36234],[3595,56672],[-17655,46345],[6605,51987],[66394,65437],[14684,39573],[-28383,69638],[9462,55229],[11353,26415]],[[46691538,72697660],[85146,204110],[37843,60032],[81364,76842],[90824,93626],[68117,57631],[96500,67237],[22706,31217],[26490,55229],[35970,55230],[70010,48026],[88933,21611],[107852,14408],[100114,-12846],[47550,19090],[38715,45745],[22989,53981],[4654,56815],[12432,52827],[26131,28168],[53889,34410],[42024,41423],[45053,17002],[12242,17961],[-6339,48890],[4239,74849],[21532,74512],[3634,36907],[-17143,119754],[3425,101743],[-31600,54197],[-4805,67067],[-19773,23198],[-65129,21323],[-49991,52397],[-17503,9820],[-97692,-7131],[-27683,8044],[-13622,18443],[-1023,36019],[24013,62266],[67739,30904],[27020,60081],[17976,19234],[71390,34890],[12016,48362],[-8989,39671],[25148,33017],[49915,8188],[18032,11862],[7057,39743],[-52905,49370],[-55,62530],[-9291,53788],[5922,35684],[59697,50212],[51014,86758],[50823,29439],[28495,-14454],[55858,720],[31561,-22285],[32034,-2352],[28818,39476],[1211,30954],[-16255,75640],[-472,36788],[42233,76674],[11977,36716],[-19034,39645],[-64712,-7204],[-30994,3242],[-15837,20651],[11353,20339],[75193,32297],[14438,29753],[-17408,41181],[-52545,56406],[-80341,93148],[-87949,69564],[-18902,20579],[-1153,41087],[33149,81741],[51410,79170],[5470,28575],[-8004,33979],[-47796,63874],[-1136,27856],[46092,51411],[24032,56983],[-3956,37509],[6964,25333],[26169,32417],[25942,48315],[4918,42526],[-5865,21564],[-46036,64714],[-4730,41975],[41361,46249],[5128,15945],[-7587,64788],[10936,120520],[8004,27039],[-6604,47161],[30484,41063],[37976,3746],[110956,38109],[11353,14311],[-2914,35468],[-51884,32080],[-11844,44233],[2970,27494],[27513,21155],[53698,-24324],[19831,24492],[2214,66636],[-15119,31866],[-50048,43679],[4995,39117],[43691,78811],[14380,54917],[-1778,52542],[-31996,25933],[-53795,2234],[-20037,14456],[-10806,34338],[-51126,41710],[-44162,10397],[-34116,-4394],[-10709,-13183],[-51922,18731],[-68760,48],[-13718,66564],[25506,83612],[30425,24807],[24448,-6916],[14815,14023],[25108,-14889],[53947,23053],[-19338,51172],[-454,78115],[12753,35202],[-31069,6628],[-22385,47881],[-21382,26968],[3085,58278],[12242,41279],[-2516,45097],[-16311,85485],[-20360,38926],[5621,35203],[36177,40126],[6149,46777],[-8135,21420],[530,57799],[22951,39045],[1532,29128],[-21892,40196],[-984,42911],[-32091,13233],[-6112,18681],[16842,61066],[43802,-22021],[15309,12631],[32090,504],[53114,48531],[43291,9916],[14760,19812],[-12753,42910],[12715,52782],[-2574,38516],[14153,33595],[37845,19185],[9460,153708],[-3785,50427],[-3784,581065],[-7549,340984]],[[23957683,86406544],[127513,936],[384204,-5426],[48477,6892],[1201125,-7900],[844471,-9053],[271222,408],[65658,3194],[-247,147654],[-3425,169149],[2405,85149],[-2895,248750],[-6793,90698],[-1477,300931],[647895,-4588],[146774,1130],[259661,-3986],[92527,6482],[77239,-456],[97994,-5522],[381196,-2570],[244277,576],[335935,-6795],[180265,1273],[488178,-1921],[276048,-2546],[467570,-1056],[220929,-2114]],[[30804409,87415833],[-756,-579097],[360,-527444],[-891,-998773],[315765,-334475],[495273,-529678],[946270,-1008473],[202764,-217870],[-418,-1040099]],[[32755832,79026589],[-360645,-9797],[-155025,-2160],[-221781,3674],[-453172,14599],[-533475,-552],[-51504,-4106],[-50180,3242],[-302046,-12391],[-131904,1368],[-189290,8021],[-239396,6436],[-486306,1801],[-405565,-3411],[-507836,2066],[-662011,3866],[-93983,-2690],[-125885,2570],[-703373,5283],[-676713,744],[-714744,1872],[-279226,-432],[-909865,5404],[-33339,-11622],[-784509,-2427],[-436693,7469]],[[23247366,79045416],[-44767,32154],[-7474,23628],[-68819,45577],[228,14960],[23955,-528],[7739,55686],[18939,-9341],[18601,15439],[-13529,26488],[-20114,11621],[-5469,54557],[-21211,46417],[-15497,14649],[3046,32490],[-18731,17457],[17976,28552],[33471,-11334],[-9139,-21300],[19338,-1032],[35819,-20965],[25204,30064],[-11827,24327],[22195,5499],[-4559,23339],[29611,11431],[13530,19067],[2479,47857],[22648,15537],[10937,-27903],[11618,30375],[41779,-25357],[-2686,28528],[34285,54509],[-16727,24470],[34003,31360],[-6206,23749],[48477,22980],[-4561,31290],[28420,35826],[15913,-4730],[17560,33762],[20548,3386],[14248,31938],[-8741,35659],[-19206,-10495],[-18165,16401],[-151,64596],[19527,-3770],[-22459,30688],[-3728,31866],[39982,6964],[-15858,22068],[54817,12102],[-18751,11453],[4010,31026],[-23499,-10254],[-37069,23941],[16746,36332],[33113,29968],[-38410,15681],[8685,29030],[-28573,9197],[16897,28192],[26813,-2185],[321,71919],[14948,-960],[3672,28694],[-10578,31146],[-21628,19041],[-4692,31314],[9386,16185],[-23463,15607],[-4864,54270],[22877,-6555],[-12583,36859],[17900,11454],[18260,-8500],[6262,28168],[36291,-27376],[-1948,30112],[17067,-2424],[26131,18801],[2460,24469],[31713,-1584],[-1534,37701],[23084,168],[12621,-21684],[10465,16665],[16025,-23869],[39982,19835],[-15213,22356],[33359,18561],[-9386,29272],[30162,21373],[52016,2280],[7474,20988],[-25848,30592],[16935,35924],[-15818,23437],[15534,39405],[-23045,26246],[38751,-7013],[24939,25960],[3083,31384],[15856,-2834],[19754,37436],[32793,30474],[-1382,19497],[29990,32851],[5867,23171],[21305,4276],[13926,38973],[-33359,25717],[4541,314571],[20644,245892],[2063,563968],[-6812,565698],[-21173,306958],[2421,44111],[2725,373930],[5602,130200],[-2744,231917],[-11523,516567],[9213,22404],[4901,253024],[-2970,57896],[-13983,35106],[5090,234151],[-24750,334452],[-16027,965562]],[[20242767,68528094],[862637,2114],[998738,-3530],[34040,-4322],[2331255,9701],[43387,7949],[268687,-913],[356049,120],[71997,1249],[1723000,3241],[-1552,394462],[3293,580369],[12488,1128154],[705209,-3243],[500439,-648],[253322,-1417],[31315,4395],[73472,-4131],[688747,-2473],[88571,-3097],[206076,9485],[70483,-5380],[70937,2474],[591414,-2450],[222082,-2256],[67476,-4178],[95629,6314],[317069,-960],[13643,-1440],[273757,-720],[270938,-3002],[315008,336]],[[31802373,70634297],[-6680,-53910],[39849,-47137],[-1192,-23364],[-25355,-4780],[-21305,-19426],[4163,-59023],[32204,-71967],[3311,-87144],[16216,-19954],[51051,-30856],[18297,-25095],[35440,10855],[15458,46345],[20834,-4467],[19621,-56646],[40833,-47282],[-12658,-47281],[40945,-57968],[17806,-61138],[41534,10063],[23141,-5931],[2460,-73168],[-17901,-19018],[-33132,1825],[-17048,-10566],[1116,-49515],[41173,-41999],[1118,-45145],[9858,-10300],[30690,24828],[16803,44377],[23255,7539],[70160,-29174],[-3027,-53478],[-29215,-82028],[-27834,-27928],[-35118,721],[-37654,20196],[-14608,-3315],[-29573,-45577],[-51639,-20626],[-23500,-23894],[-20398,-61136],[-16197,-19956],[-52223,-34890],[-46622,-46249],[-12413,-39886],[69802,-81572],[73302,-19258],[12923,-18490],[-9365,-40799],[-10823,-9003],[-65281,16496],[-29101,-7949],[-44427,-60368],[-6302,-48074],[29462,-18874],[36291,-10951],[8175,-39860],[-72186,-134953],[-34305,-36956],[-26736,1897],[-26056,32874],[-4030,55637],[-18506,1008],[-7625,-28598],[4239,-64644],[-16368,-18322],[-20795,19764],[-9574,41974],[-23785,-4082],[-11011,-43176],[2497,-35106],[23501,-41231],[-2025,-12895],[-45015,-47042],[-5525,-22403],[43028,-25574],[9858,-18010],[-13869,-38636],[-29027,-17674],[8212,-50692],[-6793,-30184],[-45013,-12126],[2307,-65268],[-19885,-24564],[11069,-31818],[31864,-30808],[20095,-7950],[93889,71488],[16537,-864],[17295,-32010],[-16651,-53718],[-3237,-39716],[19169,-30064],[65090,-8574],[9952,11215],[10578,54509],[58335,39814],[121135,-63346],[24013,-28480],[14776,-100470],[-2345,-42839],[-28270,-47522],[-17918,-51676],[-17143,-11766],[-25411,22643],[-33094,-15560],[-22234,-44568],[-41948,-21851],[-47512,-12199],[-1818,-43248],[24448,-44208],[27738,-20843],[31260,-2136],[18447,11550],[24277,52251],[40321,1105],[10899,-9220],[-3841,-33547],[-47984,-115286],[-52678,-62409],[-11808,-38325],[-41173,-9245],[-35876,58015],[-2137,40677],[-28836,12176],[-39187,-40631],[-31335,-14407],[16481,-51076],[-7303,-65987],[10046,-53910],[12489,-31672],[35572,-54342],[6225,-23413],[-10576,-34579],[-58732,-9196],[-44770,24636],[-22970,-1224],[11807,-25622],[62895,-50836],[49973,-30016],[11427,-34194],[-11069,-15008],[-78581,-63082],[-8137,-44160],[23671,-13640],[62612,-11693],[28762,-44712],[7474,-71536],[-17295,-36450],[-26357,-17290],[-62839,-13903],[-15705,-38758],[16935,-26775],[-7437,-22020],[-32355,-23579],[-6662,-57439],[-11125,-30497],[9234,-14960],[35138,2208],[83746,26992],[56728,69036],[46963,24663],[19811,30112],[40680,-16089],[9121,-32682],[-1854,-38757],[-23292,-85822],[33340,-22813],[72318,16473],[48515,23485],[8572,-35611],[-34324,-41182],[-78544,-15849],[-700,-35131],[13662,-28287],[-16690,-19042],[-28741,-1058],[-63974,30689],[-27815,-4250],[-52375,-38180],[-12641,3866],[-15913,80707],[-26187,34074],[-39736,-3410],[-27852,-51002],[-7758,-81620],[11827,-96486],[-3917,-22547],[-20247,-15128],[-59546,528],[-60056,62674],[-37485,2016],[-15553,-11454],[-41854,9102],[-11600,33185],[-37522,12968],[-32014,-24422],[0,-22379],[31314,-38710],[75461,-34363],[94191,-90673],[54551,-60104],[133832,-102703],[74741,-51437],[125886,-73670],[88969,-37870],[50330,-34290],[55422,-44832],[104674,-29969],[107589,-35635],[83804,-33785],[52716,-14216],[67663,-7085],[104145,-4994],[34986,2089],[60152,-16665],[67625,-11118],[34570,-44663],[-4806,-37029],[-86075,-133776],[-35250,-30280],[-48648,-29368],[-52167,-9174],[-100417,6557],[-8665,-38854],[51219,-110603],[14778,-12224],[41722,-5954],[52414,47786],[55193,14000],[22253,-7469],[96745,-78283],[50370,-24660],[32527,-23678],[14664,-22691],[23709,-90505],[3253,-50787],[-6337,-41039],[-38033,-90722],[-21836,-27182],[-47910,-32586],[-1872,-42695],[40984,-72134],[28741,-30088],[50975,-39959],[49575,-27854],[90464,-31506],[147287,216],[25240,-3482],[27362,-18802],[5656,-30664],[-21153,-35274],[-108875,-65724],[-12583,43535],[-45943,18178],[-52809,505],[-52433,-10518],[-46112,-28841],[-4749,-30592],[12375,-28311],[49765,-6867],[78922,7251],[113642,-15609],[39415,-1176],[66093,-11117],[43556,-35084],[16728,-39645],[28326,6171],[-5527,45168],[-24957,36524],[-1854,38686],[21571,-192],[36159,-30185],[13188,-21083],[7607,-59696],[20492,-37293],[26604,-17170],[-69537,-38804],[-18581,-23365],[21286,-84669],[1097,-118481],[-12374,-50642],[-42289,-20653],[-26945,11647],[-29801,-5354],[-17390,-28841],[114,-67691],[21192,-36861],[72413,-51076],[-4862,-41854],[-44201,-36644],[-86492,-24132],[-17255,-16762],[9365,-32322],[35933,-30376],[56461,-94635],[18771,-20434],[81117,-36716],[81723,-25574],[34343,0],[160247,61017],[51391,24276],[37559,25382],[29441,46153],[-9668,87144],[1778,43078],[23519,34844],[30180,-6557],[121119,-73551],[24125,-8140],[36291,-31072],[18088,-44257],[-36366,-45457],[-37824,-63202],[-39283,-100854],[-58032,-115407],[-13264,-32970],[10388,-54964],[37824,-48194],[85754,-61546],[43594,-23004],[75346,-26319],[33208,-1369],[46188,16977],[11561,27663],[-7228,59913],[-27417,58616],[-31467,26101],[-92698,40223],[-33774,40486],[4333,53956],[24692,39959],[154608,10516],[40133,-12197],[26264,-20508],[41589,-55782],[28571,-16761],[42329,18250],[23917,51483],[23557,34699],[35043,25094],[32790,-384],[19925,-12439],[19055,-39958],[-12111,-139419],[16443,-59167],[25999,-27759],[45601,-17146],[48798,12487],[101950,10517],[45034,-12822],[33774,-32323],[12980,-23435]],[[34952384,62980019],[-289537,-72953],[-605587,-150969],[-557335,-138459],[-127532,-33810],[-96273,-11982],[-354062,-52877],[-562388,-146575],[-771565,-196787],[-155233,-36018],[-524809,-144247],[-135593,-33450],[-323390,-83997],[-304808,-81668],[-77560,-18515],[-237105,-64234],[-221175,-56622],[-408367,-107962],[-204106,-52758],[-110010,-31289],[-289956,-78330],[-169858,-44136],[-335859,-80467],[-137181,-34818],[-263031,-74441],[-310351,-81643],[-346247,-98454],[-34247,-12054],[-293116,-79195],[-26962,43246],[-48742,23990],[-83786,-19666],[-75932,-46994],[-99338,-40703],[-40796,-12030],[-63425,-8644],[-66263,3170],[-80417,44832],[-27436,31985],[-32166,57632],[-13738,13039],[-6585,33426],[5695,88246],[-28041,36813],[-6130,46513],[-19585,32250],[-47096,-16545],[-511,-46465],[10730,-40583],[-57503,-51963],[-85129,-35515],[-56026,-3675],[-56312,14647],[-123123,56144],[-24522,15848],[-54739,66635],[-6851,52084],[27929,64788],[38107,30041],[127324,61089],[71941,44951],[48779,20148],[36652,23820],[7493,20700],[-6339,30040],[-23974,24516],[-168970,65676],[-57105,36332],[-32054,31602],[-30596,51747],[-6642,61738],[22518,67595],[38107,55976],[86055,82267],[83427,93531],[39848,82989],[-5770,47618],[-21079,33594],[-51979,9989],[-47058,-16857],[-55724,-30592],[-70748,-27471],[-55931,-6917],[-59565,14240],[-56879,37269],[-41287,40221],[-27417,57344],[-10104,85101],[-26604,169892],[2421,58184],[17087,46993],[-2006,81427],[5676,33619],[32167,26414],[79471,2401],[62441,-19210],[87059,9630],[47303,40797],[0,40823],[-30273,38420],[-96501,62434],[-28382,33595],[-13246,50427],[1893,62434],[7569,43223],[-5735,102558],[11826,20123],[88497,28648],[26679,1200],[105394,-15655],[54854,7324],[28287,24468],[8781,28095],[-8193,70287],[-12716,26655],[-53737,41109],[-34836,5572],[-35798,-18563],[-37106,-39933],[-61155,-86135],[-63765,-22235],[-48496,1344],[-17711,7828],[-139321,164394],[-43291,70862],[-35347,90576],[-13699,47473],[-72128,151258],[-18506,32874]],[[25059186,63933741],[8590,40631],[38033,74752],[1419,30857],[-26187,30256],[-44013,16977],[-137787,4154],[-101003,84933],[-52980,52926],[-44240,36571],[-118599,66349],[-68553,65603],[-44390,68268],[-51279,44257],[-76120,49802],[-61325,29992],[-22460,19114],[-5753,27351],[5146,39502],[22725,37100],[74950,86207],[8439,21275],[-8327,41903],[-16613,21611],[-94550,63874],[-39187,17650],[-67304,39502],[-59338,42167],[-39282,35083],[-49689,55685],[-78618,102152],[-72129,78642],[-48421,18466],[-25127,22789],[-26188,68484],[-88554,206343],[-38827,59264],[-56253,60369],[-55970,46201],[-90636,36885],[-40131,4442],[-144599,-5644],[-95573,8958],[-53075,18585],[-96615,24110],[-45828,3698],[-90615,-3842],[-90918,14168],[-125943,64907],[-99092,67091],[-63256,52998],[-114588,105920],[-124977,90072],[-49007,13568],[-70369,-18897],[-55535,-9246],[-94343,2641],[-30371,6941],[-39091,21827],[-99301,25838],[-179604,54197],[-40152,20844],[-51352,39068],[-37692,37005],[-23483,46585],[-11541,87022],[11428,117977],[14873,65747],[73170,223512],[37351,142182],[10161,81044],[-7663,60561],[-37182,28383],[-101647,1297],[-106887,21059],[-66320,21202],[-43387,24999],[-58449,57487],[-28894,57030],[-12885,60008],[16008,88033],[-3690,33497],[-27097,37172],[-33471,10614],[-219284,-58376],[-81173,-2497],[-106775,14624],[-68477,33786],[-130748,42911],[-43501,18250],[-30843,50211],[-6564,34460],[12941,91921],[35970,119128],[14872,37845],[30957,110604],[15667,40558],[1248,29151],[-32678,89376],[-25449,22381],[-66149,23508],[-67230,7301],[-32657,12245],[-34514,28359]],[[23957683,86406544],[-269651,528],[-270523,12823],[-605641,4322],[-432870,3794],[-274817,-2978],[-77845,-2568],[-2156,340144],[5467,187924],[-5789,160552],[-12015,416793],[398,123258],[3386,108419],[-851,113390],[3009,88535],[-1363,588534],[-6093,174983],[-13074,846985]],[[21997255,89571982],[3991,61498],[-4465,163816],[-10009,150272],[62460,12775],[26188,23221],[14625,-13471],[52149,1081],[25185,14936],[-2707,30376],[41533,20748],[15346,30904],[22743,5690],[3312,22044],[18315,3194],[7721,35516],[-4900,28888],[34739,73119],[1704,23125],[-16367,23988],[8116,18635],[-7625,33906],[28306,29872],[5090,27710],[15497,3314],[8723,28000],[-16632,68796],[22365,30378],[-14040,35923],[1949,28647],[30843,39645],[-12299,28504],[-11807,-3026],[23216,40006],[-19318,43055],[-4826,40655],[22990,39236],[-10841,56262],[4654,33810],[22631,12943],[-20437,33138],[11563,4228],[-32848,27854],[14002,18225],[-37654,38014],[1097,31288],[13755,31170],[-25108,58086],[9460,9797],[-35421,16737],[21022,9006],[-19092,50812],[-3575,37124],[-15006,-5692],[10313,44233],[22744,35802],[-152,34074],[-16103,9487],[18185,23267],[-19207,22044],[1968,34988],[13397,1992],[-9479,42383],[-32261,48699],[-10483,58496],[26792,39116],[-13925,54126],[10936,16257],[-22517,23341],[8723,10973],[-31617,19523],[30974,39765],[14040,-8573],[14248,31698],[-14892,21780],[17710,20075],[-8874,14527],[26945,-648],[-13547,30904],[30747,34218],[14039,-1056],[6131,44497],[-29290,-6604],[21399,43968],[17220,5427],[17085,30376],[27929,26703],[45506,23916],[493,14263],[87966,50211],[20909,63396],[31126,-10422],[10444,30785],[27322,-5020],[7986,42119],[42214,12439],[2819,39742],[-21420,-6076],[-245,16641],[28686,408],[-22669,38156],[5165,9365],[78280,19163],[-3085,19691],[13776,46609],[36424,33691],[14757,-3027],[25223,19018],[45924,-6987],[45884,69853],[17352,10038],[26962,-50043],[31676,-7036],[-9556,918281],[-379,224328],[270201,12151],[103312,3146],[95080,-2330],[63200,4250],[251788,626],[153891,-1226],[286794,3554],[258848,6893],[126604,-9341],[341024,-288]],[[30809689,89513582],[-94,-444743],[-1761,-211291],[341,-513829],[-3065,-628445],[3840,-92208],[-4767,-95284],[226,-111949]],[[17261100,37170398],[-870,493585]],[[17260230,37663983],[100494,3387],[185165,-816],[83918,-2691],[355878,12583],[418791,4948],[96728,-289],[510,342041],[128555,2882],[186037,-2762],[341875,11189],[327268,-29704],[253588,-384],[386606,4876],[7681,-6005],[274912,5140],[89406,4754],[415253,-2304],[142802,3745],[381383,-4658],[183218,1705],[179811,-2161],[124145,-5884],[460137,4347],[322745,312],[322444,-2905],[238997,-4612],[246342,480],[230577,-2617],[243276,2641],[-1476,370665],[965,77105],[20208,173758],[758,430913],[9403,163289],[451110,-3387],[688103,2137],[102840,-3818],[58146,3794],[887914,-720],[529579,-7875]],[[26736322,39207082],[20095,-24110],[-3521,-30809],[-14021,-11549],[3482,-36885],[-36045,3315],[-36064,-9317],[6509,-24783],[28533,-27374]],[[26705290,39045570],[7133,-17266],[-2535,-51172],[38032,-23147],[-4521,-24758],[-20530,-9894],[7493,-22571],[46566,-8838],[28003,-32489],[-22043,-17602],[-12546,-38516],[29045,-2233],[14985,-48987],[-7018,-12102],[14511,-28623],[-3537,-24783],[16613,-14023],[66661,-10661],[511,-26966],[-23010,-50116],[-13584,9893],[-18469,-17073],[18525,-24205],[21532,-8236],[1514,-28072],[30521,-6579],[-11013,-18730],[-31522,-5524],[-3993,-25861],[41552,-528],[19016,-26967],[18,-33570],[28043,-6580],[14532,-34122],[21514,6051],[17539,-41254],[4011,-39094],[11014,-1633],[26527,31938],[17010,3313],[530,-38540],[32053,-56119],[23029,-3290],[1002,-40750],[21534,-17601],[-10976,-69349],[60077,-40150],[58562,-11550],[40039,-39573],[-44524,-21491],[-15516,-24782],[9518,-28048],[30539,-24204],[25527,-5500],[1001,-15969],[-32014,-15416],[21022,-21467],[25543,7155],[-3992,-57774],[14513,-4419],[15515,22573],[11014,-17602],[-6983,-74296],[11013,-15416],[-3500,-56696],[39053,-25308],[16008,-33018],[-1986,-19260],[-24032,-3313],[-47530,25310],[-45545,-38013],[-4503,-22547],[30048,-30281],[-6490,-15944],[-48573,4369],[-5487,-7155],[26529,-37413],[-38015,-73768],[-19527,24758],[-9990,-9918],[14022,-42382],[-12490,-45120],[-23518,11549],[12507,-36332],[23027,-5498],[38524,8836],[-6509,-29728],[-50029,-15993],[22044,-37411],[-8003,-29177],[21021,-28623],[-21002,-19258],[6509,-15417],[37522,-15392],[-3502,-13759],[-64523,-12151],[-3481,-51172],[11504,-23123],[-18997,-25886],[41022,-7133],[11013,-14311],[-15479,-75953],[-18504,-19835],[-26017,19259],[19,-62194],[-14002,-26966],[-18998,-11023],[-50539,6028],[-24032,50619],[-32526,14312],[-16499,-10470],[-3482,-24782],[-28496,-54484],[-24522,29704],[-9991,-36308],[-33036,32442],[-11997,-553],[-14985,-37989],[16026,-41831],[-14513,-10997],[-31505,9340],[-27020,-11045],[-26169,4395],[-10500,-29705],[-32054,-41327],[-25562,-3938],[-2025,-35346],[27436,-29344],[-32545,-15512],[16462,-11936],[-5507,-17361],[-29536,-5234],[26453,-28239],[6451,-23774],[-13037,-25381],[27947,-45888],[17977,-5044],[10973,-25429],[24618,20242],[14171,-35346],[1723,-31481],[-30691,-2329],[-9063,-46922],[-22517,-12198],[-17597,-43080],[16462,-32057],[453,-27616],[30995,15273],[-13056,-73767],[14550,-18515],[41911,-697],[8099,-30544],[-10936,-22355],[-29253,-7973],[-20909,9702],[14058,-27280],[-23917,-26582],[-10426,-28359],[35517,-50020],[-29026,-14286],[-2005,-20917],[35004,4395],[8004,-14335],[-25015,-13183],[5999,-16521],[34759,-28071],[-23784,-12655],[3992,-13232],[48098,-12079],[22499,4420],[-10483,-32466],[11012,-13207],[23501,11021],[23520,-32466],[-28004,-26989],[19,-31913],[13018,-25862],[33491,-9895],[-1476,-46801],[-51996,9342],[11012,-34122],[28496,-1081],[6509,-13207],[-4485,-47858],[-22990,-7181],[-1986,-41830],[-41496,34651],[-5486,-46777],[-48573,-8309],[-10918,-53380],[3974,-44592],[-22497,-26944],[53075,-1656],[7493,29176],[23992,-9894],[-3463,-40173],[-23482,-48458],[-12923,-4420],[-36727,14864],[-15478,28624],[-18013,24],[-4522,-56143],[-10501,-18706],[-43501,-9340],[-14495,-12655],[2461,-67141],[26508,25862],[47493,13184],[-3008,-37988],[9972,-26967],[44220,-13807],[984,-42936],[81136,-60489],[-18487,-9364],[-29499,11549],[-32924,-3338],[-3007,-14311],[22460,-26390],[32980,12678],[511,-22571],[-34456,-37436],[5997,-29176],[-35043,-14336],[25034,-31913],[-44542,-18155],[-9517,-33018],[38278,-14888],[1003,-18730],[-33301,-3817],[-17504,-25863],[6490,-16521],[30976,-9364],[12053,-44592],[-2593,-40199],[10653,-3288],[27134,24781],[4029,-41807],[-31163,-14071],[-36670,-5211],[44011,-64404],[-20567,-36908],[-36481,-11526],[-19489,18178],[13472,-37436],[62082,-14336],[-31127,-33569],[4505,-13208],[44540,-21995],[1004,-19283],[-31675,-47329],[56688,3338],[-27966,-35252],[27494,-24733],[-8970,-46249],[-21987,-12127],[-32733,6051],[7171,-77634],[13151,-13734],[2251,-49540],[12735,-24757],[-32413,-46801],[-37976,-11550],[20454,-37989],[42498,-10445],[5999,-13760],[-10995,-50643],[17523,-19258],[1513,-22573],[-28042,-14048],[-39527,20099],[-10501,-11550],[17464,-52301],[17976,-16521],[-15006,-35778],[69179,-528],[18505,-23654],[3519,-47882],[-46926,-25573],[8497,-22477],[29971,-15945],[-4976,-13759],[-55517,-9892],[-6490,-45817],[26415,-30088],[18164,-40823],[19490,-13184],[19,-55613],[-42877,12102],[-14247,-7180],[25677,-48961],[-9651,-72665],[-16311,-15992],[7153,-23364],[30843,2497],[5013,-31937],[-19470,-8261],[-27758,12103],[-17483,-15417],[984,-23124],[46281,-20340],[20965,18178],[13474,29728],[24464,4420],[-2477,-39647],[-33454,-24229],[1021,-31385],[107891,-55517],[21987,-2761],[21988,-22549],[3007,-43488],[33001,-98501],[-16974,-20914],[-35950,528],[-3993,-15416],[23481,-44016],[19982,0],[36443,23123],[5998,-15391],[-15950,-50644],[44086,-17266],[26264,-25790],[28685,-3145],[11107,-16185],[-3954,-45673],[42799,-17601],[20454,-31553],[26776,-2737],[19109,-22813],[15536,21156],[63500,-2857],[2668,35419],[37521,-16401],[24713,5594],[19072,-31337],[-15951,-31049],[10465,-7251],[28647,21635],[27985,-3913],[63500,-31745],[51391,-55711],[5695,-28600],[-37426,-8067],[-51126,53404],[-33473,8934],[-26433,-25575],[12962,-43488],[-3217,-23627],[-75687,-41472],[-12809,-46561],[19943,-49875],[66584,-16592],[7248,-21131],[-6018,-32202],[-23367,-46369],[-10994,-52205],[23954,-88920],[-26603,-60007],[-34948,-19836],[-25355,792],[-120227,25047],[-34059,-14625],[5864,-44592],[-8911,-26270],[-50028,-26870],[-26094,-5404],[-34343,20436],[-24881,-4443],[-39357,-28334],[-32375,-1273],[-25885,31193],[-27229,10685],[-17369,-38972],[22706,-35637],[28231,-17865],[81551,-25861],[9462,-25454],[-7437,-44089],[-61665,-14216],[-6565,-47978],[19639,-19329],[55025,-13448],[19356,-12367],[19925,-31529],[24315,-57150],[-1646,-43751],[-31525,-34412],[-51617,-32105],[-8855,-17746],[-7362,-61929],[-21550,-63347],[-37485,-39188],[-51675,-12943],[-50861,6819],[-20359,-41085],[10822,-35925],[-1930,-29992],[-32810,-16761],[-19413,2113],[-25127,-36860],[-10900,-59264],[-20264,-57510],[-9953,-66277],[26887,-41085],[80720,33835],[24390,-16665],[-10237,-45817],[-3842,-57680],[-18145,-22139],[-33548,-15345],[-54191,4347],[-8420,-19547],[8420,-56047],[29764,-25358],[38770,-3914],[27209,-17913],[9783,-39477],[-20643,-24613],[-30692,-6677],[-15327,-29439],[24655,-40174],[-5903,-46921],[2479,-49418],[17842,-50476],[18601,-10205],[33510,7923],[21893,-23412],[-16481,-53141],[47435,-61256],[-4123,-32851],[-35138,-36356],[-6472,-50018],[34494,-47281],[13491,-49803],[-15118,-29920],[-62196,-6653],[-60151,-30953]],[[26828337,29708918],[-54949,-12006],[-20795,-45121],[-7871,-51916],[14173,-27517],[48629,-23437],[0,-23054],[-17143,-16448],[-58771,28095],[-41288,-6987],[-4540,-46657],[48287,-66444],[-17653,-53070],[-61911,-38131],[-23786,-31001],[-36196,-70311],[-23955,-9676],[-27984,16857],[-35707,42598],[-45467,-3482],[-31315,-24613],[-39529,-6388],[-36745,20339],[-21874,49588],[-8759,68173],[-37446,11430],[-17843,-13760],[-33378,-65675],[-44901,-124627],[-29196,-35180],[-69443,-192],[-67872,22237],[-56499,28479],[-54060,-13015],[-24125,-24590],[-63274,-94947],[-58372,-53092],[-57844,-94733],[-39868,-14358],[-68724,-3315],[-33245,12751],[-45677,57128],[-25164,-7181],[-14174,-46273],[-13018,-121457],[-19053,-18611],[-37768,-4850],[-75213,7877],[-31978,-13183],[-105052,-76386],[-65374,-36643],[-27608,-7781],[-100057,16401],[-40226,-4682],[-33208,-19596],[-26548,-30039],[-50804,-90505],[-38581,-52926],[-55214,-53692],[-40719,-20580],[-33736,-4706]],[[24687926,28388037],[-153038,21588],[-65337,13255],[-121117,13255],[-771964,-6363],[-1323471,-10566],[-148725,-4082],[-687213,4274],[-370296,-2713],[-232831,-2737],[-19431,-3314],[-165507,-2761],[-818436,7924]],[[33276990,31032345],[72886,10446],[10974,-13784],[-19,-37963],[23955,-12127],[31959,42383],[42896,-19836],[17976,23102],[-13700,21034],[-27229,12895],[-7378,27520],[33358,1872],[11486,32466],[28381,4682],[-14399,16762],[10975,19787],[26472,15969],[5979,26966],[18978,13735],[18676,-15441],[12867,26462],[36934,-7346],[-13567,44206],[18978,33572],[22952,9892],[14495,33019],[30955,25284],[19489,57248],[18468,12103],[4011,32465],[21476,36860],[26945,-1657],[52412,14288],[17976,29704],[60946,41253],[-7662,35373],[-27778,-2643],[-623,18251],[19999,29272],[-2346,38084],[25771,43464],[34835,48],[11958,29728],[-14494,35227],[20454,36331],[-18,30280],[20455,28071],[7474,33570],[-6000,28624],[-21495,41279],[-26471,31913],[14967,26967],[-3992,19810],[21438,28096],[4977,39620],[-12488,40727],[-30994,53380],[9971,39070],[26453,20386],[-3500,22572],[-51619,33523],[0,18154],[41590,35826],[17445,44041],[-9497,51723],[-19,45697],[39431,10447],[38941,36906],[55402,41856],[24959,26438],[24446,47882],[79395,36931],[21969,-10469],[39451,21492],[52431,-6027],[43937,27518],[66926,6076],[63425,-15392],[35459,13783],[12488,17073],[31448,6603],[40435,60561],[48080,38998],[-5828,359882],[339983,1345],[305339,-7781],[-2801,347925],[-644,344778],[324355,-2017],[-3388,116870],[-3651,236191],[210219,-2401],[120814,1945],[-3216,343243]],[[35973149,34667286],[402424,335003],[293172,238497],[136236,115240],[39602,47929],[32603,13184],[72487,-15105],[29159,34530],[-8667,69351],[18374,54220],[58714,84453],[-853,35757],[-31371,38323],[6244,31626],[37238,45048],[302,54822],[-25998,67980],[24845,31937],[13850,61017],[-8080,82437],[8080,37101],[15421,20218],[77541,28144],[16746,12655],[24257,70621],[23671,15945],[23387,816],[15023,-33066],[65848,42600],[28288,12175],[31466,1200],[39566,34339],[4900,23149],[39263,32057],[28590,67332],[29441,13664],[20209,39764],[24522,10398],[22990,51748],[24484,12078],[82064,13760],[2498,40727],[22516,13207],[18506,-19260],[-13511,-28623],[35989,-35755],[40038,2737],[59017,-55061],[25071,-51315],[-4617,-30498],[-28173,-26221],[719,-33522],[12411,-34244],[30350,-7323],[10673,-15224],[23670,-1008],[-14134,-37004],[47928,-16305],[20852,-33067],[-3255,-30040],[21383,-13014],[32903,-914],[23387,-25549],[35517,7684],[43331,-36619],[35780,28287],[19055,51939],[-8950,17025],[5202,32538],[22706,28695],[61874,2450],[40133,40030],[36954,75113],[19072,6963],[60058,-21083],[23104,-31048],[22838,-50740],[49933,168],[40418,-40030],[52450,-29849],[26074,12464],[-8383,33521],[10692,33258],[32337,25647],[48495,24636],[46491,9510],[25411,-20603],[62972,-19979]],[[38876972,36342934],[18146,-42070],[43293,-456],[38127,14864],[93433,-44376],[3786,-60033],[213813,-33618],[41628,-4802],[206076,-40774],[56954,-261790],[-126775,-86448],[60549,-148879],[26490,-4804],[-39754,-122465],[-15137,2402],[-153266,-120066],[-15137,2401],[-21192,-75281],[-3462,-39668],[7625,-74753],[24597,-7203],[43407,-176377],[134855,-122106],[-6358,-21754],[5524,-39959],[60664,-369512],[52752,-327511],[-264201,-197003],[-134230,-97444],[-109500,-83182],[-19716,-9510],[67228,-30231],[99547,-8597],[7588,-17601],[-7570,-93651],[15176,-52925],[-32073,-89015],[100455,-187686],[90691,-83758],[111505,38686],[34022,4898],[117314,-33618],[41627,-24013],[-22706,-117639],[20815,-38422],[-13246,-98452],[-170295,-38422],[-9461,-69636],[-43463,-57512],[-47359,-173014],[-47304,4803],[-73814,0],[-35952,45624],[-52979,-52827],[-83255,-31217],[-65470,10398],[-10388,-27639],[-21664,-6149],[-3823,-17217],[38221,-25116],[-3688,-24567],[-33057,-9916],[-13832,-15610],[-6888,-90648],[-11995,-19475],[9537,-15945],[-16936,-60583],[19055,-106882],[20643,-15681],[-13132,-14912],[10690,-27374],[-16178,-22068],[4334,-36573],[-12697,-18777],[-3462,-61642],[7492,-63946],[13284,-26367],[23104,-18681],[11257,-27592],[32054,-17385],[32904,-36475],[30615,2929],[22801,-23990],[46490,19044],[94702,-17387],[14721,-13662],[19339,18418],[-3746,37099],[35515,25647],[36670,9172],[32338,21324],[23386,3938],[28856,23797],[-19906,32898],[21665,28478],[-16481,17603],[-2477,49610],[25601,-17649],[30899,6506],[65241,-36186],[18486,1657],[56575,-27592],[49669,-1920],[30597,-27928],[30029,12920],[26566,-11744],[72186,-2017],[21079,16041],[135118,67332],[58904,46153],[22383,-6363],[-19792,-29176],[22234,-22883],[29442,-5596],[6924,-22523],[25999,-14480],[16443,-33066],[-12413,-48746],[35517,-58160],[73907,-145832],[15024,-8787],[8949,-33450],[45356,-72641],[851,-37459],[-10122,-31505],[-32337,-35828],[-44467,21084],[-11258,-4876],[18771,-91921],[23671,-29775],[1740,-31337],[23387,-360],[17616,-62098],[40133,10253],[11542,-10085],[-30899,-57895],[-42403,-48122],[-298488,-465612],[-24958,-36861],[-73492,-125275],[-69460,-100301],[-91639,-315988],[-71276,-253457],[-157447,-551217]],[[39590695,29249863],[-254685,-871550]],[[39336010,28378313],[-158620,71269],[-315594,150971],[-84692,38924],[-87550,46345],[-450808,197242],[-324090,155100],[-129290,62962],[-208820,104674],[-32640,-10351],[-67814,29176],[-64315,42360],[-44371,67163],[-10425,46177],[-34987,44089],[-34911,9341],[-7474,43486],[12963,50092],[-21951,48987],[-3992,37411],[8478,58352],[-26927,59985],[493,53380],[-6490,15416],[-46396,48986],[9479,73744],[-44920,53790],[-25429,75544],[-31410,17073],[-42403,9341],[-32433,17602],[-14967,19258],[-37427,86975],[-2989,42912],[-22970,56694],[-5980,40726],[22932,54486],[30427,45697],[25657,54581],[-16253,59865],[-16671,14504],[-24560,-721],[-56311,-42576],[-67946,-11046],[-36046,-13135],[-38866,-35659],[-58865,-1681],[-21438,-20914],[-37918,-7733],[-52356,-41302],[-70276,-26438],[-68023,19041],[-31485,-7443],[-20852,27206],[-19546,3939],[-30861,-53478],[-43841,-42791],[-71978,-42910],[-80341,30352],[-333929,153634],[-162252,78140],[-102972,43438],[-533286,245629],[-198809,96100],[-42972,-13086],[-28665,984],[-54400,20915],[-27929,-35779],[-70842,-40199],[-28988,12104],[-45525,-23150],[-52527,1105],[-41532,-23676],[-18033,-33018],[-48913,-9414],[-22460,42937],[-26452,14287],[-29441,-3314],[-65867,8236],[-46907,28048],[-56896,9341],[-4504,35203],[-16972,10998],[-36424,-3315],[-13983,36885],[-47891,-35804],[-12943,-42958],[-40416,-22550],[-23766,8766],[-7776,-31913],[-20946,14864],[-38431,-5476],[-12960,-11549],[-47891,24780],[-29953,-19786],[-14968,4394],[-35420,38566],[6016,46777],[-14967,2209],[-12960,30280],[-22461,-17049],[-18960,5499],[-43840,-21563],[-60947,9196],[-29462,-19834],[-20473,-45697],[-48401,2761],[-76329,18129],[-51884,70960],[-31448,2208],[10484,48938],[-21458,19811]],[[39336010,28378313],[-142499,-483527],[-189651,-630219],[-92603,-16185],[-37596,-16209],[-31997,-23341],[-28969,-32250],[-29291,-60800],[3879,-136778],[-3444,-71006],[13473,-72088],[11467,-28623],[36443,-28046],[49933,-477786],[8553,-65171],[180228,-1712078],[116047,-1115619],[37824,-313849],[-79718,-1601161],[-114419,-2403242],[-15004,-153442],[-39849,-209250],[-45166,-140092],[-33869,-65578],[-152527,-207184],[-93814,-115695],[-2289,8645],[-60360,-72303],[-59300,-52926],[-18543,-42838],[-16197,-71415],[-6642,-73456],[-21381,-46729],[-60701,-56598],[-123482,-73600],[-25052,-30209],[-44806,-108755],[-41572,-43223],[-71183,-22907],[-52489,912],[-86508,18129],[-40152,-4249],[-36727,-49107],[-44145,-116920],[-4428,-1356012],[-47114,-380798]],[[37800370,15624735],[-61439,44616],[-128969,114279],[-56291,59070],[-81137,60945],[-115137,105298],[-99264,122827],[-71467,109691],[-266019,-4395],[-150880,8788],[-138960,39479],[-127058,43871],[-146908,-8765],[-218375,-21947],[-250125,-43872],[-193378,-100904],[-242196,-96532],[-107210,-65794],[-150863,-65820],[-162782,-122850],[-309709,-210595],[-94645,-90457],[-54098,-45120],[-138222,-98189],[-155062,-67692],[-349672,-113750],[-261968,-72230],[-191298,-30185],[-370448,-33522],[-279340,20123],[-158940,14576],[-260153,46225],[-436692,92450],[-524961,148951],[-343351,107290],[-103408,21661],[-406342,38420],[-127833,27328],[-179378,45504],[-200227,47834],[-778416,110315],[-766912,98765],[-289614,44808],[-180418,16617],[-319490,66397],[-311981,53956],[-229291,53982],[-226965,40581]],[[26983078,16136763],[-7947,1249996],[4428,71462],[13358,454326],[2423,145351],[13037,434347],[12431,604094],[3840,467436],[739,241426],[7284,229060],[1458,687131],[246,389995],[-8023,342401],[9310,39981],[2837,402889],[3841,128062],[9367,694167],[-8004,190783],[624,169843],[-4977,650464],[153,685330],[-2802,79988],[-11674,1045885],[6263,24108],[1249,243180],[-2024,94683],[-625,307679],[-2498,11550],[-1324,212634],[-5827,223322],[-2309,434778],[1268,125060],[-7854,689699],[4202,6653],[-2934,141436],[2556,352367],[-591565,-4996],[-478245,-2089],[-87890,-2737],[-883867,-8285],[-211184,-4802],[-74493,2617]],[[26828337,29708918],[19074,-62890],[28911,8286],[67324,68268],[14474,3866],[-472,-100734],[62856,-1056],[14949,9364],[-4996,32466],[22422,41854],[40418,-27519],[27417,4972],[-15988,74848],[24937,7179],[4504,-22571],[17464,-2739],[-1021,26415],[43406,5524],[25412,78737],[18960,-24780],[44389,3865],[18430,39094],[18960,-6605],[8988,-39620],[33414,8812],[11959,42407],[11978,3842],[19962,-33018],[7965,34122],[24959,7181],[-7474,-42384],[43898,32466],[-1004,-24204],[38412,12654],[-4485,-29703],[41893,-37438],[13983,-528],[4465,34675],[49386,3867],[36915,-6605],[22441,48435],[20946,-10445],[13473,11549],[-2006,48434],[12962,21469],[19962,-4394],[26925,-31915],[17957,35204],[22441,15969],[48894,-15416],[24427,29175],[33926,12102],[2991,13759],[-33927,19836],[-5979,59983],[28931,36885],[3992,37988],[34437,-34675],[23444,15945],[-6490,33042],[26945,17601],[33415,-37435],[47891,14864],[-6472,33593],[19452,-2760],[25942,74848],[17464,-4948],[14967,-28622],[37901,26413],[16971,-18706],[4486,-30280],[-25450,-41831],[4484,-19258],[84315,-24781],[28419,-25886],[44901,32466],[26434,-36332],[38412,-4947],[-23955,-37436],[34417,-12127],[53398,-30833],[7474,13760],[-8969,34146],[20946,2185],[28950,25311],[29424,-11575],[4975,-50091],[-15458,-528],[-3009,-34674],[25941,-5524],[1495,27518],[20966,12104],[26925,-45145],[27436,7709],[-15969,29174],[8495,24207],[16955,-36884],[42383,-7157],[-11977,-40173],[-18448,13760],[-49405,-41831],[3993,-22549],[28438,-7731],[-2004,-39071],[8969,-18730],[24427,2762],[35913,-48458],[-1021,-25861],[17464,-9918],[52886,39597],[37389,-19283],[-24938,-26414],[18939,-29175],[25450,11550],[3462,-39069],[-35421,-24758],[493,-20914],[35421,-2233],[-2006,-26967],[-17956,-10999],[-29424,2762],[18942,-34675],[17955,13735],[20436,-7155],[12981,20363],[29915,-13784],[13471,25863],[29423,-14312],[-10482,-41831],[-27929,24],[-9990,-23124],[59849,-15440],[16462,15944],[30936,-19259],[-13490,-30280],[13453,-24229],[53358,-5522],[18469,6579],[25411,-31937],[-8988,-24206],[-26434,-17602],[-4995,-21466],[20436,-22574],[21457,41831],[22932,-11022],[40891,9318],[24446,-5523],[41854,-31889],[-8949,-37437],[23425,1657],[18467,-21443],[35403,-10999],[16442,29728],[19452,-17048],[12470,15968],[17955,-4946],[14476,-44016],[54381,-46849],[33245,-50860],[44617,-34820],[8382,-14984],[-3424,-36283],[-15232,-15344],[1798,-21275],[64067,-24086],[25299,22476],[21230,39622],[20813,-673],[40208,-31192],[30540,3337],[25809,-9892],[54267,-65797],[53775,-13374],[43370,-20388],[70576,-12175],[78393,-7010],[46112,-29369],[35724,-39020],[58884,-14288],[48459,-2618],[44218,-31722],[38525,8022],[30483,-9871],[18562,-63778],[15610,-5594],[58354,33954],[38847,-3914],[64844,-32225],[82441,-60657],[25923,-5836],[54892,15680],[83727,65485],[35952,4370],[31883,-6147],[34608,18106],[45412,2761],[44919,16497],[80436,64450],[40587,46681],[30767,47450],[25903,6916],[47720,-23725],[33226,14600],[64732,-5715],[44049,17266],[90843,56069],[38259,35972],[52999,34027],[37144,8043],[47719,44592],[8251,28047],[24409,26272],[74948,29824],[38033,35779],[10955,61305],[45696,42959],[36462,25333],[23878,37317],[27039,20890],[54097,3891],[50048,65556],[69101,36356],[50975,5810],[16916,25911],[-5600,38877],[6262,36163],[-5883,78090],[21343,54533],[57598,15512],[43084,69999],[34380,36931],[39262,16641],[59527,2883],[19376,18177],[-4390,48170],[17050,14192],[700,30088],[-30180,44255],[48628,26751],[9460,40727],[40909,67715],[22422,19835],[43407,-4394],[4483,22019],[-33433,26415],[39905,24230],[3519,39596],[-33434,22573],[24446,46225],[-16462,40197],[30426,9342],[19963,-12103],[13964,29728],[27436,-46225],[34929,17049],[-3518,51509],[24975,-16785],[13435,17337],[28989,-43800],[13963,9364],[3937,35541],[19980,15296],[26434,1080],[40417,51196],[33433,16520],[52375,-2208],[36936,14312],[34418,24204],[-16461,19259],[6489,23124],[19962,15416],[23482,-3673],[28894,16449],[-11334,14311],[-25639,-2281],[6565,43440],[18449,23100],[37919,-8261],[13983,71006],[1514,39094],[28439,-1658],[7986,13207],[-27211,27063],[31033,-8741],[21134,32851],[-9972,35227],[-23424,4994],[-8118,35275],[22101,7325],[16425,-32178],[31938,-2209],[18469,23124],[-11618,35636],[-15383,15031],[28723,16090],[32658,-52398],[-8760,-64882],[42573,22956],[-2990,29872],[15629,16929]],[[52570537,99652771],[282064,120],[515879,-10589],[1074255,-12992],[-2309,-44855],[-44012,-175680],[-8551,-67020],[-48553,-81163],[-33473,-63948],[-29422,-38829],[-51866,-47449],[-86169,-92594],[-48931,-36428],[-27512,-9173],[-40094,-44207],[-172489,-242027],[-41875,-30232],[-41551,-56408],[-3557,-93170],[30786,-89616],[29857,-42550],[9120,-38949],[-15420,-8094],[-59414,-3985],[-24599,-53597],[-72697,-73937],[-61779,-109187],[-40018,-90504],[-22838,-138218],[1040,-74993],[21476,-122322],[23463,-59528],[39073,-45097],[10009,-33930],[37030,-53838],[137580,-133968],[56574,-41495],[95043,-42791],[53531,-29463],[138164,-55926],[117807,-34795],[97824,-14552],[120304,2042],[73832,9677],[57540,14360],[99226,35010],[81495,51772],[43651,33666],[78412,107723],[34116,40941],[72828,104264],[23445,39623],[14607,40220],[21836,90554],[15346,91154],[284,75159],[-34514,187110],[-41362,143285],[-3937,56598],[-16651,41735],[6756,19739],[-24902,55879],[-9782,40941],[4390,61378],[18978,48913],[62309,40967],[39585,44977],[9876,31912],[-2951,34074],[-15024,37486],[-26093,31313],[-84655,72230],[-15460,25454],[-4199,33738],[18031,35564],[33964,46129],[872,84428],[12753,28241],[32639,24060],[103614,60896],[52735,24543],[173247,64305],[79357,24351],[97939,13855],[82119,-20771],[100492,-39863],[50426,-49009],[63918,-76771],[77295,-117854],[121988,-323504],[19355,-167297],[8100,-96268],[-30369,-40679],[-26169,-16545],[-22554,-36644],[22157,-75425],[28041,-37507],[86605,-77274],[71504,-51772],[28913,-43127],[46736,-121866],[28873,-57679],[33056,-50307],[15705,-56456],[1874,-34146],[-18525,-148184],[2517,-60848],[13945,-96364],[5677,-86663],[-2365,-63755],[-12109,-63538],[-33436,-70598],[-21608,-100135],[-15667,-48625],[-45715,-78523],[-131088,-153034],[-136690,-171885],[-80796,-88704],[-101456,-98358],[-212774,-214700],[-19150,-10637],[-178770,-55519],[-84297,-10925],[-60643,-648],[-18430,-7156],[-27208,8837],[-32603,-4107],[-74645,-58136],[-20966,-24373],[-73074,-46873],[-127874,-118432],[-27303,-44881],[-23216,-57846],[-24371,-97806],[-59509,-170947],[-28610,-62314],[-61703,-40342],[-44391,-41735],[-21192,-49563],[-21021,-122994],[-31354,-86542],[6188,-44401],[-209,-85461],[9141,-95740],[-2253,-37005],[-22383,-103232],[-41440,-239408],[-661,-34556],[28723,-35562],[81287,-77923],[58789,-28478],[-57635,-133201],[-51012,-126956],[-60152,-134088],[-10804,-36189],[-16009,-99484],[-1418,-53454],[10614,-103616],[36689,-103039],[90426,-85486],[78507,-26655],[49858,-10181],[44012,384],[336975,28238],[29025,-9917],[95554,12031],[25299,-4658],[81609,-35419],[109840,-37364],[67001,-16785],[102403,-19523],[267288,-56622],[151163,-55567],[102329,-30064],[103691,-47906],[104579,-32514],[102234,-40606],[71277,-45961],[47644,-79747],[-5070,-72759],[-10918,-50043],[-32489,-109715],[-61079,-105393],[-69537,-126356],[-92659,-96172],[-136576,-124124],[-96196,-63009],[-223029,-98262],[-110314,-41878],[-107493,-68605],[-111392,-86375],[-76462,-53524],[-73548,-60826],[-150294,-166649],[-45715,-80059],[-28061,-88561],[-15667,-29848],[-70672,-70741],[-39944,-105249],[-36669,-42432],[-62935,-12223],[-43689,-29680],[-102291,-95762],[-55742,-78859],[-6112,-79267],[-13661,-53526],[-1458,-94730],[5015,-122490],[11372,-52613],[8874,-88152],[22100,-105681],[39093,-130486],[57672,-152266],[40303,-84767],[24448,-41157],[67758,-85870],[74190,-88177],[68005,-63562],[71411,-60320],[53056,-31362],[99414,-9389],[45298,29872],[34759,72857],[3066,47785],[24975,-17265],[73909,-7853],[56765,5715],[113661,58737],[48610,17625],[205773,87286],[76027,39767],[80587,46825],[166510,50739],[177012,62050],[218543,43511],[17011,152938],[106719,173687],[8174,49611],[36347,77897],[4409,107651],[12016,71439],[30710,69276],[23406,34122],[46925,38493],[55648,20435],[20739,44881],[9158,44809],[53037,27374],[30445,33186],[53643,-21972],[72262,-43511],[91371,-80757],[93549,-138843],[47720,-82579],[27645,-61810],[35176,-92258],[10178,-54990],[4807,-117519],[-5468,-71655],[-10369,-57775],[-19943,-59816],[-29499,-62218],[-39490,-70839],[-37521,-55517],[-66132,-84238],[-52052,-36860],[-50200,-54966],[-72204,-65962],[-46926,-34748],[-23311,-41013],[-82045,-128374],[-97994,-91058],[-84107,-53380],[-89349,-40966],[-75213,-48075],[-88686,-63442],[-155742,-105441],[-143086,-90960]],[[56264526,89032315],[-730922,-4324],[-681,-154858],[-313192,-199309],[-97445,-60344],[-67248,-178873],[-312319,-2449],[-135290,1152],[-1068239,-6074],[-383371,-288],[-303218,-1298],[-1036146,7253],[-650563,8668],[-475804,-7348],[-81362,-3673],[-164996,4849],[-248706,-3721],[-125470,889],[-550864,-2571],[-592928,2091]],[[48925762,88432087],[26869,61377],[20985,20386],[87002,-14839],[28136,10444],[47077,37389],[24048,5524],[58337,-6052],[24560,17073],[38372,65436],[-1532,33570],[-13302,23652],[-48610,48387],[-1041,44543],[12811,19811],[98259,68222],[41968,43415],[41968,29728],[17408,24204],[1022,29128],[-34797,67692],[-57333,66012],[-16367,34098],[-20983,73721],[-37370,54462],[-61949,62168],[-20474,30258],[-21494,110339]],[[49159332,89492235],[509,34842],[13814,30256],[35838,41255],[67171,58807],[101269,71007],[22025,22573],[41986,92402],[71695,78641],[63518,20892],[75272,-11551],[55818,66540],[19981,9341],[105980,-600],[46093,18155],[45071,28598],[44561,10951],[33282,19811],[36368,40126],[23065,15391],[50219,82484],[-11258,39046],[-35838,22572],[-72205,2234],[-27645,14335],[-32261,42912],[-16897,49514],[-12772,69326],[4579,78763],[13832,34386],[68647,69277],[14873,31890],[8723,55014],[-5109,21971],[-52754,44063],[-7153,23653],[10767,74201],[17938,15945],[21002,-8789],[30218,-34074],[32791,9869],[34325,32392],[-14835,52854],[5639,20867],[29725,14311],[7683,29680],[-46093,19859],[-24069,24205],[-7153,52780],[8723,30834],[31790,65410],[19980,22021],[9764,40701],[-23557,42359],[-19982,-7707],[-23595,-33522],[-30729,7179],[-27664,30808],[-3575,34100],[44597,35178],[16917,27496],[-5639,20915],[-34305,52276],[-26623,91297],[14892,79194],[-983,97374],[-24580,42359],[-24069,58327],[10767,30232],[54835,24206],[44599,-4419],[8722,17048],[-36368,56119],[26150,65436],[-22025,44543],[13869,63274],[22555,15393],[23066,-552],[51259,-27015],[24087,18731],[19470,-6099],[25638,-31337],[52282,-3867],[36878,-36884],[38959,8764],[9745,13761],[-1004,41253],[21022,10999],[47248,-4299],[7322,-19811],[-24371,-53189],[43747,-33545],[29555,2185],[14704,30664],[-4297,51605],[-32866,66684],[6964,17361],[55231,4515],[2555,19761],[-17445,30810],[-61117,34602],[-10237,25862],[35894,28000],[4124,24781],[-14853,29680],[-7663,60536],[10274,44017],[37162,51195],[14948,37941],[-2081,58327],[38449,22572],[6149,20339],[-44617,28048],[-1040,29126],[13832,22573],[39980,20387],[30238,29176],[31750,72615],[22025,39069],[77390,114397],[85562,171117],[43066,67692],[90238,78139],[34342,53380],[62573,24205],[46661,44545],[8118,33763],[-9235,45984],[-23103,63779],[-529,37388],[31751,169963],[-9746,41831],[5109,29127],[33852,28096],[2042,26918],[-40018,90242],[13812,99004],[-5658,78667],[8174,109451],[6151,34652],[14834,177070],[29726,173279],[-1552,49539],[-25676,109451],[4597,75905],[-9253,32440],[20513,76483],[-10276,67644],[6151,34627],[13339,14863],[8211,42888],[-16423,25310],[-33889,15391],[-21041,-1104],[-28741,-51701],[-25148,1106],[-25166,42311],[-528,39068],[15383,84671],[-3085,31937],[6641,119369],[4618,28598],[27701,80877],[21021,85774],[34968,77513],[39603,111685],[30161,65964],[-10501,37795],[-29178,24639],[-7569,21514],[13661,107122],[10388,22428],[35441,0],[29783,-30808],[25166,-2162],[15913,27496],[-7190,19811],[-32868,25261],[-2063,25886],[14381,30208],[26699,2234],[72924,27518],[14380,24758],[-31846,31312],[5639,26439],[24655,31361],[21572,12630],[27208,-6578],[77050,-116080],[28250,-84693],[18485,-2762],[27209,28047],[15932,44041],[-19527,39021],[17162,38108],[41912,10325],[39566,40703],[21531,70286],[18449,40869],[-18486,31890],[23614,47305],[55990,-13183],[15402,8236],[2572,70935],[-23102,30256],[-44693,7157],[-11807,45624],[27739,77033],[-10786,58304],[-10274,20339],[-17994,132023],[-7191,155628],[13358,70959],[1023,55565],[-8212,39621],[5128,38494],[48836,52780],[21589,69854],[19528,30232],[21590,52781],[-512,45673],[17464,29176],[57561,21442],[7190,18659],[-17976,37436],[-47284,9365],[-22083,16497],[-511,21443],[21590,66565],[-72981,54461],[13871,26942],[52942,22549],[82762,126500],[32906,39597],[19015,39598],[-10785,58832],[26736,20314],[26736,-552],[11808,-54462],[17975,-21419],[27247,9318],[19,49515],[15932,59408],[24183,32440],[14380,-15943],[14891,-47307],[19546,-7708],[59111,16473],[67342,7132],[35459,13711],[29840,31362],[34456,49467],[28798,59984],[2592,41229],[-10274,48411],[10823,50595],[19036,39597],[2573,24205],[-45203,112238],[-38545,51147],[4125,29704],[21628,57175],[21079,16497],[30332,-3866],[14399,-19811],[1514,-41783],[25713,-17601],[65300,32370],[19053,20914],[-1002,40702],[-43690,69327],[-20038,47857],[549,74249],[-53473,58327],[14419,32994],[52469,25838],[49896,36812],[79225,9869],[24692,19235],[4126,30784],[-10768,78667],[2594,39597],[16404,37100],[20,38421],[-41117,59984],[-24220,20675]],[[54252252,51482679],[295554,1298],[523145,-1514],[146945,1466],[55856,-5380],[425869,1441],[77523,-1729],[276142,240],[97124,6148],[295252,-5644],[753023,817],[302179,-1249],[119167,1729],[1019649,7493],[370655,4058],[813193,4442],[124865,-1489],[90690,-6579],[473325,-240],[368290,1441]],[[60880698,51489428],[-16178,-26031],[-15402,-1921],[-20209,-57871],[-29498,19667],[-35650,-61473],[-28173,10997],[-32696,-12102],[-51827,-31913],[-27645,-54462],[-10066,-50619],[-11070,-16496],[-38220,-12679],[-10559,-23654],[14589,-34651],[-35214,-46753],[29196,-34097],[-1495,-64908],[-24144,-32465],[-6527,-64380],[-25148,-24756],[11070,-14288],[29177,13760],[6037,-37966],[-23122,-27494],[20113,-29704],[-12565,-30809],[-36708,-15968],[0,-23102],[20626,-12102],[-18090,-42358],[29670,-20892],[-17597,-23076],[-29670,21419],[-13586,-5522],[17106,-48362],[-48761,-53934],[10558,-30809],[-15081,-38492],[-19622,19786],[-25639,5500],[-14569,-36861],[-29668,-35778],[2515,-39047],[20625,-552],[-20094,-59407],[-56331,1081],[-10557,-20364],[13585,-27494],[-29649,-11574],[-14589,15392],[-23141,-11550],[14116,-48459],[-9537,-29560],[-39224,7203],[-15574,-65915],[58847,-56526],[19092,31986],[12072,-5452],[-8023,-49995],[-43728,-78690],[22857,-46801],[42026,3168],[-1004,-24011],[-15647,-27183],[26906,-13976],[-662,-41879],[-46245,-49539],[13076,-25838],[43764,-34651],[37712,-43992],[11579,-32993],[-16083,-26966],[-33169,-25862],[32715,-102320],[-492,-47834],[15289,-42119],[21002,-6002],[-2591,18561],[24181,10231],[-1552,-73049],[-8041,-13759],[-41722,-7732],[-17087,11551],[-25639,-23653],[18109,-31361],[31675,-22525],[4030,-16521],[-17087,-27494],[23652,-36861],[-20548,-47113],[6623,-25021],[-11297,-26174],[55800,18225],[26755,-54653],[26150,-15416],[12564,-45649],[-10085,-51196],[13699,-31553],[53208,-38132],[1741,-45673],[-38147,-144],[-7227,-30376],[-44808,-7900],[8081,-65124],[-13057,-17602],[-40700,2185],[-2497,-39068],[-15574,-20364],[13076,-39596],[-3520,-25311],[-35666,-25309],[-2405,-41542],[-10539,-23654],[-44712,-41277],[-9478,10493],[8457,34051],[-26622,3842],[-39187,-52830],[8042,-31335],[46244,-18131],[16084,7157],[13074,-28048],[41703,8261],[-510,-30810],[31674,-28598],[-23613,-42335],[-31146,-19811],[-20587,-36332],[-30141,-7155],[9120,-66060],[36120,24828],[1514,-30256],[46225,-41253],[38715,24],[-19585,-40175],[29631,-8235],[26642,-27495],[29140,35754],[64807,-7683],[-6018,-35204],[-19091,-21443],[18600,-29704],[-30634,-41279],[14569,-30809],[65810,4972],[25620,-17577],[6036,-22021],[-18071,-53356],[1002,-30809],[20606,-36308],[2007,-41806],[-22083,-44016],[-15571,-13183],[-37087,5162],[-43842,51749],[-24220,-11382],[-2023,-37364],[17898,-40246],[-4957,-54173],[-42364,-30978],[-5393,-36980],[9745,-20722],[67227,-3722],[31410,-39742],[-4011,-78138],[77862,-32970],[9764,-10687],[-5034,-46080],[20399,-34866],[28288,-2257],[16991,13063],[24523,-12679],[-5355,-45409],[14399,-58976],[12318,-23869],[-6774,-39501],[-46698,-35755],[-55233,-12679],[-15062,-17049],[2726,-27135],[-14098,-20099],[12716,-64572],[2630,-43654],[-6983,-70623],[4618,-20218],[24636,-4707],[20718,14336],[17332,-9605],[-472,-37558],[14153,-32849],[-7946,-21371],[-40248,-8766],[-25675,16161],[-22290,41302],[-32715,-13567],[6337,-33450],[27873,-34410],[-16009,-28599],[-38335,-22380],[3350,-34292],[19584,-17601],[-7021,-69301],[58261,-35204],[1002,-20891],[-20076,-26414],[-43727,-17602],[8326,-34482],[28646,-12487],[1269,-13976],[-27741,-34722],[-6527,-60177],[8629,-21010],[31390,-30137],[24522,-56095],[-21703,-41661],[-38637,-16521],[-4446,-27759],[15495,-15705],[3502,-48242],[17502,-23966],[-25034,-29680],[-26224,7349],[-17862,-33762],[-34116,-10758],[-7323,-17625],[21835,-38038],[-2686,-25068],[-39792,-44568],[38,-13976],[37823,-12512],[7342,-29992],[-9518,-24468],[-51940,23892],[-12450,-18489],[26585,-89450],[-378,-18321],[34266,-25982],[-10501,-68869],[-16084,-55207],[48006,-68435],[20775,-87385],[42782,6485],[12942,-53286],[-30539,-15656],[-4011,-18346],[42989,-56599],[2479,-48842],[-10842,-30016],[-24787,23773],[-19338,-21923],[30349,-31361],[-15648,-21565],[-1607,-27231],[17502,-9412],[28552,29800],[24202,-7325],[16859,-26053],[-4580,-23941],[-25676,-21683],[19773,-33812],[1684,-32129],[-26018,1153],[-13490,28335],[-20039,-240],[-11315,-29920],[-31560,-10229],[-56084,22259],[-21608,-19401]],[[60441490,44764596],[-580100,-29488],[-193037,-4851],[-526021,-21541],[-111430,-2425],[-215933,-9605],[-183540,-12006],[-106036,-2401],[-335519,-14480],[-262348,-14311],[-344372,-14408],[-437374,-21661],[-339414,-12005],[-85376,-4972],[-652928,-29680],[-331675,-15753],[-70332,-96],[-291110,-16689],[-423655,-19449],[-104654,-6964],[-425358,-19211],[-39735,0],[-285717,-16785],[-556294,-26439],[-53947,4852],[-245053,-12055],[-230844,-9606],[-159206,-8475],[-79395,3913],[-23368,-34698],[-32129,-27520],[-58828,-33929],[-60321,-50884],[-22518,-11862],[-16934,-57944],[-40643,-44280],[14172,-16209],[-7286,-87334],[-13302,-23582],[9879,-72230],[-47626,-124604],[-350335,-72638],[-18201,-246854],[-55157,-134233],[-681,-91009],[-18165,-77034],[-57806,-104431],[-18902,-27351]],[[51952936,43089379],[-66623,48601],[-48970,10975],[-106491,-793],[-12602,47186]],[[51718250,43195348],[34363,35227],[56368,3769],[-8781,241980],[10521,136129],[-719,49251],[-20039,67475],[-42100,94948],[-44012,20268],[-34285,42766],[-8516,86904],[-25108,89280],[-19621,87238],[-42802,21661],[-39906,40893],[-16783,73744],[8742,17409],[35800,-1825],[81911,-31312],[29518,-5643],[23880,30040],[7530,51028],[-17332,75665],[-567,39164],[10520,27159],[27587,18562],[21155,-361],[65772,-24108],[28097,7131],[24636,27640],[8100,120761],[29499,27710],[63992,17339],[73453,-8453],[23085,25070],[-5450,47593],[-24258,45601],[-32242,30544],[-28892,88271],[5638,26367],[49159,51987],[34778,68318],[16802,11983],[48628,7012],[44901,52371],[928,38182],[-12905,29055],[-8080,73287],[1211,77057],[17692,73840],[43689,58905],[61098,120041],[10615,56982],[15516,18154],[43880,27206],[16537,-5138],[28042,-32705],[49461,-26967],[42669,960],[40945,38950],[28401,50235],[13681,40437],[29537,38085],[-2101,54821],[27020,17963],[-2952,20915],[12470,35946],[26112,4060],[20776,18081],[-17143,37988],[8060,21323],[39547,22117],[41192,12079],[45356,42334],[7283,25526],[48629,42984],[-14778,99893],[5260,52301],[12962,40389],[24390,21108],[102594,-1226],[55704,18852],[42366,32705],[31978,39309],[20699,53069],[-13112,65339],[-20757,16593],[-55800,24518],[-53965,50019],[-14606,35082],[-3142,34218],[8193,42215],[17994,25911],[98468,31049],[51391,28623],[44694,33570],[33017,47738],[9651,71366],[-1439,60320],[-39829,44376],[-32376,62290],[-15325,66492],[-625,40030],[9083,31097],[25109,22740],[49555,89304],[6831,75400],[22232,33090],[44902,94179],[15118,118889],[16821,66299],[-23009,56336],[-42686,52995],[-18732,45097],[14606,38614],[66056,19306],[33547,21491],[22877,93002],[19110,26103],[25546,69228],[1513,53286],[-22819,36715],[-54798,11023],[-32355,16161],[-1704,16520],[27645,59433],[26434,23699],[28154,54511],[1477,24708],[-24202,51917],[4486,62650],[62705,70861],[5753,22790],[-5657,103856],[5618,39116],[25885,34891],[34382,-1345],[76309,-30232],[40740,-4322],[35098,12151],[13075,27495],[-10444,80971],[11429,42190],[851,40678],[-32886,47234],[-13700,79243],[27834,82245],[27664,48674],[-2554,20003],[-29273,31265],[-22308,48937],[7286,47402],[21892,45889],[31864,3650],[36480,-26029],[28363,2881],[34325,23316],[47965,70431],[8403,49610],[-512,48626],[16406,54414],[25525,32682],[26357,60104],[80399,26247],[15855,36499],[35478,46033],[3937,21803],[-18090,26415],[-34494,12391],[-30162,35731],[-5599,56719],[-42990,35179],[-21571,27879],[-4201,66204],[30824,47545],[-4977,39141],[-18090,36981],[-23708,78498],[11220,101215],[1135,47305],[44182,79075],[56500,-2162],[7116,34675],[-38468,3650],[-18222,34818],[49651,77442],[20378,5595],[53265,-12558],[11618,40965],[22630,8406],[26717,-12704],[10709,20123],[-8950,32465],[6264,31098],[35024,28551],[14644,78258],[-14587,65532],[623,42454],[11183,28216],[-9195,41783],[3499,56958],[51317,65196],[4521,22763],[-8646,60514],[27796,37555]],[[83601288,31177625],[127436,-82341],[196804,-138195],[82725,-55422],[76348,-37436],[115668,-33018],[125376,-6076],[95856,7157],[120626,16425],[231468,41998],[188080,49371],[247911,83325],[128970,46033],[225924,87430],[67927,29873],[276143,109332],[57995,39885],[96083,15920]],[[86062628,31351886],[721955,119657],[95666,26583],[119679,56765],[81969,29705],[145469,37412],[62593,33475],[88970,53572],[72451,33114],[92092,15272],[288630,7253],[499757,14358],[1303888,-14358],[335687,12702],[264846,37053],[253929,47665],[167549,61714],[39396,22835],[1255846,639609],[998284,-669217],[579531,-392372],[72016,-50834],[737659,-113870],[1084511,-171140],[909448,-143047],[357864,-60560],[179017,-28839],[42838,-9965],[613874,-96532],[645548,-103569],[389143,-1076357],[84824,-80851],[82991,-91730],[86226,-102824],[75365,-101095],[100019,-148351],[59244,-80996],[61874,-122178],[43122,-61545],[243823,-491018],[121477,-256794],[102782,-303021],[65413,-241377],[28401,-91634],[42611,-187997],[70899,-247238],[52640,-243228],[18506,-176278],[63690,-481460],[13851,-280928],[19508,-350182],[-11031,-310584],[-17484,-278479],[-27001,-292093],[-22290,-153179],[-4220,-197122],[-53889,-360842],[-31864,-268707],[-62460,-255617],[-78544,-287892],[-115118,-378540],[-85829,-292766],[-83595,-306574],[-142820,-426158],[-85601,-227403],[-55214,-130702],[-110956,-244524],[-242784,-470150],[-286510,-478482],[-281630,-430242],[-311846,-481460],[-96368,-100373],[0,-22453],[-79565,-109860]],[[97713380,19025043],[-1505726,7830],[-780023,4058],[0,-4899],[-902977,3314],[-2402552,-318629],[-1080822,-50163],[-344239,-22259],[-1201976,-90481],[-42159,-7709],[-752133,-54293],[-369009,-34650],[-2072691,-149098],[-112679,233070],[-700,24902],[-31466,35492],[-23331,-9054],[-45053,25646],[-93094,70887],[-66434,18250],[-36915,54868],[-24864,60417],[-46433,53862],[-32904,14672],[-25563,49587],[-38524,37411],[-32281,56504],[-33264,31481],[-71713,39668],[-66509,19548],[-54798,2209],[-33378,-13063],[-80473,22763],[-46566,-5739],[-66983,4995],[-41306,15344],[-35156,-11357],[-21855,13398],[-96064,98214],[-81818,62386],[-51314,17289],[-79944,-15368],[-53302,7899],[-41949,34340],[-67003,89975],[-79924,36573],[-62007,-16329],[-27190,1513],[-162972,54076],[-62668,65917],[-123879,79747],[-61136,16281],[-67228,-3915],[-42612,3746],[-53889,14841],[-233284,56117],[-60000,24806],[-46528,42095],[-62612,94011],[-52621,60392],[-51239,68053],[-36955,56695],[-82838,75111],[-46624,78788],[-48003,51580],[-98299,74392],[-69725,66228],[-58488,48673],[-50917,31817],[-69632,29537],[-70274,-4634],[-25810,4562],[-76802,31600],[-58146,34051],[-69007,25142],[-25413,22883],[-65658,110940],[-18883,110845],[-18183,56910],[-31524,192393],[-23841,67380],[-109387,127220],[-69934,108034],[-33585,79795],[-29764,29176],[-110672,43393],[-36897,17816],[-155403,55495],[-115516,-1200],[-58033,16232],[-69064,7539],[-138072,-21178],[-76008,-14552],[-102669,10134],[-59546,16809],[-80775,6531],[-32509,-7445],[-61741,-35371],[-89366,-33426],[-45696,-240],[-103671,15080],[-56991,2666],[-60095,13783],[-44845,25887],[-62309,50955],[-62100,23893],[-24448,45817],[-2251,39597],[11316,62409],[52998,88057],[47096,40581],[1496,22741],[-59849,57079],[-48232,106304],[-65564,68246],[-144353,235255],[-86112,106330],[-41836,39380],[-81722,45264],[-97219,28144],[-108478,7275],[-37161,-4202],[-70767,-17553],[-190125,-70741],[-181572,-65749],[-179963,-60513],[-36159,-7323],[-68855,7203],[-45753,23846],[-36651,34122],[-42082,59913],[-28893,82459],[-18524,19788],[-6358,31505],[2100,47786],[-54438,41589],[-38391,12943],[-6565,16762],[-1665,66757],[6811,51459],[22157,43104],[-9064,19402],[-70955,98020],[-42461,31457],[-44843,76097],[-23880,20243],[-138923,188071],[-78864,230475],[-48080,167058],[-66358,191864],[-18240,60897],[-68042,181226]],[[78196256,24318847],[-6226,16281],[71296,43848],[30540,37267],[28590,52110],[19150,55276],[14550,105730],[-908,50211],[-16518,109355],[-46473,144439],[-63690,137762],[-69933,121049],[-48610,101383],[-66832,115021],[-40038,59625],[-63311,74129],[-83464,71318],[-64542,34267],[-83652,26629],[-45657,5548],[-91694,-6076],[-257353,-7131],[-79489,-4851],[-153247,21636],[-197617,83588],[-91561,47787],[-58184,36572],[-83540,59528],[-94967,73214],[-149859,120762],[-125300,89497],[107741,295552],[45393,111515],[76443,205743],[25336,55951],[58713,-28336],[65904,191647],[-6451,41783],[22932,54126],[-7872,21875],[32300,94947],[11221,4084],[38524,-19788],[51127,-39404],[20585,-4396],[50749,22645],[22497,56862],[39319,29392],[35857,54991],[25127,20530],[36066,1825],[26508,-27638],[-851,-31217],[79773,-59912],[32678,744],[50654,-45553],[35136,-44303],[18450,-4731],[28420,26005],[28799,2018],[19224,-21805],[9707,-76721],[32696,-42119],[37825,10278],[32128,-9702],[39867,10446],[33417,19547],[49347,-20291],[46321,-33786],[31408,3505],[19150,44809],[-9234,13784],[15307,39813],[28761,16089],[35138,37124],[57975,26006],[66170,-1970],[28154,15705],[17976,28551],[27587,-2689],[512,46873],[7909,14240],[25318,1825],[28382,33618],[29631,10302],[9310,18513],[51144,60201],[7418,29057],[23444,17360],[137843,51964],[27417,3507],[19716,25261],[132169,-41326],[43047,38564],[17539,-2664],[81099,-53189],[24655,-58207],[64521,-27423],[13738,-69254],[-12734,-55230],[34399,-55567],[32848,-66155],[41268,-18273],[14495,14960],[49763,22163],[39091,46465],[13530,40079],[29952,44904],[31827,14456],[30501,-20172],[29443,-83949],[29952,-23196],[41099,-1010],[51465,44208],[24145,43104],[-3388,30472],[-21248,23486],[-56727,37412],[-29290,26726],[-8420,19523],[21115,36595],[43672,19907],[27948,31457],[22023,54509],[-5052,26223],[9273,46585],[25052,44064],[136727,-3411],[24295,46393],[63067,139179],[70388,131376],[9139,32874],[51863,74849],[58791,63058],[20131,15536],[76084,85269],[11334,26679],[12583,-5883],[70767,48795],[61665,57005],[24125,34028],[22252,10204],[8458,21493],[30729,25164],[106964,74657],[47625,288],[46112,19979],[21988,-6795],[231335,17505],[51467,-9702],[135914,-6891],[29196,8477],[76027,-22453],[79112,-16161],[12885,-12775],[42156,-4897],[95802,-21660],[37047,-1561],[51088,-21252],[45924,-47546],[21967,-14072],[35838,1921],[80739,-60176],[8818,11814],[30369,-1920],[24445,-16665],[34855,-53284],[4635,-26055],[42442,-68076],[70558,-43344],[17426,-28935],[42594,-20651],[41229,-45577],[23425,-41302],[11769,-5331],[103880,1128],[60246,8476],[49784,17265],[82101,50500],[24635,22692],[1476,45337],[-17199,7539],[-10351,41519],[-16197,9942],[-33547,56838],[-58468,117376],[-44598,75185],[-28553,32201],[-40473,77202],[-12678,14888],[-27038,91898],[-1875,85485],[19737,77922],[-7248,13759],[8420,34051],[20455,17097],[-1817,18323],[40378,58446],[54154,33114],[10067,-10084],[13869,20842],[26452,10711],[303,24636],[87512,42911],[7570,-9676],[74627,41878],[17974,360],[49103,22213],[35912,-4876],[57105,15945],[60398,4948],[34003,-7782],[78562,17914],[66283,32803],[34513,10709],[53037,33017],[32981,12391],[42326,38206],[7229,67524],[-7190,64282],[8061,29992],[2288,129718],[12509,94011],[17180,30016],[-3974,55903],[18771,96508],[10633,17841],[8401,98478],[13265,60945],[25297,43631],[50200,27495],[63255,-4418],[39906,10686],[68930,63106],[3086,16401],[37994,16953],[109480,77586],[58222,63010],[75989,147535],[35365,93122],[94550,101240],[28553,42935],[21287,49131],[89254,71461],[24181,-2281],[82367,37341],[57048,50403],[48666,116414],[-18,84119]],[[44322325,39436646],[493911,-2835],[6774,842],[923640,-4780],[10330,-4657],[789827,1152],[-5412,-346147],[258563,1369],[257675,4201],[-33529,134906],[607175,195897],[-3103,11238],[405396,144],[88666,2858],[11353,-13976],[272850,12703]],[[48406441,39429561],[471583,-642634],[130105,109211],[15345,-18850],[728539,-1019927],[28192,16016],[334308,-564953],[-719,-320405],[372472,-197051],[236897,-106354],[132490,-183314],[113075,-175536],[240267,-369510],[329918,-206729],[149082,-514238],[138923,240],[293342,5307],[279926,3339],[173833,-888],[242706,3385],[122972,5955],[71902,0],[187344,4803],[32355,-2402],[189197,2426],[349879,-2426],[1125874,0]],[[54896248,35255026],[-3784,-81644],[15648,-16641],[67588,-48169],[30823,-49995],[68213,-40871],[78544,26895],[36405,-29055],[49233,1176],[12374,-9126],[60758,5524],[32185,-18009],[56198,5378],[46452,52828],[85147,12007],[37560,35756],[43311,14455],[20209,17674],[57749,13760],[24824,17865],[59775,-6604],[49858,31937],[35308,-14168],[9233,-15296],[40454,4948],[41287,-7709],[70522,10638],[58523,-3746],[46208,6028],[30312,-5499],[82574,2425],[62384,-6701],[21534,-16593],[42478,-13015],[32261,17675],[24694,-6869],[25676,-27063],[26850,-9364],[40775,10805],[19678,-10829],[35857,9244],[-7795,-47545],[52640,21925],[18353,-15321],[62234,8980],[36462,-19306],[85866,-288],[69423,-13736],[82271,1825],[78790,27567],[49310,55039],[50275,43150],[12829,23366],[24900,10974]],[[57187484,35211708],[7418,-25550],[23008,-25215],[3330,-21659],[-43538,-138795],[-180816,-600205],[-156859,-504871],[-33491,-122515],[-66226,-229300],[-14796,-43920],[-62708,-210161],[-206150,-703725],[17370,-5018],[-70256,-238040],[-138071,-476899],[-70048,-514309],[-72489,9077],[-27928,-2714],[-215025,-175487],[114,-434298],[7700,-654377],[-317637,-6147],[1514,-322470],[5166,-348790],[3274,-424237]],[[55580340,28992083],[-700971,-278310],[-326264,-128229],[-1213177,-485350]],[[53339928,28100194],[20624,46393],[29083,107362],[-3463,144703],[-6187,30640],[-24844,41975],[-35877,35635],[-61172,6290],[-25583,-15176],[-85545,-101117],[-57957,-121554],[-20283,-50667],[-38051,-28096],[-22876,4370],[-53359,37821],[-101724,92953],[-110444,115216],[-53586,80394],[-33681,69110],[-66510,115238],[4637,59985],[-10975,40270],[-36859,40100],[-22006,35251],[-29708,28672],[-834480,-4057],[-423938,-1153],[-20304,-2305],[-35477,39692],[-39887,19572],[-53907,-1514],[-71581,-22403],[-73341,-9030],[-49499,24014],[-40549,-71752],[-31390,-23123],[-71278,-29200],[-41873,-4971],[-60191,-24446],[-22043,31001],[-17692,68053]],[[50606152,28904340],[-15251,38157],[-45884,48938],[1476,59985],[48325,32466],[7474,18152],[5432,128230],[-35952,159567],[-20965,60513],[-55895,77009],[-27360,24709],[-27379,107314],[-7909,110075],[-37882,39094],[-27418,16521],[-147096,50163],[-25430,22956],[31106,49996],[-334269,360],[-840383,2905],[-242253,1513],[-20474,40798],[-81306,95164],[-30427,45672],[-17464,46225],[-7492,52276],[10955,36331],[53358,58880],[24939,46777],[-5658,25455],[54854,40773],[32035,56887],[32716,126812],[1646,18394],[-36652,68222],[-28173,16977],[-22102,28359],[-16045,52468],[-27493,35251],[-49215,19571],[-27494,30065],[-3897,24180],[16443,66035],[19944,36333],[44692,47834],[-3689,229180],[9177,45072],[-18846,65123],[1192,33882],[13851,48939],[-24050,72543],[984,30809],[-13056,34626],[3444,37340],[-33340,48001],[-10993,77034],[-10995,41279],[3482,41807],[14967,53380],[-510,36885],[-34949,66564],[-57426,64931],[-43936,29127],[-65885,21443],[-124846,130367],[-21986,63275],[37919,45144],[-11487,36308],[-18977,13207],[7965,42935],[18960,31913],[5488,45121],[34910,71557],[63386,78715],[30446,28647],[-9498,43465],[4484,26966],[33434,62194],[49423,16521],[20965,25861],[14968,42935],[303,50763],[-61647,46249],[-89803,40511],[-120132,65939],[-96425,38350],[-101419,17337],[-154326,51099],[-44882,8693],[-124807,12678],[-72602,-8235],[-104788,2400],[-64409,6627],[-55931,-8787],[-59944,-21445],[-102859,1130],[-13490,-7709],[-66755,7325],[-170503,45719],[-69500,-3434],[-80606,4708],[-79452,34915],[-62535,34289],[-102006,70647],[-56104,58207],[-178221,166074],[-42820,73744],[-15061,84525],[4957,74633],[42403,60753],[16330,94611],[-42140,90409],[-265185,298048],[-108459,170588],[-178621,254370],[-36121,66805],[-76765,308230],[-13680,27062],[-32336,148905],[7548,43200],[28515,37819],[133,41327],[19678,79387],[-1210,79243],[-8648,42047],[-39678,135648],[9517,34676],[21345,33546],[1797,51987],[-186548,109379],[-115044,71055],[-123218,86542],[71809,150273],[50104,49299],[100985,12823],[58846,24566],[4105,13111],[71808,52637],[24125,38900],[321,43199],[-16897,45961],[44940,75689],[4937,71319],[25394,119608],[-8648,44136],[-37312,75665],[8552,62458],[-64087,123067],[302,88704],[36254,75328],[-23822,55421],[-60568,34891],[-41061,49300],[5791,65747],[-97580,157646],[45337,140091],[-55383,188789],[-106548,28649],[-37863,123931],[-289198,278502],[40568,16233],[-258770,312240],[-55234,33137],[-147910,7685],[-70748,81741],[-60642,35442],[-170145,273509],[5412,122562]],[[45520934,91542583],[376445,-1850],[346435,840],[47436,-2088],[-1286,-223417],[739,-187062],[-3690,-441694],[-587,-323527],[12147,-136705],[13662,-450435],[-4919,-278744],[211695,-768],[35270,-2232],[176026,840],[110484,3290],[167210,336],[84656,-2138],[32544,6749],[113909,-11287],[42819,5740],[155669,-746],[35212,2954],[112812,-3962],[300967,2282],[237805,-1130],[626477,1202],[408461,-6796]],[[48925762,88432087],[-45770,-35421],[-54740,-9364],[-29689,-17074],[-61400,-1656],[-20474,-16521],[-15836,-45649],[-27627,-31914],[49121,-33570],[11788,-32968],[-7172,-37990],[-46547,-24204],[-2042,-26414],[26111,-33546],[-9195,-25286],[-36841,-28625],[-24542,-36283],[-33718,-116655],[-19943,-29152],[-10728,-39621],[-3067,-46201],[-16858,-41254],[-19433,-19810],[-21476,-42384],[-24504,-97373],[-25581,7685],[-12811,35202],[-30671,-1104],[-9215,-19283],[22005,-31888],[11865,-50307],[26604,-14841],[25562,9918],[1553,-24205],[-27115,-12679],[-54702,-58328],[54758,-92378],[-13793,-26966],[-31203,-7684],[-31674,-57800],[2573,-47305],[20473,-82509],[-20945,-28598],[8704,-47307],[-2537,-44015],[22006,-29704],[36821,-7660],[12773,-17073],[-8156,-28048],[-35287,-13207],[-5621,-26966],[24050,-28048],[36311,-25837],[12790,-26944],[-2024,-46753],[11769,-23099],[40397,-46201],[4637,-81404],[25071,-56095],[8193,-69301],[18429,-51173],[3577,-48937],[-10711,-28624],[-47531,-34146],[-16858,-35204],[9214,-29128],[45487,-28046],[11260,-23100],[-2026,-50621],[24541,-18681],[43956,-16497],[-12734,-51724],[1249,-31937],[15155,-17026],[-1097,-43368],[-36141,-4825],[-26111,-27423],[-30501,-5811],[-13927,43199],[21950,16833],[2270,45553],[-23350,14863],[-35269,7156],[-25564,21420],[-39357,5522],[-51598,-41277],[-24013,-50619],[-1476,-134209],[-10197,-56143],[-2026,-52780],[14855,-50619],[35799,-79195],[-984,-81981],[-7153,-19811],[-33736,-28598],[51145,-67645],[29138,-20891],[24032,-41807],[73074,-48387],[12904,-14335]],[[48564435,85262398],[-24125,-5474],[-59584,3914],[-102384,-4468],[-47210,1898],[-890886,-2234],[-151315,-1944],[-119472,2568],[-226719,626],[-293039,-1370],[-192811,-2858],[-134323,-48],[-171090,3170],[-241647,480],[-153020,-5402],[-185620,648],[14190,-12199],[52111,-6074],[5619,-24758],[-47530,-24734],[-49083,-43438],[-37805,-3267],[-44428,59960],[-15328,-20339],[5072,-81979],[-36310,-73143],[491,-47307],[-25034,-5522],[-25032,9388],[-73057,-13159],[-11258,-20915],[26036,-59408],[-24522,-21995],[-48024,-1633],[-39849,-15945],[-23046,30737],[-13302,36740],[-11467,-25574],[-11050,-84743],[-9535,-11765],[-80267,37028],[-33207,25332],[-57749,-20891],[-33718,14289],[-35250,-19812],[5601,-32440],[23500,-36884],[0,-29680],[-13794,-9895],[-65393,-1104],[-43936,7157],[-58732,24781],[-22480,-20939],[35743,-97878],[-9196,-35203],[4088,-48963],[-13227,-27950],[-17880,-1080],[-2045,-38662],[-53642,-13759],[-33208,-31338],[-22971,3314],[-62837,36284],[-13795,-7132],[-17862,-61616],[-29631,2208],[-81211,23076],[-30143,-10469],[-3576,-25814],[38828,-151305],[-12262,-21996],[-71504,-19259],[-19925,-13231],[-21458,-39044],[2063,-19812],[20416,-21443],[14816,-46225],[34230,9893],[12260,-58328],[-31675,-30208],[-1021,-19259],[19925,-34121],[-7153,-15945],[-29102,-7708],[-13792,-24734],[14001,-80755],[-7757,-23629],[-28515,-33571],[-40984,20004],[-62196,4610],[-49896,-10229],[-49821,2497],[-27057,-30280],[-1004,-48410],[-51050,-50619],[-8174,-23125],[-29101,-23100],[-46738,-22309],[-7360,-32178],[-28080,7684],[-31164,22550],[-32657,-29754],[-69481,31914],[-85752,-41855],[-86813,15897],[-32166,19259],[-20474,94611],[-24011,20915],[-20417,-1680],[-10691,-54462],[-58618,-36356],[-40568,-1128],[-51071,-36837],[-38296,-2712],[-18373,20362],[-63823,13232],[-17881,-25287],[-12279,-55014],[-35744,-34650],[-1040,-13207],[48988,-51699],[10691,-24038],[-20625,-21851],[-9423,-33618],[37843,-1490],[2895,-54942],[23462,-42383],[6093,-65434],[-27606,-84719],[-55100,-21034],[-37522,-29848],[-12185,-32370],[23861,-10878],[77350,12366],[13775,12967],[39698,-37028],[-30010,-17745],[-27607,-65675],[-511,-20387],[-20227,-17987],[-28590,3578],[-23689,24062],[-27627,-5619],[-1796,-44208],[-20096,-64931],[11485,-21347],[41629,18585],[17937,33330],[34759,-92401],[-19489,2833],[-30142,-18971],[-33378,2162],[-26376,-12392],[-5186,-23076],[-22970,-33930],[32470,-12607],[13283,16857],[25658,-13374],[26547,29247],[27813,-13567],[-8248,-26367],[6981,-23604],[-36253,-62146],[-59225,-46729],[-19925,-72087],[5582,-37388],[-7171,-17433],[13700,-19379],[3235,-33378],[-12374,-5811],[-31090,16017],[-61760,-73672],[-13793,-29152],[-6660,-110603],[50539,5882],[20285,-19379],[-8251,-17457],[-44485,-13711],[4314,-48866],[-15818,-40678],[-6149,-45649],[7644,-41279],[39281,-33570],[39905,-46921],[-19811,-19739],[-34966,12799],[-8249,-40341],[57218,-10879],[18902,-13782],[-7662,-29704],[-34191,-33547],[-28686,3579],[-15951,-23054],[8610,-25021],[22099,-15992],[10862,-95644],[-62744,-24709],[-12772,-55566],[9668,-33042],[-30596,-10423],[-52527,17051],[-22592,-30905],[11013,-12223],[45071,-16209],[19962,-48794],[-12204,-19355],[-32847,1104],[-29651,44137],[-28249,11863],[-50522,-26944],[-48968,-16473],[-5090,-19233],[42837,-21468],[-1550,-41278],[-55101,-46225],[-14816,-36836],[-47928,2762],[-22971,-51700],[-22441,-20893],[30087,-55590],[4068,-40148],[-91808,552],[-61193,-37388],[-48969,-5499],[-36198,-37412],[-46924,-23654],[-10748,24206],[-25203,-17387],[13510,-44183],[-15592,-27494],[-43558,19761],[18922,14481],[-6869,59672],[-29441,10205],[-8439,-10253],[19129,-79219],[-25431,-35612],[-122896,-85246],[-18353,-55589],[17842,-111132],[12887,-35996],[-41837,3986],[-23064,-8716],[-30086,-43991],[3066,-43465],[-10200,-37412],[5621,-58328],[-13246,-34674],[5601,-27494],[30086,-61066],[5618,-39068],[-8155,-15441],[-68837,57775],[-56575,-80827],[-14267,-58328],[-13755,-19259],[-7134,-47353],[-29064,-12103],[50730,-55757],[-14855,-19595],[-39470,-15152],[-21154,10997],[-16406,41831],[-22592,-9317],[-12337,-35082],[31032,-746],[13832,-13351],[-29708,-60848],[-16670,-15321],[-19034,8501],[-586,40078],[-30142,-408],[-20985,-12439],[-3898,-36620],[-13963,-26366],[-22064,-600],[-27682,28814],[-18637,-10084],[-19320,-46921],[-47152,-23102],[-25129,2450],[-16536,23796],[-757,29848],[-18127,3458],[-33000,-30064],[-13812,1130],[-1325,50571],[-22251,144],[-17011,-20363],[3821,-36020],[-44465,-29128],[-90465,32010],[-15364,-56600],[-17937,4252],[-7606,42021],[-17957,10015],[-19678,-37580],[-15970,2856],[-8307,34100],[-16708,15079],[-22158,-56814],[-26547,-10085],[-28950,44111],[-16367,5571],[-13357,-30472],[-4863,-42839],[-10162,-5692],[-48875,20075],[-21834,-2306],[-4523,-40701],[-60473,-32490],[-56651,-61496],[34532,-40751],[-19074,-36212],[-30861,8237],[-14040,-13663],[11410,-49179],[-32148,-50620],[-27020,-19257],[6604,-56647],[-20397,-22548],[-37712,-8260],[-21418,-51700]],[[38012652,82170969],[-1230,40125],[29915,23197],[35364,43991],[64467,62098],[20511,29248],[32374,74775],[49177,127414],[45318,93362],[17237,148352],[11977,42840],[10408,72567],[27739,95500],[14494,139035],[-22745,12799],[-38657,2736],[12753,70479],[-1493,34026],[12960,9774],[53398,8259],[44275,75689],[-170,84119],[24825,46825],[21987,58134],[8912,69903],[-8609,47785],[-24939,59385],[-7662,59264],[1021,80371],[5772,19282],[33756,43488],[49082,43919],[11467,34483],[-16367,65820],[-8232,58064],[-22801,40148],[-7870,29896],[-27171,-360],[-16539,19235],[10142,22452],[44240,26559],[3595,46153],[14360,81980],[51089,72446],[4541,108515],[6056,59552],[52979,105633],[47457,56360],[15136,31216],[30294,98478],[13246,7204],[5675,52732],[37844,64786],[-10143,39214],[-775,38925],[25355,23581],[30066,-6772],[45848,83830],[25033,21515],[16158,33786],[57674,150586],[31617,32128],[30976,14505],[29706,31168],[38240,-33810],[22783,8860],[1191,23654],[26775,15103],[12298,46033],[43615,18011],[-1608,42239],[-28875,29223],[39528,55806],[49082,-3266],[16160,31434],[37124,34482],[18939,72327],[-7548,22909],[140966,187902],[85166,37723],[26736,58713],[20321,9941],[22650,38949],[-7872,27615],[29555,50354],[63483,-18513],[12734,53981],[1703,40870],[46396,51580],[927,30616],[-14154,28096],[-44011,2448],[-29310,49707],[39924,143407],[12092,28742],[28118,14913],[27039,44951],[4408,40823],[-25487,55157],[9233,33522],[21987,22044],[43122,103784],[-24390,73625],[12034,35251],[49235,17577],[1419,19379],[24901,80995],[14190,9581],[-2081,47811],[35478,34842],[41571,0],[41477,36884],[17048,23868],[46849,10711],[20909,16497],[26377,2714],[28628,18729],[25866,31818],[5279,35082],[94854,136731]],[[40308599,87665953],[51164,-3074],[39073,39958],[30880,3841],[43595,28048],[19679,25741],[25129,66444],[19374,16906],[13625,61089],[-12111,75329],[3937,48745],[31484,48434],[3937,38422],[-8174,23436],[4540,46873],[-8779,47641],[16348,48795],[0,40726],[14532,57224],[34512,49947],[46927,28046],[18164,29224],[13321,768],[19375,41111],[23312,28432],[45412,21491],[89612,-62242],[17560,0],[6660,-41087],[41173,-44182],[32091,-19980],[-8173,-27278],[1514,-41110],[15743,-24974],[40415,-28048],[4674,-34626],[23557,-35180],[24069,-17025],[45582,-63274],[41950,-34651],[16404,-41782],[90049,-19786],[28155,-18107],[45052,-55541],[13813,-7709],[80323,-12101],[19962,7203],[83917,-20891],[39394,2232],[49103,29706],[31731,-9343],[11750,16497],[15875,-8236],[13794,36284],[-8704,57776],[21476,29200],[-10748,37916],[32735,46225],[-33775,70406],[-4635,93530],[-18941,45697],[7151,52804],[31543,84645],[5677,47019],[37407,45287],[55347,25334],[2042,29896],[41440,70406],[26111,12103],[36329,34674],[35308,23102],[76273,-528],[53738,7154],[29177,20916],[23539,42336],[1058,57846],[23464,34050],[-10653,62962],[-23122,36333],[-25696,21755],[-5884,22549],[22857,22260],[61363,9052],[48249,46226],[122348,43486],[32771,-9364],[25451,-35107],[57351,26870],[15062,-11285],[-12015,-53381],[24636,-37917],[61741,-57319],[18013,72],[25355,26558],[34324,8092],[51466,-18129],[23462,-18153],[8478,-29320],[-8552,-43321],[17255,-33402],[70787,6916],[47947,40919],[40681,1848],[18620,-16569],[18201,-54725],[37012,-39189],[23160,-39813],[22006,-21085],[52545,-1296],[59565,30016],[50691,48267],[19034,49227],[57939,-2690],[19848,34530],[25999,12799],[29669,-31960],[2932,-21517],[-44465,-28936],[13927,-17337],[76291,-3985],[53586,7539],[47872,25982],[55137,8164],[24428,19811],[25431,37653],[40247,122250],[13585,52301],[27039,44063],[4900,25790],[-6906,93794],[-30351,37580],[-29970,12511],[-20058,20459],[48079,39743],[21686,89376],[20946,39284],[-5772,17867],[8932,42647],[16971,26462],[54286,50115],[49273,68796],[10141,72567],[53057,69542],[34438,32658],[34721,52036],[28760,56959],[40303,22068],[60342,50043],[22554,45745],[37351,26942],[57483,9726],[44864,24420],[63331,-31552],[70312,-9893],[15497,-22021],[6811,-48577],[13360,-14697],[34664,-1320],[92999,14863],[36028,38254],[16309,31288],[-3576,62242],[12318,21492],[33417,9388],[48154,-9556],[69727,-26848],[81193,-18129],[33282,-42455],[19604,-264],[20680,20699],[25583,44063],[72053,74921],[51884,37988],[45487,63996],[17048,78114],[53377,82389],[29708,65962],[30559,23798],[11730,26557],[-21041,52230],[2649,24301],[29443,48961],[23671,17435],[48268,-1633],[29915,30279],[19036,58064],[50350,128854],[13548,45167],[26490,52230],[8306,46897],[1742,61568],[17957,37774],[51315,-24],[-417,21059],[-39394,37965],[1098,21059],[40454,28478],[7965,25814],[-18580,93460]],[[48655033,26434966],[1104889,99655],[727516,65746],[12337,5091],[489862,43175],[324052,29440],[216482,21372],[99394,7805],[1126195,99148]],[[52755760,26806398],[14400,-72085],[33850,-50117],[29821,-97396],[1475,-46777],[-7000,-66587],[17181,-30833],[17295,-5427],[32866,18178],[26376,-1633],[20928,-29152],[-2459,-57223],[-39887,-18730],[-1912,-29944],[49008,-68534],[44617,-108225],[82156,-122226],[40248,-29921],[41191,-13063],[47399,-30160],[30899,-47858],[7664,-45216],[-6472,-79603],[-10993,-38110],[-31447,-74415],[-9330,-57295],[11353,-77202],[38431,-44449],[58372,-39141],[26151,-50571],[28912,-23436],[77767,-38902],[48024,-9820],[39375,-22741],[22422,-25525],[83313,-124989],[33055,-68605],[21722,-64882],[-10406,-94515],[-1629,-89137],[3917,-61449],[27304,-138939],[2290,-34914],[34324,-56816],[31069,-117086],[11751,-104961],[17464,-62938],[7191,-79987],[31068,-49852],[89803,-80804],[25601,-36114],[46887,-81980],[51203,-65893],[53775,-47257],[31768,-13207],[141194,-33883],[219812,-57342],[106017,-35948],[45678,-19739],[57049,-51675],[46905,-25719],[51960,-1920],[41136,10878],[74115,4490],[43576,-5979],[113681,3938],[36443,-14527],[57712,-44329],[56802,-58472],[48496,-74847],[35573,-33307],[34173,-14120],[78353,-19378],[69178,696],[16423,-22283],[27304,-77082],[14645,-10038],[24202,-40965],[11523,-80421],[12904,-8283],[30029,22211],[17427,-7923],[26755,-46057],[39036,-14912],[24956,-86784],[36197,-55445],[7097,-69927],[17956,-42263],[39944,-59575],[-2669,-25574],[-36291,-41759],[-32772,-106378],[-28798,-55397],[-18090,-58809],[-19583,-108658],[28552,-35394],[45752,-121698],[-27190,-34267],[-51580,-98430],[814,-24252],[22270,-43104],[62385,-72015],[32810,-85293],[19886,-13184],[19,-55589],[31315,-40702],[8950,-44017],[26339,-33017],[-32280,-91346],[-6849,-69901],[-17881,-30809],[-18373,-52829],[4484,-54485],[-24353,-33571],[-16367,-119367],[-23841,-15416],[-51163,-13232],[-67569,19234],[-21856,-4946],[-43160,-54318],[-4086,-16449],[118335,-796126],[5431,-22355]],[[55692753,20273551],[-232074,84645],[-242688,302564],[-170598,205215],[-483994,-6053],[-409522,115816],[-263955,282752],[-343011,235015],[-33644,24134],[-268742,-54967],[-391792,115960],[-917319,269305],[-1006364,31649],[-656978,417754],[215082,1088243],[10768,33810],[17275,95884],[-27740,34363],[-341345,631252],[-151032,273893],[-12773,40294],[-81855,306885],[-81816,311592],[-58733,96845],[-1009468,943877],[-95573,87985],[171,192703]],[[38876972,36342934],[1116,24541],[21665,50643],[31751,55807],[606,39068],[30482,62890],[51486,81477],[491,23652],[-15023,35228],[-17541,107843],[23502,36883],[-11524,33571],[491,35778],[18488,52829],[-3502,31890],[32471,120569],[-6018,42910],[27512,53430],[18506,50619],[40019,7731],[38506,23126],[44522,9917],[25524,18730],[48515,-8237],[33530,12103],[44031,-35203],[20530,-46777],[74039,-44016],[25016,-40174],[133094,-80876],[47019,2209],[21515,-22019],[71031,-50067],[25526,-37989],[56007,-8260],[20076,-12607],[87211,51123],[37275,-7083],[98922,41278],[340891,147056],[447515,191406],[233379,100832],[41438,16088],[61628,-60272],[35649,-40535],[32716,11935],[23387,-13664],[69234,-17192],[24409,11718],[62667,-3243],[5942,-41373],[48591,-86352],[30313,-21754],[22857,16328],[91580,-9053],[69670,13111],[39110,-20578],[30010,3793],[13888,-17769],[37105,-15873],[8705,-44929],[45865,-16736],[16311,-14240],[31429,3745],[59375,-51170],[62897,264],[70444,-48146],[32829,-33738],[3065,-25791],[21647,-25118],[18940,-5067],[493855,1849],[145715,1273],[499436,1561],[71825,-5475],[438906,648],[882239,11456],[-23482,58111],[-84030,45144],[-90180,19883],[-93777,45361],[-17426,49226],[-62044,259556],[-95668,179400],[-184278,235688],[-37048,129118],[-13169,142757],[-51656,136466],[-74948,82317],[-145660,-15513],[-117446,-4586],[-59414,37339],[-45147,106547],[-5033,213523],[-28457,100925],[-91317,167780],[-37408,24156],[-32942,63996],[-33529,98453],[-27323,184732],[-11202,113124]],[[43276717,39443969],[123200,-1849],[922408,-5474]],[[50606152,28904340],[-1384606,-9460],[-366379,-2258],[-488992,-6748],[-19451,4394],[-12450,-28070],[-1477,-44040],[-38864,-36885],[-51297,-87526],[-12942,-50619],[-18866,-157935],[-21930,-16521],[-52828,-12149],[-56235,10973],[-30899,-7683],[-52849,-48411],[-511,-36860],[-18165,-83541],[-624526,-768],[-71977,2017],[-494366,-4923],[-561101,961],[-1533,28287],[-17425,52084],[-31373,61137],[-44749,70357],[-30824,61305],[-14116,41687],[32073,113990],[9328,93482],[-8136,62602],[-70124,141990],[-49347,108154],[-45903,17505],[-41287,4203],[-213115,50906],[-45374,21877],[-184391,224040],[-38959,52709],[-49840,121313],[-85885,140548],[-47361,65052],[-39810,66180],[-20948,61737],[-68420,141196],[-49896,41447],[-31182,12726],[-43804,-11574],[-75043,69469],[-44087,-14504],[-17504,-24396],[-38731,-7901],[-20720,-50835],[11353,-43223],[-20209,-13232],[-15497,-28071],[-36233,-4922],[-14797,18873],[-17806,-3721],[-41401,26366],[-34455,39933],[-9385,47378],[-19716,56479],[-28289,16041],[-90710,21658],[-39962,15249],[-31164,22501],[-10597,49995],[-21929,45288],[-26699,20530],[-39262,11983],[-32242,-3337],[-26604,-23534],[-45545,-58398],[-36594,1777],[-61646,-14576],[-112112,49202],[-40473,22380],[-51467,5187],[-24918,29727],[-46094,20028],[-24182,-6076],[-34608,6460],[-38676,-6220],[-29308,-54052],[-52905,-31193],[-65848,7515],[-123293,-27134],[-13151,-9534],[-58751,-79674],[-42896,-43224],[-65487,-27423],[-54134,-40245],[-69179,168],[-53188,-24902],[-5790,-39548],[-18581,-57896],[-44996,-195971],[97410,13664],[22099,-61089],[36368,-84597],[-189159,-18970],[-69103,-32634],[-95912,-70022],[-123369,-127460],[-87495,-69063],[-208912,-182809],[48723,-76122],[-383957,-545886],[-619664,326984],[-438754,229995],[-19944,8910],[-378943,-252016],[-208289,370088],[-267267,7587],[-560666,9630]],[[21997255,89571982],[-14476,-2090],[-193000,-2424],[-100663,1680],[-63274,-3241],[-205280,648],[-222084,3097],[-27171,-3145],[-420665,-15896],[-548916,-2499],[-462860,-5714],[-1072912,20003],[-990678,288],[-201117,-1994],[-127211,1178],[-987613,1440]],[[16359335,89563313],[-26680,20772],[-34285,5138],[10084,50715],[-9839,35660],[21022,12151],[-18069,58230],[2460,20411],[19678,19332],[3198,54269],[-16236,25478],[15497,44903],[16348,-15055],[21022,11358],[-10292,18130],[28608,2328],[29859,16905],[-20871,38038],[-11995,70453],[21702,-1128],[-27530,47929],[9839,40822],[28401,8957],[-20285,11239],[814,50835],[-10160,26534],[14154,20075],[-29632,6340],[-2214,90192],[3444,62722],[-21760,32370],[30009,20458],[-12544,16497],[15004,30642],[-16839,12438],[31485,58616],[23859,2113],[-9214,34194],[19167,-17818],[13416,61666],[-11562,-528],[28913,51892],[-19299,26414],[-41817,25765],[-10200,29824],[984,38975],[19566,51627],[-19434,63370],[18827,17169],[5544,67742],[-17483,-7782],[2593,56000],[-19678,26389],[-15593,-3938],[1477,26894],[-18203,21925],[-29158,72375],[19186,-5403],[27796,29584],[8609,47666],[36292,-3291],[10710,16089],[-21533,20748],[10464,13856],[-25355,9389],[-1836,22308],[15006,62073],[-43408,41205],[-10708,-6866],[-46492,6722],[-13773,20483],[10197,17410],[6036,100758],[7607,8381],[57540,504],[15460,38254],[-160171,-1970],[-4541,605727],[-852,453197],[-330030,3818],[-631376,-15945],[-3160,529558],[377,279464],[-8779,73359],[2535,874049],[-1588,380846],[9081,207207],[-3556,224665],[-2991,53429],[2328,192127],[-7285,882670],[1685,212730],[-2537,166195],[-1304,453629],[472,135025],[-2044,1349241],[-1475,769759],[-2346,33042],[-2423,202165],[-189,226563]],[[15227066,99962755],[434327,9629],[334931,-11407],[223710,408],[120682,-3506],[492189,-672],[165999,1658],[197617,-1730],[177068,816],[191487,2906],[280438,-5210],[272282,599],[83349,4971],[203596,-3122],[510391,-1609],[313039,-4562],[183408,-6556],[326322,8574],[98828,-2930],[454705,-7516],[237372,-744],[512963,-11311],[364563,-1872],[113531,-2546],[90614,-5403],[70995,3723],[73774,-3339],[289105,-4034],[313511,3194],[128837,-480],[121099,-9942],[87757,6484],[67552,-6676],[185431,-1872],[242802,-6293],[143256,-192],[123027,-9340],[449199,-4827],[97334,1850],[518414,-4996],[131201,-6026],[296484,-2594]],[[27353279,49009848],[274401,16593],[419928,29175],[-4940,14024],[44201,12608],[11334,13807],[18791,-8093],[43670,33186],[23122,-10517],[31411,30641],[9213,28982],[35403,-8595],[35309,15872],[22610,-42336],[32073,-1681],[12563,-28863],[-22630,-13760],[88440,-19690],[7645,-17793],[48532,7131],[17523,23990],[13774,-24110],[29139,11766],[38600,-1464],[30350,13496],[58582,-8502],[19678,21373],[7816,-77178],[22667,-29128],[-18788,-42816],[32657,-4705],[18108,25910],[15213,-10470],[66322,-96],[7643,-21276],[24467,31746],[-1326,13447],[45905,-7804],[30046,37771],[35763,-18154],[30406,30401],[5072,-17145],[21192,-96],[25299,37581],[18997,-2475],[14341,24423],[43766,-1513],[36747,32321],[10803,-21300],[11429,32874],[32602,-3314],[1797,32754],[14362,16257],[28610,-14504],[21344,33690],[-25583,-3987],[24106,50885],[43577,-769],[2403,27855],[35610,15345],[20492,28934],[48156,28960],[-2309,20196],[18695,45576],[54191,40053],[10501,937],[13851,57200],[-4464,20986],[44654,43608],[-37238,16521],[28289,13063],[-1458,48074],[-11844,29320],[25827,13207],[20020,36595],[-22348,43993],[-7019,65626],[-13927,23630],[-2460,52708],[31183,40751],[-21608,22547],[-18391,91298],[2459,30136],[-15591,20651],[2479,79675],[11107,15464],[3444,86712],[17313,26918],[5506,51699],[22612,2882],[36877,-27807],[38978,-1921],[39849,19235],[22802,28310],[34361,25287],[12999,49562],[-1155,31769],[14438,5500],[49934,-12271],[85468,-36092],[33776,-817],[15781,20100],[44863,33474],[51089,58256],[30331,43054],[9800,28311],[29480,24375],[81136,4753],[53701,17962],[38391,33067],[6925,51652],[32053,22090],[42726,-17960],[22536,10806],[32619,35899],[37522,-4010],[23690,8331],[61495,43872],[43313,8982],[86320,40941],[32356,-2569],[15874,22909],[31467,16857],[10104,23820],[38979,37005],[11560,52756],[20776,24182],[16746,77946],[19925,45983],[34703,35252],[170,20194],[-20208,24663],[-4618,34338],[17352,27351],[61002,51411],[20909,-11238],[34248,2881],[28156,13688],[18846,-13206],[14739,22500],[78052,33929],[51089,12032],[35439,30400],[41061,52900],[40587,-7131],[29215,-29944],[14360,26150],[18922,7827],[35933,-12055],[19488,-21442],[10219,-32202],[24673,29200],[19678,3818],[3672,-54630],[-23369,-38372],[22743,-16641],[46454,25022],[13340,-13088],[-9991,-81597],[39489,8214],[27209,-9270],[-12489,-35731],[62689,-10662],[29271,-15489],[28950,41279],[61893,10855],[31278,-20845],[16839,-26989],[-25581,-32826],[-5148,-25646],[10464,-24398],[35232,-37123],[60455,-25239],[45638,168],[60039,-11021],[36860,-17938],[47984,-889],[12243,-27710],[49233,-5284],[27248,-54100],[-114,-43439],[-31636,-55590],[-51807,-30858],[642,-68940],[13567,-13689],[59527,-12991],[58961,31169],[40113,33810],[67171,15082],[29518,-3387],[54855,-30809],[13320,-19041],[26491,-10831],[-6491,-35730],[-38865,-70263],[-38202,-53644],[-18317,-15393],[266340,1848],[42271,42192],[200154,841],[439946,-817]],[[33351485,50666023],[435,-699185],[297012,-384737],[281762,-367567],[225318,-298169],[4088,-407523],[2195,-347179],[3576,-301821],[472793,9535]],[[34638664,47869377],[4826,-103041],[20776,-304916],[284,-924643],[18657,-15489],[17843,-49514],[33036,-47162],[-6130,-46633],[20379,-41999],[77994,-59937],[66188,-19690],[20379,-31024],[30122,-19547],[88913,-12078],[72508,-53358],[12167,-22956],[35989,-34170],[22441,-45697],[37692,-50739],[108288,-48219],[80114,-6363],[-700,-425966],[-2877,-283642],[1439,-479851],[-416,-121385],[2819,-799921],[-132,-150489],[-14458,8982],[-2156,33809],[-20946,10975],[-44693,-66828],[-4807,-36597],[-31315,-116486],[-39735,-25502],[-88251,19042],[-30822,-15585],[-60814,-63946],[-59111,-83084],[-78960,-71728],[-54551,-15969],[-8174,-75424],[604,-44520],[10730,-80708],[-47419,-73960],[-18051,-63946],[-17578,-31433],[19,-36883],[24561,-51868],[-32980,-39766],[13358,-52972],[-17673,-86520],[19982,-44904],[6509,-60489],[-40758,-51195],[-1191,-21659],[-29727,-45841],[-35024,-5020],[-15762,-14144],[-22365,-61809],[5184,-29056],[-6772,-59791],[8400,-906611],[-75,-175342],[-153266,3578],[-582444,-1513],[-230466,-1417],[-1986,-222887],[-6395,-362285],[549,-121145],[-321573,697],[-252528,-2377],[-379284,8308],[-192886,-3314],[-691263,-3145],[-77427,2785],[-148687,72],[-63349,-3458],[-566929,-2210],[-193360,-120],[-44087,-15416],[-10162,21876],[-49233,-1728],[-6435,-36621],[-42403,1080],[-24787,-15224],[-30085,44880],[-10123,-1368],[-9290,-39044],[14853,-22286],[-34834,-33161],[-35082,5524],[-9365,-25838],[-16027,31841],[-32338,36138],[-25922,5260],[-18088,-25742],[-32452,10974],[-15535,-31913],[-53869,-7277],[-4882,-27231],[-42744,22405],[-9347,-25526],[-28194,34818],[-27152,-21610],[-46887,8837],[11732,-32083],[-23104,-3218],[-3462,-45192],[-27911,4900],[-16083,-10110],[-3993,-66540],[-29989,17794],[-16235,-32394],[-35554,-3650],[-12016,22428],[-23955,-2353],[14098,-44160],[-21118,-33930],[-34664,-1297],[-5921,-15992],[28343,-46802],[77,-29920],[-14362,-24758],[11560,-39188],[-34303,-1297],[-6547,-10614],[17918,-38493],[-23104,-29631],[-23803,-2931],[-10558,-46777],[11258,-17578],[2346,-35874],[-6906,-52950],[-15819,-19642],[27153,-36331],[-18960,-18586],[14929,-7901],[-10633,-36835],[27020,-32490],[-2612,-55735],[-37501,-17720],[-379,-52277],[9688,-33403],[-15667,-8980],[-42838,5018],[-30199,-10348],[-19111,-23341],[-27399,-3266],[-2176,24805],[-32601,14816],[-48024,-20915],[-15704,24349],[-34343,-21420],[10028,-37868],[-34645,-12895],[-9916,-17721],[-39187,-8598],[7474,-18849],[-36291,15584],[5506,-29681],[-16292,-29103],[-21892,11791],[-43594,-48650],[-8042,-34243],[-21780,192],[-21834,-35180],[-10976,-45672],[-33055,-19835],[-4504,-25838]],[[29330246,39030009],[-120151,1754],[-35385,-2883],[-536881,745],[-1064530,1970],[-627534,13735],[-146889,-12054],[-38260,-504],[-55326,12798]],[[26736322,39207082],[19111,22139],[52582,8765],[19471,44016],[18657,2786],[10009,38539],[31562,9918],[9497,22021],[-32071,24205],[-19566,29680],[8516,9917],[24559,-16497],[19036,18706],[-18543,37988],[17502,17601],[11997,36861],[65090,12438],[13528,17627],[-32564,23627],[32526,58377],[38564,1104],[17009,26439],[-6509,23676],[-34550,-18754],[-17048,28072],[34531,42405],[-2005,22550],[-21041,6050],[14002,53958],[-37068,-4971],[12508,44039],[-37560,-13231],[-13547,59984],[-64655,32970],[-5525,20364],[27530,50115],[36595,-17049],[16025,3865],[-18032,18154],[14002,19836],[-20056,17049],[23046,22571],[-2005,33018],[23539,-528],[40057,30280],[-11525,25863],[41572,28095],[47096,-12078],[11504,27518],[26036,13784],[19053,-15416],[19528,26989],[34570,-20362],[19546,3313],[-7530,28072],[22534,39093],[-14551,23652],[24978,32394],[45166,-2641],[38069,18681],[-3026,50091],[9516,43488],[-19546,2185],[-12015,-18178],[-16045,9366],[16007,61089],[31069,29200],[-2023,36332],[44598,23147],[25052,-10997],[24958,22956],[23103,-8620],[-11504,40125],[-21553,19810],[-7511,23126],[18524,15416],[21060,-8814],[-6037,41831],[27437,20891],[-6395,19860],[-32073,30809],[8497,45120],[-19036,18178],[3501,23123],[26055,-1633],[31580,-33569],[10521,-23124],[45619,63874],[37559,2762],[20550,33018],[-26056,59432],[60625,34146],[-41589,29704],[21041,26991],[33566,17601],[-2516,31937],[-32564,22548],[4484,49538],[-37087,22574],[-32583,-24],[-39110,37435],[4503,17049],[-29063,36333],[6489,39620],[-33585,37413],[-12546,39621],[-24048,2209],[-10539,23654],[-38317,14936],[-4181,245244],[-11126,798959],[-4732,1485371],[2347,668881],[6339,695536],[-8893,153923],[-2839,949377],[3899,1138718],[1058,76674],[-1608,761284],[1060,128348],[5620,173013],[5714,276222]],[[34638664,47869377],[591603,10780],[181894,2691],[883829,15897],[2572,2641],[336975,2329],[1460673,-13232],[565245,-5834],[182763,1249],[173607,-2762],[807347,-10542],[1201313,-15512],[181893,-432],[19243,4393],[166340,-5426],[125658,4201],[205527,-5786],[433967,3338]],[[42159113,47857370],[36917,-30881],[74210,-80827],[90181,-65363],[66471,-77250],[31277,-77634],[18808,-127078],[-59395,-108106],[-42176,-18298],[-25980,-24180],[-43936,-58088],[-15023,-58112],[-474,-81643],[19792,-81932],[36690,-38014],[38733,-52803],[43462,-13016],[33075,-23629],[92224,-78233],[28799,-32323],[56595,-38275],[58714,-49443],[88250,-27567],[44598,-29153],[43785,-37795],[66604,-76289],[97634,-120113],[61137,-130127],[41210,-190375],[49726,-115958],[10408,-34339],[73661,-135625],[20038,-85583],[-12620,-153346],[-18297,-35636],[-20701,-75209],[113,-109955],[10068,-17650],[60718,-70429],[43596,-36501],[8988,-36450],[52186,-111420],[12147,-32850],[15213,-74897],[12904,-38661],[60853,-121193],[74248,-103400],[36462,-65579],[49082,-129095],[17408,-64379],[5337,-40244],[548,-126862],[-6792,-102750],[-21969,-90649],[-19755,-99966],[172,-119513],[17255,-30232],[55631,-132985],[16178,-64451],[-25243,-43343],[-102536,-83181],[-66074,-22379],[-53018,-27687],[-16102,-29320],[-19678,-57993],[8059,-149623],[38602,-306766],[56158,-173806],[-7588,-40846],[-36329,-80179],[-32052,-55447],[-32641,-13760],[-63935,-45552],[-40342,-52396],[-33188,-74705],[-12355,-69613],[-1402,-49850],[16632,-103953],[24732,-46321],[22422,-59912],[8855,-57008],[-3349,-58759],[-19243,-55110],[-27494,-196883],[-13055,-55108],[1779,-48074],[-4391,-85920],[-1381,-150704],[-10047,-56455],[-31580,-78186],[-10408,-43463],[-2100,-61666],[6018,-40727],[30918,-93266],[34437,-92474],[36897,-74799],[27645,-95957],[81664,-206080],[68516,-181128],[47475,-89281],[61891,-65723],[39661,-60057],[27985,-55471],[15988,-60752],[10332,-136034],[-20530,-48578],[-64485,-44568],[-135158,8718],[-80983,11718],[-52356,-12055],[-40814,-28168],[-28572,-28551],[-22745,-51219],[-24748,-93674],[1872,-58953]],[[35973149,34667286],[10937,392492],[1835,134520],[-320741,1009],[-2762,694694],[-324865,-3938],[-1570,164778],[-2574,531623],[3349,2521],[-5809,175414],[2707,4107],[-1458,368070],[-8288,497237],[985,352103],[-85754,-5259],[-671660,5379],[-37805,-1825],[-487779,-2473],[-5981,525211],[-4825,496565],[493,23148],[-183312,1200],[-227779,-1608],[-244335,624],[-267040,-3722],[-393040,-1561],[-225583,1609],[-543636,961],[-381422,-1705],[-129991,2929],[-4032,-3073],[-611357,1224],[-24237,-2185],[-297827,2450],[-5109,3841],[-432074,4610],[-85413,-1369],[-255404,577],[-239869,-1081],[-18581,6076],[-131297,-2450]],[[51324512,43308593],[-49614,-103497],[12944,-20555],[441498,-83228],[-141515,-300547],[-56198,-111901],[-301004,-413551],[-73454,-83709],[-184827,-197867],[-85771,-143454],[-78885,-87551],[-130635,-150104],[-1058,-88585],[3519,-369055],[-411735,-865],[-205052,-1608],[-23293,-12535],[-40265,-113005],[-719,-37748],[-24787,-40726],[-18279,-54821],[-17199,-22813],[-27039,-69925],[-18903,-86327],[1476,-29969],[-15648,-44760],[-16178,-110772],[9271,-62097],[-137125,-2617],[19,-135026],[3784,-392611],[-5393,-99151],[4730,-62794],[-498962,-8811],[-83292,3168],[-266587,-2952],[-125300,-7012],[-107077,2521],[-187172,-3387],[2063,-255376],[4067,-70119],[-68476,-3290]],[[42159113,47857370],[-37257,31145],[-97352,122970],[-13244,43920],[14532,97493],[23878,21442],[64428,11334],[146264,1825],[60418,20147],[45222,24470],[30124,95667],[13963,104410],[6509,75376],[-13718,102439],[-6244,91777],[20020,226708],[9139,141603],[-8951,57248],[-3784,290652],[31353,276702],[-11183,72592],[-26869,222047],[-13339,50283],[-5109,56286],[13530,213164],[-7967,165906],[-22119,111828],[-18052,110844],[-11258,48170],[-7058,99989],[17030,76554],[25299,52013],[70066,69396],[66263,48987],[37655,7229],[234079,64450],[31920,20819],[40758,49684],[25544,51699],[18202,59096],[2762,47330],[31922,175031],[30312,50498],[46264,54558],[49233,49275],[59584,42719],[89273,38636],[71978,42192],[108515,110579]],[[43391648,51956552],[29138,13111],[49859,-11719],[134059,-58880],[95536,-48266],[91769,-67043],[92054,-76962],[90843,-40462],[100152,960],[61988,29080],[29460,37269],[34684,105536],[26678,56167],[54515,56935],[73642,22499],[52564,10543],[50654,-4395],[51107,-12150],[131600,-56191],[58846,-32058],[61570,-41254],[49707,-23412],[75460,-56359],[117465,-137617],[32166,-69398],[20418,-82388],[26527,-50789],[44503,-49851]],[[45128612,51369458],[-1532,-60633],[-44843,-71173],[-34078,-71967],[-10767,-35683],[-8779,-121794],[11372,-183604],[9442,-31529]],[[45049427,50793075],[18524,-143981],[26376,-114087],[56235,-194071],[53038,-150467],[37993,-99076],[55119,-98310],[10256,-49059],[43823,-90960],[31448,-53909],[-138885,-259653],[-23483,-56742],[-25392,-82678],[-38903,-107314],[-26736,-100181],[-48345,-206943],[-7284,-263327],[-11202,-214796],[5696,-33738],[-1288,-183483],[-3840,-146888],[8307,-70117],[33491,-69951],[57408,-75712],[75931,-72255],[105848,-74153],[88345,-28263],[117504,-53044],[123217,-26343],[84277,-5018],[32829,5666],[141211,47738],[126775,45625],[117069,38325],[68402,17626],[60833,7659],[155800,6989],[122668,-14504],[55592,-10231],[78128,-44880],[60907,-53572],[46075,-69638],[24673,-59985],[22632,-10420],[51617,3289],[53379,38373],[31220,41133],[18808,54631],[22611,84717],[8855,73144],[-49953,557701],[-46812,175727],[-39432,99557],[-43842,69855],[-35231,44016],[-86169,85437],[-70767,42503],[-60814,23436],[-119698,33571],[-187590,11934],[-166472,23101],[-98940,29032],[-55970,45409],[-21779,29103],[-22745,48843],[-7379,66731],[10255,193617],[2082,76289],[12355,13111],[192830,-26438],[147059,2810],[112319,12197],[246302,14049],[165224,13134],[160058,-6674],[109954,-20653],[89480,-34482],[95062,-60753],[99017,-99029],[86357,-79146],[90994,-127917],[73378,-118265],[83011,-142828],[47757,-134954],[62499,-222768],[2081,-66708],[7852,-62529],[-10691,-202214],[-42914,-240058],[-89839,-277638],[-24259,-149120],[-47001,-105585],[-59962,-249134],[-92848,-304990],[-26529,-95571],[-9025,-73312],[-58847,-189198],[-140739,-184252],[-79545,-70477],[-49935,-30161],[-66168,-28839],[-125242,-33162],[-155214,-19355],[-83880,-17986],[-65866,-22427],[-84920,-36596],[-52469,-37029],[-56842,-51795],[-50880,-73240],[-28173,-59409],[-26283,-73720],[-7834,-68868],[7418,-77034],[23576,-101142],[37805,-42959],[46321,-21229],[52185,-50451],[179679,-150104],[125432,-91609],[101723,-51917],[110029,-36187],[89708,-17409],[43803,-3650],[142499,17505],[137218,36307],[313646,119537],[160189,42862],[61988,11455],[147475,5043],[38013,13182],[249936,7181],[127021,-18202],[74097,-29127],[48155,-13303],[216823,-76218],[92318,-8668],[132678,21395],[193739,76193],[214873,94419],[108952,52636],[105393,73745],[63879,39549],[103765,73263],[218622,104409],[125393,24589],[116026,7156],[69367,-2401],[104221,-50115],[0,-20724],[82271,-136393],[37161,-67982],[128838,-193063],[84391,-191216],[82309,-223128],[7378,-39357],[32300,-117520],[11410,-54270],[16177,-136056],[28648,-103737],[15970,-217965],[13282,-30281],[32603,-124075],[17918,-139564],[33833,-125635],[27549,-155652],[42630,-127413],[63142,-115455],[79320,-34746]],[[38560678,73771904],[-6112,-1251605],[965,-189102],[-3519,-1704849],[-42800,312],[-5790,-857383],[-2138,-250719],[2781,-7588],[2875,-478986],[-3614,-600541],[-3311,-437972],[2858,-63010],[1607,-598957],[-3765,-809908],[700,-166507],[5525,-121938],[-151,-560223],[-5600,-83180],[2005,-115022],[4541,-82774],[-3537,-20241],[605,-159975],[7549,-255907],[-1872,-43055],[2799,-306933],[-4844,-213235],[-2763,-232206],[7967,-347371],[1949,-176497],[-871,-121049],[1704,-320068],[4654,-1647986],[5108,-442128],[-3556,-79122],[-1646,-512053],[-4485,-124651],[-3879,-580441],[-2043,-212587],[-739,-268321]],[[38509835,59328126],[-16897,-5116],[-50179,20124],[-29992,36572],[-61381,18105],[-74514,15704],[-30899,16593],[-4180,47162],[20245,41471],[-52337,57943],[-284,27710],[19111,72111],[-19186,36812],[-36821,28119],[-41534,17098],[-39698,2162],[-66830,-15393],[-65167,-7469],[-28136,-13471],[-18127,-22691],[-9537,-95644],[-16006,-25237],[-52622,-14193],[-120890,11335],[-44599,-10999],[-170747,-96747],[-24901,-27856],[-32224,-14984],[-77313,-59528],[-57826,-2138],[-18032,-12414],[-54588,2089],[-39017,-19955],[7020,-49130],[-7227,-16592],[-46169,-6533],[-24258,25262],[23861,51123],[-3482,71199],[-22726,38396],[-41815,4300],[-20418,18226],[-5279,26822],[9328,32081],[-5846,21779],[-35062,5763]],[[37022654,59558097],[-29631,35997],[-2951,26797],[23803,27495],[84144,-7251],[67190,18705],[30615,36716],[76085,22309],[21854,26534],[-10350,53621],[-42309,70429],[-61060,-27685],[-23974,15752],[-15704,71318],[27492,1297],[51391,17122],[8137,59647],[-15402,44736],[-13416,8477],[-57560,-11046],[-18732,6580],[-14323,26317],[-10936,47234],[13585,33234],[756,28095],[-23802,77610],[-50900,42792],[-45847,-31913],[-23765,20194],[-19149,192],[-29290,-24709],[-28837,28984],[6547,42190],[-18411,44784],[-17748,20723],[16027,28143],[-12944,20292],[-23480,-6940],[-19622,29104],[-98980,82340],[-13888,-22235],[-23690,16689],[-24011,-32706],[-23747,-4034],[1571,-26967],[-41949,-39190],[-10237,25359],[-13869,-4563],[-33813,46514],[-21892,-13760],[-67683,52900],[188,19714],[-30122,24518],[-34040,11287],[-2346,30976],[44502,26126],[9688,44496],[32527,4323],[19660,46753],[-37390,17986],[-23273,32994],[-33057,-15969],[-32071,29944],[-33719,-13591],[-49498,-3386],[-40701,28215],[-7153,37485],[-65828,42743],[-6849,60223],[-16215,26751],[-37427,38373],[-35177,10325],[-55912,48219],[-85885,49299],[-1684,27085],[-19660,15466],[-57806,25213],[-10502,12583],[-3614,54532],[-27039,48098],[-9195,53743],[13112,62865],[-7984,44112],[-32261,45961],[-3407,17962],[-53605,65914],[-42213,31169],[264,60321],[-16612,30881],[-3255,38420],[-36878,92162],[6565,23510],[-21494,29584],[9101,26582],[-15176,42118],[20643,33426],[9349,42167],[85241,93506],[4976,28408],[25753,43032],[-22441,26294],[11655,43847],[-6188,15584],[-28401,5428],[11788,33282],[-20756,6723],[-27682,-9893],[-34968,6219],[-47758,50427],[-49348,2785],[-32091,15225],[-28590,49347],[7511,36716],[26188,38085],[103805,84501],[24427,37051],[-4786,33066],[-50465,43464],[-2233,44832],[-9592,22693],[-28743,9340],[-28269,-14552],[-71277,-52947],[-41287,-6509],[-54570,41327],[-34361,44689],[-19055,37099],[-27777,31913],[-32583,2955],[-30029,-28048],[-7190,-30472],[3746,-54030],[-24825,-52828],[-29460,-17577],[-60039,9244],[-32924,35444],[-89518,190351]],[[31802373,70634297],[6073,25021],[29613,10182],[38354,-10134],[5923,28575],[-14853,10663],[-56293,12703],[3179,13471],[55818,19811],[30825,27879],[5581,33018],[-10672,31337],[-33528,21994],[-59907,-6074],[7096,57223],[25374,8260],[22858,-12079],[50255,34123],[51789,-14263],[38580,1104],[66019,13784],[18259,20915],[4049,66035],[12186,23125],[71069,59985],[15232,-3291],[25411,-73720],[15232,12655],[-2063,58880],[11676,51171],[-38089,-4418],[-4070,33018],[18279,14864],[511,25863],[-29971,23099],[-2537,30281],[29954,34123],[26395,-10998],[29462,-43463],[39110,10997],[-9649,28072],[-60456,61617],[-23859,11549],[-8137,30257],[10653,36331],[-8648,33019],[11164,38516],[16765,6052],[28440,-18155],[15742,10471],[2535,33017],[-22857,14264],[36556,13760],[25904,29728],[32507,19257],[-1532,59433],[-30482,-14311],[-8137,67139],[42158,51173],[23860,58902],[52828,37966],[4051,23677],[-34533,-7732],[-35573,3312],[-49271,25839],[-29461,31361],[-11693,56671],[13698,34675],[35554,22018],[33529,7710],[-14228,34122],[25902,23124],[41666,-31914],[71638,-18153],[16763,8813],[-23386,33018],[25411,39621],[-4067,30256],[28950,-552],[15251,-16497],[37577,16497],[-18278,35780],[-31504,10997],[12186,27520],[13206,-13761],[30483,24735],[-21325,12101],[11676,53934],[-41156,-12103],[-14228,15392],[22877,10471],[-10181,29151],[-16765,0],[-5581,44040],[23878,15945],[-1021,24756],[27436,12128],[25393,25550],[4050,18273],[-24901,15489],[21836,40173],[1532,38517],[-11694,11022],[8628,23652],[35063,50619],[-5583,13760],[-46754,33018],[-25413,7709],[-21344,24756],[3559,21469],[29970,-8814],[21344,13759],[-24900,553],[-11183,26415],[11183,21995],[23386,4419],[-2591,42959],[21929,-9725],[-4144,33594],[11656,19354],[18411,-28600],[31031,5644],[-926,-35276],[10198,-3818],[42649,36573],[-4144,39117],[21288,32033],[-568,23149],[30520,2353],[-700,749253]],[[9883851,99977738],[576617,-4178],[25241,5500],[294458,-746],[123483,1370],[90824,-2474],[692720,-2810],[8439,-1032],[627876,-3313],[287116,1441],[256918,0],[114909,-2738],[55554,2113],[239681,120],[319662,-3193],[293265,-481],[21760,-3770],[217788,2594],[775463,-4156],[162841,-2376],[158600,3146]],[[16359335,89563313],[6263,-46225],[26415,-1296],[-1477,-63106],[16595,-1082],[-21873,-29704],[12167,-40004],[5279,-50980],[-7135,-29440],[21383,-45432],[-22120,-2379],[7625,-29847],[28685,-16546],[-13339,-24733],[28648,-40173],[-10749,-18155],[17409,-22547],[-9746,-31409],[7967,-19427],[3293,-53717],[13906,-17313],[1835,-37941],[17314,-7780],[-5903,-18994],[23236,3795],[-2479,-32514],[25336,-10255],[32204,-157980],[-32810,-38565],[-2554,-41782],[-18392,-28024],[-4730,-38300],[-14457,-26390],[16348,-37005],[-16802,-8692],[23918,-20724],[-2310,-103856],[16386,-7131],[17390,-29728],[1021,-69878],[20473,-25310],[3028,-31842],[-12260,-21563],[-20985,-1056],[-32224,-30858],[32242,-23100],[-6129,-31912],[7132,-31386],[20001,-19811],[-9764,-33018],[18922,-57174],[13283,-6604],[1551,-45673],[26585,-26414],[2535,-65484],[-23538,578],[-6565,-25430],[43273,-10350],[7267,-100111],[14322,-2784],[-9213,-31386],[3065,-45649],[40605,-103711],[21250,-3314],[13982,-42623],[-5033,-12174],[18411,-44233],[20983,-24710],[11525,-73551],[18278,-48723],[-739,-54173],[19869,-41853],[22080,-27736],[51184,-87191],[34343,-66155],[14834,-49539],[42573,-84767],[10672,-34338],[-40756,-11887],[-22612,-50066],[-24920,7707],[-18410,-40149],[42440,-42286],[-3198,-45793],[-15950,-2906],[-11920,-38949],[4653,-32658],[38280,-14383],[-1723,-25094],[21854,361],[17636,-35901],[491,-23123],[-495008,-8117],[-591923,-12751],[-73132,2234],[-533042,-4444],[-3425,-324607],[-5600,-138195],[1079,-165832],[8269,-431322],[-64013,-816],[-557202,-432],[-47135,-1322],[-517336,2258],[-127834,-1968],[-248195,888],[-395631,-696],[-235876,720],[-382483,3338]],[[12688278,85366735],[-157332,600],[-64183,-3962],[-131827,-2234],[-80718,9078],[-80304,2785],[-638151,119],[-44445,-3386],[-97864,3674],[-246,2098830],[-99773,3290],[3141,184132],[1514,393789],[4238,441022],[-1514,361564],[2726,174045],[-1798,37652],[586,325809],[-2421,104503],[1551,150874],[7890,463354],[6433,869966],[2290,366055],[3898,1067737],[-586,217556],[2062,851669],[3198,310344],[-195632,-938],[-276615,6556],[-700,24398],[15630,5690],[-5298,44737],[-15157,7012],[-4067,28646],[21797,12703],[28194,-1848],[-18960,31144],[32262,18251],[1456,26414],[18240,12511],[15630,37940],[-2839,22044],[-21550,8812],[-13549,-27710],[-9611,33930],[-19357,28648],[20945,1056],[1098,35899],[-19697,936],[-43822,69758],[-19434,9677],[8212,53573],[17011,12007],[-24162,24422],[-16974,-10399],[-22800,12559],[-6812,71536],[21628,69277],[-1306,43007],[24580,-1730],[58354,86783],[29933,2954],[19074,20268],[22725,-4731],[5222,35947],[22421,2018],[13776,83973],[-1723,22572],[29557,-3409],[5051,56622],[17975,28672],[6245,39957],[-43180,5162],[-907,24085],[-54286,32779],[-38771,8524],[-79943,65724],[20246,-3146],[23046,-28432],[40493,-7732],[18165,32442],[15003,6532],[47324,-34244],[33113,35420],[-1022,32706],[11598,47834],[-13699,40148],[22668,24974],[25639,-12415],[20076,17843],[-17748,49731],[42744,39381],[37104,-8045],[-7890,50572],[-24409,54125],[-44256,43319],[-35611,-5162],[10463,54149],[19850,-4370],[30539,45815],[21325,-22716],[19111,13495],[-24051,23246],[-4067,25477],[-22309,12799],[13188,31434],[-23539,6339],[-18373,35346],[-13811,-1944],[-28837,55949],[-48704,42503],[-53530,128470],[1230,36693],[-21325,10060],[54098,51244],[43273,14024],[17257,-19307],[30558,38997],[21458,-3841],[22062,14383],[22913,-5138],[7154,-23749],[21457,2906],[23159,59168],[-2214,25333],[42403,22572],[3330,10590],[-39716,52684],[16652,26151],[-11978,18706],[-53738,-3578],[5544,34866],[-20473,37772],[26131,46777],[37957,42913],[34399,-13593],[51656,794],[17011,16111],[-39452,74609],[-14796,10542],[-81987,-4898],[-62025,-18491],[-103066,-19595],[-8988,10855],[5770,50835],[-7416,140427],[-21098,56624],[-21079,25213],[-35894,24686],[-46264,43703],[-9744,22429],[-43519,19065],[-13114,24086],[-42611,-3602],[-18714,13134],[-7909,35036],[26945,-1921],[-28724,71942],[-15932,13519],[-31503,-6554],[-5260,20795],[21059,29006],[17748,56239],[-15799,26558],[-3103,41471],[-12829,6580],[-6907,41567],[-15420,8596],[-7663,35131],[10216,31288],[-18882,18083],[17389,31168],[58202,18251],[62422,-26416],[75611,-16039],[30710,1849],[2100,21011],[-50975,92258],[37466,96292],[-30710,19137],[17255,34460],[33056,35131],[-4332,21395],[-48609,6460],[-81155,-1898],[-50238,39189],[-6793,54413],[22688,26416],[-12981,72855],[-35553,31024],[-56122,-24204],[-37995,11093],[-28003,-30904],[-74116,-50619],[-3804,-20316],[-35534,-21971],[-27626,8308],[-18998,-7660],[-31352,18993],[-22592,37100],[32545,39623],[10728,25622],[-3481,36186],[-25413,3818],[-39508,72303],[-49575,59528],[-4049,17819],[-53321,-5572],[-17199,15609],[13227,22405],[-19660,12533],[-40077,-14191],[6283,31890],[-18847,-7636],[1799,32681],[-10313,23004],[-49840,-4514],[-19413,35852],[45677,51051],[-6244,22764],[-8818,90432],[-26320,27303],[625,40679],[-11466,20483],[-29311,192],[-26150,31624],[8762,18660],[-22915,15799],[-21929,-3193],[1437,-20267],[-34078,43967],[29669,9967],[-19223,65074],[10917,26247],[-1627,151306],[-78638,4610],[-20134,53020],[-23992,-13855],[-63179,-4250],[-26472,24685],[20000,36691],[23843,24469],[-1988,19620],[21306,34818],[20492,15105],[3955,29920],[-10085,20075],[10709,31168],[-32866,21035],[-18146,-24613],[1533,-21515],[-36652,74128],[11164,50715],[-8344,58304],[11807,22475],[24578,3795],[54344,29416],[15137,24709],[1854,32202],[-11807,20170],[6811,27159],[-17294,-5956],[7588,49995],[26887,11887],[-1286,31674],[14930,-10662],[27605,22715],[6093,42455],[35610,45266],[-24635,35419],[21873,35202],[40928,11815],[27909,35682],[-17730,154764],[44145,33594],[4862,47379],[-17804,27158],[-62687,49539],[-22309,-336],[-3407,32634],[-17009,14191],[3405,27086]],[[64359075,31488280],[-26642,-230908],[-32753,-231006],[-14230,-111131],[-74474,-532536],[-8136,-70647],[-65356,-508859],[-322652,-54508],[87835,-490586],[1589,-40197],[41950,-210835],[21664,-127460],[9084,-37245],[19356,-130750],[-166453,-76794],[-235214,-168331],[-122084,-111348],[32055,-97107],[125165,-411248],[113019,-349627],[62044,-182980],[-45147,-35875],[-67852,-63874],[-4183,-19332],[38847,3147],[3424,-176376],[159491,10903],[12904,-352199],[-162707,-4778],[4674,-350927],[159849,2403],[9007,-524756],[-4333,-171260],[3180,-105393],[9233,-144126],[1873,-113174],[96443,-247934],[68686,-188358]],[[64088231,24832268],[-48780,4875],[-33908,23197],[-57445,-12295],[-54079,1825],[-30103,-14048],[-64428,18323],[-55686,61713],[-31278,5932],[-85582,-9271],[-7551,40127],[-18675,44664],[-33207,51699],[-83255,21229],[-8723,28862],[12979,60729],[-25732,19404],[-15667,28094],[-52035,-24781],[-50407,-45096],[-17502,-34531],[-24523,2137],[-19678,58232],[-36803,10084],[-54267,-22643],[-40606,-33738],[-22934,-2931],[-32526,36285],[-21664,-45289],[2402,-41207],[12167,-34289],[-7493,-10591],[-42157,-11501],[-100191,384],[-14266,32369],[-643,106593],[-39660,45481],[-27285,16400],[-34267,49684],[-65318,-22717],[-34626,-1201],[-22819,28505],[-2025,32873],[19641,48842],[-24618,10158],[-65392,-5500],[-127607,17819],[-41438,-3651],[-94400,13639],[-49519,25239],[-59621,18369],[-66416,29273],[-65147,-4491],[-28419,6363],[-48629,52684],[-34948,14696],[-49916,8454],[-80720,22307],[-69423,48458],[-12279,20988],[-158356,-10494],[9386,-338511],[-192035,-6051],[-1509396,-37003],[-198790,-8382]],[[59749943,25219045],[-6358,441287],[-5185,286091],[-491130,-14840],[-259111,-1705],[-1307,593167],[-1304,68341],[-1722,377533],[-257543,-6676],[-134987,-1657],[-246851,1104],[5639,1384829],[-68137,-1513],[-5051,336469],[-1742,253289],[-3064,152699]],[[58272090,29087463],[91410,80635],[358167,311544],[81987,70047],[-27417,74224],[34646,67644],[14361,61209],[77598,73505],[207285,190758],[89803,88224],[-17181,106858],[508006,115549],[871,-5137],[134570,31433],[70843,21298],[249179,60489],[1001956,253145],[500968,126836],[664488,168763],[412889,97518],[379360,93867],[1253196,312408]],[[76354275,24983119],[105431,-65652],[3993,120352],[109914,-87454],[137769,-114687],[16783,185548],[19490,189440],[72450,-24782],[68554,-43873],[37142,-11454],[17844,24831],[79452,41038],[262158,-43608],[418206,-215900],[31901,-21588],[90332,-170132],[149690,-267457],[36177,-68340],[54533,-119466],[130162,28912]],[[97713380,19025043],[-341593,-434226],[-290805,-421332],[-227193,-250814],[-372585,-361155],[-299889,-220705],[-505263,-679494],[-248459,-390835],[-327684,-324127],[-272624,-451444],[-134532,-192200],[-110824,-125324],[-153794,-168307],[-168800,-120016],[-198960,-100015],[-174837,-60008],[-120567,-26678],[-596863,-220032],[-36159,-113341],[-78394,-140019],[-168798,-253384],[-144695,-180026],[84409,-1153487],[90427,-73360],[68818,-75857],[78543,-102679],[64807,-106641],[57465,-123787],[44314,-118265],[47645,-166626],[21797,-122465],[7797,-113030],[198827,-137066],[134779,-120832],[174249,-247886],[101742,-242604],[51354,-177719],[147625,-163482],[885739,-476273],[256730,-21323],[170332,-50211],[115270,-49298],[109102,-63971],[109120,-85319],[128364,0],[154041,-14216],[134779,-49753],[186150,-106619],[160457,-56863],[173284,-120856],[147626,-127942],[128363,-170612],[89859,-184803],[64183,-199044],[25676,-241691],[-6414,-241690],[-70597,-305661],[-90180,-191911],[25620,-127967],[44863,-206126],[12828,-263015],[-25639,-263014],[-51277,-241690],[-83311,-206152],[-115346,-184804],[-173038,-177719],[-166624,-142157],[-205072,-127965],[-205074,-85295],[-198657,-21322],[-140985,0],[-217901,-213259],[-59470,-366872],[-21648,-91225],[3616,-221351],[-36254,-197195],[-61647,-201228],[-58014,-156949],[-65280,-148904],[-101533,-136851],[-148685,-152914],[-155934,-112692],[-105147,-52325],[-112168,-43199],[-145394,-195226],[-100605,-132431],[-571187,-772017],[-27360,-174622],[-109423,-273317],[-170977,-227763],[-184656,-159446],[-185885,-91898],[-162915,-67547],[-335101,-15176],[-341972,83516],[-307760,189798],[-211996,227787],[-157315,311281],[-71297,286691],[-18184,128062],[-151144,78569],[-128649,96412],[-102896,99991],[-61116,71414],[-35364,60704],[-237997,-67859],[-218676,-46417],[-180097,-57128],[-209045,-53572],[-81912,-101480],[-85601,-124507],[-106246,-124507],[-106264,-91754],[-103312,-78642],[-99224,-170877],[-194439,-350108],[-64939,-88464],[-147587,-186773],[-103294,-140884],[-135781,-170396],[-188894,-203149],[-144618,-140884],[-243749,-328787],[-183237,-250888],[-102063,-103591],[-88780,-71223],[-116935,-86255],[-168326,-70789],[-157352,-39670],[-141762,-21707],[-153303,3337],[-147115,22813],[-149122,46393],[-133813,59095],[-112603,73000],[-91522,68654],[-99471,88390],[-65962,64163],[-33415,56743],[-43254,59409],[-64089,78642],[-78392,153635],[-66111,239337],[-17900,99630],[-14722,155436],[5053,124460],[14135,150392],[30615,120737],[25108,74057],[61646,149505],[88062,189798],[120398,199140],[98733,149720],[-8514,84142],[2895,86878],[30595,144055],[44466,123427],[5771,619509],[29027,510324],[8363,641723],[586,831040],[-80700,320622],[-18620,271082],[-197352,279535],[-39829,74417],[-50672,168643],[-25413,102872],[-17181,89087],[-60491,65819],[-90938,131953],[-47777,91153],[-49385,101766],[-14741,7349],[-42856,110027],[-151431,166578],[-191997,165064],[-206302,111758],[-421516,219358],[-661178,220247],[-199944,65531],[-213210,18202],[-275782,-54365],[-1084718,-210667],[-459626,-88343],[-816258,-152218],[-789353,-146768],[-670279,-136081],[-539701,-102247],[-310844,-53021],[-526267,-103879]],[[78405225,7201058],[-8837,2286730],[-36517,964433],[-3898,45216],[-75990,123380],[-46131,60224],[-46926,82340],[-61060,126740],[-36517,104193],[-46340,170564],[-224770,371770],[-299547,952401],[-16178,77682],[-85601,362285],[-70598,385407],[-65676,341272],[-34362,166626],[-32773,85415],[-61930,119080],[-92243,139971],[-48647,49468],[-77674,53309],[1742,90553],[-1893,320092],[-340,459776],[-40019,-551],[908,281383],[2990,180818],[-2914,21035],[6377,281744],[3348,86760],[1798,302010],[-11693,45889],[3463,38301],[-7646,21203],[-20927,-7563],[-15174,-29945],[-38392,-8885],[-28875,13880],[-10974,27567],[18050,56934],[-28004,69302],[-10689,77178],[-33190,62314],[-2327,279342],[7948,48891],[47058,61233],[61646,46921],[2156,48866],[-13566,80227],[-49517,46777],[-133,25383],[69858,60945],[25696,52131],[-12697,74705],[6207,23221],[94267,78162],[-435,25813],[-20493,4732],[-54133,-28816],[-20076,28214],[-11827,96365],[39415,82725],[-10976,51291],[-55592,47690],[-5334,36212],[41438,67932],[23083,50691],[2176,19668],[-21589,25861],[-52828,3219],[-22234,17433],[-21230,62290],[-33624,41637],[10010,30593],[31239,11430],[25697,23124],[-14155,56743],[-43727,61665],[-57465,23846],[-66832,-30640],[-13869,-313],[-65677,39285],[-45809,-12511],[-27644,26678],[-7948,43032],[4806,21467],[-22629,123739],[-36784,139851],[-83160,390836],[-28289,87191],[-24409,132384],[-56972,256122],[-3520,29849],[-75914,102655],[-182062,201781],[-71354,127893],[-88647,175774],[-50333,198036],[-28288,43392],[-5771,-4828],[-102668,142614],[-96406,130414],[-44617,64570],[-129916,176736],[-95800,183819],[16841,119873],[15004,150634],[-7644,7107],[6490,69470],[-98317,234583],[-92091,215228],[54286,34315],[35213,50474],[39263,41856],[115328,145878],[48968,9942],[-1305,32009],[-33491,36691],[-27569,46033],[-39131,95860],[-30027,128134],[-25546,97156],[-35514,47378],[-18620,47497],[-9537,52348],[5639,58976],[48364,192873],[27663,126596],[-795,45121],[-18901,22115],[3008,65339],[77691,92930],[70806,36045],[39450,51315],[34003,4226],[55572,33594],[38450,-9748],[43292,33089],[91807,51267],[37485,46897],[-5109,9294],[44674,48002],[120889,51459],[80569,63394],[56179,71272],[26925,72591],[-2328,65556],[50521,78570],[5960,60417],[-16860,12509],[10105,64548],[30843,60897],[34852,90720],[33208,97038],[46340,92618],[38694,93386],[64655,124867],[33643,96533]],[[37355920,99726730],[104354,-96],[424732,-9005],[242481,338],[516901,3097],[128667,-5115],[585849,-720],[213626,-6148],[40001,5020],[131012,-1154],[240701,2906],[140778,-3482],[71770,3242],[189934,-120],[188005,-4322],[451545,5114],[84050,-2232],[658416,-2042],[639001,-4131],[545699,-6002],[145829,-144],[198734,-2690],[72469,6316],[298810,7227],[268328,-6339],[586305,2593],[171258,-9869],[1013991,-8716],[75402,-1729],[114267,3481],[162991,-3865],[111637,2257],[229426,-4323],[70482,-3842],[77143,6628],[66888,-2738],[138374,10469],[170276,-2736],[72526,1104],[1123490,-1344],[207039,-14457],[344942,144],[159470,-6243],[173114,-2042],[332775,6149]],[[49339408,99677169],[-29935,-81644],[14325,-4948],[27020,28792],[17389,-4370],[-3179,-23870],[20360,-21635],[-53795,-33186],[-36348,-2617],[-14343,-174887],[-965,-45241],[-45980,-20723],[-44030,34268],[-51050,26294],[-28401,-15489],[-27417,-76913],[7322,-12295],[34475,15319],[30709,-18561],[-13586,-32802],[-22876,-5114],[-43993,-70839],[18657,-15007],[54570,-2954],[33643,-23462],[24446,8261],[-4275,48627],[6584,24085],[69178,6387],[12186,-69037],[15837,-40774],[-17786,-51268],[-50010,-103880],[-26661,-41375],[-26357,-26054],[-132262,-84885],[-101288,-54894],[-13150,-11790],[-26282,-59216],[-34987,-39549],[-32413,-62290],[-39224,-98454],[-2384,-77513],[-5601,-13615],[-42953,-23222],[-52979,-67404],[-52016,-20579],[-19263,-14887],[-48230,-57848],[-23501,-35804],[-51429,-102223],[567,-46129],[75233,-136801],[5808,-48650],[-32261,-56600],[-59205,-39813],[-63992,-87383],[-87760,-136923],[-19129,-44807],[-46642,-56286],[-96348,-75281],[-11807,-21515],[-15081,-105537],[7342,-85079],[23160,-89472],[38392,-87408],[-9347,-11094],[-56633,-26126],[-37389,-37171],[-47077,-71512],[-24580,-22811],[-60246,-34891],[-83746,-79483],[-91013,-29272],[-39698,-25670],[-51296,-3602],[-62196,-20267],[-106037,9053],[-88988,32850],[-48516,-14167],[-57237,576],[-16746,-8477],[-21816,-40894],[-62063,-12535],[-22612,-21948],[-7246,-59889],[-37390,-91608],[-25562,-35756],[-23387,-17962],[-30087,-39814],[-83009,-56358],[-21096,-20363],[-20246,-37315],[-45961,-45601],[-34741,-19643],[-40870,-4346],[-20965,-44713],[-13245,-69541],[-28590,-34146],[-3672,-20267],[9367,-49203],[-5922,-25094],[-64751,-72422],[-11202,-27568],[1704,-168163],[-20852,-64834],[-49971,1272],[-7362,-38877],[21306,-17625],[37901,-5404],[22780,-12775],[8535,-37124],[-11902,-38083],[-36803,-51197],[-67947,-36859],[-7134,-75258],[-62932,14097],[-24844,-26030],[-9311,-37893],[30048,-13687],[-663,-15392],[-47738,8572],[-39566,-98934],[23653,-32970],[-12016,-17096],[-33378,11909],[-40605,-48001],[4825,-47665],[-2574,-79243],[41742,-16689],[-5166,-22668],[-28704,-11528],[17634,-39501],[2460,-33114],[-27815,-33354],[-33415,19931],[-12015,-17025],[11675,-54893],[-46812,-22212],[-36026,-50379],[-49121,-15681],[-22573,-21203],[-16425,-40535],[-20397,-6626],[-29953,-53598],[-18601,-54317],[4693,-25022],[28024,-2208],[50614,14119],[12204,-14457],[-10274,-55084],[7740,-28216],[29101,-58015],[38656,-11839],[-9611,-36476],[26679,-33737],[9952,-151115],[-13092,-89856],[14057,-73455],[-13964,-71247],[662,-113197],[-21040,-67908],[-66831,-86184],[-36652,-32514],[-25694,-57005],[-55346,-75041],[-33341,-11551],[-26281,8524],[-31012,-6746],[-11279,-51557],[21363,-88536],[1911,-25140],[-65165,-23125],[-11353,-57200],[-43294,-21923],[-5828,-146312],[-21910,-4466],[-47040,33186],[-15193,-9460],[-24731,-43249],[-31183,-13999],[-65204,-2930],[-29971,-32752],[-11485,-56528],[-40587,-34962],[-8819,-31506],[-8949,-87382],[-15687,-35396],[-52184,-53404],[-27512,-67646],[15326,-32704],[33018,-12703],[74248,15751],[50256,-67332],[21532,-69324],[15762,-5091],[71032,8067],[11088,-16352],[13832,-88391],[36178,-52446],[5658,-26749],[-51373,-63058],[-397,-27472],[29952,-67692],[-6527,-35467],[-59187,-55255],[-68515,-53164],[-4579,-49395],[-44296,-32466],[-4144,-23435],[-23160,-32035],[-65109,-11838],[-22157,-17457],[-3916,-27590]],[[40308599,87665953],[97201,141003],[16651,34194],[49044,38805],[3935,49947],[16350,54942],[1816,33018],[-22101,169435],[-12620,31866],[-22176,11550],[-20285,39189],[-33301,46873],[31787,51485],[-9461,21276],[-71522,41806],[-56558,45913],[-44124,49922],[-24183,36092],[-45789,99438],[-549,40845],[-14248,43561],[1533,48577],[-18507,57872],[7039,73216],[-32810,37051],[-24559,109139],[-21514,33594],[-13606,45817],[-5070,81091],[44220,79531],[32091,29200],[13926,29200],[-7872,70311],[-33018,67620],[-61874,28648],[-70388,-46201],[-31996,-10495],[-26131,30570],[-67777,30136],[-47833,72039],[-15478,9604],[-34741,-7420],[4465,31434],[23048,75521],[-7209,37124],[10992,92546],[46454,49347],[46092,34915],[10332,30999],[51940,66373],[17066,48169],[-1362,47163],[10597,29584],[24824,18441],[25432,67236],[52072,41879],[16348,50715],[28760,34194],[-9688,46875],[5147,28046],[57825,68389],[9234,41038],[-209,41591],[-13567,16689],[11827,19691],[-18620,35226],[-24238,67597],[605,17409],[-17881,76745],[-2326,109429],[5430,71653],[29329,47715],[45903,19715],[10899,29030],[44825,15297],[33794,1754],[53435,-30810],[8950,40439],[41420,20555],[17162,72326],[-7684,31985],[-8248,84479],[-18846,48457],[-62669,28600],[-12281,23221],[-81229,71703],[-62763,31480],[-19339,1248],[-72565,-13975],[-48779,-20123],[-20038,-31744],[-31674,-82725],[-29234,-52468],[-18997,-14265],[-57163,30354],[-81192,71365],[-37712,20795],[-37238,4756],[-22762,20314],[-16178,74801],[-9972,19475],[-51617,55758],[-20115,39452],[-38883,30714],[-42479,11261],[-77313,76841],[-54741,93100],[-12091,36258],[-47115,76603],[-7965,43367],[-19679,37124],[-20531,93530],[-24654,144102],[-12828,36860],[12828,36308],[2025,83637],[-12830,30257],[-62611,100086],[-39357,-146],[303,-35346],[-13189,-23148],[-54739,-32130],[-23009,2234],[-28004,-26992],[-110049,313],[-32184,-43031],[-41099,-9221],[-66755,3242],[-66925,35275],[-81534,29536],[-15875,14840],[-63180,10877],[-52791,-65436],[-30558,-65026],[-26849,-18467],[-29424,-35971],[-55326,-4370],[-51675,26774],[-47001,-2352],[-58449,40798],[-113853,219550],[-60226,23556],[-74892,-17937],[-31808,-29656],[-24483,-36355],[-17862,-78163],[5525,-30760],[20604,-42168],[37806,-38805],[47644,-26677],[58223,-12919],[65242,2592],[24900,-24156],[-964,-52469],[-41023,-67164],[-43841,-38733],[-129783,-59816],[-55177,-32202],[-44294,-59384],[-50635,-9316],[-10009,22979],[5505,26294],[-2988,75977],[42459,29560],[18449,22453],[5696,61162],[37143,20507],[37370,57318],[-6699,29728],[-39527,-4394],[-112716,-63250],[-71770,-7901],[-15666,17625],[21513,91586],[-11409,44905],[-22783,26030],[-19394,6026],[-15781,24590],[1665,37556],[28876,74897],[73529,57174],[16309,20675],[-2232,26776],[-45204,-6339],[-14550,-21109],[-44333,-29680],[-62044,-15969],[-16595,-16087],[-9611,-35708],[-37560,-29224],[-26131,9486],[10425,31672],[67872,91658],[41798,49779],[60152,51700],[35554,11599],[61268,-4323],[26926,-29296],[16839,3001],[15044,50235],[-101724,14961],[-62233,2376],[-72829,37052],[-89878,22622]],[[37022654,59558097],[-16934,-9916],[-31354,25333],[-26736,6652],[-25014,-22453],[-40928,-58326],[16160,-38350],[-20700,-58352],[-38354,-25789],[11353,-85223],[-11544,-22187],[-49252,-36932],[-21494,-4827],[-52130,22021],[-55345,-21373],[-16878,-24468],[-55877,-24062],[-4616,-21491],[17560,-16016],[-14135,-41399],[-65469,-4994],[-20965,-24999],[-1571,-62217],[-13132,-22548],[-53414,-4731],[-22934,13015],[2327,45721],[-20719,25214],[-21532,-8718],[-10293,-23939],[-1798,-44761],[-32640,-2401],[-9725,-18730],[8552,-38229],[-35137,-36259],[-9803,-38542],[-49100,10158],[-19320,-23389],[-22932,984],[-18222,30881],[12109,37293],[-15553,3722],[-57617,-31385],[-61230,816],[-17615,-18802],[-3956,-27591],[-21078,-17385],[-40266,-1705],[-7379,-23389],[-42308,-23652],[-13189,-19548],[-19753,2547],[-19869,25044],[-19148,-6867],[-20586,10902],[-29877,-5476],[-11940,26584],[-16671,-6821],[-19450,-47089],[-43236,-13158],[-38789,17865],[-36615,-40943],[-29327,-3961],[1096,31169],[-14418,19281],[3046,32370],[-16725,15848],[-30067,4107],[-19017,40557],[-22667,14265],[-32356,-6195],[-30785,26269],[2553,19546],[-42536,29200],[-36121,-12413],[-12488,46897],[-25450,7395],[10427,59169],[18901,14912],[-19980,22715],[-21343,-7395],[-2668,66299],[-13076,21395],[7153,27207],[-23406,8862],[379,49394],[14663,27736],[-17804,25212],[-28988,17171],[-3993,24444],[17824,28384],[-6547,27351],[-26660,11357],[-22554,-27998],[-17107,9124],[-32601,-5162],[-13227,-18754],[-38296,29464],[4597,67620],[-43633,20194],[-15288,26415],[-25810,-1584],[-24862,21514],[-16009,-22043],[-49574,-10446],[30312,-29056],[-8362,-34074],[-14437,-8573],[-17334,21252],[-21588,-5931],[-10427,23629],[-36499,-4418],[-21817,19330],[-50066,-4610],[20132,-36069],[-39394,-47161],[-30313,-10037],[-29215,25885],[10786,-40533],[-41817,6723],[718,24422],[-18543,2257],[-46926,57968],[-25713,-16257],[-29953,32874],[-28119,18610],[-32734,2640],[-22554,-20098],[13473,-51749],[-36122,-2665],[-1816,-24829],[-18297,-8189],[2062,-24828],[-22177,-410],[2555,-34458],[-31656,-5162],[2081,-25359],[-33225,15297],[4124,-19403],[-18656,-14672],[-3502,-51507],[-49461,16617],[-5448,-27063],[-19509,15320],[-18,-65530],[5316,-993033],[5223,-636127],[-2574,-171237],[-4295,-568004],[-13756,-1649475],[52072,-34217],[36216,-38661],[39035,-29392],[46454,-74248],[-7702,-60441],[-103407,-116127],[-53963,-86110],[-18053,-41760],[-6017,-40700],[2119,-44136],[22025,-65940],[6529,-69182],[-2043,-107290],[15099,-38300],[73227,-738208],[31976,-330489],[59491,-597420],[92810,-914293],[20245,-206368],[22972,-215156],[40587,-32658],[40491,-78354],[11543,-71991],[-5166,-97949],[-17142,-68172],[3879,-29968],[19811,-16641],[32734,-5020],[48553,11238],[13414,-21514],[25601,-12152],[-7474,-31840],[-50349,-125996],[-12925,-55231],[9197,-55325],[-19924,8307],[-25735,-8859],[-52053,21778],[-13774,44113],[-20058,11503],[-17710,-12968],[-32336,-2137],[-263995,1081],[-346984,-2473],[-366739,2737],[-211354,336]],[[27353279,49009848],[5677,69422],[-171657,0],[-306587,2401],[-527535,-24],[-302612,2498],[-301857,4321],[-89309,-4201],[-356579,-192],[-247248,-11960],[-33303,-77297],[-700,-86014],[-51410,24],[-493701,7155],[-96,-9268],[-534100,-59216],[-20208,4754],[-118089,50091],[-408197,3531],[-98883,-47691],[-223502,5164]],[[23073383,48863346],[-2554,218806],[5751,75160],[-7436,197842],[246,603158],[1797,376837],[-3802,156036],[56,336324],[1835,59865],[1817,567547],[2706,317715],[-71032,384],[-3481,771058],[-3728,459631],[-2005,763806],[-1856,104599],[-7587,100831],[-19,137715],[-3765,465011],[0,354744],[-1986,204422],[207,341080],[-3916,709246],[-1930,475386],[2006,371985],[-3860,41663],[0,387737],[-5677,100854],[-76898,7227],[-237219,16787],[-1893,501847],[-306530,2400],[1779,151283],[-1797,194480],[-238412,264],[-83048,-1753],[-4049,690518],[-319548,1585],[-132,171500],[-200192,-1440],[-229140,1560],[-206473,-1921],[-642,185765],[-647007,216],[-1986,174574],[-318016,-2521],[-1343,173565]],[[20092624,59828724],[303881,457],[346436,2112],[-4636,505378],[162479,2449],[106019,3794],[59887,-1633],[321024,5931],[-5072,165642],[-3860,337142],[475028,7611],[-3501,343002],[322007,4827],[114,357745],[465282,24],[58,196882],[2308,160720],[312093,120],[1721,180192],[22820,-2377],[300569,2425],[-7474,336014],[333020,12031],[20,158534],[157011,2424],[1893,168044],[158941,7251],[2271,172485],[111296,-6891],[28364,2448],[189216,-7203],[1893,240129],[215782,197052],[136557,131926],[453115,418330]],[[38509835,59328126],[61288,-9822],[28344,-21611],[14834,-44376],[16992,-119778],[-18657,-43439],[-77085,-80227],[-27456,-40702],[-776,-46536],[20794,-53550],[44580,-52252],[30615,-25742],[45696,-26295],[12128,1730],[69425,-65268],[3405,-59168],[-38071,-15391],[-47512,1561],[-42138,21971],[-40738,3169],[-28193,-20842],[-29272,-82870],[-25223,-24732],[-25317,2784],[-22422,47354],[151,36260],[24031,89544],[454,30424],[-23897,43128],[-55233,6411],[-29877,-12486],[-50862,-58399],[-13509,-25263],[-1552,-73863],[8987,-23773],[59414,-54918],[35194,-45553],[-5676,-39885],[-62877,-16016],[-61721,-26680],[-32375,-35154],[-7172,-28191],[7228,-43921],[17824,-27711],[44769,-28598],[59888,-48],[50842,19811],[37389,40124],[26281,8622],[14362,-19354],[-8042,-26271],[-41570,-72664],[6207,-37483],[30935,-26511],[50408,8765],[41608,-3361],[39680,-19044],[9366,-24348],[-14457,-31649],[20132,-26199],[12432,-34458],[37314,3937],[73170,60322],[63481,25502],[29708,-28071],[-15402,-32418],[-36028,-48722],[-11675,-37245],[-30880,-41447],[-35459,-9124],[-36915,8572],[-42554,19475],[-20455,-8717],[6054,-20314],[-23727,-53070],[2232,-38156],[20399,-73912],[15893,-24397],[26397,-1056],[15761,-19764],[44182,-99653],[82555,-5547],[16272,3890],[88175,-17769],[11656,-45289],[-13851,-30880],[-82971,-33234],[-64788,-44376],[-40303,-9078],[-40927,0],[-47456,-16257],[-30464,-27687],[3349,-34651],[53398,-34385],[50994,-7325],[52658,-312],[67551,-30232],[23784,-33931],[5147,-47065],[-41364,-50115],[-37389,-95667],[52736,-81836],[27340,-22646],[74325,-26798],[59509,-10613],[67719,1537],[72943,17986],[42138,20842],[65035,60489],[53377,65964],[30747,44976],[27627,55471],[34891,181033],[15781,28984],[36008,33690],[41741,16041],[79773,-1657],[50917,-25118],[57807,-59121],[22725,-56549],[4351,-104673],[-303,-141700],[-5620,-79244],[3974,-50235],[25885,-59672],[13397,-10733],[46452,1633],[17957,8812],[65658,73599],[39357,60441],[67020,60826],[37143,15848],[119453,-3482],[39962,10782],[17824,17146],[9158,77464],[-17806,44304],[-30803,36261],[-33303,5066],[-75819,-50499],[-38278,3553],[-48628,19883],[-45525,34988],[-22972,42214],[-14966,50092],[-1326,43438],[8629,79604],[-9650,46777],[-53207,173902],[-51317,117303],[-48003,101408],[-13662,49154],[-4144,101694],[27039,52109],[54363,85125],[27663,86760],[38448,90385],[83652,114829],[70428,69014],[70557,50451],[78091,25718],[261175,21324],[101268,-32562],[176140,-74752],[103786,-16737],[65677,-36956],[192697,-140957],[103066,-84069],[48251,-59817],[60207,-93627],[70218,-115693],[50559,-71031],[51240,-54390],[77125,-52348],[27341,-5498],[29764,10397],[109935,74008],[15704,29487],[49784,25743],[30861,1681],[29460,-10158],[19301,-23796]],[[41799187,57900483],[63330,-106161],[31013,-60106],[62951,-74104],[44598,-34482],[38015,-21347],[114684,-54727],[25410,-18296],[21383,-60010],[-1911,-37387],[-21648,-67502],[-4219,-63490],[25469,-58735],[41401,-46201],[88722,-33979],[83501,-39908],[65697,-44857],[45411,-64499],[41704,-50668],[47418,-32922],[67966,-21250],[84881,-40919],[107343,-32154],[72357,2907],[97900,15655],[55875,3555],[75479,-3193],[59906,-14168],[157787,-141172],[51391,-27543],[52280,-47210],[44882,-150705],[27891,-43465],[45904,-27999],[51599,-5570],[115441,-30065],[51618,-22043],[76840,-47473],[16973,-1729],[48817,50787],[57258,82604],[45903,41543],[50009,28888],[57352,21251],[36463,384],[38183,-20555],[63595,-63226],[47474,-28407],[98583,-32826],[40984,-23870],[89575,-81355],[27588,-35539],[51940,-127390],[89310,-88511],[-9537,-66300],[-87021,-136513],[-19905,-61353],[-625,-59625],[7550,-75016],[18846,-94899],[-7058,-50836],[-24106,-56646],[-28685,-19451],[-37938,-6556],[-74608,19426],[-94664,13231],[-70106,-8331],[-52810,-27112],[-40454,-48529],[-45280,-70382],[-69744,-129743],[-32261,-95883],[-87153,-191913],[-33510,-116606],[-3160,-120402],[9649,-163695],[20322,-88633],[31201,-50714],[44182,-14384],[63067,-10951],[43405,-20194],[36520,-36043],[30557,-59841],[15346,-55927],[3274,-72471],[-6434,-52348],[-43539,-103880],[-45147,-56646],[-118241,-58568],[-29025,-26415],[-29310,-52419],[-19679,-47114],[-16139,-82316],[9119,-73120],[19338,-31721],[90636,-47449],[58580,-26415],[10899,-74345],[-7058,-43776],[-104693,-346171],[-94987,-223968],[-59507,-129935]],[[43889570,52567441],[-53491,-104863],[-127874,-153635],[-139299,-111902],[-93795,-86349],[-55137,-85102],[-28326,-69038]],[[20894598,79070270],[327646,-1825],[357656,2617],[236160,-4923],[62651,-3722],[225431,-4250],[644753,-4130],[498471,-8621]],[[20242767,68528094],[-31902,39191],[-15516,44880],[56993,193712],[17635,26247],[25562,63898],[22990,79219],[19452,91177],[2856,77490],[-8230,88320],[8741,78329],[-12260,74368],[3291,133465],[-14418,49682],[-33490,32850],[-22101,4370],[5791,35973],[33926,46489],[9404,38900],[-28136,39886],[-7192,61690],[2537,40149],[42252,56646],[11201,69374],[12772,43439],[-2081,52829],[22271,54029],[-17920,78570],[4125,33282],[18771,9534],[99187,-67476],[23255,-1057],[48610,18370],[46054,37796],[52488,69734],[22650,98933],[-14608,14528],[-31561,5138],[-1589,15321],[38978,12678],[246,28672],[-12185,59169],[28515,27471],[-15611,48338],[51051,37891],[46906,44785],[12431,23509],[493,41734],[-22687,98406],[-28648,78690],[41931,14288],[79451,81884],[-4502,34866],[-96539,56504],[-51428,65387],[-14153,43704],[-4144,57053],[31560,47019],[31561,7540],[101666,-90458],[49007,-32753],[27910,18345],[-4522,100255],[5127,59023],[-11467,40150],[-33756,27088],[-17672,41997],[-3539,61810],[-14625,5283],[-33283,-24830],[-8534,38950],[-24504,11887],[-43880,0],[-17692,27061],[59605,83470],[-1703,13351],[-39510,63251],[-25713,19810],[-23313,49635],[3993,25646],[49784,-21901],[30727,1873],[9046,17867],[-11846,81668],[-63311,57318],[13320,30400],[65432,14048],[27323,-32105],[39035,-14144],[3802,-22667],[51675,-1969],[33852,-16473],[48873,13327],[29083,-4371],[24107,12126],[33793,-9316],[83747,15511],[29197,-17025],[67057,-16425],[57635,-4009],[31941,-43200],[54116,6893],[24730,-17002],[26150,20988],[45051,-23510],[52111,36957],[69159,87695],[38241,4827],[27738,48530],[5146,30040],[-12373,24108],[-29197,19356],[-30578,62842],[-54721,56069],[-16158,32442],[-8762,44832],[18488,17914],[16404,59504],[32073,61065],[9876,111492],[-2025,80997],[8667,54052],[-398,130054],[10919,25238],[3141,48338],[34417,38902],[64467,44520],[37180,48698],[24883,48867],[8590,80419],[-22328,34314],[-15345,114182],[-2858,55205],[5298,53934],[-12299,39260],[29045,52662],[-8646,30495],[31484,85751],[9632,58328],[53850,16161],[10446,49418],[16972,21851],[-13623,31482],[6187,52757],[38373,21202],[1703,29008],[18411,55519],[-8912,25429],[35365,17698],[68589,14887],[21193,33402],[18581,-15511],[40019,29128],[35100,65819],[21325,13616],[-11808,45623],[-33850,27639],[-57105,5548],[5392,24324],[-109292,43705],[1192,32609],[-33623,56335],[-4238,21323],[3140,103304],[25715,56575],[-12470,78809],[17730,79340],[-22555,71318],[-9497,59577],[16764,66539],[10293,74752],[11486,12008],[-21856,23003],[-17350,-31433],[-28799,32779],[15269,29295],[-12676,12030],[-9139,52565],[-28440,18106],[-30160,-120],[-33322,16930],[-20171,-15057],[-7909,40029],[-17104,-18226],[-19,-28383],[-21590,3002],[-6225,45865],[-17332,-2906],[-7835,-27854],[-13169,18105],[-16366,-19283],[-16595,33163],[-24920,-30232],[-14532,27879],[9291,11069],[-8894,83085],[22234,19403],[-24901,19955],[30161,34577],[61192,18995],[-226,29464],[16859,26006],[44578,22957],[33359,48169],[8553,40919],[28969,36716],[22366,67452],[13679,10013],[758,56960],[50085,14863],[5506,16809],[-29915,27327],[-33717,-19787],[-10256,11887],[8211,44375],[18449,32058],[14173,2666],[-6548,87046],[19773,-8477],[-17199,59432],[-12337,-504],[-5960,51893],[21873,11093],[-15515,12823],[-9027,30208],[13680,-2496],[133,26823],[-19527,11885],[-5241,23126],[28572,-10975],[1475,24950],[-24655,38060],[-11863,-24180],[-12811,19930],[-8401,77417],[-16139,-16929],[-29555,30954],[-23558,44640],[-18808,1993],[1721,32634],[-10256,12006],[12717,25886],[-34571,31984],[10029,36285],[-15761,288],[13831,22283],[-35307,12847],[-15630,20747],[31278,15177],[-11107,29464],[18713,55710],[21002,-7397],[-22213,42937],[8685,30760],[-20038,10805],[18202,9654],[-22837,17842],[20283,5810],[7588,32082],[-31031,-7131],[6735,31432],[-41174,19306],[-7209,31170],[-27001,-11767],[-11239,42959],[20304,11214],[-19301,37125],[-29083,19809],[23350,26944],[-8421,26150],[12602,64834],[-9518,30618],[-50842,16425],[-8779,25741],[-25922,10589],[-16235,33810],[-13454,-3024],[-2175,33498],[-25678,-9606],[3425,40414],[-25052,7661],[-15497,52443],[16993,9509],[13812,66156],[34116,12247],[-35194,33450],[20529,10806],[50105,-11094],[4030,-26150],[28478,9077],[-17446,98934],[12714,13615],[-4011,44639],[24693,2354],[-22857,13087],[3917,19019],[-15025,41733],[-26774,6100],[-13074,24950],[-22857,-7517],[6604,30906],[-17843,-6220],[-739,22475],[-17351,-1320],[15421,38421],[-20909,6868],[-10746,23916],[10634,26415],[-24694,144],[10881,21084],[-474,35274],[-21986,73047],[-26169,3842],[5998,12655],[-49877,45865],[6962,20075],[-31654,5812],[-24448,66179],[-1589,-21924],[-34116,-7420],[-9272,55759],[-25429,-9534],[-380,15225],[-39735,26413],[-6093,52566],[-24825,33522],[15156,34194],[-13793,44663],[-41949,29826],[-25790,47713],[-22253,2354],[-11144,25886],[9668,13351],[-7340,64978],[7474,27640],[-31675,10300],[13813,25982],[16877,-11213],[-2194,25070],[-30691,1752],[14797,21637],[-5016,33161],[12829,50979],[-18694,936],[-9176,43057],[22252,3290],[-54419,61280],[-16274,6724],[7096,25334],[-31183,34338],[10162,10469],[-27891,17289],[-2933,35396],[11978,9485],[-27020,74201]],[[15274427,60257668],[827858,5355],[613059,865],[180191,1248],[227740,-4154],[349331,-1585],[367269,1417],[781329,-3458],[509409,-4756],[-57,-91657],[474893,-6915],[133435,5450],[154610,1321],[19678,-46585],[22460,-19403],[2441,-43583],[33964,-27063],[52545,-67212],[625,-56262],[31769,-1296],[4995,-27735],[30653,-42936]],[[23073383,48863346],[2044,-101816],[-6435,-63635],[8913,-100685],[2668,-79796],[-31164,2474],[-256387,4683],[-441215,-2402],[-247570,7203],[0,21253],[-120227,-1585],[-445756,-3051],[-374838,-1249],[-145545,1633],[-564620,22141],[-303653,10878]],[[20149598,48579392],[-107116,4034],[-319321,5642],[-517298,-3985],[-758775,-4010],[-687440,-3291],[-260192,1538],[-287665,-1226],[322,106042],[-1406614,15704],[-51637,1729],[-467438,-5474],[-254345,1632],[-513134,-840],[-60588,-5546],[-196614,1080],[-35705,-1801],[-175991,1825],[-10179,2762],[-237448,-2834],[-750998,1945],[-411166,2089],[-866289,2161],[-17425,-11191],[-35233,25646],[-3974,-46513],[-45240,21493],[-5847,-25238],[-47305,6843],[-3595,-36667],[-45903,3865],[-15213,-19954],[-14098,8525],[-27417,41517],[-14058,-72],[-37428,-54460],[-22725,-4612],[-26357,-22739],[928,-30400],[-35006,-20747],[-25960,-27231],[3482,-20435],[29838,-5140],[-7606,-19594],[-58808,-3049],[12280,-26967],[-28193,-9558],[-13188,27279],[-19036,4154],[-21325,-17337],[-30936,7661],[-18903,-32946],[-49233,-26558],[-15554,-19259],[-36424,24685],[-21552,-38060],[-11202,-53886],[-27853,8502],[-37729,-6965],[-587,46561],[-10010,13111],[-26621,-40317],[-46529,-37005],[-4144,-44568],[-45506,-12990],[-14948,-17098],[-21117,504],[-7342,31002],[-32185,-9869],[-31996,-61594],[-47154,-19090],[-28250,-24470],[-37918,36331],[-23387,12055],[-7379,35851],[-16178,20004],[-23369,5354],[-33301,-10493],[-38980,19883],[-40737,46057],[-53359,-864],[-16538,-32946],[-28912,28790],[-15819,-9436],[-38902,8164],[-34419,-18442],[-756,37701],[-11088,48674],[-18941,-20916],[-16273,10086],[-8023,32969],[-56613,-48529],[-19810,26054],[-44296,-1993],[-7835,41854],[-39886,-4538],[-5790,38349],[-34474,43438],[-40058,2546],[-13889,48914],[-46547,5188],[-12809,-39118],[-18487,11598],[8514,49203],[-11333,4131],[-33264,-27663],[-20454,31385],[15269,14552],[11713,45192],[-22347,6603],[-37218,-45697],[-14513,3794],[-30218,37005],[-37540,14120],[3669,-34028],[-13376,-12461],[-16406,31264],[-44824,12799],[-35801,-12054],[-5411,26293],[-26567,9918],[-18315,-16352],[-17786,11094],[-15990,-11262],[-17880,-36500],[-37920,22259],[-22250,-7083],[8986,-31697],[-2346,-31361],[-18335,-11718],[-26982,23459],[-28931,-11765],[-28060,27734],[-37466,-3314],[12527,-33977],[-13378,-14792],[-24920,36643],[-31825,600],[-7323,-21707],[10028,-27448],[-7323,-17649],[-22857,-7491],[3500,-28720],[20303,-23461],[-33396,-58375],[-38601,-22596]],[[9172360,48354799],[-10330,26774],[-73208,-43919],[-28250,12774],[-2782,35371],[30976,58952],[-4144,55205],[-44598,18562],[-31373,-21203],[-42611,-1033],[-20889,11503],[-20739,66515],[-2932,34243],[-30995,78786],[-11106,44641],[10330,48219],[27948,48625],[34721,32418],[32431,58879],[6624,24254],[34854,35178],[65165,18682],[24750,1610],[71106,25501],[53587,-4465],[47284,3456],[61932,17650],[10956,58952],[-85015,27832],[-16632,41301],[20415,105177],[-2081,22741],[-31183,26798],[-26982,10061],[-37597,27904],[-12299,20530],[6849,45265],[65432,52828],[53586,57199],[53017,150154],[46265,53524],[21192,11983],[59205,-16281],[9763,-13759],[-38657,-111300],[13113,-25478],[31050,1297],[72054,60872],[40530,22790],[31392,8211],[40964,-6699],[14645,15225],[10049,57391],[20188,18249],[40965,11935],[18865,34314],[323,21635],[-26113,64859],[10881,61665],[23632,45649],[-8061,44184],[-63860,67164],[-21229,56623],[-27078,106787],[-3556,41422],[8135,33282],[30105,59792],[-7437,60897],[-15724,26485],[-54305,-5257],[-87908,-35492],[-72812,5283],[-60643,25502],[-11467,55949],[-7209,111012],[-27058,36813],[-36084,29080],[-54663,-3003],[-48554,30377],[-52128,53357],[-31713,10278],[-38203,-9101],[-43236,-33210],[-35610,-12127],[-33831,2809],[-69027,27232],[-26074,22403],[-15042,60080],[29025,24398],[66283,35227],[18902,21732],[27210,55398],[24730,164585],[26245,50691],[-2556,31986],[-21399,21106],[-66567,2281],[-61835,12871],[-21741,14840],[-12015,37726],[-37050,55589],[-36594,73240],[-5960,29560],[21060,24204],[47418,32658],[29214,56406],[4257,66252],[25620,51101],[33492,27950],[40624,45841],[36273,11622],[27759,-39476],[28381,-62554],[127476,-123979],[31448,19282],[52960,112620],[39529,21757],[33131,5523],[35308,-8166],[50596,-41637],[50275,-11790],[23557,9701],[32659,95812],[53851,122970],[22364,39572],[36860,30545],[45449,-528],[86245,-13904],[41780,10951],[124428,122586],[128251,91586],[15497,29488],[-2858,50595],[-33699,25718],[-165905,63562],[-52166,5547],[-59434,64978],[-3121,22573],[16197,37772],[40038,-2569],[37673,11118],[19715,44665],[-20094,34386],[-80246,28382],[-39489,22141],[-27513,25094],[-56519,82413],[-28099,83732],[39471,37893],[31996,8692],[103445,-12151],[34550,14529],[42252,110172],[-567,31193],[-22403,63730],[-19187,12223],[-41286,-3339],[-34229,8766],[-68137,63946],[-3842,24493],[16613,18923],[16823,52035],[-9027,31721],[-94267,1008],[-97238,63899],[-44730,17457],[-112470,16570],[-99094,744],[-16916,6484],[-4956,85437],[19507,77946],[38544,44833],[13244,24854],[-10652,42623],[-27474,13758],[-29613,-63826],[-44635,-34987],[-37901,13567],[-22080,78211],[-23842,26079],[-34552,10758],[-44937,32801],[-9026,22332],[10672,59216],[37596,19090],[34381,-2521],[20020,-34939],[73869,-40726],[-4012,15872],[-47947,18394],[-27645,23341],[8402,25381],[148308,40055],[24106,13639],[8230,23628],[-9328,48698],[8118,67334],[33036,68868],[19207,55087],[29480,28983],[68874,28070],[25941,39238],[23822,211651],[4486,61209],[-80285,138939],[-29518,42022],[-20094,47065],[-25867,175008],[-45658,117062],[-3500,182740],[44049,18249],[49215,-9053],[68250,-4035],[69689,58041],[-3217,54413],[-44012,105968],[-59091,65749],[-16936,42142],[1174,39238],[11807,8716],[120265,18467],[59528,44567],[14834,41135],[13341,91921],[-23218,84237],[-32829,50692],[-37975,-2714],[-56632,-42382],[-58412,-8502],[-37805,6845],[-27834,17698],[-35308,41229],[-23234,16066],[-31259,-3939],[-36746,-24781]],[[9287253,55956897],[-17275,22380],[-27474,15008],[623,34530],[59982,28960],[8383,15080],[-5432,54125],[25866,34772],[5393,31457],[-9442,32081],[7096,27135],[52072,-4180],[13814,95693],[41077,30207],[-7018,29969],[-44504,72783],[-8913,43344],[-32998,21971],[-2649,29464],[13244,29176],[-6263,19763],[-41457,34363],[-605,22860],[36801,16376],[11279,17410],[-25034,51461],[8553,29968],[36783,36499],[29272,-2041],[34607,36308],[-10842,33977],[7928,35996],[52925,6508],[2800,13640],[-66018,70020],[-9385,313],[-40113,-36619],[-54458,-18298],[-8665,11573],[15592,40078],[-17276,30496],[-6850,60490],[-32432,2184],[-3632,14432],[26792,44401],[-11202,19954],[6339,30016],[-21153,-12631],[-29461,2715],[6262,42502],[-38222,19930],[20814,38998],[18978,-25430],[18866,-5187],[24578,15801],[18753,-4610],[46433,15320],[14248,-3770],[9612,22476],[37787,17025],[21873,264],[-3443,28432],[11920,48218],[-9990,14048],[13092,19497],[17636,-14360],[21476,28216],[-14022,14648],[79718,65147],[41835,22981],[-530,17866],[-24181,23243],[-9348,37966],[-30406,24852],[11598,56072],[37617,1367],[2137,21877],[23861,-2234],[8061,19427],[-14060,32658],[2253,56430],[-8497,15512],[-1286,45913],[-23634,40198],[46321,39093],[2440,26270],[-25127,17433],[-3463,19236],[28590,30855],[-14172,35252],[10067,13760],[50729,11957],[181250,818],[1043148,-7348],[87985,576],[384582,-2714],[523882,1118597],[461158,980881],[236235,-4442],[143350,5594],[93681,192],[60002,-5618],[138751,5882],[183880,-984],[362425,312],[143085,1801],[476654,-2785],[19413,3289],[97238,-4465],[541235,384],[157124,-744],[268252,10229]],[[47276783,69556066],[71297,-77706],[59659,-75569],[31731,-63154],[13699,-69421],[3105,-50355],[-10995,-56431],[-26755,-70261],[-34097,-67142],[-71845,-94587],[-56291,-51555],[-44655,-21923],[-66264,2449],[-64749,20219],[-72697,66563],[-55649,59073],[-82498,67187],[-92772,82004],[-54874,70263],[-48250,80899],[-44030,100591],[-40966,126020],[-54398,119681],[-33417,43318],[-76120,72328],[-40834,18393],[-58505,13520],[-58051,4250],[-66113,-5330],[-39736,-16809],[-30273,-26415],[-54873,-79243],[-37144,-70429],[-59414,-165281],[-15137,-33402],[-50501,-78811],[-30312,-37533],[-104429,-102631],[-22857,-27326],[-57674,-49587],[-78297,-57895],[-66472,-40944],[-64200,-21826],[-108535,-19355],[-93303,-5164],[-77616,2067],[-57805,12005],[-102689,38254],[-91768,81524],[-51998,64810],[-52998,76817],[-50256,57416],[-60984,49203],[-30390,12967],[-33301,408],[-34796,-11767],[-75953,-53692],[-85203,-87528],[-37901,-48050],[-40226,-83805],[-35024,-125589],[-16765,-77898],[-5676,-62096],[-21646,-162448],[-8837,-91130],[-4484,-143189],[-3709,-29608],[-35138,-118385],[-55610,-120640],[-122745,-310079],[-24862,-98959],[1665,-57103],[20908,-159398],[14342,-48290],[55951,-158676],[54116,-137404],[15099,-105969],[2214,-56718],[-6774,-71967],[-22061,-71487],[-28743,-57294],[-66849,-102560],[-79567,-82316],[-80718,-65315],[-99717,-91514],[-136406,-169459],[-77069,-51029],[-53414,-6027],[-51298,8646],[-57047,17986],[-96142,61785],[-53377,53356],[-46982,70335],[-41913,102222],[-35610,126261],[-36121,175007],[-18789,61089],[-25619,51315],[-66472,71847],[-77560,38516],[-70918,-2977],[-25261,-19666],[-53680,-59408],[-153643,-90313],[-85792,-66252],[-152905,-113341],[-34229,-29248],[-38959,-19547],[-34513,-31121],[-7190,-43056],[-20001,-50547],[-75572,-88006],[-61705,-96822],[-32147,-79242],[-18922,-67212],[-58656,-160887],[-43520,-98454],[-22706,-62434],[-47305,-192102],[-11353,-88849],[-3783,-86446],[1892,-74416],[22706,-211315],[13244,-69637],[17030,-52830],[45412,-96051],[39736,-43224],[24598,-40821],[113529,-120065],[68118,-52828],[73814,-40822],[39735,-33618],[96499,-69639],[94609,-72038],[51089,-55231],[39734,-33617],[47305,-50427],[58656,-76842],[60549,-88824],[34059,-67236],[26491,-67237],[11391,-44040],[-4163,-82293],[-16973,-115285],[-50785,-144990],[-49197,-105657],[-34058,-62434],[-55328,-50404],[-23045,-28238],[-54438,-45769],[-51391,-35949],[-112509,-67451],[-42705,-40391],[-33169,-56477],[-13776,-40559],[-10672,-92810],[10181,-87792],[34550,-73791],[75479,-74800],[76385,-31049],[129841,-47834],[168440,-46921],[105924,1465],[65297,-2930],[170050,-26630],[204238,-240],[228781,11406],[47305,-9558],[77863,-29560],[68799,-52708],[58751,-89136],[46301,-111876],[20720,-74657],[4653,-61546],[-7322,-95474],[-16404,-76194],[-37408,-85511],[-60891,-72326],[-46754,-34362],[-122139,-56455],[-39131,-11215],[-62119,-4826],[-73453,121],[-87552,-19691],[-91541,-985],[-83634,13759],[-72583,23053],[-61988,26102],[-61949,57486],[-45640,52302],[-74304,56213],[-67097,20964],[-92790,11045],[-125148,-19690],[-113851,-37580],[-52736,-14023],[-75571,-2714],[-59226,11886],[-39981,29296],[-14154,36933],[-6395,41589],[13284,151858],[-11316,114374],[-22365,85918],[-37617,102513],[-41645,126236],[-32319,128564],[-43443,155508],[-37996,121699],[-48817,145181],[-62914,126453],[-52376,67741],[-67663,56863],[-95005,47353],[-71279,8669],[-67039,-14937],[-72716,-57895],[-49933,-55517],[-61875,-44472],[-22231,-35611],[-8988,-63564],[11295,-37820],[47380,-77682],[8741,-71102],[-6754,-38421],[-25091,-55325],[-45675,-57007],[-28269,-22309],[-31335,-46081],[-23614,-72398],[-31031,-139299],[10369,-92834],[71297,-278911],[42043,-277182],[26983,-291230],[5241,-76457],[27057,-95116],[95157,-159277],[73908,-89857],[85676,-88920],[69879,-63635],[54135,-36739],[250143,-119825],[79319,-24084],[182271,-24278],[101289,-3433],[102478,11646],[84485,14336],[65962,-2931],[56915,-9700],[53625,-23990],[54475,-36379],[29499,-35708],[23727,-68317],[6888,-71077],[-13586,-40798],[-28571,-50572],[-26036,-28119],[-74704,-46129],[-93831,-88152],[-30313,-18106],[-72414,-14600],[-91826,8213],[-31239,-4923],[-87417,-47954],[-41705,-16977],[-45828,1368],[-40529,21925],[-34343,35107],[-52849,37171],[-63518,34987],[-74477,35420],[-80701,25862],[-53756,6724],[-62156,-4370],[-54609,-10518],[-83406,-25455],[-53396,-33402],[-131809,-115021],[-99112,-115984],[-81797,-153273],[-19187,-57968],[-14002,-73263],[-20699,-216142],[-13360,-110195],[-23444,-118000],[-15629,-127077],[5430,-224160],[-10293,-123187],[7190,-91729],[23521,-97661],[26092,-68030],[42612,-75713],[81343,-89879],[69707,-59936],[121686,-55856],[76160,-22739],[51126,-8694],[70387,14985],[153531,47257],[36897,-2184],[68060,-41568],[24636,-61473],[8004,-71990],[-11883,-75160],[-7530,-115022],[-13699,-51749],[-27532,-58568],[-36405,-57054],[-136802,-154115]],[[40750798,74832748],[38940,-23724],[62384,10373],[79850,-48338],[37464,-12895],[56802,-29416],[135725,-119896],[47021,-68126],[33927,-19330],[15628,15296],[-21097,128950],[24711,29632],[26585,1320],[30899,-19282],[4446,-55037],[-17861,-45961],[-5299,-40366],[9784,-45073],[25505,-15704],[92811,43416],[23103,-2377],[21627,-38878],[-8552,-35226],[7267,-46753],[33603,-15657],[18866,8525],[45298,43462],[14267,43704],[-5979,49058],[13661,16425],[16973,-8619],[13623,-82269],[-17143,-54677],[-32034,-39935],[-38505,-32465],[-5430,-27686],[11106,-16834],[49935,-42527],[-3179,-30928],[-22025,-8334],[-39661,30257],[-28173,-11166],[-1400,-21971],[32318,-42336],[47872,-33762],[68514,-40222],[15706,-33714],[-20020,-49947],[23954,-34722],[84258,-12248],[56104,-3048],[26206,10613],[50407,37269],[38638,-24279],[-15687,-45168],[-51428,-44447],[-34834,-14336],[-18487,-28743],[2176,-29824],[15193,-40511],[32187,-26846],[70880,-21228],[41892,-25813],[32508,-80589],[7644,-65555],[36215,-19762],[66983,30809],[41552,86783],[41476,18778],[33681,-37894],[38751,-118839],[45695,-24493],[15762,9029],[11637,46297],[23028,24900],[46963,-936],[25413,-28287],[-1817,-24949],[-30105,-50500],[-378,-22067],[21665,-29873],[43652,-27711],[8629,-18658],[-18013,-31073],[-30068,-14504],[-9139,-28863],[6245,-20218],[25204,-16305],[88457,-7300],[10333,-10806],[-1193,-42480],[-55952,-38444],[-63955,-20220],[-14834,-13494],[-3917,-30714],[5204,-51579],[-52413,-33377],[-1343,-44521],[98090,-29104],[45468,-30569],[25241,-35082],[29840,-15608],[25185,3073],[17446,21060],[8760,82893],[46092,9388],[9953,-17530],[-4237,-117470],[17994,-21973],[36557,-11861],[32715,29367],[53244,30352],[33681,-9076],[19982,-20099],[-6548,-70934],[-17539,-78066],[-21288,-36020],[-22554,-11070],[-49196,-624],[-6320,-32658],[9536,-36356],[48212,-44616],[5677,-55230],[37805,-13592],[54040,35781],[10218,16449],[52754,33017],[16746,-23245],[19660,1008],[-3596,43897],[100492,55710],[7948,32634],[82592,35755],[2479,26534],[94929,49587],[43370,-9918],[50956,17674],[15818,-62098],[30387,21781],[21118,-1945],[-1495,-26895],[27606,-25335],[72678,-3001],[57787,7685],[57313,25261],[72526,-27951],[72451,32490],[69480,65916],[29139,19833],[30351,52566],[-492,13062],[-32450,20580],[35231,81884],[30843,27087],[67437,26293],[54512,8069],[35252,-6724],[35610,-30760],[65846,33810],[26227,25621],[26452,53214],[49139,65651],[46472,28792],[47191,19138],[19885,59288],[16102,27999],[-10746,55974],[2327,64715],[9384,20604],[57693,43439],[28306,11093],[19508,21661],[10749,59407],[51221,31170],[19885,29968],[48554,55326],[116633,54509],[107475,-11358],[38201,13327],[16955,20579],[2441,25886],[-21590,53357],[4768,46201],[53568,42887],[100833,174550],[22213,48050],[30162,99678],[16613,36308],[25392,33162],[72527,41518],[43066,35396],[16839,33785],[-9253,71704],[4409,34986],[42366,48962],[-28760,103545],[1135,119464],[257674,-96],[217049,-2018],[343050,-12966],[139243,-1008],[-3783,-2091482],[361420,2401],[43521,-4802]],[[55580340,28992083],[318791,865],[-4276,338079],[209292,8740],[69763,112238],[73794,-58472],[99585,-73865],[86698,-73216],[89500,-65867],[67134,48866],[29290,-17793],[115479,26679],[350940,77082],[4143,-32250],[385869,108203],[95364,-119994],[41268,-32393],[149557,-101695],[119300,-84957],[354136,2616],[36123,32514]],[[59749943,25219045],[7455,-668713],[-463579,-9629],[-132395,-513710],[-3085,-1321],[-71693,-283328],[-83294,-323695],[3406,-24132],[-428195,-890066],[-450354,-797230],[-196766,-345787],[-140662,-211987],[-333266,-506842]],[[57457515,20642605],[-112584,-169051],[-497790,-751318],[-139206,-207375],[-242632,-354552],[-346247,-501991],[-96915,-138531]],[[56022141,18519787],[-265,55085],[-14702,61521],[-52414,86784],[-65562,66899],[-37541,26224],[-67665,31048],[-139641,34435],[-44351,25286],[-12621,39500],[4390,32562],[26697,63250],[50352,137642],[19678,61161],[14381,124099],[16858,369201],[-322,111635],[-8892,120498],[2346,37603],[16234,59769],[55592,86111],[2895,28912],[-15439,31313],[-52452,18634],[-26944,44592]],[[52755760,26806398],[13453,15393],[-29347,69350],[-19867,126573],[-14930,21466],[-18883,89161],[-19413,17625],[10293,350638],[23803,20266],[91127,6844],[79962,-7156],[81192,-19954],[134230,0],[34324,22283],[25336,44424],[49708,111949],[28780,80827],[29215,99823],[65165,176759],[20020,67525]],[[8110972,81221448],[7625,-43007],[19472,-23557],[58485,-18251],[31751,-16329],[38789,-34217],[26850,-66036],[11088,-61066],[17920,-35322],[49612,-41975],[54967,-65508],[19602,-59120],[-3481,-92330],[-22971,-37988],[5695,-38013],[28912,-31864],[45734,-86543],[20455,-17361],[265754,-108635],[76765,-55446],[43424,-12247],[103767,-74128],[65733,-7059],[61665,-35372],[65848,-29344],[42706,6028],[34022,25044],[79678,6220],[90634,-19931],[56367,5164],[47722,10637],[45051,-8621],[23388,-20555],[8892,-31816],[-7681,-48675],[11749,-18779],[57863,-31240],[39112,-32418],[45733,-78762],[23027,-59193],[605,-21466],[34721,-44545],[-11844,-49179],[3708,-67716],[-12658,-36116],[12129,-29848],[40965,-56094],[12243,-46657],[-16311,-45817],[-1665,-102631],[6774,-24733],[1117,-139011],[15003,-48387],[-3330,-96388],[6490,-41255],[48478,-79819],[39263,-29464],[29839,-37244],[23804,-50210],[42800,-44760],[26415,-50740],[-5071,-60536],[-19414,-46393],[-43463,-36500],[-38184,-14769],[-142158,2162],[-27796,-18779],[-17388,-63250],[-48668,-79483],[-14871,-34218],[-32376,-38973],[-36708,-1152],[-27322,-15969],[-56444,-48291],[-27606,-42119],[-11202,-72567],[-53944,-60680],[1229,-25959],[27776,-54484],[21893,-22717],[42119,-4298],[66700,-68221],[31826,-20099],[19149,-23892],[14513,-37438],[47851,-36066],[38885,-72399],[38429,-11143],[164146,-105201],[-8572,-40534],[16442,-90840],[23634,-31026],[39659,-22091],[42745,-36499],[42895,-79411],[-76,-31410],[-22158,-48819],[3445,-72111],[18429,-33162],[29745,-29462],[52375,-32994],[54210,-10879],[90219,-31816],[50861,-3578],[73813,-28744],[47550,745],[47910,-25262],[46642,-58784],[8004,-66324],[-1156,-150274],[-14361,-102918],[-14172,-53550],[-4012,-211674],[15460,-48147],[58714,-68052],[27853,-11285],[59904,10589],[49045,-29584],[24901,-5811],[25545,9941],[30369,-9461],[33188,-91777],[54929,-7469],[13909,-31624],[-21552,-41759],[-2291,-35684],[59111,-83085],[18072,-130341],[-18450,-27495],[37750,-19860],[35402,-38084],[18732,-36811],[11012,-41280],[51353,-41061],[54968,-6484],[74285,-128661],[-8267,-57944],[46736,-57750],[23122,-9053],[94248,-12392],[24675,18874],[43122,7973],[43652,-4730],[81136,30543],[43689,-19090],[4163,-32201],[-27474,-78475],[3670,-27711],[39035,865],[42215,24062],[29290,5354],[21552,19691],[9102,26606],[31694,39910],[31011,11647],[41023,-23990],[36992,-5594],[21079,8619],[28477,-14528],[23935,-56069],[8951,-74608],[19054,-22020],[42478,-30232],[15024,-44520],[44618,-30473],[46849,-16329],[21381,-16473],[25659,-37149],[32526,-3337],[63973,-71895],[25866,-16953],[64995,-81620],[47854,-47017],[34947,1704],[18090,23846],[34380,-10542],[26132,-32249],[18278,-38158],[22932,-23051],[-2591,-44906],[-31601,-32224],[-1058,-53909],[8230,-44328],[17881,-20220],[48289,-30472],[17029,-60320],[-7474,-133296],[42024,-49899],[-3028,-42767],[-10369,-13040],[14476,-64474],[32053,-32345],[59452,2784],[49082,26583],[33018,-24878],[46454,23174],[51333,-36141],[3653,-43486],[-33606,-17699],[-8362,-15103]],[[13016172,73890192],[-316123,3218],[7700,13519],[-64674,1032],[-51789,-6004],[30787,-99389],[-19036,-55711],[-3614,-67499],[-19074,-9942],[-31977,6604],[-23255,-16473],[-11068,34459],[-39963,43151],[-29252,985],[-38922,-14984],[-24069,-21541],[2498,-16665],[-47229,-72374],[-72734,-50212],[-68667,-15849],[-76385,20916],[-20114,-3987],[-69783,6581],[-49196,41469],[-25659,34580],[-51258,51363],[-25999,71055],[8232,33978],[-14930,22812],[14741,20820],[17123,48410],[-7039,32394],[-22099,12919],[-81648,-7806],[2744,-21130],[-27890,-43656],[-12092,10062],[-32506,-6461],[-5677,-43342],[-20643,-41326],[7151,-48170],[-4995,-20484],[-28004,-31265],[-20283,-4514],[-35517,43296],[-15932,-14888],[5942,-26224],[-18279,-9964],[-10917,-27759],[-28079,-1225],[-3444,-18177],[-42007,-54750],[8137,-17650],[-26944,-25502],[-9329,-46898],[-22744,3074],[-30293,-36883],[-14493,-2041],[11560,-41568],[-6774,-35009],[27626,-109043],[24616,-16593],[-17388,-82798],[15572,-38348],[-7965,-44593],[-31883,-11333],[530,-49924],[-23085,-47474],[-11485,-449402],[11504,-369799],[-909,-163456],[-3291,-185477]],[[11394231,71801327],[-1081200,-3337],[-10294,6818],[-170086,2618],[-36878,-1777],[-153227,2617],[-469919,-864],[-612813,-216],[-192736,8525],[-343087,-6939],[-125827,2233],[-285680,-48],[-103784,2065],[-673003,-4828],[-359928,-1561],[-1173556,-11622],[-55005,3459],[-74362,-5764],[-82176,5260],[-312490,-1057],[-130521,1393],[-164070,-3603],[-90104,553],[-182859,-6508],[-135535,2185],[-21250,-3793],[-668404,-6003],[-503485,-3723],[-73304,1200]],[[3108648,71778610],[1211,20604],[-51069,38156],[-45808,20940],[-11997,43272],[11599,32416],[27606,17915],[10635,19907],[-14399,56166],[-19888,7948],[-93283,1680],[-6320,41928],[138108,192487],[9462,28935],[-5374,61018],[-48288,25742],[-16046,-24278],[12337,-56982],[-7151,-20076],[-25223,1585],[-49235,95068],[-41571,7421],[-47342,47161],[3444,39574],[31864,28910],[-5941,27423],[-57352,13736],[-47700,-13088],[-26699,-38515],[-33585,-6725],[-23823,31217],[15932,37557],[-19452,56958],[3426,23029],[30010,34195],[29687,59960],[39073,32250],[3974,23027],[-13813,113654],[-24144,73960],[-40719,64571],[-22062,5475],[-40682,-35155],[16120,-39142],[-51504,-92234],[-15155,-5402],[-7607,23436],[18222,24758],[-9406,15512],[-73037,-11695],[-40680,-45072],[-9423,11886],[14663,27064],[-4957,16857],[-46641,11502],[-24599,-12919],[3823,-43368],[-14986,-18177],[-52830,26799],[-19488,-29584],[18581,-61570],[-2895,-22453],[-41685,-5354],[-40019,22908],[-38033,41302],[-18202,53070],[8041,23604],[37219,19810],[3463,14768],[-17578,31193],[-20662,-5762],[-25885,-30160],[-55819,-39790],[-18657,19186],[-4030,33883],[49423,50450],[39490,60346],[31864,81427],[24655,32681],[46735,17842],[-2459,37053],[-34665,42575],[-18069,38636],[-51373,47497],[-13643,39143],[-29725,9724],[-20890,-31337],[-33889,-21611],[-40094,-9054],[-49574,-21971],[-96671,27639],[-40966,-2666],[-95099,14481],[-70180,-7252],[-32528,36619],[-10634,36789],[-416,59046],[-10804,40078],[-23197,38998],[-40152,92546],[-60170,22332],[-36577,-23365],[-67455,-66468],[-45034,-10733],[-33301,26077],[-74495,94755],[-30880,68366],[-29366,130702],[-20587,46465],[-18221,82268],[-10653,26727],[-60493,52516],[-44654,56767],[-34590,107290],[-90729,92810],[-22933,35827],[-54740,112526],[-29971,42238],[-56444,128662],[-68533,179784],[-20115,27352],[-95156,91706],[-51901,35250],[-16746,31649],[-3255,63154],[-11637,53262],[-27683,74344],[4751,79579],[-27608,-7349],[-37047,-42263],[-40739,16186],[-34665,42742],[-25978,56719],[-25223,25549],[-23615,-7779],[-16555,-27376],[-45185,14624],[-34117,-34554],[-78769,-40006],[-33587,7397],[-24787,20266],[21552,69230],[-10559,57486],[-21135,13351],[624,184037],[-1721,429736],[2044,451131],[-568,295551],[-2025,20220],[2063,321294],[-417,385023],[2063,194361],[2365,32442],[-493,332939],[3311,250264],[-7832,126044],[-681,307846],[2062,36044],[-2536,127365],[-207,198850],[3404,214388],[1458,368696],[-605,447937]],[[14267,80224404],[802295,-5210],[193757,-5211],[414590,216],[170276,2834],[150654,-3674],[255329,223585],[178563,150849],[46319,-1248],[37938,31696],[14570,-13230],[3558,45816],[27531,11767],[1721,18897],[21911,28384],[47721,-7684],[1967,27471],[53245,23628],[28157,22573],[-3672,17962],[47493,12510],[77995,44641],[27778,-1610],[28534,76169],[28287,15729],[27171,624],[5525,32106],[19093,5547],[16027,-17697],[25959,1056],[77258,60561],[16915,29848],[33057,14359],[39905,34868],[6263,20050],[17257,-1200],[29630,23363],[22801,49899],[32810,27448],[45185,7347],[43861,52157],[11390,22981],[53926,14407],[7097,25382],[-23501,50115],[2213,23628],[72754,56864],[55214,5186],[30975,29200],[-10862,12967],[53472,5786],[8477,31098],[42575,10062],[-3842,25452],[33738,14457],[-265,57438],[36934,30258],[14476,95090],[14267,28048],[-22007,44136],[1684,40605],[-14551,12391],[7323,90336],[21060,32106],[4958,45481],[12299,28624],[-14248,15008],[26188,59696],[-16312,24324],[14986,22645],[-13755,4923],[-2479,26605],[18164,18274],[7116,30882],[35459,46033],[31541,-3003],[17806,43345],[-34494,51748],[19886,23675],[13302,-15007],[27531,34674],[-3009,17843],[36821,-7516],[-1911,31408],[30787,-25310],[4483,15609],[30295,-3314],[25866,10925],[34871,61306],[-3140,18851],[38506,-8045],[63670,60800],[12489,19500],[26509,816],[36461,38516],[3123,19596],[56159,27783],[96047,4394],[33680,64931],[-7625,16617],[56367,12847],[11221,29584],[32071,-1969],[14399,20026],[29840,-3625],[65640,31529],[24332,40148],[21438,10279],[-13225,37004],[32129,8357],[-30029,43295],[12469,15488],[-18562,78113],[3482,23582],[75401,82269],[-8987,18225],[7890,26630],[-15421,11431],[-14229,42575],[31050,39356],[8155,-9340],[27115,34050],[32925,11623],[-17523,22499],[23955,31770],[22990,-11527],[17597,17529],[5848,32371],[17879,-1081],[51221,71679],[20437,-19907],[30993,2570],[26623,77921],[18808,-2376],[10727,-25070],[36615,25958],[-1401,24253],[49726,-3914],[11371,29728],[25792,17505],[22460,-5884],[10255,13593],[38184,-23414],[16481,7541],[21059,-34098],[19963,3554],[-4712,-22550],[14512,-16519],[30673,43175],[12355,-16641],[13416,19137],[17880,-2040],[1496,22571],[22326,23822],[-8117,26822],[58297,-4995],[40475,2762],[23141,27278],[32506,-31528],[228,-27303],[32961,3842],[6395,22067],[22725,-21611],[833,19811],[94098,-16953],[18600,-24806],[20964,-4922],[-3084,-63682],[34778,4682],[58676,35323],[4050,-15728],[21077,13903],[23937,-58231],[23785,-12655],[-9065,-37772],[35478,-93483],[5867,34483],[20737,-50572],[6755,-48987],[25885,-17433],[29973,-76073],[23027,-13543],[35155,13375],[10844,-11383],[49649,18442],[26339,-16111],[22101,42262],[26661,25358],[36934,-3458],[51467,-93746],[25430,-8093],[34210,-36860],[19679,-49947],[5450,-42263],[45108,-52252],[34514,-11502],[77805,-4610],[35724,23795],[56916,50309],[72660,-11503],[21797,17290],[11807,29200],[-15439,41494],[7567,24588],[38752,35348],[39054,-19235],[33303,-40701],[59944,-56887],[38146,-72975],[18164,-7301],[65506,18851],[45601,-12704],[31183,11527],[33000,26511],[35420,9197],[34571,-8069],[60247,-45265],[103367,21276],[51145,-45481],[38961,-11069],[19678,-41351],[-170,-36356],[20889,-19523],[69101,-25766],[14551,-26077],[52849,-29056],[35875,-37389],[24579,-5402],[52602,-35827],[10388,-22765],[-12186,-38732],[40984,-69543],[25886,-4322],[33850,-26078],[13396,-44183],[24106,-29368],[16425,-47955],[1268,-38924],[11693,-21948],[24806,1345],[49858,-37125],[60569,-64186],[50331,-6339],[47608,-26847],[30331,-29992],[604,-31482],[20588,-54604],[39526,-23533],[380,-54294],[44144,-24637],[-24239,-24806],[13528,-15969],[35782,1154],[15723,-19715],[35610,-93818],[-19678,-31362],[18639,-32082],[-191,-31504],[-25108,-33402],[-2119,-38421],[-17919,-25549],[-31032,-96989],[-3444,-78331],[22139,-39476],[21420,-88248],[1702,-75137],[-5639,-56646],[20587,-60393],[9423,-69565]],[[4329244,99995869],[-32470,-62578],[-57371,-62530],[-78808,-21059],[-42629,-31194],[-28706,-55662],[-642,-40485],[34607,-106906],[24938,-35755],[-12204,-46561],[33871,-155076],[46319,-103544],[50123,-215924],[7986,-67333],[-4353,-41326],[-52998,-118456],[-53777,-67140],[15232,-21468],[54097,960],[53814,12535],[56406,24926],[60869,51027],[72148,53692],[28383,15729],[42499,-1008],[14890,-12511],[33833,-59528],[7132,-59144],[-15306,-64402],[-28459,-40751],[-31485,-31144],[-64751,-28312],[-29497,-1536],[-41440,10133],[-82252,64618],[-73755,24854],[-56803,4490],[-67493,27808],[-9841,-3410],[-58184,-75209],[-22629,-53044],[-23481,-113583],[-26038,-19953],[-155364,-46827],[-39868,-24948],[-26887,-57991],[4579,-28288],[45128,-59696],[40700,-17675],[26623,6868],[292698,1922],[73604,-41182],[106094,-50980],[54041,-39574],[69953,-61232],[64389,-69495],[40682,-87839],[-1382,-42431],[-28022,-44375],[-60474,-52829],[-17162,-22860],[681,-28671],[-21362,-42191],[-59774,-145038],[-79811,-132144],[-43178,-106377],[-46812,-99510],[-12376,-54366],[19243,-75833],[-3499,-91370],[-7361,-59264],[3047,-61712],[11107,-80829],[23803,-63706],[27455,-50019],[71504,-113125],[21079,-9869],[100172,5402],[45979,-22259],[72658,-58088],[13832,-27854],[5507,-70598],[-18506,-97758],[-14928,-46681],[-17636,-23604],[-97882,-75065],[-105468,-70934],[-27002,-38829],[4749,-23365],[61042,-45961],[116784,-47185],[68590,-19114],[41080,-914],[22952,17771],[14872,28912],[30710,93746],[57370,148376],[55952,61618],[24522,8044],[30880,-12824],[26660,-48601],[8023,-45554],[-8382,-102438],[9102,-193617],[-9330,-149553],[-8136,-71511],[-20491,-115213],[-46339,-215974],[-39206,-117158],[-50426,-111517],[-25468,-48121],[-53171,-70094],[-24522,-15561],[-93435,-44497],[-159546,-61856],[-71752,-32034],[-54531,-39933],[-24239,-25454],[-34380,-56167],[-25052,-87792],[-417,-46849],[16556,-104863],[32205,-67382],[34797,-22235],[57295,-1634],[42062,27591],[32980,50932],[30464,69662],[59225,84886],[92622,121001],[35514,35083],[42499,22139],[49801,7156],[65016,-16328],[38373,-23868],[53263,-57200],[17143,-33378],[19962,-86543],[46624,-92618],[10179,-59840],[-4352,-70093],[-20473,-117161],[-1210,-117134],[-14874,-79723],[-53376,-102631],[-54780,-115671],[-42214,-51653],[-92185,-80996],[-53321,-39548],[-87531,-78187],[-66870,-65891],[-93264,-100374],[-68836,-92498],[-26681,-49659],[-43140,-136249],[-4221,-74873],[-16971,-47233],[-44145,-100640],[-25847,-107073],[31447,-85462],[57314,-40654],[47040,-11335],[48382,38446],[39717,48218],[28496,88631],[35004,48771],[72829,83782],[32868,26102],[55459,33234],[39698,13327],[91315,3578],[52205,-11455],[108798,-41927],[31997,-32104],[41609,-55495],[13642,-64066],[7702,-146792],[-14948,-142205],[-13625,-95548],[-54589,-321341],[-34398,-255834],[-2196,-117952],[23255,-105177],[21060,-7300],[46623,12439],[46434,34338],[31787,49683],[61156,35060],[25354,-336],[8137,-26655],[-35233,-107049],[-4465,-47811],[17313,-50114],[84732,-94300],[5751,-36236],[22726,-39836],[58731,-68725],[14041,-44257],[-31392,-49827],[-32771,-28166],[-41798,-12247],[-57389,-2882],[-78980,22139],[-48987,-21299],[-34570,-61208],[-47891,-45145],[-5240,-19595],[10312,-38804],[27285,-37293],[39319,-33042],[91182,-44639],[45508,-14817],[70407,-1848],[40907,17529],[28743,24566],[42459,65506],[25053,9533],[26945,-6963],[16820,19043],[69179,-94396],[47019,-84957],[38638,-96340],[36236,-9871],[-11334,-60920],[10880,-55590],[-5262,-102992],[-28381,-89928],[-25375,-66060],[-83085,-125012],[-23160,-73215],[40568,-42071],[79037,-16137],[119281,-3794],[71921,-16353],[30408,-25550],[40377,-49393],[-10407,-59722],[-15136,-18801],[-54798,-24229],[-21192,-2281],[-40264,15368],[-107475,92545],[-75081,-38012],[-57542,-23436],[-133208,-25719],[-39357,-13063],[-25733,-28838],[-3330,-25718],[14229,-34964],[21495,-19211],[135934,-61856],[87512,-24974],[49650,13447],[44503,39933],[54191,39598],[79320,14191],[42991,-6146],[59942,-23028],[31487,-29970],[18165,-32272],[15136,-50715],[5449,-56887],[-16044,-92571],[-84769,-165978],[-38449,-59552],[-36936,-35706],[-73264,-51124],[-102327,-42432],[-4202,-71967],[5677,-77057],[9499,-60824],[24636,-8068],[36027,12126],[93038,58640],[13074,88078],[14930,-74967],[49516,-72327],[24069,-55447],[11107,-67837],[28798,-73744],[41836,-71245],[30673,-84431],[41154,-73239],[60133,-83181],[3670,-17146],[-16688,-25069],[-58109,-26342],[-40019,-3578],[-10577,13135],[-44315,11238],[-19980,36405],[-12923,48937],[-11657,138363],[-14002,39022],[-34853,39405],[-35233,16017],[-58958,2784],[-46700,-45071],[-17577,-34098],[-30332,-38494],[-1874,-30736],[-50444,-66925],[-16102,-9244],[-59888,29728],[-98771,77177],[-48174,5404],[-8212,-20892],[984,-52829],[8534,-20723],[50294,-45913],[50028,-38517],[65034,-61904],[30690,-35324],[44278,-13567],[31333,-34170],[16348,7420],[27304,66059],[29689,34290],[27474,5620],[27587,-12271],[35990,-40702],[-53492,-38156],[-31675,-34339],[-12413,-37316],[6416,-35252],[33396,-58568],[105752,-131399],[40587,-78329],[46832,-64908],[32487,-34338],[32337,-21179],[46339,-15898],[59338,-695],[61855,15344],[46850,-16881],[133285,-67212],[13376,-24254],[116180,-82173],[14645,-14983],[-10123,-21059],[45222,-12991],[12034,-33546],[-93907,-53213],[-41799,0],[-124730,-83062],[0,-62482],[7984,-16857],[35952,-17337],[39565,2498],[70312,59960],[51581,50067],[6963,23100],[90408,42816],[44466,41687],[66962,-82341],[2347,-122898],[-20322,-84670],[-32242,-37460],[-12185,-27520],[-23520,-9676],[31617,-96317],[60891,-59671],[36424,-9775],[40548,-32560],[34249,-65892],[13793,-45289],[-2800,-38157],[-13511,-31768],[9878,-60490],[33113,2714],[70690,52588],[10162,-10229],[28383,13879],[46263,-69228],[-158431,-242964],[-43368,-29224],[-12053,-63130],[60852,-101791],[32317,-33258],[52810,-26269],[101118,-8645],[85676,-28072],[22386,-29392],[37463,-84933],[34343,-56456],[94022,-54917],[32962,-42767],[18240,-44953],[-4976,-27422],[-37314,-48987],[-58278,-43823],[-77750,-32754],[-48098,-8668],[-23841,14887],[-21950,55615],[14192,172869],[-17332,30208],[-77124,30738],[-48364,-83783],[-21173,-85678],[-18165,-19619],[-37824,-18057],[-77485,-23076],[-19376,-28431],[13018,-25742],[42120,-47163],[52640,-38131],[50558,-16929],[104145,-3818],[74475,-23077],[80228,1128],[60530,32202],[45053,-21708],[30067,2977],[42080,-13039],[7853,-16905],[-10293,-24588],[-36936,-13063],[-49346,-386],[-102953,-8092],[-45734,-8067],[-47531,-386],[-77199,-24204],[-53889,-31169],[-53586,-51484],[-28762,-46465],[-18429,-70286],[-2724,-79915],[13925,-64162],[28155,-62987],[78715,-94874],[31788,-21133],[124164,-29944],[97483,-31888],[88403,-6557],[29971,8861],[11258,24638],[-5505,61810],[-43917,69900],[-36331,36428],[-29366,41495],[-17672,63154],[4031,84046],[18164,30736],[20586,11910],[59037,11911],[71144,-6916],[108988,-27686],[67891,-32130],[30124,-21132],[67625,-69276],[21779,-32322],[52130,-49131],[80473,-3074],[11863,-8453],[-20283,-41445],[-23292,-22645],[-90748,-21755],[-48459,-36213],[-60323,-67788],[-10216,-28046],[-7646,-73745],[-9706,-27542],[10236,-48939],[-14304,-27519],[-5204,-38493],[27853,-3242],[59187,38590],[55099,73767],[72357,129094],[18165,26102],[37238,87576],[39677,26893],[15290,49300],[-170,68292],[52071,28048],[66908,-1152],[36178,-33330],[11637,-26536],[-3028,-43415],[-25639,-50475],[-65109,-88272],[-25733,-81067],[-3956,-39189],[1514,-220656],[15402,-110147],[33000,-113341],[36934,-77251],[16652,-22260],[43008,-9796],[53189,19593],[28724,20917],[46792,50954],[18374,32682],[22271,61186],[32487,122466],[21344,43704],[53757,59624],[43178,26150],[47493,-11983],[11411,-26606],[-1174,-45216],[-9234,-25742],[-98183,-140549],[-17257,-37891],[-21457,-82701],[-45355,-78595],[-12111,-32802],[8970,-63394],[-12658,-32994],[-22745,-19522],[-78828,20050],[-34152,-4827],[-13095,-23701],[5772,-48049],[17540,-36907],[43879,-40054],[66471,-22164],[102310,16617],[26339,9269],[58865,-3866],[75630,-19211],[78071,-4851],[60814,2234],[102724,14263],[67532,-24085],[26471,-26822],[23727,-62890],[-302,-61642],[-28685,-51267],[-45412,-35227],[4181,-38566],[14571,-17073],[24125,1826],[44163,20483],[82820,63322],[21191,28024],[36840,19354],[22783,-9221],[5165,-29392],[-21212,-36020],[-35042,-30184],[-103406,-73527],[-36935,-46273],[-9897,-38038],[21836,-43079],[53000,-24348],[51636,7251],[50825,27183],[80434,32010],[61477,11909],[42782,21324],[24824,31914],[8080,89448],[-12128,80731],[12090,72712],[25923,30520],[43444,31072],[35762,3842],[19810,-15152],[13832,-35131],[-1097,-70694],[-22876,-72327],[-5146,-35298],[15194,-38973],[14512,-78187],[41116,-47089],[64770,-32778],[56065,-3170],[38485,-11791],[11827,-26870],[-7834,-30375],[-32262,-48820],[-23973,-20459],[-49687,-10445],[-34324,16569],[-102763,91970],[-31448,13279],[-46150,-3506],[-46188,-31266],[-15365,-48481],[4656,-28552],[27966,-44039],[38145,-12295],[74986,20988],[37977,3144],[44503,-6818],[38620,-24830],[42345,-68701],[17578,-56767],[12867,-88176],[530,-63850],[11278,-26006],[21437,-10446],[26736,12198],[17788,21612],[20169,71150],[-5070,71367],[2686,50187],[17427,41135],[36575,18729],[83181,-33088],[24522,-27232],[57465,-26894],[37237,-36884],[16613,-37916],[644,-31386],[-23425,-54364],[-45110,-45961],[-36328,-17193],[-34458,-1202],[-47265,-12511],[-26641,-29176],[-10257,-40606],[7797,-53596],[20813,-52901],[2290,-31264],[-19963,-29704],[-74342,-16209],[-94324,2016],[-98998,46947],[-25999,-18683],[14115,-44785],[24448,-24396],[47077,-29632],[59754,-17985],[131846,-18803],[50179,5474],[32054,20652],[35213,39478],[10804,27062],[47645,60200],[52015,11695],[29310,24541],[137371,23052],[42782,-9005],[34664,-31048],[4067,-52229],[-24219,-52683],[7115,-93363],[-19168,-57631],[-44239,-78283],[-42724,-51652],[-35459,-55469],[-26396,-60970],[-15686,-52036],[9574,-31720],[42005,-23917],[58449,19065],[91790,94924],[52677,43439],[85204,79939],[39035,71631],[20209,20675],[29555,10351],[22119,-12247],[-737,-47979],[-22347,-38445],[-68572,-36500],[-49384,-41421],[-41004,-58327],[870,-56288],[26793,-35466],[36254,-17265],[133890,-42719],[29990,-30474],[120455,-69469],[17408,-74104],[-32166,-101863],[10293,-101502],[31277,-92930],[10540,-10183],[-588,-43391],[-11939,-78763],[12715,-25477],[123805,-16882],[63084,-19425],[22801,1104],[29138,19643],[2518,27374],[-35724,61498],[-47986,43391],[-55307,35106],[-36557,97902],[-2725,48362],[15857,28503],[50614,-7444],[46850,-15537],[40663,-26078],[34797,-72038],[31070,-47737],[45601,-32826],[30501,-8645],[62744,13711],[70804,46633],[31694,408],[13662,-48601],[-12943,-46009],[-34701,-30762],[-31903,2234],[-44636,-23268],[-73850,-68150],[-17541,-30856],[7720,-53213],[28913,-32057]],[[10825107,81213283],[-472189,337],[-75139,7106],[-504903,1946],[-908085,4803],[-40512,-1345],[-713307,-4682]],[[14267,80224404],[-1362,600853],[416,97036],[-3502,602535],[3483,308854],[-4144,345162],[2630,20723],[-58,359331],[-3141,84478],[1439,225962],[-1305,433722],[415,209994],[-1456,182833],[1627,82126],[38,298553],[-1968,164849],[2101,158510],[-1477,342280],[1288,88992],[-2140,802801],[-36,341562],[1285,105273],[777,397342],[-568,389587],[-2630,220534],[2082,292983],[-1023,266423],[-3538,133585],[4749,69638],[-7000,75881],[-1249,128396],[3500,421139],[-548,200389],[4370,74561],[-3159,162256],[2214,43271],[-1667,333372],[5413,23821],[-549,237272],[-4806,100974],[5316,61354],[-1304,319348],[-4693,136801],[321,130343],[3557,92282],[-4332,536282],[4200,431056],[-2251,691262],[-1855,214268],[1741,476009],[-321,606183],[-2139,449211],[4541,160814],[-4674,20220],[4314,137282],[-4540,56118],[4975,78955],[1495,170347],[-3481,69471],[-2573,169027],[3728,247646],[-4202,21827],[2328,78331],[-379,193040],[965,680600],[1646,103519],[342,281888],[-2404,348812],[1097,750911],[-1437,6074],[-493,663671],[645,293319],[2592,133224],[-3028,176350],[966,223250],[416,467556],[1495,663311],[194476,-3650],[155364,3362],[459701,3120],[22005,2210],[897358,2306],[604035,432],[285904,-1106],[688671,-696],[1014388,-2328]],[[10825107,81213283],[149689,-648],[102271,-28551],[429785,-2451],[38752,-2856],[94247,3553]],[[11639851,81182330],[115915,6340],[411165,-3410],[85185,1608],[391526,-4274],[359947,4826],[66111,-5883],[204525,4875],[380777,-408],[155518,-2258],[993062,1418],[204713,-2042],[135837,4154],[548765,-912],[15989,-7395],[12791,-58305],[19906,-17912],[14513,-31314],[-23445,-46560],[15006,-97829],[28969,-70478],[-11449,-54078],[-49310,-88368],[17465,-17793],[-9707,-42095],[3198,-33186],[-12867,-6460],[-1835,-48409],[-18543,-18059],[209,-45721],[-29992,-2424],[2158,-25190],[23425,-22164],[15062,-36236],[3670,-70646],[11523,-18490],[-6244,-24181],[10785,-16761],[-11996,-43583],[25829,-15585],[9062,-31288],[-11372,-17963],[11014,-44111],[22515,1584],[20190,-17673],[32185,-4610],[-11371,-20748],[8571,-30400],[37087,-36692],[18353,4370],[67948,-53069],[46131,-8571],[26055,-41976],[16160,-50210],[46754,-44376],[9292,-27088],[24238,-3578],[-9424,-20074],[6113,-24805],[-15913,-36717],[1116,-64306],[25676,-39214],[17729,-52180],[-19204,-1320],[6489,-18731],[-13944,-29872],[-27285,-3290],[-12792,-33426],[32413,-11669],[-20019,-20531],[30085,-46873],[28571,-3483],[-4276,-43248],[22234,-28046],[-5242,-33402],[9177,-22572],[-473,-50163],[23823,-73313],[14815,-61952]],[[16200488,79081556],[14797,-37100],[-6244,-34196],[13453,-20218],[6358,-39886],[83899,-41591],[9781,-20747],[26169,-17169],[14078,7228],[9895,-28888],[29595,-22739],[2213,-17577],[-24352,-21492],[35231,-34076],[43540,-2136],[-984,-28120],[-17862,-1848],[3784,-30760],[25204,-5980],[-18714,-28480],[14305,-19307],[32394,-1607],[4655,-44616],[39848,-9245],[16764,18753],[965,-46081],[15535,-15465],[-12470,-15079],[23690,-59864],[33624,-39334],[6963,-49131],[9537,-9125],[18562,-69588],[36198,-29874],[5014,-16761],[50614,-7299],[27985,-22309],[-9669,-33546],[29461,-36835],[16974,-57607],[33736,-36355],[13321,-28120],[3539,-45409],[-11126,-2762],[-82308,-81067],[-44258,-10181],[2081,-47521],[-39376,-22045],[-16026,-57582],[-37901,-2258],[13076,-30208],[-7209,-21805],[14644,-42911],[5128,-59312],[34703,-71967],[-16632,-7012],[37389,-48337],[62100,-5596],[11599,-13711],[-20662,-16905],[49138,-44135],[18071,-28120],[28723,-15609],[51448,-15607],[32374,-33666],[2063,-39887],[37882,-312],[13434,-52035],[23329,-7781],[10370,-41206],[-18467,-44233],[5013,-16399],[28459,-10687],[-8439,-47929],[27246,-16929],[41401,-56528],[34419,-99196],[22593,-2690],[-8439,-47377],[-20530,-17290],[4256,-21011],[38109,-25239],[-15875,-10949],[-26037,6748],[-22364,-14529],[19678,-13351],[965,-25477],[-26529,4874],[16614,-28936],[-21381,-20555],[-37143,17963],[-4183,-46995],[-30804,-38564],[30180,-528],[19792,-21012],[-16008,-23893],[-2592,-52828],[-43973,34747],[472,-21660],[-19299,-21635],[-10881,8188],[3046,-36860],[-54986,-46849],[-8572,-39909],[-24313,-18851],[-41419,-13471],[16973,-29320],[-12338,-1200],[-36783,-47643],[-13321,-34074],[-41779,5138],[7323,-32056],[-31524,7659],[-17351,-17025],[5128,-23652],[24182,-16761],[16367,-31578],[-22138,-80155],[718,-37677],[24920,-13590],[13795,-41447],[-4163,-44641],[-17239,-10181],[-16859,-46464],[-17351,-7925],[21250,-36331],[-13322,-50043],[19169,-17699],[12583,10039],[31996,-23126],[-4050,-22091],[14645,-40413],[43482,-5956],[8289,-24158],[-32357,20100],[-25034,-17962],[25147,-36980],[59603,4202],[36141,-27783],[39470,-72495],[-16481,-18851],[8876,-32465],[38562,-9966],[10539,-46537],[38013,-6195],[19754,-73312],[27948,-31385],[58998,-552],[29498,-20362],[6112,-16473],[-15232,-25358],[-19432,-92522],[14247,-20747],[65487,-18129],[43880,-40319],[12639,-54941],[20417,-28191],[28988,-11023],[37522,-57823],[30633,-21300],[28346,-2832],[-75253,-6340],[-245053,-528],[-206604,1008],[-332491,-528],[-130937,985],[-2821,5835],[-100417,-4178],[-200776,840],[-163123,2642],[-425869,2856],[-203955,3074],[-131865,-1561],[-10730,-941621],[-8778,-721541],[-66472,88152],[-46510,88848],[-36215,-19307],[-81741,22861],[-24636,13399],[-5109,33835],[-20208,-12679],[-77807,-82461],[-44257,-68222],[-66113,-124363],[-9649,-48386],[-34210,-80971],[-11657,-13159],[-52298,-25791],[-74230,4996],[-38108,-21469],[-31031,-51699],[-43198,-15392],[-29481,-51724],[34041,-33043],[-52356,10494],[-53852,50644],[-44712,23125],[-15251,-552],[-64029,-27496],[-46245,17049],[-64030,58352],[-33548,3865],[-12187,16497],[3557,50621],[-19811,36331],[-55402,15969],[-102687,-62722],[-21855,-17625],[-27947,-42360],[-33055,-24757],[-27985,-36284],[-40191,-14264],[-31522,-23075],[-39661,7755],[-14247,13207],[-17824,43512],[-41231,41879],[-33566,16545],[-64598,10493],[-46284,-4322],[-46263,6076],[-122630,31456],[-77597,45432],[-94022,35852],[-4844,44617],[16197,35203],[60340,57198],[13473,22020],[-6623,35803],[-46207,28647],[-41154,14769],[-21948,25862],[6602,41301],[31468,20893],[3500,16569],[-41041,22907],[-14759,26007],[3500,85269],[-36215,24783],[-53814,15392],[-36082,41254],[-12679,46225],[3046,23652],[19869,18730],[75327,35252],[28514,31937],[-25904,48410],[1042,41255],[-15667,144]],[[79490077,43484799],[-348063,-2185],[-66832,-9268],[-120398,8524],[-83596,-14792],[-424695,-240],[-115781,-5042],[-99962,4177],[-276238,144],[-196329,-3337],[-97296,3890],[-382121,408],[-146094,1873],[-516238,1802],[-53246,4802],[-59356,23676],[-37389,4203],[-131223,32586],[-243823,52395],[-369557,77802],[-52547,14481],[-172829,39862],[-191904,41301],[-309934,74369],[-292851,62985],[-298109,68198],[-118810,31048],[-14720,7661],[-220286,50426],[-140323,28768],[-39129,11023],[-553173,126500],[-5488,4802],[-100908,23413],[-528953,116630],[-226057,57056],[-49045,4513],[-91865,21229],[-20492,10012],[-54266,4396],[-331318,71461],[-229557,52012],[-9840,-1608]],[[69936086,51517499],[56423,-4226],[140342,1032],[1463227,6748],[172129,3721],[320325,-888],[103084,-5907],[24580,4803],[283124,-312],[17255,-1993],[611471,4561],[271639,4324],[299662,-170],[205866,1514],[143653,-1344],[284524,2161],[329029,-48],[880725,4658],[131448,-816],[203748,2473],[75686,-4274],[135441,3674],[114609,-865],[79469,3433],[220854,-2736],[168970,4945],[172224,1465],[386266,-3962],[391733,816],[337827,-792],[485509,11239],[89916,-3698],[333569,-1442],[73114,3507],[234854,4730],[105506,-4129],[334629,4513],[213418,-216],[135250,-2376],[58053,2232],[269897,-1920],[645775,-2281],[246208,-385],[9632,-40102],[31258,-18321],[61534,18345],[38108,49659],[64219,28551],[36840,3722],[48119,-23460],[23916,-33426],[8061,43392],[39206,36115],[35875,6699],[38922,-21371],[27795,-35923],[397,-35420],[-50198,-33931],[-90087,4131],[10465,-24853],[3197,-52252],[11183,-21661],[41475,-28647],[65696,-312],[14817,-11959],[-2725,-41061],[-35782,-84767],[-15250,-51603],[13075,-106114],[-2820,-29800],[-16744,-46801],[-22783,-19498],[-70842,-5355],[-18373,-17842],[-5033,-24997],[20114,-39262],[128742,-64211],[41551,-49586],[265,-55519],[-18334,-21059],[-63425,-9317],[-48061,18947],[-33170,-8309],[-76179,-115646],[-64749,-42359],[-8667,-36283],[5507,-67550],[-19092,-20266],[-109063,-60801],[-28686,-34242],[-36121,-85775],[-46340,-76266],[-11465,-52108],[13604,-57775],[11239,-14552],[78581,-57942],[33208,-37629],[9121,-51411],[-23123,-72064],[-46849,-39813],[-10181,-37581],[14495,-49274],[29896,-31073],[47928,2953],[57654,-22883],[13492,-44161],[-6453,-39476],[-36500,-75113],[-63482,-69038],[-75932,-3121],[-52110,45481],[-48497,10566],[-60491,-33571],[-30313,-43943],[-4711,-39142],[15685,-61089],[38392,-27399],[33870,-9004],[19318,-33378],[17295,-53142],[22650,-37075],[-6681,-50955],[-32071,-39095],[-37503,-24325],[-101250,19236],[-79792,54820],[-32489,-6314],[-21059,-18946],[-8591,-35444],[33208,-110556],[-4031,-48458],[-26849,-70285],[-2366,-22670],[17484,-52371],[49272,-46441],[4637,-39142],[-25696,-33666],[-37920,3554],[-31996,39430],[-21135,13615],[-21912,-11790],[-27871,-52468],[-11977,-55783],[1930,-41999],[20983,-34099],[80077,-63441],[45867,-58088],[50954,-38300],[16406,-28287],[-3142,-41280],[-15325,-24828],[-50749,-36115],[-21475,-40342],[549,-28480],[13775,-54246],[1949,-36452],[-16368,-24420],[-40720,-9749],[-22024,10446],[-53964,50691],[-54646,19521],[-32943,-14191],[-13037,-18058],[-6490,-36643],[11827,-38734],[53812,-86181],[13606,-55399],[-7039,-17457],[-38771,-5859],[-39131,23196],[-16764,31049],[-3898,35971],[-30861,11982],[-39148,44713],[-28724,3650],[-27304,-27566],[11316,-40678],[47436,-39094],[29101,-42790],[6736,-60057],[-35023,-70791],[-15119,-44424],[2517,-74223],[-15458,-66301],[7058,-27519],[44938,-14647],[36291,16713],[38734,43655],[32961,-8092],[1779,-31000],[-13190,-50812],[-19527,-42263],[-66376,-76649],[737,-38566],[20285,-32344],[35061,-8093],[44031,7611],[19564,-26341],[-6320,-28287],[-43310,-46393],[-39792,-25239],[-16406,21877],[-45468,34435],[-48838,49946],[-32922,-17505],[-8969,-41687],[-25885,-16689],[-16216,20916],[13000,63778],[-21515,21467],[-38222,-19041],[-16536,-20965],[-11959,-38396],[9214,-77106],[44278,-61953],[-1742,-27327],[-30313,-2762],[-89064,-84813],[-11258,-25598],[4995,-83901],[-10727,-17673],[-67058,-46803],[-25885,-8763],[-44579,11166],[-40058,74559],[-29593,1706],[2667,-24037],[78299,-106282],[53226,-36355],[9895,-34483],[-16517,-52541],[14645,-39308],[27473,-1705],[24125,18826],[8062,39740],[12677,11647],[23955,-6171],[3897,-35444],[-13169,-38780],[-19016,-26391],[-66018,-29752],[-53681,-30521],[-26074,2883],[-16934,37941],[10350,51002],[1191,42432],[-60833,61569],[-25108,11550],[-44333,-27494],[-6321,-25143],[-31617,-50139],[4200,-78714],[32338,-66491],[7474,-35301],[-20115,-47545],[-49612,-46994],[-31694,-19546],[-34929,25455],[-13151,55997],[-21380,9702],[-27834,-20555],[-16879,-65268],[12489,-47114],[28931,-41013],[14569,-64955],[-6811,-53886],[-17730,-59720],[-15478,-15921],[-37143,-11118],[-17123,36789],[-6206,50762],[-17636,15873],[-20586,-8764],[-8402,-53694],[40719,-41782],[5867,-62986],[35269,-53428],[19585,-42792],[70992,-46393],[9196,-31770],[-23557,-38996],[-19016,-6820],[-58979,11143],[-42422,-17530],[-4541,-37605],[16406,-27686],[45108,-34604],[44353,10734],[21456,20579],[17390,36261],[42233,30112],[12488,-2113],[9195,-32347],[-62744,-160526],[-1929,-42551],[14096,-65340],[-2175,-28407],[-14948,-18994],[-53379,-38108],[14645,-40990],[30730,-4370],[66036,65147],[50691,14864],[66717,-14840],[13038,-28048],[-17050,-31889],[-42138,-16496],[-53661,-4971],[-38147,12655],[-63557,-24349],[-85204,20890],[-35969,-2329],[-30635,-17097],[-23860,-28744],[-3500,-18921],[16329,-31121],[28590,-17145],[26245,-1441],[53757,19570],[32109,4682],[16368,-26101],[-7419,-23126],[-38770,-21058],[-65430,-3386],[-42745,-12319],[-20208,-34410],[11618,-24109],[30766,-11143],[46038,5308],[64257,33186],[34665,10636],[19338,-6003],[4995,-35634],[-53018,-61353],[-46473,-34123],[-7984,-28551],[26074,-110148],[0,-23605],[-26093,-21947],[-71657,9844],[-28098,14024],[-20965,22861],[-30559,80395],[-27588,10350],[-27738,-9581],[-3161,-18730],[30030,-79819],[15648,-115264],[-13000,-39116],[-16555,-19954],[-61439,-36285],[-27852,-23892],[-4977,-27039],[13794,-37677],[43917,-39524],[35478,4849],[45752,34339],[23595,-2570],[40247,-99268],[76,-36165],[-10408,-23123],[-29309,-27160],[-5507,-28359],[13681,-28984],[33227,-33042],[6944,-32945],[-24958,-14240],[-63918,4347],[-40207,17434],[-35422,576],[-16027,-21107],[-15591,-55951],[7549,-24062],[23880,-10877],[50350,-6532],[65525,42264],[13718,-24903],[-26924,-62602],[-52982,-58614],[-12772,-55566],[17446,-21277],[26206,-4322],[42385,12127],[10634,-35130],[-12658,-18442],[-73548,-11214],[-19169,-18370],[-35459,-70816],[-51126,-49177],[1249,-20892],[39206,-31553],[24845,889],[27852,23123],[9442,57537],[23727,36690],[18903,7397],[27095,-17601],[6151,-31361],[-15667,-66013],[-16387,-23580],[-52999,-52133]],[[11394231,71801327],[2156,-177455],[1458,-311738],[-928,-271033],[-1835,-154884],[8949,-434995],[-2042,-45121],[-9802,-605055],[-2839,-283640],[9310,-42816],[662,-118720],[-11656,-468085],[-4256,-226105],[404410,1849],[81799,-5211],[323048,-1009],[352925,1465],[97410,-1441],[387362,913],[297637,-1993],[6340,-204616],[8306,-174405],[-2081,-174670],[-1628,-321294],[-12677,-345739],[-927,-336470],[19262,-153611],[-8232,-64451],[7153,-30185],[-4635,-414920],[11258,-573861],[4900,-400656],[6018,-63996],[-4731,-73262],[-3766,-426760],[-322,-130677],[4447,-340288],[487704,-10351],[377052,-3121],[522822,8885],[39754,11262],[159415,-10997],[65204,-433],[255234,10253],[4276,-917536],[3122,-51483],[-1286,-301772],[37,-275523],[4372,-787891],[-1647,-462514],[-4371,-634975],[1911,-485638],[4144,-256890]],[[9287253,55956897],[-39131,-13975],[-119697,-56120],[-58658,-52203],[-104919,-65748],[-62026,-72663],[-82101,-143525],[-38505,-27591],[-82177,-13303],[-76197,-31001],[-29026,7491],[-163596,190088],[-34399,36931],[-20227,37844],[-16746,75257],[-14720,40559],[1267,60848],[12470,77682],[-6661,129093],[2612,139155],[-3463,29489],[-31050,30329],[-64032,74416],[-5241,27159],[43426,63634],[22080,45120],[8458,33883],[-8268,67667],[2119,53262],[10690,16257],[141174,65843],[13397,36403],[-11976,18850],[-66056,50019],[-4901,18419],[48590,72926],[9688,36597],[-11599,26798],[-28476,11310],[-61779,-37796],[-101779,-38445],[-32395,2209],[-19394,25838],[-17654,73528],[-33794,12895],[-75308,-17049],[-26548,8620],[-7209,18418],[33360,72400],[5430,34289],[-16802,63827],[114,39142],[15760,53836],[-5070,19018],[-68213,50020],[-30841,52204],[41722,25406],[99602,34723],[6509,29464],[-27586,31409],[-568,46921],[28192,78163],[-8704,35874],[-17861,23846],[-50200,36234],[-36424,43393],[-4446,27735],[2365,98116],[-15042,21131],[-37635,938],[-44636,-10998],[-145413,-20460],[-43633,-1177],[-85640,-19594],[-53396,8285],[-26680,41349],[-5847,129239],[-18940,52804],[-34381,56431],[-30180,73695],[-26376,10734],[-39547,-11839],[-56065,-31865],[-36120,-26917],[-31808,-2691],[-11353,11574],[-49233,106931],[-41875,76169],[-28231,71343],[-38959,54845],[-24162,71775],[-16709,17169],[-70369,40919],[-36141,15511],[-94626,13255],[-59035,-2041],[-50314,59625],[-20018,49898],[-11751,59433],[7342,54509],[18071,31674],[48722,59767],[9518,83758],[24938,36379],[28402,17217],[83180,24254],[45885,60129],[6585,29848],[-18583,43511],[-47321,64884],[-5754,20915],[14040,23315],[37542,28504],[32374,39310],[63066,92954],[13302,32634],[1836,106401],[-4352,66660],[-11544,92570],[20967,58640],[82990,31793],[117672,30833],[93266,35922],[99659,23558],[33529,21875],[18448,28000],[-1684,67043],[16197,61521],[31902,28073],[24259,35370],[35931,80803],[-5581,25358],[-34664,-3265],[-36292,-35827],[-29159,-8093],[-44807,11599],[-19791,-6100],[-71296,-44351],[-119547,-51941],[-100247,-16593],[-68723,-17793],[-33984,408],[-36518,18993],[-43956,59097],[-9688,29008],[3786,25790],[22971,5355],[45902,-17001],[16235,8787],[2820,43440],[-8648,109979],[-13964,238930],[-27662,148111],[-46793,103953],[-46131,25261],[-90825,-16545],[-74362,83014],[-53907,78306],[-41477,43920],[-53094,29055],[-51730,38205],[-38392,6891],[-70313,-8283],[-61837,37147],[-472,49058],[8401,48723],[-6641,42022],[2517,52758],[32638,35323],[35989,102246],[159321,301676],[-530,57751],[-11600,11549],[-282518,35517],[-24769,11238],[1818,23292],[106812,260205],[-3085,39908],[-51012,31217],[-47266,-1128],[-4504,-19234],[6415,-61017],[-17843,-15465],[-32034,6941],[-37352,34218],[-37503,61954],[-21399,11861],[-18620,-10613],[-61684,-80539],[-17729,-7325],[-88515,34026],[-92792,62674],[-123956,130103],[-71901,71558],[-144032,67669],[-5658,49395],[24618,97516],[58146,79531],[-2669,54654],[-17804,34387],[-28762,-4322],[-41249,-56048],[-38127,5692],[-14948,51844],[11372,24733],[73699,57079],[63199,12511],[42762,-44640],[18885,-5811],[89423,26053],[13529,25311],[14116,73984],[32714,-3242],[49803,-32370],[32790,15560],[46661,42047],[37598,41399],[48514,32946],[11770,21226],[-4995,31553],[-34873,34435],[5430,90697],[18278,35324],[36008,5115],[37598,-21828],[34418,23124],[-11182,49370],[-37805,44856],[11882,42072],[33888,12055],[49310,1656],[62082,59769],[6737,36235],[-27323,28816],[-63690,20794],[-104145,-9100],[-103256,5043],[-62819,-2065],[-52319,-12511],[-84655,9917],[-62630,31048],[-28571,7493],[-31940,24157],[-13151,26702],[13302,11455],[32299,-19499],[31031,21371],[-6755,35443],[-27000,78572],[-5167,80179],[-15458,24756],[-49688,4178],[-25204,23558],[2460,52901],[-20587,-1394],[-35270,-25837],[-32280,-48242],[-28856,19426],[-24333,37964],[-34059,16209],[-30483,-16041],[9423,-55661],[65904,-27567],[5109,-25815],[-19357,-12847],[-97994,-20723],[-137239,3578],[-119376,18035],[-53358,13038],[-83086,192],[-79338,13879],[-50312,33186],[-49405,82342],[-139225,77730],[-22176,19378],[-7153,78234],[-78581,17097],[19451,46729],[46112,27304],[6774,26581],[-18523,11334],[-53398,4155],[-94003,66300],[-22137,35538],[-14664,48387],[-70446,16280],[-44352,47618],[-42858,54919],[-41287,81523],[-6490,54030],[51921,-7373],[26094,36260],[2346,33859],[-11050,24204],[-77958,-9508],[-25071,53260],[-1305,53212],[14153,16906],[57919,2306],[14172,16088],[-643,32250],[-34721,46033],[-59225,50907],[-70974,83973],[-60796,21084],[-86187,164656],[-16784,125756],[-46509,78283],[-21818,107841],[2914,18755],[31334,44303],[-28836,41159],[20304,78162],[31277,28983],[62460,24879],[6074,41109],[93283,139299],[37806,-15392],[-8251,-24180],[-29801,-33786],[14796,-15345],[58771,32922],[25261,7227],[57900,-9796],[16367,10444],[-1325,49155],[-63709,46081],[-71940,24326],[-22971,17793],[25355,26559],[39283,-17818],[57255,19235],[57200,4729],[16406,20917],[-8060,29848],[5240,34170],[-11883,16041],[-38694,17697],[-19679,28912],[-2799,29680],[16197,38564],[27720,20339],[37823,7541],[10842,11814],[-12053,33378],[-27815,45601],[-1323,30064],[33359,58543],[-23180,71007],[3576,32585],[-12716,62842],[758,40895],[36234,24204],[54646,-57846],[32508,22667],[-3142,45001],[-36726,38829],[-64447,48],[-26452,13230],[-34930,60153],[-20776,63058],[-21570,37053],[-59604,68892],[-9044,26199],[-6111,115406],[62309,143453],[27378,25598],[30522,-33785],[50784,-9751],[8856,-26773],[-7852,-44784],[13642,-27759],[15460,1152],[64351,52516],[-1570,39742],[-58902,51267],[-12414,31817],[24371,29656],[47077,9846],[12091,15105],[16936,53115],[77502,41424],[10162,35106],[40208,33306],[-19149,48122],[6054,17842],[28629,15489],[167419,342521],[1626,29871],[-11504,39742],[-44220,15368],[-182404,-67284],[-71239,13856],[-8516,17265],[3974,48098],[-21836,35298],[-77295,-2040],[-11862,30448],[78676,135674],[5183,33738],[-34494,146454],[-11750,162545],[-10463,26005],[-46528,29320],[-80134,40415],[-45450,41350],[-44011,76817],[-90691,190135],[-67343,41349],[-30785,70479],[31222,64163],[68344,41999],[13490,48362],[15971,30953],[4616,65410],[43141,6388],[3748,-36380],[23425,12584],[-1249,58423],[-21136,41974],[-34266,-18754],[-9235,21852],[14721,34243],[53983,21106],[11884,15873],[4086,50116],[10294,28622],[27153,39287],[10123,35394],[-15990,36956],[-41210,43151],[-34627,20316],[-76897,-19956],[-30370,14696],[-2308,14912],[45280,22838],[-16708,43702],[-20607,9653],[-64483,-19905],[-27702,7923],[-8534,30376],[6925,39046],[26623,20146],[9404,28433],[-34475,51074],[2649,46441],[36765,112790],[-6225,28839],[-46756,55519],[-17597,55901],[-67153,8309],[-62366,32297],[-16499,-51867],[-10823,-5428],[-72830,12367],[-22213,23005],[-16538,35996],[2630,68677],[-22383,28430],[-44789,34412],[-44957,24756],[-22063,57656],[-17067,18754],[-112300,72495],[-22044,-1512],[-44559,-35300],[-20966,3290],[-24711,23197],[4598,33281],[39603,13568],[-380,61137],[-6583,19354],[-51372,21036],[-15819,29992],[5979,80300],[-2365,101573],[-49765,47186],[4144,32441],[16216,25071],[37314,31865],[23993,9894],[-549,17025],[-31997,29392],[-2706,64619],[-31371,26198],[-51145,6651],[-26662,-10975],[-25013,16665],[-10804,33210],[23329,15609],[41457,912]],[[71589191,31415760],[342556,145016],[405509,147583],[285262,89353],[504375,143045],[423199,104216]],[[73550092,32044973],[219454,-230332],[92223,-63779],[599153,-298361]],[[74460922,31452501],[-55138,-705718],[-157805,-2375219],[15743,-163095],[-26075,-27759],[-10823,-85199],[-9821,-9412],[965,-66613],[-42042,-582218],[-15914,-231198],[-16122,-283304],[1704,-51605],[-24352,-55997],[-9235,-37388],[-68799,-152290],[-10330,-96],[-116444,-259821],[-14267,-40919],[-45884,-83828],[20813,-228124],[-5677,-324175],[13246,-146454],[115421,-139276],[95478,-51532],[43105,-15848],[59149,-13543],[81438,-10303],[22914,-11982],[62139,-5354],[114854,144],[52773,8139],[66092,28239],[126774,40823],[58658,26415],[104068,38419],[263029,117641],[81364,62434],[92715,98452],[62443,105658],[22515,182763],[-10690,175751],[80776,-96292],[4655,-22333],[31108,-29921],[86982,-103879],[83842,-106161],[80473,-93002],[240758,-290126],[153001,-182907],[87871,-113461],[104163,-125059],[1742,-32849]],[[78405225,7201058],[-2510158,-479419],[-335500,-237080],[-104333,-77082],[-262595,-295600],[-173795,-169627],[-197901,-190640]],[[74820943,5751610],[607,733957],[-96,908386],[-16443,25743],[19301,51915],[8818,50283],[24844,80901],[15496,30928],[3179,32418],[-10162,16977],[-4521,50522],[-21476,42336],[-43104,38972],[15459,28071],[70274,30713],[20267,35611],[-32848,47186],[14172,30232],[37880,10566],[12641,20603],[4162,41687],[18656,28504],[33606,32705],[56727,36067],[33055,43728],[32773,-3649],[23936,21826],[15439,52422],[18430,29680],[84561,66083],[31220,-1128],[46963,41061],[-23064,8646],[-10539,39548],[3404,80396],[66321,200869],[33359,141196],[26699,96364],[15307,37051],[55876,96100],[69858,105849],[38694,67142],[85885,174358],[13151,33305],[36652,66372],[82574,125636],[38846,63970],[26849,58592],[28156,100903],[30444,42046],[55593,28479],[111295,42551],[86322,42264],[30331,32057],[84579,172966],[39282,67307],[43879,59312],[35799,56528],[65109,113820],[21079,82293],[-5770,76577],[-21950,52902],[-21229,82723],[-34211,77226],[-58751,71680],[-68137,46993],[-98317,55421],[-109556,74321],[-64240,59769],[-64541,86517],[-29006,59288],[-15309,66589],[9103,140548],[1285,76770],[-13130,87334],[-17031,56479],[-38259,43968],[-38694,29464],[-10388,52997],[14436,97996],[-1001,32393],[-17049,67838],[-6641,73863],[4767,53958],[13434,54772],[28289,53646],[32904,48457],[52981,108899],[14437,57536],[-9386,67644],[-34342,53262],[34929,73526],[-20492,44881],[-58903,93530],[155763,480452],[84011,364397],[-32033,64571],[-130502,17506],[-157787,107218],[-85754,170060],[871,58927],[24958,18010],[63235,28864],[-9668,23219],[-56595,35395],[-38978,48723],[-107835,70670],[22517,79795],[-3179,45120],[-26982,25839],[-43463,5955],[-54854,-6603],[-135990,-56167],[-24106,888],[-127909,51940],[-103217,90505],[-61344,24182],[-43747,-5235],[-101912,-81933],[-53265,-18586],[-123293,-7395],[-358451,102366],[-205413,108611],[-193018,140284],[-43880,26751],[-26567,48169],[-24389,61786],[-29025,155412],[-10824,79843],[-20209,77297],[-21078,62794],[-29441,68654],[-86776,108731],[-13283,26533],[-77521,110868],[-37956,74657],[-45470,69806],[-24692,55277],[-37956,60105],[-62670,124891],[-19053,60009],[-34210,88801],[-17181,71989],[1872,19212],[-17162,59984],[-22969,52805],[-37957,40726],[-92963,35779],[-66414,6987],[-66396,23822],[-26566,16713],[-41722,43103],[-41874,86158],[1742,59960],[-5773,40751],[24674,69613],[88932,108154],[64239,38518],[51107,21706],[102026,31385],[163936,2330],[79566,23269],[63500,43464],[13095,36283],[-38,50859],[-52546,50907],[-75308,45409],[-11712,19403],[9479,33066],[31354,45145],[121116,89351],[91978,57943],[7247,51628],[-11693,35540],[-40247,66252],[48175,44304],[7267,58928],[-13909,25837],[-70141,38878],[-11714,30712],[75876,99101],[19679,58881],[-13907,25886],[-23369,48],[-59130,-32970],[-27039,14576],[-2232,42790],[13093,56479],[-10237,21827],[-44655,50981],[-7360,36355],[-14778,127700],[14911,141245],[14153,82461],[5772,111708],[284,77202],[-8232,62218],[-25525,72806],[10104,77418],[28004,93891],[42877,46561],[27569,51028],[5922,66228],[-9517,48361],[-43748,103617],[-2460,68844],[7797,69279],[33926,126380],[-57446,552],[-38563,-14720],[-62498,-120],[-28287,21515],[-47361,76769],[-18902,40751],[-22820,19162],[-105961,-9773],[-83161,-24060],[-58733,-36020],[-54872,7156],[-30313,23989],[-39829,64763],[-45450,52779],[-17010,64835],[-34136,23990],[-26413,-19186],[-41666,-96],[-30217,-28696],[-43463,23988],[1892,50429],[-444356,4994],[-39413,5138]],[[72189611,20096478],[319188,923924],[169198,484222],[99603,226129],[78392,181634],[267494,611035],[119093,267024],[51940,41638],[8988,34339],[-26567,100086],[-1872,57199],[53698,57198],[12414,26294],[-8232,48507],[-44882,53141],[-40719,73407],[-17900,67886],[-171070,3529],[-1096129,827150],[-28004,150875],[25262,69516],[-4467,38350],[-29896,24540],[-19186,68894],[-435,94155],[-11127,15585],[-46470,28671],[-55005,61185],[-40720,69565],[-65960,47690],[-32772,100711],[-61931,80923],[-39566,8477],[-13851,12750],[-35514,3891],[13869,39477],[-13586,23533],[-26548,10037],[-2743,30832],[-37541,47402],[-35950,115864],[-70162,301385],[-4030,68198],[-33359,374098],[-49082,503936],[-25980,151330],[-14437,111588],[5204,113389],[-3027,52133],[718,317763],[6056,153010],[3897,24687],[2309,159758],[-4618,157068],[3179,237512],[2593,469791],[4465,233790],[29631,107242],[33908,504175],[5393,261406],[46338,174526],[9500,279871],[58069,284025],[50635,326338],[27776,257850],[62140,260662],[41968,206486]],[[79490077,43484799],[-17332,-54724],[-19925,-13616],[-40133,336],[-28438,19330],[-15290,34388],[-23690,-4996],[-23083,-20746],[-20948,-46585],[8288,-28816],[28099,-15200],[43350,-1777],[38070,-12368],[68704,19547],[30465,384],[6943,-22547],[-9253,-59073],[9820,-47545],[-11844,-72184],[38128,-1465],[25978,32466],[22801,77009],[19357,15009],[33188,3385],[27152,-32417],[27418,-64403],[9536,-69564],[62802,-9246],[29876,-14384],[13416,-18154],[-2005,-25766],[-18923,-35875],[1307,-28480],[20358,-8475],[32622,27206],[34059,10949],[10539,-42045],[-49935,-37005],[-10405,-60753],[15591,-38636],[23973,-15296],[33492,-5548],[78089,24134],[18202,-5956],[21060,-35732],[-7209,-25308],[-113037,-86856],[-7361,-32705],[4768,-55735],[-43027,-78955],[-6339,-53043],[-16178,-33811],[-48799,-23077],[-58884,27832],[-17768,-13544],[-719,-49826],[-9234,-51148],[6490,-18923],[28724,264],[15307,25430],[67986,12031],[42024,32490],[28289,-16953],[870,-33883],[-27152,-54558],[-4314,-44472],[6206,-57342],[-24542,-54270],[3311,-28456],[38260,-17025],[21647,16929],[60208,21733],[43311,-7517],[14853,-24590],[-13698,-27085],[-45186,-24446],[-49819,-1105],[-36652,25143],[-16179,-3242],[-2458,-25982],[25695,-45241],[28590,-29513],[46056,-21922],[46735,-37125],[14646,-25021],[-8988,-43103],[-17748,-4034],[-42592,16665],[-31619,1752],[-13416,-36019],[23236,-65388],[43729,-29104],[26282,-2329],[43311,17217],[15876,-23532],[9688,-112068],[41721,18994],[31031,5690],[10672,-13687],[-24390,-43943],[-34644,-17987],[-27569,1009],[-31769,30953],[-26415,9989],[-19339,-17456],[46775,-87385],[36803,-28862],[27436,-5356],[11107,-16809],[-5053,-40798],[32489,-72470],[17314,-69327],[-27135,-91753],[6793,-16761],[33057,-6627],[93378,42191],[63388,11621],[27285,11166],[34796,-5042],[17748,-23581],[-434,-35539],[-27569,-15920],[-5544,-40367],[18543,-14672],[32620,-6771],[25261,30977],[8042,65506],[-7664,35348],[54192,17170],[31902,-31842],[-11827,-56598],[-36518,-40823],[-28155,-46657],[-24410,-14840],[-40984,816],[-44466,-22811],[-69007,51291],[-24692,2017],[-33057,-39837],[-10672,-37413],[-585,-38060],[14152,-22453],[62498,-7155],[98071,-20627],[19585,-43127],[25127,-37413],[16878,-62794],[-8363,-50019],[-21363,-22811],[-46641,21491],[-22082,17913],[-40701,-29320],[-20358,-3122],[-10106,24567],[-41438,39740],[-27001,-14000],[3425,-21106],[65735,-39598],[14228,-15249],[30596,-1921],[79036,-30544],[79830,-25381],[76520,-12727],[43726,745],[34798,14191],[23823,-864],[20208,-16401],[29744,-62338],[12262,-52253],[42724,-15584],[11997,-28936],[-40757,-41517],[-21760,-54991],[10975,-14696],[31900,4900],[14002,-9342],[4921,-37388],[19186,-12318],[58751,-14648],[15025,-12104],[2156,-28671],[-37085,-13543],[-9386,-43607],[37238,-11454],[246,-17145],[-22328,-12535],[-3047,-20940],[17332,-18635],[-10823,-29872],[-40131,4876],[-4770,-23726],[35669,-30520],[42005,-19091],[-3462,-33377],[18466,-50259],[-2023,-29344],[11844,-15176],[37540,25837],[23387,32298],[23955,9052],[50957,-6674],[8078,49827],[23104,27158],[22706,-3915],[114,-43726],[-34078,-40030],[9102,-52925],[-32924,-28455],[72469,-59816],[37048,14456],[8857,-12248],[-26131,-44064],[-49803,-5810],[-1721,-43104],[16311,-10446],[61646,28888],[15005,35828],[13567,-12823],[-10672,-50259],[-13586,-23293],[22820,-27664],[568,-24156],[-20493,-11070],[-47777,12583],[-16027,-8237],[-10690,-41133],[14758,-18684],[53095,27063],[21134,-5018],[26681,31385],[40094,23220],[41439,-22139],[4919,31145],[12620,-8310],[-4067,-53164],[21532,-46969],[21250,15969],[26773,-625],[15876,-33522],[-15725,-18490],[626,-37605],[-75043,-26725],[-10804,-28504],[45656,-12919],[34931,24324],[17520,29440],[16802,1993],[31940,26415],[32660,3698],[66434,-29248],[30236,25742],[-16425,-49370],[12149,-29560],[13187,8067],[37295,-14406],[16745,-17075],[-7511,-21851],[12262,-13376],[34078,6317],[9669,45528],[16176,13279],[30881,-21467],[31334,-48794],[27417,-21829],[10843,-44831],[-18846,-76362],[-28817,-4371],[-7191,-28046],[22365,-24134],[17748,4994],[16897,33380],[28724,-266],[7512,-26965],[34513,-29320],[21362,-68894],[47928,-8644],[23803,3433],[23105,17938],[23387,-9893],[26717,-48915],[-12564,-60536],[37522,-7877],[27340,-23197],[7816,-30111],[11769,-101192],[-29744,-23987],[5599,-19188],[51070,-16761],[29953,28984],[44598,-18273],[64051,-36764],[48116,-54966],[40227,-17169],[17769,-17649],[-10484,-44160],[22367,-30593],[2175,-24686],[-19053,-40125],[14853,-12079],[44900,16113],[12281,25502],[12413,-10374],[284,-35971],[41438,-24830],[-9253,-41663],[3330,-29920],[-19055,-58351],[45035,-24398],[-1590,-69997],[-44466,-56838],[11409,-67501],[17617,-38349],[-6925,-43512],[42441,10998],[24239,-22619],[3462,-47354],[-15156,-86351],[3330,-17025],[34211,-14239],[-6490,-18610],[-35517,-23174],[2309,-32970],[27852,-57199],[-5904,-51627],[7209,-10301],[33208,768],[-436,-22477],[-24824,-7707],[-7228,-32201],[16746,-54366],[-35933,-54413],[-25562,33162],[-19206,10493],[-24957,-12126],[-4637,-17651],[24541,-17673],[6358,-29224],[-26414,-30592],[8798,-74416],[17616,-12702],[18185,-45385],[17048,-14000],[33491,-5282],[-4618,-54871],[37088,-52708],[3462,-50668],[10690,-45745],[13434,-20747],[41287,-3529],[9367,-68965],[34796,-66277],[2461,-46945],[19053,-62722],[19925,-33882],[45468,-32897],[50825,-17025],[-31336,-31553],[-2743,-23006],[30900,-1008],[20927,-15465],[-28289,-18369],[2876,-13520],[35081,-24372],[33643,504],[16310,-22717],[-45903,-28215],[65110,-46201],[132,-39212],[10823,-20748],[-47493,-80516],[42156,-15440],[-11976,-38180],[22232,-27904],[1590,-32609],[28438,-19138],[-12127,-30280],[10255,-18082],[23235,6219],[21078,-12512],[14287,-43007],[22081,10134],[-4900,30640],[24976,-1512],[21362,-47305],[52830,-22596],[27872,-25406],[10973,-37100],[-3764,-28407],[9253,-29080],[19053,1321],[31902,23051],[14721,-14168],[-9386,-28886],[5640,-20388],[37824,-7179],[41136,34578],[22668,-8357],[-2025,-55853],[6055,-23318],[37389,-24012],[11259,-45696],[24408,-29777],[44900,-3481],[7930,-28024],[-18469,-24662],[9235,-58326],[-4901,-50933],[-27001,-65555],[-16613,-54052],[9972,-27471],[34494,5306],[25694,-8140],[1458,-33066],[-32054,-16906],[19055,-73334],[-8516,-20749],[-18183,3723],[-22820,24180],[-18183,3602],[-14872,-17073],[36954,-26293],[43462,-64476],[59320,-48746],[1456,-38108],[-22535,-15296],[-20644,-34843],[-53263,-58495],[-34211,14071],[-14437,-5644],[152,-34218],[-106984,-23892],[-24390,-36597],[-9820,-54004],[18903,-52686],[8230,-90263],[-4616,-49971],[-29310,-43680],[-94267,-45000],[-10388,-30641],[6358,-28023],[26414,-26872],[45621,-12702],[86320,11550],[11409,-9244],[12848,-65605],[117939,-127605],[16896,-74200],[-18184,-74512],[-19053,-49587],[1003,-69804],[27569,-30641],[23671,-456],[70311,-33522],[9821,-16281],[1287,-40894],[-16878,-28721],[-24410,-5450],[-56726,1753],[-29745,-47041],[8383,-77082],[29876,-47641],[62083,-75833],[68856,-53141],[80983,-23677],[41572,-19186],[24541,-21613],[24541,-52827],[5639,-31217],[-3765,-43201],[-24391,-96099],[-9517,-52804],[-22536,-187325],[1893,-45625],[20643,-57655],[28439,-45625],[49082,-60033],[20776,-16808],[56595,-24062],[77371,-9604],[43462,-14432],[86908,-103329],[18901,-31241],[56596,-122610],[49082,-76938],[30312,-67284],[28288,-125035],[22669,-50523],[94551,-141892],[73623,-74609],[30331,-24038],[62347,-36090],[34078,-7253],[54854,11958],[94419,38398],[102063,55133],[41571,26391],[71883,81571],[33927,57560],[39698,35947],[39715,26343],[64371,28719],[52982,9485],[71902,-12174],[47342,-26510],[35931,-48098],[52980,-98623],[15025,-60079],[20945,-45673],[34930,-107962],[38393,-94947],[93982,-257540],[40134,-67908],[67606,-27495],[306984,3193]],[[83601288,31177625],[-19,33882],[-77069,28527],[-215233,51435],[-66472,4708],[-121551,-6845],[-93965,27832],[-63748,51075],[-31617,48001],[-47059,55616],[-34720,25164],[-290825,164394],[-56444,28599],[-40983,12367],[-50086,3362],[-47210,-9438],[-40586,-20506],[-29216,-27736],[-34777,-70983],[-31392,-46080],[-49347,-36788],[-106340,-56958],[-111277,-55758],[-43766,-18466],[-49479,-10855],[-50824,6435],[-59453,28216],[-69688,59312],[-131674,164562],[-69083,75472],[-80474,51124],[-57749,16785],[-48705,-9630],[-36669,-29200],[-70522,-91898],[-74493,-72326],[-372018,-231461],[-406795,32489],[-386152,413984],[-56216,48146],[-522427,241978],[-336842,32514],[-470335,116511],[-129234,37484],[-101078,19547],[-981691,-414872],[-134816,-53212],[-230523,-71799],[-548330,-316491],[-88325,-32203],[-158109,-46369],[-132035,-42069],[-319246,-68654],[-556180,6844],[-243258,43248],[-302651,95403],[-181590,90457]],[[73550092,32044973],[37920,210857],[4125,122130],[-16651,142157],[-61704,449715],[-46565,149097]],[[26983078,16136763],[-145090,28792],[-143124,33378],[-241137,79171],[-52734,12510],[-335291,104194],[-395575,149937],[-346607,133271],[-75344,49899],[-105261,41495],[-101477,53956],[-161629,66421],[-214250,78859],[-157863,62265],[-48873,12439],[-319491,145278],[-157164,90409],[-142537,65460],[-441270,215204],[-54740,30208],[-143671,86854],[-106057,71728],[-188136,83084],[-318129,177457],[-345510,181248],[-507250,260517],[-414535,226540],[-335745,196354],[-186793,107745],[-167533,90793],[-216973,124075],[-236199,121050],[-244428,118024],[-200476,90792],[-221363,91994],[-37313,17602],[-282386,120376],[-175782,57488],[-247174,87768],[-236197,69612],[-196104,65844],[-418225,186245],[-543788,213907],[-214268,30737],[-105336,24398],[-110842,33930],[-126246,54292],[-120077,33932],[-144711,61088],[-369482,111973],[-258640,57678],[-251336,44641],[-153720,32081],[-333909,21661],[-332528,10180],[-190901,-6795],[-203218,-33930],[-153945,-40703],[-40038,-91633],[-73890,-125540],[-92375,-118767],[-101608,-101791],[-135480,-98405],[-120075,-67862],[-87741,-33954],[-147796,-44112],[-183786,-20218],[-80303,0],[-111750,7707],[-125715,26966],[-87286,30809],[-90805,38518],[-83804,46225],[-97768,65459],[-101269,88584],[-128629,144438],[-217447,32730],[-325034,45048],[-318678,36499],[-1040613,-17265],[-507856,-64666],[-556693,-75450],[-459019,-96988],[-371127,-53886],[-693440,-86205],[-383275,-44040],[-404848,-59577],[-388649,-71463],[-469615,-107217],[-210522,-59552],[-517090,-195394],[-211713,-102559],[-88761,-71222],[-80721,-40055],[32280,-186965],[44391,-244835],[12109,-209226],[-20169,-235927],[-72641,-249278],[-68590,-142445],[-100891,-151354],[-125091,-138003],[-125091,-97924],[-153358,-84575],[-112982,-35611],[-146378,-6795],[-121949,687924],[-142101,776843],[-7607,47066],[-44805,176350],[-9386,72592],[-21495,106017],[-28156,162135],[-36631,147152],[-24221,64547],[-134115,234343],[-36633,56863],[-72054,125251],[-92942,152891],[-30578,54941],[-121703,196331],[-95063,194384],[-11504,39574],[-22402,40341],[-35724,34579],[-38468,20363],[-281554,107194],[-53284,57247],[-22099,60296],[-19376,141773],[19980,96052],[37541,92210],[-605,19210],[-26964,85678],[-49347,73768],[-68420,78378],[-321232,225891],[-131695,97588],[-77522,108347],[-43596,180578],[-7567,141004],[23008,160598],[42989,122563],[56312,97588],[120795,147920],[96349,99605],[145544,141293],[53889,47233],[97503,78763],[177106,131400],[98696,59936],[161836,82484],[114230,86735],[123237,111877],[89990,100325],[13776,22909],[74437,93171],[143048,200556],[85980,133703],[151371,276269],[98696,225531],[69632,154452],[46926,111420],[32392,86446],[21799,95283],[21797,131784],[23596,174045],[63577,293511],[48438,172893],[23918,69543],[56007,116798],[37540,66852],[103238,166746],[32393,65699],[38146,104097],[44200,179041],[12414,29969],[47228,66468],[71144,63394],[44505,25357],[75988,26894],[73265,4611],[25733,8068],[41476,42648],[18771,98740],[61155,95284],[125356,161344],[66604,68772],[117768,51101],[108079,61472],[37843,36500],[25432,58016],[10899,207472],[23008,86061],[23311,52254],[42082,58015],[41798,46105],[96311,90696],[88364,104985]],[[60441490,44764596],[-5413,-39623],[34570,-32922],[5753,-25380],[-12546,-32419],[8289,-23075],[44521,-11095],[-15516,-66515],[32301,-39455],[-17239,-23291],[-29857,-18946],[-37616,-43656],[-23918,33330],[-22309,-6916],[-1097,-31048],[-13207,-30713],[-34873,-22813],[-6697,-29440],[28552,-5258],[20341,19377],[18372,-27446],[-30406,-2402],[-11240,-20746],[-5392,-86976],[-26132,-12751],[-41514,-336],[-27020,8189],[-20246,20026],[-30387,-19473],[2365,-38326],[11921,-27374],[-16481,-17241],[-36255,-2835],[-58240,34124],[-29386,-18418],[-33813,-5500],[-16423,34242],[-17673,-10804],[1702,-57103],[31259,-27760],[-2044,-13712],[-56991,-52443],[-35799,-14144],[-42972,3289],[-14058,-16905],[3330,-36475],[-39263,-42767],[37977,-54077],[-20587,-30256],[-30331,-4468],[-23028,-31241],[-17029,2403],[-70011,-19236],[-2554,-46681],[-14741,-18609],[-35685,-13953],[-37635,4683],[-4030,-32778],[34133,-17505],[0,-26438],[-20831,-5043],[-37843,17073],[-30616,-11574],[-57748,-58831],[14418,-22261],[36063,-17794],[626,-20746],[-19055,-36284],[-42101,-10205],[-63557,40029],[-18184,-30833],[32583,-40701],[-1740,-29392],[-64997,-34410],[4277,-36717],[18733,-1921],[25204,17481],[15325,-18034],[-30047,-66538],[-16860,-14192],[-34494,22403],[-5486,-23124],[-54854,21611],[-4598,33450],[-11352,4828],[-11183,-44808],[-28004,-28672],[-8100,-25022],[-23878,-22476],[-5260,-30688],[29119,-35659]],[[59274782,43085465],[20834,-48026],[-32242,-33523],[-43104,18803],[-34400,-2089],[-17200,-22765],[-13094,-44473],[1137,-99076],[-25999,-40919],[-48970,-32922],[-35875,12896],[-14437,30112],[-19660,7467],[-34417,-14888],[-17351,-23532],[-10653,-50451],[-48932,-56238],[-25885,-41808],[-40794,-38708],[-18790,-26511],[-12658,-45601],[-39092,-41206],[2063,-40917],[-41552,-24494],[-14325,-49395],[26074,-37027],[22536,-7205],[61135,41640],[-4711,40846],[32205,-22549],[21097,-51267],[-18769,-35467],[-53379,-18852],[-454,-27421],[35364,-28240],[-17332,-23485],[-20208,20771],[-47361,-31696],[-10710,-24589],[2347,-32682],[-13302,-25311],[-35819,-12054],[-50501,5524],[-27115,22091],[-35515,5308],[-10123,-25238],[-1514,-42960],[11902,-30041],[-6225,-25188],[-20815,-14432],[-31864,10397],[-40417,24374],[-33794,-22093],[-36366,744],[-27152,26703],[-36653,-6555],[-8362,-28263],[6167,-25479],[33643,-46801],[29443,-9244],[-1438,-33954],[-42102,-29536],[-36952,18081],[9516,39813],[-20814,7277],[-21078,-23534],[-6320,-44184],[3481,-34338],[-17123,-67380],[-34041,-5763],[-11692,18850],[12657,70453],[-16159,11551],[-20604,-11839],[-68269,-216],[-21667,-11910],[739,-72927],[-24826,-33114],[-25997,9845],[-17578,24134],[-29860,-9630],[-10936,-28000],[7853,-36955],[-10672,-14264],[-26585,-913],[-17653,17818],[-8950,-21659],[29063,-57680],[-11788,-45529],[-18429,-29319],[-22764,-1465],[-43424,30616],[-16671,-8523],[-9214,-28336],[6642,-60536],[39584,-32586],[-7797,-24350],[-42875,-78522],[-758,-30617],[-37087,-60633],[23804,-14576],[56651,-2809],[32906,-10806],[31145,-52612],[73964,-8836],[15837,-25646],[4030,-45961],[24541,-15512],[33510,-1345],[21476,-49995],[-2440,-16401],[-33775,-45240],[-2442,-20724],[17750,-46153],[-15422,-52324],[2762,-32225],[20133,-71704],[-17900,-29584],[-51126,-45792],[-4995,-52684],[59074,-55399],[-2839,-54268],[-20455,-34171],[-65960,-34506],[-47001,-7925],[-28552,-32441],[23576,-48122],[-22234,-35827],[-43594,-28024],[-12111,-26102],[38961,-22716],[30330,16665],[27417,-16569],[21080,-48458],[12998,-62675],[-5486,-18850],[-32622,-20626],[-37824,-3938],[-13453,-27495],[73208,-19571],[19,-37149],[-40417,-33186],[51770,-78113],[46717,-27664],[19490,-30208],[52204,-21707],[7303,-23918],[-8590,-56477],[10143,-25599],[42706,-31097],[16159,-41134],[-58033,-22811],[-66132,-54127],[-23008,-40028],[-4939,-27880],[9897,-19378],[31522,-11599],[28743,18850],[35989,-7611],[1210,-56432],[7248,-36378],[-4258,-31001],[-24313,-22069],[-36652,5284],[530,-23798],[26472,-18874],[-19037,-54701],[22252,-24637],[-3992,-25143],[-66565,-39500],[8665,-73264],[-19205,-20002],[-42726,-1417],[-7492,-20604],[33775,-52227],[34285,-22092],[-1077,-68582],[16158,-51099],[-42536,-90097],[-58486,3697],[-27532,-21322],[-19262,6939],[-41079,36260],[-27587,-16497],[-12205,-34651],[-34436,7517],[-27834,-24927],[-10388,-43992],[-25261,-43870],[9007,-33956],[32357,-30952],[8267,-21036],[-5468,-49609],[19697,-33739],[58733,-35972],[50730,3243],[21495,-12295],[1721,-27711],[-20379,-31457],[-30691,-4610],[-43764,12389],[-13378,-12245],[-1344,-45193],[43123,-38446],[7719,-34866],[27191,-24036],[28402,-58208],[36801,-24038],[38089,-50234],[18753,-6219],[34059,38251],[29498,11696],[11296,-7421],[-19716,-62458],[-87456,-87214],[-41116,-16473],[-15043,-29752],[-265,-43079],[39565,-43225],[-6792,-18009],[-28308,-15104],[-32620,-40631],[151,-32705],[25922,-44519],[69158,-32755],[128402,-1273],[26794,-8980],[35497,-40126],[24806,-9990],[37143,11599],[15876,-21299],[-51864,-66925],[6356,-18442],[46813,-16977],[24484,-60033],[64523,-91488],[11674,-32010],[-53888,-63635],[-33094,-15344],[-48440,13231],[-68551,42072],[-32301,-1993],[-31371,-64571],[1382,-77034],[-6661,-38205],[6112,-21707],[59318,-79915],[18923,-46753],[-9916,-40223],[19962,-23124],[28024,27038],[31522,12703],[19546,-12775],[17730,-34435],[16064,-5930],[72225,11237],[65827,24734],[28592,21443],[29744,35444],[17257,49971],[17085,8476],[48233,-21995],[51673,-43128],[20209,-54869],[-34646,-74752],[-47928,-33522],[49442,-27543],[-4105,-53814],[-20492,-39837],[43520,-45625],[-1894,-36019],[29953,-18298],[2214,-12919],[32678,-24206],[48781,-7227],[60605,-23005],[30010,-4226],[22876,-22789],[2516,-21155],[-17711,-29344],[-56328,-55133],[-33170,-20076],[-5619,-43678],[10784,-20004],[36330,-1753],[17104,48170],[20379,1585],[34571,-36955],[8797,-57608],[25488,-2425],[33965,54630],[24162,-10206],[61382,21371],[53075,32033],[22573,-2233],[19546,-21611],[9859,-55879],[40020,-33930],[-2877,-41230],[15704,-17338],[23332,-2449],[48363,17553],[19527,27064],[44787,15608],[26168,1008],[34306,-15896],[23860,-32489],[-10728,-35011],[-27815,-13039],[-39319,12319],[-15725,-9102],[133,-31769],[29896,-20146],[58961,11069],[19166,-7828],[36085,-76361],[5960,-60297],[-9026,-45097],[15932,-7275],[60454,13616],[31695,-10446],[36707,-26776],[23008,-29175]],[[59633782,35782135],[-48761,14768],[-27757,-9076],[-22971,-31505],[-29896,-9222],[-30804,-30617],[-45640,6821],[-31656,-50356],[-16555,2209],[-17844,24422],[-18165,2424],[-29594,-18177],[-27492,-34506],[-19811,-3242],[-21476,27086],[-75801,-5282],[-20453,9581],[-114,69661],[-28420,41375],[-34703,4922],[-33547,-14648],[-30143,-27231],[-67626,-15128],[-24617,-42406],[-22383,-4443],[-11997,28863],[-21325,2210],[-33094,-28983],[-38543,8716],[-63520,-36259],[-44048,18922],[-47626,-384],[-33624,50330],[-54684,-8908],[-1060,45145],[-13395,15607],[-34552,-17337],[-37748,30088],[-34740,-16113],[-37201,10279],[-33529,-12080],[-44295,11384],[-35176,-2066],[-16234,28216],[-34134,1561],[-48212,-23174],[-31108,2089],[-75592,24590],[-36385,-11479],[-11221,-42767],[-21098,-16929],[-83992,9126],[-33643,-12920],[-19849,5043],[-33568,39310],[-25222,-11167],[-4767,-31601],[-17561,-18489],[-72620,-7612],[-26642,-9317],[-15819,-18730],[-40587,0],[-20794,-19620],[-10728,-40869],[-37996,-60729],[-22894,-4731],[-95194,38732],[-22934,-8571],[-19111,-38422],[-71997,-13976],[-28288,-34193],[2952,-32297],[17485,-50428],[-52924,-55014],[-31940,-100350],[-57295,-62553]],[[54896248,35255026],[-6320,37029],[-48552,155076],[-109670,147222],[-62517,42480],[-148838,56071],[-158222,48746],[-187664,36643],[-133114,34242],[-136633,11599],[-187607,-43104],[-182991,-69012],[-161100,-41568],[-145695,12008],[-104089,81643],[-70502,170276],[-37351,144270],[16859,124003],[126946,301027],[98392,122467],[18051,28383],[128799,156637],[107684,141988],[46338,73984],[88932,158486],[45412,103255],[111637,266545],[66226,374602],[7587,96100],[-5695,458575],[-5677,146480],[1894,60032],[-5677,240129],[-9481,737151],[-24597,144102],[-43519,110459],[-54874,50427],[-105961,76841],[-141911,-62434],[-630108,-265943],[-69216,-26559],[-61439,-32441],[-108231,-38876],[-104524,-12295],[-84805,-4154],[-70882,3242],[-57351,15872],[-37105,18393],[-24258,28865],[-26508,55662],[-10862,47137],[7116,89832],[30122,44448],[35743,33210],[104579,60224],[177144,132049],[80286,42167],[51579,31457],[180607,98885],[64656,50114],[51560,114255],[16577,86662],[-3256,42335],[5999,48339],[-2592,45336],[-12130,78234],[-24957,65987],[-66226,115262],[-41626,55230],[-81931,85367],[-65942,56213],[-68081,52518],[-64939,26533],[-41003,8310],[-261250,10276],[-129765,-8475],[-70237,-1225],[-78353,-7637],[-137655,21396],[-55630,-2209],[-40833,13735],[-46641,25934],[-25506,27135],[-48837,72231],[-20739,59119],[-19773,95213],[1116,114277],[22820,102895],[101572,168307],[152337,196907],[136482,377243],[22574,75929],[12034,76121],[-14664,183724],[-14855,73528],[-45904,138915],[-16101,36284]],[[48655033,26434966],[-410277,-37004],[-122594,-5042],[-1352080,-123619],[-1005477,-91609],[-7625,-17193],[-141155,-203534],[-76386,-117761],[-227495,-334861],[-240058,-347828],[-4314,-4249],[-194173,-280183],[-7323,-12967],[-250390,-364061],[-30880,-39741],[-64656,-95428],[-391127,-564522],[-727611,-681199],[-9708,-8261],[-633439,-595233],[-1082655,-1017118],[-130466,-126740],[-102346,-113413],[-63350,-59024],[-353019,-360290],[-271034,-285636],[-579740,-618790],[-285318,-300234],[3236,-36427],[43501,-11863],[424790,-31384],[448876,-22885],[215689,-10133],[945435,-46753],[707575,-36620],[712246,-44208],[508292,-30616],[575991,-866509],[667176,-972238],[613780,-891288],[639833,-958263],[645,-179760],[-852,-805923],[-1551,-2195627],[-8913,-380437]],[[46386086,12108492],[-45261,22355],[-111921,-12894],[-118940,5139],[-128251,15489],[-114249,33522],[-102612,43823],[-109593,56742],[-93285,69615],[-93264,79939],[-69953,74800],[-30520,-1585],[-128044,-21636],[-86263,-5162],[-104939,5162],[-60625,-61882],[-74627,-67043],[-97938,-69639],[-95610,-48986],[-100266,-41277],[-69934,-23222],[-102613,-23219],[-107266,-12895],[-123578,2592],[-107266,10303],[-109612,28383],[-102593,38660],[-118923,59313],[-132924,90265],[-95611,90239],[-69954,82534],[-72658,96700],[-257543,117304],[-93926,67044],[-106036,97203],[-75743,83807],[-57580,-80445],[-72715,-87166],[-87852,-87144],[-78790,-70381],[-87853,-56983],[-193909,-87168],[-150105,-149816],[-132829,-95933],[-184317,-89927],[-154512,-56960],[-159927,-26991],[-197862,-2977],[-168063,32970],[-119337,40270],[-35573,16737],[-104524,59937],[-137257,90481],[-127323,123402],[-23331,27062],[-164541,292598],[-81591,209226],[-44485,229755],[-7416,196906],[3707,151811],[-152034,73840],[-129802,77946],[-100114,77947],[-92773,11957],[-135423,25550],[-118921,47449],[-118923,62050],[-128818,83949],[-112300,113150],[-102403,120473],[-85885,142349],[-59603,136009],[-147210,0],[-151524,23245],[-144809,40678],[-171144,84285],[-121119,90074],[-134266,127868],[-126379,177239],[-85524,172198],[-38204,115910],[-24787,95692],[-14834,80323],[-8591,75305]],[[16200488,79081556],[369123,-3698],[73492,2448],[317314,-4418],[414592,-3722],[149292,6868],[354079,-1752],[1095524,3168],[271809,1562],[449577,480],[43576,-15657],[513665,8141],[9611,-1056],[632456,-3650]],[[68760581,3366931],[-490676,117494],[-155194,42359],[-112735,14192],[-156747,36379],[-224221,55783],[-193776,52492],[-226492,76673],[-156501,68006],[-992607,532343],[-1372630,-485830],[-1228903,-392349],[-32147,0],[-292433,-107554],[-256843,-75064],[-77123,-9053],[-182065,-37244],[-234532,-50596],[-195422,-21707],[-143332,-3602],[-201951,18082],[-299660,-3626],[-211715,-36140],[-199566,-7203],[-182423,-10255],[-197334,41352],[-316502,33065],[-182442,33089],[-96803,28936],[-420739,-28936],[-383768,17866],[-252888,33234],[-220627,43295],[-183576,81670],[-114684,60343],[-126756,23942],[-297448,91177],[-219168,108515],[-219170,130245],[-164371,143262],[-125243,143262],[-82195,125900],[-82195,156276],[-62613,177984],[-31315,151954],[-15648,164946],[3918,195368],[43045,191000],[62613,173662],[101759,190998],[105677,134594],[105678,104167],[217656,143239],[61533,30712],[79981,28983],[107683,30713],[76916,13663],[106151,8526],[116916,-1705],[-112299,126260],[-55384,49466],[-107684,75089],[-219982,-6845],[-189216,-30711],[-69783,-2883],[-110028,4059],[-104524,20315],[-159547,22356],[-130219,38613],[-117351,44713],[-61230,28551],[-216917,50619],[-220722,54845],[-83708,4227],[-159831,12654],[-148422,37966],[-121779,46417],[-102744,50618],[-76102,4226],[-137011,25310],[-152225,50643],[-133190,54847],[-133188,88608],[-152224,122345],[-129387,130800],[-106548,143428],[-64692,50643],[-197883,80157],[-195328,41997],[-335309,-7899],[-378130,31625],[-278242,86950],[-278241,71152],[-370978,142275],[-335329,142277],[-342442,158102],[-292509,150177],[-199774,142301],[-306776,339903],[-128421,118553],[-237921,291926]],[[50881708,9232483],[15326,254897],[-6035,1835959],[15478,115768],[68723,10468],[23822,14336],[58391,2762],[13851,-9893],[18827,-48986],[28685,2761],[19811,-18706],[-25241,-6052],[-75214,-38564],[-40568,-44040],[-30671,-18153],[-1457,-59432],[8420,-51748],[20304,-47858],[22269,-31361],[44031,-37413],[47021,-26415],[18315,-75929],[20304,-28070],[31164,-25862],[35629,-10999],[43538,-1633],[22253,-14311],[31182,5500],[17313,26965],[31657,-36307],[19791,1656],[42555,-22018],[40568,-2738],[21267,19258],[29197,-7709],[29687,10471],[18790,-7156],[39584,-36333],[132111,-6050],[34134,48987],[9405,30256],[68760,-15416],[144485,28047],[74211,44016],[11883,12101],[29196,64379],[6945,62193],[-28686,58328],[-1986,30280],[59887,21445],[29215,18154],[58883,50067],[26737,9341],[42062,31361],[38618,52804],[21287,66587],[2498,52830],[10918,83612],[-3935,74849],[-10880,40725],[3481,26415],[50502,75929],[35195,152435],[24275,92978],[19320,48434],[52014,72063],[32678,18130],[116842,27159],[48533,34626],[79737,92955],[15836,10444],[10086,-26965],[15174,2833],[11864,48434],[60379,15992],[69310,12128],[70767,23147],[58581,49779],[6169,27495],[194855,409110],[34739,37579],[58904,100736],[8400,58878],[-1494,57776],[5431,53380],[13832,51389],[25013,34554],[23029,83037],[-3974,28599],[67834,134282],[9403,37411],[-1987,70983],[-85241,155172],[-14873,63827],[-70349,92978],[-82215,-22020],[-60435,16473],[-58449,-13784],[-35668,0],[-46566,15945],[-40133,35203],[-10918,31361],[-53017,47281],[-114969,54990],[-35969,24180],[-91582,7133],[-73321,-7109],[-19318,14864],[21325,48410],[-11788,220127],[-22252,76506],[18,67117],[-26717,64955],[-69839,78738],[-14854,42383],[5980,67669],[-152622,162423],[15080,169339],[18014,159687],[15667,88223],[30066,81789],[30048,55253],[30842,76866],[22364,95331],[1175,52926],[-11544,60536],[-83443,175559],[-24731,84237],[-16860,101455],[4693,69973],[14457,67622],[23859,66444],[29443,53404],[29195,37149],[49424,40172],[68250,26727],[158166,18105],[121400,29464],[116898,46658],[89424,61401],[13227,24638],[133926,140524],[52527,67403],[27834,59698],[-5904,47353],[-33757,105681],[-11825,48482],[700,70886],[8344,43055],[23311,42240],[48704,61329],[45924,78378],[57749,68700],[92204,96077],[49045,42190],[126983,119057],[16141,28864],[74929,45024],[95099,36211],[82897,61906],[47474,62145],[24900,19234],[66662,31745],[40189,9030],[51334,-20915],[20889,-34123],[5658,-47186],[-9044,-80059],[6186,-71846],[22594,-40510],[74739,-70767],[57542,-31265],[41626,-11141],[43710,7035],[71770,51508],[27133,41710],[25450,80924],[23160,50668],[40510,31121],[31580,937],[106341,-40535],[60699,-1224],[26094,18033],[7626,44761],[-11146,58111],[5885,45745],[24181,17866],[31241,2665],[123614,-39526],[134040,-9556],[38941,13207],[29575,24684],[9347,25119],[10218,152866],[20492,19475],[61968,12919],[83917,6650],[93813,-576],[47172,22261],[70086,77154],[41268,26533],[42024,-4418],[52205,-26150],[27191,-3795],[33530,11456],[47209,29055],[53624,61305]],[[57457515,20642605],[321345,8766],[724016,11334],[751207,12005],[597942,16835],[-35952,701154],[133416,0],[646174,12006],[-60549,136874],[-5885,89184],[19129,-5138],[21892,99533],[169028,53742],[102366,58038],[5676,86448],[-3899,185380],[36444,8067],[94230,44280],[51012,-19041],[57428,-3626],[90785,-20772],[50558,-6987],[37843,-33618],[34059,-98454],[-41626,12006],[3783,-182498],[35952,-7203],[-7570,-108059],[13246,-4802],[-18922,-211291],[78014,-63826],[74759,-55423],[161327,71223],[71902,-69637],[-60531,-28839],[30255,-127246],[-30274,-14407],[27474,-130055],[34968,19594],[77692,-184226],[78334,-197579],[78621,-192081],[-18865,-7323],[90767,-218398],[-13246,-7204],[34854,-92041],[32110,-38854],[85392,-86543],[64921,-61112],[11353,480],[109196,-124363],[65790,-85535],[64448,-52828],[63350,-27542],[57011,-12728],[52298,-3049],[59981,5258],[49973,12847],[32469,-3769],[44598,-28191],[61137,-59986],[78543,-64642],[61193,-38662],[49593,-13230],[75800,-41782],[44616,-33763],[82291,-93482],[131392,-207617],[56614,-73119],[195270,-213139],[90351,-132697],[76651,-144101],[62537,-98260],[37312,-71248],[18770,-50282],[41175,-88489],[80094,-108851],[22536,-64714],[121381,-100662],[50882,-21829],[66396,-19617],[57918,-11600],[29916,192],[48458,12560],[67398,-6291],[70162,-19764],[103425,-16881],[7663,-12727],[69670,-17025],[39659,-20866],[21343,-45145],[511,-112404],[71637,-108419],[28969,-34387],[73569,-107289],[42365,-70215],[40945,-80203],[47059,-47930],[113870,-57704],[35138,-13615],[51959,-35995],[77880,-41231],[122783,-103519],[52375,-39478],[65356,-37796],[11314,-67837],[106056,-507177],[52054,1681],[124674,11646],[47587,-15488],[59301,-44953],[49726,-47257],[28553,-37677],[55761,-61498],[41400,-71677],[27739,-98983],[13378,-23123],[88686,-95188],[22289,-49515],[-3330,-44111],[-35269,-78018],[-1004,-31867],[16141,-31167],[58770,-70359],[25468,-21275],[50541,-26606],[49063,-18779],[29424,-18731],[59584,-84285],[54948,-104024],[69063,-65364],[74267,-55445],[41117,-44472],[14173,-25238],[38486,-100133],[20303,-33331],[40512,-27998],[94683,-4420],[19848,-8571],[33492,-43153],[81118,-156203],[37482,-52829],[63425,-78522],[30087,-17867],[70388,-4610],[27588,-10518],[67076,-93987],[83180,-40533],[59224,-23485],[40284,-52468],[53359,-156564],[43028,-83782],[45052,-112165],[11353,-40365],[7286,-87359],[18694,-49995],[32243,-39190],[74797,-70261],[30425,-51653],[39338,-122514],[72299,-81668],[54438,-31505],[60323,-59577],[57294,-95355],[84542,-94323],[75515,-67547],[41022,-60537],[50219,-92162],[62933,-88753],[202650,-114925],[55516,-9630],[30427,-14888],[57749,-55301],[34398,-23006],[44031,-51170],[19792,-53022],[49101,-72374],[57863,-64931],[73208,-75953],[23727,-47882],[10332,-105609],[12337,-54991],[26697,-47329],[13832,-37964],[20247,-87480],[5412,-67667],[-36652,-86880],[-13888,-50595],[4428,-81428],[-1060,-132552],[-31713,-100638],[-43066,-79170],[-8307,-52518],[22556,-51002],[45923,-76122],[16518,-57223],[20435,-31337],[45602,-109860],[36291,-153322],[-1759,-46057],[-31525,-62938],[-31145,-20123],[-29953,-37195],[-29119,-54295],[2251,-53572],[-14739,-82725],[10179,-57510],[-13681,-57176],[8459,-77538],[-6415,-14840],[-41987,-30304],[-66188,-62794],[-16765,-30281],[-31050,-106713],[-46888,-77106],[-35041,-42934],[-3728,-79700],[-66283,-54557],[-31978,-42840],[-23708,-75473],[-15062,-23291],[4181,-57368],[-5618,-63178],[7246,-66803],[10804,-20364],[6812,-77730],[-5147,-19139],[-37957,-21226],[-29215,-3602],[-51844,-28071],[-4523,-14912],[0,-1000574],[-2970,-1749104],[2876,-1193036],[-1174,-481316],[1930,-135866],[-1040,-488015],[1003,-820811]],[[11639851,81182330],[36594,64042],[56161,24951],[33887,-30738],[19169,962],[30861,42479],[47645,96460],[79205,70261],[44656,18515],[31466,64138],[-7002,17673],[-28571,20124],[-1268,79073],[43803,13112],[16104,31217],[-12755,70454],[9216,47857],[-12867,66516],[42138,41735],[-188,34074],[-58677,6797],[-28818,24829],[-3632,34075],[31562,43222],[6073,61378],[13547,27878],[34740,13279],[8402,32202],[-34777,95068],[1020,53092],[-16102,18515],[-29764,3434],[-42535,34530],[-18846,1560],[-21325,-31384],[-32563,-6196],[-33529,-40197],[-26018,26222],[-9309,50475],[12072,68677],[-34248,38276],[14607,62074],[25922,28672],[-17388,31792],[-29063,4252],[-14854,34554],[-29556,961],[-23727,16569],[6869,28647],[25355,13735],[20227,24950],[-10407,31816],[-28554,-28766],[-23273,792],[-26963,38949],[8098,31168],[24636,22981],[-3065,20724],[-22062,12294],[-14078,55734],[8704,15177],[61267,27734],[18620,26919],[-3539,40149],[12016,82533],[25733,1464],[9801,20052],[-20095,24325],[34438,23364],[29555,41590],[17616,71799],[41116,226851],[32036,80083],[20397,77059],[12337,74511],[15364,45073],[46642,102294],[68307,71415],[46319,64284],[15441,30952],[15458,96436],[1400,42431],[-10595,68340],[-25734,50597],[-22762,23676],[-71978,40557],[-137125,37174],[-65242,20289],[-57218,27880],[-35706,29128],[-42554,49899],[-63028,99053],[-11353,35036],[-4390,56766],[8495,75760],[20285,89738],[32166,70213],[40568,65196],[36311,44255],[29708,25647],[29385,12653],[43349,5308],[67757,-12824],[105243,-42383],[164278,-98308],[39432,-16017],[59320,-841],[83084,51316],[42762,46561],[64390,106283],[60134,63106],[86472,59432],[45789,53885]],[[4329244,99995869],[1218115,-1442],[82820,4322],[1116452,-3626],[1166156,-3384],[939137,-7204],[573457,-4203],[266150,2618],[192320,-5212]],[[17260230,37663983],[928,593290],[-1988,143069],[909,750332],[5772,354360],[1039,1286496],[549,329649],[-737,242844],[-3084,129669],[-171,132192],[3274,134736],[5884,11262],[3917,76938],[45564,216],[437278,-5690],[13302,6002],[236009,1633],[846155,8621],[102612,-7805],[222897,-4537],[-1552,22715],[336085,-3362],[224846,2402],[179300,-7804],[217013,-1488],[7795,642586],[2081,327633],[4637,417033],[1230,216645],[4995,529702],[12640,694600],[1551,192727],[3765,228389],[-321,466259],[5846,550665],[3672,569708],[-153,378109],[-1929,409973],[-20492,-96],[-3766,276654],[436,140980],[-9499,605967],[1079,72135]],[[64359075,31488280],[149197,1093382],[22839,191384],[1797,35444]],[[64532908,32808490],[36008,-11047],[247418,-43896],[29859,-27854],[45734,-74825],[20831,-11166],[44069,-3578],[29556,16785],[61154,53909],[38751,12847],[44864,-5330],[48363,-26512],[20323,-19353],[54323,-90577],[18355,-40463],[32203,-43150],[9197,-59648],[102101,-94395],[90199,-72760],[67305,-41087],[103103,-26293],[91845,-17313],[191223,-5044],[61664,11671],[56709,26414],[79414,47522],[162442,114325],[422102,429233],[132149,211121],[130351,473368],[17371,32490],[-8516,3961],[105584,208986],[75288,159830],[101003,204566],[18846,41975]],[[71589191,31415760],[-459152,-130653],[-704793,-154812],[-99035,-32033],[-112054,-164010],[-182537,-374626],[-142062,-180242],[-1084058,-891888],[-817639,-1200721],[-267307,-24638],[-60530,-8908],[-133794,-9005],[-21797,109763],[-320950,-122371],[2176,-13735],[-35798,-6146],[-163994,-62194],[-612662,-237848],[-48818,-14456],[-14135,-218807],[-4542,-134328],[-200966,12439],[-416,-58232],[7985,-773675],[324260,-2736],[49233,-1991660]],[[66485806,24730238],[-20605,41806],[-47341,66420],[-42082,37389],[-22309,10349],[-93908,22668],[-34419,-15345],[-182177,37004],[-483372,384],[-282953,-10252],[-56159,-24614],[-44901,-41206],[-79659,-118192],[-24239,-16857],[-44731,-7179],[-50086,-28072],[-27645,31914],[-321,107218],[-23936,53187],[-68856,-6170],[-25071,-14984],[-44068,32393],[-46207,12223],[-36953,47810],[-18771,11765],[-82555,16065],[-46812,-16641],[-69706,6868],[-33190,-30448],[-44598,-16665],[-45638,10060],[-34571,-14166],[-58637,-5068],[-17144,-19834],[-56120,3121],[-28913,-17841],[-40775,-9894],[-20190,-28719],[-17957,-4467]],[[60880698,51489428],[32487,672],[843942,1945],[184939,816],[50937,-3865],[161118,5906],[103956,-7539],[369634,-1369],[496880,4347],[1057112,2640],[83881,1081],[413267,-2185],[32318,-1536],[545906,4633],[135592,288],[105640,3098],[276161,0]],[[65775036,43100785],[-586286,-5116],[-325282,985],[-1056110,-1225],[-1257832,-432],[-235858,4971],[-1254900,-6412],[-361913,-2353],[-111486,-5546],[-140360,4802],[-77504,144],[-419093,-5090],[-673630,-48]],[[43889570,52567441],[28854,-13519],[1780,-32081],[13169,-27950],[31789,-11287],[46641,913],[85545,10109],[81855,-4035],[68231,-31265],[92923,-14816],[63842,2235],[56935,19426],[84391,36091],[51882,33017],[41287,14840],[91638,-1128],[62461,3842],[97200,19812],[64447,7683],[59432,1080],[86604,-19281],[67456,-41832],[89102,-70477],[43292,-51172],[24655,-39093],[28685,-66035],[49784,-183795],[-6074,-63275],[-14060,-32393],[-44749,-62026],[-60303,-105945],[-37710,-59312],[-40777,-80683],[-35421,-94011],[-17882,-73816],[-16802,-107987],[-1060,-59817]],[[45049427,50793075],[58997,27568],[44182,108346],[23974,38924],[43501,47234],[65222,57103],[24106,28312],[44599,71535],[80264,160670],[29405,78955],[69460,79027]],[[45533137,51490749],[225452,-6004],[318772,-3266],[476125,5596],[429425,-2185],[206719,5475],[203142,-289],[248252,-7901],[481082,-8836],[51579,7563],[755105,2691],[505491,-3747],[530050,1537],[523051,-1489],[5979,3459],[428820,-1466],[306777,3483],[418167,144],[398242,-2691],[372246,986],[435007,3506],[68062,4850],[424695,-7011],[278449,-2571],[628445,2571],[-19,-2475]],[[51718250,43195348],[-230747,49563],[-75801,26030],[-87190,37652]],[[50881708,9232483],[-113265,197289],[-61986,74321],[-154931,177263],[-98147,102920],[-123955,171549],[-98127,165834],[-56821,125780],[-129121,74344],[-123957,74343],[-118789,108635],[-103294,125805],[-82629,120064],[-1100008,535706],[-394535,197867],[-560571,266016],[-98922,-26391],[-184202,-11310],[-136443,18851],[-167154,41493],[-143274,64115],[-119718,75785],[-53150,40703],[-103218,97227],[-110389,33906],[-59016,23894]],[[66485806,24730238],[103937,-252665],[63368,-106570],[95270,-127509],[46927,-30881],[58467,-4225],[117067,45217],[45470,8379],[50975,-10493],[52980,-38974],[41721,-41685],[87760,-58616],[27569,-49563],[14303,-57198],[19491,-40175],[51239,-73815],[63804,-64596],[17465,-76888],[-22801,-117904],[42005,-89041],[19490,-81931],[10974,-81428],[-1002,-128303],[-14740,-63538],[20227,-78066],[4031,-93219],[9232,-34146],[44902,-28551],[22384,-23844],[18336,-71728],[18467,-43103],[37673,-45337],[32336,-26197],[61930,-35372],[41156,-50187],[53415,-74657],[74060,-55757],[61930,-36861],[76934,-32465],[75499,-72590],[77388,-109019],[53398,-54367],[25562,-19185],[86150,-80996],[51940,-14720],[52130,21899],[101684,-24108],[60474,-31457],[70312,-28215],[28440,-21132],[24825,-2930],[36518,40031],[40284,11358],[26699,-13496],[49233,-49659],[104656,-45480],[68005,-57511],[37521,-11335],[178393,-41975],[75250,-34146],[32622,-23124],[33490,-41254],[23255,-44521],[2593,-44424],[-6207,-35634],[-3746,-112645],[14285,-89160],[12848,-31433],[49519,-46658],[34494,-17553],[43747,-36813],[34078,-46129],[24541,-45888],[5467,-26390],[-6774,-40439],[-20359,-21106],[-20209,-76073],[4618,-52781],[31334,-53213],[22516,-57944],[-11314,-86469],[2081,-113174],[-10974,-52997],[-9839,-109619],[4786,-47066],[25961,-55158],[52564,-79843],[73169,-94827],[14267,-47786],[29650,-16281],[28441,7133],[66394,-52973],[99604,-7347],[456805,-13736],[229198,9268],[1447787,-18778]],[[74820943,5751610],[-66263,-63827],[-215480,-185044],[-400266,-346387],[-196710,-127676],[-297447,-196835],[-215896,-122370],[-191922,-95764],[-182310,-58520],[-148724,-79795],[-196709,-127676],[-177521,-74489],[-172717,-37219],[-125185,-456],[-109614,8692],[-97067,17337],[-43841,12174],[-208251,-86805],[-104921,-38206],[-167531,-53812],[-108044,-50356],[-160075,-71390],[-615427,-233982],[-627382,-184060],[-455822,5931],[-124732,-76650],[-187967,-51892],[-93604,-21851],[-118204,-20988],[-191260,-22547],[-59470,-216]],[[49339408,99677169],[292661,-96],[155383,-1537],[184846,1151],[104314,-3049],[192793,1946],[93170,-3146],[231959,-336],[136066,1609],[420363,-5211],[18657,-2858],[124370,3554],[110844,-4034],[163122,-840],[273570,-3722],[123198,1128],[55251,-2617],[87455,2833],[27910,-4874],[72923,336],[158620,-5979],[203654,1344]],[[50390086,69112403],[-12507,-18994],[-68118,-134473],[-3783,-14408],[-45413,-76841],[-28382,-36020],[-49196,-79242],[-39736,-48027],[-71901,-117663],[-17030,-57632],[-9460,-110460],[-24599,-124867],[-5677,-57631],[-1892,-108059],[1892,-120063],[15138,-225723],[0,-45625],[13245,-127244],[3784,-120066],[7569,-57631],[3784,-91248],[18923,-170492],[5676,-93651],[15136,-103256],[-7567,-117664],[-24599,-91248],[-11353,-79243],[-5676,-141678],[-47305,-139275],[-39734,-9604],[-51089,-24014],[-64334,-43222],[-25846,-24830],[-115744,-74393],[-87380,-37651],[-35950,-7205],[-124883,2401],[-124884,26415],[-64332,26415],[-62442,19210],[-54891,26414],[-251657,84045],[-88932,33618],[-130560,74441],[-68137,45625],[-104067,86445],[-45413,50429],[-100284,144077],[-47475,94490],[-51486,78739],[-32734,17626],[-60302,8597],[-30522,-17121],[-151978,-134234],[-53340,-54748],[-41759,-49612],[-59149,-104455],[-22650,-73000],[-23462,-167059],[-416,-41615],[13018,-124434],[12602,-39429],[67304,-118457],[47531,-50451],[41287,-51195],[39791,-74969],[64902,-91322],[27569,-18345],[75837,-69589],[60549,-45625],[143805,-86423],[62440,-19210],[71902,-7205],[140040,2401],[85146,9606],[104070,16809],[126775,36019],[151373,67213],[70029,36019],[68116,26415],[70011,33618],[105961,36019],[75686,12007],[75687,2401],[73793,-12007],[109766,-28814],[92714,-64836],[79472,-69613],[-3784,-98453],[-13246,-134473],[-11353,-86448],[-22706,-108058],[-24597,-62434],[-58658,-86445],[-73794,-86448],[-68117,-57631],[-51127,-38013],[-126756,-113268],[-149480,-146480],[-88931,-72038],[-64335,-45625],[-115440,-67237],[-100284,-31217],[-158943,-72038],[-34057,-9606],[-92717,-38420],[-104068,-50428],[-58677,-19210],[-35950,0],[-56765,50428],[-75687,33618],[-41627,7203],[-52981,-14408],[-66226,-7203],[-66225,-21612],[-28383,14407],[-54872,4804],[-126681,-15825],[-46035,-13831],[-46794,-31265],[-14323,-26438],[-73794,-106594],[-37087,-74705],[-7265,-53716],[1097,-56383],[43197,-102920],[27928,-19234],[44353,-15225],[34854,-39836],[-7758,-63803],[6546,-133344],[-40851,-84261],[-2649,-86927],[-16423,-271132],[2516,-172941],[10860,-187637],[8363,-189535],[13776,-122394],[21590,-150584],[33378,-115504],[56953,-131302],[64902,-159567],[62289,-127581],[72318,-164969],[246152,-236095],[128344,-145614],[44808,-151283],[105677,-19881],[114,-104170],[-9576,-180432],[29973,-215637],[-29499,-124267],[-42896,-58183],[-76424,-88849],[-138223,792],[-198146,4324],[-65999,3722],[-87853,-8022],[-119981,64668],[-92357,62746],[-38903,34243],[-71939,83036],[-67172,89665],[-29594,46849],[-42043,80227],[-59869,145974],[-34720,137931],[-30825,185332],[-35950,97613],[-33265,149336],[-4408,50019],[3538,43368],[44068,108466],[719,41640],[-55912,124075],[-10502,34338],[-18525,22765],[-64086,31696],[-65318,-8596],[-81079,-47449],[-38884,-50956],[-196292,-123018],[-92962,-95092],[-61932,-101791],[-54872,-114061],[-37483,-159422],[-1665,-115071],[35117,-94707],[48194,-101744],[51031,-149407],[43160,-168932],[34193,52852],[14550,4900],[72318,76481],[38431,32176],[64314,35540],[27341,8980],[61458,-18129],[70029,-45673],[44408,-23844],[-4218,-37581],[-57049,-104552],[-7682,-42887],[-2176,-140332],[6035,-59864],[-22270,-73769],[2517,-73792],[14664,-72182],[17881,-26295],[-1779,-37291],[10993,-35997],[27436,-47929],[530,-22812],[-34192,-44232],[436,-33138],[14267,-28120],[49120,-55758],[65791,-54869],[72715,-50619],[63898,-32755],[17143,-17697],[4070,-59863],[11220,-37222],[29309,-34193],[163596,-126716],[85185,-76650],[63709,-65291],[50142,-63803],[46226,-27230],[26283,-40607],[12922,-52540],[549,-95091],[-10369,-134161],[3463,-70141],[321,-111566],[-10633,-100493],[-61060,-179306],[-66774,-143285],[-56084,-70285],[-72262,-44664],[-54494,-25743],[-160114,-86398],[-75592,-33235],[-186567,-70189],[-119414,-33522],[-90427,-20988],[-104221,-13039],[-100832,-8380],[-94079,120],[-250825,30593],[-75439,15176],[-88876,25837],[-99698,18107],[-94041,21010],[-124862,18946],[-153020,26944],[-71164,-6748],[-158771,8380],[-78752,-4778],[-67759,-18322],[-36159,-33643],[-54570,-37052],[-49593,-41661],[-51089,-65076],[-50293,-90649],[-18581,-94564],[1931,-39380],[54644,-179714],[47607,-70045],[97390,-128710],[101003,-55949],[102082,-53070],[160910,-91321],[123786,-123978],[87928,-71391],[63235,-62698],[56123,-46225],[113642,-115887],[124638,-158582],[94191,-198731],[21041,-113678],[4541,-83804],[75,-106714],[-6641,-58568],[-21551,-71174],[-24920,-60128],[-105205,-231149],[-50521,-93651],[-84485,-121193],[-119470,-160528],[-211166,-263901],[-48174,-75425],[-17048,-44424],[0,-28624],[-12375,-18105],[-43405,-101240],[-323,-40701],[8836,-79820],[14267,-46272],[31467,-67430],[226889,-298768],[69727,-47161],[77446,-74922],[103765,-79146],[99396,-88777],[112696,-112428],[53549,-61786],[161478,-144317],[183992,-191911],[66207,-80613],[54249,-142253],[16329,-78905],[9707,-84070],[-8667,-110725],[-16404,-78834],[-59888,-174334],[-39129,-72688],[-55024,-86613],[-43937,-61209],[-67132,-79675],[-59982,-58449],[-118393,-92330],[-109612,-69997],[-93757,-46945],[-209501,-98430],[-122630,-51795],[-229841,-88489],[-200114,-124771],[-23616,-18297]],[[64532908,32808490],[-35213,33545],[-6376,93363],[-35441,33257],[-48856,3890],[-24673,13063],[-34078,-888],[-65128,77297],[-30370,18779],[-31750,-10877],[-88855,-105561],[-9650,-6797],[-80493,-19835],[-31561,-30280],[-53738,-132695],[-3823,-66541],[24939,-44759],[8629,-39549],[-11902,-38422],[-22082,-2930],[-53908,65509],[-45770,14888],[-28761,-10326],[-75535,-65027],[-64655,-79795],[-24315,-52757],[9139,-33353],[51977,-73841],[34912,-65315],[11465,-35851],[-8212,-24254],[-56462,-14984],[-18372,-44448],[756,-60873],[-62214,-41974],[-19602,-28335],[-8023,-45553],[1987,-66323],[-15043,-41135],[-35895,-50643],[-91768,-95933],[-50124,-27614],[-31712,-8934],[-34041,21253],[-50482,1513],[-15271,17433],[-9007,51195],[-31069,29417],[-11825,69036],[-20947,68030],[-15648,21827],[-23823,8165],[-36480,-6076],[-13832,-14552],[-9063,-46345],[-59451,16016],[-60002,35180],[-18410,-624],[-4561,25981],[-36536,25551],[-9329,28311],[-20700,7131],[12904,64211],[-10576,36260],[8381,37628],[-2175,50811],[-13529,20916],[-50540,44328],[-2688,45577],[-9328,22284],[9254,27951],[-228,46729],[-34039,29872],[-15876,51507],[-31959,32322],[-21664,2761],[-23804,21229],[-47815,-288],[-9858,-18612],[-37900,10014],[-18809,28288],[6831,47762],[52243,29656],[6073,54364],[16027,36981],[-5486,25669],[-64032,42023],[8269,31193],[-15346,15320],[-26849,-16569],[-28912,56335],[-70766,82772],[-6112,30785],[7321,44593],[-5260,63730],[-7302,7275],[-29234,-18778],[-26264,23078],[-12886,31889],[-27228,-7157],[-13491,38494],[-16897,22043],[37,36308],[-28817,-5404],[-6925,12223],[-24446,-17769],[-56898,-216],[-46245,8596],[-48552,-45505],[-33681,-3289],[-50066,9270],[-37749,-6845],[-20360,12150],[8023,18875],[-11486,25357],[-24313,2522],[-23369,25887],[-6093,39884],[-39905,6148],[-29139,65435],[-14722,19570],[22271,53983],[58,29776],[-71183,36139],[-41287,6170],[-15120,21685],[-48722,13399],[-72243,48699],[6055,21034],[-52546,92954],[-17067,21061],[-14909,57774],[8514,43440],[35477,28768],[33094,50162],[20493,49107],[21948,32873],[38980,28336],[14436,1488],[-10330,32418],[-28270,16042],[-18656,25356],[15365,39022],[-4958,19571],[-58468,17337],[-43330,288],[-54040,-12703],[-24239,12559],[-48951,82316],[-25978,7301],[-11865,-33762],[14665,-49012],[-11316,-43655],[-104182,-28527],[-46887,-30160],[-17750,-28360],[-22441,-10518],[-41248,7277],[-34381,76913],[-16500,79459],[-24710,61041],[-28365,51315],[-2156,18610],[22725,40199],[28836,27134],[10028,22788],[-6716,24014],[-16690,1536],[-47682,-25526],[-27910,-241],[-53227,23894],[-51788,6867],[-23746,23414],[-17880,69564],[5525,42864],[22383,30881],[34929,2594],[4523,20770],[-42385,33451],[-21532,52108],[-35970,154860],[-9897,25572],[-25316,20485],[3556,57029],[12395,26006],[-5356,44017],[-28136,19113],[-97256,-216],[-43861,-13303],[-28325,22621],[-6906,27518],[7548,65172],[8402,20387],[43842,21443],[-1137,33331],[-71183,26605],[-36233,29176],[-54401,-8860],[-67322,28119],[-35725,36548],[-47663,99581],[-30880,-9580],[-21476,23004],[-19943,41255],[-42783,46825],[9612,29968],[42007,16569],[-31524,67524],[-12488,2881],[-81097,-79339],[-19831,-5858],[-33774,14984],[-8137,34939],[-13018,4994],[-60890,-22259],[-19509,4777],[13247,41544],[-7967,19954],[-43766,14432],[-33623,-43464],[-48421,30520],[-60813,14312],[-17277,-10374],[-3860,-29438],[-27624,-15321],[-24693,69709],[-22025,16977],[-22517,-9556],[-33566,-40102],[-22518,-8789],[-24390,29992]],[[56571757,78505245],[15155,32776],[29273,441239],[15137,16809],[26489,81645],[9461,45623],[-22705,172895],[-113530,153682],[-60549,180050],[11353,232949],[153264,-60032],[158943,-93650],[77257,-63034],[27965,-29416],[102914,-87648],[64335,-67236],[47303,-40823],[157068,-40797],[259226,28816],[-22706,-379430],[-17029,-81643],[-41627,-105633],[-73794,-151258],[-60549,-93652],[-62442,-74463],[-45412,-38398],[-132470,-60032],[-71959,-9677]],[[56264526,89032315],[-200929,-152122],[94817,-233527],[118940,-119777],[109179,-106041],[106680,-85534],[72753,-41710],[157466,-68941],[388461,-147105],[123747,-48601],[94324,-44809],[121269,-66803],[112508,-82269],[118486,-104073],[99945,-157500],[36252,-85751],[8837,-67669],[-7133,-78667],[-17522,-43895],[-29971,-47977],[-56728,-56431],[-57503,-48266],[-75308,-45888],[-77578,-3603],[-54873,4803],[-189216,33594],[-132450,36020],[-90825,43247],[-94608,36020],[-79471,45623],[-52998,48027],[-62441,45625],[-96501,100829],[-30274,38398],[-56709,84790],[-125109,208721],[-92659,174477],[-37711,86230],[-58260,119274],[-82478,127364],[-24731,29056],[-332850,346458],[-78260,-105079],[5297,-43705],[-6641,-137281],[-15269,-101984],[-20530,-90048],[-27682,-86879],[-67968,-171669],[-39526,-84454],[-124485,-232877],[-59491,-122394],[-11351,-122442],[9460,-117665],[3784,-100829],[17029,-86447],[49196,-110484],[30276,-57607],[51088,-79243],[24597,-28816],[83255,-115261],[104070,-127245],[77579,-79243],[121097,-96076],[100303,-72039],[119207,-72040],[145697,-79217],[39735,-16809],[242196,-117640],[68118,-28816],[105961,-16809],[166510,-45625],[56783,-24012],[43521,-4804],[41627,9605],[52981,33620],[66226,57630],[49196,28792],[37842,33642],[115422,62386],[126776,81643],[39735,36020],[49801,55830],[35610,13279],[61098,3194],[62877,-10781],[121402,-32154],[13264,336],[64635,-29656],[52886,-44111],[90824,-111157],[53454,-45241],[51656,-95738],[7870,-39166],[3255,-148424],[10028,-97252],[-4691,-71775],[-47494,-88585],[-54267,-68941],[-75251,-75473],[-101818,-65026],[-252735,-105225],[5677,-170109],[-17144,-108057],[-29348,-101240],[-34285,-69325],[-44598,-77585],[-18922,-60009],[-15137,-103255],[-26491,-91250],[-20814,-98454],[3784,-60032],[26492,-79219],[56763,-90048],[48042,-37244],[74590,-50356],[131562,-54917],[183105,-44353],[424070,-97372],[50862,-6075],[168666,8429],[75592,-8429],[155650,-32442],[181458,-52371],[166642,-62890],[120323,137833],[95497,112429],[71485,127318],[44826,116247],[27985,127845],[19622,115093],[13170,31578],[33452,35586],[30276,13591],[68571,14025],[113568,13279],[56442,-26654],[-321,-43152],[-31239,-114878],[-30370,-70886],[-88629,-222217],[-40548,-92978],[-67209,-114325],[-75971,-121674],[-73662,-137955],[-67002,-118023],[114,-84814],[-9914,-83109],[-24939,-91226],[-49481,-98212],[-75630,-112838],[-50691,-69564],[-81513,-103713],[-114930,-118697],[-125828,-115022],[-96691,-84189],[-172696,-115502],[-89235,-49155],[-36841,-10325],[-29725,3433],[-31354,20243],[-45336,52781],[-30880,52612],[-6130,34268],[-58998,61856],[-24238,53598],[-24957,38852],[-42991,21227],[-119054,7901],[-55989,-9005],[-30219,-16137],[-61986,-65988],[-24069,-55036],[-15800,-62194],[-13794,-86759],[-33415,-126164],[113,-59072],[20549,-172869],[37050,-85510],[66339,-89522],[96442,-98524],[20437,-27856],[33813,-100014],[794,-36595],[-56274,-45722],[-69062,-49393],[-57977,-71967],[-29348,-62674],[-21550,-107987],[-23501,-158894],[-2423,-124146],[10350,-55182],[3142,-71559],[-3842,-136730],[-11883,-83132],[-28287,-77827],[-53870,-101262],[-136632,-268177],[-89936,-48938],[-66395,166817],[-34059,355393],[20813,148879],[18922,96053],[-60548,24013],[-66226,50403],[-56765,52852],[-45412,52805],[-123576,134641],[-95934,62266],[-145601,67212],[-89027,19210],[-141911,-28792],[-71902,-76841],[-28382,-84070],[-24599,-156036],[-37843,-76841],[-119225,-146479],[-183539,177695],[-75688,24014],[-162725,-14409],[-158942,-62434],[-157068,-144077],[-153264,-232925],[-85147,-38421],[-57693,-3242],[-22932,6076],[-128156,106521]],[[48262088,80400755],[-141931,2402],[-105961,16833],[-136237,9581],[-425641,-19329],[-31599,44591],[-28022,51171],[-25999,10471],[-40284,-10999],[-41817,-35226],[-27530,-6027],[-25487,23124],[-4070,35756],[15800,39069],[46415,59384],[24484,64354],[53056,87455],[37731,39597],[38769,20339],[100986,18683],[33662,-1682],[58619,-29728],[51504,14817],[57654,48385],[63765,83590],[22460,49515],[11241,42335],[5146,111707],[16349,45649],[59734,128686],[20416,36308],[-18845,48385],[-29593,4443],[-14437,-11189],[-7513,-50427],[-38808,-85776],[-37768,-54989],[-29592,-33546],[-47437,-31338],[-71921,-22524],[-52016,1106],[-57635,9389],[-141269,40750],[-77521,45143],[-42309,42913],[-138714,156252],[-32640,22020],[-41305,16497],[-21930,21467],[-1098,48481],[22971,63804],[40813,67643],[21931,26415],[69895,35203],[77542,4394],[34172,-8837],[62233,-48409],[43861,-22021],[30596,-34122],[10691,-67091],[23992,-30762],[28118,-18369],[111202,792],[39224,37821],[16841,39020],[-3046,69351],[-11714,61617],[-20889,58856],[6679,137545],[6641,39045],[15365,144679],[2062,63274],[-12222,71487],[-25999,89688],[-24995,50619],[-37201,130366],[-5090,57248],[3595,42911],[17881,60513],[30635,66539],[31655,30256],[26548,7684],[50521,-4970],[45412,-26990],[111750,-43511],[41836,-29176],[43860,-51173],[16822,-52299],[24484,-21996],[30105,13183],[17900,35755],[3651,144679],[15364,109451],[-20832,149071],[-11220,46779],[13302,35731],[38296,21443],[49310,3362],[58713,-12631],[65338,3891],[69915,26990],[94418,23701],[83710,2232],[47473,-9868],[37277,-40727],[42364,19835],[14797,23676],[6623,37412],[-4086,42335],[-42915,144127],[-9215,68221],[-24939,82677],[10085,51531],[38808,57776],[-6129,51147],[-25564,40149],[-21967,18155],[-43407,16449],[-29102,-2738],[-74532,-21515],[-132223,-63323],[-71467,-14841],[-38809,18660],[-42915,38492],[-35761,41183],[-11844,50043],[12146,69324],[13548,13255],[19755,54462],[36235,62218],[48987,62746],[65355,41831],[42367,57775],[18354,34122],[49499,125443],[30142,-552],[13793,-13735],[2555,-39597],[-7625,-89112],[15307,-53333],[30104,-74897],[35837,-48363],[39850,-26366],[53642,-13735],[74041,-10446],[72507,-1632],[56179,20939],[86906,70647],[22480,25837],[50426,20724],[36253,33546],[35233,73696],[3556,86398],[-4598,36308],[-16859,52228],[-32678,47305],[-48022,42336],[-161496,106377],[-62839,48385],[-125167,116560],[-25562,37436],[-18923,71487],[-52165,152362],[-4107,47833],[-28099,13785],[-35761,1632],[-28117,15393],[-12281,27494],[9178,52781],[30160,28070],[57730,13785],[50067,-6581],[27076,6029],[8667,26437],[-21345,45601]],[[5708136,37168429],[64447,23723],[50086,69471],[13888,35611],[-1740,94299],[20190,64090],[17577,4634],[18922,-30015],[26112,-13159],[35704,5211],[18866,38684],[-2781,61041],[21967,40630],[74948,3962],[8932,14936],[-8836,28575],[-77391,54583],[-6016,96772],[6207,48098],[13585,25093],[42762,34051],[16897,-985],[19281,-73407],[40398,-53717],[9935,-32083],[-6586,-46921],[8402,-18994],[40037,9414],[13114,39404],[-9555,29320],[7606,59217],[46035,30905],[12868,24301],[-189,34146],[11769,24300],[28250,-624],[34229,-52395],[22516,-17170],[52110,-1633],[42517,-17697],[17503,9436],[-739,25983],[-28097,39789],[-5697,42599],[40323,46921],[51959,25671],[21609,36114],[12753,103377],[-4996,27279],[-30408,21107],[-28457,-6844],[-71846,-43151],[-43747,21035],[-9365,46561],[11447,13400],[57390,30376],[32148,48098],[-18411,43416],[-43349,40004],[-29688,50621],[-3937,28958],[15232,38278],[49575,2640],[63577,-17264],[23291,15200],[-5638,32345],[-56196,53381],[-28024,49083],[-18260,18730],[-16063,35635],[-27928,34698],[-73681,30281],[-22044,45096],[36385,79555],[-14721,70527],[-33529,51747],[-30312,10783],[-38203,44832],[-17918,59408],[23615,30329],[25411,3601],[18695,-14888],[12564,-29223],[27455,-26392],[37161,8406],[4030,58688],[-13188,27854],[-33075,33187],[-34513,69301],[-35005,47473],[-26490,46849],[8837,-600],[23178,68341],[16690,10349],[58979,-9821],[18600,2858],[32658,41134],[2517,30568],[-63160,-9580],[-42575,-24],[-19318,30520],[102535,125900],[45034,-1704],[19036,60152],[-3161,23173],[-21683,27759],[-46416,-12199],[-30255,4705],[9574,42768],[24731,31601],[-21382,82220],[25090,31889],[37919,32851],[170,32802],[-17974,16737],[-28327,-27495],[-27417,-43801],[-51902,-12078],[-40700,16064],[-42007,38902],[-20718,66227],[-30219,23006],[-64238,6266],[-35952,9198],[-46640,36956],[-69027,77082],[-19451,42623],[19205,75568],[11297,22164],[-21137,25070],[-89441,11045],[-29915,18755],[-11713,35515],[27720,33762],[75441,18153],[106377,74921],[7872,38108],[-45261,94324],[-5072,59912],[24202,32585],[89707,69303],[27588,50906],[-6718,67021],[-11144,22380],[-55421,71367],[3821,31913],[22573,20579],[4334,42287],[-25033,35947],[-12621,36187],[13435,44520],[113170,139972],[19224,-4634],[48552,-62265],[20625,2232],[33169,27808],[19603,30400],[5677,68364],[-947,106930],[23690,23798],[36804,9028],[86112,-21995],[51788,17721],[45506,68917],[130863,61809],[36442,-1777],[47607,-33234],[30690,-39860],[2044,-23078],[-74683,-52323],[-12981,-42335],[16746,-17145],[94210,5714],[20946,7445],[10086,26773],[-2517,118649],[26813,34434],[76443,-2834],[17919,16689],[-1987,108827],[-14873,41135],[-47852,69973],[-14399,41855],[-10011,78042],[-19375,22380],[-57218,13471],[-31259,26271],[7569,31721],[33434,38421],[22762,63899],[24957,13231],[45412,38781],[-1684,56238],[-57691,102655],[23349,81621],[-15667,53069],[16953,42455],[38903,10925],[18241,17986],[7265,26293],[-6905,45841],[-39509,61473],[-4389,34027],[14286,31985],[23822,24326],[47038,25982],[72641,83877],[11864,24086],[5601,62697],[32998,9605],[29480,22309],[9481,34338],[-11864,58928],[5751,35947],[41042,51363],[46092,34460],[41268,7180],[43917,-16257],[28496,20386],[27929,50475],[43935,109452],[18449,35371],[27966,6723],[38240,-12607],[54666,-55061],[32866,25934],[4239,65028],[24920,49130],[49365,-2065],[57845,-21373],[26962,13328],[23483,35780],[17408,42502],[89101,37269],[48552,88799],[20247,51893],[9101,88391],[38828,60392],[89574,101216],[1306,23724],[-16102,26726],[-38884,26824],[-20908,30809],[-1552,58591],[50275,40317],[19602,32634],[12299,43943],[8856,71752],[60890,82820],[4768,38253],[-19755,110436],[54098,30064],[4711,-29992],[20492,-46081],[15174,2642],[25885,35802],[24580,-8956],[12393,-57967],[17200,-3146],[49462,43511],[-30029,14745],[-35894,32272],[-15592,30522],[-64863,32201],[2479,24684],[38864,-13495],[26452,22669],[9405,27207],[-14513,73647],[-44201,-10229],[-51902,-3002],[-37692,18177],[-15781,32467],[21760,25357],[23880,-3290],[55137,-43920],[43748,6293],[17917,42982],[-28589,101816],[-41155,58303],[-59792,22595],[-32338,19931],[-25393,44664],[-1872,39839],[26055,30136],[39584,21515],[37181,10542],[70955,1489],[17939,20602],[13225,39887],[-1230,23027],[-63558,100952],[-13263,43031],[-30540,23628],[-13983,22981],[813,61930],[7342,37267],[20834,16377],[35571,-24156],[10123,-35516],[31259,-27183],[45279,21540],[13227,47210],[-10843,54316],[5223,44280],[21911,3171],[5772,-78956],[23784,-23003],[28421,15512],[31410,30040],[46924,16401],[54476,8020],[57540,15512],[10274,86039],[-22024,57391],[-14816,63083],[14967,67715],[18601,37677],[31825,23965],[54986,-20339],[62972,5691],[12299,37077],[-24315,61665],[-47416,41565],[-45885,90794],[8362,20987],[33662,7421],[65602,-2330],[33529,29224],[10085,63587],[-34059,63802],[-17143,57750],[-2100,33499],[8135,88727],[29254,32130],[32052,-2786],[39699,-30064],[71144,-9028],[41742,25861],[59659,12295],[66434,37629],[53491,35539],[30861,37651],[12149,49515],[-8439,23390],[-49387,71871],[-15439,67140],[7853,27351],[42610,46057],[77011,37363],[64505,60249],[7114,34026],[-40152,34722],[-21590,48796],[67664,80827],[12111,31842],[-9878,48722],[-37408,66467],[-45809,52037],[-34627,21924],[-68875,25478],[-43689,504],[-52753,37867],[1702,38710],[24276,15151],[58979,20508],[128421,128157],[-11467,53260],[-32790,31434],[-42726,65412],[-4465,24012],[14248,62674],[54721,143190],[-1779,22020]]],"transform":{"scale":[5.284964052849643e-8,4.1644160416441595e-8],"translate":[-94.043352,28.855127]}}
.PHONY: all clean
.SECONDARY:
# Download 90-meter SRTM tiles for Louisiana
zip/srtm_%.zip:
@mkdir -p $(dir $@)
@curl -sS -o $@.download 'http://srtm.csi.cgiar.org/SRT-ZIP/SRTM_V41/SRTM_Data_GeoTiff/$(notdir $@)'
@mv $@.download $@
zip/tl_2015_us_county.zip:
@mkdir -p $(dir $@)
@curl -sS -o $@.download 'ftp://ftp2.census.gov/geo/tiger/TIGER2015/COUNTY/$(notdir $@)'
@mv $@.download $@
# Unzip
tif/srtm_%.tif: zip/srtm_%.zip
@mkdir -p $(dir $@)
@rm -rf tmp && mkdir tmp
@unzip -q -o -d tmp $<
@cp tmp/* $(dir $@)
@rm -rf tmp
shp/tl_2015_us_county.shp: zip/tl_2015_us_county.zip
@mkdir -p $(dir $@)
@rm -rf tmp && mkdir tmp
@unzip -q -o -d tmp $<
@cp tmp/* $(dir $@)
@rm -rf tmp
# Extract Louisiana from U.S.
shp/louisiana.shp: shp/tl_2015_us_county.shp
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'ESRI Shapefile' \
-t_srs "EPSG:4326" \
$@ $< \
-dialect sqlite \
-sql "SELECT Geometry, \
STATEFP \
FROM tl_2015_us_county \
WHERE STATEFP = '22'"
# Convert to GeoJSON
geojson/louisiana.json: shp/louisiana.shp
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'GeoJSON' \
$@ $<
# Convert to TopoJSON
topojson/louisiana.json: geojson/louisiana.json
@mkdir -p $(dir $@)
@topojson \
--properties \
--no-quantization \
-o $@ \
-- $<
# Simplify TopoJSON
louisiana.json: topojson/louisiana.json
@mkdir -p $(dir $@)
@topojson \
--properties \
--spherical \
-q 1e8 \
-s 1e-10 \
-o $@ \
-- $<
# Merge tiles
tif/louisiana-merged.tif: \
tif/srtm_17_07.tif \
tif/srtm_18_07.tif \
tif/srtm_19_07.tif \
tif/srtm_17_06.tif \
tif/srtm_18_06.tif \
tif/srtm_19_06.tif \
tif/srtm_17_05.tif \
tif/srtm_18_05.tif \
tif/srtm_19_05.tif
@mkdir -p $(dir $@)
@gdal_merge.py \
-o $@ \
-init "255" \
tif/srtm_*.tif
# Convert to Mercator, from WGS 84
tif/louisiana-reprojected.tif: tif/louisiana-merged.tif
@mkdir -p $(dir $@)
@gdalwarp \
-co "TFW=YES" \
-s_srs "EPSG:4326" \
-t_srs "EPSG:3857" \
$< \
$@
# Crop to Louisiana shape
tif/louisiana-cropped.tif: tif/louisiana-reprojected.tif shp/louisiana.shp
@mkdir -p $(dir $@)
@# Use nodata=255 to ignore white.
@gdalwarp \
-cutline shp/louisiana.shp \
-crop_to_cutline \
-dstalpha \
-srcnodata 255 \
-dstnodata 255 \
tif/louisiana-reprojected.tif $@
tif/louisiana-color-crop.tif: tif/louisiana-cropped.tif
@rm -rf tmp && mkdir -p tmp
@gdaldem \
hillshade \
$< tmp/hillshade.tmp.tif \
-z 5 \
-az 315 \
-alt 60 \
-compute_edges
@gdal_calc.py \
-A tmp/hillshade.tmp.tif \
--outfile=$@ \
--calc="255*(A>220) + A*(A<=220)"
@gdal_calc.py \
-A tmp/hillshade.tmp.tif \
--outfile=tmp/opacity_crop.tmp.tif \
--calc="1*(A>220) + (256-A)*(A<=220)"
@rm -rf tmp
tif/louisiana-color.tif: tif/louisiana-reprojected.tif
@rm -rf tmp && mkdir -p tmp
@gdaldem \
hillshade \
$< tmp/hillshade.tmp.tif \
-z 5 \
-az 315 \
-alt 60 \
-compute_edges
@gdal_calc.py \
-A tmp/hillshade.tmp.tif \
--outfile=$@ \
--calc="255*(A>220) + A*(A<=220)"
@gdal_calc.py \
-A tmp/hillshade.tmp.tif \
--outfile=tmp/opacity_crop.tmp.tif \
--calc="1*(A>220) + (256-A)*(A<=220)"
@rm -rf tmp
louisiana-crop.png: tif/louisiana-color-crop.tif
@convert \
-resize x670 \
$< $@
louisiana.png: tif/louisiana-color.tif
@convert \
-resize x670 \
$< $@
clean:
@rm -f *.json louisiana*.png
@rm -rf geojson
@rm -rf shp
@rm -rf tif
@rm -rf topojson
all: louisiana.png \
louisiana-crop.png \
louisiana.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment