Skip to content

Instantly share code, notes, and snippets.

@jeremybuis
Last active December 16, 2015 08:39
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 jeremybuis/5406962 to your computer and use it in GitHub Desktop.
Save jeremybuis/5406962 to your computer and use it in GitHub Desktop.
An updated spinny map to work with the new api's

A new spinny map for the masses

<!doctype html>
<html class="no-js" lang="en">
<meta charset="utf-8">
<style>
svg {
width: 800px;
height: 800px;
pointer-events: all;
}
circle {
fill: #dbe4f0;
}
path {
fill: #aaa;
stroke: #fff;
}
#header {
top: 7px;
left: 685px;
text-align: right;
width: auto;
}
#header div {
font-size: 12px;
}
.tip { color: #999; }
</style>
<body>
<div id="container">
</div>
<div id="body">
<div id="header">
d3.geo.azimuthal
<div><label for="proj">Projection: </label><select id="proj">
<option value="azimuthalEqualArea">azimuthalEqualArea</option>
<option value="azimuthalEquidistant">azimuthalEquidistant </option>
<option value="gnomonic">gnomonic</option>
<option value="orthographic" selected>orthographic</option>
<option value="stereographic">stereographic</option>
</select></div>
<div class="tip">drag to rotate the origin</div>
<div><label for="animate">animate:</label>
<input id="animate" type="checkbox" checked>
</div>
</div>
</div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
console.log('drawing like a bauss');
var width = 800;
var height = 800;
var feature, // eventually: all svg paths (countries) of the world
toggle; // animation on/off control
var scale = {
orthographic: 380,
stereographic: 380,
gnomonic: 380,
azimuthalEquidistant: 380 / Math.PI * 2,
azimuthalEqualArea: 380 / Math.SQRT2
};
var clipAngle = {
orthographic: 90,
stereographic: 90,
gnomonic: 80,
azimuthalEquidistant: 90,
azimuthalEqualArea: 90
};
// var clipAngle = {
// orthographic: 90,
// stereographic: 170,
// gnomonic: 80,
// azimuthalEquidistant: 180 - 1e-3,
// azimuthalEqualArea: 180 - 1e-3
// };
var projections = {
orthographic: d3.geo.orthographic().translate([width/2, height/2]).scale(scale.orthographic).clipAngle(clipAngle.orthographic),
stereographic: d3.geo.stereographic().translate([width/2, height/2]).scale(scale.stereographic).clipAngle(clipAngle.stereographic),
gnomonic: d3.geo.gnomonic().translate([width/2, height/2]).scale(scale.gnomonic).clipAngle(clipAngle.gnomonic),
azimuthalEquidistant: d3.geo.azimuthalEquidistant().translate([width/2, height/2]).scale(scale.azimuthalEquidistant).clipAngle(clipAngle.azimuthalEquidistant),
azimuthalEqualArea: d3.geo.azimuthalEqualArea().translate([width/2, height/2]).scale(scale.azimuthalEqualArea).clipAngle(clipAngle.azimuthalEqualArea)
};
var projection = projections.orthographic;
var path = d3.geo.path()
.projection(projection);
var svg = d3.select("#body").append("svg:svg")
.attr("width", width)
.attr("height", height)
.on("mousedown", mousedown);
if (frameElement) {
frameElement.style.height = '800px';
}
d3.json("/jeremybuis/raw/5406962/world-50m.json", function(error, world) {
var collection = topojson.feature(world, world.objects.subunits).features;
feature = svg.selectAll("path")
.data(collection)
.enter().append("svg:path")
.attr("d", clip);
feature.append("svg:title")
.text(function(d) { return d.properties.name; });
startAnimation();
d3.select('#animate').on('click', function () {
if (done) {
startAnimation();
} else {
stopAnimation();
}
});
});
function stopAnimation() {
done = true;
d3.select('#animate').node().checked = false;
}
function startAnimation() {
done = false;
d3.timer(function() {
var origin = projection.center();
var rotation = projection.rotate();
rotation = [rotation[0] + 0.18, rotation[1] + 0.06];
projection.rotate(rotation);
refresh();
return done;
});
}
function animationState() {
return 'animation: '+ (done ? 'off' : 'on');
}
d3.select(window)
.on("mousemove", mousemove)
.on("mouseup", mouseup);
d3.select("select").on("change", function() {
stopAnimation();
projection = projections[this.value];
path.projection(projection);
// projection.mode(this.value).scale(scale[this.value]);
refresh(750);
});
var m0, o0, done;
function mousedown() {
stopAnimation();
m0 = [d3.event.pageX, d3.event.pageY];
o0 = projection.rotate();
d3.event.preventDefault();
}
function mousemove() {
if (m0) {
var m1 = [d3.event.pageX, d3.event.pageY],
// o1 = [-1 * (o0[0] + (m0[0] - m1[0]) / 8), -1 * (o0[1] + (m1[1] - m0[1]) / 8)];
o1 = [(o0[0] + (m0[0] - m1[0]) / 8), (o0[1] + (m1[1] - m0[1]) / 8)];
projection.rotate(o1);
refresh();
}
}
function mouseup() {
if (m0) {
mousemove();
m0 = null;
}
}
function refresh(duration) {
(duration ? feature.transition().duration(duration) : feature).attr("d", clip);
}
function clip(d) {
return path(d);
}
function reframe(css) {
for (var name in css) {
frameElement.style[name] = css[name] + 'px';
}
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.036003600360036005,0.017361589674592462],"translate":[-180,-89.99892578124998]},"objects":{"subunits":{"type":"GeometryCollection","geometries":[{"type":null,"id":"ABW","properties":{"name":"Aruba"}},{"type":null,"id":"ACA","properties":{"name":"Antigua"}},{"type":null,"id":"ACB","properties":{"name":"Barbuda"}},{"type":"Polygon","arcs":[[0,1,2,3,4,5]],"id":"AFG","properties":{"name":"Afghanistan"}},{"type":"MultiPolygon","arcs":[[[6,7,8,9]],[[10,11,12]]],"id":"AGO","properties":{"name":"Angola"}},{"type":null,"id":"AIA","properties":{"name":"Anguilla"}},{"type":"Polygon","arcs":[[13,14,15,16,17]],"id":"ALB","properties":{"name":"Albania"}},{"type":"MultiPolygon","arcs":[],"id":"ALD","properties":{"name":"Aland"}},{"type":null,"id":"AND","properties":{"name":"Andorra"}},{"type":"MultiPolygon","arcs":[[[18,19,20,21,22],[23]]],"id":"ARE","properties":{"name":"United Arab Emirates"}},{"type":"MultiPolygon","arcs":[[[24]],[[25,26]],[[27,28,29,30,31,32]]],"id":"ARG","properties":{"name":"Argentina"}},{"type":"MultiPolygon","arcs":[[[33,34,35,36,37],[38]]],"id":"ARM","properties":{"name":"Armenia"}},{"type":null,"id":"ASM","properties":{"name":"American Samoa"}},{"type":"MultiPolygon","arcs":[[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]]],"id":"ATB","properties":{"name":"Antarctica"}},{"type":null,"id":"ATC","properties":{"name":"Ashmore and Cartier Is."}},{"type":"MultiPolygon","arcs":[[[74]]],"id":"ATF","properties":{"name":"Fr. S. Antarctic Lands"}},{"type":null,"id":"ATP","properties":{"name":"Peter I I."}},{"type":null,"id":"ATS","properties":{"name":"S. Orkney Is."}},{"type":"MultiPolygon","arcs":[[[75]],[[76]],[[77]]],"id":"AUA","properties":{"name":"Tasmania"}},{"type":null,"id":"AUM","properties":{"name":"Macquarie I."}},{"type":"MultiPolygon","arcs":[[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]]],"id":"AUS","properties":{"name":"Australia"}},{"type":"Polygon","arcs":[[86,87,88,89,90,91,92,93,94]],"id":"AUT","properties":{"name":"Austria"}},{"type":"MultiPolygon","arcs":[[[95,96,-35]],[[97,98,-38,99,100],[-102]]],"id":"AZE","properties":{"name":"Azerbaijan"}},{"type":null,"id":"BAC","properties":{"name":"Ascension"}},{"type":null,"id":"BCR","properties":{"name":"Brussels"}},{"type":"Polygon","arcs":[[102,103,104]],"id":"BDI","properties":{"name":"Burundi"}},{"type":"Polygon","arcs":[[105,106,107,108,109]],"id":"BEN","properties":{"name":"Benin"}},{"type":"Polygon","arcs":[[110,-109,111,112,113,114]],"id":"BFA","properties":{"name":"Burkina Faso"}},{"type":"MultiPolygon","arcs":[[[115,116,117,118,119,120,121],[-123]]],"id":"BFR","properties":{"name":"Flemish"}},{"type":"MultiPolygon","arcs":[[[123]],[[124,125,126,127]]],"id":"BGD","properties":{"name":"Bangladesh"}},{"type":"Polygon","arcs":[[128,129,130,131,132,133]],"id":"BGR","properties":{"name":"Bulgaria"}},{"type":"MultiPolygon","arcs":[[[134,135,136,137]]],"id":"BHF","properties":{"name":"Fed. of Bos. & Herz."}},{"type":null,"id":"BHR","properties":{"name":"Bahrain"}},{"type":"MultiPolygon","arcs":[[[138]],[[139]],[[140]],[[141]],[[142]],[[143]]],"id":"BHS","properties":{"name":"Bahamas"}},{"type":"Polygon","arcs":[[-145,145,146,147,148,149,-138,150]],"id":"BIS","properties":{"name":"Rep. Srpska"}},{"type":null,"id":"BLM","properties":{"name":"St-Barthélemy"}},{"type":"Polygon","arcs":[[151,152,153,154,155]],"id":"BLR","properties":{"name":"Belarus"}},{"type":"MultiPolygon","arcs":[[[156,157,158]]],"id":"BLZ","properties":{"name":"Belize"}},{"type":null,"id":"BMU","properties":{"name":"Bermuda"}},{"type":"Polygon","arcs":[[159,-33,160,161,162]],"id":"BOL","properties":{"name":"Bolivia"}},{"type":"MultiPolygon","arcs":[[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169,170,171,172,-29,173,-163,174,175,176,177]]],"id":"BRA","properties":{"name":"Brazil"}},{"type":null,"id":"BRB","properties":{"name":"Barbados"}},{"type":"MultiPolygon","arcs":[[[178]],[[179,180]]],"id":"BRN","properties":{"name":"Brunei"}},{"type":"Polygon","arcs":[[181,182]],"id":"BTN","properties":{"name":"Bhutan"}},{"type":"Polygon","arcs":[[183,184,185]],"id":"BWA","properties":{"name":"Botswana"}},{"type":"MultiPolygon","arcs":[[[186,187,-116,188,-190,190,191]]],"id":"BWR","properties":{"name":"Walloon"}},{"type":"Polygon","arcs":[[192,193,194,195,196,197]],"id":"CAF","properties":{"name":"Central African Rep."}},{"type":"MultiPolygon","arcs":[[[198]],[[199]],[[200]],[[201,202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229,230,231,232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]]],"id":"CAN","properties":{"name":"Canada"}},{"type":"MultiPolygon","arcs":[],"id":"CCK","properties":{"name":"Cocos Is."}},{"type":"Polygon","arcs":[[-93,261,-91,262,263,264]],"id":"CHE","properties":{"name":"Switzerland"}},{"type":"Polygon","arcs":[[265]],"id":"CHH","properties":{"name":"Hainan"}},{"type":"MultiPolygon","arcs":[[[266]],[[267,268,269,270,271,272,273,274,275,276,-183,277,278,279,280,281,282,283,-1,284,285,286,287,288,289]]],"id":"CHI","properties":{"name":"China"}},{"type":"MultiPolygon","arcs":[[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[-26,296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[-32,307,308,-161]]],"id":"CHL","properties":{"name":"Chile"}},{"type":null,"id":"CHP","properties":{"name":"Easter I."}},{"type":null,"id":"CHS","properties":{"name":"Isla Sala y Gomez"}},{"type":"MultiPolygon","arcs":[[[-114,309,310,311,312,313]]],"id":"CIV","properties":{"name":"Côte d'Ivoire"}},{"type":"Polygon","arcs":[[-197,314,315,316,317,318,319]],"id":"CMR","properties":{"name":"Cameroon"}},{"type":"Polygon","arcs":[[320,321,322,-104,323,324,-10,325,-13,326,-195]],"id":"COD","properties":{"name":"Dem. Rep. Congo"}},{"type":"Polygon","arcs":[[-327,-12,327,328,-315,-196]],"id":"COG","properties":{"name":"Congo"}},{"type":null,"id":"COK","properties":{"name":"Cook Is."}},{"type":"MultiPolygon","arcs":[[[329,-176,330,331,332,333,334]]],"id":"COL","properties":{"name":"Colombia"}},{"type":"MultiPolygon","arcs":[[[335]],[[336]]],"id":"COM","properties":{"name":"Comoros"}},{"type":"MultiPolygon","arcs":[[[337]],[[338]]],"id":"CPV","properties":{"name":"Cape Verde"}},{"type":"Polygon","arcs":[[339,340,341,342]],"id":"CRI","properties":{"name":"Costa Rica"}},{"type":"MultiPolygon","arcs":[[[343]],[[344]]],"id":"CUB","properties":{"name":"Cuba"}},{"type":null,"id":"CUW","properties":{"name":"Curaçao"}},{"type":null,"id":"CXR","properties":{"name":"Christmas I."}},{"type":"MultiPolygon","arcs":[],"id":"CYM","properties":{"name":"Cayman Is."}},{"type":"Polygon","arcs":[[345,346]],"id":"CYN","properties":{"name":"N. Cyprus"}},{"type":"Polygon","arcs":[[347,-347]],"id":"CYP","properties":{"name":"Cyprus"}},{"type":"Polygon","arcs":[[348,349,-95,350]],"id":"CZE","properties":{"name":"Czech Rep."}},{"type":"MultiPolygon","arcs":[[[351]],[[352,353,-351,-94,-265,354,355,-192,356,357,358]]],"id":"DEU","properties":{"name":"Germany"}},{"type":"Polygon","arcs":[[359,360,361,362]],"id":"DJI","properties":{"name":"Djibouti"}},{"type":"Polygon","arcs":[[363]],"id":"DMA","properties":{"name":"Dominica"}},{"type":"Polygon","arcs":[[364]],"id":"DNB","properties":{"name":"Bornholm"}},{"type":"MultiPolygon","arcs":[[[365]],[[366]],[[367]],[[-359,368]]],"id":"DNK","properties":{"name":"Denmark"}},{"type":"Polygon","arcs":[[369,370]],"id":"DOM","properties":{"name":"Dominican Rep."}},{"type":"Polygon","arcs":[[371,372,373,374,375,376,377,378]],"id":"DZA","properties":{"name":"Algeria"}},{"type":"MultiPolygon","arcs":[[[379]],[[380,381,-332]]],"id":"ECD","properties":{"name":"Ecuador"}},{"type":"MultiPolygon","arcs":[[[382]],[[383]]],"id":"ECG","properties":{"name":"Galápagos Is."}},{"type":"Polygon","arcs":[[384,385,386,387,388,389]],"id":"EGY","properties":{"name":"Egypt"}},{"type":"MultiPolygon","arcs":[[[390,391,392,393]]],"id":"ENG","properties":{"name":"England"}},{"type":"MultiPolygon","arcs":[[[394,-361,395,396]]],"id":"ERI","properties":{"name":"Eritrea"}},{"type":"MultiPolygon","arcs":[[[397]],[[398]],[[399]],[[400]],[[401]]],"id":"ESC","properties":{"name":"Canary Is."}},{"type":"MultiPolygon","arcs":[[[402]],[[403]]],"id":"ESI","properties":{"name":"Balearic Is."}},{"type":"MultiPolygon","arcs":[[[404]],[[405]],[[406,407,408]]],"id":"EST","properties":{"name":"Estonia"}},{"type":"Polygon","arcs":[[-410,410,411,412,413,414]],"id":"ESX","properties":{"name":"Spain"}},{"type":"Polygon","arcs":[[-360,415,416,417,418,419,-396]],"id":"ETH","properties":{"name":"Ethiopia"}},{"type":"MultiPolygon","arcs":[[[420,421,422,423]]],"id":"FIN","properties":{"name":"Finland"}},{"type":"MultiPolygon","arcs":[[[424]],[[425]]],"id":"FJI","properties":{"name":"Fiji"}},{"type":"MultiPolygon","arcs":[[[426]],[[427]]],"id":"FLK","properties":{"name":"Falkland Is."}},{"type":"MultiPolygon","arcs":[[[428]]],"id":"FRO","properties":{"name":"Faeroe Is."}},{"type":"MultiPolygon","arcs":[],"id":"FSM","properties":{"name":"Micronesia"}},{"type":"Polygon","arcs":[[429]],"id":"FXC","properties":{"name":"Corsica"}},{"type":"MultiPolygon","arcs":[[[-431,-117,-188,431,-355,-264,432,433,434,435,-411,-437,-415,437,-119]]],"id":"FXX","properties":{"name":"France"}},{"type":"Polygon","arcs":[[-329,438,439,-316]],"id":"GAB","properties":{"name":"Gabon"}},{"type":null,"id":"GAZ","properties":{"name":"Gaza"}},{"type":"Polygon","arcs":[[-100,-37,440,441,442]],"id":"GEG","properties":{"name":"Georgia"}},{"type":null,"id":"GGY","properties":{"name":"Guernsey"}},{"type":"Polygon","arcs":[[443,444,-446,446,-310,-113]],"id":"GHA","properties":{"name":"Ghana"}},{"type":"Polygon","arcs":[[447,-313,448,449,450,451,452]],"id":"GIN","properties":{"name":"Guinea"}},{"type":"MultiPolygon","arcs":[[[453]]],"id":"GLP","properties":{"name":"Guadeloupe"}},{"type":"Polygon","arcs":[[454,455]],"id":"GMB","properties":{"name":"Gambia"}},{"type":"MultiPolygon","arcs":[[[456,457,-452]]],"id":"GNB","properties":{"name":"Guinea-Bissau"}},{"type":"Polygon","arcs":[[458]],"id":"GNK","properties":{"name":"Bioko"}},{"type":"Polygon","arcs":[[-440,459,-317]],"id":"GNR","properties":{"name":"Río Muni"}},{"type":"MultiPolygon","arcs":[[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468,-16,469,-131,470]]],"id":"GRC","properties":{"name":"Greece"}},{"type":null,"id":"GRD","properties":{"name":"Grenada"}},{"type":"MultiPolygon","arcs":[[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]]],"id":"GRL","properties":{"name":"Greenland"}},{"type":"Polygon","arcs":[[-157,479,480,481,482,483]],"id":"GTM","properties":{"name":"Guatemala"}},{"type":"Polygon","arcs":[[484,485,-171]],"id":"GUF","properties":{"name":"French Guiana"}},{"type":"Polygon","arcs":[[486]],"id":"GUM","properties":{"name":"Guam"}},{"type":"Polygon","arcs":[[-178,487,488,489]],"id":"GUY","properties":{"name":"Guyana"}},{"type":"MultiPolygon","arcs":[],"id":"HKG","properties":{"name":"Hong Kong"}},{"type":null,"id":"HMD","properties":{"name":"Heard I. and McDonald Is."}},{"type":"MultiPolygon","arcs":[[[490,491,492,-481,493]]],"id":"HND","properties":{"name":"Honduras"}},{"type":"MultiPolygon","arcs":[[[494,-146,-496,-151,-137,496,497,498]]],"id":"HRV","properties":{"name":"Croatia"}},{"type":"MultiPolygon","arcs":[[[-371,499]]],"id":"HTI","properties":{"name":"Haiti"}},{"type":"Polygon","arcs":[[500,501,502,-499,503,-88,504]],"id":"HUN","properties":{"name":"Hungary"}},{"type":"MultiPolygon","arcs":[[[505]],[[506]],[[507,508,509,510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]],[[546]],[[547,548]],[[549]],[[550]],[[551]],[[552]],[[553]],[[554]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566,567]],[[568]],[[569]]],"id":"IDN","properties":{"name":"Indonesia"}},{"type":null,"id":"IMN","properties":{"name":"Isle of Man"}},{"type":"MultiPolygon","arcs":[[[570]]],"id":"INA","properties":{"name":"Andaman Is."}},{"type":"MultiPolygon","arcs":[],"id":"INL","properties":{"name":"Lakshadweep"}},{"type":"MultiPolygon","arcs":[[[571]]],"id":"INN","properties":{"name":"Nicobar Is."}},{"type":"Polygon","arcs":[[572,573,574,-278,-182,-277,575,-128,576,577,578,579]],"id":"INX","properties":{"name":"India"}},{"type":null,"id":"IOD","properties":{"name":"Diego Garcia NSF"}},{"type":"MultiPolygon","arcs":[[[580,581]]],"id":"IRL","properties":{"name":"Ireland"}},{"type":"MultiPolygon","arcs":[[[582]],[[-34,-99,583,584,585,586,587,588,589,590,-96]]],"id":"IRN","properties":{"name":"Iran"}},{"type":"Polygon","arcs":[[-590,591,592,593,594,595,596]],"id":"IRQ","properties":{"name":"Iraq"}},{"type":"Polygon","arcs":[[597]],"id":"ISL","properties":{"name":"Iceland"}},{"type":"Polygon","arcs":[[598,599,600,601,-385,-603,603,604,605]],"id":"ISR","properties":{"name":"Israel"}},{"type":"MultiPolygon","arcs":[[[606]]],"id":"ITD","properties":{"name":"Sardinia"}},{"type":null,"id":"ITP","properties":{"name":"Pantelleria"}},{"type":"MultiPolygon","arcs":[[[607,608,-433,-263,-90],[609]]],"id":"ITX","properties":{"name":"Italy"}},{"type":"Polygon","arcs":[[610]],"id":"ITY","properties":{"name":"Sicily"}},{"type":"Polygon","arcs":[[611]],"id":"JAM","properties":{"name":"Jamaica"}},{"type":null,"id":"JEY","properties":{"name":"Jersey"}},{"type":"Polygon","arcs":[[612,613,-601,614,-599,615,-595]],"id":"JOR","properties":{"name":"Jordan"}},{"type":null,"id":"JPB","properties":{"name":"Bonin Is."}},{"type":"Polygon","arcs":[[616]],"id":"JPH","properties":{"name":"Honshu"}},{"type":null,"id":"JPI","properties":{"name":"Izu-shoto"}},{"type":"Polygon","arcs":[[617]],"id":"JPK","properties":{"name":"Hokkaido"}},{"type":"MultiPolygon","arcs":[[[618]],[[619]]],"id":"JPN","properties":{"name":"Japan"}},{"type":"MultiPolygon","arcs":[[[620]],[[621]]],"id":"JPO","properties":{"name":"Nansei-shoto"}},{"type":"Polygon","arcs":[[622]],"id":"JPS","properties":{"name":"Shikoku"}},{"type":"Polygon","arcs":[[623]],"id":"JPY","properties":{"name":"Kyushu"}},{"type":"Polygon","arcs":[[-579,624,-283]],"id":"KAS","properties":{"name":"Siachen Glacier"}},{"type":"MultiPolygon","arcs":[[[-287,625,626,627,628,629,630]]],"id":"KAZ","properties":{"name":"Kazakhstan"}},{"type":"MultiPolygon","arcs":[[[631,632,633,634,635,-418]]],"id":"KEN","properties":{"name":"Kenya"}},{"type":"Polygon","arcs":[[-286,636,637,-626],[638],[639],[640]],"id":"KGZ","properties":{"name":"Kyrgyzstan"}},{"type":"MultiPolygon","arcs":[[[641,642,643,644]]],"id":"KHM","properties":{"name":"Cambodia"}},{"type":"MultiPolygon","arcs":[],"id":"KIR","properties":{"name":"Kiribati"}},{"type":"MultiPolygon","arcs":[],"id":"KNA","properties":{"name":"St. Kitts and Nevis"}},{"type":"Polygon","arcs":[[645]],"id":"KOJ","properties":{"name":"Jejudo"}},{"type":"MultiPolygon","arcs":[[[646,647]]],"id":"KOR","properties":{"name":"Korea"}},{"type":"Polygon","arcs":[[648,-14,649,650]],"id":"KOS","properties":{"name":"Kosovo"}},{"type":null,"id":"KOU","properties":{"name":"Ulleungdo"}},{"type":"MultiPolygon","arcs":[[[651,-593,652]]],"id":"KWT","properties":{"name":"Kuwait"}},{"type":"Polygon","arcs":[[653,-644,654,655,-275]],"id":"LAO","properties":{"name":"Lao PDR"}},{"type":"Polygon","arcs":[[-605,656,657]],"id":"LBN","properties":{"name":"Lebanon"}},{"type":"Polygon","arcs":[[-312,658,659,-449]],"id":"LBR","properties":{"name":"Liberia"}},{"type":"Polygon","arcs":[[660,661,662,-372,663,664,-388]],"id":"LBY","properties":{"name":"Libya"}},{"type":null,"id":"LCA","properties":{"name":"Saint Lucia"}},{"type":null,"id":"LIE","properties":{"name":"Liechtenstein"}},{"type":"MultiPolygon","arcs":[[[665]]],"id":"LKA","properties":{"name":"Sri Lanka"}},{"type":"Polygon","arcs":[[666]],"id":"LSO","properties":{"name":"Lesotho"}},{"type":"MultiPolygon","arcs":[[[-155,667,668,669,670]]],"id":"LTU","properties":{"name":"Lithuania"}},{"type":"Polygon","arcs":[[-356,-432,-187]],"id":"LUX","properties":{"name":"Luxembourg"}},{"type":"Polygon","arcs":[[671,-156,-671,672,-408]],"id":"LVA","properties":{"name":"Latvia"}},{"type":null,"id":"MAC","properties":{"name":"Macao"}},{"type":null,"id":"MAF","properties":{"name":"St-Martin"}},{"type":"Polygon","arcs":[[-377,673,674]],"id":"MAR","properties":{"name":"Morocco"}},{"type":null,"id":"MCO","properties":{"name":"Monaco"}},{"type":"Polygon","arcs":[[675,676]],"id":"MDA","properties":{"name":"Moldova"}},{"type":"MultiPolygon","arcs":[[[677]]],"id":"MDG","properties":{"name":"Madagascar"}},{"type":"MultiPolygon","arcs":[],"id":"MDV","properties":{"name":"Maldives"}},{"type":"MultiPolygon","arcs":[[[678]],[[679]],[[680,-158,-484,681,682]]],"id":"MEX","properties":{"name":"Mexico"}},{"type":"MultiPolygon","arcs":[],"id":"MHL","properties":{"name":"Marshall Is."}},{"type":"Polygon","arcs":[[-132,-470,-15,-649,683]],"id":"MKD","properties":{"name":"Macedonia"}},{"type":"Polygon","arcs":[[684,-115,-314,-448,685,686,-374]],"id":"MLI","properties":{"name":"Mali"}},{"type":"MultiPolygon","arcs":[],"id":"MLT","properties":{"name":"Malta"}},{"type":"MultiPolygon","arcs":[[[687]],[[-656,688,689,-125,-576,-276]]],"id":"MMR","properties":{"name":"Myanmar"}},{"type":"Polygon","arcs":[[690,-650,-18,691,-693,-149]],"id":"MNE","properties":{"name":"Montenegro"}},{"type":"Polygon","arcs":[[-289,693]],"id":"MNG","properties":{"name":"Mongolia"}},{"type":"MultiPolygon","arcs":[],"id":"MNP","properties":{"name":"N. Mariana Is."}},{"type":"Polygon","arcs":[[694,695,696,697,698,699,700,701],[702],[703]],"id":"MOZ","properties":{"name":"Mozambique"}},{"type":"MultiPolygon","arcs":[[[704,705,706,-375,-687]]],"id":"MRT","properties":{"name":"Mauritania"}},{"type":null,"id":"MSR","properties":{"name":"Montserrat"}},{"type":"Polygon","arcs":[[707]],"id":"MTQ","properties":{"name":"Martinique"}},{"type":"Polygon","arcs":[[708]],"id":"MUS","properties":{"name":"Mauritius"}},{"type":"MultiPolygon","arcs":[[[-699,709,710]]],"id":"MWI","properties":{"name":"Malawi"}},{"type":"MultiPolygon","arcs":[[[711,712]],[[-568,713,-180,714,715]]],"id":"MYS","properties":{"name":"Malaysia"}},{"type":null,"id":"MYT","properties":{"name":"Mayotte"}},{"type":"Polygon","arcs":[[716,-186,717,718,-8]],"id":"NAM","properties":{"name":"Namibia"}},{"type":"MultiPolygon","arcs":[[[719]],[[720]]],"id":"NCL","properties":{"name":"New Caledonia"}},{"type":"Polygon","arcs":[[721,722,-110,-111,-685,-373,-663]],"id":"NER","properties":{"name":"Niger"}},{"type":null,"id":"NFK","properties":{"name":"Norfolk Island"}},{"type":"MultiPolygon","arcs":[[[723,-319,724,-106,-723]]],"id":"NGA","properties":{"name":"Nigeria"}},{"type":"Polygon","arcs":[[725,-343,726,-491]],"id":"NIC","properties":{"name":"Nicaragua"}},{"type":"Polygon","arcs":[[727,-582]],"id":"NIR","properties":{"name":"N. Ireland"}},{"type":null,"id":"NIU","properties":{"name":"Niue"}},{"type":null,"id":"NJM","properties":{"name":"Jan Mayen I."}},{"type":"MultiPolygon","arcs":[[[-121,728]],[[729,-357,-191,189,-189,-122]]],"id":"NLD","properties":{"name":"Netherlands"}},{"type":null,"id":"NLY","properties":{"name":"Caribbean Netherlands"}},{"type":"MultiPolygon","arcs":[[[730]],[[731]],[[732]],[[733]],[[734]],[[735,-424,736,737]]],"id":"NOR","properties":{"name":"Norway"}},{"type":"Polygon","arcs":[[-575,-279]],"id":"NPL","properties":{"name":"Nepal"}},{"type":null,"id":"NRU","properties":{"name":"Nauru"}},{"type":"MultiPolygon","arcs":[[[738]],[[739]],[[740]]],"id":"NSV","properties":{"name":"Svalbard Is."}},{"type":"MultiPolygon","arcs":[],"id":"NZA","properties":{"name":"N.Z. SubAntarctic Is."}},{"type":"MultiPolygon","arcs":[],"id":"NZC","properties":{"name":"Chatham Is."}},{"type":"MultiPolygon","arcs":[[[741]]],"id":"NZN","properties":{"name":"North I."}},{"type":"MultiPolygon","arcs":[[[742]],[[743]]],"id":"NZS","properties":{"name":"South I."}},{"type":"MultiPolygon","arcs":[[[744]],[[745,746,747,-20]],[[-23,748]]],"id":"OMN","properties":{"name":"Oman"}},{"type":"Polygon","arcs":[[-625,-578,749,-588,-2,-284]],"id":"PAK","properties":{"name":"Pakistan"}},{"type":"MultiPolygon","arcs":[[[750]],[[-334,751,-341,752]]],"id":"PAN","properties":{"name":"Panama"}},{"type":"MultiPolygon","arcs":[],"id":"PAZ","properties":{"name":"Azores"}},{"type":null,"id":"PCN","properties":{"name":"Pitcairn Is."}},{"type":"Polygon","arcs":[[-175,-162,-309,753,-381,-331]],"id":"PER","properties":{"name":"Peru"}},{"type":"MultiPolygon","arcs":[[[754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761]],[[762]],[[763]],[[764]],[[765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]]],"id":"PHL","properties":{"name":"Philippines"}},{"type":"MultiPolygon","arcs":[],"id":"PLW","properties":{"name":"Palau"}},{"type":"Polygon","arcs":[[772]],"id":"PMD","properties":{"name":"Madeira"}},{"type":"MultiPolygon","arcs":[[[773]],[[774]]],"id":"PNB","properties":{"name":"Bougainville"}},{"type":"MultiPolygon","arcs":[[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781,782,783]],[[784]],[[785]],[[786]]],"id":"PNX","properties":{"name":"Papua New Guinea"}},{"type":"Polygon","arcs":[[-668,-154,787,788,-349,-354,789,-791,791,792]],"id":"POL","properties":{"name":"Poland"}},{"type":"MultiPolygon","arcs":[[[793]]],"id":"PRI","properties":{"name":"Puerto Rico"}},{"type":"MultiPolygon","arcs":[[[794,795,-648,796,-268]]],"id":"PRK","properties":{"name":"Dem. Rep. Korea"}},{"type":"Polygon","arcs":[[797,-413]],"id":"PRX","properties":{"name":"Portugal"}},{"type":"Polygon","arcs":[[-174,-28,-160]],"id":"PRY","properties":{"name":"Paraguay"}},{"type":"MultiPolygon","arcs":[[[798]]],"id":"PYF","properties":{"name":"Fr. Polynesia"}},{"type":"Polygon","arcs":[[799,800]],"id":"QAT","properties":{"name":"Qatar"}},{"type":"Polygon","arcs":[[801]],"id":"REU","properties":{"name":"Reunion"}},{"type":"Polygon","arcs":[[802,803,-134,804,805,-502,806,-676]],"id":"ROU","properties":{"name":"Romania"}},{"type":"MultiPolygon","arcs":[[[807]],[[808]],[[809]],[[810]],[[811]],[[812]],[[813]],[[814]],[[815]],[[816]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[-795,-290,-694,-288,-631,829,830]],[[831]],[[832]],[[833]],[[834]]],"id":"RUA","properties":{"name":"Russia"}},{"type":"MultiPolygon","arcs":[[[835]],[[-830,-630,836,-101,-443,837,838,-152,-672,-407,839,-421,-736,840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]]],"id":"RUE","properties":{"name":"Russia"}},{"type":"Polygon","arcs":[[854,-669,-793,855,-857]],"id":"RUK","properties":{"name":"Kaliningrad"}},{"type":"Polygon","arcs":[[857,-105,-323,858]],"id":"RWA","properties":{"name":"Rwanda"}},{"type":"Polygon","arcs":[[-707,859,-674,-376]],"id":"SAH","properties":{"name":"W. Sahara"}},{"type":"MultiPolygon","arcs":[[[-652,860,-801,861,-21,-748,862,863,-613,-594]]],"id":"SAU","properties":{"name":"Saudi Arabia"}},{"type":"MultiPolygon","arcs":[[[864]],[[865]],[[866]],[[867]],[[-393,868]],[[869]]],"id":"SCT","properties":{"name":"Scotland"}},{"type":"Polygon","arcs":[[870,-397,-420,871,-193,872,-661,-387]],"id":"SDN","properties":{"name":"Sudan"}},{"type":"Polygon","arcs":[[-419,-636,873,-321,-194,-872]],"id":"SDS","properties":{"name":"S. Sudan"}},{"type":"Polygon","arcs":[[-686,-453,-458,874,-456,875,-705]],"id":"SEN","properties":{"name":"Senegal"}},{"type":"Polygon","arcs":[[876]],"id":"SGG","properties":{"name":"S. Georgia"}},{"type":null,"id":"SGP","properties":{"name":"Singapore"}},{"type":null,"id":"SGX","properties":{"name":"S. Sandwich Is."}},{"type":null,"id":"SHN","properties":{"name":"Saint Helena"}},{"type":"MultiPolygon","arcs":[[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]]],"id":"SLB","properties":{"name":"Solomon Is."}},{"type":"MultiPolygon","arcs":[[[887]],[[-660,888,-450]]],"id":"SLE","properties":{"name":"Sierra Leone"}},{"type":"Polygon","arcs":[[-493,889,-482]],"id":"SLV","properties":{"name":"El Salvador"}},{"type":null,"id":"SMR","properties":{"name":"San Marino"}},{"type":"Polygon","arcs":[[-416,-363,890,891]],"id":"SOL","properties":{"name":"Somaliland"}},{"type":"Polygon","arcs":[[-417,-892,892,-632]],"id":"SOM","properties":{"name":"Somalia"}},{"type":"MultiPolygon","arcs":[],"id":"SPM","properties":{"name":"St. Pierre and Miquelon"}},{"type":"Polygon","arcs":[[-805,-133,-684,-651,-691,-148,893]],"id":"SRS","properties":{"name":"Serbia"}},{"type":"Polygon","arcs":[[-806,-894,-147,-495,-503]],"id":"SRV","properties":{"name":"Vojvodina"}},{"type":null,"id":"STA","properties":{"name":"Principe"}},{"type":"Polygon","arcs":[[894]],"id":"STS","properties":{"name":"Sao Tome"}},{"type":"Polygon","arcs":[[-170,-490,895,-485]],"id":"SUR","properties":{"name":"Suriname"}},{"type":"Polygon","arcs":[[896,-505,-87,-350,-789]],"id":"SVK","properties":{"name":"Slovakia"}},{"type":"Polygon","arcs":[[-498,897,-608,-89,-504]],"id":"SVN","properties":{"name":"Slovenia"}},{"type":"MultiPolygon","arcs":[[[898]],[[899]],[[900,-737,-423]]],"id":"SWE","properties":{"name":"Sweden"}},{"type":"Polygon","arcs":[[-695,901]],"id":"SWZ","properties":{"name":"Swaziland"}},{"type":null,"id":"SXM","properties":{"name":"Sint Maarten"}},{"type":null,"id":"SYC","properties":{"name":"Seychelles"}},{"type":"Polygon","arcs":[[-596,-616,-606,-658,902,903]],"id":"SYR","properties":{"name":"Syria"}},{"type":"MultiPolygon","arcs":[],"id":"TCA","properties":{"name":"Turks and Caicos Is."}},{"type":"Polygon","arcs":[[-873,-198,-320,-724,-722,-662]],"id":"TCD","properties":{"name":"Chad"}},{"type":"Polygon","arcs":[[-108,904,-444,-112]],"id":"TGO","properties":{"name":"Togo"}},{"type":"MultiPolygon","arcs":[[[-655,905,906,-713,907,-689]]],"id":"THA","properties":{"name":"Thailand"}},{"type":"MultiPolygon","arcs":[[[-637,-285,-6,908]]],"id":"TJK","properties":{"name":"Tajikistan"}},{"type":"MultiPolygon","arcs":[],"id":"TKL","properties":{"name":"Tokelau"}},{"type":"MultiPolygon","arcs":[[[-4,-585,909,-628,910]]],"id":"TKM","properties":{"name":"Turkmenistan"}},{"type":"Polygon","arcs":[[911,-509]],"id":"TLP","properties":{"name":"Pante Makasar"}},{"type":"MultiPolygon","arcs":[[[-511,912]]],"id":"TLX","properties":{"name":"Timor-Leste"}},{"type":"MultiPolygon","arcs":[],"id":"TON","properties":{"name":"Tonga"}},{"type":"Polygon","arcs":[[913]],"id":"TTD","properties":{"name":"Trinidad"}},{"type":null,"id":"TTG","properties":{"name":"Tobago"}},{"type":"MultiPolygon","arcs":[[[-664,-379,914]]],"id":"TUN","properties":{"name":"Tunisia"}},{"type":"MultiPolygon","arcs":[[[-441,-36,-97,-591,-597,-904,915]],[[916,-471,-130]]],"id":"TUR","properties":{"name":"Turkey"}},{"type":"MultiPolygon","arcs":[[[917]]],"id":"TWN","properties":{"name":"Taiwan"}},{"type":"MultiPolygon","arcs":[[[-634,918,-700,-711,919,-324,-103,-858,920]]],"id":"TZA","properties":{"name":"Tanzania"}},{"type":"MultiPolygon","arcs":[[[921]],[[922]]],"id":"TZZ","properties":{"name":"Zanzibar"}},{"type":"Polygon","arcs":[[-921,-859,-322,-874,-635]],"id":"UGA","properties":{"name":"Uganda"}},{"type":"MultiPolygon","arcs":[[[923,-803,-677,-807,-501,-897,-788,-153,-839]]],"id":"UKR","properties":{"name":"Ukraine"}},{"type":"Polygon","arcs":[[924,-30,-173]],"id":"URY","properties":{"name":"Uruguay"}},{"type":"MultiPolygon","arcs":[[[925]],[[-203,926,-683,927,-230]]],"id":"USB","properties":{"name":"U.S.A."}},{"type":"MultiPolygon","arcs":[[[928]],[[929]],[[930]],[[931]],[[932]]],"id":"USH","properties":{"name":"Hawaii"}},{"type":"MultiPolygon","arcs":[[[933]],[[934]],[[935]],[[936]],[[937]],[[938]],[[939]],[[940]],[[941]],[[942]],[[943]],[[944]],[[945]],[[946]],[[947]],[[948]],[[949]],[[950]],[[951]],[[952]],[[953]],[[-232,954,-956,956]]],"id":"USK","properties":{"name":"Alaska"}},{"type":"MultiPolygon","arcs":[[[-638,-909,-5,-911,-627],[-958]]],"id":"UZB","properties":{"name":"Uzbekistan"}},{"type":null,"id":"VAT","properties":{"name":"Vatican"}},{"type":"MultiPolygon","arcs":[],"id":"VCT","properties":{"name":"St. Vin. and Gren."}},{"type":"MultiPolygon","arcs":[[[-488,-177,-330,958]]],"id":"VEN","properties":{"name":"Venezuela"}},{"type":"MultiPolygon","arcs":[],"id":"VGB","properties":{"name":"British Virgin Is."}},{"type":"MultiPolygon","arcs":[],"id":"VIR","properties":{"name":"U.S. Virgin Is."}},{"type":"MultiPolygon","arcs":[[[959]],[[960,-645,-654,-274]]],"id":"VNM","properties":{"name":"Vietnam"}},{"type":"MultiPolygon","arcs":[[[961]],[[962]],[[963]],[[964]],[[965]],[[966]]],"id":"VUT","properties":{"name":"Vanuatu"}},{"type":"Polygon","arcs":[[-615,-600]],"id":"WEB","properties":{"name":"West Bank"}},{"type":"MultiPolygon","arcs":[],"id":"WLF","properties":{"name":"Wallis and Futuna Is."}},{"type":"MultiPolygon","arcs":[[[-391,967]]],"id":"WLS","properties":{"name":"Wales"}},{"type":"MultiPolygon","arcs":[[[968]],[[969]]],"id":"WSM","properties":{"name":"Samoa"}},{"type":"MultiPolygon","arcs":[[[970,-863,-747]]],"id":"YEM","properties":{"name":"Yemen"}},{"type":"Polygon","arcs":[[971]],"id":"YES","properties":{"name":"Socotra"}},{"type":null,"id":"ZAI","properties":{"name":"Prince Edward Is."}},{"type":"Polygon","arcs":[[-696,-902,-702,972,-718,-185,973],[-667]],"id":"ZAX","properties":{"name":"South Africa"}},{"type":"Polygon","arcs":[[-710,-698,974,-717,-7,-325,-920]],"id":"ZMB","properties":{"name":"Zambia"}},{"type":"Polygon","arcs":[[-974,-184,-975,-697]],"id":"ZWE","properties":{"name":"Zimbabwe"}}]}},"arcs":[[[7080,7328],[-15,-5],[5,-7]],[[7070,7316],[-14,-11],[-18,3],[-32,-8],[-17,-18],[-11,-18],[10,-38],[1,-16],[-18,-37],[2,-28],[-11,-6],[-18,6],[-4,-9],[12,-30],[-10,-15],[-12,-5],[-7,-34],[1,-29],[-12,-17],[-7,10],[-12,0],[-17,-17],[5,-10],[-13,-7],[-10,5],[-14,-23],[-6,-62],[-30,-16],[-16,1],[-12,-10],[-15,6],[-30,-5],[-46,26]],[[6689,6904],[27,56],[-4,31],[-23,7],[0,43],[-7,51],[9,24],[-12,10],[0,22],[12,13],[-5,11],[10,19],[5,44]],[[6701,7235],[8,-9],[11,0],[10,-16],[21,15],[1,22],[25,11],[16,24],[7,41],[20,6],[6,19],[21,-13]],[[6847,7335],[15,-1],[20,-9]],[[6882,7325],[5,-12],[28,21],[8,-13],[7,26],[21,6],[-2,13],[19,33],[11,-9],[0,-22],[8,1],[-3,-38],[2,-25],[8,-9],[44,45],[7,-13],[17,10],[11,-1],[7,-10]],[[5665,4558],[2,-26],[-2,-18],[1,-46],[-3,-33],[-53,0],[0,-170],[5,-37],[34,-60]],[[5649,4168],[-55,-21],[-18,-1],[-10,8],[-40,4],[-16,24],[-73,0],[-49,-1],[-16,23],[-12,0],[-12,-12],[-15,3],[-7,-5]],[[5326,4190],[2,43],[-2,39],[6,11],[9,58],[2,34],[5,35],[10,23],[2,15],[12,15],[8,22],[4,69],[-18,71],[-5,38],[10,20],[0,19],[-14,65],[-1,16],[-9,21],[-6,27],[21,15]],[[5362,4846],[37,-2],[54,2],[11,-22],[2,-30],[5,-28],[17,-49],[13,0],[17,10],[19,-2],[5,47],[18,12],[12,0],[0,-19],[32,-2],[0,-32],[4,-28],[-3,-65],[11,-33],[3,-37],[-4,-12],[4,-17],[7,8],[14,-2],[9,7],[12,-3],[4,9]],[[5339,4852],[0,17],[-6,27]],[[5333,4896],[10,22],[14,10],[6,-11]],[[5363,4917],[-18,-25],[2,-36],[-8,-4]],[[5557,7633],[13,-20],[1,-17]],[[5571,7596],[-4,-21],[8,-35],[7,-4]],[[5582,7536],[2,-10],[-18,-50],[-11,-6]],[[5555,7470],[-4,20],[-13,13],[-1,21],[6,67],[-6,4]],[[5537,7595],[-2,18],[10,26],[12,-6]],[[6563,6661],[3,-38]],[[6566,6623],[-9,-14],[-8,7],[-1,-36],[7,-8],[-15,-9],[2,-7],[-10,-52],[0,-12]],[[6532,6492],[-2,-5],[-71,18],[-27,66],[0,12]],[[6432,6583],[15,-19],[15,11],[32,-5],[16,12],[10,31],[33,56],[4,16]],[[6557,6685],[6,-24]],[[6561,6636],[0,0]],[[3207,2032],[20,0],[-23,-11],[3,11]],[[3093,2023],[0,128]],[[3093,2151],[10,-19],[-6,-16],[10,-3],[5,-18],[18,-24],[30,-29],[27,-5],[-2,-14],[-33,-9],[-11,6],[-39,5],[-9,-2]],[[3259,3903],[13,-22],[7,-25],[25,-41],[32,-19],[14,-21],[28,-29],[16,-10],[7,-20],[-9,-30],[-7,-10],[-5,-39],[-9,-16],[1,-10],[12,2],[21,-9],[29,-6],[8,13],[10,-6],[8,23],[17,21],[4,19],[2,43]],[[3483,3711],[12,3],[8,-9],[6,-32],[-1,-38],[-4,-13],[-13,-18],[-16,-10],[-5,-14],[-19,-24],[-25,-54],[-3,-13],[-24,-44]],[[3399,3445],[-7,-23],[2,-16],[-5,-41],[-6,-20],[0,-32]],[[3383,3313],[1,-28],[-7,-8],[-4,-32],[5,-31],[-4,-6],[7,-22],[27,-29],[4,-18],[-6,-13],[3,-24],[16,-16],[-1,-31],[-19,-45],[-4,-20],[-17,-20],[-23,-14],[-53,-17],[-20,-1],[-21,8],[2,-23],[7,-7],[-2,-26],[-8,-21],[5,-28],[-5,-12],[-22,-16],[-16,1],[-32,24],[-6,-9],[4,-39],[-2,-24],[27,-24],[-3,10],[12,6],[5,-17],[-3,-23],[-12,-3],[-5,17],[-9,2],[-11,-13],[20,-12],[-18,-19],[-9,-19],[1,-38],[-11,-22],[0,-20],[-15,3],[-21,-17],[-18,-46],[1,-17],[22,-38],[21,-5],[8,-14],[-6,-28],[4,-7],[-34,-39],[-12,-19],[-9,-52],[-35,-37],[-5,-28],[4,-32],[17,-47]],[[3098,2168],[0,4],[-42,16],[-54,1],[-14,26],[4,36],[-6,18],[-18,-8],[-11,48],[2,34],[9,1],[4,19],[11,10],[0,16],[8,24],[-6,13],[5,22],[12,17],[-1,21],[7,11],[-5,28],[7,12],[-2,24],[10,12],[-7,20],[-13,12],[20,-1],[4,20],[-17,3],[4,27],[-11,47],[-2,30],[3,25],[8,6],[-4,25],[-2,47],[7,27],[2,23],[-3,17],[9,20],[0,20],[13,12],[-2,40],[-5,23],[3,61],[18,26],[0,43],[6,46],[10,19],[-1,30],[3,22],[-9,13],[3,14],[-9,35],[-7,40],[2,25],[15,61],[-1,48],[5,12],[5,36],[13,28],[9,45],[14,7],[1,9],[-8,23],[5,18],[-5,42],[6,20],[-5,19],[9,21],[25,20],[9,60],[-5,10]],[[3133,3869],[14,35],[9,6],[8,16],[11,-16],[18,1],[12,-8],[8,-32],[11,43],[30,2],[5,-13]],[[6291,7425],[-11,-2]],[[6280,7423],[-9,29],[-21,22],[-7,-4]],[[6243,7470],[-13,20],[-10,-1],[-10,27],[4,9],[-8,27]],[[6206,7552],[43,10]],[[6249,7562],[17,-26],[-6,-9],[5,-16],[11,-10],[-9,-12],[16,-25],[8,-39]],[[6249,7546],[0,0]],[[542,483],[-78,7],[23,10],[55,-17]],[[3340,555],[-23,-35],[-58,8],[-13,14],[-32,-9],[-47,20],[96,0],[37,8],[-14,14],[51,13],[3,-33]],[[3162,571],[-46,31],[50,-4],[14,-20],[-18,-7]],[[4057,614],[-71,2],[27,12],[44,-14]],[[582,586],[-35,-2],[-110,30],[4,20],[23,15],[45,-10],[62,-35],[11,-18]],[[3046,594],[-39,8],[13,28],[105,40],[21,-1],[-53,-36],[-47,-39]],[[9656,682],[-38,-9],[-5,12],[43,-3]],[[3743,644],[42,0],[20,-38],[-14,-41],[-158,-26],[-16,-8],[-122,-6],[-5,18],[26,27],[31,-2],[53,36],[-10,12],[17,43],[29,28],[44,15],[35,0],[53,-17],[10,-29],[-35,-12]],[[9640,730],[61,-8],[-26,-14],[-45,-8],[-14,18],[24,12]],[[854,741],[-44,8],[26,6],[18,-14]],[[1359,887],[-31,10],[32,1],[-1,-11]],[[1757,911],[-18,5],[28,13],[-10,-18]],[[1679,914],[-8,18],[27,-3],[-19,-15]],[[1651,936],[8,-15],[-23,-19],[-49,0],[7,21],[-14,16],[71,-3]],[[4427,928],[6,-30],[-12,-3],[-13,26],[19,7]],[[1491,963],[29,-24],[-15,-6],[47,-2],[8,-23],[-35,2],[-59,27],[-1,25],[26,1]],[[2934,972],[-6,-29],[-37,17],[5,25],[39,-2],[-1,-11]],[[2468,969],[-15,32],[20,4],[6,-22],[-11,-14]],[[2275,1042],[24,-13],[10,15],[21,-2],[-17,-20],[31,11],[1,-21],[-13,-9],[-66,2],[-49,15],[-58,9],[4,9],[57,7],[7,-11],[33,15],[15,-7]],[[4929,1108],[12,-4],[-19,-20],[-6,18],[13,6]],[[2952,1114],[-14,-15],[-54,-12],[-9,11],[53,8],[3,11],[21,-3]],[[5745,1130],[-23,0],[8,17],[15,-17]],[[2917,1168],[15,-13],[-11,-14],[-25,4],[1,14],[20,9]],[[5450,1150],[-17,5],[8,13],[20,-2],[-11,-16]],[[3000,1168],[-22,4],[2,14],[20,-18]],[[3278,1168],[-16,31],[21,-11],[-5,-20]],[[3054,1199],[19,-29],[29,-71],[2,-53],[-27,-41],[-88,-7],[-19,14],[9,8],[58,-5],[0,12],[-34,3],[29,12],[-42,16],[-16,-18],[-20,5],[-10,-18],[-37,17],[1,15],[25,-2],[10,14],[51,4],[-24,12],[38,-1],[14,9],[38,4],[-34,9],[0,13],[27,11],[-4,9],[-41,6],[-1,38],[-10,9],[6,18],[41,10],[10,-23]],[[3111,1297],[-23,-17],[-9,19],[22,36],[15,10],[-5,-48]],[[7804,1401],[-19,0],[9,16],[13,0],[-3,-16]],[[3245,1469],[9,-4],[-27,-13],[-10,12],[23,18],[5,-13]],[[3268,1473],[-11,-4],[11,28],[8,-7],[-8,-17]],[[3393,1494],[16,-2],[-1,-17],[-32,16],[15,17],[2,-14]],[[3416,1534],[-35,-24],[-22,-26],[8,-17],[-19,10],[-14,-4],[-30,-33],[-18,0],[3,-11],[-16,-8],[11,-14],[-15,-20],[8,-12],[39,11],[-12,-23],[-11,11],[-12,-9],[-25,-1],[2,-22],[-15,24],[-10,2],[-13,-24],[9,-12],[-26,3],[-10,-24],[-13,-9],[-3,-29],[10,-39],[33,-11],[10,10],[7,-26],[28,-31],[14,-32],[-12,-13],[25,-12],[-16,-13],[21,-4],[10,-52],[-37,-14],[43,-3],[0,-22],[17,-48],[-27,-3],[-26,10],[11,-21],[21,-6],[-1,-14],[-26,-10],[29,-11],[-6,-14],[-34,2],[3,-28],[-29,13],[-21,-17],[19,-10],[-29,-8],[26,-8],[-73,-29],[-92,-24],[-35,-20],[-93,1],[-38,7],[-53,-3],[0,-12],[50,-38],[70,-6],[-11,-17],[-43,-17],[-82,15],[-79,10],[-24,-7],[112,-32],[-12,-19],[-68,-3],[-64,23],[-32,25],[14,-46],[77,-32],[111,0],[13,-17],[-15,-17],[-86,-4],[41,-10],[49,4],[37,-45],[57,-3],[56,18],[28,-18],[207,-43],[-85,-3],[-12,-10],[31,-27],[113,10],[-52,-19],[36,-50],[53,-3],[104,56],[50,15],[155,19],[60,-3],[1,-33],[71,13],[70,62],[66,18],[42,-10],[53,24],[167,28],[141,6],[23,11],[-51,6],[-130,10],[-11,24],[-74,-4],[-91,27],[3,18],[30,37],[28,22],[56,17],[87,44],[80,25],[49,10],[92,8],[13,9],[61,3],[-12,10],[36,51],[49,-2],[31,27],[-33,0],[-21,16],[25,33],[36,-2],[0,22],[31,-3],[47,21],[15,30],[-33,17],[6,18],[31,-15],[22,25],[-2,12],[24,-16],[16,-27],[26,7],[-4,38],[54,9],[9,-8],[-10,-27],[87,0],[23,-6],[26,9],[14,-25],[30,25],[58,22],[70,13],[88,12],[23,16],[51,-30],[21,-3],[37,40],[21,-16],[56,1],[15,10],[10,-14],[39,-8],[8,14],[22,0],[-5,-23],[11,-13],[46,3],[17,35],[19,-12],[-4,-11],[21,-10],[23,25],[12,-3],[14,-25],[49,-8],[67,24],[30,18],[38,4],[40,18],[5,17],[-12,31],[15,22],[30,0],[-10,-24],[21,0],[22,-33],[67,-2],[31,-27],[-1,11],[23,33],[14,36],[61,25],[12,14],[52,13],[14,9],[33,7],[5,19],[22,-4],[-7,-12],[43,-14],[-1,17],[17,16],[-21,11],[21,6],[37,-15],[-7,44],[38,20],[55,13],[36,-3],[21,-10],[41,-31],[-25,1],[3,-21],[-17,-14],[51,12],[31,-14],[14,-13],[34,5],[62,-15],[28,8],[128,-22],[31,8],[15,-41],[-12,-15],[2,-29],[-20,-8],[8,-16],[-12,-16],[-16,5],[-25,-26],[19,-7],[33,5],[1,-23],[-15,-27],[-17,-12],[-17,-35],[-15,-55],[-11,-9],[23,-10],[18,12],[13,33],[31,7],[48,44],[18,52],[23,19],[2,16],[31,22],[18,-8],[29,2],[7,15],[53,29],[20,26],[5,20],[16,9],[77,25],[35,5],[32,28],[34,-4],[63,23],[49,-2],[37,12],[29,6],[52,-11],[31,10],[13,-7],[43,9],[18,-8],[14,9],[32,-11],[42,18],[13,22],[35,6],[36,-7],[153,-53],[33,22],[8,25],[15,8],[46,9],[17,-8],[25,-31],[28,-18],[-10,-14],[-35,-12],[1,-12],[80,23],[57,-7],[39,11],[-30,-14],[-5,-10],[66,17],[19,14],[56,14],[25,-3],[21,17],[23,-7],[24,-32],[47,0],[14,33],[11,11],[47,2],[45,9],[23,-22],[30,19],[33,-17],[10,6],[34,-12],[31,-3],[18,-7],[58,-6],[20,-11],[29,8],[5,-13],[19,-2],[-19,-39],[7,-5],[26,16],[24,0],[24,-20],[-1,-18],[46,-11],[72,4],[2,-21],[39,2],[15,-7],[18,7],[9,21],[41,-39],[55,-15],[18,5],[46,-19],[11,-25],[23,-19],[11,-30],[24,-8],[-2,37],[13,1],[19,-19],[29,8],[62,-10],[26,-9],[16,-21],[56,-25],[7,11],[12,-25],[-18,-4],[-4,-38],[-45,12],[38,-19],[-7,-19],[-67,-6],[13,-10],[-17,-13],[-32,-2],[-14,-17],[-6,29],[-11,-11],[1,-27],[15,-33],[-44,2],[-9,12],[-42,-60],[26,-26],[-2,-51],[52,-90],[22,15],[19,-31],[-50,-3],[-46,-15],[-25,21],[6,-28],[-21,3],[-36,-52],[18,-8],[-55,-24],[55,-1],[-2,-51],[42,-18],[47,-32],[-70,-12],[51,-7],[55,9],[101,-40],[-14,-18],[86,-5],[19,-10],[-9730,-41],[186,-11],[116,-16],[127,-5],[181,-16],[-15,22],[-230,24],[33,25],[-41,11],[-55,-4],[-45,22],[-136,32],[62,2],[94,-22],[61,2],[50,-15],[138,-4],[57,10],[-7,14],[62,8],[67,31],[-47,29],[7,21],[-71,15],[30,10],[217,13],[-68,32],[9,12],[54,5],[4,16],[-65,14],[-45,17],[-86,17],[-34,18],[59,21],[-82,4],[-35,25],[8,36],[56,3],[65,-7],[12,-11],[41,0],[63,-22],[38,13],[-7,27],[80,-23],[-1,43],[-45,17],[-63,4],[33,16],[84,-18],[-27,19],[79,30],[64,1],[44,19],[57,9],[30,-5],[13,22],[34,4],[29,-9],[49,5],[63,-7],[53,9],[70,0],[106,-2],[59,8],[21,14],[95,-6],[12,28],[36,-6],[-17,-50],[67,10],[-4,31],[18,4],[25,-10],[0,-20],[-32,-25],[60,-3],[74,-8],[48,13],[89,0],[18,-17],[57,4],[12,8],[-53,19],[6,23],[-28,0],[-9,21],[-33,13],[-1,13],[51,-6],[58,8],[-43,16],[-69,4],[-13,27],[28,3],[-1,-14],[117,-1],[57,-17],[53,0],[56,8],[29,-8],[21,4],[4,14],[26,5],[6,13],[26,-6],[-6,-25],[28,2],[10,-9],[34,9],[23,-19],[78,-19],[28,13],[4,23],[19,-12],[-3,27],[26,-7],[20,-25],[54,3],[-6,-22],[49,11],[36,-2],[30,13],[114,20],[32,17],[23,43],[-17,32],[-1,27],[-11,37],[-14,22],[-9,35],[37,1],[11,14],[-11,16],[16,37],[-10,13],[13,28],[-22,-1],[0,25],[15,8],[12,-18],[0,34],[21,3],[4,29],[28,6],[5,23],[19,35],[19,-6],[-2,10],[20,18],[22,3],[21,30],[38,14],[17,16],[48,18],[4,-7]],[[3457,1544],[-23,-14],[-1,11],[24,3]],[[3389,1618],[-4,-14],[-19,-1],[23,15]],[[6921,2355],[10,8],[2,-17],[24,11],[-4,-21],[-12,5],[6,-20],[-27,10],[-9,-10],[0,49],[7,11],[3,-26]],[[9028,2835],[7,1],[28,-23],[19,10],[13,-1],[14,13],[7,-4],[3,-22],[0,-54],[-7,0],[-4,-23],[2,-34],[-6,-4],[-6,22],[-6,-7],[-13,-37],[-23,4],[-16,35],[-8,40],[10,-9],[-14,33],[-10,36],[1,30],[9,-6]],[[9110,2894],[8,-12],[-5,-17],[-9,22],[6,7]],[[8997,2873],[-2,22],[7,6],[1,-18],[-6,-10]],[[8821,3125],[13,-1],[-17,-18],[-19,2],[-3,17],[19,9],[7,-9]],[[8143,3683],[-7,16],[2,15],[5,-31]],[[9251,3701],[-1,32],[6,15],[3,-8],[-8,-39]],[[8874,4229],[-10,-8],[4,14],[6,-6]],[[8797,4389],[5,-28],[-16,4],[3,20],[8,4]],[[8623,4511],[4,-8],[-16,2],[3,18],[6,8],[3,-20]],[[8627,4529],[12,2],[6,8],[8,-13],[-16,-29],[-13,18],[-4,23],[7,-9]],[[8976,4495],[-2,-20],[8,-19],[6,-47],[-1,-17],[5,-35],[6,-6],[14,13],[5,-15],[18,-26],[-1,-31],[6,-33],[0,-27],[12,-31],[6,-33],[-3,-31],[9,-22],[-1,-16],[8,-19],[15,-13],[10,-2],[7,-20],[22,-19],[10,-22],[-3,-15],[12,-22],[14,-76],[7,-7],[3,23],[13,-24],[6,-1],[2,-49],[18,-32],[12,-11],[6,-23],[9,-13],[5,-22],[8,-14],[0,-14],[7,-17],[-3,-18],[3,-39],[-2,-13],[13,-60],[1,-35],[-7,-25],[-2,-35],[-7,-39],[-2,-50],[-11,-35],[-1,-16],[-10,-25],[-10,-8],[-14,-39],[-2,-26],[-8,-16],[-4,-40],[-17,-48],[-6,-51],[-1,-47],[-18,-16],[-29,-1],[-24,-23],[-25,-35],[-2,-18],[-9,18],[-19,17],[-3,17],[-9,-15],[4,24],[-6,11],[-14,-14],[8,-4],[-32,-35],[-33,26],[-12,5],[-13,-5],[-12,17],[-11,2],[-23,45],[2,34],[-11,38],[-12,18],[5,20],[-19,-17],[-9,2],[9,33],[-2,22],[-10,28],[-11,-56],[-23,-6],[4,19],[11,0],[2,43],[13,34],[-3,21],[4,7],[-3,24],[-12,-30],[-6,-25],[-22,-23],[-15,-37],[2,-18],[-9,2],[-12,26],[7,-5],[-7,36],[-9,19],[-3,17],[-13,10],[-6,24],[4,11],[-16,20],[-13,1],[-12,13],[-15,-3],[-14,18],[-16,12],[-10,-7],[-18,2],[-33,-7],[-24,-21],[-21,-12],[-39,-1],[-32,-34],[-15,-8],[-16,-47],[-12,-9],[-12,6],[-18,-6],[-2,7],[-18,2],[-44,-8],[-11,-23],[-15,-6],[-21,-29],[-16,-7],[-29,7],[-15,11],[-7,15],[-20,16],[-1,42],[6,-7],[9,6],[5,20],[-2,30],[3,16],[-1,40],[-14,51],[-6,34],[0,39],[-3,23],[-7,16],[-2,19],[-11,26],[-3,43],[-20,53],[2,18],[5,-26],[7,13],[-7,14],[-5,22],[9,-7],[10,-32],[4,6],[0,25],[-15,50],[-7,31],[2,40],[7,19],[1,29],[-3,16],[8,39],[4,8],[1,-38],[20,43],[16,14],[12,22],[23,26],[19,-4],[19,18],[19,8],[10,16],[13,-2],[17,7],[19,13],[13,21],[13,49],[15,25],[-6,35],[3,17],[13,20],[6,20],[12,-49],[5,-13],[2,29],[6,-6],[1,14],[-11,22],[7,17],[4,-11],[12,0],[8,16],[-6,20],[9,28],[8,-7],[-4,14],[5,9],[9,-7],[-5,23],[15,25],[5,-19],[4,7],[1,30],[5,-11],[9,0],[9,24],[16,-16],[20,-40],[-3,-35],[5,2],[-1,17],[7,12],[22,-5],[10,-15],[0,16],[6,2],[-13,25],[9,24],[4,23],[11,16],[-2,19],[16,31],[3,-8],[5,22],[7,7],[4,-12],[36,9],[-1,27],[-6,9],[-9,-1],[-9,14],[12,3],[12,-17],[5,7],[9,-18],[20,-8],[17,-13],[6,5],[13,-14],[20,23],[-5,-24],[7,3],[7,-14],[0,17],[8,10],[11,-23],[-12,-27],[-1,-23],[-5,5],[-10,-10],[2,-29],[-3,-19],[-14,-35],[4,-14],[19,-23],[13,-25],[9,-3],[19,-20],[15,-28],[21,-11],[7,-24],[22,-22],[17,9],[5,8],[11,44],[4,24],[2,36],[5,32],[-3,33],[2,19],[-3,20],[5,31],[-1,18],[9,12],[-7,22],[10,42],[3,39],[8,14],[8,-17],[5,-51],[7,-4]],[[5470,7983],[-2,-12],[8,-22]],[[5476,7949],[-2,-17],[-9,-2],[-9,-16],[2,-17],[-12,-14]],[[5446,7883],[-3,-11],[-28,-4],[-11,-11],[-24,5]],[[5380,7862],[-34,10],[-10,18],[-24,0],[-7,-12],[-15,5]],[[5290,7883],[-9,-1],[-15,12]],[[5266,7894],[-2,13]],[[5264,7907],[0,14]],[[5264,7921],[9,2],[10,-11],[6,11],[24,-8],[25,17],[14,-4],[9,-10],[1,12],[-7,28],[24,21],[4,14]],[[5383,7993],[7,-10],[18,0],[7,21],[10,0],[20,-12],[12,2],[13,-11]],[[6280,7423],[-17,7],[-19,38]],[[6244,7468],[-1,2]],[[6349,7594],[13,-27],[3,-15],[17,-31],[10,-2],[6,-16],[-22,-4],[-7,-34],[2,-15],[-10,-13],[-5,-16],[1,-23]],[[6357,7398],[-8,-2],[-16,24],[8,11],[-5,17],[6,5],[-9,17],[-7,-4],[-35,-41]],[[6249,7562],[6,7],[14,-4],[21,-16],[6,13],[-14,19],[7,16]],[[6289,7597],[22,-26],[1,-8],[17,-5],[20,36]],[[6264,7522],[0,0]],[[5848,5046],[-3,-29],[10,-7],[-18,-62],[-12,-21],[-9,1]],[[5816,4928],[-5,31],[0,49],[-6,19]],[[5805,5027],[22,-3],[4,25],[17,-3]],[[5099,5857],[-3,-17],[7,-18],[2,-37],[-6,-10],[-1,-21],[-11,-23],[-3,-24],[-7,-2],[-2,-15],[0,-68],[2,-52],[-2,-19]],[[5075,5551],[-30,-9]],[[5045,5542],[4,4],[-6,23],[2,18],[-1,118],[-6,18],[-1,35],[-15,22],[-1,21],[4,16]],[[5025,5817],[13,25],[17,-1],[11,28]],[[5066,5869],[-1,19],[14,8],[20,-39]],[[5006,6043],[-2,-24],[13,-46],[16,-20],[-6,1],[0,-20],[14,-20],[17,1],[-1,-18],[9,-28]],[[5025,5817],[-12,0],[-15,7]],[[4998,5824],[-7,3],[-10,-14],[-26,4],[-34,0],[-2,-23],[3,-11],[3,-53]],[[4925,5730],[-4,-3],[-11,27],[-16,1],[-23,-12],[-10,13],[-5,21],[-10,7]],[[4846,5784],[1,36],[7,19],[-2,22],[4,11],[13,7],[7,15],[-1,20],[7,7],[-3,18],[11,17],[12,-13],[6,6],[1,21],[9,0],[4,24],[9,12],[10,-6],[4,16],[25,21],[8,14],[15,0],[13,-8]],[[5157,8110],[-6,-5],[-43,-2],[-21,4]],[[5087,8107],[-4,1]],[[5083,8108],[-4,-3]],[[5079,8105],[-9,21]],[[5070,8126],[23,17]],[[5093,8143],[15,-11],[9,12]],[[5117,8144],[15,6],[29,-22],[-4,-18]],[[5121,8108],[0,0]],[[7521,6456],[-7,-1],[4,22],[-2,24],[7,-22],[-2,-23]],[[7571,6450],[1,-39],[-8,8],[-5,-14],[5,-24]],[[7564,6381],[-8,22],[-4,41]],[[7552,6444],[-2,16],[-11,42],[-13,-17],[-9,25],[-1,24],[-9,1],[9,-11],[-5,-30],[5,-28],[-11,-25],[-4,3],[4,16],[-18,-22],[-9,-4],[-5,22]],[[7473,6456],[-6,55],[-8,36],[5,35],[-20,20],[12,33],[13,2],[-23,42],[10,24],[13,-8],[15,-15],[5,14],[5,-16],[0,-37],[11,-7],[51,0],[12,-13],[-7,-4],[-4,-29],[-7,-12],[-13,-4],[-7,-25],[6,-32],[8,-8],[4,8],[5,33],[9,0],[3,-44],[5,-29],[1,-25]],[[5793,7703],[-3,-20],[-15,-13],[-1,-24],[-11,-16],[15,-30]],[[5778,7600],[-14,-2],[-6,10],[-20,-8],[-7,-13]],[[5731,7587],[-8,-3],[-3,-21],[-19,-4],[-21,18],[-24,-10],[-20,-2]],[[5636,7565],[2,22],[-4,15],[-14,19]],[[5620,7621],[5,7],[-2,21],[15,21],[-14,20],[-2,29],[8,13]],[[5630,7732],[9,-9],[-5,-11],[74,-13],[20,20],[24,9],[41,-25]],[[5509,7637],[-19,18]],[[5490,7655],[-2,2]],[[5488,7657],[2,4],[-38,64],[-4,20],[-11,17],[1,24],[12,-9]],[[5450,7777],[15,-12],[2,-17],[-9,-6],[19,-20],[1,20],[11,-4],[9,8],[-1,12],[15,13],[16,-17],[-6,-27],[-23,-40],[1,-35],[9,-15]],[[2971,6404],[-4,-12],[-13,-2],[-1,9],[18,5]],[[2921,6502],[-11,16],[3,6],[8,-22]],[[2843,6581],[2,-30],[-6,1],[-6,27],[10,2]],[[2840,6607],[0,-14],[-8,-10],[-11,19],[13,27],[6,-22]],[[2819,6723],[16,-3],[-23,-10],[7,13]],[[2855,6676],[0,34],[-9,23],[13,-21],[-4,-36]],[[5521,7773],[-18,10]],[[5521,7773],[6,-6]],[[5527,7767],[10,2]],[[5537,7769],[-6,-33],[11,-19],[-8,-2],[7,-20],[-8,-4]],[[5533,7691],[-21,-31],[0,-25]],[[5512,7635],[-3,2]],[[5450,7777],[19,15],[25,-12],[9,3]],[[5781,8418],[18,-12],[16,0],[3,-15],[11,9],[16,-3],[13,-12],[2,-30],[-5,-16],[10,-9],[7,-25],[11,-8],[-2,-14],[13,-1],[14,-26],[-16,-14],[-20,6],[-4,-11],[8,-14],[1,-28],[5,-10]],[[5882,8185],[-22,-3],[-12,-26],[-3,-20],[-8,13],[-24,-4],[-4,12],[-10,-6],[-41,5],[-10,9],[-32,10],[-40,-4],[-21,-20]],[[5655,8151],[1,32],[-13,12],[19,22],[2,14],[-12,60]],[[5652,8291],[23,-3],[34,24],[9,35],[17,23],[3,20]],[[5738,8390],[10,9],[18,-1],[15,20]],[[2530,6099],[-9,0],[2,111]],[[2523,6210],[3,11],[7,-2],[9,29],[5,0]],[[2547,6248],[6,-20],[-5,-30],[-1,-56],[-11,-22],[-6,-21]],[[3384,4022],[0,20],[-26,31],[-25,-1],[-49,-21],[-4,-22],[-10,-30],[0,-29],[-11,-67]],[[3133,3869],[-19,0],[0,18],[-8,52],[-1,18],[-10,23],[2,17],[-6,6],[-1,24],[5,13],[-4,7],[7,19],[-14,25],[-4,44],[-11,40]],[[3069,4175],[-4,15],[17,33],[5,21],[-10,10],[-6,31],[7,21],[-5,26],[14,36],[-6,28],[3,17],[0,29],[8,22],[-25,89]],[[3067,4553],[20,-3],[4,-7],[9,6],[11,20],[8,-1],[3,11],[13,13],[15,22],[33,10],[3,-25],[-4,-17],[3,-26],[0,-31],[9,-31],[14,-16],[2,-11],[18,-1],[12,-13],[8,1],[8,-19],[17,-8],[10,-22],[20,2],[16,-17],[6,-48],[0,-27],[-8,-1],[9,-22],[2,-45],[47,-4],[3,-52],[15,-16],[8,-39],[-7,-52],[-9,-38],[7,-13],[-8,-11]],[[3560,5101],[4,34],[7,16],[8,-6],[-5,-20],[-14,-24]],[[3621,5171],[12,4],[21,-8],[-3,-32],[-11,-37],[-8,-6],[-8,5],[-2,-12],[-13,1],[-11,-6],[-4,6],[-5,40],[2,37],[13,14],[17,-6]],[[3592,5176],[-8,-11],[-1,13],[9,-2]],[[3626,5177],[-11,1],[10,11],[1,-12]],[[3618,5199],[-3,-15],[-15,2],[3,11],[15,2]],[[3599,5192],[-7,-5],[8,30],[-1,-25]],[[3431,5296],[13,-6],[2,11],[-6,13],[4,14],[8,-6],[20,11],[11,-15]],[[3483,5318],[13,-12],[9,13],[13,0],[9,-10],[13,23],[6,35],[19,51]],[[3565,5418],[3,14],[9,-12],[4,-25],[2,-34],[9,-50],[6,-22],[14,-10],[2,-28],[-16,-30],[-8,-24],[-16,-18],[-2,-18],[-9,-21],[0,-15],[-8,-22],[-6,2],[-12,-11],[19,-2],[30,38],[-2,-10],[8,-38],[8,-14],[10,10],[8,-5],[12,11],[-9,-53],[13,45],[5,2],[7,20],[7,-7],[1,27],[9,23],[20,7],[15,-9],[7,-11],[11,-4],[16,-18],[5,0],[5,-20],[6,13],[12,-21],[-1,-23],[8,-7],[-7,-12],[-3,-33],[8,11],[4,24],[9,-3],[15,5],[2,7],[11,-5],[20,-19],[10,3],[16,-11],[23,8],[14,-4],[41,-49],[24,-51],[12,-18],[17,-11],[17,3],[12,-5],[9,-25],[6,-47],[6,-52],[-1,-39],[-9,-56],[-13,-35],[-6,-10],[-15,-44],[-11,-11],[-16,-42],[-9,-40],[-9,-28],[-11,-22],[-8,20],[-2,-17],[-8,-26],[3,-38],[-3,-36],[4,-69],[-9,-85],[1,-22],[-13,-32],[-3,-22],[2,-37],[-3,-17],[-6,-10],[-11,-47],[-10,-17],[-9,-37],[3,-29],[-21,-17],[-8,-17],[0,-20],[-33,-2],[-20,-8],[2,12],[-23,-12],[3,-9],[-10,-6],[-14,-24],[-14,0],[-25,-26],[-9,-14],[-22,-31],[-6,-23],[-7,9],[-8,-12],[8,-7],[-3,-12],[-5,-51],[5,-24],[-3,-25],[1,-30],[-5,-29],[-13,-17],[-13,-28],[-9,-26],[-15,-63],[-15,-33],[-26,-34],[21,34],[4,20],[14,24],[0,27],[-8,-8],[-6,10],[-4,-31],[-5,-21],[-13,-13],[-6,-32],[2,-16],[-6,-16],[-9,-40],[-20,-35]],[[3517,3240],[-5,7],[1,30],[11,21],[-13,19],[-4,18],[-18,20],[-6,15],[-18,15],[-10,22],[-11,-13],[0,14],[-23,42],[-11,-10],[-11,5]],[[3483,3711],[4,20],[6,68],[-11,13],[-16,-12],[-6,4],[-3,41],[-6,48],[-14,8],[-4,10],[-15,-10],[-28,9],[0,36],[3,28],[-9,48]],[[3067,4553],[-11,1],[-7,-7],[-12,3],[2,87],[-18,-27],[-26,-2],[-6,28],[-23,6],[7,24],[-15,34],[-8,29],[2,7],[-8,13],[7,12],[0,25],[16,22],[-2,25],[8,29],[2,27],[8,6],[18,27],[27,11],[7,11],[9,1],[10,-11],[2,6]],[[3056,4940],[7,70],[9,107],[-8,39],[-11,20],[1,41],[16,9],[8,-6],[-2,22],[-17,3],[0,37],[47,1],[17,20],[6,1],[7,-27],[0,-25],[6,2]],[[3142,5254],[12,-23],[11,-2],[9,11],[7,-16],[10,24],[11,8],[17,21],[3,18],[16,13],[1,15],[-18,4],[1,11],[-6,30],[0,22],[-17,38],[19,-8],[3,-10],[20,0],[10,-19],[5,4],[2,20],[8,8],[7,-3],[29,23],[14,23],[-4,17]],[[3312,5483],[17,3],[4,-9],[-4,-32],[9,-3],[7,-30],[-8,-22],[1,-13],[-5,-38],[7,-24],[0,-23],[14,-29],[11,-10],[10,6],[4,16],[22,8],[12,17],[8,-8],[10,4]],[[8194,5466],[4,0],[4,-32],[-5,3],[-3,29]],[[8194,5466],[-7,-10],[1,-21],[-7,-18],[-13,31]],[[8168,5448],[10,4],[15,21],[1,-7]],[[7545,6783],[3,-19],[7,1],[2,-31],[-41,-8],[-7,7],[-16,-11],[-24,13],[-5,14],[4,8]],[[7468,6757],[18,46],[10,10],[13,-2],[0,-10],[20,-6],[3,6],[12,-7],[1,-11]],[[5701,4159],[6,-32],[8,-17],[11,-52],[14,-20],[16,-15],[1,-19],[12,-3],[-1,-30],[10,-30],[28,-13],[-1,-9],[10,-14]],[[5815,3905],[-10,-4],[-4,-12],[-18,-12],[-14,-31],[-16,-17],[-8,-42],[-12,-21],[-15,-11],[-8,-46],[-20,-12],[-27,12],[-17,19],[-9,-6],[-11,-46],[-25,-39],[-27,2],[-2,22],[6,16],[-6,39],[-7,26],[-11,15]],[[5554,3757],[0,159],[28,0],[0,213],[7,0],[55,18],[10,-22],[22,23],[5,-4],[7,11],[13,4]],[[5169,8070],[-10,-11],[1,-22]],[[5160,8037],[-8,-2],[-17,17],[-2,20],[-7,-12],[-11,0],[0,18],[-14,4],[-14,25]],[[5157,8110],[1,-2]],[[5161,8107],[-3,1]],[[5161,8107],[5,0]],[[5166,8107],[10,-25],[-7,-12]],[[5634,5813],[13,-31],[9,-32],[0,-28],[-5,-13],[2,-17],[17,-9]],[[5670,5683],[4,-22],[16,-8],[11,-24],[-2,-12],[5,-11],[15,-15],[13,-25],[-2,-10],[6,-23],[16,-16],[9,-39]],[[5761,5478],[-10,5],[-7,-8],[-36,15],[-7,-17],[-14,-5],[-9,4],[-28,-20],[-15,4],[-13,-34],[-14,7],[-10,-1],[-25,11],[-23,38],[-9,2],[-12,-13],[-6,-22],[-8,-15],[2,-8],[-1,-37]],[[5516,5384],[-3,8],[-9,-7],[-20,11],[-23,-10],[-4,-39],[-8,-32]],[[5449,5315],[-3,36],[-20,38],[-9,26],[0,20],[-9,18],[-4,33],[1,37],[-5,9],[10,16],[13,54],[6,15]],[[5429,5617],[11,-3],[14,12],[4,11],[8,-18],[24,25],[26,4],[14,34],[-6,11],[5,9],[17,1],[19,7],[15,23],[10,25],[12,18],[0,17],[22,24],[10,-4]],[[2956,7802],[-11,-2],[14,16],[-3,-14]],[[3302,7829],[1,-10],[11,1],[5,25],[18,-2],[1,-12],[-16,-18],[-25,-5],[-6,21],[16,45],[10,17],[7,-13],[-7,-35],[-15,-14]],[[3227,7860],[4,6],[15,-8],[31,0],[-24,-25],[-5,16],[-6,-8],[-23,17],[-8,12],[8,8],[8,-18]],[[2924,7775],[34,27],[9,31],[35,37],[26,12],[13,11],[42,70],[21,22],[57,33],[22,3],[16,-4],[16,-15],[-3,-29],[-25,-23],[-19,9],[-14,-4],[27,-25],[13,10],[8,-8],[-5,-20],[-12,-15],[14,-3],[-2,-13],[10,-34],[17,-4],[-4,-8],[10,-10],[28,-7],[6,-6],[15,14],[5,-13],[14,-11],[5,-12],[-62,-35],[-12,-9],[-7,9],[-8,-19],[-29,-44],[-11,1],[-11,14],[-2,19],[14,35],[38,33],[6,-6],[20,8],[-34,2],[-6,4],[12,17],[-41,-30],[-16,-8],[-19,4]],[[3135,7785],[-10,7],[2,18],[-10,12],[-1,73],[-12,16],[-16,-8],[-12,15],[-21,-44],[-8,-46],[-16,-37],[-13,1],[-5,-17],[-89,0]],[[3283,8012],[-28,4],[-21,13],[-9,15],[-17,13],[7,3],[39,-13],[29,-25],[0,-10]],[[1467,8101],[13,-8],[34,-11],[18,-45],[24,-18],[16,-32],[2,-16],[-17,0],[-27,15],[-6,10],[8,12],[-18,-6],[-12,27],[-14,2],[2,13],[-9,13],[-14,2],[0,9],[-19,2],[1,21],[-13,18],[16,2],[15,-10]],[[3459,8152],[-16,-12],[5,-24],[-17,-30],[-10,-45],[13,19],[12,4],[10,-6],[-13,-11],[-1,-16],[19,2],[1,-17],[25,21],[0,-12],[14,6],[10,-17],[-16,-20],[13,-8],[-5,-10],[24,9],[-1,-9],[-16,-16],[-7,-24],[8,-8],[19,29],[-7,-25],[1,-15],[11,17],[2,-16],[-10,-44],[-17,-2],[0,27],[-12,-18],[-3,8],[9,27],[-10,24],[-9,-25],[-8,-1],[-14,-29],[-13,-2],[-4,9],[12,7],[20,29],[-17,0],[-1,-8],[-18,0],[6,18],[-25,-15],[-32,7],[-29,-6],[-8,3],[-3,18],[28,33],[-10,5],[14,38],[21,72],[23,49],[16,12],[16,-2]],[[2757,8222],[-36,17],[5,8],[20,1],[11,-26]],[[1340,8248],[8,-29],[1,-26],[-30,48],[21,7]],[[1429,8233],[1,-24],[-7,-10],[-12,37],[4,17],[14,-20]],[[1393,8246],[-19,22],[15,-6],[4,-16]],[[1315,8301],[13,-5],[14,6],[-9,-50],[-9,-5],[-14,19],[-7,19],[1,18],[11,-2]],[[2807,8425],[-30,-20],[21,37],[9,-17]],[[3104,8654],[4,20],[8,-8],[-12,-12]],[[3199,8718],[-16,12],[20,1],[-4,-13]],[[2790,8779],[8,-13],[-11,-32],[-17,10],[0,17],[20,18]],[[2722,8810],[-3,-18],[-25,-25],[-19,-3],[-6,14],[15,29],[38,3]],[[2836,8840],[10,-14],[-14,-6],[-11,20],[15,0]],[[2870,8835],[-19,11],[6,6],[13,-17]],[[2641,8943],[8,10],[34,-19],[20,-19],[18,-8],[10,-29],[21,-2],[18,-17],[-19,-19],[-40,13],[-2,13],[-29,10],[-6,-17],[-25,-29],[-24,-9],[-8,32],[-39,-2],[26,27],[-4,21],[10,66],[13,16],[18,-38]],[[2648,8961],[-12,10],[6,13],[6,-23]],[[2674,8974],[-11,-2],[0,18],[11,-16]],[[2955,9088],[-21,0],[-11,12],[35,1],[-3,-13]],[[2594,9085],[-10,22],[15,4],[-5,-26]],[[2898,9119],[14,-5],[-1,-45],[-16,-10],[-33,-2],[-10,25],[16,32],[30,5]],[[2920,9121],[-15,10],[12,7],[3,-17]],[[2799,9149],[-5,6],[26,26],[7,-5],[-28,-27]],[[2861,9166],[-10,15],[19,-1],[-9,-14]],[[2793,9203],[-15,-16],[-22,10],[37,6]],[[2293,9195],[32,-17],[20,-29],[-19,-19],[-34,2],[-54,21],[-1,13],[39,18],[-6,18],[23,-7]],[[2924,7775],[-13,-6],[-27,-33],[-18,-39],[-53,0],[-12,-10],[7,-32],[-37,-31],[-29,-9],[-32,-31],[-7,0],[-13,18],[2,18],[15,19],[11,54],[-11,103],[-29,27],[-1,16],[-10,-2],[-6,27],[-10,-4],[-9,25],[-97,80],[-23,-14],[-20,-3],[-5,7],[-21,5],[-18,-8],[-41,32],[-16,-5],[-30,12],[-6,33],[-8,3],[-1,-21],[-89,0],[-59,0],[-95,0],[-71,0],[-47,0],[-72,0],[-59,0],[-71,0],[-47,0],[-84,0],[-73,0]],[[1589,8006],[-11,8],[-5,19],[-5,-4],[-14,15],[3,18],[-13,-11],[-8,9],[-10,33],[-40,2],[3,15],[-19,4],[-18,16],[2,19],[-6,10],[1,31],[16,12],[3,13],[-19,-19],[-9,-29],[-6,21],[6,43],[-6,-5],[-4,19],[-17,13],[0,15],[18,-13],[-17,21],[-13,-30],[-23,27],[9,24],[-9,12],[5,22],[18,42],[-7,6],[-6,-17],[-1,36]],[[1387,8403],[-1,13],[-42,28],[-7,-1],[-5,25],[-49,97],[-32,34],[-15,29],[-23,-11],[-7,-26],[-24,-14],[-5,18],[-43,50],[3,14],[-26,-9],[-28,7],[0,539]],[[1083,9196],[51,-8],[36,-25],[31,-11],[25,1],[5,23],[49,11],[-8,-14],[29,10],[9,13],[24,5],[41,23],[23,-8],[-37,-22],[-24,-4],[-42,-38],[19,-5],[-1,16],[31,22],[20,-8],[21,23],[30,10],[-1,-12],[39,33],[-8,18],[21,-16],[17,-33],[34,-22],[1,16],[25,28],[9,-26],[-6,-17],[19,1],[17,25],[42,-2],[34,-21],[43,-10],[42,-19],[33,-4],[11,8],[35,-19],[12,-15],[-22,-7],[-19,-21],[49,-12],[35,-1],[40,6],[24,12],[14,-15],[26,-7],[21,-28],[-16,-2],[31,-38],[-10,32],[15,-6],[-22,47],[6,19],[38,10],[18,24],[-24,-15],[-29,-1],[-2,-10],[-27,8],[11,18],[55,16],[20,-6],[5,-19],[35,-25],[20,5],[32,-22],[21,-2],[30,8],[40,-7],[17,5],[27,-11],[3,17],[-22,0],[-15,26],[39,6],[8,-12],[28,0],[-11,-43],[19,-12],[8,-20],[4,18],[-11,25],[5,19],[17,1],[38,32],[-11,22],[-20,-12],[12,33],[-50,26],[-16,31],[18,12],[-18,15],[4,27],[28,13],[-13,4],[36,24],[7,-13],[36,-24],[1,-28],[18,-14],[13,-28],[-28,-27],[68,-12],[-13,-11],[12,-23],[-3,-22],[10,-13],[15,44],[13,15],[32,-27],[6,-29],[-15,-3],[10,-36],[21,-26],[20,20],[15,30],[8,36],[23,24],[-14,8],[-1,36],[31,0],[18,-9],[36,-3],[-11,-8],[14,-14],[26,-8],[-18,-14],[19,-13],[-35,-12],[13,-30],[22,-24],[-5,-25],[-33,-28],[-21,-12],[-24,27],[13,-35],[-18,-3],[-32,22],[-32,-9],[21,-21],[-36,-40],[-23,2],[-45,32],[-35,-1],[30,-8],[26,-25],[52,-7],[-5,-23],[-30,-43],[-21,-7],[-18,12],[-11,-11],[-2,-20],[-20,-3],[-24,7],[30,-20],[-3,-24],[-16,-8],[-27,0],[12,-9],[-15,-5],[-23,-36],[1,-9],[-18,-19],[-17,-52],[-6,-34],[-3,-50],[17,-21],[28,2],[23,-85],[-8,-20],[45,18],[14,-1],[23,-14],[23,-8],[30,-29],[8,-16],[49,-23],[21,-22],[32,2],[42,-14],[5,-13],[-6,-35],[8,-24],[-4,-46],[19,-34],[1,-11],[17,-16],[19,-37],[15,-12],[2,17],[10,12],[10,-21],[6,14],[-7,13],[13,30],[-7,24],[-10,57],[3,21],[-20,38],[35,19],[32,32],[19,31],[2,62],[-17,49],[-36,33],[1,17],[19,28],[0,16],[13,21],[-14,36],[-11,10],[19,42],[-15,16],[-1,30],[19,13],[44,-15],[32,-6],[25,15],[24,-20],[3,-16],[12,2],[21,-17],[-4,-14],[9,-11],[31,-5],[6,-11],[16,10],[-8,-63],[6,-16],[-4,-16],[9,-3],[-4,-27],[30,-3],[23,-39],[44,39],[11,17],[5,29],[15,36],[14,-1],[25,-52],[1,-12],[17,-26],[-14,-12],[22,2],[-6,-17],[24,-17],[0,-14],[-13,-12],[30,-25],[-1,-19],[-28,4],[26,-23],[12,-29],[7,5],[16,-27],[-10,-23],[22,14],[21,-10],[6,-18],[23,3],[15,-18],[-21,-13],[-15,-18],[-38,-17],[-7,-27],[20,15],[26,26],[35,10],[8,-21],[-6,-18],[24,17],[19,-32],[0,-33],[-6,-16],[9,-13],[-37,-40],[-40,-9],[-32,-46],[-13,-14],[-20,0],[-26,-8],[-5,7],[-34,4],[-59,1],[-34,-6],[-13,-14],[-12,-36],[-19,-5],[-16,-15],[-25,-43],[-9,-3],[-1,-22],[-22,-39],[-16,-20],[-26,-13],[-22,-21],[-13,-27],[-16,-14],[2,-8],[-21,-21]],[[1818,9365],[29,6],[20,17],[43,-19],[-12,-21],[40,21],[-12,20],[18,-1],[34,-24],[17,-50],[23,11],[-10,14],[-15,56],[6,14],[32,-5],[41,-28],[29,-81],[-6,-16],[17,-19],[25,-7],[42,-30],[14,-1],[2,-25],[-35,10],[-9,-16],[-25,4],[10,-25],[18,16],[13,-4],[3,-23],[-44,-12],[-46,7],[3,9],[-32,4],[-11,17],[-25,-26],[-31,-6],[-25,-13],[-57,-8],[-42,-3],[-16,21],[-2,20],[-55,5],[-24,9],[-20,36],[74,15],[54,-5],[27,4],[-64,23],[-56,-7],[-45,3],[-21,21],[12,8],[72,19],[-7,5],[-59,-9],[-1,15],[-31,2],[-3,16],[21,17],[-8,12],[34,26],[73,26],[14,-6],[1,-24],[-12,-15]],[[2075,9384],[-46,34],[9,11],[31,4],[26,-11],[-1,-16],[-19,-22]],[[2790,9426],[35,1],[30,-10],[26,-24],[-4,-15],[-39,5],[-47,-9],[-19,27],[-17,9],[1,22],[34,-6]],[[2594,9274],[42,8],[6,-9],[5,37],[-18,3],[-16,17],[14,13],[32,-10],[-30,22],[-8,23],[17,30],[66,23],[29,-2],[28,-34],[8,-23],[-26,-23],[11,-23],[28,31],[64,-14],[-26,13],[20,17],[68,-14],[7,-15],[-14,-13],[33,4],[-7,-28],[22,11],[-10,-21],[36,15],[40,-12],[6,-13],[-22,-13],[33,6],[2,-19],[-14,-16],[41,19],[36,-13],[2,-10],[-45,-21],[31,8],[5,-16],[25,20],[17,-32],[-24,2],[-11,-11],[35,-6],[12,-18],[-50,3],[24,-10],[-16,-17],[11,-12],[34,-5],[-6,-22],[19,13],[-3,-25],[35,10],[41,-37],[16,-9],[-19,-23],[37,4],[7,9],[23,-23],[-20,1],[12,-17],[-27,2],[16,-22],[-18,-1],[-1,-21],[-19,-2],[-7,-39],[-10,11],[-17,-1],[-23,38],[15,14],[-27,-1],[-29,35],[-9,-16],[-19,10],[19,-27],[-17,-4],[-18,17],[17,-28],[34,-44],[37,-22],[3,-34],[14,0],[5,-44],[-19,29],[14,-50],[-13,3],[3,-18],[-33,27],[-5,-5],[-24,18],[-17,23],[5,-18],[-22,17],[-12,-1],[22,-31],[13,-4],[36,-43],[11,-8],[-10,-20],[-31,17],[-26,4],[-19,10],[-13,20],[-22,2],[-26,15],[-20,22],[17,7],[-23,9],[-34,41],[4,8],[-33,5],[-16,-11],[-47,-12],[-29,7],[-12,20],[9,21],[15,7],[3,15],[39,-13],[64,15],[-25,37],[39,34],[19,24],[-10,39],[-35,44],[-13,0],[-12,28],[-38,-20],[-10,15],[18,3],[5,16],[-51,31],[-3,19],[-16,3],[-24,20],[-7,-8],[18,-19],[-21,-13],[-57,13],[-20,-16],[-22,10],[-22,-2],[-68,10],[-2,18],[-42,-12],[-24,14],[-19,33],[39,-7],[25,4],[-17,10],[-37,6],[-20,10],[-6,25],[4,27],[18,43],[42,35],[37,8],[40,-8],[-32,-27],[-16,-28],[18,-57],[28,-24],[-44,-20]],[[2222,9443],[23,-12],[44,9],[14,-16],[-38,-36],[20,3],[17,-24],[15,5],[-1,-51],[-44,-22],[-27,-5],[-43,48],[-28,7],[-27,30],[19,14],[18,-19],[25,1],[-2,21],[-27,22],[15,16],[27,9]],[[2270,9439],[-32,1],[45,13],[-13,-14]],[[2412,9455],[26,-11],[32,3],[20,-8],[-49,-65],[-58,0],[18,-11],[-13,-30],[-32,-1],[-12,50],[-1,47],[26,-2],[-12,17],[18,9],[37,2]],[[1674,9453],[16,-6],[40,14],[64,-41],[-30,-17],[-72,-35],[-12,-20],[-18,-5],[-9,-35],[-35,-9],[-33,-21],[-29,33],[-51,18],[34,59],[-7,5],[29,40],[-25,33],[94,11],[49,-18],[-5,-6]],[[2108,9506],[-22,7],[15,15],[20,-15],[-13,-7]],[[2401,9505],[-2,-21],[-30,-1],[-53,23],[26,28],[29,6],[25,-16],[5,-19]],[[1713,9537],[-28,5],[44,26],[-16,-31]],[[2160,9562],[-10,-13],[-33,6],[-16,17],[49,5],[10,-15]],[[2110,9595],[28,-9],[-35,-6],[7,15]],[[2286,9588],[10,-60],[-9,-17],[-25,-7],[-47,0],[-13,23],[42,17],[-93,-11],[17,22],[19,-8],[-24,31],[20,8],[38,-28],[-22,28],[28,12],[18,-11],[13,14],[28,-13]],[[1991,9565],[35,-13],[18,13],[26,-18],[-11,-32],[-37,-16],[-45,8],[-81,-32],[-36,-6],[-38,16],[43,17],[30,2],[21,13],[-76,-9],[-7,21],[-12,-20],[-36,-7],[-21,12],[-28,1],[10,16],[26,0],[-21,16],[9,20],[29,19],[36,3],[13,-16],[31,0],[46,-38],[57,-2],[-22,20],[9,17],[-22,9],[29,28],[29,-32],[-4,-10]],[[2380,9614],[31,-9],[-3,-11],[49,7],[6,-14],[57,-8],[-4,-7],[-52,-2],[58,-22],[8,-18],[46,9],[33,-6],[59,18],[50,1],[51,-12],[19,-25],[-20,-8],[26,-8],[-24,-19],[-46,-7],[-28,6],[-5,14],[-36,-18],[-114,0],[1,19],[-30,-16],[-55,6],[-25,40],[8,26],[-26,32],[-61,-5],[-43,26],[2,14],[31,6],[37,-9]],[[1790,9640],[-22,-13],[14,-10],[-12,-21],[-24,-18],[-25,9],[7,19],[-30,-17],[-6,-21],[-12,13],[-11,-28],[-32,9],[-37,-4],[-14,11],[37,18],[62,46],[53,4],[30,13],[22,-10]],[[2504,9634],[-32,4],[-4,16],[27,-1],[9,-19]],[[2095,9627],[-18,2],[-23,32],[43,-24],[-2,-10]],[[2347,9664],[56,-1],[-1,-17],[-69,1],[14,17]],[[1838,9662],[-32,10],[18,9],[14,-19]],[[1932,9682],[19,-8],[-13,-25],[-60,-9],[-22,9],[-1,22],[77,11]],[[1949,9714],[11,-18],[-103,4],[76,20],[16,-6]],[[2327,9707],[37,-11],[-6,-20],[-52,-11],[-36,36],[2,22],[55,-16]],[[2127,9752],[29,-17],[19,4],[59,-30],[11,-41],[-39,2],[-14,18],[-46,10],[-49,-5],[-14,13],[34,0],[-3,22],[-46,8],[4,17],[55,-1]],[[2256,9791],[-5,-15],[-33,16],[38,-1]],[[2447,9857],[35,-31],[82,-13],[-7,-16],[27,-11],[-9,-19],[45,3],[17,-17],[-71,-38],[-14,18],[-24,-46],[-67,0],[-55,26],[-22,21],[80,22],[-48,3],[-56,-8],[-48,48],[59,-5],[-49,17],[7,20],[62,-7],[-44,16],[58,21],[42,-4]],[[3069,9965],[81,-4],[-32,-17],[79,15],[50,-20],[45,-5],[-19,-25],[-63,-17],[-61,-7],[-47,-21],[72,14],[7,-12],[-124,-53],[-48,-14],[31,-3],[-23,-18],[-58,0],[3,-15],[-77,-10],[46,-6],[-2,-10],[-55,-2],[58,-17],[-12,-10],[-42,-2],[33,-11],[-19,-18],[-59,-4],[-5,-28],[-66,-8],[63,-19],[0,-24],[-67,-23],[-13,20],[-110,-12],[-27,7],[-64,-1],[-32,5],[2,19],[30,16],[43,4],[-34,31],[16,9],[37,-7],[34,-22],[33,10],[-42,1],[-8,21],[28,19],[-46,-10],[-37,6],[20,34],[51,8],[48,-8],[23,8],[-55,5],[12,9],[-31,26],[-37,14],[3,27],[72,-5],[52,-29],[23,-2],[-54,34],[81,14],[89,20],[-52,4],[-63,-17],[-95,-7],[-61,6],[38,21],[-58,-19],[-64,21],[-19,21],[14,14],[-39,9],[99,17],[72,-5],[-42,11],[46,15],[59,-21],[37,6],[-28,13],[64,28],[84,6],[104,-2],[37,8],[71,-6]],[[5264,7907],[2,-13]],[[5290,7883],[-1,-19],[-9,4],[1,-21],[-17,4],[-7,10],[-10,-36],[-15,34],[-10,-26],[-27,-4]],[[5195,7829],[-8,28],[-19,3],[10,27],[33,38]],[[5211,7925],[23,0],[4,11],[26,-15]],[[8079,6335],[3,-19],[-4,-6],[-12,-49],[-9,-15],[-16,-13],[-22,18],[-1,47],[17,24],[-1,7],[39,15],[6,-9]],[[8384,6998],[-14,8],[3,7],[11,-15]],[[8625,7633],[-12,26],[-7,0],[-4,-30],[-13,-5],[-9,-20],[-25,-4],[8,-23],[-4,-10],[-28,10],[-5,13],[-7,-3],[-20,-47],[-31,-26],[-14,-26]],[[8454,7488],[-7,-10],[-22,-4],[-28,-23],[-9,-18],[-23,-18],[-2,11],[16,9],[3,18],[-14,-1],[7,26],[8,7],[13,34],[-12,17],[-19,4],[-19,-39],[-25,-19],[-15,-39],[-21,-10],[-14,4],[-6,-29],[12,-25],[26,-8],[4,-17],[-4,-24],[14,-12],[36,41],[25,-22],[13,4],[16,-7],[-9,-33],[-12,8],[-26,-21],[-9,-25],[-26,-33],[-14,-34],[-1,-15],[30,-27],[4,-24],[13,-49],[-1,-20],[14,-14],[1,-12],[10,-12],[3,-17],[-24,9],[-13,14],[-9,-8],[14,1],[2,-9],[25,-29],[6,-23],[-25,-21],[-5,-12],[-10,2],[5,-15],[20,9],[9,-17],[11,-7],[-16,-22],[12,7],[0,-27],[-6,7],[-7,-7],[6,-7],[-6,-22],[4,-15],[-14,-5],[-23,-68],[-5,-25],[-14,7],[8,-26],[-14,-17],[7,-2],[-1,-37],[-9,6],[1,-14],[-8,0],[-3,-17],[-9,-20],[-14,2],[0,-22],[-12,-23],[-20,-11],[-13,-41],[-27,-13],[-8,6],[-12,-11],[-1,7],[-14,-12]],[[8172,6482],[-6,-2]],[[8166,6480],[-10,17],[-2,19],[-7,-13],[5,-18],[0,-21]],[[8152,6464],[-1,-2]],[[8151,6462],[-24,-24],[-18,4],[-10,-16],[-24,-10],[-15,-20],[6,-40],[-9,-5],[-6,6],[-6,32],[8,32],[-11,3],[-12,-6],[-2,11],[-14,3],[-16,-9]],[[7998,6423],[-4,8],[-13,-3],[-19,22],[-4,30],[7,16],[-7,7],[-19,1],[-15,24],[-13,-14],[-1,-11],[-13,-11],[-5,5],[-6,-15],[-9,13],[-4,-10],[-5,10],[-9,-18],[-12,17],[-11,-21]],[[7836,6473],[-13,5],[-3,-20],[5,-30],[-2,-26],[-12,4],[-2,20]],[[7809,6426],[-2,11],[-11,-15],[-14,-2],[-7,17],[0,16],[-22,7],[6,20],[2,33],[-17,7],[0,25],[-4,12],[4,14],[-18,2],[-13,-13],[-5,34],[8,44],[6,3],[18,36],[2,38],[-2,57],[-12,5],[-4,28],[-16,21],[-5,-17]],[[7703,6809],[-7,9],[-22,9],[7,14],[-3,16],[-8,-8],[2,19],[-5,12],[-15,-14],[-3,-9],[-18,7],[-3,8],[-27,-36],[-13,-5],[-4,-16],[-10,-10],[-8,-19],[-21,-3]],[[7468,6757],[-3,7],[0,35],[-5,3],[-13,-13]],[[7447,6789],[-27,-2],[-12,14],[-9,-9],[-9,9],[-3,-9],[-8,21],[-13,0],[-1,18],[-9,-3],[-18,21],[-3,18],[-15,-2],[-11,24],[-9,5],[-19,24],[-3,13],[-17,0],[-6,-14],[-5,4]],[[7250,6921],[-13,17],[-10,6],[0,11],[-11,13],[-7,-2],[-12,27],[-10,-6],[-2,39],[-7,15],[-2,18],[9,2],[6,-13],[9,8],[-3,38]],[[7197,7094],[0,4]],[[7197,7098],[-9,15],[-3,30],[8,17],[-18,17],[-15,51]],[[7160,7228],[-9,-1],[-20,11]],[[7131,7238],[-5,13],[-11,-5],[-7,16],[1,25],[-15,13],[-2,10],[-22,6]],[[7080,7328],[6,9],[-6,11],[-4,54],[-13,8],[-14,-4],[-4,50]],[[7045,7456],[7,7],[1,24],[25,20],[0,9],[21,7],[2,-18],[23,9],[9,30],[36,6],[7,17],[25,23],[27,14],[-1,10]],[[7227,7614],[1,35],[4,14],[11,3],[-4,27],[-9,31],[2,32],[-14,11],[5,8],[43,19],[7,-8],[20,2],[-7,18],[5,35],[16,62],[26,-14],[18,0],[3,-8],[20,14],[5,10],[-4,39],[6,27],[21,7],[6,28],[16,5]],[[7424,8011],[15,4]],[[7439,8015],[-2,-17],[5,-18],[16,-9],[15,-22],[14,0],[21,-19],[4,-20],[15,-34],[-1,-45],[-8,-25],[5,-19],[20,-7],[54,-7],[32,-35],[18,-4],[16,-62],[14,-29],[22,5],[63,-13],[15,6],[48,-11],[7,-15],[29,-13],[18,-13],[23,7],[0,-13],[15,-2],[23,21],[25,18],[38,9],[33,-1],[30,19],[16,33],[16,9],[11,14],[-16,39],[14,37],[15,0],[5,-8],[27,-10],[13,10],[17,29],[29,2],[14,16],[10,32],[21,4],[28,20],[14,3],[24,-9],[6,15],[-4,12],[-35,53],[-20,0],[-12,-20],[-11,10],[-20,2],[-9,-10],[-10,15],[7,37],[24,72]],[[8240,8054],[33,-19],[25,27],[16,10],[-3,17],[23,67],[19,28],[-2,28],[-17,3],[26,38],[31,10],[42,5],[33,-24],[5,4],[20,-11],[18,-37],[4,-25],[9,-25],[5,-29],[16,-45],[-2,-20],[20,-19],[35,-8],[15,-25],[15,-6],[7,-31],[-3,-11],[8,-26],[41,2],[6,13],[22,9],[22,15],[11,-6],[-3,-13],[5,-20],[-16,-23],[1,-10],[-8,-43],[-20,-50],[-7,-27],[-29,14],[-11,-16],[-12,-4],[5,-49],[0,-42],[-5,-25],[-18,-10],[3,-12]],[[3136,2006],[-27,-3],[-7,14],[30,0],[4,-11]],[[3063,2021],[23,-6],[17,-14],[0,-15],[-17,4],[-11,16],[3,-17],[-22,17],[7,15]],[[3028,2023],[16,-2],[3,-9],[-18,0],[-1,11]],[[3017,2072],[10,-5],[-3,-15],[-10,8],[-13,-4],[-7,15],[6,9],[17,-8]],[[2974,2103],[20,-18],[-10,-16],[-21,8],[0,12],[-15,11],[12,7],[14,-4]],[[2933,2136],[26,-13],[-22,3],[-4,10]],[[3093,2023],[-12,-2],[-18,11],[-12,-7],[-47,12],[-2,8],[31,10],[14,-9],[-16,21],[9,28],[5,-21],[-7,-1],[10,-20],[14,3],[20,-6],[-26,17],[-3,23],[20,13],[-8,9],[-19,-3],[-2,21],[28,31],[6,-11],[15,1]],[[2921,2210],[8,-19],[-9,-18],[-7,28],[8,9]],[[2915,2287],[-11,-3],[3,19],[13,-5],[-5,-11]],[[2913,2371],[-7,-19],[-6,18],[13,1]],[[2931,2353],[0,-37],[-8,-13],[-6,28],[-2,-19],[-14,4],[13,30],[3,27],[12,2],[2,-22]],[[2902,2375],[-4,10],[3,30],[5,3],[6,-35],[-10,-8]],[[2928,2385],[-9,-2],[-9,28],[11,17],[7,-43]],[[2935,2552],[-10,-3],[5,26],[6,7],[-1,-30]],[[2972,2605],[-10,-4],[4,29],[12,-10],[-6,-15]],[[2952,2627],[-7,-6],[7,-36],[-11,-12],[-14,39],[14,15],[6,15],[5,-15]],[[2950,2687],[-17,7],[7,37],[3,45],[14,-5],[2,-33],[-9,-7],[10,-20],[-10,-24]],[[3098,2168],[-22,9],[-10,-15],[-33,-18],[-5,-58],[-9,-6],[-24,15],[-4,21],[16,2],[12,11],[-2,16],[-25,-22],[-8,-18],[-14,12],[9,28],[34,9],[-33,4],[-11,-31],[-26,28],[-7,27],[13,-7],[4,9],[15,-3],[18,16],[-12,0],[-16,-11],[-19,21],[8,20],[-25,16],[-8,22],[11,1],[1,17],[22,-33],[-9,26],[-12,17],[8,12],[1,22],[13,-1],[-15,11],[1,48],[-7,34],[20,-2],[13,-8],[-9,30],[-6,-16],[-12,-1],[-8,14],[14,30],[-5,23],[-4,-6],[-15,9],[1,13],[-19,-6],[20,26],[-3,16],[25,7],[1,17],[8,1],[-7,-39],[11,15],[-7,-41],[8,16],[-2,47],[13,8],[-3,21],[17,14],[2,17],[-16,16],[7,31],[-3,10],[6,23],[3,46],[10,-10],[-2,26],[-9,4],[8,12],[-12,11],[-6,-14],[-15,0],[-7,45],[8,58],[8,10],[5,33],[-9,49],[1,26],[-5,19],[2,23],[11,1],[16,91],[11,28],[7,54],[9,29],[-2,33],[4,7],[5,33],[-7,70],[0,49],[7,11],[3,28],[-6,42],[6,14],[7,55],[4,8],[0,23],[6,34],[2,34],[-3,13],[8,35],[-4,30],[2,44],[3,21],[-5,9],[1,18],[6,12],[7,78],[-3,44],[1,58],[-7,79]],[[3044,4127],[13,8],[2,29],[10,11]],[[4925,5730],[-2,-25],[4,-12],[3,-36],[-8,-16],[-5,-42],[-8,-32],[6,-49],[7,-12],[0,-24],[-6,-3]],[[4916,5479],[-24,5],[-7,6],[-14,-5],[16,0],[-26,-5],[-1,4],[-25,-12],[-26,-19],[-19,-19]],[[4790,5434],[-1,42],[5,25],[-2,19],[-9,8],[-5,18],[-9,2],[-8,11],[7,17],[1,15],[-5,28]],[[4764,5619],[7,0],[6,34],[-7,6],[1,13],[15,5],[-7,13],[4,17],[-3,19],[-7,5],[0,27],[5,11]],[[4778,5769],[9,15],[19,-14],[8,10],[0,16],[12,5],[0,-26],[6,-4],[5,11],[9,2]],[[5449,5315],[-3,-35],[-9,14],[-24,6],[-11,8],[-33,0]],[[5369,5308],[-2,6],[-52,2],[-1,-7]],[[5314,5309],[-37,0],[-5,8]],[[5272,5317],[4,44],[-14,50],[-13,8],[-2,27],[-10,12]],[[5237,5458],[7,25],[5,42],[19,35],[3,13],[10,14],[8,-7],[5,11],[18,-36],[8,12],[1,14],[8,13],[-3,9],[7,18],[6,40],[5,18],[11,13],[4,35],[8,12],[1,23],[7,33],[10,30],[19,21],[2,38],[-12,13],[-4,40]],[[5390,5937],[13,-6],[0,-9],[9,-18],[8,-55],[-3,-17],[1,-23],[6,-29],[10,-20],[-22,-4],[-17,3],[-7,-17],[15,-38],[16,-27],[9,-41],[1,-19]],[[5761,5478],[10,-27],[12,-17],[14,9],[14,-6],[9,14],[7,-9],[11,-29],[9,-8],[1,-11],[8,-9]],[[5856,5385],[0,-37],[-3,-23],[12,-10],[3,-13],[-22,-47],[-15,-24],[0,-18],[-7,-33],[-3,-47],[0,-29]],[[5821,5104],[-12,-25],[0,-22],[-8,-14],[4,-16]],[[5816,4928],[-2,-31],[8,-46],[-4,-14],[3,-22],[6,-17],[12,-20],[15,-66]],[[5854,4712],[-52,-17],[1,-12],[-15,-31],[7,-34],[0,-49],[-8,-47],[5,-22],[15,-27],[10,-5],[10,16],[0,-74],[-5,10],[-14,-8],[-19,51],[-25,18],[-10,36],[-6,-20],[-24,1],[-19,13],[-2,26],[-24,-13],[-4,22],[-10,12]],[[5362,4846],[-18,-7],[-5,13]],[[5363,4917],[9,-12],[8,9],[0,13],[7,-2],[10,11],[3,-30],[10,-1],[9,22],[14,25],[7,5],[8,27],[2,25],[0,49],[9,20],[8,33],[12,15],[14,26],[-1,16],[4,29],[1,51],[4,24],[0,28],[16,74],[-1,10]],[[5333,4896],[-6,25],[-18,37]],[[5309,4958],[4,16],[7,7],[9,-10],[2,20],[-11,29],[1,28],[14,-3],[10,5],[0,23],[10,0],[5,-22],[10,-6],[11,16],[7,-21],[6,8],[5,27],[3,76],[-18,21],[1,23],[6,20],[10,18],[-6,27],[-11,6],[-16,-11],[-3,24],[4,29]],[[3019,5867],[-18,-11],[-8,-27],[-6,-5],[-11,-36],[-4,-40],[-10,-33],[10,1],[6,-8],[3,-27],[7,-14],[-1,-54],[7,-5],[9,-22],[18,0],[16,6],[16,-9],[18,-46],[14,4],[13,-3],[17,8],[8,-3],[3,-12],[-10,-44],[-1,-44],[5,-37],[10,-28],[-15,-28],[6,-5],[12,-24],[9,-67]],[[3056,4940],[-10,24],[-11,2],[18,59],[0,6],[-25,26],[-12,-8],[-9,11],[-18,-16],[-14,1],[-7,8],[-2,28],[-9,8],[-2,19],[-19,22],[-7,29],[-16,22],[-5,-3]],[[2908,5178],[-16,14],[-12,18],[-5,-13],[-25,9],[-2,14],[-24,24],[-15,24]],[[2809,5268],[-4,9],[6,13],[6,-4],[-1,31],[5,10],[9,0],[12,23],[17,59],[-8,2],[2,45],[-3,40],[-4,7],[8,14],[-6,23],[3,23],[-5,6],[-10,31]],[[2836,5600],[4,28],[5,-10],[10,29],[-7,26],[2,9]],[[2850,5682],[18,-37],[-5,33],[18,24],[10,25],[8,1],[2,51],[3,16],[17,29],[11,-7],[1,-13],[7,32],[23,-2],[17,24],[12,11],[4,17],[12,13],[12,-5],[4,-16],[-5,-11]],[[6235,4488],[1,-16],[-8,11],[7,5]],[[6207,4498],[-7,9],[1,18],[6,-27]],[[4348,6048],[-5,-5],[-2,20],[7,-15]],[[4363,6119],[7,-7],[-8,-4],[1,11]],[[2676,5813],[6,-26],[18,-46],[6,-6]],[[2706,5735],[-10,-6],[0,-23],[6,-9],[-6,-10],[3,-10],[-6,-13],[5,-15]],[[2698,5649],[-8,29],[-7,8],[3,-18],[-12,12],[3,11],[-3,20],[-26,28],[-1,15],[-16,21],[11,-26],[-6,-12],[-15,17],[-6,23],[5,26],[-7,8],[5,10]],[[2618,5821],[3,7],[20,-14],[8,6],[20,-18],[7,11]],[[2706,6426],[-8,-7],[-6,20],[10,6],[4,-19]],[[2726,6518],[19,-6],[14,2],[27,-20],[14,-21],[14,-1],[32,-34],[1,6],[18,-28],[35,-23],[-5,-15],[22,-3],[13,-17],[8,-3],[-1,-15],[-24,-10],[-12,-1],[-19,6],[-41,-8],[14,26],[-1,20],[-21,4],[-14,19],[-6,32],[-13,-3],[-20,11],[-16,19],[-37,7],[-7,11],[11,9],[-6,8],[-24,1],[-20,-29],[-13,-2],[-2,-12],[-14,-10],[5,17],[-1,18],[7,14],[24,20],[39,11]],[[5908,7210],[6,12],[19,-2],[26,18],[-17,-21],[2,-14]],[[5944,7203],[-15,-3],[-2,9],[-19,1]],[[5944,7203],[-28,-28],[-15,9],[-4,13],[11,13]],[[5411,8113],[5,9],[10,-12],[30,-13],[-6,-11],[13,-18],[5,20],[21,-18],[26,-13],[8,-22]],[[5523,8035],[-19,-14],[-3,-13],[-12,-12],[-14,0],[-5,-13]],[[5383,7993],[-33,40],[-10,33],[5,18],[54,31],[12,-2]],[[5380,8316],[-15,-1],[2,16],[13,-15]],[[5270,8342],[11,-20],[26,-12],[-7,-12],[16,-7],[20,13],[13,17],[12,-3],[12,-16],[8,1],[4,-17],[11,-7]],[[5396,8279],[4,-26],[-8,-20],[14,-24],[-1,-40],[12,-33],[-6,-23]],[[5211,7925],[0,33],[6,27],[9,15],[-20,15],[-19,0],[-11,16]],[[5176,8031],[4,21],[-11,18]],[[5166,8107],[-3,13],[9,29],[-7,16],[22,9],[12,79]],[[5199,8253],[3,23],[20,0],[7,-14],[10,25],[8,5],[1,29],[-8,25]],[[5240,8346],[30,-4]],[[6192,5817],[-10,5],[-22,-6],[0,41],[17,45]],[[6177,5902],[8,-5],[12,19]],[[6197,5916],[8,-30],[-4,-13],[-13,-13],[-7,-14],[14,5],[6,-5]],[[6201,5846],[-9,-29]],[[3297,6062],[-4,22],[5,-6],[-1,-16]],[[5419,8353],[-12,5],[3,11],[9,-16]],[[5315,8345],[11,-4],[-8,-11],[-12,9],[9,6]],[[5295,8387],[5,-17],[-5,-15],[-18,6],[-4,20],[22,6]],[[5349,8391],[-10,-12],[-5,-38],[-11,21],[-10,1],[-9,30],[14,13],[6,-12],[15,22],[10,-3],[0,-22]],[[5240,8346],[-1,30],[-14,10],[1,58],[14,-6],[15,12],[2,18],[-14,-17],[-14,5],[10,17],[26,7],[11,20],[14,2],[2,-21],[-7,-14],[0,-22],[16,-6],[0,-13],[-15,-4],[-4,-21],[-16,-21],[-4,-26],[8,-12]],[[3006,6320],[4,9],[19,2],[18,-14],[9,0],[6,-22],[12,2],[-8,-12],[20,-7],[15,-22],[-8,-23],[-8,11],[-27,1],[-16,-12],[-5,7],[-10,-4],[-9,-33],[-9,7],[-3,13]],[[3006,6223],[0,17],[-6,16],[7,7],[-1,57]],[[5264,6925],[-6,-7],[7,-18],[7,-36],[1,-65],[2,-15],[-5,-32],[4,-22],[-1,-17],[-12,-23],[16,-47],[7,-43],[12,-2],[24,-15],[12,-45]],[[5332,6538],[-72,-88],[-53,-64],[-45,-80],[-45,-20]],[[5117,6286],[-25,-9],[-6,7],[4,16],[-2,24],[-22,15],[-5,11],[-15,8],[-2,10],[-12,15],[0,14],[-68,94],[-10,12],[-80,109],[-8,12]],[[4866,6624],[-35,42],[-73,89]],[[4758,6755],[0,22]],[[4758,6777],[0,59],[30,40],[13,14],[15,-3],[3,14],[20,3],[17,17],[6,18],[17,13],[20,21],[-6,8],[0,26],[23,10],[3,14],[10,3],[36,-1],[5,21],[-11,18],[-6,31],[-3,82],[-12,21]],[[4938,7206],[15,4],[16,23],[19,16],[13,3],[7,15],[26,20],[38,5],[10,11],[22,6],[28,0],[18,-13],[23,15],[2,7],[17,-8],[8,10],[16,-12],[22,3]],[[5238,7311],[-11,-25],[4,-7],[-2,-33],[4,-35],[-4,-27],[-21,-37],[6,-47],[10,-10],[7,-32],[20,-27],[13,-106]],[[2774,5013],[-3,12],[9,2],[-6,-14]],[[2908,5178],[-9,-3],[10,-23],[0,-24],[-4,3],[-4,-35],[-15,-35],[-16,-25],[-33,-24],[-14,-24],[-1,-16],[-8,-37],[0,-14],[-11,-25],[-7,4],[-8,27],[-12,8],[-12,-6],[4,12],[-5,8],[10,11],[-5,29]],[[2768,4989],[11,13],[6,39],[-8,7],[-10,-18],[-16,28],[5,6],[-1,46],[-3,12],[10,13],[5,15],[-3,13],[10,20],[3,24],[-2,22],[10,11],[23,13],[1,15]],[[2490,5139],[-3,15],[8,-2],[-5,-13]],[[2464,5185],[14,-45],[-3,-10],[-15,-4],[-1,12],[10,14],[-7,15],[2,18]],[[5951,6981],[18,-99]],[[5969,6882],[-5,-12],[-8,-67],[-6,-20],[-13,16],[-14,30],[-3,24],[-12,31],[-4,26],[-6,-20],[6,-14],[2,-22],[7,-25],[17,-34],[1,-21],[9,-24],[3,-31],[17,-55],[17,-70],[16,-31],[-7,-6],[0,-23],[5,-29],[15,-18],[18,-36]],[[6024,6451],[-82,0],[-69,0],[-63,0],[-53,0],[-64,0]],[[5693,6451],[0,416],[-7,59],[7,25],[-3,38],[8,18]],[[5698,7007],[6,-8],[15,6],[37,-14],[20,-16],[15,-3],[13,-11],[13,4],[27,31],[17,0],[2,8],[12,-8],[10,5],[-3,-15],[9,-11],[6,9],[8,-11],[15,6],[15,-2],[14,11]],[[5949,6988],[2,-7]],[[4925,8157],[1,10],[-13,16],[-3,21],[13,27],[-10,21]],[[4913,8252],[7,52],[-8,-3],[-12,20],[3,18],[11,11]],[[4914,8350],[25,28],[4,20]],[[4943,8398],[11,-13],[13,-53],[14,-9],[16,-22],[6,-29],[-12,4],[16,-20],[0,-31],[8,10],[14,-1],[17,-12],[-2,-36],[-9,-17],[-15,-6],[4,-21],[14,1],[-1,-13],[-11,-13],[-18,-9],[-30,0],[-18,7],[-17,-18],[-27,8],[-11,-6],[-11,-22],[-10,9],[-16,-6],[-14,-16],[-12,6],[9,8],[21,30],[12,24],[28,0],[13,25]],[[6072,6221],[8,-33],[7,-41],[4,-46],[14,-46],[0,17],[7,-5],[4,-18],[10,-5],[17,-18],[14,-37],[16,-23],[4,-21],[11,-20],[9,-9]],[[6177,5902],[-21,49],[-8,10],[-15,36],[-16,18],[-20,6],[-7,-4],[-5,9],[-7,-8],[-13,-1],[-13,22],[-9,-40],[-11,17],[-4,-10],[-14,-1]],[[6014,6005],[-3,50],[14,67],[2,44],[10,0],[4,14],[20,15],[11,26]],[[4572,6805],[0,-16],[-9,-5],[-3,12],[12,9]],[[4546,6818],[-9,-21],[-7,19],[22,11],[-6,-9]],[[4605,6806],[7,33],[1,-28],[-8,-5]],[[4504,6825],[-4,15],[7,2],[-3,-17]],[[4619,6849],[-3,6],[11,11],[-8,-17]],[[5087,7476],[9,-6],[-11,-23],[-20,18],[22,21],[0,-10]],[[5119,7478],[-13,8],[11,4],[2,-12]],[[5628,8560],[18,-8],[-30,-19],[-9,20],[21,7]],[[5636,8572],[-7,-7],[-17,14],[15,8],[9,-15]],[[5778,8610],[-17,-43],[2,-30],[7,-22],[-11,-18]],[[5759,8497],[-23,0],[-15,18],[-24,13],[-22,-11]],[[5675,8517],[6,28],[-21,0],[-8,17],[0,31],[25,16],[29,3],[10,7],[29,-10],[33,1]],[[5047,7631],[-8,6]],[[5047,7631],[9,-8],[33,5]],[[5089,7628],[1,-28],[-33,-38],[-29,-13],[-31,-68],[-7,-21],[6,-32],[9,-12],[-20,-25],[-8,-43],[-14,-1],[-9,-10],[-15,-37],[-46,1],[-17,-3],[-6,-11],[-14,-5],[-5,-17],[-8,-6],[-11,9],[-13,44],[-11,14],[-14,-1]],[[4794,7325],[-3,24],[11,34],[-6,16],[1,15],[8,15],[-13,39],[10,0],[8,39],[-3,41],[20,27],[-9,9],[-2,16],[-15,2],[-3,-7],[-23,-3],[-5,18],[-14,-10]],[[4756,7600],[2,19],[-6,30],[-9,10],[10,21],[33,25],[17,-13],[39,2],[32,-10],[28,6],[33,-11],[15,5]],[[4950,7684],[8,-20],[32,-13],[7,-8],[20,0],[2,9],[20,-15]],[[6192,5817],[-8,-21],[5,-25],[10,-18],[8,-29],[15,-23],[34,-22],[48,-35],[28,0]],[[6332,5644],[-57,-115],[-28,-63],[-26,3],[-12,-6],[-15,-16],[-6,-16],[-21,-9],[-4,-9]],[[6163,5413],[-21,-1],[-10,18],[-26,-24],[-8,-22],[-9,0],[-32,10],[-32,44],[-23,2],[-9,21],[1,27],[-15,12]],[[5979,5500],[-8,21],[-7,46],[-15,25],[-14,34],[-19,11],[8,33],[19,0],[4,14],[-1,45]],[[5946,5729],[7,45],[-1,16],[9,20],[9,0],[5,54],[13,42],[14,11],[3,31],[7,33],[2,24]],[[5804,9159],[-14,-30],[6,-18],[19,-7],[16,-30],[-24,-33],[29,-71],[-14,-29],[10,-41],[15,-18],[-13,-30],[32,-28],[9,-14],[-9,-27],[-54,-69],[-40,-43]],[[5772,8671],[-16,0],[-73,-25],[-39,-8],[-9,14],[-12,-11],[4,19],[-33,16],[-1,25],[7,30],[-10,23],[3,14],[-7,27],[15,20],[-3,9],[21,6],[6,20],[20,14],[19,22],[18,30],[20,4],[2,35],[-34,19]],[[5670,8974],[-13,37],[9,21],[-15,37],[5,29],[-24,25],[-22,7],[-38,30]],[[5572,9160],[28,14],[22,-32],[20,-5],[20,10],[26,-12],[27,23],[7,38],[14,15],[38,8],[35,-22],[5,-12],[-10,-26]],[[9951,4183],[9,-16],[2,-25],[-23,-10],[-13,8],[-3,15],[10,23],[18,5]],[[9999,4253],[-11,-21],[-1,-13],[8,12],[2,-12],[-14,-3],[-6,5],[-14,-15],[-6,11],[3,9],[39,27]],[[3325,2220],[28,2],[-18,-32],[-16,-13],[-13,8],[20,19],[-1,16]],[[3365,2231],[12,-3],[-3,-10],[15,6],[4,-19],[-23,-13],[0,-9],[-15,5],[-5,-17],[-5,22],[14,14],[6,24]],[[4815,8768],[-2,-16],[-13,19],[15,-3]],[[5263,7649],[2,-39],[-10,-43],[-11,12],[-7,45],[7,13],[19,12]],[[5083,8108],[-4,-3]],[[5160,8037],[16,-6]],[[5195,7829],[-7,-11],[10,-20],[-14,-18],[11,-21],[-2,-25],[20,-11],[-5,-18]],[[5208,7705],[-2,-2]],[[5206,7703],[-2,0]],[[5204,7703],[-24,-33],[-19,-4],[-21,20],[-10,-4],[-18,13],[-22,-23],[-6,-16],[5,-28]],[[5039,7637],[8,-6]],[[4950,7684],[8,9],[7,57],[1,35],[5,33],[-3,33],[-18,11],[-8,18],[-10,38],[-41,20],[-11,0],[-10,13],[9,7],[-11,11],[0,11],[42,16],[15,-17],[7,7],[28,-1],[-4,33],[-8,28],[17,-1],[3,-18],[27,-4],[16,8],[-6,16],[29,17],[10,14],[-1,27],[10,16],[17,5]],[[5309,4958],[-22,52],[-19,35],[-18,63],[8,-18],[6,2],[-13,17],[-10,41],[11,-2],[6,16],[1,40],[11,-15],[-12,27],[9,1],[-1,26]],[[5266,5243],[48,-2],[0,68]],[[6206,7552],[-19,27],[-7,-8],[-28,4]],[[6152,7575],[7,25],[-7,41],[-18,23],[-9,2],[-15,19]],[[6110,7685],[5,8],[13,-2],[26,-19],[20,2],[20,-8],[22,-20],[4,-11],[25,11],[25,-16],[-3,-15],[22,-18]],[[4998,5824],[0,-28],[12,-23],[-4,-40],[8,-8],[-3,-43],[8,-20],[-3,-5],[1,-50],[-2,-31],[5,-21],[12,-20]],[[5032,5535],[-6,-17],[-19,-3],[-17,-14],[-13,-16],[-23,-14],[-10,-13],[-20,15],[-11,4]],[[4914,5479],[-1,-2]],[[4914,5479],[2,0]],[[4683,5898],[-3,-13],[7,-10],[9,12],[7,-18],[11,18],[13,-10],[13,13],[-1,13],[11,-8],[5,-24],[-1,-15],[12,-19],[-7,-18],[9,-2],[3,-32],[7,-16]],[[4764,5619],[-5,8],[-6,-25],[-7,-3],[-6,12],[-5,54],[-7,10],[-14,-2]],[[4714,5673],[-12,-9],[6,19],[-5,34],[-17,43],[-17,-1],[-17,-7],[-1,-9],[-13,-35],[-8,-3]],[[4630,5705],[-7,28],[-4,0],[0,22],[-20,19],[-10,39],[-7,1]],[[4582,5814],[10,33],[26,13],[0,16],[-6,11],[7,6],[-1,21]],[[4618,5914],[17,-2],[1,-6],[22,-12],[25,4]],[[3289,6106],[-6,17],[7,-2],[-1,-15]],[[4534,5936],[-2,16],[7,14]],[[4539,5966],[30,0],[6,12],[10,0],[18,-17],[8,3],[4,-12],[-17,-4],[-19,17],[-4,-10],[-15,-4],[0,-9],[-23,-1],[-3,-5]],[[4582,5814],[-10,16],[-1,42],[-11,-11],[-4,12],[-9,1],[1,15],[-13,6]],[[4535,5895],[13,6],[19,2],[10,11],[41,0]],[[5242,5400],[6,-7],[-7,-24],[-7,4],[8,27]],[[5266,5243],[-6,6],[12,46],[0,22]],[[5662,7231],[14,-11],[10,4],[21,-7],[8,2],[2,-12],[14,11],[-3,-16],[-40,-6],[-2,9],[-30,8],[-2,18],[8,0]],[[5773,7253],[-4,14],[15,12],[-11,-26]],[[5572,7395],[4,-18],[-11,6],[7,12]],[[5724,7385],[-7,21],[9,-2],[-2,-19]],[[5650,7428],[1,-7],[18,-11],[5,-25],[-18,13],[-11,21],[-10,4],[15,5]],[[5733,7449],[5,-14],[-6,-6],[-13,8],[0,10],[14,2]],[[5557,7455],[-12,17],[6,4],[6,-21]],[[5706,7487],[-2,-11],[-9,12],[11,-1]],[[5723,7530],[-26,14],[-9,-8],[-9,6],[-11,-13],[-8,2],[2,-20],[-5,-10],[-10,-2],[-19,17],[-2,-21],[21,-56],[-9,10],[-1,-17],[-11,-9],[19,-13],[21,-24],[2,-30],[-16,19],[-13,-9],[13,-26],[-9,-6],[-12,12],[9,-40],[-2,-18],[-11,14],[-3,-19],[-11,34],[-5,-17],[-9,20],[0,26],[-13,20],[8,18],[12,7],[27,-20],[10,6],[-21,21],[-34,-6],[-13,40],[-12,17],[-8,21]],[[5582,7536],[17,2],[10,14],[22,4],[5,9]],[[5731,7587],[8,-20],[-8,-8],[0,-17],[-8,-12]],[[3583,9190],[-10,17],[19,0],[-9,-17]],[[3535,9213],[19,-8],[-2,-19],[-47,-13],[0,16],[-31,10],[15,35],[28,-6],[18,-15]],[[4293,9269],[3,-13],[-25,-14],[-10,6],[-36,-6],[5,25],[30,-1],[22,10],[11,-7]],[[3471,9376],[-15,-13],[-18,9],[33,4]],[[4500,9527],[11,-24],[-30,1],[-5,18],[24,5]],[[4483,9564],[-14,22],[10,12],[4,-34]],[[3752,9912],[-51,15],[-14,18],[65,-10],[0,-23]],[[4168,9997],[111,-16],[-112,-10],[83,-3],[52,6],[18,-17],[77,-11],[-60,-23],[-159,-7],[1,-13],[47,7],[75,-3],[24,-17],[33,18],[49,3],[3,-27],[-51,-39],[27,5],[58,32],[71,-10],[52,25],[87,-8],[28,-12],[-83,-41],[-65,-11],[23,-9],[-26,-13],[-74,3],[-17,-26],[24,-7],[8,-29],[-45,-21],[-32,-59],[25,7],[41,-13],[-36,-3],[13,-15],[49,-6],[-2,-28],[-67,6],[-26,-18],[13,-18],[36,-2],[21,-48],[-9,-14],[-22,10],[-14,-14],[10,-20],[11,17],[28,-31],[-4,-12],[-49,-10],[-34,11],[10,-19],[46,-8],[-5,-19],[-47,-13],[-22,4],[-32,25],[-44,-29],[51,7],[51,-27],[-7,-46],[-38,15],[-19,17],[-8,21],[-56,-19],[51,11],[4,-27],[76,-40],[-16,-14],[21,-1],[4,-58],[-44,-2],[-16,7],[-13,28],[-45,30],[4,-22],[-28,-14],[-44,4],[5,-21],[-25,-11],[68,-6],[-27,-13],[54,13],[68,-14],[25,1],[-21,-19],[-70,-43],[-26,-22],[-103,-27],[-34,-4],[-25,18],[1,-30],[-23,-15],[-30,-58],[-61,-47],[-19,2],[-10,-13],[-16,4],[20,35],[-13,-4],[-25,-36],[-43,-6],[17,-11],[-19,-16],[-23,2],[25,-32],[-16,-18],[6,-29],[-15,-12],[-9,-26],[-14,-19],[-29,-1],[23,-8],[-6,-51],[-10,-53],[-17,-19],[6,-22],[-28,-13],[-35,21],[0,14],[-18,10],[1,28],[-24,-16],[-37,2],[-31,42],[-7,37],[-22,14],[-1,20],[-30,47],[-2,21],[31,18],[-33,-12],[11,26],[30,9],[-16,5],[-19,-10],[-12,-23],[-7,7],[-7,64],[-24,8],[-4,28],[33,22],[23,25],[-44,-38],[-20,-5],[0,15],[16,24],[14,5],[-32,4],[-3,25],[41,24],[-39,-16],[19,38],[43,-8],[8,20],[-32,-12],[-28,5],[9,18],[21,5],[18,-10],[10,12],[13,53],[15,21],[-55,2],[-21,14],[-28,7],[-14,16],[10,7],[43,-5],[30,-17],[5,39],[-46,4],[3,16],[26,8],[-42,2],[-33,-16],[-28,15],[10,28],[-8,20],[24,14],[-9,18],[-17,0],[6,26],[-35,56],[13,5],[-65,50],[2,17],[-79,29],[-53,10],[-61,-13],[-45,3],[12,-12],[-41,5],[-35,21],[33,14],[-62,8],[-12,21],[53,1],[10,9],[62,-4],[-9,23],[-23,-8],[-68,0],[-58,23],[-21,15],[12,18],[94,20],[96,24],[28,50],[-40,-7],[-34,11],[16,18],[59,27],[93,16],[-1,27],[36,11],[90,-31],[-73,34],[43,11],[108,4],[7,-33],[23,37],[52,-24],[37,1],[-40,31],[59,-3],[100,-33],[21,1],[5,36],[-34,15],[115,3],[-132,4],[-1,12],[89,12],[47,-10],[27,14],[57,-20],[-10,24],[157,11],[85,-2]],[[2530,6099],[9,-7],[0,11],[10,-13]],[[2549,6090],[-28,-50],[2,-15],[-6,-11]],[[2517,6014],[-19,-29],[-1,-10]],[[2497,5975],[-14,11],[-15,0],[-19,17],[-11,19]],[[2438,6022],[1,44],[13,43],[33,0],[3,17],[-8,20],[-19,32],[11,0],[0,32],[51,0]],[[3483,5318],[10,22],[1,27],[6,24],[-10,26],[-3,22],[0,34],[8,19]],[[3495,5492],[9,25],[11,-13],[15,-8],[24,-40],[6,-5],[5,-33]],[[9020,5948],[-3,9],[8,8],[-5,-17]],[[3312,5483],[-18,43],[8,16],[-2,25],[22,17],[2,11],[-9,4],[-2,17],[6,18],[13,14],[6,14],[-5,14]],[[3333,5676],[22,-27],[20,-43],[-2,-40],[7,14],[9,-5],[12,-27],[9,-8],[1,-37]],[[3411,5503],[-4,-30],[-14,-6],[0,-14],[-6,-29],[11,-45],[10,-1],[0,-9],[11,-51],[12,-22]],[[2690,6047],[-7,1],[-29,-21],[-15,7],[-11,-31],[-11,-22],[-9,11],[-6,-15],[-12,0],[1,-28],[-8,-16],[-9,-2]],[[2574,5931],[-5,22],[-9,3]],[[2560,5956],[3,25],[-12,8],[-8,-7],[-17,27],[-9,5]],[[2549,6090],[17,10],[20,-8],[15,1],[16,13],[8,-6],[14,5],[12,-11],[8,1],[14,-22],[-10,3],[10,-16],[11,2],[6,-15]],[[5525,7829],[2,-31],[11,-9],[-9,-5],[-2,-17]],[[5503,7783],[18,-10]],[[5488,7657],[-19,26],[-14,9],[-12,-2],[-23,42],[9,2],[-16,25],[1,14],[-10,20],[-7,2],[-10,-30],[-9,17],[-1,22]],[[5377,7804],[22,-2],[5,12],[6,-12],[13,-2],[1,18],[11,10],[-1,17],[24,17]],[[5458,7862],[22,-29],[18,-13],[14,0],[13,9]],[[3006,6223],[-8,11],[-23,-5],[-21,5],[-7,-11],[-16,20],[7,16],[17,-8],[24,-5],[11,13],[-13,23],[3,22],[-19,12],[0,9],[14,7],[19,-11],[12,-1]],[[5614,7971],[20,-19],[1,-7]],[[5635,7945],[-18,-15],[-33,-83],[-22,-8]],[[5562,7839],[-20,2],[-17,-12]],[[5458,7862],[-6,21],[-6,0]],[[5476,7949],[17,-15],[27,2],[1,13],[31,7],[17,23],[28,0],[6,-12],[11,4]],[[8414,4555],[-2,9],[14,17],[1,-11],[-13,-15]],[[8333,4644],[15,-20],[8,-18],[-11,-15],[-8,5],[-16,25],[-14,4],[-1,15],[7,4],[20,0]],[[8473,4636],[-15,-33],[-18,-15],[-6,2],[0,35],[11,21]],[[8445,4646],[6,-5],[5,13]],[[8456,4654],[13,15]],[[8469,4669],[7,-6],[-6,-10],[3,-17]],[[8239,4688],[-7,-19],[-14,6],[6,5],[-1,18],[10,13],[9,-10],[-3,-13]],[[8452,4704],[-7,-13],[-2,12],[9,1]],[[8442,4707],[-11,-17],[-9,2],[15,20],[5,-5]],[[8857,4701],[-8,1],[6,11],[2,-12]],[[8460,4715],[13,-2],[1,-10],[-18,-6],[4,18]],[[8410,4688],[-32,-17],[-6,5],[-11,-7],[-13,8],[-18,-3],[-1,22],[20,13],[25,-20],[15,7],[6,-9],[17,18],[-2,-17]],[[8284,4705],[19,1],[5,-24],[-19,-8],[-2,10],[-14,-15],[-22,-9],[-8,5],[0,20],[11,17],[11,-4],[7,-16],[11,3],[-1,8],[-12,14],[10,9],[4,-11]],[[8206,4714],[7,-12],[-16,-15],[-14,14],[-4,15],[9,-4],[10,7],[8,-5]],[[8521,4742],[-9,-16],[-12,4],[-6,-6],[4,18],[18,6],[5,-6]],[[8847,4707],[-6,-7],[-17,-1],[0,9],[9,36],[8,11],[14,2],[5,-16],[-13,-34]],[[8647,4723],[-7,8],[5,23],[9,19],[4,-4],[-4,-28],[-7,-18]],[[8161,4775],[-10,-7],[-12,0],[-9,8],[4,10],[31,2],[-4,-13]],[[8736,4813],[-5,-22],[-8,3],[3,34],[10,-15]],[[7982,4838],[5,-10],[21,-6],[10,-29],[17,-5],[6,4],[12,-7],[13,-1],[7,21],[9,8],[5,-13],[11,1],[16,-15],[11,-1],[7,-22],[0,-14],[13,-10],[23,5],[9,-9],[-1,-31],[5,-25],[-24,16],[-12,11],[-16,-7],[-32,6],[-25,9],[-21,19],[-32,9],[-7,-7],[-18,6],[-7,8],[-31,10],[2,19],[-16,11],[-13,4],[9,19],[6,30],[23,-9],[6,11],[9,-6]],[[8742,4855],[0,-28],[-3,-10],[-13,16],[12,38],[4,-16]],[[8389,4871],[-6,13],[3,8],[3,-21]],[[8406,4880],[-10,-3],[2,32],[10,9],[-2,-38]],[[8421,4922],[-4,-12],[-2,-37],[-4,-16],[-7,11],[5,16],[5,44],[7,-6]],[[8423,4947],[-5,-7],[-3,12],[8,-5]],[[8230,4961],[-6,-11],[-1,35],[6,12],[1,-36]],[[8523,5006],[11,-22],[-1,-9],[-15,-11],[-13,12],[-5,25],[23,5]],[[8603,5019],[18,-7],[13,-32],[-1,-18],[-27,30],[-11,-7],[-18,11],[-11,-9],[-8,15],[-6,-20],[-1,16],[9,21],[22,2],[4,-6],[8,8],[9,-4]],[[8005,5011],[-4,-13],[-7,8],[-6,-7],[2,37],[11,-2],[6,-13],[-2,-10]],[[7782,5026],[-5,-5],[0,18],[5,-13]],[[7773,5049],[-9,10],[3,9],[6,-19]],[[8500,5081],[-2,-8],[-15,-1],[1,8],[16,1]],[[8620,5086],[2,-16],[-15,-1],[-4,7],[17,10]],[[8471,5086],[9,-10],[-13,-1],[-12,-7],[-1,19],[17,-1]],[[8762,5092],[14,-2],[26,-10],[-12,-5],[-27,13],[-1,4]],[[7945,5088],[4,-30],[5,-16],[12,-6],[-4,-29],[-18,14],[-6,37],[-18,8],[11,30],[14,-8]],[[8559,5088],[-16,-4],[-5,5],[7,18],[14,-19]],[[8422,5116],[9,-9],[-8,-6],[-3,8],[-7,-17],[0,24],[9,0]],[[8046,5116],[-7,-4],[0,15],[7,-11]],[[7753,5081],[-9,10],[-7,24],[9,16],[11,-41],[-4,-9]],[[8638,5108],[-6,3],[-3,18],[11,-1],[-2,-20]],[[8760,5146],[14,-4],[13,-21],[-7,-7],[-8,5],[-12,27]],[[8915,5033],[0,-215],[-3,-15],[3,-17],[0,-127]],[[8915,4659],[-29,58],[-17,-4],[-2,7],[-9,-12],[-2,7],[7,32],[-10,19],[9,3],[-13,17],[7,3],[-11,29],[-11,51],[-22,30],[-18,7],[-18,17],[-21,4],[-13,15],[-1,14],[-20,8],[-9,19],[-12,-33],[-7,-2],[-6,22],[0,24],[-22,29],[7,6],[14,-6],[9,18],[18,-8],[6,30],[-26,-10],[-19,2],[-8,17],[-2,22],[-18,10],[-8,-2],[7,33],[15,8],[9,15],[11,6],[10,-4],[17,-18],[14,-1],[8,-36],[-5,-20],[3,-34],[7,-30],[5,17],[2,-23],[4,1],[5,-24],[13,-1],[21,44],[4,18],[12,4],[10,13],[-2,8],[19,20],[23,-17],[34,-33],[21,-5],[10,-10]],[[7901,5165],[-4,-19],[-2,11],[6,8]],[[8543,5165],[1,-25],[-9,15],[8,10]],[[8633,5184],[13,-9],[-2,-13],[-9,-2],[-18,12],[1,6],[15,6]],[[7734,5153],[-4,0],[3,30],[4,-14],[-3,-16]],[[7910,5174],[-9,-2],[2,13],[7,-11]],[[7861,5227],[-16,8],[3,14],[13,-22]],[[7865,5234],[-13,10],[2,7],[11,-17]],[[7904,5254],[0,-21],[-7,19],[7,2]],[[7843,5241],[-3,23],[5,-9],[-2,-14]],[[7707,5268],[12,-28],[-2,-20],[-4,-2],[-17,48],[11,2]],[[7846,5268],[0,-8],[-12,17],[12,-9]],[[8468,5241],[-10,-25],[-8,-10],[-26,-4],[-6,10],[-34,-3],[-9,4],[-14,-4],[-12,5],[-7,-4],[-9,-38],[2,-26],[12,-22],[4,-19],[10,-2],[15,33],[8,-7],[12,11],[17,0],[-1,7],[12,3],[3,-22],[-10,6],[-7,-6],[-15,-34],[-25,-22],[14,-22],[6,-25],[9,-22],[-4,-28],[17,-25],[1,-17],[-22,-11],[-2,-17],[-14,9],[2,34],[-20,33],[5,20],[0,24],[-8,7],[-14,-18],[5,-44],[-2,-8],[1,-50],[-4,-25],[4,-19],[-19,-12],[-10,15],[7,58],[0,24],[-7,32],[-10,-5],[-4,8],[-2,41],[8,12],[7,32],[-1,30],[6,29],[9,12],[-3,37],[2,17],[13,42],[9,-7],[9,25],[14,-4],[5,-9],[23,-3],[10,-9],[6,5],[23,-6],[12,11],[20,39],[7,-13],[-10,-28]],[[7823,5304],[2,-17],[-7,-2],[-2,18],[7,1]],[[8547,5233],[4,-1],[8,18],[0,10],[15,14],[0,-26],[-12,-22],[10,-11],[3,-13],[-21,9],[-2,-24],[5,-31],[7,-19],[-8,6],[-10,27],[1,30],[-5,12],[2,21],[-5,23],[5,34],[8,17],[3,-46],[-10,-19],[2,-9]],[[8567,5302],[-6,14],[10,17],[3,-7],[-7,-24]],[[7679,5320],[-21,23],[3,9],[16,-23],[2,-9]],[[8008,5396],[-9,21],[7,10],[4,-14],[-2,-17]],[[8265,5424],[-3,-5],[9,-23],[-17,-3],[5,-25],[7,-8],[13,-46],[-8,-13],[10,-23],[23,-34],[-2,-9],[-20,-1],[-5,10],[-7,-18],[-6,-29],[-2,-32],[3,-26],[-12,-13],[-15,-24],[-9,-21],[4,0],[3,-42],[-4,-4],[-3,-31],[-9,-27],[-35,-33],[-6,45],[-1,-6],[-10,12],[-12,-8],[-2,14],[-6,-4],[-9,18],[-3,-15],[-9,-12],[-9,5],[-13,-13],[0,31],[-12,4],[-9,-7],[-13,9],[-10,-2],[-6,81],[-7,30],[-14,11],[3,10],[-7,8],[4,31],[-9,18],[-1,26],[4,40],[9,25],[7,6]],[[8044,5301],[-2,-11],[9,-26],[18,-31],[13,10],[22,-2],[10,14],[1,12],[9,7],[14,-1],[0,-7],[19,-10],[6,10],[18,5],[7,27],[0,17],[11,14],[-3,18],[10,12],[3,23],[0,29],[8,22],[35,1],[13,-10]],[[8522,5416],[-2,30],[5,-15],[-3,-15]],[[7680,5485],[9,3],[19,-3],[11,-20],[9,-27],[2,-18],[13,-20],[27,-33],[21,-57],[11,-14],[-2,17],[6,1],[12,-33],[9,-4],[10,-21],[2,-15],[9,-14],[11,-5],[2,-14],[13,3],[8,-24],[-10,-14],[3,-33],[11,-13],[13,-5],[5,-49],[8,-10],[-6,-29],[11,14],[14,-8],[14,-35],[-6,-29],[3,-16],[-3,-14],[1,-51],[-1,-38],[-6,-7],[-7,14],[-8,-11],[-12,13],[-2,-22],[-22,50],[-24,32],[-11,19],[-9,27],[-17,29],[-8,26],[-10,22],[-3,23],[-12,48],[-2,16],[-13,30],[-7,24],[-14,20],[-8,60],[-7,23],[-24,27],[-3,28],[-9,13],[-9,29],[-12,11],[-26,51],[-10,36],[0,16],[15,1],[8,-13],[13,-7]],[[7575,5848],[-5,17],[5,29],[0,26],[5,41],[4,-14],[-5,-18],[3,-23],[-7,-58]],[[7607,5577],[-6,18],[3,6],[3,-24]],[[7185,7020],[0,0]],[[7185,7020],[2,-33],[10,6],[12,-27],[7,2],[11,-13],[0,-11],[10,-6],[13,-17]],[[7250,6921],[-6,-2],[-14,-32],[-7,-43],[31,-28],[19,-27],[4,3],[20,-23],[16,-9],[22,7],[15,-11],[2,-15],[17,-17],[7,6],[5,-14],[7,3],[20,-13],[32,1],[4,-4],[4,20],[-6,24],[5,42]],[[7703,6809],[0,-16],[-13,-17],[7,-28],[-14,10],[-12,-4],[-31,-45],[2,-25],[-16,-49],[3,-8],[-11,-42],[-5,-26],[-11,8],[-11,0],[2,-19],[0,-32],[-7,-6],[-2,-28],[2,-18],[-6,-14],[-9,0]],[[7473,6456],[0,-25],[-29,2],[4,25],[-13,-27],[-14,-6],[-9,-18],[2,-36],[-6,-17],[-12,-23],[-20,-13],[-4,12],[-7,-18],[7,2],[-18,-29],[-19,-48],[-12,-12],[-7,-17],[-29,-39],[-1,-25],[-16,-20],[-13,1],[-9,-34],[-9,8],[-9,-10],[-7,-37],[3,-29],[-1,-29],[3,-12],[-5,-15],[7,-14],[-2,-38],[-13,-58],[2,-24],[0,-55],[-16,-3],[0,-13],[-10,-34],[2,-10],[-15,-10],[-7,-12],[-4,-29],[-14,-18],[-16,19],[-11,29],[-7,31],[-2,28],[3,-1],[-12,50],[-5,33],[-15,40],[-12,59],[-4,45],[-9,46],[-10,24],[0,19],[-13,37],[-4,24],[-2,42],[-11,86],[4,19],[-5,-2],[0,31],[-3,3],[0,29],[5,28],[-2,30],[-6,22],[14,17],[-16,-4],[5,16],[-11,13],[-8,-21],[6,-17],[-6,-22],[-28,-24],[-8,0],[-17,21],[-32,69],[9,-1],[25,17],[7,23],[-22,-12],[-11,5],[-17,19],[-6,22],[10,17],[-15,-15],[-2,15]],[[6893,6558],[15,6],[0,17],[24,1],[10,-6],[15,14],[5,-10],[11,9],[0,17],[-11,42],[0,14],[-11,2],[-5,21],[2,26],[-19,15],[2,20],[17,42],[12,8],[4,-15],[32,13],[11,43],[19,22],[12,49],[12,9],[2,20],[12,26],[8,8],[-3,39],[6,14],[15,11],[2,8],[-19,14],[0,14],[-8,0],[-10,24],[4,19],[-5,9],[8,19],[-9,1],[-3,23],[4,14],[9,6],[25,-7],[14,-8],[10,10],[18,6],[10,19]],[[7140,7206],[20,22]],[[7160,7228],[15,-51],[18,-17],[-8,-17],[3,-30],[9,-15],[3,-42],[-9,-8],[-6,13],[-9,-2],[9,-39]],[[4827,8299],[5,-67],[-8,-39],[-34,-8],[-1,-5],[-34,-25],[-29,-6],[9,12],[-17,-5],[15,15],[-22,0],[17,22],[-4,9],[21,13],[-16,1],[14,28],[-24,16],[11,11],[-6,7],[-2,32],[38,4],[14,17],[-18,2],[14,27],[20,3],[9,-6]],[[4799,8357],[-16,-30],[-10,-7],[22,-19],[9,17],[11,-21],[12,2]],[[6560,6734],[-21,-19],[-4,4],[26,20],[-1,-5]],[[6357,7398],[1,-25],[5,-20],[8,-8],[22,-8],[10,-21],[16,-16],[30,-7],[33,14],[17,-3],[-2,31]],[[6497,7335],[22,7],[5,18],[19,17],[19,0],[5,10],[21,-2],[4,-14],[15,-6],[12,-13],[14,2],[15,-13],[6,-16],[14,-12],[7,-19],[22,0],[4,-59]],[[6701,7235],[-5,-44],[-10,-19],[5,-11],[-12,-13],[0,-22],[12,-10],[-9,-24],[7,-51],[0,-43],[23,-7],[4,-31],[-19,-41]],[[6697,6919],[-8,-15]],[[6689,6904],[14,-28],[8,-34],[7,-14],[25,-17],[1,-59],[14,-4],[-4,-29],[-22,-6],[-4,-11],[-11,-8],[-5,-26],[-2,-33]],[[6710,6635],[-5,-5],[-21,10],[-44,8],[-7,8],[-14,1],[-27,12],[-4,14],[-3,38],[-5,18],[-15,11],[-20,-12],[-25,-28],[-19,14],[-10,-1],[-7,13],[-21,22],[-6,16],[-12,12],[-15,5],[-6,13],[-11,54],[-20,49],[-5,17],[-12,-11],[-19,18],[-1,-17],[-8,-4]],[[6348,6910],[-6,18],[-9,11],[0,30],[-9,0],[4,46],[-15,39],[-5,0],[-15,21],[-13,7],[1,16],[-7,22],[-11,18],[0,38],[18,31],[-5,23],[9,14],[-16,4],[-10,12],[-7,21],[-9,42]],[[6243,7323],[-5,33],[-11,11],[7,26],[-4,1],[-3,43],[-5,15],[10,2],[6,20],[6,-6]],[[6348,6910],[-16,1]],[[6332,6911],[-8,6],[-15,-5],[-10,-38],[-7,-14]],[[6292,6860],[-5,-2],[-45,7],[-52,75],[-22,34],[-44,47],[-37,13]],[[6087,7034],[3,13],[-6,8],[-8,51]],[[6076,7106],[46,48],[16,13],[6,19],[0,30],[4,21],[-2,42],[14,13],[16,29]],[[6176,7321],[11,15],[21,-7],[19,0],[2,-15],[14,9]],[[4568,8998],[16,8],[3,-33],[13,0],[17,-15],[6,-23],[-24,-34],[-17,-14],[-29,-10],[-16,-15],[-32,-8],[-24,-18],[-43,9],[-26,19],[-42,-4],[17,14],[3,14],[-15,28],[-39,-3],[-1,10],[56,8],[-16,10],[18,11],[-15,7],[-42,-8],[-3,12],[15,33],[29,-15],[-13,14],[13,15],[28,-23],[8,-44],[5,17],[16,9],[4,22],[21,-19],[2,18],[15,6],[21,-20],[-6,18],[21,-10],[11,13],[19,0],[-1,16],[13,3],[14,-18]],[[5993,7069],[-6,-19]],[[5987,7050],[-10,8],[-7,-22],[1,-20],[6,-2],[-9,-22],[16,5]],[[5984,6997],[0,-20],[-8,-35],[0,-22],[-5,-34]],[[5971,6886],[-2,-4]],[[5957,7003],[-6,-22]],[[5957,7003],[6,18],[12,68]],[[5975,7089],[8,0],[13,20]],[[5996,7109],[1,-27],[-4,-13]],[[5267,7538],[5,-18],[-5,-17],[2,-20],[-2,-32],[-4,-14],[-12,6],[-2,-15],[-11,0],[-5,13],[4,31],[-4,11],[2,22],[-8,20],[0,13],[18,4],[12,15],[10,-19]],[[5380,7862],[-8,-10],[9,-42]],[[5381,7810],[-3,10],[-38,-20],[7,-27],[-6,-8],[0,-23],[5,-16],[29,-30],[18,-65],[28,-33],[25,0],[-2,-29],[31,-20],[34,-40],[4,-15],[-4,-18],[-13,27],[-23,14],[-11,-21],[-4,-24],[17,-20],[2,-22],[-18,-16],[0,-18],[-14,-27],[-9,0],[7,45],[6,2],[-4,35],[-10,36],[-20,14],[-5,25],[-19,8],[-10,25],[-18,0],[-13,12],[-27,48],[-31,40],[-8,50],[-26,27],[-21,2],[-13,-25],[-16,-8]],[[5345,7712],[0,0]],[[5432,7385],[-9,-25],[-4,-26],[5,-18],[-5,-19],[-17,6],[-10,18],[-6,0],[-41,39],[3,15],[21,9],[13,-13],[50,14]],[[2854,6247],[25,-18],[4,-13],[-21,-4],[-23,2],[-7,17],[-7,2],[2,13],[10,5],[17,-4]],[[6087,7034],[-4,-7],[-57,-29],[28,-57],[-9,-10],[-4,-19],[-21,-8],[-7,-21],[-13,-18],[-30,10]],[[5970,6875],[1,11]],[[5984,6997],[3,16],[0,37]],[[5993,7069],[17,-20],[12,-4],[54,61]],[[8922,7567],[6,2],[1,-46],[9,-18],[5,-27],[-2,-41],[-7,-8],[-5,-33],[-11,-5],[-4,-16],[3,-33],[-2,-27],[-10,-29],[-1,-20],[8,-25],[-6,-3],[-6,-23],[-14,-21],[-3,23],[8,16],[-8,5],[-5,-30],[-11,8],[-4,-26],[-6,-12],[-5,29],[-13,-23],[-33,-8],[6,11],[-11,-3],[-5,15],[-4,-18],[9,-20],[-17,-13],[-9,-31],[-13,-1],[-8,20],[-2,23],[9,15],[-23,13],[-20,-16],[-34,-15],[-12,-1],[-2,-22],[-11,12],[-23,-4],[-1,18],[13,7],[14,18],[23,40],[16,8],[3,-6],[23,5],[27,12],[4,-13],[13,1],[9,13],[-3,13],[19,43],[4,37],[14,8],[-12,-23],[3,-16],[34,19],[9,13],[9,26],[10,9],[14,45],[8,36],[1,18],[-9,11],[7,22],[-1,21],[7,6],[3,23],[7,3],[3,-20],[14,2],[2,17],[-13,-4],[4,20],[8,-6]],[[8994,7725],[18,-10],[11,2],[13,19],[-6,-25],[6,-33],[14,5],[-9,-13],[-24,-13],[-19,-3],[-15,-27],[-5,-25],[-39,33],[-24,-12],[-14,12],[-4,-15],[23,-28],[-14,0],[-7,-17],[-9,-6],[0,37],[-7,13],[2,20],[17,24],[0,17],[22,-8],[4,31],[6,16],[4,40],[-6,26],[10,19],[21,-39],[31,-40]],[[8747,7159],[-7,0],[8,15],[-1,-15]],[[8842,7362],[-3,15],[7,14],[2,-16],[-6,-13]],[[8562,6719],[-15,-13],[17,22],[-2,-9]],[[8595,6809],[-8,2],[15,15],[-7,-17]],[[8731,7157],[8,-2],[3,-23],[-10,-12],[-6,-21],[-9,14],[-15,-8],[-12,-35],[-12,18],[-1,21],[-8,-2],[15,17],[8,24],[5,-10],[14,8],[-1,10],[13,7],[8,-6]],[[8643,7119],[11,3],[4,-9],[-5,-13],[10,-1],[3,-21],[-10,-24],[-9,-61],[-18,-23],[3,40],[-7,-17],[2,-13],[-11,6],[3,11],[-4,17],[13,49],[-7,27],[-7,1],[1,-15],[-11,-16],[-3,20],[9,-4],[-11,22],[2,8],[19,15],[10,17],[13,-19]],[[7140,7206],[-9,32]],[[7227,7614],[-8,13],[-12,2],[-9,18],[-93,10],[-5,-7],[-16,5],[-23,19],[-18,-13],[-2,-35],[-34,21],[-15,3],[-13,-5],[-9,-28]],[[6970,7617],[-17,-13],[-7,-11],[-26,-24],[-16,-31],[-4,-15],[-9,8],[-5,26],[-33,-3],[-7,48],[-13,0],[2,58],[-8,-7],[-8,25],[-17,23],[-13,-9],[-34,5],[-34,-8],[-25,43],[0,6],[-70,70],[-72,-33],[0,-211]],[[6554,7564],[-12,-4],[-19,40],[-16,19],[-10,3],[-24,-12],[-15,-20]],[[6458,7590],[-1,18],[5,27],[-4,15],[-19,5],[-6,15],[-9,0],[1,15],[-14,44],[-14,7],[0,16],[34,-3],[-13,16],[7,27],[11,6],[41,-3],[-12,13],[8,23],[3,41],[-7,16],[-12,2],[-9,-9],[-27,16],[-21,-13],[-12,-14],[-18,-8],[-3,-9]],[[6367,7853],[-17,13],[-3,10],[12,2],[-23,56],[-27,6],[-2,21],[-13,21],[12,33],[-7,12],[16,55],[7,6],[23,-34],[11,10],[-6,35],[19,14],[5,13],[21,12],[15,25],[23,-14],[20,12],[11,-11]],[[6464,8150],[20,-3],[17,-19],[15,-33],[-1,26],[22,-20],[16,0],[16,21],[14,3],[15,-10],[8,11],[14,-1],[15,-22],[26,-6],[7,16],[16,-12],[21,12],[5,21],[-6,13],[-25,12],[-11,19],[26,20],[-6,24],[7,13],[26,-2],[1,10],[-23,10],[9,11],[-15,8],[10,25],[17,-6],[57,18],[13,7],[19,-1],[9,15],[30,5],[45,15],[1,11],[21,13],[37,-12],[12,7],[13,-40],[-3,-23],[27,1],[10,-15],[4,9],[31,-11],[-8,-7],[0,-21],[46,22],[17,16],[32,20],[-7,-29],[36,-39],[32,-70],[27,-74],[12,10],[1,14],[12,6],[5,-18],[11,-15],[29,0],[24,16],[14,-10],[11,-31],[20,-14],[8,-25],[25,-6],[12,6],[19,-30]],[[6163,5413],[-15,-45],[-11,-22],[0,-83],[1,-48],[0,-81],[15,-41],[0,-7]],[[6153,5086],[-7,-14],[-11,-5],[1,-10],[-8,-19],[-10,-6],[-4,-35],[-4,-6],[-6,-33],[-11,-41],[-4,-3]],[[6089,4914],[-41,60],[-4,8],[1,26],[-97,113],[-7,5]],[[5941,5126],[1,68],[15,50],[9,11],[5,23],[0,25],[-7,44],[-8,19],[-1,30],[-12,31]],[[5943,5427],[36,73]],[[7045,7456],[-36,-6],[-3,-9],[-12,4],[-9,20],[-21,-11],[-3,9],[-37,-3],[1,26],[18,13],[15,-14],[12,16]],[[6970,7501],[12,2],[9,-6],[12,16],[6,-2],[22,23],[-13,4],[-14,17],[-8,2],[-6,20],[-7,-24],[-18,7],[-16,17],[18,27],[11,8],[-8,5]],[[6961,7474],[0,0]],[[6992,7482],[0,0]],[[6973,7481],[0,0]],[[7900,5783],[-14,11],[-11,1],[4,16],[-4,15],[-5,-13],[-7,9],[1,22],[-6,16]],[[7858,5860],[-6,20],[2,20],[-8,14],[-5,50],[7,2],[13,39],[15,9],[24,-3],[10,4],[8,-12],[3,7]],[[7921,6010],[19,-24],[7,7],[-5,17],[16,13],[12,-14],[15,22]],[[7985,6031],[-4,-23],[1,-18],[6,-27],[-3,-34],[2,-23],[-4,-14],[-7,-1],[-7,-12],[-14,-7],[0,-15],[-11,4],[-5,-9],[1,-18],[8,-14],[0,-14],[-11,11],[-19,-15],[-7,-12],[-11,-7]],[[8508,7097],[1,14],[15,3],[-1,-10],[-15,-7]],[[8565,7408],[7,-25],[20,-52],[4,-31],[-3,-24],[5,-16],[-6,-41],[-7,-12],[-16,-1],[-2,-14],[-11,9],[-11,-6],[-9,-26],[-2,17],[-10,-19],[-11,-5],[-7,19],[8,1],[-6,20],[5,35],[6,7],[-5,23],[-1,30],[-9,0],[1,11],[10,8],[11,-6],[-11,43],[2,7]],[[8517,7360],[12,29],[27,1],[9,18]],[[5598,7617],[-14,-4],[-13,-17]],[[5557,7633],[8,18]],[[5565,7651],[12,25],[17,-30],[10,-7],[-6,-22]],[[6345,6828],[-21,-1],[-7,27],[-25,6]],[[6332,6911],[5,-24],[-12,-10],[9,-2],[11,-47]],[[7836,6473],[13,-28],[3,-14],[7,2],[-3,-24],[7,-22],[14,-11],[13,14],[14,-17],[-7,-12],[16,-15],[0,-9],[-10,-24],[-15,4],[-3,-19],[19,-28],[16,-14],[-2,-10],[11,-17],[4,-18],[25,-51],[0,-17],[25,-38],[-7,-11],[14,-32],[-5,-13],[0,-18]],[[7921,6010],[9,14],[0,45],[3,17],[-6,19],[-10,10],[-8,28],[0,47],[-12,20],[-11,29],[-18,5],[-7,-22],[-9,-8],[-18,19],[-27,-42],[-5,6],[5,25],[-1,22],[7,33],[-2,33],[-20,0],[-3,12],[3,21],[-5,15],[-6,-4]],[[7780,6354],[6,28],[12,29],[11,15]],[[5975,7089],[15,67],[9,22]],[[5999,7178],[9,3],[8,-26],[-16,-25],[-4,-21]],[[4790,5434],[-20,14],[-24,27],[-32,59],[-12,10],[-4,12],[-18,26]],[[4680,5582],[9,23],[15,26],[3,21],[5,3],[2,18]],[[5693,6451],[0,-115],[-27,0],[0,-29]],[[5666,6307],[-54,54],[-80,82],[-89,91],[-27,-26]],[[5416,6508],[-21,-21],[-21,32],[-42,19]],[[5264,6925],[8,6],[9,19],[3,21],[-4,25],[20,36],[19,19],[0,44]],[[5319,7095],[22,-19],[13,-3],[14,7],[25,-12],[10,-12],[18,-7],[9,-42],[9,-17],[27,-8],[39,-25],[20,-29],[10,0],[12,12],[12,34],[-5,27],[0,26],[11,25],[20,20],[15,9],[16,-1],[25,-17],[0,-17],[29,-19],[15,1],[10,-8],[3,-13]],[[7221,5749],[7,-1],[13,-25],[19,-54],[1,-18],[7,-19],[5,-28],[-2,-39],[-11,-22],[-25,-17],[-11,12],[-6,39],[-6,71],[7,36],[0,9],[6,28],[-4,28]],[[5778,3419],[-8,2],[-11,21],[-7,37],[6,5],[12,33],[25,21],[18,-30],[3,-10],[-8,-37],[-19,-13],[-11,-29]],[[5652,8291],[-3,15],[-17,9]],[[5632,8315],[2,27],[-8,13],[-13,0],[-24,12]],[[5589,8367],[-5,46]],[[5584,8413],[29,20],[68,-7],[8,7],[49,-43]],[[5759,8497],[14,-16],[-1,-22],[11,-32],[-2,-9]],[[5584,8413],[1,44],[18,43],[23,9],[20,-37],[18,-5],[13,14],[-2,36]],[[4758,6777],[-2,-29],[-16,-3],[-11,-14],[-14,0],[-19,9],[-13,-8],[2,-14],[-12,-32],[-8,-3],[-7,-53],[-9,-25],[-9,-10],[-9,-28],[-16,-15],[-4,-13],[-6,-54],[0,-16],[-12,-26],[-6,-24],[-25,3],[-35,-4]],[[4527,6418],[2,27],[7,22],[5,3],[20,87],[25,51],[1,28],[12,60],[20,22],[6,14],[8,44],[7,16],[27,12],[12,10],[13,24],[16,20],[21,51],[3,23],[-7,21],[2,41],[13,38],[3,28],[20,39],[45,41],[15,47],[12,58],[15,8],[1,-10],[14,-27],[14,-7],[18,7],[8,-4],[12,11],[4,-16],[17,-1]],[[5783,7802],[-3,29],[4,39],[-5,20],[-13,21],[-19,50],[-8,2]],[[5739,7963],[6,8],[24,2],[39,-26],[0,-26],[12,-14],[1,-18],[8,-8],[-1,-27],[-19,10],[-6,-6],[1,-23],[-21,-33]],[[6375,4468],[12,-37],[6,-56],[2,-40],[7,-37],[-8,-34],[-10,31],[-5,-5],[1,-32],[4,-24],[-11,-43],[1,-38],[-5,-37],[-7,-34],[-24,-156],[-8,-36],[-9,-75],[-8,-46],[-7,-24],[-9,-10],[-15,-4],[-16,-18],[-11,-2],[-11,14],[-13,6],[-8,13],[-11,39],[-2,70],[-5,13],[-4,48],[7,39],[8,11],[17,72],[1,29],[-6,19],[0,20],[-5,26],[-2,52],[13,44],[1,24],[12,2],[9,13],[10,-2],[3,10],[17,6],[21,32],[10,26],[2,-17],[8,26],[-1,10],[7,24],[-4,9],[5,12],[6,-7],[15,26],[4,47],[7,21],[9,-20]],[[1883,6854],[-3,-13],[-6,4],[2,19],[7,-10]],[[1857,6857],[-10,15],[-3,15],[11,-15],[2,-15]],[[2301,6679],[0,-12],[-10,-42],[-6,-60],[0,-60],[-4,-18],[7,-59],[14,-57],[18,-43],[5,-30],[9,-17],[4,-17],[18,-3],[10,-11],[7,-19],[10,1],[18,13],[19,3],[4,8],[21,6],[5,-14],[14,9],[-4,15],[19,26],[1,22],[6,11],[0,37],[4,26],[13,14],[28,9],[21,12],[24,-10],[4,10],[8,-11],[-1,-31],[-16,-38],[0,-21],[-7,-13],[7,-3],[-9,-66],[-3,-10],[-5,12],[0,21],[-7,-21]],[[2438,6022],[-16,34],[-31,52],[-13,14],[-8,-5],[-5,13],[-17,-26],[-29,-19],[-19,15],[-16,3],[-10,14],[-11,6],[-7,13],[-25,11],[-33,28],[-20,25],[-7,16],[-24,8],[-21,15],[-16,34],[-25,23],[-17,44],[-3,21],[11,8],[-7,13],[8,18],[0,22],[-12,28],[-4,37],[-17,33],[-19,47],[-25,35],[-9,26],[6,1],[-26,22],[-11,15],[0,17],[6,16],[-7,23],[-8,0],[-5,22],[-15,14],[-4,19],[2,12],[-16,6],[-29,60],[-2,15],[-15,41],[-9,38],[2,31],[-16,9],[-9,17],[-9,-5],[-19,20],[4,-14],[-2,-29],[7,-37],[-1,-16],[7,-23],[16,-23],[9,-29],[8,-7],[3,-17],[7,-5],[2,-34],[13,-18],[3,-19],[14,-35],[-4,17],[8,-10],[6,-53],[9,-15],[8,-38],[0,-16],[5,-22],[8,8],[7,-10],[9,-29],[7,-11],[-2,-18],[-14,-16],[-11,41],[-33,49],[-16,28],[3,37],[-9,37],[-18,21],[-3,21],[-13,-13],[-6,14],[-17,15],[-3,12],[-14,23],[13,-3],[8,5],[6,20],[-2,22],[-23,45],[-19,22],[-5,31],[-4,7],[-2,22],[-17,44],[1,16],[-6,9],[-8,31]],[[1746,7058],[67,10],[-4,-12],[27,-17],[79,-51],[79,0],[0,26],[49,0],[8,-19],[24,-37],[9,-9],[13,-56],[11,-17],[26,-22],[8,13],[7,30],[8,7],[25,-5],[22,-41],[10,-43],[11,-26],[11,-18],[1,-30],[12,-37],[26,-19],[20,-11],[6,5]],[[5598,7617],[22,4]],[[5117,6286],[0,-123],[-1,-24],[-10,-52],[-9,-19],[-61,-5],[-10,-16],[-20,-4]],[[4683,5898],[0,31],[-7,25],[-5,-3],[-6,18],[1,33],[-6,15],[-2,20]],[[4658,6037],[5,-4],[7,14],[3,25],[8,12],[16,-28],[4,15],[22,-2],[22,7],[101,0],[5,46],[-8,16],[-9,157],[-3,72],[-4,57],[-11,199],[50,1]],[[7602,6310],[7,-7],[-5,-8],[-2,15]],[[7780,6354],[-4,6],[-14,-3],[0,-13],[-12,-4],[-1,-12],[-15,-10],[-11,5],[-7,-18],[-3,-31],[2,-18],[-11,-6],[10,-27],[-1,-14],[21,-47],[6,-38],[4,-8],[-7,-14],[0,-33],[-11,-13],[2,-19],[9,-26],[13,-24],[3,-21],[-1,-27],[8,-30],[6,-47],[-11,-39],[-13,-27],[-1,-25]],[[7741,5771],[-4,-9],[-3,37],[6,18],[2,34],[-3,9],[2,28],[-4,54],[-9,33],[-2,-5],[-7,60],[-3,10],[-3,58],[-3,8],[0,26],[-6,3],[-5,33],[-9,18],[0,-21],[-3,-19],[-28,-31],[-5,-19],[-8,-5],[-11,13],[-6,-4],[0,28],[-12,-22],[1,29],[9,61],[-5,36],[-13,55],[-1,-15],[-13,27],[9,-7],[6,12],[-17,35],[-10,1],[1,19],[-9,9],[0,-15],[-11,28]],[[5533,7691],[11,-21],[21,-19]],[[5537,7595],[-23,33]],[[5512,7635],[2,-7]],[[7439,8015],[10,16],[22,2],[18,14],[10,21],[40,23],[26,22],[19,-16],[33,-2],[10,-31],[26,-5],[15,5],[24,-7],[7,-9],[26,22],[5,22],[-13,26],[5,29],[21,26],[3,13],[29,-21],[14,-2],[47,-21],[4,-43],[16,-16],[21,-11],[50,19],[22,-10],[11,2],[18,-21],[19,-2],[0,-14],[19,-21],[18,0],[38,-11],[19,13],[39,8],[13,17],[31,28],[20,-8],[20,-15],[13,7],[13,-10]],[[5891,3638],[-4,50]],[[5887,3688],[1,87],[-5,33],[-8,27],[-6,58]],[[5869,3893],[31,64],[2,37],[14,39],[-6,34],[2,15],[-4,17],[5,6],[3,74],[-3,23],[2,19],[-14,12],[-14,5],[-20,23],[-23,2],[0,20]],[[5844,4283],[-5,37],[83,57]],[[5922,4377],[12,-32],[19,9],[5,-11],[1,-40],[-8,-34],[4,-21],[25,-49],[-4,31],[6,23],[11,6],[3,69],[-5,23],[-19,47],[-12,16],[-6,72],[8,30],[8,1]],[[5970,4517],[19,0],[4,7],[21,-15],[13,9],[11,-9],[22,25],[9,-8],[13,15],[10,2],[13,12],[18,26]],[[6123,4581],[4,-11],[-1,-24],[-4,-11],[3,-39],[-1,-32],[2,-19],[2,-99],[5,4],[1,-18],[-6,-17],[-2,-22],[-10,-23],[-10,-33],[-17,-20],[-4,-11],[-26,-15],[-18,-19],[-16,-30],[-19,-45],[-11,-7],[-13,-29],[-12,-18],[-6,5],[-1,-43],[8,-21],[8,-47],[2,-23],[6,-19],[1,-34],[-6,-44],[5,-5],[-3,-20],[-8,-22],[-15,-17],[-35,-24],[-16,-22],[-5,-21],[9,-14],[-1,-35]],[[5913,3637],[-22,1]],[[5960,4489],[0,0]],[[5963,4486],[0,0]],[[4658,6037],[-12,18],[-7,22],[-8,11],[-8,26],[-9,0],[-12,25],[-17,4],[-23,-10],[-14,3],[-8,-40]],[[4540,6096],[0,26],[5,37],[8,35],[0,57],[-6,36],[-6,12],[8,37],[-6,37],[-5,-1],[-7,26],[-5,-16]],[[4526,6382],[2,30],[68,0],[42,1],[-4,85],[15,26],[17,11],[0,146],[92,0],[0,74]],[[3310,6019],[-7,-2],[-4,22],[8,-5],[3,-15]],[[6601,4004],[-8,-1],[0,15],[8,14],[4,-13],[-4,-15]],[[5922,4377],[-6,-1],[-9,25],[4,5],[5,35],[-1,11],[12,12],[-4,22],[2,24],[-3,9],[5,22],[-3,18],[10,15],[-3,20],[-6,12],[-3,23],[-8,13]],[[5914,4642],[14,-12],[15,-3],[1,10],[13,-26],[5,-39],[-2,-24],[10,-31]],[[7834,5543],[7,-4],[6,-18],[12,-19],[13,-39],[1,-26],[-3,-36],[3,-14],[0,-34],[10,-21],[11,-49],[-1,-21],[-5,15],[-14,-17],[-4,13],[-18,18],[-39,59],[0,21],[-16,41],[-3,40],[-7,54],[0,22],[-7,27]],[[7780,5555],[7,6],[19,-17],[-2,-28],[3,-8],[13,16],[9,-5],[5,24]],[[8044,5301],[7,-16],[15,-3],[9,-11],[12,13],[2,40],[6,-3],[0,15],[7,12],[34,16],[14,35],[13,29],[5,20]],[[8194,5466],[3,-29],[5,-3],[-4,32]],[[8198,5466],[12,17],[-5,8],[5,16],[6,-4],[9,34],[10,22],[7,27],[1,-22],[13,20],[1,-16],[9,-9],[1,-30],[10,3],[3,-11],[10,-5],[3,-10],[17,-9],[2,-14],[-16,-13],[-12,1],[-2,-9],[11,-19],[-2,-8],[-26,-11]],[[5649,4168],[25,9],[20,-5],[7,-13]],[[5554,3757],[0,-212],[-8,-3],[-14,-25],[-24,3],[-24,11],[-2,25],[-9,13],[-8,-24],[-9,-10]],[[5456,3535],[-20,38],[-12,40],[-3,39],[-6,16],[-3,34],[-2,53],[-8,35],[1,86],[-6,30],[-24,73],[-8,42],[-19,73],[-11,22],[-10,45],[1,29]],[[9649,3965],[-10,14],[5,14],[5,-28]],[[9560,4017],[7,-2],[21,-27],[13,-29],[18,-21],[19,-36],[-6,-7],[-17,16],[-35,47],[-21,46],[1,13]],[[5416,6508],[5,-62],[0,-22],[12,-33],[-2,-5],[12,-30],[-6,-21],[-8,-177],[-36,-82],[-20,-64],[4,-39]],[[5377,5973],[-5,0],[-21,-22],[-5,-13],[-30,15],[-26,-1],[-15,-12],[-8,-18],[-24,5],[-19,22],[-8,3],[-22,-20],[-20,39],[-22,12],[-7,-7],[-16,-1],[-14,-16],[-3,-30],[-11,-23],[-2,-49]],[[5377,5973],[13,-36]],[[5237,5458],[-9,8],[2,-20],[-28,0],[-8,-9],[-26,-6],[-13,20],[-7,36],[-13,44],[-12,18],[-9,4],[-39,-2]],[[2690,6047],[-4,-10],[3,-27],[-9,-35],[-2,-24],[1,-42],[-8,-42],[5,-13],[-6,-19],[6,-22]],[[2618,5821],[-2,8],[-18,31],[-8,24],[-26,47],[10,0]],[[4799,8357],[30,7],[12,-23],[-5,-7],[8,-24],[-17,-11]],[[5093,8143],[24,1]],[[5117,8144],[-18,3],[4,9],[12,-8],[-6,19],[17,37],[3,22],[39,34],[21,2],[10,-9]],[[5422,9155],[4,-16],[-27,2],[23,14]],[[5437,9133],[16,18],[5,-14],[-15,-13],[-37,-12],[-11,3],[33,21],[0,21],[13,17],[-4,-41]],[[5486,9192],[14,-5],[-2,-18],[-22,-9],[-2,21],[12,11]],[[5534,9220],[10,-6],[-23,-23],[-20,2],[32,37],[1,-10]],[[5651,9263],[-11,-13],[-25,3],[36,10]],[[5857,9203],[1,-13],[-19,5],[-6,-14],[-29,-22]],[[5572,9160],[-21,-39],[-41,12],[-13,-35],[-16,8],[-34,-39],[8,-21],[-27,-32],[2,-11],[-27,-10],[-1,-48],[-23,-41],[12,-7],[-4,-26],[-27,2],[-22,-26],[-5,-18],[6,-16],[-3,-24],[5,-18],[-4,-32],[20,-21],[-5,-18],[-11,-3],[8,-31],[-3,-20],[-22,-30],[-1,-38],[-7,6]],[[5316,8584],[-16,9],[-7,23],[-9,-30],[-15,-3],[-43,-50],[-32,-7],[-36,29],[-3,28],[8,3],[11,27],[-31,-22],[2,24],[27,15],[-12,5],[21,28],[-11,-3],[-18,-30],[-11,-9],[4,52],[-6,26],[41,7],[-39,2],[-3,26],[4,30],[32,25],[34,-3],[15,13],[-35,-4],[6,15],[18,9],[16,-2],[17,33],[24,-2],[8,-13],[21,4],[5,18],[-28,-14],[-10,10],[28,41],[30,23],[-4,9],[18,12],[-1,11],[28,50],[5,27],[22,24],[37,5],[-26,3],[13,18],[-4,14],[23,20],[51,18],[-25,-1],[23,20],[50,54],[75,15],[-16,12],[38,9],[15,-22],[2,13],[31,28],[9,18],[29,-11],[-15,-15],[-6,-26],[45,48],[-2,-31],[11,6],[17,34],[22,-7],[-6,-40],[12,27],[14,6],[50,-26],[1,-8],[-28,-10],[-32,3],[23,-10],[2,-13],[33,2]],[[5600,9711],[42,-35],[49,-14],[-65,-28],[5,16],[-47,-6],[16,28],[-35,34],[35,5]],[[5466,9786],[22,-1],[30,-36],[76,-30],[-45,-7],[-34,-33],[-9,-30],[-17,-7],[-19,-46],[-13,0],[-65,42],[-2,13],[83,14],[-4,6],[-78,-8],[-12,15],[86,19],[-39,8],[1,16],[-26,-6],[5,-15],[-41,-10],[-50,41],[-15,49],[62,-6],[25,-20],[18,26],[47,-47],[-13,42],[27,11]],[[5580,9806],[36,-11],[61,17],[69,-11],[9,-15],[-43,-29],[-42,-11],[-35,12],[-56,-1],[-72,31],[30,10],[7,20],[36,-12]],[[9812,3172],[29,-18],[7,-31],[-5,0],[12,-31],[-3,-30],[24,-19],[-3,40],[9,-15],[9,-53],[32,-20],[21,26],[13,-6],[-6,-52],[-8,-10],[-2,-29],[-14,9],[-13,-17],[5,-17],[-8,-28],[-21,-56],[-21,-28],[-18,23],[14,34],[2,19],[-7,20],[-12,8],[-22,25],[1,12],[18,14],[13,64],[-9,47],[-11,29],[6,-6],[-1,20],[-12,4],[-23,56],[2,11],[-14,32],[8,-4],[8,-23]],[[9670,2485],[1,-14],[-19,-9],[8,32],[10,-9]],[[9808,2806],[18,18],[15,-3],[-5,-13],[-1,-24],[5,-4],[-20,-45],[-9,-27],[-10,-8],[-5,-19],[11,-13],[-2,-12],[-20,1],[-24,-15],[-6,-23],[-2,-26],[-12,-41],[-28,-50],[-37,-3],[-1,10],[-14,4],[-8,13],[-20,-5],[-2,40],[12,33],[35,54],[10,2],[27,26],[15,25],[11,7],[13,28],[10,43],[13,18],[7,39],[11,14],[9,-19],[4,-25]],[[6631,6348],[-3,7],[7,20],[2,-10],[-6,-17]],[[6566,6623],[7,-30],[16,-31],[30,-18],[8,2],[26,-62],[8,-4],[0,-11],[-12,-47],[-14,-22],[-11,-41],[-11,10],[-10,-44],[2,-46],[-24,-11],[-8,-14],[-7,-34],[-26,-8],[-6,-15],[1,-16],[-6,-16],[-28,-2],[-12,-14],[-15,-6]],[[6474,6143],[-10,37],[-21,98]],[[6443,6278],[81,55],[4,10],[17,108],[-13,41]],[[6557,6685],[10,15],[-4,-39]],[[6893,6558],[-14,-3],[-10,21],[-4,34],[-13,6],[0,21],[-7,20],[-21,-13],[-25,-3],[-5,-5],[-25,10],[-6,-10],[-23,3],[-10,-7],[-20,3]],[[2733,5606],[-7,7],[3,10],[4,-17]],[[2836,5600],[-8,18],[-7,30],[9,25],[-10,-3],[-1,11],[-16,21],[-10,1],[-7,-9],[-2,-15],[-17,-18],[-2,-12],[10,-24],[1,-12],[-17,-13],[-7,3],[-4,36],[-4,-16],[-8,6],[-6,24],[-27,10],[-5,-14]],[[2706,5735],[6,-8],[3,-23],[5,-6],[10,5],[5,-11],[13,-1],[14,16],[12,7],[15,23],[30,-11],[12,-10],[19,-34]],[[3044,4127],[-26,38],[-5,23],[-10,8],[-13,22],[-29,27],[-12,8],[-9,14],[-27,29],[-11,30],[-12,15],[-12,44],[5,20],[-18,68],[-8,16],[-2,23],[-12,22],[-3,26],[-10,33],[-13,63],[-5,31],[-7,24],[-10,21],[-7,32],[-10,30],[-32,41],[7,24],[-8,27],[2,8],[-7,21],[3,25],[12,29],[13,20]],[[8365,5534],[7,-8],[-14,-3],[7,11]],[[8391,5554],[-8,11],[7,7],[6,-6],[-5,-12]],[[8499,5721],[6,-3],[3,-25],[-5,-12],[9,-25],[-1,-21],[5,-29],[-10,-34],[-2,-25],[-10,59],[-10,-24],[-2,-13],[6,-13],[2,-28],[-9,-22],[-2,25],[-7,-9],[-11,7],[-15,24],[-3,34],[7,19],[-7,19],[-13,9],[-3,-24],[-8,17],[-8,-10],[-6,14],[-14,-49],[-6,9],[6,40],[6,15],[19,11],[0,11],[12,17],[10,-9],[2,-23],[8,3],[8,24],[8,-3],[4,24],[7,-6],[10,8],[-2,38],[3,5],[13,-25]],[[8460,5748],[-6,-10],[-12,0],[-3,11],[9,19],[12,-7],[0,-13]],[[8491,5755],[-6,12],[4,18],[2,-30]],[[8419,5706],[-20,36],[2,16],[11,7],[-1,24],[4,22],[7,6],[10,-12],[-12,-53],[5,-34],[-6,-12]],[[8426,5728],[1,30],[15,57],[3,18],[-1,-50],[-9,-16],[-5,-31],[-4,-8]],[[8258,5670],[1,16],[15,30],[4,2],[27,62],[8,13],[0,23],[6,21],[0,-22],[5,-23],[-14,-29],[-10,-6],[-9,-36],[-8,-9],[-6,-17],[-19,-25]],[[8460,5837],[9,2],[4,-14],[-1,-22],[7,-23],[-7,-18],[-7,7],[1,33],[-4,13],[-6,-2],[-3,35],[7,-11]],[[8402,5853],[17,-4],[-1,-20],[-15,-29],[-17,-13],[5,67],[-4,15],[15,-16]],[[8478,5905],[7,-16],[0,-40],[4,-24],[-11,1],[-6,11],[-4,25],[-14,27],[-2,19],[26,-3]],[[8436,5892],[9,-19],[0,-12],[-18,25],[-7,-15],[2,38],[14,-17]],[[8391,5895],[-3,-14],[0,28],[3,-14]],[[8352,5960],[14,-3],[9,-17],[0,-31],[-8,-21],[-8,13],[-5,30],[-12,29],[10,0]],[[8386,5964],[5,-5],[-3,-15],[-5,8],[3,12]],[[8453,5969],[-8,-2],[5,28],[5,-12],[-2,-14]],[[8389,6048],[-3,-20],[-3,18],[6,2]],[[8363,6256],[24,-19],[5,12],[5,-10],[-5,-38],[10,-31],[-10,-54],[-15,-14],[0,-16],[-6,-20],[9,-33],[-2,-15],[6,-24],[6,-7],[12,22],[10,-4],[10,-29],[3,18],[15,-15],[-9,-9],[8,-22],[-1,-9],[10,-4],[-3,-27],[-3,20],[-9,-1],[-9,8],[-4,23],[-18,28],[5,-39],[-25,40],[-16,-18],[-10,15],[-6,-5],[0,25],[8,15],[-3,15],[-7,0],[-3,-18],[-9,20],[-5,31],[-3,57],[8,-15],[7,3],[-2,37],[3,11],[-2,40],[7,50],[14,6]],[[4522,7077],[14,-6],[-4,-7],[-10,13]],[[9331,4799],[-6,-10],[-9,4],[-6,27],[-12,22],[-1,28],[8,-5],[13,-35],[7,-9],[6,-22]],[[9295,4871],[-3,18],[4,4],[-1,-22]],[[9264,4523],[0,-9],[-9,18],[9,-9]],[[9196,4607],[-4,-5],[-5,23],[9,-18]],[[9180,4645],[8,-4],[3,-14],[-13,2],[2,16]],[[9239,4668],[10,-9],[-4,-7],[-6,16]],[[9111,4848],[-7,12],[8,1],[-1,-13]],[[9219,4936],[6,5],[8,-7],[0,-17],[-5,-19],[-6,-2],[3,-21],[-7,-12],[-10,1],[-5,-17],[-25,-25],[-22,-1],[-7,13],[-8,-3],[-20,21],[1,17],[16,-1],[10,-6],[17,8],[2,24],[2,-23],[17,-5],[6,5],[5,18],[15,14],[-2,39],[9,-6]],[[8915,4659],[0,127],[-3,17],[3,15],[0,204]],[[8915,5022],[0,11]],[[8915,5033],[6,-1],[28,-26],[23,-15],[13,-5],[17,-22],[7,1],[14,-17],[6,-15],[7,-2],[13,-29],[-1,-29],[18,-13],[17,-17],[14,-6],[8,-17],[0,-22],[-19,-1],[-5,-12],[7,-26],[15,-29],[11,-13],[3,-26],[6,-8],[3,-21],[16,3],[3,-28],[21,-11],[-7,-7],[3,-12],[22,-14],[-6,-3],[6,-12],[-6,-8],[-12,5],[-7,12],[-38,10],[-17,7],[-10,23],[-10,14],[-4,19],[-8,8],[-16,51],[-30,15],[-3,10],[-10,4],[-10,-11],[-11,12],[5,-23],[-11,-3],[2,-12],[-14,-6],[-11,2],[11,-11],[8,-17],[-4,-16],[-16,-16],[-12,9],[-31,-3],[-4,6]],[[9248,4910],[-8,15],[-2,29],[-11,28],[-38,46],[0,8],[11,-18],[22,-21],[31,-58],[-5,-29]],[[9178,5030],[-13,11],[13,1],[0,-12]],[[9084,5071],[10,-4],[-6,-9],[-13,2],[-4,8],[13,3]],[[5655,8151],[14,-37],[0,-21],[-13,-10],[-26,-42],[-4,-31]],[[5626,8010],[-25,19],[-20,-5],[-14,5],[-17,-12],[-11,24],[-8,-12],[-8,6]],[[5396,8279],[-2,8]],[[5394,8291],[0,-4]],[[5394,8291],[57,22],[8,13],[20,10],[29,6],[10,-23],[9,-5],[17,7]],[[5544,8321],[17,-3],[71,-3]],[[3163,6246],[14,-3],[-10,-24],[-34,1],[-2,22],[6,9],[26,-5]],[[8625,7633],[4,-13]],[[8629,7620],[-17,-14],[-9,-20],[-1,-50],[-39,-46],[-20,-16],[-5,-33],[11,-6],[16,-27]],[[8517,7360],[-8,6],[-7,-8],[-9,14],[-10,-16],[-12,13],[7,6],[-15,4],[10,25],[7,6],[-4,13],[7,24],[-2,13],[-16,14],[-4,-8],[-7,22]],[[4794,7325],[-12,-10],[-21,7],[-11,-5],[5,23],[-2,58],[-9,0],[2,17],[-10,0],[4,28],[14,51],[5,46],[-6,53],[3,7]],[[852,4165],[-8,-3],[0,12],[8,-9]],[[6411,6612],[-2,37],[7,31],[7,10],[8,-14],[-1,-30],[3,-19],[-5,-22],[-5,-4]],[[6423,6601],[-8,-2],[-4,13]],[[6549,3955],[-12,3],[-1,22],[10,0],[3,-25]],[[5783,7802],[15,-13],[18,11],[9,-9]],[[5825,7791],[-5,-24],[-14,-5],[-11,-28],[-2,-31]],[[5630,7732],[-6,10],[7,11],[-7,6],[-8,-9],[-23,15]],[[5593,7765],[3,21],[-19,16],[0,17],[-15,20]],[[5635,7945],[7,9],[29,-11],[11,2],[9,-13],[16,11],[19,5],[13,15]],[[9060,7747],[10,-5],[-11,-8],[-16,-25],[17,38]],[[9127,7794],[-10,-6],[-37,-48],[9,27],[18,22],[20,5]],[[9157,7813],[-1,11],[19,22],[6,-1],[-24,-32]],[[9330,8081],[-14,-15],[-5,15],[13,6],[11,21],[-5,-27]],[[8965,8317],[6,-15],[-2,-20],[9,-28],[3,-35],[-5,-20],[4,-44],[4,-7],[10,-68],[20,-80],[-20,24],[-20,-6],[-15,-65],[0,-21],[10,-20],[8,-33],[8,-2],[2,-23],[-4,-19],[-4,31],[-18,8],[-8,-14],[-5,-27],[-6,0],[-3,26],[6,40],[-2,26],[6,24],[-9,40],[8,50],[0,43],[-3,17],[4,22],[-3,25],[-10,17],[-2,32],[6,30],[-1,34],[19,3],[4,30],[-9,18],[12,7]],[[8831,8357],[7,-3],[-15,-22],[-12,8],[10,23],[10,-6]],[[9628,8342],[0,-8],[-25,35],[15,1],[10,-28]],[[9544,8559],[4,24],[23,12],[1,-19],[-28,-17]],[[6,9155],[24,-11],[5,-12],[94,-50],[10,-14],[5,-38],[-3,-9],[31,-11],[-12,12],[6,14],[-13,13],[36,-2],[-4,-13],[20,8],[23,-3],[12,-15],[44,-30],[-21,-16],[-1,-13],[-25,8],[10,-16],[-32,-3],[0,-24],[-21,-9],[0,-34],[-26,7],[-10,13],[-31,9],[-12,12],[-7,27],[-27,8],[-37,-7],[-20,51],[-16,-11],[-2,-16],[11,-16],[-17,-32],[0,225],[6,-2]],[[9484,9152],[-9,12],[7,18],[2,-30]],[[9699,9192],[-39,14],[16,11],[28,-8],[-5,-17]],[[9967,9263],[1,24],[31,17],[0,-31],[-32,-10]],[[30,9307],[39,-19],[-8,-11],[-47,-8],[-14,4],[0,31],[30,3]],[[7156,9348],[-21,4],[19,15],[22,-8],[-20,-11]],[[7208,9372],[-24,10],[14,12],[10,-22]],[[6962,9394],[-20,-1],[2,16],[28,9],[17,-20],[-27,-4]],[[8949,9440],[32,-19],[4,-18],[-53,3],[-33,10],[16,20],[34,4]],[[8916,9446],[-23,0],[19,16],[4,-16]],[[8149,9469],[-16,-17],[-36,14],[16,12],[36,-9]],[[9077,9525],[45,2],[1,-8],[46,-3],[15,-16],[-29,-9],[-37,1],[-59,23],[18,10]],[[8775,9527],[-13,-1],[7,26],[6,-25]],[[8889,9551],[22,-11],[18,29],[40,-18],[21,2],[44,-16],[-29,-30],[-39,12],[4,26],[-24,-3],[3,-16],[26,-24],[-18,-9],[-14,10],[-48,-8],[-18,6],[-14,-17],[-28,8],[-30,25],[17,44],[36,12],[31,-22]],[[6464,8150],[3,11],[67,2],[48,-19],[19,-2],[25,14],[10,55],[9,88],[3,70],[-11,111],[-4,169],[1,64],[6,50],[6,84],[12,53],[17,26],[32,32],[24,4],[21,20],[73,74],[18,69],[0,31]],[[6843,9156],[17,-5],[39,-32],[21,36],[-17,1],[-15,30],[-33,10],[13,62],[-17,10],[7,22],[38,23],[31,73],[58,-2],[37,-13],[-5,-36],[-20,-30],[18,-23],[4,-40],[-7,-10],[2,-69],[30,-35],[-13,-17],[-2,-24],[-13,-10],[-21,-34],[-13,-2],[5,-16],[-23,-10],[-24,19],[-24,-3],[5,-12],[32,-14],[55,-1],[3,14],[26,14],[15,16],[5,19],[20,28],[-11,30],[5,19],[51,13],[23,-29],[-3,-40],[15,-11],[35,0],[-37,9],[-2,15],[13,14],[-10,38],[-46,19],[-33,-9],[-23,2],[-11,39],[20,49],[-34,46],[17,23],[36,17],[1,28],[10,10],[10,-29],[-14,-28],[3,-27],[63,-10],[26,-15],[-9,21],[-50,16],[-11,21],[24,7],[18,-11],[12,28],[40,3],[38,-17],[20,-20],[48,-4],[-25,-24],[-2,-41],[16,24],[6,-22],[-10,-21],[29,19],[-16,32],[11,24],[-11,21],[-27,21],[-30,8],[-19,49],[4,19],[83,6],[93,13],[-30,-23],[36,7],[13,11],[-51,48],[25,2],[29,26],[69,27],[94,15],[-16,13],[82,2],[16,-13],[60,20],[31,-6],[-27,20],[59,4],[1,25],[60,37],[24,6],[57,-20],[-51,-16],[76,-4],[13,-6],[-22,-21],[30,-3],[9,12],[86,0],[59,-27],[13,-46],[-22,-25],[-86,-40],[-45,-37],[-26,-4],[-30,-18],[-22,-30],[24,19],[41,3],[59,18],[24,12],[-27,2],[14,17],[43,-16],[45,-5],[-8,-11],[61,14],[86,-7],[0,-19],[37,-16],[83,-4],[24,17],[-4,27],[30,5],[55,-24],[14,12],[51,-21],[-8,-17],[18,-11],[5,-31],[-13,-5],[-32,21],[55,-76],[38,-22],[12,10],[30,59],[29,-29],[28,-2],[33,14],[49,-25],[16,23],[27,-9],[22,3],[-18,26],[22,15],[-27,-3],[12,19],[41,6],[-10,17],[37,-10],[41,-1],[76,-15],[-58,-10],[74,2],[-12,-15],[-17,11],[-1,-16],[-19,-1],[3,-14],[33,13],[21,22],[35,1],[31,-9],[10,-18],[-23,-3],[27,-16],[44,-13],[25,-26],[36,2],[58,13],[60,-3],[49,-25],[6,-17],[-5,-31],[30,-10],[3,-29],[15,-11],[-1,27],[18,13],[55,7],[10,-7],[64,-6],[22,14],[19,-27],[28,-11],[8,-17],[26,2],[13,13],[-12,31],[-11,2],[9,28],[119,-15],[32,3],[28,-15],[55,-16],[30,-22],[0,-225],[-36,-26],[-27,5],[-15,18],[-3,-14],[-28,10],[18,-19],[18,9],[2,-19],[14,-13],[8,8],[12,-23],[7,-36],[18,-38],[-12,-21],[-51,16],[-56,-28],[-21,-16],[-25,-6],[-14,-18],[-9,1],[-11,-21],[-50,-36],[-7,-27],[-12,8],[-19,28],[-30,-1],[-26,-10],[-26,-32],[2,37],[-35,-23],[-2,-13],[-16,12],[-19,-2],[-10,-12],[-11,-47],[-24,-33],[-5,-21],[14,-18],[5,11],[16,-16],[-12,-18],[0,-32],[13,-7],[2,-26],[-8,-11],[-14,12],[-13,-10],[-10,-34],[11,-43],[-11,-12],[-26,0],[-19,-20],[-7,-23],[5,-38],[-12,6],[-27,-21],[-3,-28],[-11,-34],[-38,-47],[-6,18],[-4,70],[-8,21],[-5,61],[-10,73],[2,34],[11,56],[20,23],[7,18],[-6,16],[19,3],[6,13],[17,-1],[26,29],[17,35],[53,59],[7,16],[27,21],[21,8],[-5,6],[13,18],[5,55],[11,10],[22,1],[-31,12],[-26,-8],[-9,-44],[-17,-8],[-38,-40],[-24,-19],[6,23],[-16,-4],[2,19],[12,29],[-21,-4],[-7,11],[-32,-9],[-19,2],[-22,-18],[-1,-12],[-25,-34],[-21,-18],[-19,-31],[-4,-17],[28,-10],[0,-10],[-19,2],[-13,-9],[-18,8],[-13,-15],[-14,5],[-29,-9],[-6,12],[32,8],[-22,17],[-23,2],[-28,12],[-24,-13],[4,-15],[-19,8],[-20,-8],[-30,9],[-11,-15],[-14,14],[-47,0],[-35,-10],[-23,-29],[-22,-18],[-13,-32],[-37,-35],[-27,-36],[-14,-29],[-34,-32],[-8,-13],[-26,-24],[0,-12],[17,-8],[26,2],[-2,-47],[12,1],[-2,18],[21,-11],[-16,-23],[19,3],[12,18],[9,-2],[0,26],[17,-8],[11,5],[15,-16],[12,-23],[19,-18],[-6,-53],[9,-11],[-3,-15],[-12,-17],[-12,-47],[0,-71],[-3,-35],[-11,-37],[-17,-25],[-11,-29],[-13,-23],[-5,-26],[-18,-41],[-25,-37],[-18,-40],[-8,-6],[-10,-31],[-22,-33],[-28,-25],[-15,-8],[-24,11],[0,25],[-7,-13],[-7,8],[-18,-35],[-12,2],[-1,-21]],[[7857,9749],[-14,-24],[40,18],[37,-19],[-11,-28],[-54,-9],[-45,1],[-37,-14],[5,22],[45,59],[34,-6]],[[7574,9774],[-45,17],[75,-5],[-30,-12]],[[7712,9801],[67,-22],[-18,-54],[-28,-3],[-105,19],[-44,22],[53,34],[75,4]],[[7681,9854],[36,-16],[-18,-32],[-92,-14],[-66,20],[49,25],[-6,12],[76,16],[21,-11]],[[6396,9169],[-18,-19],[-33,-3],[-1,31],[23,10],[29,-19]],[[6367,7853],[-30,-35],[-19,-3],[2,-9],[-13,-41],[-10,-21],[9,-6],[9,-20],[4,-28],[-1,-27],[23,-55],[8,-14]],[[6110,7685],[-35,49],[-15,8],[-9,16],[-12,2],[-6,13],[-16,10],[9,9],[19,4],[-1,12],[11,27],[14,4],[-21,31],[21,2],[-2,8],[24,15],[-3,10],[-27,-10]],[[6061,7895],[1,24],[16,19],[23,0],[8,25],[-7,28],[8,7],[-8,8],[12,15],[-1,18],[-9,0],[-15,15],[-27,12],[-6,-7],[-19,29],[-20,-12],[-21,13],[-6,-5],[-16,48],[-24,2],[-3,25],[8,6],[-19,34],[-25,-6],[-13,2],[-2,-10],[-14,0]],[[5778,8610],[1,17],[25,3],[5,10],[27,-8],[-11,19],[-18,0],[-12,10],[-4,18],[-19,-8]],[[5857,9203],[16,-5],[15,15],[28,-13],[-23,-3],[6,-11],[30,-3],[-1,-10],[52,1],[67,-34],[31,-21],[59,-35],[11,-29],[-4,-22],[-19,-22],[-34,-18],[-39,-2],[-25,10],[-41,7],[-19,12],[-38,9],[-17,15],[-11,-6],[31,-34],[23,-11],[11,-16],[-11,-27],[11,-23],[2,-25],[22,-10],[20,-22],[29,-11],[18,13],[-3,17],[-19,3],[-21,32],[10,14],[18,-4],[56,-31],[25,12],[-18,33],[0,14],[27,23],[19,7],[17,20],[32,-3],[24,-23],[11,38],[-5,25],[-14,13],[12,38],[-2,19],[-21,17],[47,-2],[22,-6],[22,-36],[-32,-5],[-16,-24],[17,-9],[12,-20],[15,-2],[33,13],[4,32],[28,8],[55,36],[41,15],[41,22],[1,-35],[-16,-7],[34,1],[43,21],[30,-6],[29,20],[25,6],[9,-15],[-8,-17],[20,-4],[2,19],[17,1],[12,15],[-21,35],[20,15],[48,-6],[43,-12],[61,-33]],[[6679,9212],[-18,-14],[-23,11],[-14,22],[16,11],[39,-30]],[[6469,9294],[4,-19],[-23,17],[19,2]],[[6536,9406],[31,-6],[-10,-24],[-19,-13],[-3,-36],[21,-34],[44,-35],[-13,-8],[-25,7],[-46,-2],[-34,11],[22,15],[-21,23],[-41,-3],[-14,26],[23,11],[18,31],[-11,4],[19,24],[48,14],[11,-5]],[[6882,9575],[-25,-10],[-134,-37],[-50,-26],[7,-4],[-39,-23],[-16,0],[-2,-22],[-50,-47],[-46,9],[-19,-6],[-15,24],[23,10],[27,39],[42,44],[15,-3],[12,19],[83,26],[4,10],[50,-3],[41,8],[89,37],[23,-5],[11,-21],[-31,-19]],[[6585,9812],[0,-15],[-38,1],[38,14]],[[6609,9799],[-26,20],[41,-1],[-15,-19]],[[6317,9841],[-36,-24],[-34,10],[70,14]],[[6726,9840],[-31,-24],[-39,1],[-1,22],[71,1]],[[6396,9845],[40,-14],[-78,-18],[2,-12],[-38,-3],[-27,11],[71,15],[30,21]],[[6519,9856],[80,-21],[-35,-7],[-63,11],[18,17]],[[6628,9852],[6,-15],[-45,13],[39,2]],[[6760,9832],[-24,7],[57,22],[24,-16],[-57,-13]],[[6605,9881],[21,-8],[-31,-16],[-48,3],[58,21]],[[5582,8368],[-10,-17],[16,-3],[1,19]],[[5544,8321],[10,26],[15,4],[11,17]],[[5582,8368],[-2,0]],[[5847,5122],[7,-22],[3,-34],[-1,-17],[-8,-3]],[[5821,5104],[10,-5],[13,24],[3,-1]],[[4526,6382],[1,36]],[[6345,6828],[13,-53],[22,-39],[8,-7],[6,-30],[-5,-11],[7,-32],[15,-44]],[[6423,6601],[2,-15],[7,-3]],[[6443,6278],[-81,-24],[-25,-24],[-16,-41],[-4,-20],[-13,-9],[-7,18],[-11,-2],[-25,5],[-8,7],[-39,-4],[-9,9],[-6,-9],[-3,-45],[-8,-12]],[[6188,6127],[-4,25],[-10,36],[-15,26],[-14,46],[-13,62],[-19,29],[-10,7],[-18,53],[2,12],[-5,21],[3,30],[-2,21],[-8,31],[-12,35],[-16,21],[-5,1],[-10,30],[3,8],[-17,63],[-4,3],[-8,29],[-11,27],[-18,56],[-16,6],[5,21],[4,49]],[[4829,8405],[-3,-18],[-6,13],[9,5]],[[4839,8429],[-15,-3],[5,21],[10,-18]],[[4829,8496],[12,-14],[-8,-13],[-20,26],[11,11],[5,-10]],[[4827,8545],[-5,-18],[-16,-17],[-1,28],[20,15],[2,-8]],[[4914,8350],[-24,-11],[-27,-5],[-7,13],[14,34],[-5,31],[-15,-16],[-11,-23],[8,56],[8,24],[-12,-13],[-14,11],[16,29],[-7,14],[11,35],[10,10],[1,18],[10,-3],[45,7],[-5,-18],[-21,-21],[-4,-22],[20,8],[40,-2],[5,-11],[-13,-36],[-12,-20],[-15,-8],[16,-3],[-17,-16],[18,-1],[16,-13]],[[4963,8671],[7,-9],[-6,-29],[-1,38]],[[6024,6451],[1,-24],[8,-23],[-2,-5],[3,-87],[6,-44],[13,-15],[8,-18],[11,-14]],[[5946,5729],[-6,1],[3,21],[-2,20],[-20,38],[-3,42],[4,36],[-14,1],[1,-12],[-19,-1],[8,-16],[2,-38],[-14,-23],[-3,-16],[-16,-34],[-14,-3],[-20,31],[-11,-12],[-4,-18],[-14,-10],[-3,-15],[-22,0],[-5,16],[-23,1],[-14,-6],[-21,52],[-20,-7],[-8,-30],[-7,-51],[-11,-13]],[[5634,5813],[3,15],[-11,28],[-4,50],[-5,10],[-10,-1],[-1,10],[9,20],[0,40],[11,14],[-5,23],[7,8],[9,31],[-1,17],[5,10],[25,5],[0,214]],[[5943,5427],[-13,-27],[-14,7],[-18,-10],[-7,-10],[-8,16],[-9,-7],[-9,6],[-9,-17]],[[4535,5895],[-1,41]],[[4539,5966],[-6,30],[-10,31],[-11,7],[11,9],[9,22],[8,31]],[[3969,2070],[22,-11],[14,-29],[-9,-7],[-10,19],[-29,23],[12,5]],[[9460,4504],[-17,15],[3,3],[14,-18]],[[9491,4586],[11,-4],[7,-22],[-7,0],[-16,15],[-4,21],[9,-10]],[[9437,4650],[6,-10],[10,1],[13,-20],[-4,-9],[-23,8],[-6,15],[4,15]],[[9385,4690],[7,1],[-4,-12],[-3,11]],[[9371,4682],[-5,8],[5,9],[0,-17]],[[9464,4705],[12,-37],[1,-25],[-9,13],[-8,48],[4,1]],[[9385,4690],[-7,4],[-2,13],[-10,1],[6,16],[11,-20],[2,-14]],[[9352,4727],[-6,17],[9,-5],[-3,-12]],[[9440,4692],[-6,10],[-20,19],[-13,28],[27,-28],[11,-17],[1,-12]],[[9374,4762],[-11,0],[-17,32],[3,7],[12,-14],[3,-13],[10,-12]],[[4652,5612],[-12,8],[9,4],[3,-12]],[[4680,5582],[-6,10],[-21,17],[-1,16],[-10,11],[-2,17],[-6,4],[-3,16],[3,23],[-4,9]],[[2560,5956],[-3,-13],[-16,0],[-21,17],[-15,5],[-8,10]],[[6201,5846],[10,-27],[18,-32],[19,-2],[24,23],[21,-5],[23,24],[17,-2],[18,11],[8,-4]],[[6359,5832],[0,-104],[-27,-84]],[[6359,5832],[32,16],[19,26],[13,-9],[-5,-28],[2,-43],[6,-7],[-12,-8],[-3,-52],[-11,-34],[-9,-37],[-7,-14],[-2,-17],[-12,-39],[-8,-47],[-11,-39],[-12,-31],[-7,-26],[-30,-70],[-23,-47],[-32,-38],[-16,-24],[-24,-44],[-42,-92],[-12,-42]],[[5537,7769],[11,0],[7,-13],[9,25],[16,-22],[13,6]],[[5184,5191],[-5,9],[5,7],[0,-16]],[[3411,5503],[6,26],[29,-11],[3,9],[27,2],[20,-8],[3,-8],[-4,-21]],[[5626,8010],[-12,-39]],[[5377,7804],[4,6]],[[5459,8426],[-4,16],[16,39],[-12,-55]],[[5529,8515],[-4,-25],[-15,-18],[-7,27],[11,16],[15,0]],[[5670,8974],[-29,-4],[-18,7],[-5,-15],[-20,-11],[1,-16],[-12,-18],[9,-25],[-20,-30],[-60,-39],[-4,-17],[-16,-1],[4,-14],[-18,-12],[5,-12],[-12,-37],[4,-50],[19,-6],[23,-30],[5,-18],[-19,-19],[3,-15],[-44,-34],[-7,-44],[0,-43],[-15,-49],[-5,-5],[-29,2],[-16,-19],[4,-18],[-7,-8],[-34,1],[3,20],[-14,31],[9,-1],[-2,22],[-28,61],[-8,36],[-5,2],[-2,41],[6,-3]],[[5891,3638],[-4,-27],[-13,1],[-12,10],[-7,19],[0,21],[11,33],[6,6],[15,-13]],[[5999,7178],[-1,35],[-5,20],[3,20]],[[5996,7253],[8,-5],[7,21],[7,35],[21,-10],[21,15],[16,-12],[17,0],[18,8],[19,16],[16,-2],[28,12],[2,-10]],[[5045,5542],[-13,-7]],[[7921,6010],[-3,-7],[-8,12],[-10,-4],[-24,3],[-15,-9],[-13,-39],[-7,-2],[5,-50],[8,-14],[-2,-10],[6,-32]],[[7858,5858],[-4,18],[-29,39],[-9,-4],[-16,5],[4,41],[-9,6],[-18,-10],[2,-18],[-3,-20],[1,-30],[-6,-14],[-9,-60],[-9,-33],[0,-34],[7,-30],[11,5],[5,-36],[9,-23],[4,-48],[-3,16],[-6,-6],[9,-24],[16,-19],[14,0],[15,-36]],[[7780,5555],[-11,25],[-3,27],[-7,1],[-8,30],[-16,25],[-4,-8],[-3,34],[13,82]],[[6882,7325],[2,23],[14,31],[-8,27],[1,22],[-12,3],[-9,12],[10,23],[21,-5],[14,40],[9,-2],[-2,21],[5,14],[10,-7],[19,20],[9,-17],[-11,-16],[8,-15],[8,2]],[[6497,7335],[-3,33],[2,59],[-7,16],[-14,12],[3,10],[10,-3],[-3,21],[-14,4],[-7,12],[6,49],[7,-14],[12,0],[4,-8],[17,2],[9,10],[-3,18],[-12,13],[-9,39],[-19,0],[-8,-25],[0,-26],[-10,33]],[[6554,7564],[29,-3],[-1,34],[11,17],[12,2],[6,17],[13,-8],[-9,14],[12,11],[19,-25],[16,-3],[2,-20],[8,-8],[-4,-25],[11,-9],[20,-2],[6,5],[14,-10],[11,-36],[5,-29],[47,-59],[40,-41],[10,1],[17,-14],[-2,-38]],[[8445,4646],[11,8]],[[8469,4669],[7,17],[18,9],[20,1],[12,9],[9,-6],[-10,-17],[-42,-32],[-10,-14]],[[3305,5768],[-5,-4],[-20,0],[11,10],[1,21],[-5,6],[21,7],[-4,-10],[1,-30]],[[5238,7311],[15,15],[16,9],[14,-8],[6,-28],[18,20],[2,-11],[-17,-32],[-1,-17],[14,-23],[3,-22],[-7,-21],[-23,-43],[4,-16],[15,-20],[10,3],[5,-19],[7,-3]],[[5996,7253],[-2,22],[11,20],[-4,15],[-18,-20],[-17,13],[-14,-11],[-9,-18],[-33,-15],[-7,4],[-14,25],[-22,17],[-16,2],[-5,-32],[-22,-9],[-15,14],[-3,17],[-20,7],[-18,-8],[16,21],[-28,2],[8,5],[-8,13],[0,34],[-26,18],[6,19],[4,-16],[12,4],[-9,16],[-2,38],[4,13],[-20,-6],[2,30],[15,24],[15,3],[6,-9],[10,4],[34,2],[-3,13],[23,8],[-12,2],[-9,12],[3,12],[22,-4],[11,3],[13,-7],[13,2],[5,12],[30,28],[24,12],[38,-4],[7,6],[8,-19],[21,-2],[3,-16],[25,-13],[37,-16],[29,11],[23,-9],[23,18],[11,15]],[[5778,7600],[9,-29],[20,-12],[-8,-15],[-17,6],[-19,-6],[-6,-17],[-14,-11],[-16,-24],[2,13],[15,19],[-19,-1],[-2,7]],[[8361,6487],[-4,-34],[-4,-5],[-4,23],[-9,16],[-5,27],[1,32],[25,80],[14,14],[9,-10],[-1,-33],[-6,-28],[-7,-57],[-9,-25]],[[6089,4914],[-12,-80],[2,-15],[19,-40],[-7,-28],[4,-17],[-4,-31],[4,-34],[6,-15],[-1,-12],[7,-35],[16,-26]],[[5914,4642],[-17,16],[-10,4],[-17,26],[-9,1],[-7,23]],[[5847,5122],[6,4],[88,0]],[[6097,4828],[-1,-16],[-7,10],[2,32],[6,-26]],[[6107,4901],[-3,-31],[-3,2],[0,28],[6,1]],[[6061,7895],[-19,0],[-21,-21],[-26,-6],[-15,-17],[-2,8],[-11,-15],[2,-18],[15,-32],[20,8],[11,-4],[-5,-19],[-14,-4],[-9,8],[-13,-20],[-10,2],[-23,-25],[-12,10],[4,19],[-6,18],[-25,11],[33,31],[-13,14],[-20,-6],[-20,15],[22,14],[-29,6],[-20,-8],[-16,-38],[-17,-9],[3,-26]],[[3517,3240],[-11,-36],[-11,-17],[-20,-15],[-22,9],[-12,-8],[-21,13],[-8,13],[-19,-1],[-16,32],[2,38],[7,21],[-3,24]],[[2986,7544],[11,2],[-30,-21],[-23,-4],[12,19],[30,4]],[[3135,7785],[-2,-28],[-25,-11],[-10,1],[-2,-15],[-12,10],[-3,-18],[-20,-19],[-5,4],[-15,-28],[-9,-31],[6,-11],[-12,-17],[9,-6],[6,-24],[14,1],[2,-9],[-20,-9],[-1,12],[-14,-12],[-5,16],[-4,-24],[-39,-5],[-18,-15],[-18,-24],[7,-12],[-6,-39],[-17,-42],[-20,28],[3,-23],[9,-18],[0,-20],[-24,-73],[-1,14],[9,32],[-5,1],[-1,22],[-12,7],[7,8],[-5,33],[7,13],[-16,-9],[4,-12],[-3,-18],[2,-32],[-15,15],[2,-14],[18,-18],[-8,-13],[9,-13],[-7,-11],[6,-11],[-6,-9],[14,1],[0,-28],[5,-18],[-10,9],[-16,-18],[25,0],[2,-18],[-11,-17],[-22,6],[12,-11],[-7,-16],[12,-3],[-11,-13],[-11,0],[-16,-22],[-8,-24],[-16,-2],[-20,-32],[2,-8],[-10,-10],[-10,-20],[-12,-9],[-23,-46],[-9,-52],[8,-58],[10,-43],[10,-32],[-5,-9],[13,-65],[5,-37],[-2,-40],[-10,-37],[-15,-6],[-9,41],[-10,8],[-4,26],[-5,7],[-1,20],[-8,2],[-13,53],[5,37],[0,23],[-18,32],[-11,27],[-10,11],[-9,-12],[-26,-13],[-1,12],[-23,26],[-2,9],[-27,-9],[-16,-2],[-7,22],[-2,-18],[-33,-1],[-8,-11],[-18,13],[-5,-14],[7,-7],[12,9],[11,-21],[-10,-11],[5,-12],[14,-12],[-4,-11],[-20,26],[-8,4],[-1,-25],[-5,11],[-10,-9],[-11,10],[-21,30],[-10,-16],[-28,14],[-14,-2],[-27,-20],[0,19],[-8,-2],[4,-20],[-21,-36],[-13,-7],[-15,5],[5,-17],[-16,-18],[-13,-45],[2,-48],[8,-30]],[[1746,7058],[-9,44],[-20,26],[-6,-1],[-4,16],[-18,6],[-12,17],[-24,3],[-4,7],[0,28],[-7,20],[-11,15],[-17,37],[3,27],[-17,24],[-3,32],[12,-17],[-9,28],[18,3],[-18,8],[-2,-18],[-15,14],[-3,21],[-16,27],[-5,55],[-13,21],[0,21],[6,22],[1,27],[-3,31],[-6,18],[-5,30],[12,49],[5,99],[1,46],[-4,5],[3,25],[-4,9],[-9,53],[-5,7],[-2,26],[20,-11],[33,-2],[6,-49],[5,5],[4,37],[-8,43],[-7,14]],[[677,6279],[-9,6],[1,15],[-4,21],[7,16],[-2,15],[18,-17],[12,-27],[-23,-29]],[[652,6389],[6,2],[9,-12],[-13,-8],[-2,18]],[[632,6406],[14,-3],[-4,-6],[-10,9]],[[616,6420],[4,-11],[-11,2],[-6,16],[9,7],[4,-14]],[[573,6447],[-13,6],[7,11],[8,-4],[-2,-13]],[[59,8159],[-9,12],[14,-2],[-5,-10]],[[95,8171],[3,-8],[-15,-7],[12,15]],[[148,8181],[-17,-1],[27,11],[-10,-10]],[[9799,8237],[18,-9],[-14,-6],[-12,11],[8,4]],[[334,8256],[-31,-29],[8,20],[19,22],[4,-13]],[[372,8288],[10,2],[-16,-26],[-20,-12],[-8,2],[18,13],[3,24],[13,-3]],[[459,8351],[-4,-21],[-13,0],[-15,-13],[-9,8],[11,20],[21,10],[9,-4]],[[1297,8383],[-10,-16],[1,16],[9,0]],[[1361,8380],[-6,-16],[-18,12],[6,24],[9,7],[9,-27]],[[1289,8429],[27,-26],[18,-39],[-1,-28],[-19,17],[-13,18],[3,15],[-17,12],[11,7],[-15,4],[6,20]],[[1330,8416],[-14,-3],[7,25],[7,-22]],[[1278,8458],[3,-15],[-3,-28],[-11,36],[11,7]],[[1295,8467],[11,-4],[-7,-27],[-12,3],[-9,28],[17,0]],[[1251,8487],[10,-43],[-2,-22],[-19,39],[4,7],[-17,17],[13,13],[11,-11]],[[753,8514],[12,0],[1,-21],[-24,-13],[-14,-14],[-8,9],[-8,-13],[-10,26],[23,23],[28,3]],[[1229,8539],[21,-12],[2,-32],[-16,10],[-5,-14],[-25,32],[7,14],[16,2]],[[1259,8534],[12,-1],[-1,-15],[10,-32],[-18,-17],[-10,76],[7,-11]],[[765,8545],[4,-13],[-14,-7],[-17,5],[16,18],[11,-3]],[[896,8629],[17,32],[4,-5],[-21,-27]],[[384,8662],[13,-6],[3,-21],[-18,-6],[-26,11],[-8,12],[17,0],[19,10]],[[237,8849],[29,4],[24,-19],[22,-4],[-30,-9],[-32,18],[-11,-7],[-12,8],[10,9]],[[1387,8403],[0,-34],[-4,-16]],[[1373,8338],[10,15]],[[1373,8338],[-8,3],[-5,20],[5,11],[-5,42],[-23,-13],[-3,-18],[-8,12],[11,24],[-27,44],[-18,14],[-5,27],[14,-4],[-24,29],[-1,12],[-17,6],[-21,40],[9,-43],[-22,4],[-7,36],[-2,-15],[-18,6],[22,-28],[-14,-8],[-33,26],[-14,20],[-42,27],[8,10],[-2,19],[-19,-17],[-17,1],[-47,20],[-36,-5],[-36,24],[-21,3],[-21,24],[1,14],[-21,-13],[-17,2],[7,16],[-24,-24],[17,-18],[-12,-29],[-27,7],[-6,-19],[-25,-14],[-12,-17],[-23,-3],[-2,13],[11,6],[-10,10],[9,29],[5,31],[23,17],[35,-9],[-39,25],[-32,-23],[-36,-68],[-10,1],[-21,-34],[23,-17],[-27,-32],[2,-8],[-22,-9],[-21,-26],[-18,-11],[-2,-16],[-30,-27],[-27,-16],[-7,-20],[-26,-9],[-39,-26],[-13,12],[-13,-26],[-15,-6],[-8,9],[15,23],[33,25],[10,-15],[15,31],[45,40],[27,39],[4,43],[11,26],[-24,-14],[-14,12],[-9,-7],[-2,-18],[-20,29],[-7,-5],[-14,13],[-27,-22],[-21,-1],[11,8],[-9,28],[7,18],[-18,46],[-4,-23],[-30,-11],[-46,43],[15,20],[-11,4],[-26,31],[15,21],[-3,14],[13,21],[12,2],[1,27],[18,17],[21,-13],[11,4],[18,24],[23,-4],[19,21],[-6,25],[-12,15],[15,3],[-7,20],[-28,-14],[-17,-17],[-26,12],[-35,-8],[-37,10],[-15,27],[19,10],[-35,9],[-19,14],[28,12],[46,31],[48,12],[-9,-23],[10,-8],[52,-2],[19,17],[-19,2],[-4,11],[32,-11],[11,14],[-28,-4],[-12,9],[5,16],[-38,2],[-19,10],[-11,24],[-35,25],[-40,18],[12,4],[4,26],[53,3],[33,26],[5,22],[26,23],[28,8],[48,33],[36,-2],[34,28],[30,-8],[-12,-15],[27,10],[27,-17],[26,7],[28,-7],[-7,-9],[35,-13],[54,5],[44,-17],[52,-3],[34,-10],[23,7],[29,-4],[37,-22],[11,0]],[[6961,7542],[0,0]],[[3019,5867],[-16,-13],[-2,-13],[10,-39],[-14,-53],[9,-27],[2,-16],[13,5],[5,32],[-9,32],[-5,30],[2,10],[44,28],[2,13],[-10,-3],[-3,15],[8,17],[5,-10],[5,-30],[12,2],[11,-5],[12,-15],[4,-34],[10,-6],[25,8],[20,1],[11,-21],[21,-11],[7,1],[28,27],[-12,4],[22,1],[22,6],[23,-1],[-14,-11],[-15,-1],[6,-11],[-1,-16],[6,7],[6,-23],[4,12],[12,-20],[4,15],[8,-15],[14,-16],[-5,-8],[-8,-36],[-10,0],[9,-11],[14,11],[22,-3]],[[7890,5782],[-2,-21],[-4,18],[6,3]],[[7998,6423],[-15,-13],[-7,-20],[-14,1],[3,-13],[-5,-20],[-18,-26],[-4,-20],[0,-17],[-5,-19],[12,-37],[13,-22],[-1,-13],[19,-47],[20,-34],[3,2],[16,-44],[6,-11],[13,-77],[0,-26],[5,-57],[-6,2],[-1,-56],[-5,-19],[-6,-1],[-14,-22],[-28,-31],[-8,12],[-17,-61],[-12,24],[6,-33],[-18,-17],[-11,-27],[-10,-2],[2,12],[2,58],[6,8],[-19,26]],[[9703,4093],[-10,4],[4,14],[6,-18]],[[9678,4173],[2,-14],[-10,5],[8,9]],[[9678,4217],[-7,-1],[0,12],[7,-11]],[[9674,4243],[-10,6],[6,9],[4,-15]],[[9649,4257],[12,-21],[-11,-3],[-1,24]],[[9631,4330],[2,-19],[5,12],[6,-29],[-13,-11],[-6,45],[6,2]],[[4925,8157],[-16,-13],[-37,19],[-9,-6],[-10,14],[25,19],[11,20],[-3,22],[-17,-4],[25,26],[19,-2]],[[237,4375],[-13,2],[1,12],[12,-14]],[[213,4408],[2,-19],[-9,0],[-5,16],[12,3]],[[6474,6143],[-18,-15],[-6,-13],[0,-29],[-25,-25],[-22,-11],[-10,-11],[-17,-7],[-13,-13],[-12,-26],[-19,0],[-16,-22],[-20,-14],[-28,-5],[-18,-30],[-11,0],[-19,-12],[-13,13],[-7,25],[2,21],[-6,22],[-2,31],[-8,63],[3,22],[-1,20]],[[6493,5912],[21,-5],[-11,-11],[-11,-3],[-12,13],[6,10],[7,-4]],[[5913,3637],[-10,-77],[-4,-18],[-17,-25],[-17,-38],[-24,-79],[-23,-41],[-28,-54],[-30,-43],[-26,-23],[-18,2],[-6,-18],[-16,4],[-5,-11],[-34,10],[-7,-5],[-22,4],[-9,-4],[-12,-17],[-21,0],[-14,-5],[-14,-19],[-11,2],[-11,20],[-11,2],[-1,15],[-13,-4],[3,22],[-5,22],[-12,34],[8,4],[6,28],[-5,36],[-14,36],[-9,33],[-11,60],[-14,45]],[[5815,3905],[8,3],[23,-10],[17,1],[6,-6]],[[5844,4283],[-19,0],[-19,-15],[-8,-36],[-23,-21],[-13,-36],[-12,-26],[-7,-4],[-12,6],[-13,-1],[-17,9]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment