Skip to content

Instantly share code, notes, and snippets.

@ThomasThoren
Last active December 3, 2015 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ThomasThoren/7e9970f025c301e8c2f8 to your computer and use it in GitHub Desktop.
Save ThomasThoren/7e9970f025c301e8c2f8 to your computer and use it in GitHub Desktop.
Map labels

Practice with map locations and labels.

<!DOCTYPE html>
<head>
<title>Louisiana drop shadow</title>
<meta charset="utf-8">
<style>
body {
padding: 0;
margin: 0;
}
svg {
background-color: #E8C691;
}
.bold {
font-weight: bold;
}
.parishes {
fill: #FAFAFA;
stroke: #777;
stroke-opacity: 0.5;
stroke-width: 0.5px;
opacity: 0.8;
}
.parish-border {
fill: none;
stroke: #DFDFDF;
}
.state-border {
fill: none;
stroke: #585858;
}
.city-label {
font-weight: 500;
text-transform: uppercase;
text-anchor: middle;
opacity: 0.4;
color: #000;
font-family: arial, helvetica, sans-serif;
font-size: 13px;
}
.map-note-text {
font-size: 15px;
font-weight: 500;
color: #000;
font-family: arial, helvetica, sans-serif;
line-height: 18px;
margin: 0;
}
.state-label {
font-weight: 500;
text-transform: uppercase;
text-anchor: middle;
opacity: 0.3;
color: #000;
font-family: arial, helvetica, sans-serif;
font-size: 24px;
line-height: 28px;
letter-spacing: 0.333em;
}
</style>
</head>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script>
var width = 960,
height = 650;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
// Inset map
var map_projection = d3.geo.albers()
.translate([width / 2, height / 2])
.rotate([91.6, 0]) // Rotate CCW (looking down onto North Pole)
.center([0, 31.2])
.parallels([29, 33])
.scale(8000);
var map_path = d3.geo.path()
.projection(map_projection);
d3.json("parishes.json", function(error, data) {
if (error) throw error;
// Draw land
svg.append("g")
.attr("class", "parishes")
.selectAll("path")
.data(topojson.feature(data, data.objects.parishes).features)
.enter().append("path")
.attr("fill", function(d) {
var parish_code_as_int = parseInt(d.properties.parishcode, 10);
if (parish_code_as_int < 30) {
return "#C00";
} else if (parish_code_as_int >= 30 && parish_code_as_int < 60) {
return "#FDBF4F";
} else {
return "#FFF";
}
})
.attr("d", map_path);
// Draw parish borders
svg.append("path")
.datum(topojson.mesh(data, data.objects.parishes, function(a, b) { return a !== b; }))
.attr("class", "parish-border")
.attr("d", map_path);
// Draw state border
svg.append("path")
.datum(topojson.mesh(data, data.objects.parishes, function(a, b) { return a === b; }))
.attr("class", "state-border")
.attr("d", map_path);
// Draw circle marker
svg.selectAll('.circle-icon')
.data(topojson.feature(data, data.objects.parishes).features)
.enter().append('circle')
.each(function(d) {
if (d.properties.parishname !== 'Caddo' && d.properties.parishname !== 'Lafayette') {
return;
}
d3.select(this)
.attr("r", 4)
.attr("transform", function(d) { return "translate(" + map_path.centroid(d) + ")"; })
.attr("fill", "none")
.attr("stroke", "black")
.attr("stroke-width", 2);
})
.filter(function(d) {
return d.properties.parishname !== 'Caddo' && d.properties.parishname !== 'Lafayette';
}).remove(); // Delete empty circle elements
// Draw parish name
svg.selectAll('.parish-label')
.data(topojson.feature(data, data.objects.parishes).features)
.enter().append('text')
.each(function(d) {
if (d.properties.parishname !== 'Orleans') {
return;
}
d3.select(this)
.attr("transform", function(d) { return "translate(" + map_path.centroid(d) + ")"; })
// .attr("dx", "-3em")
// .attr("dy", "-0.5em")
.attr("fill", "black")
.style("text-anchor", "end")
.text(function(d) { return d.properties.parishname });
})
.filter(function(d) {
return d.properties.parishname !== 'Orleans';
}).remove();
// Draw parish text note
svg.selectAll('.parish-note')
.data(topojson.feature(data, data.objects.parishes).features)
.enter().append('text')
.each(function(d) {
if (d.properties.parishname === 'Lafayette') {
d3.select(this)
.attr("transform", function(d) { return "translate(" + map_path.centroid(d) + ")"; })
.attr("dx", "-150")
.attr("dy", "150")
.attr("fill", "black")
.style("text-anchor", "end")
.text("Welcome to Lafayette.");
} else if (d.properties.parishname === 'Caddo') {
d3.select(this)
.attr("transform", function(d) { return "translate(" + map_path.centroid(d) + ")"; })
.attr("dx", "10")
.attr("dy", "-90")
.attr("fill", "black")
.attr("id", "caddo-text")
.style("text-anchor", "start")
.text("This is the ");
d3.select(this)
.append("tspan")
.attr("class", "bold")
.text("centroid ");
d3.select(this)
.append("tspan")
.attr("x", "10")
.attr("y", "-75")
.style("text-anchor", "start")
.text("of Caddo Parish.");
} else {
return;
}
})
.filter(function(d) {
return d.properties.parishname !== 'Caddo' && d.properties.parishname !== 'Lafayette';
}).remove();
// Draw line between parish marker and text
// Line path generator
var line = d3.svg.line()
.x(function(d) { return d.x; })
.y(function(d) { return d.y; })
.interpolate("basis");
svg.selectAll(".parish-line")
.data(topojson.feature(data, data.objects.parishes).features)
.enter().append('path')
.attr("class", "parish-line")
.attr("d", function(d) {
var centroid = map_path.centroid(d);
if (d.properties.parishname === 'Lafayette') {
var lineData = [
{"x": centroid[0] - 4, "y": centroid[1] + 4},
{"x": centroid[0] - 145, "y": centroid[1] + 145}
];
} else if (d.properties.parishname === 'Caddo') {
var lineData = [
{"x": centroid[0], "y": centroid[1] - 4},
{"x": centroid[0] + 10, "y": centroid[1] - 72}
];
} else {
return;
}
return line(lineData);
})
.attr("stroke", "black")
.attr("stroke-width", 1)
.attr("opacity", 0.8)
.attr("fill", "#000")
.filter(function(d) {
return d.properties.parishname !== 'Caddo' && d.properties.parishname !== 'Lafayette';
}).remove();
// State label
svg.append("text")
.attr("class", "state-label")
.attr("x", width * 0.35)
.attr("y", height * 0.4)
.text('Louisiana');
});
// Allows iframe on bl.ocks.org.
d3.select(self.frameElement).style("height", height + "px");
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"parishes":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"parishcode":"001","parishname":"Acadia"},"arcs":[[0,1,2,3,4,5,6,7,8]]},{"type":"Polygon","properties":{"parishcode":"003","parishname":"Allen"},"arcs":[[9,10,11,12,13]]},{"type":"Polygon","properties":{"parishcode":"005","parishname":"Ascension"},"arcs":[[14,15,16,17,18,19,20,21,22,23,24]]},{"type":"Polygon","properties":{"parishcode":"007","parishname":"Assumption"},"arcs":[[25,26,-22,27,28,29,30,31]]},{"type":"Polygon","properties":{"parishcode":"009","parishname":"Avoyelles"},"arcs":[[32,33,34,35,36,37,38,39,40,41,42,43]]},{"type":"Polygon","properties":{"parishcode":"011","parishname":"Beauregard"},"arcs":[[-14,44,45,46,47,48,49]]},{"type":"Polygon","properties":{"parishcode":"013","parishname":"Bienville"},"arcs":[[50,51,-52,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]]},{"type":"Polygon","properties":{"parishcode":"015","parishname":"Bossier"},"arcs":[[87,88,89,90,-90,91,92,93,94,95,-93,96,97,98,99,-98,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,-72,122,123]]},{"type":"Polygon","properties":{"parishcode":"017","parishname":"Caddo"},"arcs":[[-124,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,-166,166,167,168,169,170,171,172,173,174,175,176,177,178]]},{"type":"Polygon","properties":{"parishcode":"019","parishname":"Calcasieu"},"arcs":[[179,-46,180,181]]},{"type":"Polygon","properties":{"parishcode":"021","parishname":"Caldwell"},"arcs":[[182,183,184,185,186,187,188]]},{"type":"Polygon","properties":{"parishcode":"023","parishname":"Cameron"},"arcs":[[189,190,191,-182]]},{"type":"Polygon","properties":{"parishcode":"025","parishname":"Catahoula"},"arcs":[[-187,192,193,194,-40,195]]},{"type":"Polygon","properties":{"parishcode":"027","parishname":"Claiborne"},"arcs":[[196,197,198,199,200,201,202,203,204,205,206,-206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,-52,-51,221,222,223,224,225,226,227,-228,228,229,230,-231,231,232,233,234,235,236,-237,236,237,238,239,240,241,242,243,244,245,-246,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,-263,263]]},{"type":"Polygon","properties":{"parishcode":"029","parishname":"Concordia"},"arcs":[[264,265,266,267,268,269,-41,-195]]},{"type":"Polygon","properties":{"parishcode":"031","parishname":"De Soto"},"arcs":[[-178,176,-176,174,-174,172,-172,170,-170,168,-168,166,165,-166,-165,-164,162,-162,160,-160,158,-158,156,-156,154,-154,152,-152,150,-150,148,-148,-147,-146,-145,-144,142,-142,-141,-140,138,-138,136,-136,134,-134,-133,-132,-131,-130,-129,-128,-127,-126,270,271,272,273,274,275,276,277,278,279,-280,280,281,282,283,284,285,286]]},{"type":"Polygon","properties":{"parishcode":"033","parishname":"East Baton Rouge"},"arcs":[[287,288,289,290,291,292,293,294,295,296,297,24,-25,-24,298,299]]},{"type":"Polygon","properties":{"parishcode":"035","parishname":"East Carroll"},"arcs":[[300,301,302,303,304,305]]},{"type":"Polygon","properties":{"parishcode":"037","parishname":"East Feliciana"},"arcs":[[306,307,-288,308,309,310,311,312,313,314,-315,314,315]]},{"type":"Polygon","properties":{"parishcode":"039","parishname":"Evangeline"},"arcs":[[316,317,318,319,320,321,322,323,324,-325,325,326,327,328,329,330,331,332,-333,333,334,-335,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,-33,352,353,354,355,356,357,358,-8,359,-12]]},{"type":"Polygon","properties":{"parishcode":"041","parishname":"Franklin"},"arcs":[[360,361,-193,-186,362]]},{"type":"Polygon","properties":{"parishcode":"043","parishname":"Grant"},"arcs":[[363,364,365,366,-367,367]]},{"type":"MultiPolygon","properties":{"parishcode":"045","parishname":"Iberia"},"arcs":[[[368]],[[369]],[[370]],[[371,-26,372,373,374,375,376,377]]]},{"type":"Polygon","properties":{"parishcode":"047","parishname":"Iberville"},"arcs":[[-299,-23,-27,-372,378,379,380]]},{"type":"Polygon","properties":{"parishcode":"049","parishname":"Jackson"},"arcs":[[381,382,-183,383,-60,-59,-58,56,-56,54,-54]]},{"type":"MultiPolygon","properties":{"parishcode":"051","parishname":"Jefferson"},"arcs":[[[384,385]],[[386]],[[387]],[[388]],[[389]],[[390]],[[391]],[[392,393]],[[394]],[[395,396,397,398,399,400,401,402,403,404,405,406,407]]]},{"type":"Polygon","properties":{"parishcode":"053","parishname":"Jefferson Davis"},"arcs":[[-181,-45,-13,-360,-7,5,-5,408,-190]]},{"type":"Polygon","properties":{"parishcode":"055","parishname":"Lafayette"},"arcs":[[-377,409,-1,410,411,412,413,414]]},{"type":"MultiPolygon","properties":{"parishcode":"057","parishname":"Lafourche"},"arcs":[[[415]],[[416,417]],[[418,419]],[[420]],[[421]],[[422]],[[-29,423,424,425,426,427,-407,428,-393,429,-385,430,431,432,433]]]},{"type":"Polygon","properties":{"parishcode":"059","parishname":"La Salle"},"arcs":[[434,-188,-196,-39,435,-364]]},{"type":"Polygon","properties":{"parishcode":"061","parishname":"Lincoln"},"arcs":[[-53,51,-221,219,-219,217,-217,215,-215,-214,-213,211,210,-210,-209,-208,205,-207,-206,-205,203,-203,201,-201,199,-199,436,437,-382]]},{"type":"Polygon","properties":{"parishcode":"063","parishname":"Livingston"},"arcs":[[438,439,440,441,442,-443,443,-19,17,-17,15,-15,-25,-298,296,-296,294,-294,292,-292,290,-290]]},{"type":"MultiPolygon","properties":{"parishcode":"065","parishname":"Madison"},"arcs":[[[444,445]],[[-302,446,447,-361,448,449,450]]]},{"type":"Polygon","properties":{"parishcode":"067","parishname":"Morehouse"},"arcs":[[451,452,453,454,455,456,-457,456,457]]},{"type":"Polygon","properties":{"parishcode":"069","parishname":"Natchitoches"},"arcs":[[-62,458,459,460,461,462,463,464,465,466,467,468,469,-470,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,-367,-366,498,499,500,501,502,503,504,-285,283,-283,281,-281,279,-280,-279,-278,276,-276,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527]]},{"type":"Polygon","properties":{"parishcode":"071","parishname":"Orleans"},"arcs":[[-398,528,529,530,531,-532,531,532,533,534,535,536,537]]},{"type":"Polygon","properties":{"parishcode":"073","parishname":"Ouachita"},"arcs":[[-458,-457,456,-457,-456,538,539,540,-184,-383,-438,541]]},{"type":"MultiPolygon","properties":{"parishcode":"075","parishname":"Plaquemines"},"arcs":[[[542]],[[543]],[[544]],[[545]],[[546,547,548,549,550,551,552,553,554,555,556]],[[557,558,559,560,561,562,563,564,565,-549,566,567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583,584,585,586,587,588,589,590,591,592,593]],[[594,595,596,597,598,599]],[[600,601,602,603,604,605,606,607,608]],[[609]],[[610,611,612,613,614,615]],[[-405,403,-403,401,-401,399,-399,-538,536,-536,616,617,618,619,620,621,622,623,624,625,626,-589,627,-587,628,-585,629,630,631,632,633,634,635,636,637,638,639]]]},{"type":"Polygon","properties":{"parishcode":"077","parishname":"Pointe Coupee"},"arcs":[[-43,640,-269,-268,641,642,-380,643,644]]},{"type":"Polygon","properties":{"parishcode":"079","parishname":"Rapides"},"arcs":[[-436,-38,36,-36,34,-34,-352,350,-350,348,-348,346,-346,-345,-344,-343,-342,340,-340,-339,-338,336,-336,334,-335,-334,332,-333,-332,330,-330,328,-328,326,-326,324,-325,-324,-323,321,-321,319,-319,-318,-317,-11,645,-499,-365]]},{"type":"Polygon","properties":{"parishcode":"081","parishname":"Red River"},"arcs":[[-125,-123,-71,69,-69,67,-67,65,-65,63,-63,-528,526,-526,524,-524,-523,-522,520,-520,-519,-518,516,-516,514,-514,512,-512,510,-510,508,-508,506,-506,-275,273,-273,271,-271]]},{"type":"Polygon","properties":{"parishcode":"083","parishname":"Richland"},"arcs":[[-455,646,-305,303,-303,-451,449,-449,-363,-185,-541,539,-539]]},{"type":"Polygon","properties":{"parishcode":"085","parishname":"Sabine"},"arcs":[[-286,-505,647,648]]},{"type":"MultiPolygon","properties":{"parishcode":"087","parishname":"St. Bernard"},"arcs":[[[649]],[[650]],[[651]],[[652]],[[653]],[[654,655]],[[656]],[[657]],[[658]],[[659]],[[660,-622,620,619,-619,617,-617,-535,533,-533,-532,531,-532,-531]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]]]},{"type":"Polygon","properties":{"parishcode":"089","parishname":"St. Charles"},"arcs":[[-408,-428,667,668,-669,668,669,670,-671,670,671]]},{"type":"Polygon","properties":{"parishcode":"091","parishname":"St. Helena"},"arcs":[[672,673,-439,-289,-308]]},{"type":"Polygon","properties":{"parishcode":"093","parishname":"St. James"},"arcs":[[674,675,676,-426,424,-424,-28,-21]]},{"type":"Polygon","properties":{"parishcode":"095","parishname":"St. John the Baptist"},"arcs":[[-20,-444,442,677,-672,-671,670,-671,-670,-669,668,-669,-668,-427,-677,675,-675]]},{"type":"Polygon","properties":{"parishcode":"097","parishname":"St. Landry"},"arcs":[[678,413,-414,-413,411,-411,-9,-359,357,-357,355,-355,353,-353,-44,-645]]},{"type":"MultiPolygon","properties":{"parishcode":"099","parishname":"St. Martin"},"arcs":[[[679,-373,-32]],[[-378,-415,-414,-679,-644,-379]]]},{"type":"MultiPolygon","properties":{"parishcode":"101","parishname":"St. Mary"},"arcs":[[[680]],[[681]],[[-31,682,683,-374,-680]],[[684]],[[685]]]},{"type":"Polygon","properties":{"parishcode":"103","parishname":"St. Tammany"},"arcs":[[686,687,688,689,690,691,692,693,-694,694,695,696,697,698,699,700,701,702,-703,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,-723,723,724,725,726,727,728,729,730,731,732,733,734,-735,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,-529,-397]]},{"type":"Polygon","properties":{"parishcode":"105","parishname":"Tangipahoa"},"arcs":[[-674,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,-769,768,769,770,771,772,773,774,775,776,776,777,778,-779,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,-799,799,800,801,802,803,804,805,806,807,808,809,810,811,-812,811,812,-750,-749,-748,-747,745,-745,-744,-743,741,-741,-740,-739,-738,-737,-736,734,-735,-734,732,-732,730,-730,728,-728,-727,-726,-725,-724,722,-723,-722,-721,719,-719,717,-717,715,-715,713,712,-712,710,-710,708,-708,706,-706,704,-704,702,-703,-702,700,-700,-699,697,-697,695,-695,693,-694,-693,-692,690,689,-689,-688,-687,-396,-678,-443,-442,440,-440]]},{"type":"Polygon","properties":{"parishcode":"107","parishname":"Tensas"},"arcs":[[-446,813,-265,-194,-362,-448,814]]},{"type":"MultiPolygon","properties":{"parishcode":"109","parishname":"Terrebonne"},"arcs":[[[815]],[[816]],[[817]],[[818]],[[819]],[[820]],[[-419,821,-417,822]],[[-432,823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830,-683,-30,-434]]]},{"type":"Polygon","properties":{"parishcode":"111","parishname":"Union"},"arcs":[[831,-452,-542,-437,-198]]},{"type":"Polygon","properties":{"parishcode":"113","parishname":"Vermilion"},"arcs":[[-376,832,-191,-409,-4,2,-2,-410]]},{"type":"Polygon","properties":{"parishcode":"115","parishname":"Vernon"},"arcs":[[-10,-50,48,-48,833,-648,-504,502,-502,500,-500,-646]]},{"type":"Polygon","properties":{"parishcode":"117","parishname":"Washington"},"arcs":[[-753,751,-751,-750,749,-813,-812,811,-812,-811,809,-809,807,-807,-806,-805,803,-803,801,-801,-800,798,-799,-798,-797,-796,794,793,-793,791,-791,789,-789,787,-787,785,-785,783,-783,781,-781,779,-779,778,-779,-778,776,776,-776,774,-774,772,-772,770,-770,-769,768,-769,-768,766,-766,764,-764,762,-762,760,-760,758,-758,756,-756,834]]},{"type":"Polygon","properties":{"parishcode":"119","parishname":"Webster"},"arcs":[[-87,85,-85,83,-83,81,-81,79,-79,77,-77,75,-75,73,-73,-122,-121,-120,118,-118,-117,-116,114,-114,112,-112,-111,-110,-109,-108,106,-106,104,-104,102,-102,-101,97,-100,-99,-98,-97,92,-96,-95,-94,-93,-92,89,-91,-90,-89,835,-264,262,-263,-262,-261,259,-259,257,-257,255,-255,253,-253,251,-251,249,-249,247,-247,245,-246,-245,-244,242,-242,240,-240,238,-238,-237,236,-237,-236,234,-234,232,-232,230,-231,-230,-229,227,-228,-227,-226,224,-224,222,-222]]},{"type":"Polygon","properties":{"parishcode":"121","parishname":"West Baton Rouge"},"arcs":[[-643,836,-309,-300,-381]]},{"type":"Polygon","properties":{"parishcode":"123","parishname":"West Carroll"},"arcs":[[-647,-454,837,-306]]},{"type":"MultiPolygon","properties":{"parishcode":"125","parishname":"West Feliciana"},"arcs":[[[-267,838,-316,-315,314,-315,-314,312,-312,310,-310,-837,-642]],[[-270,-269,268,-641,-42]]]},{"type":"Polygon","properties":{"parishcode":"127","parishname":"Winn"},"arcs":[[-61,-384,-189,-435,-368,366,-498,496,-496,494,-494,492,-492,490,-490,-489,-488,486,-486,484,-484,482,-482,480,-480,478,-478,476,-476,474,-474,472,-472,-471,469,-470,-469,-468,-467,-466,-465,463,-463,461,-461,459,-459]]}]}},"arcs":[[[3640,3354],[0,-35],[-33,0],[0,-36],[-34,0],[2,-69],[-65,1],[0,-37],[-15,-15],[-40,-5],[-18,-18],[3,-66],[-12,-30],[-35,-41],[-6,-20],[-21,1]],[[3366,2984],[-18,-10],[-4,-24],[-40,-25],[-21,-29]],[[3283,2896],[0,0]],[[3283,2896],[-7,-24],[-27,-19],[0,-18],[-80,-62],[-71,-29],[-84,31],[-101,62],[-25,51],[-47,9],[-16,-18],[-36,-19],[-37,3],[-18,-22],[-20,10]],[[2714,2851],[13,3],[-12,41],[6,46],[-13,17],[13,28],[27,25],[-18,36],[49,22],[-6,35],[13,21],[-25,3],[-22,17],[-6,29],[-22,13],[10,50],[-7,57],[-2,71],[11,12],[-21,16],[25,52],[-18,35],[3,78],[24,17],[13,-6],[9,31]],[[2758,3600],[0,0]],[[2758,3600],[-6,20],[21,31],[-12,43],[-34,36],[-25,69]],[[2702,3799],[266,-1]],[[2968,3798],[121,-2],[354,1],[0,-105],[130,0],[2,-213],[32,0],[2,-71],[32,-1],[-1,-53]],[[2038,4769],[87,-4],[111,1],[96,-3],[3,35]],[[2335,4798],[73,5],[11,-7],[58,8],[55,-1],[3,16],[232,1],[0,-7]],[[2767,4813],[-1,-46],[0,-510],[1,-212],[25,-26],[3,-19],[-31,-46],[-12,-37],[-18,-2],[-16,-24],[16,-27],[-29,-47]],[[2705,3817],[-275,1],[-3,-124],[-555,2],[0,-35],[-127,-1]],[[1745,3660],[3,425],[288,1],[5,277],[1,295],[-4,111]],[[6033,3467],[62,-14],[55,-51],[10,-60],[21,-2],[6,-42],[32,13],[24,-14],[-18,-21],[9,-24],[24,-12],[13,-30],[36,5],[10,-16]],[[6317,3199],[0,0]],[[6317,3199],[3,-2]],[[6320,3197],[0,0]],[[6320,3197],[21,-33],[-8,-15],[24,-19],[6,-41],[31,-11],[9,-23],[26,11],[23,43],[-11,22],[18,20],[12,-9],[7,36],[21,14],[29,-27]],[[6528,3165],[-16,-133]],[[6512,3032],[-426,-109],[-99,-22],[3,-11],[-38,-35],[-2,-22],[-55,-46]],[[5895,2787],[-40,-4],[-41,35],[-96,-21],[-34,28],[-30,-14],[2,-34],[-33,0]],[[5623,2777],[0,112],[31,1],[-1,110],[32,17],[9,56],[39,142],[56,187],[-3,7]],[[5786,3409],[12,33],[75,29],[88,-13],[14,10],[33,-11],[25,11]],[[6033,3468],[0,-1]],[[5338,2555],[-9,34],[0,36],[46,2],[22,59]],[[5397,2686],[226,91]],[[5895,2787],[2,-76],[6,0],[0,-141],[65,1],[0,-105],[75,2],[2,-74]],[[6045,2394],[0,-69],[-46,-1],[-30,-117],[-43,-90],[-68,-120],[-44,-69]],[[5814,1928],[-146,-215]],[[5668,1713],[-11,24],[-34,17],[12,31],[0,106]],[[5635,1891],[-13,83],[22,9],[10,46],[-20,41],[1,29],[13,41],[-35,61],[-42,27],[-31,-2],[-68,25],[-29,34],[-15,68],[3,20],[-18,30],[-31,22],[5,36],[-18,13],[-22,44],[-9,37]],[[3505,4697],[-49,0],[-1,107],[-80,106],[-2,72]],[[3373,4982],[129,0],[10,-8],[3,31],[-19,43],[-34,340],[19,31],[-17,18],[1,132],[0,259],[9,32]],[[3474,5860],[0,0]],[[3474,5860],[16,19],[30,-3]],[[3520,5876],[0,0]],[[3520,5876],[22,6],[25,-13],[6,-42],[31,-27],[43,17],[22,-4],[12,23],[46,22],[19,28]],[[3746,5886],[12,-22],[21,2],[59,36],[29,-4],[2,-26],[27,-9]],[[3896,5863],[13,-21],[-13,-16],[23,-27],[-31,-14],[-15,-34],[36,-25],[-6,-19],[33,-32],[-33,-17],[25,-9],[-6,-21],[36,-14],[26,47],[27,-3],[3,-45],[50,18],[-32,28],[-18,71],[24,45],[47,16],[47,-15],[28,-24],[37,-45],[31,11]],[[4228,5718],[17,-26],[22,-12],[0,-23],[40,-35],[31,-14],[35,1],[28,-23],[6,-18],[39,-13],[28,21],[38,-25],[18,-25],[-16,-63],[-21,3],[-22,-16],[-22,-60],[7,-37],[18,-8],[0,-36],[-16,-11],[-8,-32],[18,-16],[-28,-75]],[[4440,5175],[-50,-62]],[[4390,5113],[-46,-40],[-6,-28],[-39,-21],[-16,-25],[12,-117],[-4,-28],[1,-93],[-6,-28],[-35,-9],[14,-28]],[[4265,4696],[-115,0],[-280,3],[-199,1],[-166,-3]],[[1745,3660],[0,-51]],[[1745,3609],[-281,1],[-204,-2],[1,214],[-195,1],[0,-215],[-488,0],[0,1]],[[578,3609],[22,25],[6,42],[15,-19],[13,26],[18,-9],[9,37],[-17,32],[14,4],[-24,25],[-10,31],[14,0],[-13,29],[19,32],[-11,27],[-39,28],[-15,24],[23,13],[10,38],[-9,30],[28,36],[40,16],[15,-18],[12,16],[-12,78],[3,38],[44,52],[55,38],[22,43],[-9,8],[16,37],[21,6],[-13,48],[-13,14],[20,16],[-13,20],[44,17],[-3,21],[21,18],[-12,18],[15,11],[-3,28],[15,-4],[28,19],[-7,22],[19,14],[3,24],[-30,29],[21,16],[-3,42]],[[927,4747],[7,19],[33,11],[15,-8]],[[982,4769],[0,0]],[[982,4769],[25,-6],[15,-17],[37,-7],[22,-16],[31,24],[38,10],[12,22],[28,3],[123,-1],[322,1],[107,-2],[-2,-11],[298,0]],[[1655,8937],[233,0],[213,-2],[125,2]],[[2226,8937],[0,1]],[[2226,8937],[3,-320],[195,-1]],[[2424,8616],[4,-191],[3,-281],[-4,-63],[-9,-14]],[[2418,8067],[0,0]],[[2418,8067],[-7,-6]],[[2411,8061],[0,0]],[[2411,8061],[2,-17],[-36,-28],[5,-65],[-19,-31],[-22,-13]],[[2341,7907],[0,0]],[[2341,7907],[10,-39]],[[2351,7868],[-238,3]],[[2113,7871],[-454,0],[-21,1]],[[1638,7872],[-1,3]],[[1637,7875],[0,0]],[[1637,7875],[-10,33],[3,37],[-24,21]],[[1606,7966],[0,0]],[[1606,7966],[-13,16]],[[1593,7982],[0,0]],[[1593,7982],[-8,30],[11,40],[-8,33],[-379,0]],[[1209,8085],[0,0]],[[1209,8085],[-32,-1]],[[1177,8084],[35,30],[8,71],[-3,18],[-21,-1],[0,28],[-16,35],[19,31],[12,58],[18,23],[-3,33],[-37,15],[-12,18],[16,45],[46,-16],[44,38]],[[1283,8510],[261,0],[0,107],[171,3],[-10,27],[12,10],[-18,34],[-21,64]],[[1678,8755],[0,0]],[[1678,8755],[-7,69]],[[1671,8824],[0,0]],[[1671,8824],[-2,3]],[[1669,8827],[0,0]],[[1669,8827],[-1,2]],[[1668,8829],[0,0]],[[1668,8829],[3,39]],[[1671,8868],[0,0]],[[1671,8868],[-4,5]],[[1667,8873],[0,0]],[[1667,8873],[-8,52]],[[1659,8925],[0,0]],[[1659,8925],[-4,12]],[[437,9998],[562,-1]],[[999,9997],[12,-15],[-20,-55]],[[991,9927],[0,-1]],[[991,9926],[0,0]],[[991,9927],[-2,-34]],[[989,9893],[0,2]],[[989,9895],[0,1]],[[989,9896],[0,0]],[[989,9896],[0,-1]],[[989,9893],[-7,-19]],[[982,9874],[1,-1]],[[983,9873],[0,-2]],[[983,9871],[0,2]],[[982,9874],[1,-3]],[[983,9871],[19,-5],[14,-44]],[[1016,9822],[0,0]],[[1016,9822],[1,-1]],[[1017,9821],[0,0]],[[1017,9821],[37,-62],[22,14],[21,-22],[2,-34],[-26,-1]],[[1073,9716],[0,0]],[[1073,9716],[2,-31],[21,-18]],[[1096,9667],[0,-1]],[[1096,9666],[0,1]],[[1096,9667],[0,-1]],[[1096,9666],[13,-36],[26,4],[-5,-29]],[[1130,9605],[0,0]],[[1130,9605],[-26,-29]],[[1104,9576],[0,0]],[[1104,9576],[20,-29],[4,-32],[-29,-26]],[[1099,9489],[0,0]],[[1099,9489],[17,-11],[-25,-38],[5,-29]],[[1096,9411],[0,0]],[[1096,9411],[4,-12]],[[1100,9399],[0,0]],[[1100,9399],[-3,-30],[49,-1],[-3,-643],[10,0],[0,-214],[130,-1]],[[1177,8084],[-83,3]],[[1094,8087],[18,27],[-46,22],[16,-34],[-25,3],[-3,53],[-35,24],[-27,-6],[21,59],[-22,2],[-24,-21],[-30,10],[31,7],[0,20],[20,11],[-23,23],[-14,-28],[-21,95],[-13,-36],[-26,-9],[-10,10],[-3,40],[-62,1],[25,65],[-13,5],[-24,-39],[-13,22],[-3,34],[13,30],[-16,-2],[-25,-40],[-6,20],[22,15],[-22,24],[-36,2],[9,-41],[-31,8],[-13,39],[47,25],[-44,2],[-13,15],[32,17],[-1,-20],[26,10],[-23,34],[-34,21],[22,34],[-20,1],[-20,42],[3,41],[-28,-25],[-9,11],[26,14],[-19,18],[-56,24],[1,35],[-17,-2],[-28,25],[22,-4],[25,22],[7,-28],[18,3],[-31,56],[-16,16],[34,35],[-6,28],[-30,-8],[-28,19],[58,11],[-39,13],[17,38],[-20,52],[-13,-12],[-34,18],[37,24],[-18,25],[-1,23],[-21,-12],[-1,22],[10,68],[0,37],[-34,13],[-36,-38],[-13,14],[13,48],[55,56],[12,25],[3,40],[-12,27],[-22,5],[-25,-35],[-15,-4],[-6,23],[15,21],[35,16],[24,69],[2,56],[-8,8],[-16,-35],[-33,13],[24,19],[3,25],[-36,25],[-4,47],[34,86],[-38,26],[-36,0],[31,50],[40,-12],[3,29],[-37,-14],[10,29],[-17,69],[23,27]],[[1094,8087],[-118,2],[-156,-1]],[[820,8088],[-7,49],[9,28],[-19,35],[-27,17],[-16,34],[-39,33],[-41,-2],[-21,20],[-29,-21],[-23,30],[-20,-7],[-12,20]],[[575,8324],[-2,2]],[[573,8326],[2,-2]],[[575,8324],[0,0]],[[575,8324],[0,-3]],[[575,8321],[0,0]],[[575,8321],[0,3]],[[575,8324],[-2,2]],[[573,8326],[-7,17],[-34,10],[-24,-10]],[[508,8343],[0,0]],[[508,8343],[-7,4]],[[501,8347],[0,0]],[[501,8347],[-40,-28],[-12,-38]],[[449,8281],[0,0]],[[449,8281],[-25,-26]],[[424,8255],[0,0]],[[424,8255],[-13,-8]],[[411,8247],[0,0]],[[411,8247],[-25,-20]],[[386,8227],[0,0]],[[386,8227],[-2,-2]],[[384,8225],[0,0]],[[384,8225],[-10,-2]],[[374,8223],[0,0]],[[374,8223],[-11,-19]],[[363,8204],[0,0]],[[363,8204],[-10,-44]],[[353,8160],[0,0]],[[353,8160],[-6,-33]],[[347,8127],[0,0]],[[347,8127],[-4,-4]],[[343,8123],[0,0]],[[343,8123],[-5,-3]],[[338,8120],[0,0]],[[338,8120],[-19,-23]],[[319,8097],[0,0]],[[319,8097],[-3,-1]],[[316,8096],[0,0]],[[316,8096],[0,-1]],[[316,8095],[0,-1]],[[316,8094],[0,1]],[[316,8094],[0,0]],[[316,8094],[-37,-31]],[[279,8063],[0,0]],[[279,8063],[-4,2]],[[275,8065],[0,0]],[[275,8065],[-15,-14]],[[260,8051],[0,0]],[[260,8051],[-8,-4]],[[252,8047],[0,0]],[[252,8047],[-28,-23]],[[224,8024],[0,0]],[[224,8024],[-47,-37],[-176,1]],[[1,7988],[0,2009],[436,1]],[[613,2748],[6,32],[15,-21],[24,7],[-12,24],[-18,3],[-21,32],[3,29],[21,35],[21,10],[3,63],[18,-6],[-8,39],[-21,-11],[11,47],[-9,35],[-9,-2],[-7,70],[1,51],[18,20],[-11,16],[12,41],[-10,13],[7,36],[-20,35],[-51,14],[-25,74],[-20,3],[7,52],[22,15],[-13,76],[31,29]],[[1745,3609],[1,-56],[191,-1],[2,-291],[65,0],[1,-253],[197,-1],[6,-38],[-33,-24],[-1,-46],[31,-40],[7,-32],[-207,-1],[-1,-108]],[[2004,2718],[-253,0],[0,36],[-253,-4],[-127,2],[-147,-1],[-411,0],[-195,1],[-5,-4]],[[3313,7866],[1,321]],[[3314,8187],[144,-3],[139,1],[22,-45],[90,0],[-1,45],[137,1]],[[3845,8186],[80,-1],[3,-31],[-16,-27],[25,0],[-22,-18],[-13,-41],[23,-4],[6,-34],[18,25],[0,-26],[-19,-4],[-36,-34],[18,-18],[41,35],[8,-19],[-18,-12],[21,-61],[56,22],[19,-26],[44,10],[33,-16],[-3,-27]],[[4113,7879],[0,-34],[22,-14],[-4,-28],[16,17],[15,-30],[-12,-17],[15,-40],[-58,-14],[-4,-24],[-24,11],[-27,-12],[-13,-21],[22,-4],[45,-82],[-9,-18],[16,-34],[-15,-37],[24,-59]],[[4122,7439],[-28,0],[0,-107],[-192,0]],[[3902,7332],[-379,1],[-210,-1]],[[3313,7332],[0,191],[1,143],[-1,200]],[[2004,2718],[247,0],[217,2],[30,-5]],[[2498,2715],[235,2],[0,-290],[3,-309],[-2,-103],[-1,-260],[-4,-158]],[[2729,1597],[-89,29],[-67,30],[-87,34],[-152,83],[-76,37],[-158,91],[-53,26],[-98,38],[-55,17],[-65,31],[-68,22],[-136,38],[-77,10],[-87,-3],[-46,-8],[-72,-25],[-9,-10],[-49,10],[-129,13],[-69,1],[-117,-14],[-120,-22],[-70,-4],[-91,-13],[-101,-24],[-102,-44],[-46,-25],[-50,-43],[-62,111],[-34,13],[-3,45],[-15,26],[-44,33],[-14,30],[6,42],[49,55],[68,47],[43,50],[24,43],[25,59],[22,102],[39,78],[29,12],[28,44],[30,20],[10,42],[22,24]],[[4122,7439],[53,-31],[16,-1],[21,-55],[39,-45],[20,9],[21,-9],[-1,-25],[13,-9],[-19,-21],[20,-16],[30,-2],[-12,-26],[9,-12],[35,27],[57,-4],[22,32],[22,0],[25,22],[3,22],[36,32],[16,3],[22,54],[13,10],[3,43],[98,-2],[-1,-212],[41,-1]],[[4724,7222],[-9,-31],[18,-18],[4,-87],[-19,-55],[15,-51],[50,-78]],[[4783,6902],[16,-21],[-1,-25],[-21,-24],[-44,30],[-37,63],[-33,-6],[-20,-44],[-27,-23],[-34,-10],[-24,6],[-40,35],[-29,-42],[-9,-69],[-19,-44],[0,-33],[13,-35],[-2,-31],[-50,-58],[-32,2],[-15,21],[-12,46],[-22,11],[-55,-40],[-22,-36],[-22,-71],[4,-52],[24,-31],[35,-25],[28,-33],[5,-38],[-10,-28],[-33,-27],[-9,-33],[10,-14],[39,-14],[83,-2],[20,-17],[8,-36],[-12,-23],[-22,-11],[-53,5],[-18,17],[-64,0],[-3,34],[-20,74],[-18,35],[-30,9],[-19,-18],[3,-30],[-18,-41],[15,-103],[12,-26],[29,-28],[33,-16],[56,0],[21,-28],[-21,-21],[-40,-12],[-44,21],[-39,-19],[-19,-34],[-10,-65],[0,-44],[25,-41],[59,-7],[0,-37],[-21,-27]],[[3896,5863],[1,120],[-1,363],[0,666],[4,0],[2,320]],[[1541,9995],[373,0],[609,-9]],[[2523,9986],[0,-479],[-16,0],[0,-37],[16,0],[0,-106]],[[2523,9364],[-197,-2],[0,-116],[-16,-2]],[[2310,9244],[0,0]],[[2310,9244],[-13,-13]],[[2297,9231],[0,0]],[[2297,9231],[-5,-3]],[[2292,9228],[0,0]],[[2292,9228],[2,-4]],[[2294,9224],[-2,0]],[[2292,9224],[0,0]],[[2294,9224],[-37,-44]],[[2257,9180],[0,0]],[[2257,9180],[-6,-14]],[[2251,9166],[0,0]],[[2251,9166],[0,0]],[[2251,9166],[1,-13]],[[2252,9153],[0,0]],[[2252,9153],[3,-26]],[[2255,9127],[0,0]],[[2255,9127],[8,-54]],[[2263,9073],[0,0]],[[2263,9073],[-2,-48],[-16,-41]],[[2245,8984],[0,0]],[[2245,8984],[-21,-8],[2,-38]],[[1655,8937],[-5,17]],[[1650,8954],[0,0]],[[1650,8954],[0,6]],[[1650,8960],[0,0]],[[1650,8960],[8,19]],[[1658,8979],[0,1]],[[1658,8980],[0,-1]],[[1658,8980],[1,16]],[[1659,8996],[0,1]],[[1659,8997],[0,-1]],[[1659,8997],[-1,9]],[[1658,9006],[0,0]],[[1658,9006],[1,38]],[[1659,9044],[0,0]],[[1659,9044],[6,10]],[[1665,9054],[0,1]],[[1665,9055],[-3,1]],[[1662,9056],[0,0]],[[1662,9056],[-4,11]],[[1658,9067],[0,0]],[[1658,9067],[1,14]],[[1659,9081],[0,0]],[[1659,9081],[0,1]],[[1659,9082],[0,1]],[[1659,9083],[0,-1]],[[1659,9083],[0,1]],[[1659,9084],[0,0]],[[1659,9084],[0,8]],[[1659,9092],[0,0]],[[1659,9092],[-4,5]],[[1655,9097],[0,0]],[[1655,9097],[0,12]],[[1655,9109],[0,0]],[[1655,9109],[1,3]],[[1656,9112],[0,0]],[[1656,9112],[2,8]],[[1658,9120],[0,0]],[[1658,9120],[-2,11]],[[1656,9131],[0,0]],[[1656,9131],[-9,10]],[[1647,9141],[0,1]],[[1647,9142],[0,-1]],[[1647,9142],[-7,10],[0,108],[-98,-2],[-1,82],[0,393],[0,262]],[[4783,6902],[215,-2],[66,7],[6,-15],[33,1],[-5,-35]],[[5098,6858],[-31,-51],[-7,-38],[9,-131],[-11,-56],[-29,-18],[-27,-4],[-62,21],[-37,27],[-19,32],[-30,-13],[-16,-25],[-2,-41],[27,-39],[41,-25],[52,7],[42,19],[23,2],[31,-18],[-7,-52],[-74,-68],[-65,-26],[-15,11],[-43,-4],[-23,-38],[13,-14],[-3,-96],[4,-56],[30,-72],[53,-56],[0,-64],[-13,-14],[-49,0],[-34,25],[-19,37],[-15,62],[6,22],[-22,19],[-40,-30],[-18,-52],[18,-51],[26,21],[18,-11],[-7,-16],[1,-70],[79,-77],[-2,-58],[-18,-40],[-77,-32],[-29,-2],[-90,16],[-31,0],[-21,-13],[-13,-26],[20,-43],[37,-20],[46,-43],[21,-36],[3,-37],[-21,-47],[-47,-63],[-2,-43],[111,-111],[14,-31],[-8,-46],[-40,-46],[-99,-51]],[[4607,5065],[-49,-70]],[[4558,4995],[8,58]],[[4566,5053],[0,1]],[[4566,5054],[7,34],[18,30],[-6,37],[-31,22],[-61,-14],[-53,12]],[[820,8088],[33,-40],[6,-37],[71,-34],[41,4],[24,-38],[4,-80],[23,-31],[-27,-16],[-34,-48],[31,-39],[21,-11],[25,-57],[40,-13],[-3,-62],[34,-23]],[[1109,7563],[0,0]],[[1109,7563],[21,-51],[17,-23]],[[1147,7489],[0,0]],[[1147,7489],[57,-6],[65,-60],[14,-7],[14,-65],[19,-7]],[[1316,7344],[-43,1],[2,-24],[-18,6],[-15,-16],[-27,0],[-13,24]],[[1202,7335],[0,0]],[[1202,7335],[-49,-37],[6,-33]],[[1159,7265],[0,-1]],[[1159,7264],[0,1]],[[1159,7264],[0,-1]],[[1159,7263],[0,0]],[[1159,7263],[0,-1]],[[1159,7262],[0,0]],[[1159,7262],[-6,-12],[0,-119]],[[1153,7131],[-500,1],[-338,-3]],[[315,7129],[-21,31],[15,18],[-39,24],[11,26],[-8,29],[-44,-26],[-18,17],[22,29],[-13,18],[-49,-5],[-13,32],[-24,-6],[-19,48],[-24,31],[-21,47],[-20,21],[-3,28],[-46,4],[0,493]],[[5256,4211],[18,69],[34,7],[6,35],[25,25],[14,-1],[266,14],[470,20],[25,2]],[[6114,4382],[11,-28],[-18,-30],[-34,-11],[-13,-31],[-36,-26],[-9,-32],[-19,-13]],[[5996,4211],[-12,-26],[-18,-1],[-26,-43],[13,0],[-13,-30],[-39,-10],[-22,-22]],[[5879,4079],[0,0]],[[5879,4079],[-7,-4],[-22,-54],[7,-1]],[[5857,4020],[0,0]],[[5857,4020],[22,-16],[-3,-61],[-19,-23],[15,-39]],[[5872,3881],[0,0]],[[5872,3881],[16,-25],[-7,-43],[-15,-19],[10,-21],[-29,-11]],[[5847,3762],[0,0]],[[5847,3762],[4,-42],[25,-26],[-16,-35],[37,-14],[10,-29],[-22,-2],[2,-39],[38,12],[12,-47],[16,-21],[55,-13],[9,-33],[16,-5]],[[5786,3409],[-21,-15],[-43,1],[-34,10],[-38,2],[-44,-18],[-36,2],[-16,23]],[[5554,3414],[-17,35],[-72,22],[-65,-14],[-25,8],[-12,32],[16,46],[34,42],[30,63],[7,38],[-1,176],[-24,40],[-99,-43],[-36,-1],[-1,33],[59,37],[12,16],[0,31],[-34,44],[-89,7],[-16,18],[1,31],[27,39],[15,45],[-8,52]],[[5319,9964],[189,-3],[-16,-48],[-52,-56],[-2,-29],[-19,-33],[10,-54],[18,-16],[49,-20],[52,14],[26,53],[-13,63],[15,28],[-15,17],[6,21],[44,22],[30,-5],[31,-58],[0,-47],[31,-48],[2,-42],[-9,-36],[-73,-82],[-49,-13],[-25,-22],[-32,-76],[-6,-66],[18,-15],[-18,-41],[3,-39],[25,-12],[50,3],[64,-17],[56,-22],[12,-12],[-18,-48],[-22,-22],[-44,-21],[-55,-48],[-18,-35],[-31,-24],[-1,-38],[10,-44],[25,-39],[34,-15],[73,36],[57,16],[24,76],[22,21],[24,-17],[19,-41],[-3,-33],[-50,-64],[-74,-49]],[[5693,8884],[-74,-1],[0,-17],[-43,-25],[-6,-18],[-120,-2],[-501,2]],[[4949,8823],[32,13]],[[4981,8836],[0,0]],[[4981,8836],[-3,18],[23,22],[-27,53]],[[4974,8929],[40,46],[44,13],[12,15],[-18,12],[3,59],[17,13],[-18,85],[12,31],[28,-8],[25,76],[25,46],[25,21],[0,75],[6,103],[-15,0],[6,45],[12,31],[-3,23],[25,24],[22,-3],[6,35],[0,69],[20,30],[-14,25],[33,38],[20,-4],[14,39],[-9,14],[22,7],[-13,33],[23,11],[-5,31]],[[5489,5064],[446,0],[225,1]],[[6160,5065],[-22,-14],[-13,-27],[-2,-48],[-34,-52],[33,-134],[-30,-41],[8,-25],[23,-11],[9,-36],[-16,-2],[7,-35],[18,-12],[-10,-24],[-6,-56],[6,-6],[-18,-75],[3,-26],[19,-48],[-21,-11]],[[5256,4211],[-23,10]],[[5233,4221],[9,4],[0,45],[-30,65],[56,39],[-10,22],[21,23],[-2,28],[13,26],[21,-3],[34,71],[24,9]],[[5369,4550],[0,0]],[[5369,4550],[-9,39],[25,19]],[[5385,4608],[0,0]],[[5385,4608],[-9,33],[19,54],[-7,18],[18,22],[-12,13],[13,55],[24,2],[-3,64],[19,7],[6,22]],[[5453,4898],[0,0]],[[5453,4898],[15,16],[-15,19],[0,44],[24,25],[12,62]],[[2767,4813],[70,5]],[[2837,4818],[0,0]],[[2837,4818],[7,3]],[[2844,4821],[0,0]],[[2844,4821],[13,8]],[[2857,4829],[0,0]],[[2857,4829],[18,-11]],[[2875,4818],[1,0]],[[2876,4818],[-1,0]],[[2876,4818],[5,1]],[[2881,4819],[0,0]],[[2881,4819],[15,1]],[[2896,4820],[0,0]],[[2896,4820],[7,-6]],[[2903,4814],[0,0]],[[2903,4814],[5,-7]],[[2908,4807],[0,1]],[[2908,4807],[1,1]],[[2909,4808],[-1,0]],[[2909,4808],[3,1]],[[2912,4809],[0,0]],[[2912,4809],[3,-1]],[[2915,4808],[0,0]],[[2915,4808],[3,-1]],[[2918,4807],[0,0]],[[2918,4807],[16,7]],[[2934,4814],[0,0]],[[2934,4814],[28,13]],[[2962,4827],[0,0]],[[2962,4827],[2,7]],[[2964,4834],[0,0]],[[2964,4834],[13,10]],[[2977,4844],[0,0]],[[2977,4844],[16,36],[-1,70],[40,9],[16,20],[36,17]],[[3084,4996],[0,0]],[[3084,4996],[26,9],[18,46],[53,18],[15,-20],[24,-1],[6,-18],[32,-8],[0,-28],[31,-1],[-12,-17],[96,6]],[[3505,4697],[2,-135],[8,-21],[67,-41],[0,-229],[-55,-44],[-7,-37],[1,-38],[-14,-21],[1,-119],[-16,0]],[[3492,4012],[0,0]],[[3492,4012],[-83,0],[0,-71],[-303,0],[-21,-11],[-34,0],[-28,-48],[0,-49],[-16,0]],[[3007,3833],[0,0]],[[3007,3833],[-5,-1]],[[3002,3832],[0,0]],[[3002,3832],[-34,-34]],[[2702,3799],[3,18]],[[4913,8499],[-16,-16],[19,-35],[45,-37],[0,-27],[-30,-18],[-25,10],[-9,28],[-31,-55],[16,-14],[28,12],[14,-54],[-63,-16],[2,-48],[-43,18],[-7,-28],[10,-31],[0,-61],[-16,-8],[-34,22],[-14,-24],[34,-31],[27,-6],[31,25],[-12,-37],[-16,-19],[-30,-3],[-16,-30],[24,-9],[81,-1]],[[4882,8006],[2,-116],[-6,-18],[-21,-7],[2,-74],[7,-23],[-15,-20],[37,-14],[-3,-53],[-19,-9],[0,-51],[-16,-57],[25,-32],[0,-41],[-34,-18],[4,-24],[-31,-40],[31,-12],[2,-59],[-27,-35],[-34,-5],[-53,-55],[-9,-21]],[[4113,7879],[15,35],[40,20],[31,-3],[37,20],[22,80],[83,71],[13,32],[-10,53],[12,7],[11,44],[-8,17],[13,28],[-9,31],[40,21],[3,-11],[35,1],[17,22],[25,2],[7,67],[33,4],[0,27],[43,4],[28,19],[4,23],[46,6],[269,0]],[[3218,7013],[2,-38],[22,-12],[12,-42],[-28,-38],[13,-19],[-18,-35],[-13,5],[-5,-59],[30,2],[15,-22],[-25,-23],[19,-4],[-14,-25],[-16,5],[9,-67],[-16,-32],[28,15],[6,-33],[-27,10],[-4,-27],[-33,8],[40,-35],[40,-25],[73,-21],[-33,-23],[43,-27],[-10,-36],[13,-16],[31,-7],[16,-63],[-13,-6],[6,-47],[18,-6],[29,12],[2,19],[23,-10],[-16,-37],[27,-26],[-9,37],[31,-9],[18,9],[4,-27],[28,-5]],[[3536,6233],[-160,-39],[-50,-8],[-201,-53],[-299,-78],[-123,-34],[-60,-2],[-14,34],[-23,-20],[-24,28],[33,19],[-33,32],[28,39],[-49,12],[0,56],[24,-2],[-12,49],[27,3],[-6,22],[-18,-18],[-22,18],[-19,39]],[[2535,6330],[-16,21],[-66,53],[9,28],[-26,15],[-31,32],[-12,28],[-25,22],[-67,5],[-58,41],[-22,-3],[-40,14],[-12,15],[15,77],[-41,11],[-11,33],[-39,-6],[-27,12],[4,61],[-22,9]],[[2048,6798],[0,0]],[[2048,6798],[345,0],[87,2],[244,0],[2,214],[118,-1],[374,0]],[[4197,1261],[3,21],[30,-12],[-33,-9]],[[4187,1186],[3,40],[28,18],[10,-11],[-28,-41],[-13,-6]],[[4183,1405],[-49,3],[-46,40],[-15,0],[-77,48],[-25,-12],[-6,23],[-53,28],[0,-24],[-16,3],[-8,32],[-31,20],[-15,30],[36,-1],[-3,32],[18,3],[7,30],[44,26],[30,-19],[52,5],[23,28],[-1,37],[13,-9],[40,20],[21,-30],[46,6],[18,-15],[29,12],[5,-33],[31,-27],[37,-5],[3,-33],[39,14],[17,-11],[3,-37],[56,-2],[16,14],[-6,-42],[61,20],[-18,-46],[-40,-33],[-26,-13],[-29,-29],[-17,-56],[13,-23],[-43,-21],[-28,15],[-35,-34],[-48,13],[-23,53]],[[5119,2769],[192,1],[24,-49],[28,-24],[25,32],[12,-9],[-3,-34]],[[5338,2555],[-416,-37]],[[4922,2518],[-293,-26],[-35,-56],[-129,-187],[-229,-215],[-49,-49]],[[4187,1985],[-27,21],[-23,-2],[65,134],[1,68],[-28,-8],[-47,27],[-37,-14],[-24,-38],[-37,-1],[-47,26],[-6,27],[-12,-6]],[[3965,2219],[-34,332],[-7,36],[22,14],[34,113]],[[3980,2714],[25,89]],[[4005,2803],[84,-2],[21,-36],[39,25],[109,-57],[38,55],[-4,8],[55,47],[13,47],[65,33],[39,-12],[16,9],[47,-39],[18,19],[19,-11],[33,-60],[22,-29],[34,-9],[13,-27],[-4,-26],[15,-32],[177,0],[22,18],[15,43],[228,2]],[[5119,2769],[-5,55],[-11,33],[-21,18],[-145,0],[-15,31],[21,40],[-21,25],[8,17],[-8,92],[-32,31],[4,36],[22,37],[-68,29],[-68,-2],[-56,18],[-28,31],[4,32],[-63,89],[-12,50],[4,59],[-43,27],[27,24],[18,46],[-8,49],[-22,37],[0,32],[-44,45],[-22,34],[-21,4],[-31,38],[1,14]],[[4484,3840],[225,-1],[0,-36],[52,0],[-3,15],[61,21],[78,0]],[[4897,3839],[47,-66],[15,12],[111,-163],[0,-32],[62,-31],[49,-73],[34,-22],[15,-52],[324,2]],[[2424,8616],[297,-2],[0,107],[395,-2]],[[3116,8719],[0,-215],[198,-211],[0,-106]],[[3313,7866],[-962,2]],[[7570,582],[-2,45],[51,62]],[[7619,689],[28,8],[-34,-49],[-3,-21],[38,27],[-9,-19],[-69,-53]],[[7728,762],[18,7],[62,44],[12,21],[19,2],[-15,-40],[-99,-67],[-69,-58],[72,91]],[[7697,781],[22,6],[6,-15],[-28,9]],[[7793,903],[21,-20],[-6,-30],[-37,13],[22,37]],[[7845,847],[16,25],[58,23],[-65,-47],[-9,-1]],[[7798,953],[-5,-37],[-18,23],[23,14]],[[7709,1100],[-18,17],[28,-1],[-4,26],[19,-12],[-25,-30]],[[7678,1034],[-5,20]],[[7673,1054],[33,-14],[-28,-6]],[[7715,1036],[-3,27],[31,43],[25,-24],[4,-33],[18,2],[-19,-42],[-18,-8],[-38,35]],[[7209,3189],[66,-17]],[[7275,3172],[42,-9],[62,-29],[56,-17],[104,-23]],[[7539,3094],[-12,-139],[-25,-394],[-30,-63],[3,-71],[40,-24],[33,2],[56,23],[24,27],[1,37],[96,-119],[0,-3]],[[7725,2370],[-28,-68],[-6,-34],[-50,-40],[-12,-1]],[[7629,2227],[0,0]],[[7629,2227],[0,-1]],[[7629,2226],[0,0]],[[7629,2226],[-21,-21],[-6,-49],[18,-60],[-25,-28],[19,-47],[-3,-34],[52,-75],[21,-51],[25,-31],[29,-127],[23,0],[17,-39],[-7,-11],[6,-54],[-15,-42],[0,-35],[18,-49]],[[7780,1473],[0,0]],[[7780,1473],[0,-105],[3,-65]],[[7783,1303],[-25,-22],[9,-34],[-9,-34],[20,-8],[-17,-39],[-11,59],[-10,-17],[-5,57],[-20,-3],[-19,43],[-23,15],[-4,18],[-21,-25],[-16,0],[-13,24],[-40,9],[-8,-25],[-37,-4]],[[7534,1317],[-56,31],[-18,58],[-38,63],[-12,36],[-37,26],[10,28],[55,15],[-13,21],[25,23],[-19,87],[0,55],[13,32],[-1,45],[-27,15],[-33,-7],[-14,23],[-65,4]],[[7304,1872],[44,132],[62,143],[10,31],[-11,25],[-18,0],[-111,85],[-5,45],[-41,44],[-18,57],[-12,122],[5,604],[0,29]],[[2714,2851],[-27,-51],[-28,18],[-15,-25],[-22,5],[-22,-28],[-18,5],[-7,-19],[-49,-13],[-28,-28]],[[3980,2714],[-194,89],[-18,56],[-31,54],[6,25],[-78,-30],[-142,66],[-46,-16],[-31,16],[-31,-10],[-6,14],[-34,-7],[-9,13]],[[3640,3354],[90,77],[19,26],[2,46],[32,18],[15,20]],[[3798,3541],[0,0]],[[3798,3541],[28,8],[18,-38],[19,-7],[18,28],[28,-17],[24,10]],[[3933,3525],[1,-1]],[[3934,3524],[18,-12],[47,-9],[6,-26],[-12,-10],[3,-27],[-19,-29],[21,-34],[10,-76],[-52,-41],[17,-3],[-2,-26],[19,-28],[30,-1],[0,-25],[-18,-5],[-9,-30],[-38,-3],[-6,-68],[34,-16],[16,26],[40,-10],[24,13],[25,-50],[4,-31],[-53,-84],[-34,-116]],[[7095,328],[34,25],[12,-8],[-46,-17]],[[6956,678],[0,7]],[[6956,685],[0,-7]],[[6956,762],[13,13],[0,34]],[[6969,809],[11,-34],[-24,-13]],[[7236,382],[29,23],[6,-13],[-35,-10]],[[7046,435],[27,12],[-5,-16],[-22,4]],[[7062,482],[15,21],[18,-21],[-34,-17],[1,17]],[[6045,2394],[192,5],[0,35],[47,-18],[61,-8],[37,-34],[37,17],[18,-29],[38,-6]],[[6475,2356],[0,0]],[[6475,2356],[9,-2]],[[6484,2354],[58,15],[28,-13],[3,-16],[28,22],[80,3],[22,-6]],[[6703,2359],[22,-11],[30,-56],[28,4],[40,-45],[7,-84],[30,-38],[58,-51],[100,-30],[9,-33],[22,-29],[-1,-73],[29,-38],[227,-3]],[[7534,1317],[24,-7],[28,11],[37,-18],[19,8],[27,-35],[0,-27],[31,-20],[-24,-85],[9,-40],[-12,-50]],[[7678,1034],[16,-63],[34,-24],[12,-44],[-30,-52],[-25,-10],[-53,-99],[-13,-53]],[[7570,582],[-37,-40],[-99,-81],[-6,6],[-117,-79],[-52,58],[37,-6],[-7,54],[-21,31],[-32,-3],[26,16],[0,15],[-47,19],[31,25],[7,22],[-13,36],[-28,46],[18,-5],[26,14],[31,29],[-17,20],[-17,-31],[3,62],[-7,19],[-49,25],[-6,-102],[-25,28],[4,32],[-11,31],[-15,-10],[-24,62],[-27,-6],[-7,15],[-47,-3],[-19,-10],[7,-42],[-22,-20],[0,17],[-27,3]],[[6981,829],[25,53]],[[7006,882],[0,1]],[[7006,883],[14,47],[-20,49],[14,54],[-9,41],[-22,34],[-45,29],[-13,20],[-42,45],[-17,30],[-21,59],[-35,19],[-21,33],[-79,75],[3,21],[-40,52],[-20,-1],[-14,58],[-56,39],[-26,40],[0,15],[-49,10],[-27,14],[-41,76],[-52,64],[-37,26],[-34,3],[-40,40],[-37,98],[-9,36],[-31,4],[-3,62],[-41,2],[0,-28],[-28,-10],[3,-33],[-79,-1],[-3,-73],[-235,-4]],[[3218,7013],[37,47],[5,42],[22,39],[17,84],[-10,6],[24,25],[0,76]],[[3746,5886],[27,18],[-21,53],[-18,2],[-19,30],[-13,-13],[-77,80],[-22,84],[10,32],[-22,7],[13,25],[-37,25],[-19,-19],[-12,23]],[[2523,9364],[182,1],[34,-19],[41,5],[12,-19],[25,4],[31,-35],[18,-38],[52,6],[1,-122],[197,-1],[0,-214]],[[3116,8932],[0,-213]],[[5996,4211],[145,1],[490,0],[23,1]],[[6654,4213],[0,-379],[2,-19],[19,-7],[13,-40],[-3,-35],[9,-43]],[[6694,3690],[0,0]],[[6694,3690],[21,-38],[19,-6],[22,-30],[0,-35],[25,-19],[-4,-52],[19,9],[6,-26],[24,2],[4,-46],[68,-87],[40,-28],[33,-13]],[[6971,3321],[1,0]],[[6971,3321],[-22,-11],[-76,-16],[-68,-30],[-27,-30],[-38,-73],[-38,-46],[-39,-18],[-37,11],[-29,45],[-32,-4],[-37,16]],[[5724,7813],[7,79],[-18,35],[2,23],[28,-12],[36,-33],[41,-1],[-1,-38],[-21,-44],[-31,-18]],[[5767,7804],[-43,9]],[[5693,8884],[-21,-17],[9,-23],[41,-37],[68,-25],[46,-32],[15,-30],[-25,-34],[-49,8],[-25,13],[-30,31],[-41,76],[-34,36],[-21,-75],[-23,-44],[1,-43],[37,-57],[44,-32],[46,-23],[40,-9],[70,43],[26,-9],[24,-33],[0,-32],[-18,-24],[-35,-18],[-2,-27],[-19,-64],[9,-21],[25,-14],[68,-15],[31,-1],[43,-15],[22,27],[21,55],[27,-9],[-20,-47],[-28,-48],[-10,-40],[-52,-58],[-31,-18],[-25,34],[-22,2],[-18,-43],[3,-27],[25,-40],[-22,-24],[-6,-76],[-22,-45],[-15,13],[0,61],[-34,31],[-49,12],[-28,-54],[-19,18],[-40,-5],[-31,-39],[-30,7]],[[5589,8024],[3,71],[-23,24],[-42,-11],[-53,1],[-47,-22],[-26,-19],[-25,-47],[-56,29],[-12,23],[-18,-22],[-34,-5],[-32,-18],[-12,-24],[-330,2]],[[4913,8499],[-19,20],[0,52],[30,-2],[-15,33],[3,38],[-14,20],[-1,58],[30,69]],[[4927,8787],[0,0]],[[4927,8787],[-3,19],[25,17]],[[3786,9275],[-3,30],[25,1],[-17,65],[13,30],[6,49],[-15,34],[-12,50],[21,21],[-53,90],[13,49],[-9,15],[16,53],[-19,115],[15,3],[-12,25],[21,18],[4,48]],[[3780,9971],[49,-1],[396,0],[296,-2],[348,0],[123,-2]],[[4992,9966],[-6,-37],[-21,-18],[24,-7],[-12,-23],[-24,-13],[-16,-37],[-31,-35],[10,-17],[-43,-57],[5,-39],[-31,-28],[-45,-4],[-60,-53],[-15,-34],[-3,-45],[-30,-37],[2,-27],[-21,-18],[12,-73],[-4,-27],[-39,-54],[-22,-18],[-19,-41],[29,-16],[3,-39],[-29,-30]],[[4606,9139],[-18,-67],[-27,-46],[-22,-25],[-25,11],[-9,-18],[-41,9],[-17,-16],[-38,-66],[10,-19],[-12,-27],[-25,5],[-28,-19],[-16,20],[-31,5],[-18,18],[-28,-11],[0,-32],[-38,-24],[-3,-62],[-33,-1],[-19,11],[-40,53],[-21,-23],[-6,-52],[-23,-19]],[[4078,8744],[16,22],[-6,50],[-19,18],[-18,70],[6,26],[-34,14],[0,23],[40,68],[-6,51],[28,14],[-3,23]],[[4082,9123],[0,1]],[[4082,9124],[-22,16],[-24,-23],[-22,14],[-40,54],[-15,62],[-43,-18],[-22,9],[-13,-19],[-22,7],[-21,25],[-12,-17],[28,-20],[-38,-29],[13,34],[-25,-5],[3,51],[-21,10]],[[2113,7871],[12,-43]],[[2125,7828],[0,0]],[[2125,7828],[3,-13]],[[2128,7815],[0,0]],[[2128,7815],[0,-3]],[[2128,7812],[0,0]],[[2128,7812],[15,-32]],[[2143,7780],[0,0]],[[2143,7780],[9,-4]],[[2152,7776],[0,0]],[[2152,7776],[19,-40]],[[2171,7736],[0,-1]],[[2171,7736],[0,-1]],[[2171,7735],[6,-3]],[[2177,7732],[0,0]],[[2177,7732],[-3,-24]],[[2174,7708],[0,0]],[[2174,7708],[-5,1]],[[2169,7709],[0,0]],[[2169,7709],[15,-50]],[[2184,7659],[0,0]],[[2184,7659],[12,-23]],[[2196,7636],[0,0]],[[2196,7636],[0,-2]],[[2196,7634],[0,0]],[[2196,7634],[0,-6]],[[2196,7628],[0,0]],[[2196,7628],[3,-27]],[[2199,7601],[0,0]],[[2199,7601],[4,-8]],[[2203,7593],[0,0]],[[2203,7593],[5,-2]],[[2208,7591],[0,0]],[[2208,7591],[6,-28]],[[2214,7563],[0,0]],[[2214,7563],[-6,-41],[-22,-26],[9,-17]],[[2195,7479],[0,0]],[[2195,7479],[23,-15]],[[2218,7464],[0,0]],[[2218,7464],[0,-63],[22,-20],[-22,-20],[-18,-45],[0,-53],[-16,-20],[-7,-54],[15,-26],[-20,-19],[-79,12],[22,-81],[-24,0],[18,-19],[-19,-43],[-2,-33],[-28,-5],[-6,-58],[3,-65],[-9,-54]],[[2535,6330],[-82,-75],[0,-24],[-32,1],[-2,-19],[-32,-34],[-34,-1],[1,-34],[-32,0],[0,-18],[-31,0],[-2,-37],[-47,0],[0,-36],[-31,-1],[0,-34],[-49,0],[2,-53],[-67,-1],[1,-51],[-66,0]],[[2032,5913],[-6,9]],[[2026,5922],[0,0]],[[2026,5922],[-13,25]],[[2013,5947],[0,0]],[[2013,5947],[-73,0],[-4,10],[-366,1],[-25,-1]],[[1545,5957],[0,399],[-1,26],[-194,-1],[-2,429],[-196,1],[1,171],[0,149]],[[1316,7344],[-7,-18],[16,-65],[50,-13],[12,-12],[28,22],[41,-25],[30,20],[18,37],[34,-16],[3,168],[223,-1],[-28,26],[-33,49],[-8,25]],[[1695,7541],[0,0]],[[1695,7541],[4,6]],[[1699,7547],[0,0]],[[1699,7547],[0,3]],[[1699,7550],[0,0]],[[1699,7550],[3,31],[25,45]],[[1727,7626],[0,0]],[[1727,7626],[5,7]],[[1732,7633],[0,0]],[[1732,7633],[4,10],[-18,44],[-19,13]],[[1699,7700],[0,0]],[[1699,7700],[-1,7]],[[1698,7707],[0,0]],[[1698,7707],[-15,26]],[[1683,7733],[0,0]],[[1683,7733],[22,27],[-12,26]],[[1693,7786],[0,0]],[[1693,7786],[-40,64]],[[1653,7850],[0,0]],[[1653,7850],[-13,20]],[[1640,7870],[0,0]],[[1640,7870],[-2,2]],[[7539,3094],[71,-41],[69,-13],[62,-50],[23,8],[174,102],[46,10],[22,-21],[68,-15],[16,-16],[8,-48],[28,-18],[34,18],[65,48],[15,-5],[37,-36],[68,35],[65,-41],[49,-8]],[[8459,3003],[-12,-29],[-19,-11],[-30,-49],[-41,-24],[-9,-75],[-30,-18],[-41,-8],[-21,-22],[-1,-24],[28,-49],[-33,-15],[-31,35],[-65,22],[-55,-2],[-50,-48],[-22,-42],[-18,-12]],[[8009,2632],[-40,-43],[-9,28],[-17,13],[-36,-7],[-24,-24]],[[7883,2599],[0,-1]],[[7883,2598],[-6,-4]],[[7877,2594],[0,0]],[[7877,2594],[-20,-17],[-27,2],[-41,33],[-27,-13],[-44,-106],[37,-29],[43,-24],[66,-1],[21,-12],[37,-63],[6,-23],[-18,-37]],[[7910,2304],[-12,-5],[-29,55]],[[7869,2354],[0,0]],[[7869,2354],[-49,32],[-55,7],[-3,-39],[-25,22],[-12,-6]],[[4078,8744],[-12,-20],[-27,-14],[-13,-50]],[[4026,8660],[0,0]],[[4026,8660],[-2,-38],[-44,-57],[-13,-30],[-24,-15],[-40,-83],[-13,-42],[10,-23],[-19,-84],[-8,-52],[-28,-50]],[[3116,8932],[219,-1],[10,14],[46,-18],[46,21],[28,-3],[21,12],[6,46],[155,120],[-6,31],[40,0],[21,21],[37,13],[9,27],[38,60]],[[9008,226],[-9,-43],[-21,-22],[-31,-48],[-3,-21],[-24,-37],[-53,-55],[46,88],[28,31],[67,107]],[[7852,1285],[24,-8],[-12,-31],[-12,39]],[[7914,1271],[27,37],[25,2],[17,27],[20,-7],[3,-36],[-25,-44],[-25,-9],[1,23],[-43,7]],[[7951,1043],[-10,41],[-13,13],[32,27],[-14,-51],[5,-30]],[[8743,1143],[52,-1],[-33,-10]],[[8762,1132],[-3,1]],[[8759,1133],[0,0]],[[8759,1133],[-3,1]],[[8756,1134],[-1,1]],[[8755,1135],[-2,1]],[[8753,1136],[-4,3]],[[8749,1139],[-2,1]],[[8747,1140],[-1,1]],[[8746,1141],[-2,1]],[[8744,1142],[-1,1]],[[8743,1143],[0,0]],[[8743,1143],[1,-1]],[[8744,1142],[2,-1]],[[8746,1141],[1,-1]],[[8747,1140],[2,-1]],[[8749,1139],[4,-3]],[[8753,1136],[2,-1]],[[8755,1135],[1,-1]],[[8756,1134],[3,-1]],[[8759,1133],[3,-1]],[[8762,1132],[-47,5],[12,15],[16,-9]],[[8534,1387],[33,4],[-2,-40],[-23,13],[-8,23]],[[9463,1445],[18,7],[25,52],[36,34],[-42,-70],[-37,-23]],[[8564,1574],[-24,21],[33,-6],[-9,-15]],[[8616,1448],[-2,19],[-22,9],[30,3],[-6,-31]],[[8457,1472],[-4,19],[56,14],[16,25],[33,0],[22,-15],[-29,-29],[-17,2],[-29,-20],[22,-6],[-19,-44],[-30,25],[-21,29]],[[7950,1010],[3,-28],[16,-15],[16,9],[33,-40],[-65,-22],[24,20],[-31,27],[4,49]],[[8034,955],[9,22],[18,-25],[-27,3]],[[8907,126],[21,12],[59,76],[-107,-159],[11,51],[16,20]],[[9297,234],[8,11],[47,-44],[-22,4],[-33,29]],[[8937,481],[-36,-48],[-7,15],[13,43],[30,-10]],[[9092,309],[4,27],[27,0],[0,-13],[-31,-14]],[[9124,332],[21,10],[13,-14],[-34,4]],[[9074,320],[34,41],[15,-23],[-27,0],[-22,-18]],[[9142,372],[25,-6],[-13,-26],[-12,32]],[[9543,600],[27,-13],[-17,-7],[-10,20]],[[9201,806],[-1,7]],[[9200,813],[0,1]],[[9200,814],[-2,2]],[[9198,816],[0,1]],[[9198,817],[-1,4]],[[9197,821],[0,1]],[[9197,822],[0,1]],[[9197,823],[-2,12]],[[9195,835],[-1,33]],[[9194,868],[0,2]],[[9194,870],[-6,44],[30,12],[20,31],[17,-76],[-54,-75]],[[9258,952],[1,-6]],[[9259,946],[-1,-9]],[[9258,937],[0,-4]],[[9258,933],[0,-3]],[[9258,930],[-2,-6]],[[9256,924],[-25,47],[19,11],[8,-30]],[[9332,817],[1,1]],[[9333,818],[7,15]],[[9340,833],[26,11],[17,30],[9,-38],[18,-10],[6,-22],[-12,-16],[-41,-5],[-33,-28]],[[9330,755],[-6,-11]],[[9324,744],[-18,-17]],[[9306,727],[-3,-1]],[[9303,726],[-32,-14]],[[9271,712],[-3,1]],[[9268,713],[34,39],[30,65]],[[9302,964],[3,25],[16,-16],[-19,-9]],[[9256,924],[2,6]],[[9258,930],[0,3]],[[9258,933],[0,4]],[[9258,937],[1,9]],[[9259,946],[-1,6]],[[9258,952],[-8,34],[12,29],[16,-14],[12,-43],[-7,-43],[-27,-34],[0,43]],[[7910,2304],[7,-16]],[[7917,2288],[0,0]],[[7917,2288],[2,-6]],[[7919,2282],[0,0]],[[7919,2282],[0,0]],[[7919,2282],[21,-64],[34,-45],[-3,-17],[35,-38],[65,23],[42,-15],[37,-54],[-9,-31],[23,-13],[36,7],[77,-2],[31,-15],[22,-33],[16,-56],[43,-13],[27,-24],[41,-52],[49,-9],[21,-16],[65,-21],[18,-18],[47,-5],[33,-39],[26,-17]],[[8716,1715],[-35,27],[-17,-2],[-26,31],[-39,8],[-14,15],[-46,-12],[-9,13],[-34,4],[-30,-22],[40,-31],[-35,5],[-14,-10],[-16,-49],[13,-39],[36,-11],[-39,-4],[-79,14],[-32,-1],[24,-30],[-41,14],[16,-26],[33,-5],[20,-16],[24,15],[19,-29],[-10,-14],[-21,21],[-64,21],[-22,-5],[27,-73],[7,-38],[33,-3],[12,-25],[-24,-5],[9,-16],[22,2],[12,-27],[13,3],[28,-40],[68,10],[-6,-30],[39,-37],[-5,26],[21,-18],[3,-23],[52,-33],[-13,-12],[13,-22],[-24,-14],[18,-17],[15,8],[22,-13],[-25,-24],[-24,11],[-25,33],[-30,-36],[18,-12],[5,-29],[28,1],[13,-20],[56,-7],[30,18],[-3,-16],[71,2],[25,-15],[22,21],[14,-24],[23,0],[12,24],[18,0],[0,-31],[20,-12],[8,13],[1,-46],[15,-14],[21,13],[32,-11],[-14,-37],[19,-11],[10,38],[37,-6],[39,35],[28,-28],[38,-9],[5,-31],[23,-18],[-19,-34],[33,-5],[10,-63]],[[9194,870],[0,-2]],[[9194,868],[1,-33]],[[9195,835],[2,-12]],[[9197,823],[0,-1]],[[9197,821],[1,-4]],[[9198,816],[2,-2]],[[9200,813],[1,-7]],[[9201,806],[-34,-84],[-4,-39],[47,118],[28,45],[39,43],[13,23],[52,-15],[38,-23],[-14,-27],[-26,-14]],[[9340,833],[-7,-15]],[[9333,818],[-1,-1]],[[9332,817],[-23,-30],[-4,-23],[-56,-60],[-73,-31],[49,15],[43,25]],[[9268,713],[3,-1]],[[9271,712],[19,-4],[13,18]],[[9303,726],[3,1]],[[9306,727],[18,17]],[[9324,744],[6,11]],[[9330,755],[36,26],[66,5],[-7,-69],[31,-42],[23,3],[15,-34],[65,25],[-13,41],[25,-19],[31,8],[3,-21],[-34,-24],[37,-11],[25,4],[11,-14],[-12,-27],[-19,-12],[-5,20],[-35,18],[-74,-3],[-23,-24],[21,-17],[-15,-30],[-8,37],[-32,9],[-25,-8],[21,-32],[-22,12],[1,-30],[42,-35],[26,-1],[28,-27],[33,11],[40,25],[18,-1],[-15,-26],[-31,-15],[-21,-48],[6,-47],[-12,5],[-19,54],[-41,34],[-15,3],[-5,-45],[-13,-2],[9,-47],[-43,-41],[-16,14],[-2,-29],[-19,-34],[-53,-14],[4,-34],[-56,86],[-13,39],[0,-44],[-11,-5],[-10,44],[-31,67],[-19,-5],[-2,35],[-12,12],[-32,-62],[9,-10],[-55,-61],[-27,-52],[-25,-24],[43,73],[37,47],[-15,15],[18,21],[28,82],[-10,56],[-22,-9],[1,26],[-18,-8],[5,-24],[-34,6],[-3,43],[-24,8],[-12,30],[6,15],[-35,-6],[-3,-64],[6,-32],[14,-10],[9,-31],[-4,-43],[-5,64],[-20,22],[-8,-65],[-17,17],[19,101],[-37,-31],[-9,28],[-30,-28],[2,-35],[-34,0],[-30,-14],[-34,44],[-34,86],[-32,40],[-30,49],[0,18],[22,22],[5,-22],[22,19],[-18,7],[-37,-6],[-21,19],[-35,-20],[1,-20],[21,-15],[19,7],[-3,-22],[-115,52],[-90,23],[-30,24],[-10,28],[25,18],[-12,19],[-41,-6],[-3,16],[21,25],[3,41],[-30,18],[-24,-14],[-28,-54],[-19,-18],[-102,35],[-83,7],[-9,11],[-59,-4],[-25,20],[-18,36],[0,28],[16,31],[-13,12],[-31,-9],[-18,-26],[-10,49],[10,25],[43,-1],[13,35],[-4,27],[22,-2],[24,17],[0,50],[-47,-35],[-27,10],[47,35],[-34,-8],[16,51],[24,-25],[15,35],[-47,43],[-40,-8],[4,23],[-24,-5],[-14,-29],[-40,3],[-12,-26],[-47,1],[-18,11],[-36,-18],[-16,18],[-22,-12]],[[4390,5113],[54,-28],[21,2],[15,26],[31,-1],[31,-20],[24,-38]],[[4558,4995],[9,-47],[24,-54],[-16,-32],[-14,-51],[-1,-93],[9,-16],[40,-23],[20,-3],[55,18],[34,-2],[27,-25],[16,29],[-9,74],[-22,33],[-71,15],[-11,13],[2,36],[115,-1],[37,-28],[25,-40],[12,-54],[-4,-41],[-42,-147],[-22,-26],[-69,-21],[-18,-34],[3,-19],[49,-38],[26,-9],[88,23],[44,3],[44,-13],[26,1],[41,17],[65,36],[37,-3],[41,-81],[26,-130],[19,-28]],[[5193,4234],[-6,-14],[47,-7],[-20,-42],[-88,-110],[2,-47],[-65,-1],[-18,-69],[-13,0],[0,-70],[-129,-1],[-6,-34]],[[4484,3840],[-106,1]],[[4378,3841],[4,19],[36,5],[7,26],[-16,23],[-33,85],[12,89],[-6,44],[25,37],[-10,65],[28,27],[-9,22],[6,55],[-7,25],[-40,69],[6,41],[-24,67],[-24,27],[-47,32],[-6,29],[18,21],[-33,47]],[[2335,4798],[-1,271],[-8,24],[0,190],[-1,53],[-2,347],[-31,3],[0,51],[-31,0],[0,35],[-34,0],[0,69],[-32,0],[0,19],[-64,0],[0,18],[-67,0],[0,18],[-32,0],[0,17]],[[4606,9139],[78,0],[0,-209],[290,-1]],[[1545,5957],[-296,-1],[-100,-213],[-176,0],[-2,-59],[-35,-31],[7,-30],[18,-3],[-19,-29],[13,-29],[-15,-43]],[[940,5519],[-68,-48],[-25,26],[-3,57],[-9,12],[8,31],[14,11],[-4,23],[-38,2],[5,72],[-11,24],[-42,-5],[-12,35],[-22,-2],[-16,37],[-28,9],[-9,24],[28,35],[7,64],[40,14],[18,34],[-59,-14],[-3,67],[-36,32],[-28,12],[0,18],[24,52],[-31,4],[9,29],[-24,11],[-19,-8],[-44,34],[7,30],[46,29],[-3,21],[24,23],[-8,9],[-44,-1],[-18,40],[-21,-15],[-44,3],[-43,33],[9,9],[-37,29],[-9,33],[-31,76],[3,19],[37,18],[0,90],[-13,24],[4,31],[37,27],[18,49],[-24,-6],[-19,16],[3,49],[-42,51],[29,57],[-30,21],[-3,45],[-24,-1],[-17,30],[-24,7],[-10,72]],[[9877,2312],[-7,30],[19,20],[-12,-50]],[[9192,2346],[3,-18],[-35,-29],[-16,3],[26,19],[-9,18],[31,7]],[[9833,2321],[18,18],[19,-18],[-37,0]],[[9771,1789],[-6,38],[44,31],[-38,-69]],[[9894,2028],[-36,-53],[-28,-28],[-19,-3],[62,53],[21,31]],[[9926,2087],[-32,-59]],[[9894,2028],[6,30],[26,29]],[[9926,2087],[-12,32],[18,-4],[16,33],[-7,20],[19,16],[-3,31],[15,30],[-3,20],[13,32],[-6,27],[14,54],[-6,102],[-19,19],[20,18],[-12,19],[-1,46],[-15,17],[-22,55],[3,20],[-16,23],[-11,37],[27,-44],[34,-82],[21,-89],[6,-55],[-5,-116],[-10,-67],[-21,-93],[-37,-101]],[[8800,2943],[5,36],[22,-17],[10,27],[18,-19],[-31,-33],[-24,6]],[[9299,3007],[-34,-26],[21,37],[13,-11]],[[9218,2917],[-6,22],[22,16],[13,-6],[-9,-24],[-20,-8]],[[8009,2632],[25,-113],[14,-34],[32,-21],[46,-6],[38,9],[64,28],[28,26],[31,-27],[-57,-25],[-3,-64],[50,-51],[10,-20],[43,-32],[77,-17],[84,27],[27,25],[7,30],[-4,55],[22,36],[-3,32],[24,40],[0,35],[-19,38],[35,14],[52,45],[43,22],[29,31],[8,23],[-8,35],[23,44],[53,-48],[22,4],[44,-40],[58,17],[33,-2],[-29,-49],[-35,-12],[18,-56],[-20,18],[-1,30],[-22,-9],[-11,24],[-41,-20],[0,-21],[-19,-19],[3,-23],[26,5],[0,-23],[18,-31],[24,-7],[12,-28],[44,11],[10,-9],[48,-2],[-5,51],[27,-20],[-25,1],[20,-28],[-19,-33],[19,-59],[3,-32],[33,-11],[-22,-50],[-36,-27],[30,2],[41,-9],[33,12],[49,6],[23,-17],[-1,-56],[-59,-12],[7,-24],[-22,-19],[-19,-34],[-48,2],[-1,-46],[19,-26],[49,6],[16,-6],[-4,33],[25,4],[-12,-30],[10,-45],[15,-13],[-37,-11],[-65,58],[-49,-2],[-19,21],[-31,2],[-24,-19],[0,-33],[-13,-4],[-21,-52],[-26,-149],[7,-19],[-34,-17],[-7,27],[-8,-47],[-25,-20],[-6,58],[12,23],[-1,25],[-27,39],[-41,19],[-37,-25],[14,-48],[6,16],[21,-11],[-25,-34],[-2,-27],[-19,27],[-16,3],[0,-32],[-18,-10],[65,-42],[34,-48]],[[9197,2482],[9,-23],[-40,-10],[-33,7],[-93,-74],[67,64],[38,50],[70,45],[9,-39],[-27,-20]],[[8929,2660],[28,-12],[-31,-18],[3,30]],[[9295,2703],[29,30],[10,-12],[-39,-18]],[[8987,2560],[16,50],[12,1],[3,-49],[-31,-2]],[[9082,2502],[50,81],[-3,23],[31,4],[16,18],[-3,-77],[-28,24],[-24,-44],[2,-30],[-40,-16],[-1,17]],[[9219,2625],[7,47],[-29,36],[6,22],[-27,0],[-28,13],[-25,-51],[-19,32],[-21,-10],[-67,-2],[-20,28],[6,30],[44,13],[33,29],[32,-12],[-6,35],[18,-19],[9,17],[-33,24],[14,17],[75,44],[-10,-39],[20,-22],[18,9],[15,-67],[30,-35],[29,17],[28,-3],[-23,-12],[-24,-53],[-25,-24],[4,-40],[16,-19],[-23,-28],[-2,23],[-22,0]],[[6703,2359],[13,53]],[[6716,2412],[0,1]],[[6716,2413],[0,2]],[[6716,2415],[2,0]],[[6718,2415],[-15,60],[0,111],[-13,0],[-2,44],[21,-1],[1,38],[82,31],[25,-4],[64,11],[94,144],[234,340]],[[6160,5065],[478,0],[16,1]],[[6654,5066],[0,-576],[3,-244],[-3,-33]],[[6512,3032],[-23,-172],[-33,-5],[19,-107],[-53,-36],[34,-105],[-9,-30],[16,1],[2,-36],[-16,-1],[1,-36],[15,1],[1,-80]],[[6466,2426],[0,0]],[[6466,2426],[2,-27],[16,-45]],[[6972,3321],[55,-5],[40,32],[34,-3],[28,9],[43,-12],[37,-153]],[[4378,3841],[4,-31],[34,-82],[27,2],[18,-51],[28,-41],[7,-32],[31,-18],[-259,-1],[-47,32],[-59,24],[-129,-55],[-55,38],[-25,-6],[-6,-62],[-14,-33]],[[5635,1891],[-25,8],[-40,52],[-49,0],[-41,10],[-27,29],[-40,27],[-26,-5],[-132,38],[-102,3],[-67,43],[24,125],[-52,95],[-18,66],[-11,16],[-107,100],[0,20]],[[5134,1039],[10,24],[10,-9],[-7,-33],[-13,18]],[[5107,1060],[4,27],[33,-3],[-12,-37],[-25,13]],[[5668,1713],[-15,-11],[-53,-14],[-2,-16],[-40,-3],[-40,-38],[-25,15],[-16,23],[-71,-61],[-12,-30],[4,-23],[-23,-28],[-61,-22],[-9,-30],[14,-48],[-12,-32],[-5,-41]],[[5302,1354],[-41,-6],[-79,20],[32,9],[-37,3],[-29,25],[-41,0],[0,34],[-52,-6],[-46,18],[5,47],[-21,14],[-56,1],[-62,-18],[-42,-23],[-57,-22],[44,64],[-4,28],[-21,28],[3,44],[-19,59],[-11,54],[-12,13],[-44,1],[-80,-26],[-52,18],[27,17],[22,69],[-1,36],[13,55],[-4,60],[10,22],[-108,12],[-90,-18],[-31,26],[-80,-15],[-108,-60],[-49,-38],[-4,17],[-37,3],[47,49],[0,17]],[[5024,1123],[3,11],[49,-19],[13,-17],[-31,3],[-34,22]],[[4959,1142],[3,11],[65,-19],[-12,-15],[-19,15],[-37,8]],[[7275,3172],[-1,233],[0,346],[-3,290],[-7,19]],[[7264,4060],[0,0]],[[7264,4060],[4,3]],[[7268,4063],[0,0]],[[7268,4063],[0,0]],[[7268,4063],[-3,37]],[[7265,4100],[0,1]],[[7265,4101],[0,-1]],[[7265,4101],[2,13]],[[7267,4114],[0,0]],[[7267,4114],[0,1]],[[7267,4115],[0,0]],[[7267,4115],[0,2]],[[7267,4117],[1,0]],[[7268,4117],[0,0]],[[7268,4117],[-1,1]],[[7267,4118],[0,-1]],[[7267,4118],[-5,16]],[[7262,4134],[0,0]],[[7262,4134],[0,3]],[[7262,4137],[0,0]],[[7262,4137],[0,9]],[[7262,4146],[0,0]],[[7262,4146],[-1,2]],[[7261,4148],[0,0]],[[7261,4148],[-2,0]],[[7259,4148],[0,0]],[[7259,4148],[0,0]],[[7259,4148],[8,9]],[[7267,4157],[0,0]],[[7267,4157],[1,9]],[[7268,4166],[0,0]],[[7268,4166],[0,11]],[[7268,4177],[0,0]],[[7268,4177],[5,25]],[[7273,4202],[1,1]],[[7274,4203],[0,1]],[[7274,4203],[-1,0]],[[7273,4203],[0,-1]],[[7273,4202],[0,1]],[[7273,4203],[1,1]],[[7274,4204],[-3,2]],[[7271,4206],[0,0]],[[7271,4206],[0,0]],[[7271,4206],[0,0]],[[7271,4206],[-1,2]],[[7270,4208],[0,0]],[[7270,4208],[-3,2]],[[7267,4210],[0,1]],[[7267,4210],[0,1]],[[7267,4211],[-11,36],[3,33]],[[7259,4280],[0,1]],[[7259,4281],[0,-1]],[[7259,4280],[0,1]],[[7259,4281],[0,3]],[[7259,4284],[0,0]],[[7259,4284],[0,19]],[[7259,4303],[0,0]],[[7259,4303],[-1,7]],[[7258,4310],[0,0]],[[7258,4310],[0,4]],[[7258,4314],[0,0]],[[7258,4314],[-8,50]],[[7250,4364],[2,0]],[[7252,4364],[165,-37]],[[7417,4327],[0,0]],[[7417,4327],[332,-78],[231,0],[63,2]],[[8043,4251],[2,-34],[14,14],[36,-45],[-15,-39],[-1,-39],[17,-26],[15,-60],[22,-6],[-14,-30],[41,-31],[25,-77],[13,-2],[40,-41],[36,-17],[32,-54],[40,-36],[-1,-44],[13,-38],[-13,-31],[58,-124],[47,-39],[-9,-42],[16,-17],[-28,-18],[-1,-32],[19,-34],[-1,-57],[29,-23],[-1,-45],[13,-27],[19,-5],[28,-60],[25,-26],[34,12],[18,22],[24,0],[3,-41],[-14,10],[-34,-3],[-32,-32],[1,-18],[-26,-24],[-31,10],[-43,1]],[[6654,5066],[422,1]],[[7076,5067],[0,-231],[25,0],[7,-35],[25,0],[5,-67],[25,-31],[6,-22]],[[7169,4681],[0,0]],[[7169,4681],[7,-34]],[[7176,4647],[0,0]],[[7176,4647],[6,-30]],[[7182,4617],[0,0]],[[7182,4617],[0,-23]],[[7182,4594],[0,0]],[[7182,4594],[2,-5]],[[7184,4589],[0,0]],[[7184,4589],[1,-2]],[[7185,4587],[0,0]],[[7185,4587],[3,-3]],[[7188,4584],[0,-1]],[[7188,4583],[0,-1]],[[7188,4582],[0,0]],[[7188,4582],[11,-11]],[[7199,4571],[0,0]],[[7199,4571],[7,-5]],[[7206,4566],[0,0]],[[7206,4566],[0,-9]],[[7206,4557],[0,0]],[[7206,4557],[-2,-4]],[[7204,4553],[0,-1]],[[7204,4552],[0,0]],[[7204,4552],[2,-8]],[[7206,4544],[0,0]],[[7206,4544],[4,-18]],[[7210,4526],[0,0]],[[7210,4526],[9,-13]],[[7219,4513],[0,0]],[[7219,4513],[12,-11]],[[7231,4502],[0,0]],[[7231,4502],[5,-14]],[[7236,4488],[0,0]],[[7236,4488],[-2,-13]],[[7234,4475],[0,0]],[[7234,4475],[0,-14]],[[7234,4461],[0,0]],[[7234,4461],[0,0]],[[7234,4461],[3,-5]],[[7237,4456],[1,-1]],[[7238,4455],[0,1]],[[7238,4456],[-1,0]],[[7238,4456],[0,-1]],[[7238,4455],[3,-14]],[[7241,4441],[0,0]],[[7241,4441],[2,-13]],[[7243,4428],[0,0]],[[7243,4428],[7,-12]],[[7250,4416],[0,0]],[[7250,4416],[2,-18]],[[7252,4398],[0,0]],[[7252,4398],[1,-4]],[[7253,4394],[0,0]],[[7253,4394],[-3,-14]],[[7250,4380],[0,-2]],[[7250,4378],[2,-14]],[[5767,7804],[-9,-51],[-89,-54],[6,-69],[-38,-3],[-29,21],[-19,37],[-29,23],[-36,-17],[-9,-33],[12,-22],[27,-15],[90,-21],[21,-14],[14,-39],[-44,-56],[-31,-14],[-95,-11],[-44,-52],[-9,-58],[18,-10],[7,-37],[-40,-23],[-62,-76],[-65,-36],[-1,-24],[43,-48],[-3,-27],[-21,-29],[-22,-3],[-27,15],[-12,40],[2,37],[-9,32],[-73,-14],[-25,-23],[-37,-150],[-3,-55],[30,-7],[96,23],[25,12],[43,-10],[9,-23],[-34,-34],[-34,1],[-46,11],[-62,0],[-34,-7],[-21,-33]],[[5589,8024],[-16,6],[-59,-37],[-12,-39],[-10,-66],[22,-56],[99,-18],[37,21],[27,0],[47,-22]],[[5895,331],[64,-23],[2,11],[38,-27],[-74,17],[-30,22]],[[6175,355],[27,-18],[-26,2],[-1,16]],[[6009,295],[61,-12],[-55,-2],[-6,14]],[[6123,301],[6,14],[33,-41],[-27,3],[-12,24]],[[6181,283],[4,26],[-16,16],[43,-3],[-31,-39]],[[6796,1017],[27,19],[-8,-46],[-13,-1],[-6,28]],[[6956,762],[0,-77]],[[6956,678],[-31,7],[-3,24],[-30,-14],[2,52],[-15,15],[-4,81],[38,-10],[-34,-21],[0,-19],[22,22],[5,-22],[59,2],[4,14]],[[6981,829],[-3,18],[-25,0],[25,37],[3,27],[25,-29]],[[6904,979],[18,32],[-6,21],[28,22],[52,18],[10,-40],[-28,-6],[-9,-33],[15,-31],[-13,-25],[-46,33],[-3,27],[-18,-18]],[[6823,927],[18,6],[7,25],[-12,35],[24,11],[19,-21],[0,-19],[-49,-66],[-7,29]],[[6709,409],[34,-28],[41,-18],[89,-10],[18,-43],[-37,8],[-98,44],[-49,35],[2,12]],[[6799,397],[27,6],[-3,-14],[-24,8]],[[6293,311],[39,-2],[-6,20],[28,21],[35,-14],[-3,-17],[48,1],[29,21],[36,-7],[-157,-48],[-52,-4],[3,29]],[[6117,354],[15,12],[12,-27],[-27,15]],[[7006,883],[-31,52],[12,27],[-18,30],[15,15],[21,-8],[4,33],[-10,41],[-21,3],[-28,42],[-12,-48],[-22,6],[-3,-48],[-40,-1],[-13,-20],[-22,12],[-6,23],[16,14],[-15,14],[-7,-31],[-37,15],[-2,20],[23,-19],[-11,28],[-26,-13],[14,-22],[-4,-99],[25,40],[7,-57],[-1,-48],[-19,1],[-17,36],[2,-40],[-18,13],[-29,-37],[-33,46],[3,-38],[-24,-5],[-23,23],[-25,11],[26,10],[-3,22],[-37,27],[-10,-44],[-12,-12],[7,-28],[27,-17],[2,-27],[-17,-13],[0,-33],[40,-2],[49,-39],[24,-7],[-6,-23],[-30,-32],[-41,13],[-77,-7],[-30,15],[0,-22],[-22,5],[-15,-85],[-13,-28],[15,-46],[-86,7],[-4,-48],[-30,-6],[-12,-23],[-25,66],[-15,-6],[-15,-52],[-44,9],[-16,-19],[7,-22],[-26,15],[-23,-39],[-7,12],[-52,-27],[-35,-30],[-17,15],[-19,43],[3,16],[-31,6],[-21,41],[-50,51],[-25,31],[-33,22],[20,43],[13,5],[16,36],[24,25],[38,-16],[21,15],[2,31],[-14,-37],[-44,15],[-37,-35],[-8,-26],[-23,-14],[-6,-22],[-34,22],[-39,-24],[-37,-4],[-32,29],[-24,-6],[-32,33],[-18,-25],[-68,11],[-61,66],[-57,13],[-61,2],[-65,14],[-116,54],[-32,31],[-78,101],[-20,39],[27,-25],[47,-4],[28,9],[6,27],[28,23],[0,29],[15,40],[34,26],[27,9],[34,61],[15,60],[-18,35],[-27,-3],[-47,22],[-3,49],[-24,37]],[[2523,9986],[31,1],[284,-5],[614,-8],[328,-3]],[[3965,2219],[-27,-42],[17,-33],[-15,-23],[-28,-4],[-71,-27],[-92,-57],[-66,-51],[-49,-51],[-14,16],[33,26],[18,34],[-3,34],[-27,18],[-16,-33],[-55,-32],[-37,26],[-22,-17],[18,-48],[60,-59],[39,-13],[16,12],[71,-2],[-3,-24],[-59,-55],[22,-35],[-1,-26],[23,-51],[54,2],[31,-8],[34,9],[17,23],[18,0],[30,-35],[19,-10],[-64,6],[-31,-15],[-29,-31],[7,-14],[46,-3],[-7,-18],[-64,-4],[-46,11],[-102,-12],[-105,-46],[-72,-56],[-64,-17],[-65,2],[-65,16],[-86,26],[-38,2],[-92,21],[-185,24],[-109,22]],[[927,4747],[-24,15],[-4,27],[13,21],[30,5],[-15,40],[25,33],[7,-16],[29,18],[1,28],[-10,47],[-27,-1],[-3,17],[-52,21],[18,42],[-25,19],[25,35],[18,-22],[10,14],[22,-1],[11,25],[22,2],[27,25],[-27,14],[3,23],[-21,27],[19,2],[-13,41],[-46,12],[-22,43],[28,9],[18,34],[3,31],[-12,20],[-9,52],[24,7],[-12,29],[22,17],[-6,17],[-34,0]],[[7076,5067],[349,2],[315,0],[197,2],[276,0],[40,8],[8,-25],[-14,-68],[-41,-57],[15,-21],[-8,-24],[11,-26],[-30,-2],[12,-35],[-25,0],[-18,-62],[22,-18],[-7,-30],[-24,3],[-13,-60],[16,4],[-6,-41],[-25,13],[3,-21],[-24,-31],[12,-22],[-15,-9],[-13,22],[-3,-31],[-16,0],[-2,-36],[-13,2],[25,-37],[-6,-41],[-22,-8],[21,-14],[-8,-31],[-23,10],[13,-69],[-22,-53],[10,-10]],[[999,9997],[542,-2]],[[5193,4234],[40,-13]],[[4992,9966],[327,-2]],[[4607,5065],[19,-1],[382,0],[481,0]]],"transform":{"scale":[0.0005223357335733576,0.0004094942494249424],"translate":[-94.043352,28.92501]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment