Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active November 8, 2019 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save mbostock/6409668 to your computer and use it in GitHub Desktop.
Save mbostock/6409668 to your computer and use it in GitHub Desktop.
Ring Cutting
license: gpl-3.0
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.mesh {
fill: none;
stroke: #333;
stroke-width: .5px;
stroke-linejoin: round;
}
.play circle {
fill: white;
stroke: black;
stroke-width: 3px;
}
.play:hover path {
fill: red;
}
.play.mousedown circle {
fill: red;
}
.play.mousedown path {
fill: white;
}
.play rect {
fill: none;
pointer-events: all;
cursor: pointer;
}
.before,
.after {
fill: none;
stroke-width: 3px;
stroke-linejoin: round;
stroke-linecap: round;
}
.before {
stroke: red;
}
.after {
stroke: blue;
}
</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 = 500;
var color = d3.scale.category10();
var path = d3.geo.path()
.projection(null);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("us.json", function(error, us) {
if (error) throw error;
svg.append("path")
.datum(topojson.mesh(us))
.attr("class", "mesh")
.attr("d", path);
var play = svg.append("g")
.attr("class", "play");
play.append("circle")
.attr("r", 45)
.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")");
play.append("path")
.attr("d", "M-22,-30l60,30l-60,30z")
.attr("transform", "translate(" + width / 2 + "," + height / 2 + ")scale(.7)");
play.append("rect")
.attr("width", width)
.attr("height", height)
.on("mousedown", function() {
play.classed("mousedown", true);
d3.select(window).on("mouseup", function() { play.classed("mousedown", false); });
})
.on("click", function() {
resetAll();
animation();
});
function resetAll() {
play.style("display", null);
}
function animation() {
play.style("display", "none");
var cuts = [];
us.objects.states.geometries.forEach(function(d) {
if (d.type === "Polygon") extractPolygon(d.arcs);
else d.arcs.forEach(extractPolygon);
});
cuts.reverse();
function extractPolygon(arcs) {
arcs.forEach(extractRing);
}
function extractRing(arcs) {
for (var i = 1, n = arcs.length; i < n; ++i) {
cuts.push([arc(arcs[i - 1]), d3.merge(arcs.slice(i, n).map(arc))]);
}
}
function arc(index) {
var x = 0, y = 0, arc = us.arcs[index < 0 ? ~index : index].map(function(point) {
return [
(x += point[0]) * us.transform.scale[0] + us.transform.translate[0],
(y += point[1]) * us.transform.scale[1] + us.transform.translate[1]
];
});
return index < 0 ? arc.reverse() : arc;
}
var interval = setInterval(function() {
var cut = cuts.pop();
if (!cut) return clearInterval(interval), setTimeout(resetAll, 750);
var g = svg.append("g")
.attr("class", "cut");
g.selectAll("path")
.data(cut)
.enter().append("path")
.datum(function(d) { return {type: "LineString", coordinates: d}; })
.attr("d", path)
.attr("class", function(d, i) { return i ? "after" : "before"; });
g.transition()
.duration(500)
.style("stroke-opacity", 0)
.remove();
}, 100);
}
});
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"states":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]]]},{"type":"MultiPolygon","arcs":[[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]]]},{"type":"Polygon","arcs":[[36,37,38,39,40]]},{"type":"Polygon","arcs":[[41,42,43,44,45,46]]},{"type":"Polygon","arcs":[[47,48,49,50,51]]},{"type":"MultiPolygon","arcs":[[[52]],[[53]],[[54]],[[55]],[[56,-50,57,58]]]},{"type":"Polygon","arcs":[[59,60,61,62,63,64]]},{"type":"Polygon","arcs":[[65,66,67,68]]},{"type":"Polygon","arcs":[[69,70,71]]},{"type":"Polygon","arcs":[[72,73,74]]},{"type":"MultiPolygon","arcs":[[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[-38,82,83]]]},{"type":"MultiPolygon","arcs":[[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[-83,-37,90,91,92,93]]]},{"type":"Polygon","arcs":[[94,95,96,97,98,99]]},{"type":"Polygon","arcs":[[100,101,102,103,104,105,106]]},{"type":"Polygon","arcs":[[107,108,109,110,-96,111]]},{"type":"Polygon","arcs":[[112,113,114,-108,115]]},{"type":"Polygon","arcs":[[116,117,-109,-115,118,119]]},{"type":"Polygon","arcs":[[-114,120,-119]]},{"type":"Polygon","arcs":[[121,122,-61,123]]},{"type":"MultiPolygon","arcs":[[[124,125]],[[126,127,128,129,-110,-118,130]]]},{"type":"MultiPolygon","arcs":[[[131]],[[132]],[[133]],[[134,-44,135,136]]]},{"type":"MultiPolygon","arcs":[[[137]],[[138]],[[139,140,141,-69,142,143,144,145]]]},{"type":"MultiPolygon","arcs":[[[146]],[[147,148,-72,149,150,151,-74,152]]]},{"type":"MultiPolygon","arcs":[[[153]],[[154]],[[155]],[[156,157]]]},{"type":"MultiPolygon","arcs":[[[158]],[[159]],[[160,-120,161]],[[162]],[[163,164]],[[165]],[[166]],[[167]],[[168,169,170,171,172]],[[173]],[[174]]]},{"type":"Polygon","arcs":[[175,176,177,178,179,-162,-121,-113,180,-173,181,182,183,184],[185],[186],[-168],[-167],[-166],[-164,-165],[-163],[-160],[-159]]},{"type":"Polygon","arcs":[[187,188,189,190,191,192,193,194,195,196,197,-100,198,199,200,201]]},{"type":"Polygon","arcs":[[-184,202,-188,203]]},{"type":"Polygon","arcs":[[-111,-130,204,-126,205,-47,206,-122,207,-97]]},{"type":"Polygon","arcs":[[-40,208,-136,-43,209]]},{"type":"Polygon","arcs":[[210,211,212,-101,213]]},{"type":"MultiPolygon","arcs":[[[214]],[[215]],[[216,217]],[[218,219]],[[220,-92,221,222,223]]]},{"type":"Polygon","arcs":[[-201,-200,224,-211,225]]},{"type":"Polygon","arcs":[[-98,-208,-124,-60,226,227]]},{"type":"Polygon","arcs":[[228,-145,229,230,-157]]},{"type":"Polygon","arcs":[[231,232,233]]},{"type":"Polygon","arcs":[[234,235,236,-48,-63]]},{"type":"Polygon","arcs":[[237,-51,-57,238,-104]]},{"type":"MultiPolygon","arcs":[[[239]],[[240]],[[241]],[[-233,242,243,244,245,246,-143,-68,247]]]},{"type":"Polygon","arcs":[[248,-244,249,250,-245],[-242]]},{"type":"Polygon","arcs":[[251,-131,-117,-161,252,253,254,255,256,257]]},{"type":"Polygon","arcs":[[-176,258,259,-257]]},{"type":"Polygon","arcs":[[-207,-46,260,-235,-62,-123]]},{"type":"Polygon","arcs":[[261,-105,-239,-59,262]]},{"type":"Polygon","arcs":[[-232,263,-75,-152,264,-258,265,-243]]},{"type":"Polygon","arcs":[[-260,266,-250,-266]]},{"type":"MultiPolygon","arcs":[[[267]],[[268,-140]],[[269,-66,-142]]]},{"type":"MultiPolygon","arcs":[[[270]],[[271]],[[272]],[[-93,-221,273]]]},{"type":"Polygon","arcs":[[-199,-99,-228,274,-212,-225]]},{"type":"Polygon","arcs":[[275,-222,-91,-41,-210,-42,-206,-125,-205,-129]]},{"type":"MultiPolygon","arcs":[[[276,277]],[[278]],[[279]],[[280]],[[281]],[[282]],[[-236,-261,-45,-135,283]]]},{"type":"Polygon","arcs":[[284,-64,-52,-238,-103]]},{"type":"MultiPolygon","arcs":[[[-148,285]],[[-217,286,-219,287,-223,-276,-128,288,-150,-71,289]]]},{"type":"Polygon","arcs":[[-230,-144,-247,290]]},{"type":"MultiPolygon","arcs":[[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297,298,-106,-262,299,300]]]},{"type":"Polygon","arcs":[[-301,301,-298],[-295],[-296],[-297],[-294],[-293],[-292]]},{"type":"MultiPolygon","arcs":[[[302]],[[-182,-172,-171,-170,303,-112,-95,-198,304]]]},{"type":"MultiPolygon","arcs":[[[-116,-304,-169,-181]],[[-305,-197,305,-195,306,-193,307,-191,308,-189,-203,-183],[-303]]]},{"type":"Polygon","arcs":[[-151,-289,-127,-252,-265]]},{"type":"Polygon","arcs":[[-275,-227,-65,-285,-102,-213]]}]}},"arcs":[[[44916,988369],[-643,2005],[688,1663],[-2724,490],[1428,-3843],[1251,-315]],[[57058,989465],[499,1666],[-896,2010],[-3286,58],[-2233,-1236],[4481,-21],[1435,-2477]],[[1905,941082],[1112,1150],[-464,2630],[-1819,-1715],[-728,-2645],[1899,580]],[[81171,994934],[2980,-4922],[1231,418],[926,-3063],[1969,957],[-461,1570],[-2198,1152],[-1165,2103],[-3282,1785]],[[94175,983555],[-37,2511],[1761,-1460],[-2434,5697],[-1913,-66],[-2332,1897],[-1566,-1318],[3840,-1331],[954,-5750],[1727,-180]],[[108483,973642],[1009,241],[626,4254],[-1328,1530],[-2303,-648],[-1317,1709],[-2271,17],[-92,-2567],[1007,-479],[1553,-3243],[807,590],[2309,-1404]],[[243682,951763],[910,2754],[1932,2412],[-368,1212],[-2683,-4262],[209,-2116]],[[249699,938243],[2126,3439],[433,4832],[-441,1229],[-3247,-1630],[425,-2471],[-945,-2734],[1649,-2665]],[[243899,936214],[2112,4167],[-2430,48],[-652,-1960],[970,-2255]],[[238927,938734],[1724,-660],[959,2797],[1420,381],[4114,5614],[-684,1267],[1701,601],[1397,5434],[-977,1919],[-1252,-2126],[-3067,-2828],[-1138,434],[-38,-4618],[-1490,679],[515,-2983],[-1267,-3932],[-1517,138],[-400,-2117]],[[245197,937656],[-1599,-3429],[2645,2541],[-1046,888]],[[240684,931405],[2061,1995],[-1474,1894],[-587,-3889]],[[236938,934316],[903,8758],[-251,1369],[-1483,-4152],[888,-1456],[-1459,-1071],[-920,-4240],[2322,792]],[[236037,929886],[4075,168],[696,4180],[-1935,-2787],[1676,4843],[-2018,1512],[-888,-4607],[-2096,-2082],[490,-1227]],[[232111,937010],[-1470,-419],[-933,-5571],[-1559,-699],[1102,-3125],[2449,2524],[2425,7616],[852,6220],[-2836,-4669],[-30,-1877]],[[155132,939713],[3596,1820],[-248,3372],[1312,-316],[-748,2705],[-1490,1972],[-2386,792],[-2661,6118],[-1062,312],[1250,-2909],[-1026,-2117],[-528,2989],[-1294,-1272],[-804,-5759],[1540,-2931],[1458,-67],[418,2733],[968,-3050],[-1090,-858],[885,-2184],[2164,1436],[-254,-2786]],[[226692,921372],[891,-1811],[1966,387],[1780,6997],[-693,747],[-3890,-2505],[1411,1787],[-109,3201],[-1249,-769],[-2618,-4128],[-466,-4578],[1943,-2120],[1536,830],[-502,1962]],[[229138,915953],[1217,1996],[1935,-466],[-91,1833],[2801,5567],[177,2584],[-1721,4802],[-438,-4619],[-1802,-3991],[-2078,-7706]],[[158972,933904],[1003,3509],[-3855,1614],[-849,-1548],[1780,-1639],[-121,-1639],[2042,-297]],[[178497,905916],[895,491],[-1961,5136],[-1576,2341],[2642,-7968]],[[105590,899816],[1611,2357],[-54,4970],[-2670,1583],[-3920,-5723],[348,-2125],[1879,157],[2806,-1219]],[[180669,903600],[1795,988],[-1874,2403],[79,-3391]],[[80630,887238],[-40,1290],[2049,3782],[-1363,-711],[-1346,-3263],[700,-1098]],[[110937,894637],[2303,2650],[-2292,5929],[-2405,-4161],[1903,-1623],[491,-2795]],[[115172,867234],[1074,1996],[235,4252],[-741,-1956],[-2142,-1705],[1574,-2587]],[[116933,864594],[1668,2343],[-1567,2592],[-2174,-2915],[2073,-2020]],[[91866,848387],[261,2646],[1566,1210],[1981,-977],[1075,3518],[1420,2201],[2817,1904],[-811,1790],[-1494,-1080],[-1152,2391],[-1855,-4845],[-1784,-3313],[-2220,1057],[-1038,-2959],[1234,-3543]],[[225095,915941],[-1808,-2791],[-3158,-1440],[-422,1036],[3768,2291],[1125,2681],[-1977,3304],[-4646,-3363],[-3215,-4657],[-7261,-4149],[1235,-2696],[-905,-2317],[-2310,3635],[-2196,228],[-3187,-2018],[-3919,-496],[-4903,2620],[-4362,-2953],[194,-4242],[-1563,3917],[-1847,-1389],[-1479,-3260],[-1527,1063],[-1165,-3638],[-3492,1613],[-688,1088],[-1358,-3159],[-598,3692],[1820,4945],[-1511,6584],[-5057,775],[-2148,6055],[-1542,1141],[-998,2973],[-1550,-480],[-1373,1349],[-685,-3209],[1780,-1940],[1941,-3552],[-2163,2265],[-1509,-1716],[1620,-6054],[510,-4517],[-618,-2285],[3702,-4539],[1361,1549],[1134,-1562],[-1319,-1713],[2340,-4373],[-904,-217],[-1154,3464],[-2272,-342],[-1585,1487],[-2826,4547],[399,1605],[-1285,1005],[-1898,5987],[-1438,-248],[1438,2274],[-1833,5157],[-3048,2064],[398,1414],[-1502,1228],[-464,2341],[3580,3308],[-447,2847],[-1830,1391],[-1035,4978],[-1730,2794],[-1874,-37],[-1619,3774],[-887,-671],[-524,3169],[-1159,-333],[-2257,3111],[798,2010],[-3822,5287],[-746,-1348],[-851,2231],[-2053,1039],[714,1720],[-2022,-323],[485,2714],[-2095,3781],[-3725,1487],[-817,3285],[64,-3277],[-4178,4108],[-1651,-930],[-1511,1969],[-1213,-316],[855,-2934],[-976,-550],[-2032,6258],[-2395,482],[-559,-3523],[36,4733],[-3788,435],[649,-3316],[2026,-462],[3222,-6224],[2125,-2188],[4156,-685],[-756,1250],[1382,2964],[-275,-2599],[2157,1975],[-1179,-3398],[1123,-3514],[2466,-3166],[2239,-1376],[1664,-2126],[1407,1331],[-188,-2920],[1770,-4000],[2775,-3420],[556,-6913],[826,-1124],[-178,-4158],[1803,-3131],[-176,-1923],[-4242,2995],[-1619,-2704],[392,-2589],[-1683,3434],[140,4321],[-1068,-312],[-1132,-4741],[-1259,-2224],[-815,1721],[-1690,-4019],[-3770,2964],[-2194,2750],[-1574,-1626],[1839,-1808],[-681,-5749],[1503,-3398],[-2532,-11750],[32,4053],[-2882,1846],[-2887,-125],[-2315,-7468],[1956,-4100],[1938,-937],[-221,2311],[1566,-1605],[-2355,-2651],[-1709,-42],[-2260,-1870],[903,-922],[-2998,-5116],[717,-1773],[-1334,-566],[77,-1912],[1463,-127],[-1034,-2169],[1838,141],[164,-4027],[2544,-4406],[1133,43],[1236,-2434],[1734,3634],[-130,-5133],[2335,-2426],[1578,1059],[1473,-1893],[1568,-3900],[447,1545],[3571,-275],[1490,-3325],[-342,-6280],[-1691,-2461],[556,-1746],[2023,-673],[-961,-4458],[-815,1945],[-2708,705],[-2430,4254],[-989,-4587],[15,3229],[-1465,-2438],[-2408,-579],[-2415,1043],[-3886,-3206],[-648,-7369],[1207,-1718],[1505,3013],[1376,-323],[-2155,-2767],[-3830,-2805],[-1868,-3072],[2995,-3177],[290,765],[3239,-3335],[2428,857],[-1052,-1449],[1586,-1728],[1328,513],[1140,-1734],[2721,93],[-582,6183],[3737,2036],[1902,-52],[520,1553],[1399,-3729],[1565,603],[-2102,-2502],[-2431,-6613],[990,-1060],[509,4136],[1346,3050],[1328,-1066],[1064,2456],[1710,49],[-68,-2837],[-2497,-1021],[-1180,1321],[-1059,-2773],[1444,-2973],[-983,-1428],[-2409,372],[-3297,-2592],[-590,-6698],[-2804,-6023],[-1917,-2498],[-1381,-3473],[717,-207],[1005,-6148],[2413,1039],[3021,-90],[2385,-2245],[1433,-2767],[576,-4545],[3737,-6873],[240,1391],[2793,-1656],[2397,-2452],[794,-2600],[1165,621],[3145,-616],[1380,-1356],[2407,-4963],[2683,2467],[-1469,4404],[3417,-3318],[368,2623],[1290,1552],[654,-1471],[2060,-572],[2402,1179],[-485,2869],[1918,633],[-446,1632],[3111,1247],[2229,-2725],[1883,81],[2305,2062],[3575,1580],[3225,-902],[1751,1922],[5339,-2993],[5608,4703],[992,-492],[14177,122202],[1959,508],[95,-1242],[2010,1006],[833,-2412],[2297,-1115],[-8,3637],[2187,1644],[557,1674],[4890,5208],[1251,4100],[1922,-4338],[930,-506],[-5,-6027],[2894,-4141],[2213,2177],[890,3506],[2157,989],[1484,3021],[1917,833],[2502,2848],[1468,3092],[5987,9910],[-184,1800],[1418,-168],[120,2357],[1184,262],[683,2526],[998,-780],[2545,1385],[4770,1042],[1004,2433],[-222,2160],[2076,5585],[-557,5556],[-922,2647],[-1243,365],[-1671,-4578],[566,-2005],[-1184,-4965],[-2038,-2632],[-1949,2721],[79,5315],[-1968,-2569],[1029,-1074],[-771,-5764],[-2518,-2767],[78,-2198],[-2495,-703],[-973,-2113],[-3092,-607],[222,-2279],[-1937,-5247],[-3248,-4056],[-2402,-1138],[-2646,-5174],[-1789,-5025],[516,3863],[1772,4027],[1026,4799],[-762,404],[-2780,-2229]],[[362022,943381],[5577,5595],[2742,771],[3708,2986],[3028,3968],[1186,2514],[-160,4263],[1840,-49],[435,3546],[3743,4620],[-261,1560],[-3294,5074],[-3248,2854],[-3425,419],[-3382,4456],[-1194,702],[-2668,7366],[-1038,-42],[-2382,-2750],[-1734,-959],[-801,-3066],[691,-8284],[-1402,-5793],[-871,-5670],[-1493,-3499],[240,-1677],[2359,-2968],[2387,-6833],[-1429,-3613],[-177,-4113],[1023,-1378]],[[346867,930741],[329,2542],[-2638,1231],[56,-1971],[2253,-1802]],[[338161,918401],[2141,922],[1572,3105],[-494,2021],[-2788,1387],[-1947,-6782],[1516,-653]],[[346158,914472],[1587,1718],[992,3329],[3302,-1852],[1980,710],[2431,3894],[2343,1208],[277,3175],[-1205,2090],[-3044,977],[-2327,1741],[-2942,-829],[-427,-6568],[-3388,-1149],[-1364,-2799],[439,-4676],[1346,-969]],[[332772,907374],[5009,1491],[861,-1103],[1248,1789],[3381,-449],[593,919],[-1929,3104],[-1507,772],[-3951,-2060],[-3998,499],[-1184,-528],[1477,-4434]],[[317271,888670],[3061,7002],[-90,2575],[1144,1856],[416,-1991],[1206,4235],[1152,1954],[-3496,1559],[-1577,-2875],[-4372,1407],[-3678,-10657],[3093,-239],[3141,-4826]],[[273372,877237],[161,3649],[-1750,1353],[-976,3240],[-892,-2516],[1247,-2964],[2210,-2762]],[[287756,868776],[1735,1681],[303,3003],[-798,2066],[73,3333],[-2395,3470],[-3426,-1247],[-1174,-2001],[-1923,-1028],[-505,-3314],[1113,-2778],[3119,-3088],[1742,609],[2136,-706]],[[735736,618707],[1369,8830],[4001,23856],[7611,46601],[1428,3545],[1537,7160],[1421,2199],[831,4695],[-498,2489],[2382,2068],[-2897,5549],[452,4147],[-1211,7352],[678,5464],[1430,2509],[555,3895],[-628,9957],[283,2857],[1554,2719],[920,4030]],[[756954,768629],[-16896,3496],[-11522,2042],[-20902,3215],[-428,5122],[2253,4391],[2483,2230],[-117,7336]],[[711825,796461],[894,1325],[-2899,7138],[-5266,2507],[1664,-2836],[-3371,-4093],[-669,-2538],[549,-2364],[-1004,-6492],[-1375,200],[-1196,5876],[-40,7260],[-1497,2536],[-28,-1878],[-3356,-999],[-675,754]],[[693556,802857],[-4154,-57337],[286,-19495],[530,-50856],[647,-45483],[-2041,-3708]],[[688824,625978],[-76,-468],[24753,-3161],[22235,-3642]],[[660048,590762],[1112,4281],[-1534,-580],[-443,1513],[1131,1839],[-1975,2619],[-2330,1037],[640,3011],[1245,803],[-1742,1919],[390,2636],[-1809,-941],[497,3131],[-597,2416],[-1006,-2714],[-1041,2237],[1747,1270],[-1212,5075],[1469,1146],[-748,1405],[695,2435],[-1572,327],[-631,3643],[-1450,-460],[-251,1805]],[[650633,630615],[1264,3150],[-3128,3252],[-1134,-991],[641,4945],[-1695,-1704],[141,3064],[1320,-62],[-817,2842],[-610,-2577],[-553,3043],[941,2791],[-663,1223],[205,3846],[-3205,2094],[330,2343],[-1554,1400],[-326,2577],[-1622,-908],[2152,3399],[-1565,-760],[-796,1819],[1615,1378],[-416,2192],[-1652,421],[-1815,2284],[1350,1577],[-769,1797],[873,4181],[-2028,-607],[-200,2051],[1455,417],[-121,2251],[-1570,-1734],[-1026,1837],[1639,2471],[-1769,1676],[980,2064],[-908,2351],[2177,-577],[-1623,1962],[1259,727],[1115,6037],[164,3087],[-2075,1416],[1562,1898],[-792,2040]],[[637384,708598],[-16804,1169],[-36746,1520]],[[583834,711287],[-257,-20483],[-3750,-1366],[-2614,1831],[-1848,-3501]],[[575365,687768],[216,-48421],[145,-19243],[-3736,-42448]],[[571990,577656],[26354,-949],[13544,-761],[21556,-1651],[17903,-1740],[449,3213],[1197,647],[242,3444],[-1005,2975],[-1619,1916],[-1631,3801],[-923,3736],[11991,-1525]],[[317521,531706],[-13050,160974],[-4499,54924]],[[299972,747604],[-26536,-6628],[-11551,-3071],[-36380,-35930],[-28468,-29314],[702,-3676],[2016,-4193]],[[199755,664792],[3700,-247],[1827,-5291],[-515,-4953],[-2755,-1467],[-393,-1878],[1337,-6678],[-844,-1552],[558,-3650],[1543,-115],[2748,-4381],[374,-4477],[760,-806],[307,-8870],[2167,-3071],[981,-3159],[2966,-1434],[2664,-4206],[-3000,-6809],[-1084,-6062],[-158,-4650],[-1181,-2474],[-920,-4096],[495,-5243]],[[211332,579223],[262,-3658],[1592,-2042],[244,-6182],[-706,-7142],[939,-4163],[-450,-1667],[645,-7717],[794,-570],[-866,-2955],[172,-5395],[2449,-1604],[2141,1314],[2427,209],[1842,5709],[1778,-368],[2323,-5363],[3320,-30587]],[[230238,507042],[18166,5805],[17490,5203],[12596,3592],[13444,3492],[658,406],[24929,6166]],[[130766,626530],[1339,4767],[1900,4854],[-1454,117],[-1091,-2422],[-694,-7316]],[[132865,609667],[3910,4448],[143,4286],[-2197,-1782],[-372,-4500],[-1484,-2452]],[[110003,577713],[942,4202],[-2939,575],[-1410,-5154],[3407,377]],[[112868,577480],[2360,1713],[2152,2697],[1428,-1027],[-138,2214],[-3162,130],[-2256,-1266],[-384,-4461]],[[155806,281308],[-10636,70641],[-4587,29179],[-1675,11846],[16921,43474],[31413,80901],[24090,61874]],[[199755,664792],[-44892,-9075],[797,-5139],[-2139,-3652],[952,-544],[-1022,-2556],[799,-1747],[-130,-9454],[-2323,-9921],[-5356,-12694],[-1814,-2553],[-1601,-4792],[-1722,-1102],[-1550,1969],[-2021,-2242],[870,-3518],[-521,-5206],[-1136,-3381],[-3433,-1197],[-1466,670],[-4945,-5825],[-1526,-2657],[-556,-5181],[-2572,-5166],[-1679,-2402],[-2980,-540],[-2583,-1545],[-1973,-2991],[-2192,-1490],[-6089,-1742],[-303,-3120],[-1995,-3458],[1484,-4154],[-354,-2032],[1053,-3498],[-802,-2260],[1288,-4047],[604,-3963],[-1925,-2242],[-1914,-4668],[1716,-2501],[-730,-4771],[-1624,-1235],[-1768,-7671],[-1928,-2159],[-77,-4721],[-1660,-5054],[78,-3689],[-1177,-2242],[-449,-4057],[-981,-3408],[-2439,-5572],[418,-3378],[-117,-7456],[1027,-1807],[872,1744],[1178,-1614],[1509,-5210],[-533,-5507],[-998,-2114],[-2965,-551],[-1546,-3514],[-2055,-7885],[1075,-6025],[-110,-4877],[-832,-1991],[1356,-6009],[285,-3624],[2228,715],[-1094,5400],[312,2118],[1651,1847],[2438,6020],[-413,-2514],[122,-6627],[-1171,-3496],[446,-1531],[-600,-5194],[-902,-2184],[2916,-2598],[1710,2058],[2468,-251],[3086,3056],[2095,-1541],[500,-1545],[-2117,1549],[-1986,-754],[-1821,-3927],[-1855,2759],[-2199,-2022],[-1170,-3413],[-2174,216],[-736,3250],[667,1563],[-1286,1633],[796,2230],[-1910,1617],[-1651,-4540],[-799,329],[-2065,-6224],[-2466,-324],[1910,-4637],[12,-3898],[1111,4118],[-2124,-13149],[-2651,-5980],[-979,-6004],[-2434,-7315],[-800,-4420],[1342,-2458],[-208,-12919],[697,-3252],[1674,-4178],[330,-10690],[-2388,-12065],[-1082,-1690],[-1969,-6215],[568,-1791],[-94,-5345],[3923,-8263],[663,952],[1405,-3947],[1626,-33],[-839,-2327],[1834,-5352],[-58,-4610],[1431,-2720],[2268,-8614],[242,-10663],[-1201,-2382],[1505,-3747],[623,-3873]],[[88970,248987],[13649,6990],[15418,7234],[12711,6526],[8528,4180],[16530,7391]],[[412849,394704],[23242,3044],[10135,1158],[-1421,38411]],[[444805,437317],[-3200,90527],[-951,25273]],[[440654,553117],[-16921,-2241]],[[423733,550876],[-23564,-3003],[-32769,-5500],[-11747,-2168],[-128,-325],[-24061,-4982],[-13943,-3192]],[[317521,531706],[3658,-44502],[27,-4306],[2729,-31898],[5857,-72086]],[[329792,378914],[17280,3870],[30186,6200],[20757,3571],[14834,2149]],[[942128,279391],[2188,13016],[1186,8958],[-306,3630]],[[945196,304995],[-2074,107],[-326,1853],[-2875,647],[-2599,3268],[-1545,255],[-3982,2658],[-3771,1491],[-2546,5478],[-927,-438],[-1063,2439],[-1302,672],[-1140,2794],[-3321,3884]],[[917725,330103],[-1704,-3606],[3387,-5826],[-1543,-2638],[-2954,-28628]],[[914911,289405],[10855,-4026],[16254,-6545],[108,557]],[[872634,433232],[-199,-1812],[-1590,-1432]],[[870845,429988],[-517,-878]],[[870328,429110],[1057,-2771],[2681,3110],[-1432,3783]],[[894667,385977],[-2270,8389],[1145,1727],[36,3939],[4089,6550],[1090,7423],[1096,1062],[877,3211],[2776,3973],[1644,-515],[735,3946],[-917,864],[965,1939],[-1884,2010],[2092,-65],[497,-1584],[940,5770],[-616,234]],[[906962,434850],[-10328,3538],[-7269,-44158],[-351,-2799]],[[889014,391431],[1354,-4118],[1140,-1300],[3159,-36]],[[842770,994514],[776,-3736],[876,2461],[-1652,1275]],[[867242,959102],[305,248],[-2886,10880],[-2157,5299],[3529,-10838],[157,-2892],[1052,-2697]],[[824741,918519],[2652,7314],[-737,659],[-1915,-7973]],[[855147,867771],[1173,2976],[2692,9102],[-2634,-7497],[-1231,-4581]],[[849295,850324],[524,303],[1403,6997],[-1055,-2187],[-872,-5113]],[[840915,823089],[-3346,-7912],[-4508,-13699],[4332,12559],[3522,9052]],[[826954,775802],[3923,17760],[-1704,-4240],[-256,-2381],[-1775,-5683],[-708,-4474],[520,-982]],[[756954,768629],[1456,4056],[531,4282],[1381,2133],[33221,-3810],[17594,-2113],[617,5816],[911,1904],[2489,-1121],[-27,-7411],[-1214,-3966],[11,-3121],[1401,-3178],[6854,2497]],[[822179,764597],[3442,-262],[399,7031],[-1228,-1603],[-646,2322],[1423,-855],[520,3976],[-3384,1740],[392,2850],[-1417,1579],[1070,1634],[-688,3300],[384,4412],[2179,2410],[-34,2415],[1683,4582],[-1444,4055],[803,2991],[-1129,167],[631,7929],[2036,6550],[1444,-889],[-157,-3154],[-3330,-4328],[-545,-5738],[1617,-1366],[-931,-3220],[939,-145],[813,-3001],[-1700,-4182],[417,-3103],[-2517,-2833],[574,-3240],[-939,-20],[640,-3599],[-951,-3143],[685,-2843],[3327,443],[551,3856],[1776,5630],[214,2447],[1592,4338],[72,2224],[2227,5648],[3893,11996],[2833,7886],[4088,10091],[1488,3053],[4097,4974],[1477,4658],[-1002,2013],[-677,-6173],[-1307,7922],[1332,5541],[-1859,-5605],[-803,-7662],[-1329,-887],[426,-3925],[-2316,-2202],[1923,8800],[1541,5632],[2426,7158],[4487,11873],[2207,4782],[2892,10567],[4222,9965],[2255,6397],[926,5231],[1111,12684],[358,14289],[443,7012],[-856,1527],[29,4173],[-1714,5545],[-276,6091],[961,3440],[-1985,5496],[-1171,1385],[-1403,-680],[-438,1664],[-2221,2777],[-3361,-152],[-498,1514],[-3743,1892],[-2022,-3463],[316,-4714],[2152,3520],[1879,718],[957,-1453],[-2053,-3733],[-671,1082],[-1936,-685],[-2390,-5175],[1281,-2552],[1605,-458],[-1637,-1182],[-1514,2560],[-1770,-4514],[1147,-2542],[-2348,1575],[-646,-3877],[-3487,-2221],[-4796,-2334],[-1696,-3295],[-1521,-9451],[-1029,-3999],[-939,1029],[-1951,-1123],[1458,-2568],[-2177,1057],[-1481,-5361],[392,-5256],[-1313,-3545],[1990,-2554],[-4009,1029],[1071,5490],[-1736,600],[-4671,-8259],[-3819,-12791],[-1639,-1467],[1738,-5714],[-437,-1155],[1347,-4584],[1575,-3223],[-1164,-3227],[-1217,20],[647,3527],[-1667,-1076],[-273,-3821],[-1989,-1682],[-1277,3513],[2635,2115],[-641,6434],[-4180,-4717],[585,-9842],[-718,-2978],[911,-2955],[798,-7049],[82,-5822],[-1298,-5364],[330,-5103],[-2018,-3782],[-2066,-6883],[-4869,653],[-609,-3423],[-1602,-1652],[-1944,-3822],[-813,156],[-2745,-3510],[-250,-4358],[-1720,-876],[-2092,-2710],[-1390,-3917],[-3292,-3211],[-2886,-1551],[-1824,-2046],[-2715,1837],[-840,-928],[-2614,1397],[-1559,4803],[2091,300],[-215,1590],[-1992,-591],[-1523,1044],[-4671,6381],[-1932,1704],[-404,-1555],[-1290,2669],[-2377,401],[-3681,1786],[-74,-4206],[-1473,-3595],[-6747,-7229],[2461,573],[1667,1972],[-993,-3233],[-1314,458],[-2871,-2087],[-788,-4615],[-1716,1197],[161,2032],[2073,441],[420,3400],[-4566,-4208],[-5869,-2741],[-4957,-374],[245,-1359],[2426,739],[3912,-349],[665,-2063],[-2615,-1713],[-3174,1880],[-774,-2177],[-604,1987],[-1861,1122],[-103,1549],[-3228,223],[-3591,1240],[-4093,2290],[2872,-2421],[1484,-2222],[-1996,-3153],[-485,3742],[-1992,-4737],[14,5643],[-2311,3099],[693,544],[-3408,1584],[287,-3317],[1466,-1056],[-1805,-2034]],[[825176,755440],[-697,7903],[-274,-4419],[-775,-1010],[1636,-4139],[110,1665]],[[824401,740907],[2131,294],[301,1343],[-1667,4780],[-1312,-1949],[547,-4468]],[[827067,731538],[455,643],[-1396,5749],[-1283,-3485],[2224,-2907]],[[827765,725184],[-280,5447],[-840,-3734],[1120,-1713]],[[827363,719277],[1736,821],[-1418,4064],[-1161,-3312],[843,-1573]],[[828787,710466],[1743,1867],[-671,2766],[-1694,-2860],[622,-1773]],[[735736,618707],[23131,-4754]],[[758867,613953],[12645,-2681],[9171,-2646]],[[780683,608626],[24,2252],[-2084,3039],[-1460,7223],[7002,7143],[1775,-893],[1609,4713],[1765,2662],[1063,4612],[795,546],[2782,6412],[4170,3392],[1577,2084],[1852,5062],[2920,1767],[2498,3275],[235,4646],[1414,823],[1402,3493],[2230,3221],[4292,3134],[38,2743],[1967,4070],[634,7168],[2852,2210],[1762,2841],[49,1721],[1717,2913],[-190,3600],[1176,4633]],[[826549,709131],[1845,1572],[-186,1633],[1845,3773],[-250,2210],[-3198,-2088],[-1092,777],[1478,2273],[-521,1487],[623,3357],[-1424,-190],[844,2110],[-1449,399],[1663,2493],[-78,1900],[-2122,975],[1388,820],[-1029,2389],[186,3809],[1094,1245],[-2918,44],[1094,1957],[-1010,4425],[363,2487],[-1467,-660],[2062,3332],[-1338,-271],[1488,3801],[-1113,2790],[775,1175],[23,4511],[-1946,931]],[[624526,305076],[194,5075],[2653,4006],[-1745,4881],[756,8726],[737,805],[732,4982],[1519,2023],[4542,2088],[1163,4601]],[[635077,342263],[-177,1164],[3136,3548],[1463,5673],[3115,2550],[1321,5399],[-487,7980],[-1943,2549],[-331,5984],[-1873,2667],[-2189,682],[-956,1992],[-3293,646],[-3028,1621],[-1008,6970],[2942,5262],[-62,6590],[-2014,4082],[-388,6029],[-3792,2739],[-747,1878],[786,6051],[-890,945]],[[624662,425264],[-1771,-1061],[-1869,-5018],[-1819,-2563],[-5925,879],[-19644,1996],[-13798,884],[-8783,343],[-19714,-258]],[[551339,420466],[-405,-2855],[-1673,-2786],[919,-2072],[387,-3893],[-989,-4723],[90,-6884],[-873,116],[506,-5113],[-1174,-959],[552,-4397],[-1163,-2203],[-1589,-613],[-562,-5870],[954,-4145],[-1584,-4223],[518,-2754],[-1839,-1080],[-422,-4254],[-1299,-2103],[371,-2509],[-1499,-4507],[317,-5276],[-809,-197]],[[540073,347166],[-1006,-5418],[-2078,-4013],[1607,-7169],[655,-1374],[-142,-3548],[1184,-2660],[-597,-3852],[-1365,-148],[598,-6526],[-1093,-1584],[-104,-2529],[2354,22]],[[540086,308367],[13335,24],[26715,-560],[19310,-921],[25080,-1834]],[[251956,45529],[-4750,37825],[2274,9544],[1248,2644],[47,3934],[-1156,1209],[1171,4132],[-1249,760],[2182,3716],[96,1995],[2650,2354],[939,4690],[1290,2335],[829,5408],[1596,2499],[-302,3461],[4000,6066],[-195,2545],[4452,1176],[-3167,13058],[-726,389],[-35,3848],[-1085,-317],[276,4117],[-732,980],[1222,2489],[-510,4730],[-1373,-389],[-1357,2554],[582,4222],[-1117,853],[-353,2800],[1449,383],[1474,4563],[1882,-2678],[1794,82],[3598,-4148],[204,2952],[1421,1213],[-757,2925],[866,169],[-441,4341],[692,5863],[1489,6220],[1388,2641],[-279,3753],[-843,179],[669,4525],[1067,2392],[1431,-926],[1759,2363],[709,5826],[-722,948],[970,3154],[-244,2844],[2121,4252],[1507,-4467],[4806,1640],[1213,1580],[765,-2885],[1264,-1149],[2828,2571],[3732,-509],[522,2282],[2027,-1396],[2987,1784],[-41,-2680],[2745,-5059],[2131,5749],[-266,1699],[2412,4627]],[[309032,238779],[-5910,64166],[-2809,29536]],[[300313,332481],[-17320,-4735],[-19919,-5935],[-11436,-3643]],[[251638,318168],[-25973,-9057],[-22192,-8339]],[[203473,300772],[9097,-68960],[2136,-4942],[-129,-3982],[1571,-3026],[-819,-2780],[-1153,35],[-661,-2189],[-1133,388],[-430,-5583],[659,-2985],[1596,-1982],[2636,-6928],[1723,-696],[2356,-4924],[195,-3465],[2431,-3880],[1700,-6289],[2681,-6208],[1876,-3095],[-1138,-7270],[-2400,-2379],[-1464,-7566]],[[224803,152066],[-153,-4100],[889,-2466],[-347,-5096],[-768,-2111],[609,-2922],[8272,-62957],[4372,-32177]],[[237677,40237],[14279,5292]],[[681414,337214],[-113,7335],[839,3846],[2120,4400],[1551,8314],[1757,5484]],[[687568,366593],[2429,47220],[1092,23078],[1086,20225],[-1188,2553],[713,2430],[-1277,3492],[1634,2791],[123,2755],[1116,1033],[-520,3667],[1153,2828],[-624,4225],[-1225,1873],[-195,4675],[-1801,2491],[293,1760],[-1665,5462],[-1200,-753],[-851,3765],[1318,1441],[-1433,5313],[85,5503],[-1337,-13],[1343,3463]],[[686637,517870],[-2038,5662],[1930,6630],[-3657,1639],[-1295,2087],[-2017,929],[-510,4042],[1835,4833],[-466,3100],[-1513,351],[-6797,-5066],[-1716,662],[-2588,6235],[879,2941]],[[668684,551915],[-891,394],[-1442,-3340],[-225,2958],[-1838,-1748],[-2850,-9370],[1461,-2567],[-339,-3294],[-1483,-3623],[616,-1950],[-756,-3762],[-2833,-2497],[70,-1152],[-3357,-4152],[-1181,1541],[-1572,-3473],[-2370,-3345],[-2114,-1942],[-2217,-4293],[-295,-4071],[1283,-3972],[290,-3170],[1343,-4964],[-717,-2680],[1439,-3453],[56,-2091],[-2478,-2384],[-3773,-1142],[-1223,3497],[-1172,32],[-1733,-6137],[344,-2032],[-987,-6140],[-779,-1713],[-4591,-5127],[-1365,-3653],[-910,-277],[-3862,-6674],[8,-2453],[-1264,-1839],[147,-3389],[-1370,-3984],[-409,-7638],[1317,-5582]],[[635077,342263],[30229,-2793],[16108,-2256]],[[694239,335147],[-502,6087],[-1055,22505]],[[692682,363739],[-5221,827],[107,2025]],[[687568,366591],[0,2]],[[681414,337214],[12825,-2067]],[[732365,359082],[3795,54340],[1050,17646],[1776,27150]],[[738986,458218],[-1191,2153],[1345,2829],[-664,2472],[1365,647],[112,4119],[-3012,854],[-2911,4116],[-1361,-1430],[-2847,342],[-631,1211],[904,6811],[-1097,2545],[-2001,2142],[-326,3775],[-1370,2544],[-919,-617],[-1719,5255],[-357,6087],[-1409,2060],[-1334,-1857],[-2858,-1191],[-267,-3050],[-1604,-2098],[472,2622],[-1645,364],[-154,2975],[-1111,495],[437,4262],[-1407,618],[-936,3222],[-107,-2653],[-1203,918],[-1483,-3505],[-4125,4284],[-212,3513],[-1036,939],[-4714,-5093],[-2069,1435],[-1747,-2316],[-452,1958],[439,3550],[-1130,55],[-288,-2583],[-2485,1387],[-1182,-1793],[-695,1658],[732,2993],[-2096,628]],[[687568,366591],[1678,2115],[1886,670],[3205,-1445],[4648,-5197]],[[698985,362734],[19177,-3328],[14028,-2769],[175,2445]],[[692682,363739],[6303,-1005]],[[559130,442945],[2033,3827],[1785,1439],[1095,-1344],[1569,363],[852,2280],[210,3482],[-1501,-335],[-1685,6387],[-961,1042],[3053,6399],[997,398],[-312,2984],[2533,4763],[2788,656],[-261,1332],[250,51822],[250,29964]],[[571825,558404],[-14022,234],[-19248,40],[-19353,-361],[-12403,-400],[-17326,-939],[-27873,-2005],[-20946,-1856]],[[444805,437317],[26493,2563],[18899,1333],[26555,1228],[12834,357],[13189,176],[16355,-29]],[[663249,571234],[-971,101]],[[662278,571335],[-626,-2264],[1522,-644],[75,2807]],[[779039,475899],[852,5934],[-646,5014],[1711,2304],[1670,3902],[-429,975],[3829,5737],[398,2788],[3194,3007],[363,1557],[2767,-194]],[[792748,506923],[-5747,11964],[-3305,3284],[-2797,4155],[283,2674],[-2327,3199],[90,3373],[-2108,2120],[-1182,20],[-772,4530],[-6731,4553],[-2336,3029]],[[765816,549824],[-221,746],[-15070,2716],[-13372,1524],[-3365,1069],[-5989,842],[-10404,738],[-25459,4754],[5,-1178],[-3936,12],[932,5183],[-306,1727],[-16930,2046],[-7273,1048]],[[664428,571051],[658,-4794],[877,-378],[1653,2090],[1119,-3850],[-787,-1928],[1290,-1557],[-1093,-3007],[691,-574],[487,-4500],[-639,-638]],[[738986,458218],[1011,-1803],[2784,2253],[2567,-2116],[351,1762],[2351,1877],[1515,4077],[367,2858],[3227,1139],[1600,-851],[1669,827],[1845,3500],[1756,650],[755,-2361],[1488,-1087],[3494,1665],[525,1414],[2526,-1360],[1787,-4497],[2387,-1757],[1205,5931],[2187,895],[2199,2817],[457,1848]],[[640165,847782],[1529,1784],[-634,3789],[-2805,-2876],[1910,-2697]],[[669779,844512],[1772,1724],[-1711,1152],[-1976,-256],[1915,-2620]],[[627099,838693],[3607,2801],[-2042,3140],[-4084,-3210],[387,-1451],[2132,-1280]],[[589322,838594],[-1799,-4159],[1868,-3565],[760,-3708],[1683,-2668],[-224,-8833],[-1153,-2112],[944,-3373],[-388,-5369],[1791,-4052],[1751,-10804],[-822,-562],[1209,-2170],[-551,-5935],[-1053,758],[-194,-2486],[-1766,-2898],[-173,-5035],[-1083,-1053],[614,-1771],[-1970,-1478],[-140,-4537],[518,-1120],[-1733,-6181],[-3094,-4824],[-483,-39372]],[[637384,708598],[-788,3142],[1021,847],[364,-3101],[1397,2178],[-1376,3499],[41,3477],[1692,630],[-1645,3080],[637,2258],[2132,-1711],[-1602,3035],[185,3624],[2063,70],[-355,3348],[1752,691],[-1204,1868],[-356,2748],[-841,-620],[-2183,1991],[65,2294],[2130,206],[-303,4154],[-2050,2310],[194,1635],[-3026,3119],[-842,5192],[24,3460],[-1788,-803],[238,2239],[1405,710],[-1843,1383],[-40,2690],[1031,3172],[-1580,-1993],[-550,1109],[1426,3358],[-692,1984],[-2026,707],[1149,1681],[-463,3377],[1256,2889],[-1335,1622],[21056,-1876],[14861,-1634],[500,1095],[-818,5520],[-917,2433],[-88,3786],[1759,5857],[1703,2154],[1304,5125],[306,3299],[1874,1650]],[[672238,813556],[-1881,1009],[-1874,3863],[263,1347],[-1969,-408],[-751,1515],[872,2644],[1372,119],[920,1953],[1931,-138],[338,-4572],[1663,-2170],[1020,158],[31,4540],[1241,-197],[566,1956],[-1198,1614],[-968,3506],[-3417,-131],[1742,3067],[-1933,-52],[417,1568],[-1681,1035],[1561,3621],[2616,2146],[-710,1682],[3715,36],[867,2076],[795,-1014],[1097,2075],[908,-1822],[2415,5949],[-209,3450],[-1675,2636],[-1292,-3225],[38,2186],[-2925,5342],[2630,-8105],[-1096,-3067],[-562,3215],[-559,-3159],[-1402,1480],[-1205,-2477],[65,-2769],[-2222,-2172],[-3562,550],[-2654,-3648],[-654,1247],[-3401,-3194],[-202,-4670],[-906,-464],[366,4358],[-1179,2138],[931,1693],[2727,633],[203,5442],[-1263,-56],[960,4920],[-2921,3891],[-1091,-4463],[-1808,-3796],[-874,3748],[124,-3384],[-1554,996],[-2183,-1022],[48,2738],[-1369,747],[-454,3936],[-2412,-641],[-1318,1274],[-1258,-1761],[2493,-3068],[-1369,-197],[-1607,-3318],[-1653,5732],[-1449,-736],[84,-2942],[-2948,-5639],[-241,-3473],[-903,1950],[-1930,-2327],[-2235,507],[-613,-3360],[-1397,335],[-267,-4376],[-2811,210],[-1524,1616],[-486,-1580],[965,-3255],[-2990,342],[-2,1196],[-2441,2179],[-1777,-329],[766,1974],[1257,-56],[-80,3214],[1489,-753],[-230,1889],[-2336,343],[-2540,1966],[-6146,-1367],[-2466,-1280],[-5464,-4017],[-3286,-1483],[-3126,657],[-2690,-245],[-4942,1459],[-1871,1748]],[[974611,290528],[1304,3339],[-2149,1520],[-1934,-1132],[1928,-338],[851,-3389]],[[964565,291272],[2763,2861],[-3937,2093],[-800,2004],[-1260,-1247],[1104,-850],[589,-3365],[1541,-1496]],[[955938,293478],[-1157,-5963],[-1095,-89]],[[953686,287426],[-721,-1185]],[[952965,286241],[-2006,-1726],[-854,-4346],[-656,504],[-719,-4671],[-6602,3389]],[[914911,289405],[-526,-1255],[376,-26221]],[[914761,261929],[12873,-4708]],[[927634,257221],[18564,-7038],[1537,-2315],[-376,-1939],[1814,-1451],[226,-2204],[1427,-1666],[1849,-355]],[[952675,240253],[1019,4137],[2481,3121],[318,-1770],[1145,1592],[-1578,3250],[-2519,2585],[-1103,10026],[1706,1234],[1333,-1775],[2650,1507],[2004,3851],[-642,3511],[987,1404],[2207,348],[715,4272],[2221,1503],[2815,-94],[3522,-5363],[-406,-3082],[-1137,-705],[-1891,-4371],[-1049,1671],[-174,-2254],[2338,560],[1581,2545],[1989,6859],[-656,4018],[-5735,5183],[-967,2488],[-2972,2496],[257,-1864],[-994,-5154],[-1643,-280],[332,3298],[-2160,2132],[93,3380],[-1507,2393],[-671,-2170],[-646,2743]],[[884287,422302],[520,1713],[-1714,395],[401,-3917],[793,1809]],[[904140,453145],[-4036,2323]],[[900104,455468],[-1703,1022],[-2646,3418],[163,-8350],[-649,-1220],[-1410,2199],[-129,-2333],[1893,-2204],[-1425,203],[-395,-2121],[862,-4082],[-1186,2210],[-406,3683],[-1217,-1794],[-759,1887],[-3162,-3888],[24,1912],[-2197,-4211],[1207,-2374],[-830,-3016],[1766,-1155],[2545,710],[-4051,-3889],[-2090,-569],[830,-4315],[2011,3158],[-1006,-4718],[-1264,-3223],[1310,-1194],[-599,-1873],[840,-2309],[-1181,-1309],[-427,3577],[-1275,-3237],[486,-4881],[1249,-4550],[1095,-1126],[1170,-3731],[1990,299],[-1598,-1586],[-1236,2536],[66,-4321],[-2008,1606],[370,3852],[-2200,3474],[-184,2701],[-951,-3157],[-997,7550],[-1185,-1403],[-2169,607],[2631,2626],[1290,2664],[-1615,1090],[2455,1583],[-1136,1545],[-1543,-2411],[-403,1097],[2457,2758],[-1148,7127],[864,1524],[1059,7227],[2959,4675],[-367,2749],[-2153,-2885],[-2217,-1332],[-1288,-5505],[360,4832],[931,1759],[2841,2150],[2155,3084],[1870,4071],[448,3378],[-2702,-3324],[-1239,1387],[-1424,-2701],[-2313,-1140],[-362,1639],[-3375,-1428],[-1079,-1548],[-1695,-4809],[-550,3028],[-1755,2483],[-839,-620],[-841,-3621],[1870,-8080],[1134,-1980],[-92,-3793]],[[870328,429110],[-2329,-1114],[-237,-1615],[-3835,-661],[-1407,-2289],[778,-3475],[-2117,-2327],[-2629,287]],[[858552,417916],[-1160,-3818],[-2628,-3984],[554,-2343],[-2801,1113],[-2047,-2542],[-1259,-120],[-1120,3309],[-1549,-307],[-1352,5219],[-3263,466],[-2673,-2081],[-2177,7349],[-1482,-1203],[-1359,3378],[-1737,2370],[-3276,6959],[-1837,-19602]],[[827386,412079],[19150,-5998],[22448,-7393],[20030,-7257]],[[906962,434850],[-639,2365],[1068,2268],[-549,3482],[-1270,963],[-507,5520],[-925,3697]],[[976828,181620],[-695,766],[-1380,-2206],[2245,290],[-170,1150]],[[977536,172494],[959,515],[80,3336],[-1303,232],[-490,-1792],[754,-2291]],[[981965,163543],[1932,1025],[730,1969],[-1981,2652],[157,2518],[-1989,-2598],[1151,-5566]],[[950952,230617],[-225,-3523],[-3673,-4489],[-455,-6473],[-441,-644],[-1544,-8069],[-6362,-35305],[-3908,-19979]],[[934344,152135],[1804,-2116],[1610,3300],[713,-3632],[-736,-2877],[891,-1471],[2136,56],[-2141,-3501],[1629,-6794],[2143,-3661],[-807,-2054],[1745,-4570],[6,-1954],[-1602,-2390],[421,-5189],[-1098,-1308],[447,-5740],[1726,-4194],[-795,-10646],[6707,-33461],[3144,685],[871,5814],[2482,1421],[1064,-2015],[2784,-2664],[148,-1664],[2952,-1514],[156,-2946],[2915,-3],[3746,3120],[1592,2750],[1598,643],[7456,40839],[157,2872],[1245,6997],[1346,-304],[2039,1385],[2798,-597],[688,2682],[-1125,1311],[1714,2981],[-150,4478],[3053,4503],[571,-2653],[2062,92],[2806,5368],[-1484,4757],[990,897],[1712,-2255],[1115,2598],[-2132,7599],[-1286,1490],[-683,-2898],[-1402,1828],[440,3155],[-2283,-206],[289,3817],[-1932,2560],[-1999,-3111],[-550,1643],[324,6529],[-1759,-3527],[-251,7082],[-1204,-2028],[-384,-2857],[-2002,-670],[103,2053],[-1398,797],[-1185,3227],[-536,-3678],[-646,3573],[-966,907],[1770,6130],[-4199,-2598],[-1489,-1705],[305,-5914],[-984,-20],[262,3757],[-2160,2753],[1078,3535],[-741,3984],[-5,6180],[650,921],[-1379,3208],[-65,2161],[-2545,-99],[-820,-3753],[-502,9480],[-1798,-3061],[313,2841],[-1175,2518],[-516,-7573],[-1354,5215],[1456,2042],[-314,3021],[-2135,-6798],[1533,7564],[-614,1774],[-1312,-6262],[168,3453],[-1342,-2407],[-1823,1753],[-1741,7527],[1574,3633],[-2319,2441],[481,3436],[-655,3658],[-1599,2081],[249,3852],[-616,6311],[-2831,-1218]],[[705348,234283],[-1602,-1224],[61,-2179],[1131,567],[410,2836]],[[710354,206966],[1040,5252],[-1930,1369],[374,-6832],[516,211]],[[754003,353049],[-14340,4123],[-7298,1910]],[[698985,362734],[3151,-5892],[1574,-8646],[1420,-3994],[1592,-9580],[241,-9929],[-960,-10576],[-623,-3266],[-3391,-10639],[-2503,-9712],[1323,-7827],[-1751,-9120],[1070,-1982],[2106,-9695],[107,-8872],[-490,-4274],[2269,-1882],[-68,-5572],[1455,-1124],[473,-2211],[1985,352],[2490,-9684],[1381,90],[-1169,2223],[907,2347],[-776,8869],[1040,2077],[1341,-8616],[-59,5214],[-944,3929],[791,271],[1633,-7592],[26,-6739],[-447,-6238],[2346,-3738],[2448,-483],[1935,-1610],[-2992,-2740],[-643,-3336],[2379,-5863],[-802,-1642],[3105,-451],[-135,-1077],[3553,2025],[1887,1821],[2035,-864],[1890,791],[1911,4423],[3219,149],[2327,2505],[3273,1586],[1196,-623],[2040,2897],[-504,602],[1898,3992],[408,3460],[-1134,-814],[-1178,3148],[1336,3432],[1366,683],[1182,6174],[55,14773],[-1382,3247],[-1601,1346],[48,6933],[-1083,89],[-322,2447],[-2629,501],[-896,3909],[-247,5355],[1038,3245],[3800,2494],[2242,-6312],[803,153],[954,-5132],[1585,-5068],[3204,-2032],[1789,-2773],[3222,2206],[2676,7605],[777,6591],[1545,6280],[901,7807],[2466,9089],[-628,3499],[429,4383],[-616,6570],[-2505,-2547],[-1901,2048],[633,2807],[-1347,2205],[169,4834],[-580,1696],[-2249,2243],[-1015,5808],[-157,6601],[-2466,5612],[-1234,5646]],[[725251,201488],[3340,1052],[-848,2106],[-1205,-274],[-1287,-2884]],[[740339,194169],[-1208,-702],[-2180,1008],[-1056,-905]],[[735895,193570],[1248,-2707],[1257,-607],[-861,-2355],[2104,-23],[1978,3532],[-1282,2759]],[[729769,180992],[1388,2357],[-563,1267],[-1214,-2259],[389,-1365]],[[728912,173149],[1281,452],[-820,4126],[1430,3163],[-976,-327],[-2106,-5344],[1191,-2070]],[[691301,179442],[622,3773],[-1005,-135],[-497,-2968],[880,-670]],[[679745,237280],[-428,-129]],[[679317,237151],[-2000,-2485],[1054,-6540],[-814,-1790],[-875,1703],[-2078,145],[1196,-5840],[-749,-2448],[813,-1414],[-652,-3896],[-3019,-2925],[-1269,708],[-1052,-1508],[425,-3616],[-2443,-1465],[-2650,-86],[-1886,-1496],[-1189,1382],[-2651,-686],[-5000,-4037],[-13190,-4617]],[[641288,196240],[-3009,-1094],[-1707,-6112],[-960,-399]],[[635612,188635],[-2215,-1701]],[[633397,186934],[5842,-4777],[2560,-4860],[2655,-1756],[3912,-852],[2470,-2578],[1841,-3684],[2002,-364],[1317,-4072],[3747,-5376],[229,3684],[1771,562],[41,2486],[1289,1704],[-416,6230],[388,3050],[3160,-7295],[236,1213],[2197,-1134],[2778,0],[4276,3078],[1013,3151],[4268,8161],[3427,-547],[1253,-1670],[2659,3340],[1615,-1954],[1885,2253],[2384,-5806],[1644,-1214],[3038,-4184],[321,535],[3596,-1927],[5748,-498],[3615,-3658],[4577,-1488],[-915,2791],[8,6526],[4178,2366],[2441,-1936],[695,2505],[3681,-4101],[1436,2423],[1744,6917],[-1070,1218],[643,1863],[1497,-915],[1565,1403],[-553,1658],[2951,3604],[-1645,1360],[-1739,-644],[-6151,980],[-2310,-1898],[-989,4359],[769,3533],[-685,506],[-2775,-2845],[-1593,-2723],[-2128,-1161],[-4600,-1161],[-1433,670],[-1754,5084],[-3707,672],[-191,1878],[-2377,-1258],[-2158,404],[-1631,1965],[-570,5219],[-772,-161],[-2982,5659],[332,2199],[-1744,-2249],[2489,-7406],[-920,-1734],[-1022,2506],[-1968,-536],[237,1838],[-1300,4094],[-1403,1838],[-928,-6111],[-353,3391],[-1893,3470],[-1212,4477],[-728,4881],[-3821,12427],[364,748]],[[671128,147641],[2053,905],[182,1512],[-3686,1105],[358,1523],[-4244,6537],[-66,2082],[-1429,2393],[-787,3917],[-1126,-2924],[577,-1420],[-2822,-873],[-331,-3744],[1756,-2726],[1029,-3027],[3014,-3504],[2700,-1415],[2822,-341]],[[657860,124479],[3246,-2614],[-3335,7218],[-2319,1469],[-2487,3042],[1266,601],[-3509,2918],[-1146,-927],[673,-3245],[7611,-8462]],[[759439,343184],[-4344,9552],[-634,181]],[[754461,352917],[-154,46]],[[754307,352963],[-92,25]],[[754215,352988],[-179,51]],[[754036,353039],[-33,10]],[[694239,335147],[-4216,-35916],[-154,-4886],[408,-12229],[1059,-14374],[1042,-10845],[1543,-11018],[1037,-4808],[1832,-5400],[3678,-7067],[-8452,-6621],[-5235,933],[-1096,3994],[-1795,4096],[-1425,1700],[-275,4905],[-2445,-331]],[[633397,186934],[-10,-8]],[[633387,186926],[6051,-28266]],[[639438,158660],[6112,-28121]],[[645550,130539],[2265,1214],[9441,-11430],[4542,-2952],[11912,9884],[44158,34600],[2150,9318],[3615,5910],[1265,42],[1403,-2453],[1274,356],[928,-1776],[1492,-182],[49,4276],[1072,6578],[1830,3137],[1039,3336],[1813,-2783],[3952,-376],[2443,3586],[-2004,7257],[18182,14339],[11847,64655],[-3183,26556],[330,6294],[-412,6119],[-1740,2456],[-2467,7636],[-3651,3020],[-810,3258],[246,7613],[908,3157]],[[657860,124479],[-7611,8462],[-673,3245],[1146,927],[3509,-2918],[-1266,-601],[2487,-3042],[2319,-1469],[3335,-7218],[-3246,2614]],[[671128,147641],[-2822,341],[-2700,1415],[-3014,3504],[-1029,3027],[-1756,2726],[331,3744],[2822,873],[-577,1420],[1126,2924],[787,-3917],[1429,-2393],[66,-2082],[4244,-6537],[-358,-1523],[3686,-1105],[-182,-1512],[-2053,-905]],[[644286,131207],[-2705,3891],[-3203,3209],[-8282,5675],[-4809,5955],[-4383,7701],[-3062,7015],[-2756,3907],[-3595,6629],[-4102,5473],[1246,2989]],[[608635,183651],[-13,15]],[[608622,183666],[-1277,-1591]],[[607345,182075],[-53,3]],[[607292,182078],[-1000,1280]],[[606292,183358],[-52,-10]],[[606240,183348],[-402,460]],[[605838,183808],[-29,80]],[[605809,183888],[-5,1783]],[[605804,185671],[20,-24]],[[605824,185647],[-1381,-157],[488,22531],[-825,2281],[-4433,3440],[-1874,4167],[-247,2421],[-1284,1854],[-142,5324],[1748,286],[2073,4646],[-13,1707],[-1653,4292],[391,6886],[-123,10440],[-607,3208],[3903,5476],[497,1354],[3062,199],[2112,4331],[2700,1308],[2057,2377],[970,5072],[2711,2890],[2143,3406],[2433,976],[2541,5534],[722,2718],[-217,6135],[950,4327]],[[540086,308367],[186,-68939],[-426,-1958],[-3166,-2288],[-2629,-7802],[248,-1276],[2758,-3443],[1327,-3391],[240,-4059]],[[538624,215211],[78,-6913],[-593,-6709]],[[538109,201589],[-2169,-7926],[-844,-5877],[-11,-5955],[655,-3988],[-1126,-3495],[303,-3840],[-717,-14090],[401,-1383],[-1352,-9534],[-1862,-7487],[-176,-3341],[-1072,-4533],[516,-5792],[-693,-2581],[214,-6619],[809,-3453],[-1297,-5886],[241,-1447],[-778,-5584]],[[529151,98778],[15244,213],[15572,-48],[-79,-14527],[1410,1153],[1486,-665],[1967,2817],[2224,15414],[-78,4007],[1558,2243],[4877,654],[265,1621],[5928,649],[875,4290],[4857,-1347],[-23,-1583],[1748,-1519],[5435,-178],[3888,2972],[1396,-203],[-1102,3074],[865,951],[2217,-571],[643,3587],[1596,4810],[1494,-1080],[-608,-2535],[621,-1505],[3102,-383],[817,3498],[2190,2053],[2244,112],[146,3101],[2295,152],[-60,2461],[4739,-1919],[1568,-2807],[3712,-3795],[2350,5518],[2395,-1339],[381,1020],[2711,-117],[3646,-1113],[1674,828],[522,2046],[1834,1434],[2246,-1523],[2347,508]],[[639438,158660],[-10744,668],[-11957,15095],[-8102,9228]],[[644286,131207],[1264,-668]],[[664428,571051],[-1179,183]],[[662278,571335],[719,4673],[-1740,2698],[1479,1984],[-2858,402],[2001,4585],[-1456,1847],[-375,3238]],[[571990,577656],[-165,-19252]],[[559130,442945],[-1921,-2183],[398,-2616],[-1377,-2253],[-145,-2464],[-2842,-2857],[523,-764],[-1225,-4967],[552,-1769],[-1607,-326],[-147,-2280]],[[693556,802857],[-1487,2835],[-1619,-742],[278,-1693],[-3039,2090],[-3051,-1995],[-3843,1678],[-4262,3241],[661,-1655],[-1914,-792],[514,2541],[-3556,5191]],[[650633,630615],[17331,-1854],[20860,-2783]],[[428050,90361],[-2258,47097],[-3429,68367]],[[422363,205825],[-1703,35978],[-281,60]],[[420379,241863],[-18742,-3031],[-10405,-1828],[-250,235],[-18900,-3841],[-21342,-4544],[-9466,-2427],[-25054,-5782],[-5423,-1811],[-1765,19945]],[[251956,45529],[11425,4142],[22827,7761],[18343,5649],[12634,3741],[23107,6081],[17889,4348],[20148,4402],[17892,3491],[22416,3832],[9413,1385]],[[913675,542059],[782,2842],[474,7328],[64,7073],[-1891,563],[1839,-2436],[-557,-12028],[-711,-3342]],[[908653,533464],[1854,2635],[92,1792],[-2356,-3814],[410,-613]],[[902322,511598],[432,-158]],[[902754,511440],[1757,6963],[2585,7712],[4142,9322],[-2242,-3477],[-949,-3094],[-545,927],[-1638,-6894],[-1064,-1952],[-1031,-4858],[-1085,-1600],[-362,-2891]],[[900211,512378],[561,-205]],[[900772,512173],[1219,-276],[463,2065],[-1562,324],[-681,-1908]],[[866513,628708],[-23507,-28939],[-20195,5189],[-137,-4429],[-3355,-5830],[-1680,2894],[-228,-4004],[-22539,3881],[-4605,2541],[-3028,3436],[-6556,5179]],[[758867,613953],[-85,-9176],[1254,-1855],[2125,276],[1208,-2276],[-322,-4279],[2218,-4591],[1849,-2130],[4884,-1149],[4112,-7303],[2693,-3068],[2073,-543],[449,-5284],[1657,-315],[546,-3187],[2253,-3076],[932,1087],[-153,2551],[983,287],[1552,-2476],[656,-3080],[3226,-3773],[1680,1722],[1726,-1451],[1515,-7038],[1797,-2818],[1641,602],[-860,-2804],[576,-2146],[-44,-4828]],[[801008,541832],[14804,-2826],[2367,-775],[7252,-1321],[12752,-3604],[18515,-5703],[27768,-9355],[2011,-963],[13348,-4770]],[[899825,512515],[178,1914],[2961,5045],[3055,7961],[-1228,11],[-446,-2107],[-2372,-3999],[1838,4928],[-1961,-170],[-2363,-2999],[-5,1386],[1804,3229],[-1726,1706],[-2585,-2530],[1399,3904],[-4363,-2115],[3248,2756],[-1711,1641],[-1544,2951],[-2038,-1332],[-1272,381],[-1155,-5090],[-432,2080],[2605,7700],[4416,-3539],[784,1727],[3186,-3624],[1923,-528],[1737,11293],[619,881],[15,-4532],[-599,-4301],[1428,-2394],[2765,1071],[1484,6949],[-1087,630],[1100,2057],[-2347,2801],[-1156,2768],[-715,4404],[-1156,2614],[-3370,1355],[-2252,-2216],[-941,2562],[-2541,-4490],[-922,194],[1645,4308],[-2555,-715],[-6025,-404],[1496,1797],[2172,-359],[2472,2166],[4133,-249],[523,3720],[-2791,2196],[-1021,2357],[3211,-1647],[-538,3119],[-3177,5395],[-3969,-3020],[646,2515],[1722,1606],[2552,473],[1569,-3123],[2732,-2021],[264,-2749],[1060,4067],[2819,-860],[-1441,4561],[-443,-1191],[-1175,6987],[-1155,500],[-1254,-3111],[-325,2603],[-1411,-847],[13,2389],[-3521,1469],[-2783,2529],[-257,-1113],[-2953,7336],[-1710,-1297],[956,-2145],[-1991,-2547],[1424,3301],[-1279,891],[2216,2762],[-2287,3375],[-2677,5621],[-2650,8095],[-196,3748],[-1885,-3564],[992,3960],[99,3199],[-839,3663],[-4123,303],[-5855,3211]],[[538624,215211],[-10303,-170],[-16890,-565],[-17595,-1069],[-24848,-2018],[-13944,-1416],[-18828,-2243],[-13853,-1905]],[[428050,90361],[6647,962],[23682,2914],[17530,1682],[14814,1163],[24211,1267],[14217,429]],[[412849,394704],[3819,-76742]],[[416668,317962],[8891,1388],[27657,3441],[21743,1966],[15094,1102],[16736,881],[477,1985],[5434,5084],[1519,2247],[1320,-142],[1440,-3434],[2996,1235],[1369,-1292],[4752,14],[1139,574],[1713,3166],[2449,484],[4593,4297],[-205,1348],[1376,3934],[2912,926]],[[950952,230617],[2346,2578],[-623,7058]],[[927634,257221],[-2230,-4084],[6,-4287],[917,-1970],[-1234,-9551],[-876,-12075],[645,-1540],[-144,-3594],[1120,-3406],[-82,-4570],[757,-3543],[-479,-1610],[766,-3007],[-1625,-6812],[266,-2073],[3177,-2754],[2819,-7169],[144,-3260],[-2384,-5417],[1176,-6969],[-1122,-2362],[435,-1361]],[[929686,165807],[476,-7744],[-857,-886],[2023,-3481],[1089,1451],[1518,-399],[409,-2613]],[[899810,376677],[3204,-6396],[1567,-1513],[-1139,-2273],[-3432,-3643],[-635,-1903],[-1722,-374],[-687,-4442],[-1927,-170],[-1043,-4625],[1670,-7494],[-1912,-3480],[1445,-3248],[1638,-6157],[317,-4331],[1771,-3350]],[[898925,323278],[6223,3638],[8548,4567]],[[913696,331483],[37,3278],[-998,10352],[-1127,1254],[229,-3109],[-1066,3541],[-510,6226],[1307,1170],[1179,-831],[2700,909],[-222,3492],[880,179],[233,12891],[487,6887],[-1015,-8074],[-952,1084],[1041,2112],[-560,7589],[823,1292],[-2304,6393],[-1245,1022],[848,4475],[-1232,1791],[1525,707],[-1772,3088],[-1989,436],[632,2143],[-507,5904],[-1840,7347],[-1803,699],[435,-6157],[-391,-3144],[-3643,-91],[-3435,-1742],[-3577,-4194],[-1397,-688],[9,-4359],[-1205,-1861],[1007,-5610],[1956,-3796],[2839,-2711],[-245,-2547],[982,-2153]],[[423733,550876],[-835,19209]],[[422898,570085],[-700,-90],[-4167,95242],[-2162,40646],[-1595,36701],[-19394,-2630],[-22632,-3594],[-24716,-4411],[-663,5053],[1823,3526]],[[348692,740528],[-20522,-4094],[-11031,-2377],[-1294,17122],[-15873,-3575]],[[251638,318168],[-19074,167823],[-2326,21051]],[[155806,281308],[20880,9060],[26787,10404]],[[912647,345723],[658,1523],[-865,2813],[-1810,2514],[146,-5237],[1871,-1613]],[[939926,314014],[-1223,1303],[-1721,6801],[-1665,3654],[1725,74],[1635,-4817],[2845,-1534],[511,-1710],[970,1622],[2675,-4939],[664,1041],[-7950,11239],[-1260,-463],[-1888,4238],[-1454,-118],[-2106,3742],[-2303,765],[-1781,2761],[-1499,-126],[-3852,5171],[-4822,3615],[-602,-2282],[-527,2775],[-2144,1283],[-696,-3912],[1199,-4891],[2604,-128],[190,-4124],[2154,-2702],[1870,1174],[-774,-1934],[4575,-1249],[690,-2694],[6268,-2547],[2220,-1645],[3145,-5827],[493,-1975],[1834,-1641]],[[822030,283035],[1793,962],[-444,2760],[-1273,-785],[-76,-2937]],[[898925,323278],[-935,-2476],[-2541,526],[-1709,-975],[-2134,-4253],[442,-551],[-1434,-7141],[-1926,-1554],[-1300,843],[-990,-3183],[-1341,-1363],[-20355,7430],[-18128,6317],[-15071,4876],[-17629,5311],[-1038,-10245]],[[812836,316840],[3133,-4611],[4121,-7813],[1489,-1213],[1120,-5757],[2729,-4475],[-1607,-6243],[144,-2714],[-1176,-1499],[-1992,75],[224,-2172],[-862,-4557],[7797,-6576],[7011,-2491],[5027,-256],[4628,2568],[1579,-1917],[4976,-2447],[1932,416],[2885,-2828],[2165,-4867],[2980,-5373],[2743,-1235],[133,-4001],[-1458,-7010],[-1103,-226],[2382,-3724],[-1608,-2014],[1071,-2762],[-2072,-275],[-325,2230]],[[860902,233073],[-424,-1730],[-1876,-1421]],[[858602,229922],[963,-3740],[2131,-2363],[-151,-1547],[3475,-4675],[1121,-2927],[453,-3427],[3158,-8618],[2714,-6621],[3003,-4323],[1155,-2559],[2088,-2074],[2282,-244],[8243,-2936],[12290,-5768]],[[901527,178100],[369,6661],[867,1027],[147,7272],[1886,3791],[259,4919],[870,3500],[-796,3611],[36,5738],[2806,9650],[-497,5559],[856,2307],[1160,-2763],[1226,2326],[3365,27050],[680,3181]],[[917725,330103],[-1071,2956],[-575,4358],[-1326,1250],[-1285,4716],[-224,-1999],[726,-5285],[-74,-7760],[-741,-4100],[-2045,-2215],[1776,4089],[810,5370]],[[860902,233073],[256,1852],[967,-2758],[-1223,906]],[[812836,316840],[-951,-9265]],[[811885,307575],[12074,-15912],[-472,-4839],[-1379,-715],[-254,-3067],[-1113,-122],[245,-2643],[-921,-4347],[-2818,-6468],[7372,-9327],[10927,-3509],[19009,-6437],[3519,-19364],[528,-903]],[[806525,382282],[-2267,2825],[1623,4235],[483,5498],[-1466,9829],[342,6393],[-1334,5744],[788,2038],[-437,3549],[-854,614],[-4089,10105],[-2624,2475],[-1237,-2326],[-1681,3002],[-72,3047],[-1802,230],[-1018,3836],[488,3112],[-1001,819],[994,2650],[247,3303],[-1215,-454],[-641,2755],[-1310,-4170],[-1804,-855],[-1406,5458],[202,2117],[-1124,2212],[1365,6001],[-1876,2183],[-134,5167],[-3398,2535],[-1228,-310]],[[754003,353049],[33,-10]],[[754036,353039],[179,-51]],[[754215,352988],[92,-25]],[[754307,352963],[154,-46]],[[754461,352917],[-302,1265],[2350,-679],[1867,2091],[2574,790],[2125,2812],[1088,-170],[951,-2931],[422,2046],[1607,371],[-3770,1829],[758,2486],[3552,-2551],[3268,2268],[4154,-2943],[3724,-4093],[2318,663],[2166,-701],[1736,-2665],[4870,-9805],[4259,-4644],[1582,-1020],[5870,-5890]],[[801630,331446],[4895,50836]],[[759439,343184],[949,3296],[6960,5610],[4630,-1128],[17021,-25019],[11454,-7685]],[[800453,318258],[1177,13188]],[[575365,687768],[-1308,454],[-2059,-2548],[-963,241],[-1083,-2825],[-1555,770],[-2009,-4469],[-1475,-93],[-1449,-2807],[-1707,-925],[-1149,3330],[-4955,-434],[-885,-1995],[-4261,4067],[-1873,-1981],[-2124,1943],[-759,-791],[-1660,3711],[-2164,-164],[-906,3006],[-1450,-3480],[-1438,114],[-544,-1908],[-1766,-851],[736,-1931],[-1221,-737],[-2179,3034],[-1769,-829],[-601,-3354],[-1709,-233],[185,2247],[-2062,3610],[-239,2803],[-1221,-736],[96,-3744],[-765,-3051],[-807,1990],[-902,-991],[-1274,2641],[-1639,-844],[59,-2462],[-1837,210],[-516,-2134],[-1800,-1380],[-3405,5198],[-2095,-1990],[757,-3465],[-2515,-575],[-652,-2707],[587,-2136],[-1458,481],[-3559,-1794],[-898,2585],[-1402,942],[-2066,-3856],[-3015,786],[-4088,-3485],[-963,840],[-2645,-751],[-319,-4751],[-2943,-4864],[-580,3246],[-3160,-1875],[-406,1600],[-1726,-249],[-3999,-7836],[-1406,454],[1825,-74648],[-19281,-1559],[-20662,-2149],[-13386,-1599]],[[131184,103703],[1460,231],[2573,5326],[576,5354],[-992,11762],[1519,2388],[4419,4584],[5181,-418],[3407,-1837],[1598,1230],[2807,117],[2654,2056],[1666,2257],[-44,1950],[1994,-400],[2346,1536],[4908,-1943],[1985,2853],[4213,731],[895,-1116],[3420,-920],[4647,752],[1860,-1892],[616,929],[4209,574],[1939,1103],[2459,-1592],[31304,12748]],[[88970,248987],[-1536,-5026],[388,-3073],[-170,-5707],[719,-4245],[1601,-4593],[176,-3361],[-999,-3455],[96,-4332],[2197,-4342],[2386,-6999],[1230,-5250],[1958,-2493],[1946,-4777],[2559,-8433],[2655,-10517],[1231,-6234],[1567,-5389],[2777,-14473],[1345,-3696],[2567,-9182],[751,-5392],[1090,-1628],[-225,-2529],[2169,-9579],[-188,-1420],[2563,-11006],[-258,-6323],[1959,3880],[1616,-1074],[419,1590],[2158,365],[1058,-1344],[1674,4568],[2224,1388],[511,-1203]],[[899810,376677],[-1084,1775],[215,2644],[-2684,2109],[-1590,2772]],[[827386,412079],[-17511,5069],[-3350,-34866]],[[801630,331446],[2856,-3088],[8350,-11518]],[[800453,318258],[6766,-4625],[4666,-6058]],[[953558,288949],[383,5796],[-1369,-456],[986,-5340]],[[955938,293478],[-966,2042],[-1319,-6110],[33,-1984]],[[952965,286241],[-132,2858],[-822,-2615],[-1994,-2064],[821,7684],[-628,745],[1058,3843],[-464,4128],[-2138,1336],[-3506,3842],[36,-1003]],[[833289,701334],[1215,1519],[-749,2644],[-1658,2471],[1192,-6634]],[[833809,692326],[1741,-171],[2196,2575],[-1758,2561],[-763,3971],[-1309,-3729],[-107,-5207]],[[831978,691318],[1190,330],[1113,8373],[-2259,-2724],[-1043,-3343],[999,-2636]],[[866513,628708],[245,912],[-2699,3313],[-1765,3307],[-3408,10267],[-649,3248],[-208,6187],[-617,-1841],[-1721,-350],[1757,2564],[695,2712],[-814,2023],[-2936,3175],[121,1934],[-2697,929],[-2273,6754],[-1870,3901],[-1183,-211],[-897,6811],[-3568,3140],[-2232,3968],[-1920,-2371],[-592,2407],[-5538,-434],[-1465,1575],[2302,9280],[-201,2905],[-2325,3328],[356,1251],[-2219,507],[-1643,-768]],[[416668,317962],[3711,-76099]],[[765816,549824],[7306,-1389],[23353,-5673],[130,-891],[4859,-1083],[-456,1044]],[[521114,954892],[-1540,-6463],[355,-2925]],[[519929,945504],[1185,9388]],[[519929,945504],[-372,-232],[170,-11473],[582,-6370],[2539,-9530],[618,489],[-1874,6828],[-1510,8979],[-285,4759],[132,6550]],[[524193,914167],[1663,-2602],[-2366,6736],[703,-4134]],[[530112,901118],[283,547],[-2630,4979],[293,-2970],[2054,-2556]],[[535591,893013],[3822,-2368],[-5798,6328],[-3153,4412],[805,-4240],[2117,-751],[2207,-3381]],[[572067,852689],[-1130,1980],[-6270,7526],[5124,-7978],[2276,-1528]],[[589322,838594],[-2522,461],[-3420,1680],[-8447,6699],[-3706,3760],[1608,-3192],[2473,-2784],[349,-1573],[-3752,1817],[889,-8806],[-2196,-1382],[-1356,4758],[-2756,-1526],[-1172,-4367],[-514,2212],[888,2349],[1459,1083],[-681,4854],[2046,2043],[455,2432],[-92,4922],[-849,-375],[-1775,3921],[-2254,1190],[-1671,7307],[-3198,4864],[-1288,737],[-4391,4480],[-1905,-678],[-2872,1933],[-518,2705],[5181,-3803],[-3533,3393],[-8986,7542],[3446,-3800],[3493,-2740],[132,-1772],[-3708,1937],[-1359,-1390],[831,-1845],[-2214,616],[-1565,2150],[-1984,375],[-1538,-1516],[-451,-3008],[-1556,1114],[1395,4275],[3835,5407],[-4905,4426],[-2250,-4532],[-640,3167],[-126,5134],[-3225,3810],[905,-5529],[-1062,1858],[-168,3341],[-808,-2706],[-3001,2694],[-761,2228],[1418,957],[2174,-2490],[-65,3052],[-1118,1941],[-2178,6004],[-1625,-2264],[-4797,1002],[2535,507],[-148,2158],[1229,2543],[1682,945],[-1563,4727],[-1733,9025],[-1717,1342],[378,-4188],[-1777,3081],[-1513,750],[-1892,-4471],[2024,6677],[2005,536],[2101,-1207],[-460,5569],[-1032,1436],[466,2315],[-1331,602],[-284,6655],[1499,2605],[1056,7766],[-700,5098],[1397,274],[703,2085],[-44,3475],[978,2663],[-347,2718],[2105,1726],[-904,4231],[1788,-1503],[312,1903],[-2911,0],[-1743,1737],[8,2598],[-2967,-1826],[-517,-1851],[-3218,-4002],[-1909,-913],[-4799,543],[-1947,-1233],[-1162,678],[-2271,-1983],[-2759,-4713],[-4186,-646],[-3418,-5221],[-1412,561],[-1539,-1902],[-2170,57],[-152,-3010],[-1493,-2396],[-682,-7172],[-1108,-4556],[-1181,-1413],[-900,-3663],[-1311,-1812],[492,-5909],[-506,-3468],[-1605,-2055],[686,-781],[589,-5624],[-935,-465],[390,-2470],[-1704,-3039],[-2176,-759],[-2039,-4657],[-1157,-1019],[-936,-6938],[-1092,-494],[-1720,-5885],[-2475,-2073],[-864,-1835],[-1652,-6354],[-809,-7055],[-1842,-2925],[-587,-5642],[-2096,-5350],[-117,-5084],[-2079,-3922],[-282,-2674],[-3963,-5067],[-963,-3649],[-3802,-3375],[79,-3544],[-1835,-889],[-1658,-5407],[-1703,738],[-3286,-303],[-2643,-2008],[-1577,769],[-973,-1340],[-1421,961],[-1734,-873],[-2929,-3172],[-783,232],[-1038,3987],[-2472,-1136],[-3490,2005],[-1693,4621],[-3161,12655],[640,1257],[-2615,1517],[-3346,7325],[-5368,-3475],[-2166,-4627],[-3157,-1343],[-1086,-3300],[-3618,-1727],[-3622,-4373],[-1589,-4721],[-1461,-471],[-3662,-6701],[-4,-2234],[-2100,-7022],[-201,-5826],[556,-4335],[-2871,-8552],[12,-4633],[-2221,-7106],[-733,103],[-2967,-5309],[-3364,-2272],[-38,-1614],[-2662,-4162],[-754,-3850],[-2982,-3671],[-2958,-8143],[-2267,-1700],[-2483,-3696],[-2424,-10075],[-2643,-2515]],[[300313,332481],[-3564,38133],[11025,3035],[22018,5265]],[[904140,453145],[-713,1385],[639,3818],[-2287,8078],[292,5053],[-1470,1079],[-1378,4764],[-932,5888],[431,6753],[-455,801],[-1606,-5025],[-155,-2692],[480,-11922],[833,-4813],[1190,-2208],[1095,-8636]],[[902322,511598],[-1660,-5988],[-499,3428],[609,3135]],[[900211,512378],[-386,137]],[[792748,506923],[-294,2465],[3118,6573],[1127,-155],[2314,2620],[1924,-692],[2301,-3227],[713,-2679],[2744,3280],[1944,-2307],[2612,-1270],[1580,-2460],[-473,-3091],[1760,1741],[4090,-5408],[836,2059],[2732,-4108],[-705,-1990],[1624,-2943],[-1537,-2064],[1627,-7632],[2305,-5267],[694,-7607],[1933,-4202],[-513,-1134],[1216,-2523],[458,-9049],[2059,999],[1378,3211],[2967,895],[1386,-4823],[1527,-10616],[782,-2865],[2463,2645],[908,-5151],[1097,-1014],[4216,-11654],[-632,-3310],[927,-4085],[-584,-4221],[10143,9789],[1037,-7737]],[[870845,429988],[1302,1602],[434,5208],[-1411,1004],[307,2665],[-1977,931],[-480,7525],[2029,3623],[3600,-2922],[-24,2512],[1595,3343],[3949,1646],[2330,-1344],[1844,4196],[5107,2640],[567,907],[-723,3614],[410,6739],[-3641,-134],[-1364,-3781],[-2256,-1330],[-3263,-4794],[-1144,349],[2490,2259],[1730,3643],[1785,912],[2279,4561],[4260,616],[-1810,1328],[2949,2492],[338,5280],[-2811,-2743],[1122,5302],[-1910,1336],[-6798,-9519],[599,1990],[3987,5999],[4434,4164],[2015,654],[379,3697],[-2021,3058],[-898,-2017],[-3243,-2754],[-750,-3349],[-1817,1706],[-840,-1331],[-2115,681],[-2037,-2357],[-4205,1157],[233,999],[2614,-1471],[910,1406],[2973,1475],[1647,-829],[1761,1629],[758,-1242],[792,5014],[1382,148],[1901,1983],[322,2192],[2125,-1768],[270,-1699],[4272,624],[1769,-806],[1448,5429],[2429,7404]],[[901527,178100],[10829,-4725],[4997,-1728],[12333,-5840]],[[150269,64279],[803,1102],[-2507,519],[1758,-5645],[-54,4024]],[[150603,52952],[110,4510],[-1300,-1157],[1190,-3353]],[[154067,27172],[631,3300],[-2477,1672],[978,6392],[1784,3313],[-790,4654],[-664,-2601],[-1917,-3566],[493,-4941],[-1660,-3255],[2627,-5676],[995,708]],[[150939,19449],[-28,4925],[-1500,-2225],[1528,-2700]],[[147480,14926],[1501,3205],[-916,3608],[-1165,-2200],[580,-4613]],[[151602,13424],[1914,3064],[-1619,1551],[-1708,-702],[-547,-2515],[1960,-1398]],[[153300,26210],[116,-3066],[1112,-718],[1462,3350],[528,-4489],[1179,-346],[-780,-2594],[707,-3027],[-2043,-2279],[-1434,-7168],[1250,-1856]],[[155397,4017],[14228,7080],[24708,11235],[12109,5225],[15881,6587],[15354,6093]],[[131184,103703],[-1127,303],[-1896,-5632],[-3164,-1543],[-255,-1887],[-2989,1277],[-1651,-3851],[-1187,1250],[1064,-4026],[1492,-9459],[315,2480],[-1178,7517],[874,819],[1166,-1925],[-376,-1837],[1190,-2375],[-531,-2746],[1973,-2482],[-104,-2095],[-1375,668],[-1628,-1699],[405,-6426],[1255,1085],[3693,-639],[-2313,-2087],[-205,-2087],[-1877,-645],[-72,3046],[-895,203],[790,-3975],[642,-9775],[-759,-2901],[831,-8862],[151,-6235],[-484,-3146],[-1508,-3633],[565,-7790],[-169,-2936],[2099,-5262],[-693,-2436]],[[123253,11959],[1384,515],[2617,4780],[3954,5432],[509,1823],[2489,2190],[2370,698],[4154,4227],[2140,1024],[2113,-367],[924,3227],[1284,1215],[1841,-1737],[1438,10398],[-2315,2309],[-1029,3834],[-863,-449],[1235,-5006],[-2535,5450],[-1331,1246],[-2901,4901],[-1329,3451],[2015,885],[-1225,-2016],[4399,-6944],[2674,-522],[1807,-4276],[2990,-3017],[-493,6414],[-991,-798],[-1813,6328],[-639,-3521],[-454,2357],[976,1941],[1012,-1182],[-399,4576],[-2100,7459],[-1511,-4077],[-1749,5779],[-403,-3078],[907,-1513],[266,-4332],[-985,3252],[-1359,522],[-1477,6508],[539,2171],[357,-3407],[1580,-677],[1395,3879],[2039,-2489],[1551,-4442],[1102,2710],[437,-2096],[1712,-301],[-25,-8982],[1349,-468],[-1058,-2762],[1327,-1969],[142,-2869],[2186,-4715],[1711,-1842],[-1357,-3861],[95,-5149],[-1498,944],[559,5136],[-1374,-3387],[423,-4350],[1981,1104],[322,-2820],[-1567,-2907],[-197,-2867],[-1281,761]],[[123253,11959],[798,-3985],[8963,12495],[6311,6093],[4591,-21],[2784,-4072],[-705,-5313],[207,-5616],[4165,-787],[397,-2323],[-3411,-8430],[8044,4017]],[[630016,175506],[688,938],[-1290,2377],[-1899,1552],[-139,-1213],[2640,-3654]],[[679317,237151],[8,4545],[-2809,1543],[-102,2387],[-2147,7069],[-328,5217],[1558,1506],[994,-3357],[1228,-930],[2225,-7967],[1877,-902],[1122,-2165],[1737,-5713],[465,-4723],[1066,459],[1315,-5683],[1319,-231],[-638,2843],[56,5008],[-1092,1123],[-862,3982],[-57,3599],[-1622,3640],[-244,2660],[-1792,8264],[-589,7135],[689,5549],[-1882,3246],[-985,8745],[911,7242],[-1069,4475],[-143,4337],[-877,3111],[-407,5629],[1092,6466],[-337,2425],[859,1695],[595,4761],[1119,1799],[-633,6899],[477,4375]],[[605824,185647],[1515,-3437],[1546,2391],[3151,-666],[6916,-5288],[3494,-1806],[2078,-3469],[1494,-853],[1834,2715],[-1883,5154],[566,2102],[-1341,4215],[3705,-3123],[1855,2298],[2633,1046]],[[605804,185671],[5,-1783]],[[605838,183808],[402,-460]],[[606292,183358],[1000,-1280]],[[607345,182075],[1277,1591]]],"transform":{"scale":[0.0008356415611931983,0.0004891242340180996],"translate":[31.233955489106847,8.828972925081871]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment