Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active December 20, 2022 04:47
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mbostock/6713736 to your computer and use it in GitHub Desktop.
Save mbostock/6713736 to your computer and use it in GitHub Desktop.
Ocean
license: gpl-3.0
redirect: https://observablehq.com/@d3/oceans
build
node_modules

One of the few cases where you want a counterclockwise polygon because the ocean covers greater than one hemisphere. The example demonstrates improved antimeridian stitching in TopoJSON 1.4.1.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
background: #fcfcfa;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 960,
speed = 1e-2,
start = Date.now();
var sphere = {type: "Sphere"};
var projection = d3.geo.orthographic()
.scale(width / 2.2)
.clipAngle(90)
.translate([width / 2, height / 2])
.precision(.5);
var graticule = d3.geo.graticule();
var canvas = d3.select("body").append("canvas")
.attr("width", width)
.attr("height", height);
var context = canvas.node().getContext("2d");
var path = d3.geo.path()
.projection(projection)
.context(context);
d3.json("topo.json", function(error, topo) {
if (error) throw error;
var ocean = topojson.feature(topo, topo.objects.ocean),
grid = graticule();
d3.timer(function() {
projection.rotate([speed * (Date.now() - start), -15]);
context.clearRect(0, 0, width, height);
context.beginPath();
path(sphere);
context.fillStyle = "#fff";
context.fill();
context.beginPath();
path(grid);
context.lineWidth = .5;
context.strokeStyle = "#ddd";
context.stroke();
context.beginPath();
path(ocean);
context.fillStyle = "rgba(70,130,180,.5)";
context.fill();
context.beginPath();
path(sphere);
context.lineWidth = 1.5;
context.strokeStyle = "#000";
context.stroke();
});
});
d3.select(self.frameElement).style("height", height + "px");
</script>
all: topo.json
build/ne_%_ocean.zip:
mkdir -p build
curl -o $@ --raw 'http://www.nacis.org/naturalearth/$*/physical/ne_$*_ocean.zip'
build/ne_%.shp: build/ne_%.zip
unzip -d build $<
touch $@
topo.json: build/ne_110m_ocean.shp
node_modules/.bin/topojson \
--no-force-clockwise \
-q 1e5 \
-- \
ocean=build/ne_110m_ocean.shp \
> $@
{
"name": "anonymous",
"version": "0.0.1",
"private": true,
"devDependencies": {
"topojson": "1"
}
}
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"ocean":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0]]},{"type":"Polygon","arcs":[[1],[2],[3],[4],[5],[6],[7],[8],[9],[10],[11],[12],[13],[14],[15],[16],[17],[18],[19],[20],[21],[22],[23],[24],[25],[26],[27],[28],[29],[30],[31],[32],[33],[34],[35],[36],[37],[38],[39],[40],[41],[42],[43],[44],[45],[46],[47],[48],[49],[50],[51],[52],[53],[54],[55],[56],[57],[58],[59],[60],[61],[62],[63],[64],[65],[66],[67],[68],[69],[70],[71],[72],[73],[74],[75],[76],[77],[78],[79],[80],[81],[82],[83],[84],[85],[86],[87],[88],[89],[90],[91],[92],[93],[94],[95],[96],[97],[98],[99],[100],[101],[102],[103],[104],[105],[106],[107],[108],[109],[110],[111],[112],[113],[114],[115],[116],[117],[118],[119],[120],[121],[122],[123],[124]]}]}},"arcs":[[[63641,72257],[-146,300],[-303,671],[27,383],[-252,541],[276,587],[269,94],[127,338],[259,119],[321,251],[236,-139],[278,27],[50,-352],[-50,-555],[-243,85],[-236,-93],[-11,-416],[-270,54],[9,-186],[154,-144],[125,-511],[322,-194],[53,-198],[-68,-238],[15,-139],[87,-368],[28,417],[224,145],[80,-326],[202,-341],[-244,-183],[-262,140],[-61,-480],[184,-33],[-71,-390],[216,-193],[-40,-595],[52,-403],[-27,-133],[-434,-151],[-395,98],[-193,286],[-263,119],[-88,419],[-7,282],[102,134],[47,199],[49,442],[228,46],[-85,154],[-130,26],[-141,404]],[[0,510],[99520,137],[-636,179],[-767,-145],[-208,168],[-53,44],[-800,122],[-142,279],[-636,179],[-419,178],[-386,179],[-338,190],[-239,212],[-141,234],[-370,190],[147,212],[119,212],[49,267],[234,324],[528,22],[424,123],[501,89],[-109,246],[-517,78],[-130,201],[-60,212],[-158,223],[-6,212],[28,257],[70,212],[115,234],[201,178],[190,213],[125,223],[360,122],[163,201],[364,90],[131,234],[98,201],[125,256],[147,201],[32,223],[-195,168],[-289,111],[-288,134],[-310,78],[-332,45],[-332,-11],[-299,33],[-321,-11],[-310,89],[-212,201],[-316,134],[-136,223],[-321,67],[-337,56],[-245,134],[-212,178],[-245,157],[-180,-190],[-315,11],[-283,89],[-375,90],[-360,100],[-310,145],[-299,134],[-179,167],[54,212],[-196,179],[-310,45],[-364,22],[-262,-11],[-364,0],[-250,-34],[-365,-11],[-315,-33],[-234,100],[-115,190],[-92,234],[-49,257],[-174,156],[-11,-234],[-76,-279],[-251,-45],[-255,-56],[-316,0],[-283,-22],[-299,-89],[-250,-101],[-256,56],[-245,56],[-250,0],[-261,-89],[-288,55],[-251,78],[-250,-44],[-185,-179],[-218,-178],[-288,-45],[-348,56],[-332,145],[-190,145],[-305,-22],[-196,178],[-141,179],[-218,111],[-207,-122],[-310,-23],[-190,-167],[-229,-156],[-299,-78],[-299,-67],[-256,0],[-272,11],[-354,346],[-185,201],[-212,156],[-179,78],[-348,-424],[-191,-156],[-141,-190],[-185,-190],[-289,78],[-255,-78],[-300,0],[-250,-78],[-212,123],[-234,33],[-174,-55],[-261,11],[-283,44],[-267,-67],[-266,45],[-234,112],[-131,267],[-103,157],[-142,-380],[-201,-156],[-305,34],[-272,-67],[-250,-56],[-277,56],[-202,-90],[-157,-100],[-153,-190],[-234,-111],[-272,-145],[-190,-212],[-82,-212],[-136,-224],[-283,-89],[-277,-67],[-316,-22],[-174,-56],[-147,-279],[-70,-201],[-174,-167],[-153,-179],[-92,-212],[-153,-223],[-321,-100],[-321,56],[-212,178],[131,234],[141,212],[38,224],[-310,-12],[-38,224],[218,212],[266,145],[33,256],[11,145],[-229,592],[-277,0],[-272,44],[-261,67],[-272,67],[-261,123],[-240,-234],[-223,-112],[-266,34],[-229,156],[-185,156],[-332,67],[-168,156],[-245,190],[-27,245],[-223,157],[-262,55],[-244,34],[-256,-45],[-278,-89],[-228,-112],[-234,-156],[-54,-201],[-229,-134],[-261,12],[-180,-157],[-250,-201],[-261,67],[-218,-122],[-228,-134],[-218,-123],[-326,-112],[-272,-78],[-289,-189],[-250,-101],[-98,-245],[-283,-134],[-206,145],[-196,201],[-289,-45],[-239,134],[-109,201],[-288,89],[-158,-190],[-152,-312],[-212,-156],[-283,-56],[-261,-100],[-245,-157],[-294,-67],[-278,-78],[-310,-11],[-315,0],[-327,-22],[-304,-101],[-180,168],[-130,189],[-300,34],[-310,67],[-294,11],[-326,-22],[-299,-67],[-229,-212],[-108,212],[-365,33],[-283,-156],[-125,-223],[-316,-112],[-157,201],[-202,268],[-288,-78],[-207,145],[-168,-201],[-240,-123],[-310,-89],[-283,-134],[-310,-78],[-315,-78],[-283,-100],[-305,-190],[-120,234],[-315,34],[-348,-67],[-360,-101],[-331,34],[-71,212],[-299,56],[-142,-224],[-11,-212],[-332,23],[-136,189],[-331,34],[-202,-156],[-136,-268],[-217,-223],[-283,-179],[-305,-134],[-288,-111],[-185,-179],[-98,-234],[294,-134],[-82,-223],[-261,-168],[-245,-189],[-386,-179],[-305,-134],[-337,-134],[-343,-111],[-408,-78],[-430,-23],[-190,-44],[-376,-78],[-380,-101],[-251,-223],[-337,-167],[-337,-168],[-468,-134],[-397,-134],[-125,-122],[-39,-424],[77,-212],[544,0],[571,89],[539,22],[0,-212],[119,-201],[196,-200],[-430,-145],[-614,-101],[-577,-78],[-522,-123],[-550,-123],[-702,-11],[-386,-167],[-180,-246],[-560,134],[-680,79],[-691,-12],[-495,-156],[-577,-145],[-484,-178],[-457,-168],[-337,-201],[-136,212],[-272,268],[-517,190],[-473,167],[-681,156],[-690,90],[-506,178],[-398,179],[-500,156],[-588,89],[-353,212],[-60,212],[-327,190],[11,223],[17,234],[397,145],[479,-55],[310,178],[-174,201],[-311,156],[-424,101],[-87,223],[468,0],[441,44],[489,-22],[446,22],[223,235],[376,123],[348,122],[370,90],[419,212],[169,189],[125,201],[370,78],[163,190],[152,234],[38,301],[-87,224],[-22,223],[-81,212],[-38,524],[-82,212],[-130,190],[-82,223],[-60,212],[-114,223],[-212,179],[-229,134],[-147,178],[-98,235],[44,212],[174,245],[163,179],[153,189],[261,45],[190,134],[-130,189],[-17,212],[38,224],[136,167],[202,145],[190,134],[229,56],[206,-89],[120,122],[283,168],[103,189],[-163,145],[-218,-67],[-157,-178],[-202,-145],[-228,-67],[-196,-112],[-174,-178],[-267,-34],[-174,-145],[-152,-156],[-109,-245],[-223,-168],[-190,-178],[-180,-212],[-152,-168],[-136,-256],[32,-224],[55,-245],[-44,-223],[-109,-234],[-130,-213],[-27,-223],[16,-223],[71,-201],[87,-223],[98,-223],[87,-223],[32,-234],[-65,-246],[-163,-179],[-272,-122],[-354,-78],[-392,-67],[-337,-78],[-283,-145],[-288,-123],[-370,-56],[-190,190],[-283,122],[-381,-55],[-278,223],[-108,-201],[-218,-212],[-332,123],[-337,67],[-365,22],[-228,223],[-348,-56],[-321,101],[-224,256],[-239,-435],[-370,-44],[-283,133],[-342,-66],[-381,-112],[-359,-78],[-376,33],[-119,201],[-283,168],[-327,89],[-359,-34],[-364,34],[-213,78],[98,-424],[60,-212],[158,-212],[359,-45],[136,-201],[180,-189],[-147,-246],[-381,101],[-376,78],[-418,22],[-354,-100],[-392,-34],[-321,156],[-375,67],[-332,212],[-288,-167],[-180,190],[-98,201],[-179,178],[-300,-201],[-331,-100],[-349,123],[-337,-90],[-283,-167],[-381,-22],[-413,11],[-403,11],[-386,-22],[-414,55],[-375,56],[-364,-78],[-381,-11],[-370,100],[-414,-78],[-190,45],[-218,33],[-337,-122],[-299,-123],[-376,-134],[-375,-56],[-397,-11],[-321,-145],[-425,-112],[-163,190],[-359,-100],[-81,-201],[97,-212],[11,-212],[-419,-56],[-315,-190],[-348,-156],[-370,-123],[-441,-55],[-228,245],[-441,-78],[-457,-56],[-250,179],[-136,55],[87,-647],[217,-201],[359,-178],[180,-212],[539,-56],[500,-78],[571,-34],[408,-167],[359,-156],[98,-234],[-223,-190],[-457,-212],[-495,-168],[-402,190],[-642,-89],[-675,33],[430,-178],[212,-201],[462,-156],[55,-235],[-104,-212],[-103,-234],[-49,-256],[745,-123],[234,-223],[898,-134],[1094,-23],[-60,-267],[-773,-157],[-734,-167],[-669,179],[-1181,111],[-800,-156],[-1072,134],[-625,178],[-789,145],[-419,190],[-130,68],[-265,133],[-816,-100],[-63,-33],[-352,-237],[-402,237],[-29,9],[-41,2],[-41,-25],[-81,-51],[-94,-58],[-78,-48],[-32,-20],[-501,179],[-245,-332],[-16,5]],[[0,39322],[23,31],[34,273],[-57,-26],[99836,-178],[-88,-31],[-139,-117],[36,-212],[177,120],[-99822,140]],[[99999,89473],[-354,-237],[49,-181],[-99694,29],[363,35],[286,136],[24,78],[-402,163],[-235,1],[-36,-24],[99999,0]],[[0,85751],[158,242],[-126,268],[333,135],[-60,-211],[151,-200],[315,74],[283,-93],[62,-247],[369,-166],[212,-199],[260,-17],[111,119],[7,556],[455,59],[276,248],[-544,533],[-754,85],[64,-414],[-187,142],[24,354],[-728,566],[-681,435],[99610,249],[-799,271],[-578,-34],[-886,159],[-123,-252],[224,-364],[-344,-183],[-484,507],[-526,-63],[-525,111],[-492,-15],[-372,-116],[-342,162],[33,416],[-231,236],[-553,94],[-1122,-108],[-727,435],[-236,338],[-2509,370],[-367,-247],[201,-529],[-455,80],[-204,-159],[-538,175],[-473,-153],[-446,256],[-268,-598],[-437,232],[-349,448],[165,238],[-128,365],[-449,300],[-443,-4],[-590,100],[-15,-435],[-1162,85],[-67,266],[-892,94],[-444,-90],[-122,-148],[-142,366],[-250,-108],[-410,144],[-345,80],[209,168],[730,317],[307,168],[69,296],[-223,213],[-626,278],[-812,8],[-254,-139],[-75,282],[-629,87],[378,140],[-476,185],[-656,-234],[-265,-242],[-77,-246],[-510,9],[-624,-302],[-227,128],[-729,-53],[-93,-156],[-734,-76],[-540,-283],[-319,-15],[-321,-374],[226,-298],[-602,-75],[-668,26],[-484,-115],[28,-607],[247,-474],[-513,324],[-577,-30],[-465,-224],[127,-410],[-297,104],[109,549],[-145,316],[-139,-13],[64,-405],[-497,-384],[361,-464],[-222,-572],[67,-317],[304,-46],[-130,-376],[162,-324],[-240,-271],[-74,-282],[-306,-146],[-110,-205],[-318,84],[544,809],[120,380],[-307,349],[63,780],[-89,398],[-173,182],[263,461],[-58,317],[-735,150],[-207,-112],[-182,-517],[-512,-516],[8,-182],[149,-444],[-92,-270],[335,-56],[8,-121],[282,-301],[-186,-298],[-1006,651],[-385,177],[-820,173],[-145,-188],[291,-330],[-315,-377],[-317,343],[-412,-236],[-521,-16],[-199,-194],[-344,59],[273,346],[-209,28],[-969,-489],[-581,-272],[-68,-363],[-429,-123],[-218,195],[-2,316],[351,71],[-158,319],[-777,182],[204,-353],[-136,-340],[231,-340],[-161,-391],[-260,199],[-256,33],[-647,-558],[187,-417],[-234,-139],[-672,355],[-183,-207],[174,-254],[-36,-276],[-217,148],[-358,174],[-36,846],[-453,417],[204,72],[1240,-433],[454,152],[308,299],[-18,379],[-213,271],[-1050,644],[-761,135],[-456,345],[-286,-198],[-305,357],[358,153],[-869,416],[-499,-113],[-506,25],[-423,-472],[-457,31],[-610,-250],[-763,-714],[-465,-428],[-668,-1100],[-508,-794],[-549,-587],[-733,-478],[-256,-367],[88,-1314],[99,-612],[385,-290],[370,133],[548,659],[187,-350],[211,-805],[232,-646],[89,-538],[321,26],[158,451],[337,-55],[157,534],[106,956],[289,133],[255,642],[-265,316],[-198,402],[202,801],[537,490],[441,458],[-43,349],[269,397],[478,161],[387,-269],[28,-241],[-185,-119],[-635,-617],[-252,-358],[-133,-331],[135,-514],[-62,-561],[269,-187],[161,-311],[452,120],[489,209],[504,45],[291,-270],[-316,-315],[-287,-17],[-301,94],[-350,-82],[-351,-159],[24,-327],[176,-202],[102,71],[-32,-336],[-53,-437],[-223,-11],[-221,426],[-262,-195],[-136,-358],[-10,-428],[59,-479],[-383,-185],[-63,-250],[-268,7],[-21,139],[-277,96],[-350,-193],[-434,-263],[-189,-167],[-132,181],[-313,225],[-156,-156],[-283,-107],[3,202],[-281,133],[-4,220],[-76,277],[200,410],[83,-62],[68,215],[-151,86],[-33,160],[82,185],[9,293],[-223,-161],[-98,-157],[-244,-35],[-80,-171],[-46,-153],[8,-583],[113,-316],[13,-323],[63,-213],[-188,-281],[-52,126],[-232,-31],[-54,-121],[-231,16],[-380,-238],[-244,-838],[-143,-156],[-222,-113],[-243,-115],[-84,-466],[-646,-444],[-263,244],[88,-645],[-466,147],[-360,-124],[28,-415],[424,-219],[205,-288],[287,-598],[-53,-1134],[-144,-342],[-449,19],[-230,-30],[-296,97],[-373,-3],[-340,102],[-393,-411],[114,-247],[-14,-405],[12,-192],[56,-205],[6,-241],[-58,-342],[-20,-230],[-111,-207],[-22,-373],[67,-216],[124,-52],[26,-350],[-42,-446],[143,63],[146,-80],[112,147],[259,-88],[79,-327],[103,-193],[136,-47],[106,215],[174,201],[265,-11],[352,9],[197,438],[210,113],[60,371],[160,254],[-108,325],[107,464],[171,315],[25,192],[356,120],[263,379],[-15,331],[32,343],[404,185],[548,-154],[252,321],[115,42],[161,264],[128,77],[226,-188],[138,-66],[86,-563],[189,-328],[254,-370],[217,-257],[206,-37],[120,-229],[179,-104],[82,-245],[115,-72],[85,-287],[108,-330],[-60,-121],[-57,-306],[-1,-174],[116,44],[148,488],[116,34],[33,297],[-200,211],[116,369],[242,-94],[154,-266],[52,204],[-29,107],[-238,296],[-204,173],[-249,205],[78,114],[-68,126],[-217,-4],[-309,459],[-140,471],[-261,287],[-91,290],[34,162],[-15,283],[226,202],[221,-83],[-62,-52],[-10,-9],[-6,-198],[82,-191],[85,246],[179,-90],[5,-192],[127,-239],[-56,-43],[233,-419],[254,-169],[161,-205],[261,-211],[120,-113],[78,-186],[59,-44],[46,-90],[-38,-176],[-23,-389],[24,-271],[154,-191],[5,-126],[48,-40],[18,-162],[143,-324],[108,-262],[49,-379],[104,-456],[228,-247],[184,7],[-105,502],[176,60],[-82,291],[257,-151],[-4,321],[-137,166],[-155,262],[105,125],[-139,267],[-62,340],[52,125],[147,-293],[154,0],[141,93],[-192,320],[336,148],[145,-54],[169,-16],[-3,-117],[87,-265],[232,306],[118,176],[330,32],[51,139],[-243,184],[-33,219],[-89,325],[101,407],[144,236],[78,687],[84,-53],[135,122],[-6,147],[215,421],[103,314],[257,70],[19,-213],[432,-143],[80,-131],[-265,-189],[-50,-109],[304,-167],[-61,-268],[154,-115],[377,329],[304,99],[55,203],[-284,-34],[-136,137],[-16,354],[239,212],[260,30],[185,185],[222,45],[249,92],[8,-125],[-410,-232],[156,-225],[-231,-477],[-202,-91],[240,-334],[317,-215],[354,-481],[102,-174],[154,-66],[160,-210],[70,-388],[-42,-244],[-328,-297],[-239,51],[-323,-88],[-399,220],[-485,402],[-459,-12],[-324,-161],[-334,-370],[-529,76],[-117,-433],[-428,-23],[-308,-544],[176,-273],[-135,-442],[203,-316],[165,-567],[303,11],[268,-304],[192,68],[64,236],[300,-19],[225,-306],[421,65],[191,327],[233,-131],[169,49],[-105,-214],[102,-258],[-68,-235],[26,-435],[-5,-20],[-138,-402],[-99,-463],[-8,-6],[-40,-144],[-56,-430],[-74,-266],[19,-32],[-80,-188],[-137,-144],[-217,33],[-222,134],[-65,-186],[-75,283],[-198,72],[-245,-47],[-114,-164],[-214,-180],[-129,89],[-275,168],[-268,150],[-369,-9],[-68,188],[-276,67],[-88,97],[-104,2],[-95,255],[-375,117],[-192,-78],[-200,-267],[-87,-277],[65,-436],[-133,-262],[-136,-148],[-296,283],[-391,239],[-250,110],[-130,506],[-368,255],[-232,95],[-117,-49],[-326,196],[-106,89],[-70,271],[-143,9],[-53,311],[183,286],[36,493],[-96,141],[2,264],[139,279],[-20,109],[-236,-209],[9,288],[-195,68],[-302,-230],[-190,-34],[-113,132],[-297,-4],[-262,-225],[-140,85],[-459,-46],[-471,-102],[-268,-173],[-175,-235],[-300,-99],[-267,-311],[-121,6],[-288,125],[-264,-39],[-167,242],[-205,3],[-87,-350],[-186,-590],[-206,-235],[-278,-260],[-179,-385],[-37,-300],[-106,-490],[70,-708],[-232,-476],[-139,-151],[-219,-390],[-259,-63],[-144,-226],[-177,-582],[-185,-207],[-100,-352],[-6,-304],[-74,-332],[-93,-92],[-155,-362],[-96,-401],[18,-193],[-91,-297],[-106,-155],[-13,-264],[-12,-241],[146,-246],[72,-270],[-28,-284],[34,-283],[30,-563],[-34,-536],[-78,-281],[24,-307],[-66,-292],[-134,-400],[-122,-108],[138,-203],[115,-443],[-36,-253],[46,-436],[18,-122],[84,-121],[-1,-87],[63,-160],[117,-38],[149,-238],[80,-93],[41,-126],[32,-251],[69,-113],[71,-74],[108,-223],[122,-337],[34,-421],[49,-208],[144,-305],[200,-229],[75,-43],[187,-367],[237,-311],[252,-434],[286,-271],[73,5],[54,-15],[275,209],[193,164],[329,99],[178,7],[194,-111],[126,5],[248,-161],[250,165],[154,195],[436,333],[224,122],[229,66],[245,0],[209,7],[197,-375],[91,-412],[149,-356],[222,-13],[107,128],[105,-30],[289,205],[-3,-158],[71,-81],[56,-256],[127,-96],[108,-377],[-40,-449],[-96,-640],[52,-86],[-56,-422],[-67,-414],[-61,-182],[-9,-190],[169,-588],[184,-470],[285,-574],[228,-603],[74,-429],[39,-176],[-26,-111],[139,-360],[57,-381],[84,-551],[-85,-225],[-15,-119],[68,-341],[74,-346],[83,-203],[15,-323],[-29,-422],[-90,-253],[-159,-373],[-66,-233],[-90,-514],[-15,-244],[-96,-521],[-38,-501],[26,-358],[17,-437],[226,-556],[60,-357],[146,-684],[144,-470],[108,-235],[35,-310],[7,-682],[93,-876],[68,-413],[62,-554],[108,-416],[207,-430],[199,-740],[1,-2],[139,-482],[182,-533],[7,-437],[-89,-104],[90,-381],[-2,-334],[37,-153],[13,79],[120,-255],[94,-10],[117,-203],[127,14],[171,215],[238,90],[286,225],[115,-30],[168,69],[301,-109],[138,108],[169,-84],[36,158],[141,30],[291,220],[209,260],[196,341],[314,588],[158,408],[77,292],[118,290],[54,82],[190,288],[72,257],[32,473],[70,414],[24,300],[-71,38],[-24,240],[122,211],[334,308],[229,192],[116,203],[41,237],[-65,97],[45,265],[8,558],[-49,-28],[-4,170],[-54,334],[-132,431],[23,406],[115,132],[194,405],[107,104],[313,611],[313,276],[254,217],[177,353],[108,395],[83,407],[-49,279],[-11,890],[-34,500],[11,567],[-45,255],[-101,125],[-115,561],[-97,357],[18,272],[-16,173],[76,344],[-8,148],[-178,208],[-16,323],[128,701],[112,188],[54,379],[89,230],[40,401],[104,42],[68,237],[195,228],[63,135],[64,300],[304,690],[259,433],[415,565],[278,461],[327,777],[237,638],[238,834],[172,727],[134,636],[78,616],[59,206],[-1,299],[25,331],[-6,158],[-105,-2],[-132,-195],[-147,-57],[-128,-85],[-89,-11],[-158,-20],[-99,-104],[-138,-37],[-245,-177],[-302,-68],[-262,-145],[-138,2],[-125,238],[-54,235],[-91,105],[-119,156],[158,136],[9,237],[-66,176],[-136,171],[-87,196],[-151,329],[-154,324],[-379,538],[-152,277],[-77,523],[-161,659],[-152,211],[-106,140],[-102,680],[-40,586],[61,103],[-90,559],[-49,117],[-323,511],[-9,370],[55,99],[-249,631],[-90,321],[-102,310],[-210,887],[-171,572],[-115,601],[29,52],[198,-816],[125,-255],[93,-183],[65,99],[75,297],[60,430],[78,229],[9,-83],[-34,-227],[-12,-199],[-44,-313],[139,3],[141,-391],[170,-460],[108,-423],[81,-127],[77,-296],[-15,-128],[92,-327],[150,-117],[130,-223],[159,-631],[-12,-337],[32,-396],[184,-543],[124,-93],[192,-392],[79,-464],[148,-478],[143,-204],[22,-227],[84,-171],[36,-244],[12,-248],[-34,-110],[29,-260],[-56,-28],[80,-234],[54,-421],[46,-168],[-8,-311],[72,-333],[192,-29],[89,78],[138,-13],[42,145],[73,41],[61,151],[70,32],[233,30],[177,109],[163,237],[83,-34],[122,31],[249,402],[444,266],[277,240],[6,194],[54,253],[201,153],[128,32],[186,192],[153,-53],[134,158],[-1,230],[109,143],[173,-4],[63,120],[27,277],[174,213],[128,-2],[26,70],[-34,381],[44,289],[58,135],[126,-30],[104,391],[117,182],[44,159],[101,340],[1,127],[-100,72],[-75,189],[-125,327],[-164,103],[-204,75],[-155,207],[-125,388],[-38,450],[37,104],[26,235],[-35,49],[-80,-194],[-176,-351],[-207,-365],[-190,-385],[-168,17],[-230,15],[-217,-90],[-11,156],[-49,-27],[-53,217],[61,335],[-5,334],[-84,178],[-76,-61],[-75,-299],[18,-414],[-41,139],[-37,187],[-80,160],[-35,191],[27,190],[-16,235],[-190,239],[-47,200],[-137,130],[-109,491],[-89,429],[25,130],[-58,252],[165,-28],[103,222],[177,-189],[149,93],[205,-760],[186,-540],[267,-162],[281,-438],[339,-188],[280,275],[214,102],[133,-101],[118,-698],[314,-74],[302,-131],[523,-172],[391,80],[451,10],[512,108],[215,-434],[83,-409],[203,-144],[326,-484],[82,-223],[-133,-206],[362,-690],[196,-69],[404,341],[54,-533],[-1,-690],[83,-728],[115,-1104],[253,-782],[48,-356],[69,-712],[148,-547],[97,-269],[107,-575],[128,-797],[263,-532],[112,164],[93,387],[253,162],[-84,187],[126,435],[144,27],[1,968],[118,541],[-15,472],[-58,741],[84,434],[130,30],[250,204],[138,140],[1,262],[276,373],[209,359],[311,670],[400,383],[148,337],[-16,429],[343,118],[189,-7],[39,208],[108,-51],[78,-62],[41,103],[118,-115],[87,317],[-25,234],[256,-22],[116,-332],[53,-274],[16,-290],[79,-297],[197,-464],[163,-73],[-34,-206],[218,-656],[58,-533],[-96,-706],[172,-134],[156,-50],[315,406],[183,285],[121,-471],[50,-720],[90,-681],[113,-295],[-23,-621],[94,-337],[-86,-436],[27,-422],[-82,-547],[-30,-355],[53,-316],[45,335],[135,-271],[148,-321],[47,-282],[110,-219],[61,-241],[-30,-415],[100,-310],[38,-472],[161,-380],[32,-291],[329,-452],[263,-421],[197,38],[5,192],[-109,504],[-98,157],[-20,337],[-27,195],[29,260],[-16,383],[-116,381],[-164,344],[-64,53],[-144,296],[-168,66],[-155,326],[-50,493],[-113,520],[-181,18],[-19,412],[90,503],[150,831],[22,627],[245,3],[-41,-447],[238,10],[249,-261],[141,-588],[112,-297],[233,-83],[206,-324],[-78,-385],[101,-366],[346,531],[227,474],[318,367],[232,375],[37,1002],[-127,1053],[-169,458],[-252,352],[-260,744],[-212,600],[61,395],[231,538],[371,487],[131,93],[373,-182],[-66,-221],[73,-413],[154,33],[95,602],[294,87],[388,285],[157,283],[96,-185],[170,253],[313,66],[386,479],[382,526],[258,679],[225,748],[203,616],[155,51],[71,451],[43,464],[-164,177],[-66,304],[174,155],[5,423],[-189,438],[-169,521],[-109,561],[-299,312],[142,399],[270,286],[130,307],[394,159],[-46,298],[-179,16],[-247,221],[-311,-406],[-220,166],[-9,256],[-227,93],[-147,385],[142,266],[272,27],[171,368],[314,396],[242,201],[147,-298],[-220,-383],[58,-222],[-148,-264],[300,156],[204,266],[388,165],[131,-153],[163,-61],[18,-94],[-71,-307],[25,-104],[-65,-67],[-77,-250],[75,-91],[72,-52],[10,-107],[81,47],[34,107],[135,-108],[190,-488],[-206,-96],[123,-592],[-52,-427],[31,-311],[250,49],[222,236],[252,110],[105,313],[-3,656],[-68,369],[-240,672],[-157,249],[-111,93],[32,63],[9,247],[121,152],[185,94],[104,168],[50,101],[143,126],[-10,409],[83,193],[120,193],[106,-34],[43,190],[373,416],[175,-276],[175,7],[370,334],[179,336],[374,658],[377,663],[94,394],[418,824],[126,910],[23,680],[217,569],[-9,485],[-401,626],[-305,37],[-178,-284],[-270,126],[-136,357],[-438,72],[1065,1343],[900,1111],[913,169],[850,-98],[344,280],[431,-87],[-20,-411],[430,58],[620,149],[-230,349],[696,955],[717,193],[227,-700],[705,625],[167,469],[337,48],[-223,-803],[-499,-454],[-479,-585],[-496,-717],[-431,-128],[-15,-266],[-234,-340],[-134,-789],[155,-1266],[119,-831],[103,-392],[400,531],[83,578],[415,139],[96,650],[486,291],[-116,245],[119,477],[258,21],[37,829],[-316,127],[-10,230],[333,552],[90,374],[371,-78],[268,244],[126,-212],[724,447],[397,-393],[102,258],[403,350],[425,400],[247,66],[777,429],[518,-124],[71,151],[-32,235],[-128,154],[-166,469],[-250,303],[360,-42],[-99640,250],[0,3]],[[89889,90439],[-34,150],[-394,218],[-348,-53],[-263,-225],[49,-30],[569,-64],[421,4]],[[90301,91778],[-1004,302],[-734,25],[-366,-107],[-149,-392],[550,-370],[461,135],[1023,-16],[219,423]],[[91869,91505],[-697,149],[-518,86],[-66,-184],[516,-225],[444,-51],[321,225]],[[56867,93082],[-401,129],[-110,214],[-575,-114],[167,-182],[-191,-147],[490,-132],[620,232]],[[55069,94135],[-350,199],[-408,-20],[-105,-195],[-396,-8],[-152,200],[-757,-204],[216,-446],[541,-481],[416,-165],[-252,-202],[598,-347],[335,22],[132,472],[243,107],[155,419],[699,224],[-915,425]],[[77760,93667],[69,512],[-640,551],[-540,287],[-600,-129],[-722,-389],[379,-113],[213,-408],[462,-217],[773,-165],[606,71]],[[57068,94537],[-702,142],[-281,-171],[-403,137],[-858,-159],[304,-261],[398,-10],[50,-157],[819,-95],[806,67],[412,307],[-545,200]],[[42472,96309],[-2219,71],[-982,-54],[-354,-210],[-975,25],[-932,-340],[-38,-244],[660,-307],[-577,185],[-390,45],[-663,213],[-737,-313],[-303,177],[-853,-5],[-854,-89],[-658,-150],[115,-256],[-404,-61],[-961,-398],[-243,-227],[750,-204],[-107,-207],[-1018,-274],[-1051,-274],[-39,-221],[627,-233],[1188,-148],[-559,-30],[-729,-179],[482,-358],[323,-181],[677,42],[743,23],[590,-42],[745,-333],[-3,-238],[353,-222],[335,-603],[220,-394],[169,-212],[-310,-531],[232,-141],[276,80],[249,-195],[478,-361],[-567,151],[-258,-8],[-109,-303],[19,-387],[341,-186],[249,81],[151,85],[318,202],[-58,-445],[-110,-238],[-418,-212],[-275,-666],[186,-200],[-100,-420],[384,-525],[38,-512],[141,-371],[481,-708],[186,-556],[269,-312],[556,-3],[410,-465],[391,34],[142,556],[125,471],[-112,445],[453,456],[141,374],[4,399],[238,352],[399,133],[370,140],[192,23],[597,399],[386,602],[288,219],[306,2],[813,197],[755,449],[745,496],[-383,31],[-732,24],[322,300],[-95,386],[344,-327],[214,-220],[495,110],[-105,459],[-364,348],[-375,142],[143,153],[549,-236],[-4,253],[-348,386],[388,2],[391,88],[91,201],[-322,231],[617,41],[-360,490],[297,53],[-65,484],[-513,301],[457,181],[434,23],[-333,372],[-9,634],[224,369],[324,415],[-643,27],[888,99],[157,131],[1132,405],[-156,243],[-833,111],[-1348,-221],[-707,-212],[305,331],[-231,205],[-540,-175],[-836,197],[-984,-63],[-140,101],[1496,56],[1062,25],[513,219],[-1737,452]],[[64204,94616],[107,87],[-412,125],[-262,-94],[-159,-136],[-57,153],[-422,-7],[-542,-104],[618,-17],[-158,-178],[301,-135],[324,95],[39,93],[250,43],[373,75]],[[65981,89020],[-531,467],[-56,473],[435,548],[414,556],[863,542],[848,271],[984,283],[187,177],[-193,225],[-541,-74],[-475,-211],[-925,-107],[-917,-366],[-621,-300],[75,-259],[-665,-500],[255,-69],[-551,-486],[10,-310],[-284,-122],[40,-308],[503,-153],[74,-253],[907,-74],[164,50]],[[45969,86592],[-461,40],[-453,-303],[-349,161],[-422,-310],[-433,386],[-421,-84],[-188,-371],[583,-132],[12,-168],[-492,-110],[605,-278],[-273,-252],[775,-180],[365,-84],[240,104],[801,390],[361,434],[-314,389],[64,368]],[[24848,88324],[-517,115],[247,280],[-378,642],[-281,251],[-366,92],[-329,-413],[-22,-630],[324,-230],[298,-351],[-126,-572],[-223,15],[-177,-454],[2,539],[-431,193],[-247,-100],[32,-354],[-405,14],[-431,-91],[-491,257],[-310,-45],[-279,309],[-224,136],[-223,-57],[-338,-26],[-179,-195],[283,-242],[-302,-288],[-296,342],[-236,-100],[-750,-67],[-502,122],[391,282],[-375,289],[-272,-37],[-383,97],[-650,209],[-424,239],[-337,33],[-105,-166],[-341,-94],[-38,432],[-369,-386],[-470,511],[-192,61],[-62,-268],[-207,-133],[-191,235],[-455,-141],[-416,-251],[-413,70],[-336,-178],[-244,-237],[-289,52],[-438,274],[-518,137],[-302,80],[-421,171],[-370,-92],[-214,74],[-534,53],[-585,180],[-283,-57],[-425,97],[16,131],[-469,34],[-123,-110],[-201,257],[-421,119],[-427,-303],[-256,38],[-526,-253],[-271,-65],[-284,-271],[-66,-277],[-350,-259],[-493,-19],[-155,-298],[381,-180],[267,-243],[197,-285],[342,-217],[225,-352],[-586,-23],[38,285],[-228,0],[-620,-278],[-390,-238],[351,-331],[117,-229],[407,-137],[392,64],[219,-126],[85,126],[295,124],[170,7],[-205,-220],[155,-103],[52,-260],[-212,-176],[-201,49],[-224,-275],[-191,91],[-225,-41],[-99,-293],[-226,-318],[-108,-327],[214,-243],[1,-322],[190,-137],[235,-267],[361,109],[179,-203],[-50,-209],[24,-339],[170,0],[278,228],[104,-284],[75,204],[181,-288],[150,207],[90,-98],[320,172],[-141,-336],[-48,-432],[-205,-201],[-62,-114],[-385,-341],[-137,-233],[-345,-65],[-296,-311],[-271,-176],[-304,-266],[43,-96],[477,163],[231,190],[282,194],[259,159],[191,-44],[325,244],[87,267],[434,294],[69,252],[278,174],[299,238],[262,409],[-203,277],[400,405],[190,379],[354,317],[76,-143],[-295,-175],[-125,-558],[40,-336],[307,121],[245,192],[321,119],[154,36],[-58,396],[309,121],[330,-243],[546,-262],[385,49],[486,-203],[266,-108],[574,-591],[326,-164],[441,-14],[267,-37],[150,-538],[358,-460],[78,-497],[245,-182],[153,-214],[6,-293],[336,-413],[48,-460],[356,-242],[-40,-350],[155,-504],[503,-235],[199,-246],[537,-560],[38,-1],[94,-467],[44,-467],[-68,-150],[-148,537],[-402,194],[-33,-111],[80,-265],[88,-487],[50,-764],[-67,-1033],[-109,-537],[89,-436],[10,-489],[-61,-472],[148,-311],[38,-464],[215,-477],[123,-188],[-10,-132],[231,-792],[270,-572],[34,-312],[70,-92],[258,-56],[100,-154],[156,-29],[30,-163],[130,-68],[180,-328],[46,-291],[113,-512],[129,-455],[103,-373],[102,-356],[163,-158],[214,-406],[-10,-257],[-103,-213],[-115,33],[-20,-43],[164,-331],[171,-138],[70,-148],[37,73],[191,-254],[132,-176],[42,-309],[-9,-417],[142,-144],[200,-275],[182,-325],[74,-346],[49,-3],[117,209],[6,102],[-100,254],[-112,259],[-134,19],[-15,300],[-77,267],[-83,250],[-92,529],[-174,290],[-59,202],[-85,145],[-56,367],[-49,-8],[-37,196],[-42,40],[-46,134],[-206,392],[-95,235],[-27,428],[-46,273],[44,231],[159,-157],[93,25],[201,-226],[-5,-218],[99,-436],[149,-430],[12,-178],[130,-277],[162,-300],[149,-46],[69,-397],[164,-277],[142,-133],[-42,-352],[51,-139],[238,-233],[135,-355],[280,-444],[244,-566],[94,-288],[25,-226],[93,-256],[-1,-197],[-64,-148],[29,-162],[-93,-56],[66,-277],[139,-359],[299,-323],[116,-260],[284,-180],[155,-35],[70,-152],[233,-272],[314,-264],[208,-80],[260,-262],[208,-108],[196,-150],[140,56],[223,214],[156,42],[226,-149],[144,-185],[314,-613],[149,-235],[127,-113],[174,-10],[142,-99],[79,-122],[154,-36],[115,-113],[100,-55],[161,-8],[31,134],[84,-50],[48,-178],[-21,-40],[-46,86],[-31,-88],[140,-257],[117,-179],[61,-192],[130,-230],[96,-179],[-64,-110],[78,-81],[-36,-179],[-2,-173],[38,-115],[89,-57],[64,-157],[55,136],[-18,165],[73,-102],[19,-166],[95,-73],[109,-112],[77,-136],[11,-126],[-32,-99],[56,-120],[151,-126],[32,-86],[8,123],[119,1],[72,-66],[114,-38],[56,-229],[92,-34],[36,97],[48,-340],[130,29],[40,84],[75,73],[-132,309],[27,119],[61,20],[112,143],[56,198],[122,36],[138,-158],[52,-188],[70,-39],[-68,-152],[59,-308],[93,-164],[112,-304],[44,-481],[-59,-150],[62,-520],[-52,-331],[102,-136],[-106,-298],[-117,-358],[-138,-38],[-65,-207],[12,-285],[-103,-43],[37,-176],[-190,-227],[-153,-122],[20,-232],[-105,-367],[-52,-355],[-97,-86],[47,-517],[-56,-160],[166,-250],[106,265],[60,-249],[-148,-426],[-221,-359],[-86,-399],[134,-543],[-90,-254],[198,-231],[216,-371],[87,-420],[114,-259],[262,-1134],[274,-1051],[236,-747],[-46,-164],[115,-471],[214,-351],[498,-622],[551,-572],[24,-234],[279,-327],[58,-802],[20,-932],[-87,-1273],[-89,-1183],[-50,-1101],[-163,-696],[34,-702],[-83,-470],[64,-853],[-118,-849],[-192,-911],[-170,-920],[-117,-18],[23,-642],[79,-555],[-127,-389],[-95,-1055],[-87,-815],[175,-80],[87,711],[186,-151],[-145,-1180],[-309,200],[-94,-946],[-265,-503],[422,-166],[-293,-440],[-119,-548],[36,-970],[140,-379],[-79,-334],[87,-360],[346,-326],[318,-397],[313,-185],[118,13],[45,532],[250,206],[134,140],[247,-4],[117,-29],[-185,330],[-89,591],[113,267],[254,224],[180,668],[328,321],[96,511],[-265,115],[-274,417],[80,427],[218,292],[262,1],[66,305],[41,573],[223,354],[255,177],[-82,296],[-152,-180],[-188,172],[-39,566],[108,149],[267,-208],[284,79],[167,200],[-51,287],[57,427],[-59,339],[305,-57],[557,118],[412,306],[267,730],[14,278],[-173,248],[38,393],[-353,488],[19,297],[169,-315],[189,18],[256,-244],[151,61],[205,-114],[313,316],[121,358],[183,326],[127,542],[189,266],[244,452],[308,1002],[195,313],[63,278],[51,575],[-46,315],[41,425],[235,565],[327,453],[311,166],[195,254],[437,219],[302,-2],[65,342],[225,246],[47,588],[282,744],[49,761],[88,225],[30,375],[77,878],[-20,1067],[78,419],[69,11],[206,494],[177,643],[391,793],[142,371],[110,942],[-46,344],[-94,725],[-101,180],[-237,23],[-214,164],[-355,638],[-411,471],[-415,-22],[-540,301],[-323,-175],[45,315],[-135,334],[-462,347],[-349,205],[-211,-374],[-10,571],[-491,90],[-86,171],[208,469],[-7,393],[-149,94],[-155,996],[-69,315],[-95,-27],[-46,233],[-294,481],[-204,135],[-95,62],[-298,153],[-225,-41],[-30,-102],[-333,114],[-109,198],[-149,278],[-105,13],[-8,293],[-171,371],[-183,210],[-109,134],[-144,-13],[-45,456],[-210,280],[-222,43],[-95,269],[236,168],[-333,-8],[-344,-34],[-4,-143],[-155,-178],[-213,70],[-159,255],[-297,-58],[-249,5],[-11,188],[-180,318],[-195,9],[-100,400],[-97,-180],[38,-268],[-346,-231],[14,-432],[86,-200],[-62,-412],[-120,-37],[-105,452],[123,331],[3,298],[-91,258],[163,67],[8,134],[54,192],[-73,150],[-98,35],[-134,-275],[-109,-127],[-218,-288],[-218,48],[-22,-119],[-175,-11],[-159,-264],[-51,-481],[-3,-188],[-114,-61],[-209,-397],[-143,18],[-105,157],[-90,171],[-124,99],[-155,19],[10,56],[-153,34],[-95,-171],[-168,-114],[-119,-144],[-136,-41],[-77,140],[-26,-47],[-111,26],[6,120],[-100,205],[-130,243],[-108,229],[-70,309],[-43,94],[-12,154],[56,145],[-19,151],[26,243],[43,56],[-7,257],[-15,146],[9,251],[30,229],[64,194],[-29,209],[14,127],[24,55],[-73,156],[-101,87],[-80,128],[-85,106],[-44,13],[-127,79],[-55,-49],[-73,-14],[-66,39],[-89,29],[-32,-63],[-90,-63],[-128,-15],[-129,51],[-43,-28],[-26,46],[-79,-8],[-61,-100],[-29,22],[-82,73],[-24,-85],[-90,103],[55,197],[50,19],[55,151],[32,287],[-18,55],[29,204],[-24,88],[45,246],[5,155],[-53,2],[-1,84],[58,9],[71,-146],[69,445],[42,246],[-51,99],[66,347],[149,338],[9,274],[-66,121],[-169,-48],[-246,20],[-294,-132],[-188,-150],[-48,-166],[-22,-478],[-67,-333],[-176,-232],[-175,-97],[-208,-103],[-212,-57],[-244,-160],[-114,239],[-295,151],[-109,280],[-65,325],[-184,424],[-56,442],[-86,277],[-48,311],[27,278],[20,763],[49,410],[107,497],[1,2],[-1,0],[-52,194],[-14,274],[3,393],[63,256],[152,272],[276,245],[253,422],[234,133],[173,40],[202,-131],[242,71],[207,-301],[202,-18],[104,108],[103,-84],[53,75],[-59,112],[5,231],[-54,161],[118,80],[212,39],[247,-63],[314,71],[174,-141],[135,-265],[49,-29],[281,259],[108,-88],[217,-476],[77,-313],[-57,-378],[42,-223],[129,-435],[147,-490],[106,-131],[44,-250],[137,-69],[83,72],[69,348],[12,221],[9,384],[-132,660],[-1,246],[-124,404],[-92,487],[-50,395],[43,405],[131,337],[157,271],[305,370],[39,191],[141,209],[139,37],[182,334],[288,169],[176,422],[-39,570],[-29,197],[-79,40],[-12,541],[-183,180],[175,-85],[-59,361],[53,246],[33,-473],[142,-218],[-86,-387],[25,-23],[157,455],[89,221],[-8,215],[-66,102],[-57,306],[91,-142],[61,-30],[20,-146],[203,438],[60,409],[-82,27],[84,157],[-8,-69],[177,1],[389,171],[-82,107],[-408,-107],[231,165],[162,28],[121,29],[205,99],[133,-11],[188,92],[22,163],[-83,126],[29,-207],[-115,14],[-92,302],[3,302],[35,93],[159,373],[293,168],[286,197],[296,276],[-48,186],[309,70],[445,18],[-483,-470],[11,-482],[211,-42],[310,410],[276,230],[615,339],[344,373],[-180,207],[-19,413],[-278,-641],[-459,-82],[-361,284],[-91,430],[-88,614],[262,382],[-245,280],[-416,-57],[-583,-475],[-446,-748],[-236,-93],[320,525],[401,754],[354,252],[233,409],[287,39],[417,-4],[594,-120],[470,93],[349,467],[458,203],[199,200],[202,214],[-20,640],[-112,214],[-216,76],[-110,482],[-179,182],[-442,147],[-250,325],[-370,321],[112,358],[-307,683],[-362,726],[-216,509],[-184,-265],[-266,-628],[-402,-316],[-201,335],[-254,89],[-92,720],[8,478],[-495,43],[-85,221],[-342,330],[-258,193],[-230,-149],[-286,55],[-476,155],[-194,-131],[93,-890],[121,-515],[-328,-597],[338,-428],[189,-484],[22,-381],[-154,-397],[-314,-399],[-445,-267],[196,-299],[145,-900],[-150,-585],[-214,-185],[-414,540],[-201,637],[-86,573],[45,493],[-302,55],[-459,33],[-294,240],[-348,156],[-199,270],[-277,216],[-517,247],[-388,-113],[-130,432],[-125,533],[-408,95],[15,662],[108,449],[301,641],[340,461],[323,71],[18,371],[220,240],[397,38],[322,385],[81,249],[268,480],[83,286],[287,-171],[386,88],[544,398],[36,277],[-196,305],[207,303],[-17,283],[-373,283],[-411,83],[-394,44],[-16,-625],[-202,-491],[-290,-412],[-269,384],[83,423],[-332,366],[-371,-446],[1,582]],[[25955,90408],[204,368],[-717,-151],[-286,-233],[-213,-509],[88,-577],[394,-2],[-290,-260],[231,-200],[450,-86],[588,-167],[1011,-127],[503,73],[149,168],[219,-194],[245,-32],[294,-354],[-178,-144],[563,-194],[425,-276],[107,-195],[77,-252],[-360,-555],[-96,-284],[92,-203],[-571,-73],[-522,-10],[-183,-419],[235,-196],[803,91],[-5,165],[405,-276],[414,-293],[-97,-160],[337,-278],[596,-330],[753,-228],[-45,199],[-289,344],[-393,491],[697,-456],[350,-154],[96,409],[-181,563],[-114,152],[-377,262],[-292,331],[35,326],[359,71],[437,-547],[342,-244],[487,662],[87,399],[-437,38],[-400,523],[-441,126],[-654,371],[510,266],[-263,533],[-242,229],[-670,225],[-290,363],[-515,-129],[-36,248],[-383,272],[-616,288],[-263,-226],[-550,-166],[42,373],[-477,589],[-704,-234],[-256,-459],[-219,355]],[[28794,90377],[-479,313],[-636,61],[-133,-38],[-12,-205],[306,-302],[80,-34],[304,76],[299,-12],[296,-16],[-25,157]],[[27250,84459],[6,111],[-381,5],[-207,-263],[61,-154],[196,-13],[325,314]],[[27981,84145],[-70,117],[-114,12],[-107,-171],[-13,-39],[73,-170],[123,-48],[108,299]],[[26344,86137],[-201,47],[-95,-522],[-35,-448],[-242,-282],[377,55],[95,-333],[396,295],[275,303],[156,-257],[432,-137],[247,179],[-199,189],[-204,-44],[-25,271],[-318,177],[-304,195],[-161,150],[-143,-88],[-51,250]],[[28926,86987],[180,168],[32,78],[-3,244],[-217,158],[-255,-79],[-118,-319],[69,-279],[312,29]],[[22123,90799],[-329,-275],[306,-373],[-567,71],[-5,-183],[690,-439],[192,-217],[268,-48],[455,220],[50,513],[-420,245],[259,273],[-72,165],[-496,-72],[-331,120]],[[24112,90189],[331,110],[415,507],[-530,139],[-579,20],[-276,-155],[-145,-242],[-4,-284],[173,-500],[317,-21],[298,426]],[[16539,89407],[0,240],[344,398],[681,400],[349,144],[-298,240],[-270,165],[-709,31],[-397,119],[-939,-89],[272,-349],[-241,-375],[-218,-471],[-93,-186],[641,-301],[147,-249],[731,283]],[[18287,90388],[-284,110],[-744,-347],[-193,-227],[-233,-426],[485,-150],[428,8],[-644,-228],[146,-210],[394,-11],[594,45],[537,-133],[-362,-99],[-392,25],[-429,-97],[-185,-61],[343,-450],[246,63],[379,-155],[151,-269],[374,40],[824,99],[522,194],[322,34],[478,-154],[503,-89],[94,209],[-178,219],[456,46],[31,250],[-502,270],[-466,282],[-86,401],[-175,555],[-311,230],[-276,91],[-244,-84],[197,-583],[-140,-236],[-227,560],[-254,186],[-314,-290],[-386,287],[-618,-172],[139,267]],[[20972,90558],[-211,125],[-372,-23],[-95,-80],[434,-398],[244,376]],[[23431,88102],[-169,218],[-84,108],[-166,102],[-295,162],[-194,-247],[-245,-176],[380,-256],[226,62],[374,-173],[173,200]],[[19941,92142],[-94,271],[-286,66],[-255,-207],[397,-545],[-485,43],[-493,337],[-782,193],[-262,-160],[-379,-556],[389,-102],[1255,68],[-577,-252],[35,-186],[423,13],[701,247],[940,88],[169,270],[-49,279],[-291,25],[-247,-95],[-109,203]],[[22639,92437],[-22,-75],[-390,33],[-419,-194],[-299,17],[18,-440],[455,44],[-5,-332],[298,-91],[458,58],[127,424],[-9,292],[-212,264]],[[23699,92652],[-573,36],[-104,-233],[322,-177],[574,-69],[279,-249],[34,-282],[96,-313],[738,-183],[449,-71],[570,10],[797,88],[355,-69],[414,122],[174,152],[-62,235],[-298,215],[-451,40],[-566,-48],[-441,-124],[-406,48],[-374,25],[-177,135],[-319,129],[64,214],[-240,187],[-547,-1],[-308,183]],[[30972,96073],[-602,37],[-601,36],[-802,-97],[-148,62],[-849,-24],[-498,-63],[-367,-91],[-211,-307],[-300,159],[-344,30],[-409,-212],[-545,-93],[-324,-18],[-413,-109],[61,-194],[324,-167],[232,-230],[491,-193],[972,36],[625,-66],[-433,-207],[-220,61],[-759,25],[118,-294],[392,-222],[-79,-199],[-492,-135],[-225,-221],[450,-109],[379,-365],[-742,246],[-170,-40],[137,-411],[-514,-129],[35,-273],[525,-30],[414,-69],[816,88],[726,-157],[742,342],[-6,139],[-475,-22],[-39,129],[388,170],[132,223],[429,161],[264,195],[-230,281],[192,102],[-383,71],[841,61],[177,116],[573,95],[476,465],[452,161],[656,345],[-605,-2],[251,127],[672,115],[678,247],[12,152],[-508,155],[-597,73],[-742,44]],[[17722,92964],[-381,-84],[-426,8],[-570,-369],[-472,-426],[377,-123],[444,87],[517,244],[259,28],[214,197],[38,438]],[[19392,92993],[93,171],[-392,89],[-406,-58],[-224,-182],[411,-184],[518,164]],[[22205,93351],[-212,271],[-751,207],[-546,78],[21,-218],[335,-138],[-268,-169],[619,-21],[457,-184],[453,-64],[-108,238]],[[19538,93508],[-361,116],[-149,26],[-285,-171],[-5,-81],[461,-1],[339,111]],[[25828,94111],[-220,376],[-455,108],[-468,122],[-355,304],[-646,-29],[122,-131],[-285,-40],[-192,-173],[-193,-254],[176,-257],[306,-190],[508,5],[-220,-152],[-4,-207],[299,-232],[575,-73],[492,41],[513,429],[381,169],[-334,184]],[[23380,93198],[76,206],[-332,198],[-162,37],[-360,23],[22,-235],[119,-214],[226,-132],[411,117]],[[23933,92892],[33,65],[-195,106],[-559,9],[74,-160],[521,-36],[126,16]],[[23996,91446],[-101,180],[-243,200],[-399,-153],[-148,-257],[337,-148],[403,-43],[151,221]],[[49165,82138],[-335,-47],[-222,45],[-216,-462],[-101,-589],[140,-290],[17,-549],[149,269],[92,-157],[-101,-254],[66,-154],[337,-101],[190,-358],[-40,-331],[-414,52],[-52,-373],[152,-307],[-291,-177],[79,-226],[436,-96],[-249,-123],[-407,-598],[148,-113],[195,217],[257,-65],[183,267],[130,-112],[473,157],[371,-6],[250,299],[-111,294],[142,167],[34,364],[-337,109],[-79,225],[-171,649],[-190,91],[-270,732],[-287,36],[250,510],[72,464],[-304,3],[-283,-78],[297,616]],[[34407,77613],[148,358],[54,155],[-129,25],[-241,-197],[-172,-324],[-287,-907],[-234,-343],[121,-154],[-173,-201],[43,-168],[539,-18],[298,34],[267,-138],[-196,-268],[166,-19],[322,493],[77,-72],[-60,-466],[183,-107],[125,21],[117,501],[-86,354],[-36,302],[-194,-97],[86,417],[-277,175],[-128,-139],[-247,156],[98,199],[-187,122],[-181,-193],[184,499]],[[32315,75257],[-97,277],[-105,-176],[69,-191],[353,-242],[102,38],[137,233],[-257,-16],[-202,77]],[[32831,76712],[-8,104],[-284,238],[-365,143],[-96,-48],[258,-269],[360,-178],[135,10]],[[48114,78508],[210,509],[-46,407],[149,391],[-298,352],[-233,-23],[-210,-266],[-378,-446],[145,-579],[-225,-595],[393,-86],[493,336]],[[28611,63891],[-220,256],[1,-65],[124,-225],[-4,-298],[51,-73],[48,405]],[[28383,63885],[-8,148],[-184,17],[-130,-45],[19,-211],[303,91]],[[28462,62279],[-1,330],[-97,473],[-84,23],[-60,-361],[104,-165],[70,-328],[68,28]],[[27867,61713],[-261,194],[-219,6],[-240,41],[-67,-63],[-210,-54],[-142,-111],[-126,-127],[-60,-205],[-146,-176],[118,-54],[138,62],[40,139],[115,8],[199,296],[273,-29],[-104,-143],[97,-111],[362,-88],[83,-119],[259,-153],[157,22],[66,-324],[96,-165],[179,-38],[113,-147],[-186,-318],[398,55],[191,-45],[187,29],[185,72],[33,133],[-210,233],[-205,24],[20,160],[-165,116],[-92,-8],[-173,257],[-235,353],[-98,134],[-260,-65],[-110,209]],[[29839,60065],[-170,25],[-62,-157],[175,-89],[-2,-217],[127,-247],[-100,-127],[-210,46],[-256,79],[-24,-184],[149,-177],[130,106],[169,-41],[131,40],[185,-97],[14,-164],[71,-90],[111,390],[92,81],[43,-138],[106,35],[50,104],[92,-27],[127,24],[132,-124],[103,232],[-136,209],[-124,20],[9,170],[-152,-11],[-50,202],[-73,-15],[-165,147],[-217,3],[-34,-97],[-241,89]],[[31780,59129],[-50,113],[-142,50],[-227,4],[-40,-84],[16,-243],[163,20],[209,-3],[71,143]],[[28638,58924],[195,11],[-46,156],[-147,137],[-187,51],[-64,19],[-116,-40],[-34,-130],[159,-208],[156,-91],[84,95]],[[33073,54506],[11,425],[-58,20],[-160,-75],[6,-224],[-81,-157],[50,-51],[232,62]],[[89877,40912],[10,207],[-21,322],[-101,290],[-11,239],[-70,69],[-19,357],[-78,278],[-104,-213],[-7,-162],[-52,-313],[-67,-302],[43,-190],[-53,-116],[-37,-429],[32,-326],[-20,-166],[39,-275],[-85,-453],[-34,-312],[-56,-253],[-55,-305],[-183,-195],[-265,193],[-43,176],[-145,146],[-78,-1],[-201,338],[-143,196],[-214,182],[-221,315],[-20,161],[99,280],[81,284],[-32,228],[96,19],[105,230],[74,305],[-127,281],[-65,-109],[-105,49],[-162,-163],[-172,176],[-79,-58],[-234,146],[-148,233],[-184,141],[-148,-82],[204,-188],[5,-291],[-234,-107],[-142,67],[-168,-200],[-121,-326],[44,-142],[-126,-149],[-133,-456],[59,-313],[-177,53],[-173,4],[-155,337],[-205,262],[-134,-77],[-122,-82],[-5,-143],[-122,67],[-4,-159],[-140,-97],[-67,-225],[-152,-280],[-34,-433],[-122,123],[-87,-276],[99,-270],[-119,-113],[-117,492],[-194,-484],[-7,-310],[-13,-227],[-163,-289],[-71,-305],[-151,-252],[-292,-167],[-153,13],[-74,-52],[-42,-124],[-168,-64],[-219,-212],[-77,70],[-126,-44],[-212,-209],[-136,-243],[-225,-190],[-118,-392],[-21,434],[-114,-410],[29,-333],[-38,-285],[-56,-140],[-31,-329],[65,-171],[26,-179],[138,-448],[5,-292],[-83,220],[-137,165],[93,-528],[-122,246],[39,-242],[158,-451],[35,-446],[123,-227],[7,-167],[111,-371],[-12,-324],[45,-326],[147,-575],[31,-338],[-34,-396],[10,-204],[-47,-130],[-138,-77],[-6,-327],[149,-108],[295,-363],[186,-1],[203,-22],[133,181],[140,161],[81,-26],[165,304],[191,26],[199,62],[246,-104],[174,51],[236,14],[103,231],[53,299],[241,131],[294,292],[265,-38],[317,191],[359,203],[498,54],[267,-277],[195,-16],[356,-345],[-52,-132],[147,-213],[174,-413],[-9,-302],[217,-235],[106,453],[174,195],[226,486],[22,-422],[-107,-279],[-42,-328],[-146,-315],[247,104],[136,394],[67,-423],[-91,-276],[267,-68],[137,-231],[64,-288],[52,-432],[179,-351],[269,-165],[159,-41],[158,-90],[240,-154],[243,412],[152,108],[-43,-297],[170,-101],[230,-251],[168,244],[127,221],[257,233],[311,21],[159,198],[-14,180],[36,392],[70,426],[107,284],[82,492],[93,281],[102,441],[205,280],[123,518],[55,408],[-6,327],[75,508],[48,263],[16,504],[-132,484],[19,353],[-7,324],[-78,458],[-217,461],[-129,217],[-197,350],[-48,603],[-68,-87],[-113,247],[-111,-125],[-108,616],[-159,357],[37,138],[-186,248],[-197,270],[-301,298],[-90,386],[27,295],[-75,487],[-70,69],[-42,285],[-60,488],[29,252],[-133,223],[-92,241],[-179,-215],[-100,447]],[[96418,40245],[-133,175],[6,-436],[39,-157],[58,31],[75,-72],[-45,459]],[[96623,39373],[-175,327],[-10,-153],[93,-249],[92,75]],[[99547,38875],[-69,-94],[-126,71],[-107,-196],[27,-250],[153,-71],[172,79],[46,297],[-96,164]],[[96421,36130],[-144,262],[-228,353],[-89,160],[-122,194],[-156,193],[-119,8],[38,-193],[184,-401],[179,-302],[199,-256],[153,-154],[105,136]],[[98502,28160],[-78,508],[-216,147],[-151,317],[-104,-45],[117,-403],[218,-504],[133,-235],[-8,-101],[113,-381],[13,-368],[-47,-439],[-201,-198],[-8,-207],[299,-227],[91,-314],[-160,-468],[116,-82],[48,-150],[214,227],[138,390],[105,307],[41,106],[-26,245],[74,173],[212,-12],[85,333],[67,505],[-141,66],[-158,-217],[-188,45],[-224,186],[-41,430],[-126,156],[-5,-389],[-202,599]],[[98060,25448],[-61,242],[-195,-263],[-41,-318],[-106,-144],[-123,-424],[-167,-296],[-238,-298],[-200,-217],[-179,-107],[-349,-562],[-149,-422],[46,-209],[302,-40],[180,-188],[256,-12],[138,162],[219,255],[157,576],[75,373],[238,214],[214,7],[-103,274],[142,229],[182,420],[103,264],[0,239],[-80,241],[-198,-231],[-63,235]],[[90387,25520],[-181,51],[-7,-261],[160,-496],[38,-376],[171,-488],[171,-17],[57,-31],[193,397],[97,-156],[29,458],[95,196],[-20,676],[-166,38],[-217,-109],[-151,-78],[-269,196]],[[63904,41030],[-69,376],[-74,242],[-96,245],[-92,-255],[-6,-342],[-153,-396],[-118,69],[38,-244],[-83,-286],[-229,-351],[-158,-324],[-122,-8],[-103,-103],[-155,-117],[-138,-21],[-38,-361],[-97,-319],[23,-524],[52,-359],[65,-270],[-25,-363],[-133,-431],[-1,-190],[-128,-99],[-50,-410],[26,-410],[98,-454],[18,-505],[77,-300],[220,-204],[160,-145],[243,241],[226,135],[125,660],[106,792],[172,1079],[137,784],[109,664],[18,482],[77,132],[24,241],[-53,422],[53,169],[94,-334],[49,168],[28,273],[-72,266],[-45,685]],[[95032,42780],[-56,21],[-166,137],[106,-350],[194,-4],[-78,196]],[[87261,48093],[-44,212],[-446,234],[-142,-186],[-374,-138],[117,-281],[248,-106],[110,-339],[407,-1],[23,-151],[-198,11],[-299,-205],[212,-280],[1,-247],[63,-209],[107,50],[82,277],[417,-526],[229,-48],[538,-482],[134,-478],[72,-619],[-175,-158],[-118,-464],[352,18],[69,162],[282,-114],[247,-468],[288,-24],[155,-95],[218,196],[-35,420],[170,188],[235,162],[362,-249],[144,-498],[158,-313],[216,-363],[281,-86],[238,-64],[69,-148],[184,40],[30,165],[-295,239],[84,108],[-215,96],[11,253],[-159,-19],[-180,604],[-248,373],[-62,380],[256,61],[-68,302],[-462,352],[-43,335],[-154,287],[-192,291],[-513,326],[-482,393],[-298,108],[-206,204],[-238,199],[-247,-1],[-319,-343],[-232,-604],[-287,340],[-78,921]],[[92538,46187],[-33,296],[-106,182],[-111,239],[-117,137],[-94,125],[-150,160],[-77,-138],[200,-167],[158,-243],[126,-187],[65,-220],[52,-336],[87,152]],[[92217,45630],[93,347],[5,316],[-56,94],[-166,-11],[30,-336],[-155,-203],[-78,-194],[-158,-44],[-27,302],[-40,-14],[-42,-273],[-152,-44],[-249,83],[-23,-176],[158,-159],[228,-166],[148,0],[142,133],[152,138],[44,160],[146,47]],[[93299,44866],[39,159],[-131,193],[-135,361],[-84,129],[-30,170],[-38,-55],[59,-434],[122,-362],[120,-218],[78,57]],[[93760,44565],[-111,186],[-166,240],[-14,-95],[114,-234],[121,-129],[56,32]],[[94409,44002],[-65,180],[-228,262],[-128,137],[-41,-58],[104,-190],[152,-204],[218,-242],[-12,115]],[[94910,43283],[-111,273],[-100,456],[-94,0],[57,-341],[206,-493],[42,105]],[[94680,43127],[-45,150],[-91,119],[-183,90],[-17,-226],[58,-88],[170,-57],[108,12]],[[84565,42975],[181,425],[233,164],[289,249],[102,155],[-105,70],[-87,-71],[-194,-19],[-239,-128],[-32,-135],[-275,-226],[-119,-347],[-25,-194],[33,-68],[238,125]],[[83531,42918],[17,154],[-97,173],[-146,174],[-259,-112],[368,-399],[117,10]],[[82749,44139],[-74,-201],[-153,-5],[-95,-327],[149,-5],[193,76],[321,115],[-69,242],[-172,-47],[-100,152]],[[84139,44140],[-249,-209],[-185,-43],[-174,171],[-220,-119],[0,-208],[370,-70],[417,162],[41,316]],[[80172,44890],[-38,202],[-115,44],[-224,222],[-337,34],[-191,-544],[255,-42],[48,-245],[506,-234],[116,71],[204,-57],[322,-217],[260,-102],[288,-42],[251,15],[306,-229],[317,217],[-341,338],[-417,104],[-101,369],[-515,274],[-61,-235],[-533,57]],[[87423,45211],[0,271],[-63,167],[-58,-193],[-49,-204],[27,-429],[143,388]],[[79393,45417],[11,881],[70,708],[-135,360],[-204,51],[-97,317],[-47,398],[-100,14],[-159,198],[111,465],[-211,260],[-161,477],[-233,390],[-283,9],[-263,612],[-153,237],[-215,386],[-246,557],[-430,110],[-178,23],[24,-290],[290,-628],[209,-319],[145,-487],[250,-358],[103,-445],[81,-489],[244,-475],[212,-797],[138,-427],[210,-464],[119,-345],[356,-465],[234,-476],[308,12]],[[82742,49790],[48,262],[-204,539],[158,514],[205,194],[-50,278],[186,29],[20,223],[-231,171],[-183,159],[-13,247],[-143,288],[-112,-1],[-140,-446],[-214,-396],[-236,-311],[-110,-213],[-137,-361],[-199,-450],[-333,-123],[-119,-108],[-56,-482],[-214,-106],[-204,195],[-165,-379],[-32,-527],[38,-498],[134,-487],[138,-159],[43,-763],[229,-66],[182,31],[101,-275],[330,204],[139,-182],[198,-32],[110,-348],[316,256],[41,-203],[107,871],[7,567],[267,390],[-12,516],[93,388],[329,67],[-312,527]],[[84788,49558],[-48,127],[-275,-413],[-319,-24],[-350,79],[-217,168],[-237,-423],[-58,-235],[-139,-858],[-40,-452],[-115,-373],[86,-390],[117,-5],[43,-549],[-79,-524],[119,-167],[176,82],[-11,815],[-24,664],[186,173],[-21,-555],[200,-334],[-36,-220],[69,-157],[273,220],[-134,-466],[109,-200],[148,167],[2,374],[-249,657],[50,196],[-263,730],[245,221],[121,333],[121,-83],[22,263],[-518,-194],[-150,-258],[-248,506],[39,431],[243,82],[463,29],[267,-112],[209,110],[223,565]],[[85746,49394],[-26,233],[-164,50],[-20,311],[-92,-208],[-56,-455],[82,-728],[112,-360],[78,68],[-114,301],[42,346],[143,-56],[15,498]],[[86241,46988],[-305,166],[-344,-24],[-65,-313],[192,-20],[157,37],[232,-47],[234,-235],[-101,436]],[[85346,46780],[-69,187],[-281,-27],[54,-245],[192,-104],[104,189]],[[85104,53541],[-20,209],[-23,287],[-225,270],[16,-440],[-196,-15],[-45,-254],[-212,-156],[-98,257],[-151,-214],[-175,-160],[-109,-480],[46,-167],[205,318],[131,-22],[87,236],[176,-269],[-84,-271],[78,-412],[327,-331],[79,267],[-89,420],[130,289],[102,-581],[94,521],[-16,320],[-28,378]],[[82917,54054],[146,392],[183,313],[-49,465],[-146,-566],[-167,-394],[-200,-352],[-136,-398],[369,540]],[[83856,55521],[43,-271],[-20,-291],[10,-264],[176,171],[129,242],[5,238],[-177,-1],[-166,176]],[[84861,55675],[-77,213],[-266,12],[169,-435],[4,-215],[-163,45],[43,-345],[84,-29],[11,-401],[132,128],[-68,351],[-5,192],[214,-152],[-78,636]],[[84439,54602],[26,544],[-205,-550],[44,383],[-153,-33],[-30,-354],[-70,-159],[-57,-153],[171,-393],[87,169],[87,359],[100,187]],[[83757,56192],[-97,205],[-238,21],[142,-434],[119,-284],[74,492]],[[83700,59286],[-169,1],[-90,-516],[-29,-891],[-112,187],[11,-545],[41,-248],[137,-327],[36,205],[83,-131],[-87,-145],[-14,-236],[138,-125],[253,84],[177,-341],[71,209],[103,-299],[216,-280],[29,263],[-91,136],[27,310],[-347,316],[-123,-67],[-147,62],[-62,454],[43,459],[164,189],[73,473],[-95,408],[46,236],[-26,145],[-85,-148],[-171,162]],[[80649,59386],[64,328],[122,251],[-62,217],[-159,14],[-304,-160],[-137,-258],[8,-490],[228,-176],[240,274]],[[69522,20442],[77,259],[-9,109],[-263,71],[-179,179],[-19,-117],[-41,-234],[7,-304],[427,37]],[[33736,19651],[-167,-228],[-236,142],[-333,-341],[139,-256],[236,256],[125,-200],[375,171],[83,200],[-222,256]],[[30935,18776],[-198,67],[-256,-235],[-90,-390],[-143,-261],[-369,205],[-390,380],[-229,119],[383,-637],[283,-306],[350,-319],[291,-82],[202,-171],[301,-64],[238,177],[92,230],[141,-201],[264,28],[125,285],[-389,142],[-361,342],[-139,427],[-106,264]],[[6794,59616],[89,89],[108,122],[7,31],[-71,200],[-45,76],[-49,50],[-107,96],[-21,10],[-16,-53],[19,-112],[-48,-93],[-14,-63],[46,-207],[-8,-159],[69,-82],[41,95]],[[6645,60505],[23,68],[-73,88],[-99,54],[-27,-49],[3,-36],[32,-46],[47,-120],[94,41]],[[6456,60808],[-137,25],[-21,-70],[149,-16],[9,61]],[[6207,60891],[-80,188],[-23,37],[-74,-79],[11,-22],[35,-130],[97,-20],[19,-7],[15,33]],[[5737,61267],[-5,132],[-64,12],[-43,-55],[-14,-42],[93,-104],[33,57]],[[15692,76373],[-115,314],[-277,236],[-138,270],[-94,196],[-261,61],[-171,86],[-291,124],[-24,-132],[107,-310],[286,-102],[50,-162],[248,-200],[84,-202],[456,-258],[140,79]],[[13136,79522],[-131,74],[-16,-182],[51,-250],[140,-177],[103,-262],[167,-261],[111,-1],[-242,458],[84,646],[-267,-45]],[[7498,81273],[240,271],[-117,177],[-185,38],[-148,-87],[-252,-202],[43,-267],[142,-147],[277,217]],[[4006,82865],[-27,218],[-220,52],[-274,-98],[168,-155],[182,-106],[171,89]],[[2297,85070],[-17,-215],[66,-50],[245,33],[106,-103],[211,-124],[211,120],[23,63],[-276,76],[-225,150],[-173,-59],[-171,109]],[[79187,93340],[82,232],[-704,323],[-208,37],[-229,-64],[-507,-747],[1566,219]],[[30985,8344],[-76,257],[-92,245],[-120,257],[-65,212],[-147,212],[-256,-89],[-158,-268],[6,-458],[-16,-212],[-82,-290],[-321,23],[-190,-67],[-305,-224],[16,-234],[212,-167],[310,78],[327,78],[-136,-223],[364,-11],[311,111],[326,78],[76,212],[49,224],[-33,256]],[[22505,7788],[-403,44],[-353,78],[-174,-100],[146,-235],[283,-111],[376,33],[343,-22],[337,22],[217,-44],[-163,323],[-304,-67],[-305,79]],[[15122,6906],[-277,134],[-202,-123],[381,-156],[359,-56],[164,-22],[-425,223]],[[16330,6895],[-332,100],[-60,-189],[278,-201],[386,-45],[261,145],[158,201],[-332,-100],[-359,89]],[[5775,3480],[-76,257],[-212,201],[-277,178],[-517,90],[-169,-212],[180,-156],[11,-34],[163,-201],[364,-201],[533,78]],[[37457,4306],[-419,123],[-414,-123],[-141,0],[-180,-234],[-168,-201],[-126,-212],[-174,-246],[-239,-189],[-593,-156],[-49,-235],[365,-189],[658,-34],[582,112],[522,134],[452,145],[430,178],[-11,290],[-33,246],[-120,346],[-342,245]],[[33452,3171],[-288,234],[-147,-200],[-207,-235],[-599,56],[-625,22],[152,-167],[0,-22],[348,-190],[621,33],[582,-78],[81,257],[82,290]],[[83659,61727],[167,913],[49,344],[-127,170],[-223,-431],[-163,-560],[32,-422],[146,-481],[119,467]],[[89159,69900],[-4,587],[256,573],[9,462],[-152,790],[-295,-105],[-117,-359],[47,-641],[-174,-696],[-158,-221],[-408,-570],[-185,272],[-291,-1012],[-297,116],[-553,-169],[-203,-390],[-280,-294],[-145,-358],[-263,-176],[113,-390],[176,-166],[-69,-513],[135,-221],[179,239],[186,968],[-282,419],[325,11],[329,268],[483,126],[12,-426],[186,-218],[396,650],[488,34],[355,268],[145,402],[-48,285],[104,455]],[[87399,68195],[-204,123],[-114,-239],[-158,66],[-154,-340],[-2,-270],[181,-162],[73,333],[143,132],[114,-183],[156,345],[-35,195]],[[89974,73904],[-213,191],[-326,593],[-83,-444],[-81,-787],[-296,-32],[-138,-438],[39,-566],[308,8],[152,623],[436,-389],[244,566],[412,156],[-62,639],[-197,-242],[-195,122]],[[89901,77647],[-114,575],[7,560],[-96,549],[-73,376],[-123,-79],[110,-264],[-257,-262],[-24,-779],[163,-559],[-13,-762],[-64,-430],[32,-615],[-31,-554],[51,-478],[182,440],[211,-343],[8,398],[-271,584],[171,822],[411,-188],[-280,1009]],[[72560,52278],[116,162],[42,593],[-134,593],[-129,401],[-192,317],[-126,-925],[49,-818],[132,-453],[242,130]],[[54311,70520],[-211,-50],[-284,-62],[-325,52],[-38,-292],[387,-290],[141,-61],[213,-215],[58,293],[-41,176],[100,449]],[[56583,69081],[-52,-242],[339,-111],[-3,-94],[400,49],[35,168],[-151,-69],[7,99],[-207,41],[-216,-33],[-152,192]],[[59604,69062],[-253,-170],[-200,8],[-40,-137],[-19,-4],[-132,-20],[64,-229],[136,-74],[285,231],[-8,46],[-21,107],[188,242]],[[52558,72216],[-139,-177],[-153,29],[64,-326],[11,-687],[105,-151],[113,190],[126,-35],[39,753],[-166,404]],[[52655,72753],[-47,488],[-179,-217],[-56,-212],[64,-383],[126,-116],[92,440]],[[53524,80416],[-88,285],[-408,-188],[39,-237],[291,-321],[166,461]]],"transform":{"scale":[0.0036000360003600037,0.001756107938825366],"translate":[-180,-85.60903777459777]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment