Skip to content

Instantly share code, notes, and snippets.

@diegovalle
Last active January 24, 2019 20:46
Show Gist options
  • Save diegovalle/10487038 to your computer and use it in GitHub Desktop.
Save diegovalle/10487038 to your computer and use it in GitHub Desktop.
Projected Topojson of Mexican Municipalities

Projected topojson example of a choropleth of Mexican municipalities and states with tooltips and each municipality colored by the number of people who live there

First download the shapefiles of Mexico (AGEBs, Manzanas, Municipios, Estados, etc) 1.4GB from

http://www.diegovalle.net/projects.html#url=%23datasets

Then convert the files 'shps/national/national_municipal.shp' and 'shps/national/national_estatal.shp' to topojson with

topojson \
    --width 960 \
    --height 800 \
    --margin 0 \
    -s .25 \
    --projection 'd3.geo.mercator()' \
    -o national.json \
    --id-property=+CVE_ENT,+CVE_MUN \
    -p +CVE_ENT,+CVE_MUN,NOM_MUN,+POB1 \
    counties=national_municipal.shp \
    states=national_estatal.shp

Based on Mike Bostock's Projected TopoJSON example https://gist.github.com/mbostock/5557726

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.counties {
fill: none;
stroke: #eee;
}
.state-borders {
fill: none;
stroke: #fff;
stroke-linejoin: round;
stroke-linecap: round;
}
.boundary {
fill: none;
stroke: #999;
}
.selected {
fill:red
}
.q0-9 { fill:rgb(247,251,255); }
.q1-9 { fill:rgb(222,235,247); }
.q2-9 { fill:rgb(198,219,239); }
.q3-9 { fill:rgb(158,202,225); }
.q4-9 { fill:rgb(107,174,214); }
.q5-9 { fill:rgb(66,146,198); }
.q6-9 { fill:rgb(33,113,181); }
.q7-9 { fill:rgb(8,81,156); }
.q8-9 { fill:rgb(8,48,107); }
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
//Extra width for the tooltips
var width = 1200,
height = 800;
comma = d3.format("0,000");
var quantize = d3.scale.quantize()
//Iztapalapa is the mostpopulated county with ~1816000 people
.domain([0, 1816000])
.range(d3.range(9).map(function(i) { return "q" + i + "-9"; }));
var path = d3.geo.path()
.projection(null);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("national.json", function(error, ca) {
svg.append("g")
.attr("class", "counties")
.selectAll("path")
.data(topojson.feature(ca, ca.objects.counties).features)
.enter().append("path")
.attr("class", function(d) { return quantize(+d.properties.POB1); })
.attr("d", path)
.attr("title", function(d) { return +d.properties.POB1; })
.on("mouseover", function(d) {
var xPosition = d3.mouse(this)[0];
var yPosition = d3.mouse(this)[1] - 30;
svg.append("text")
.attr("id", "tooltip")
.attr("x", xPosition)
.attr("y", yPosition)
.attr("text-anchor", "left")
.text(d.properties.NOM_MUN + " - " + comma(d.properties.POB1));
d3.select(this)
.attr("class", "selected");
})
.on("mouseout", function(d) {
d3.select("#tooltip").remove();
d3.select(this)
.transition()
.attr("class", function(d) { return quantize(+d.properties.POB1); })
.duration(250)
});
svg.append("path")
.datum(topojson.mesh(ca, ca.objects.states))
.attr("class", "boundary")
.attr("d", path);
});
d3.select(self.frameElement).style("height", height + "px");
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"counties":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"NOM_MUN":"Aguascalientes","POB1":797010},"arcs":[[0,1,2,3,4,5,6,7,8]]},{"type":"Polygon","properties":{"NOM_MUN":"Asientos","POB1":45492},"arcs":[[9,10,11,-9,12,13,14,15]]},{"type":"Polygon","properties":{"NOM_MUN":"Calvillo","POB1":54136},"arcs":[[16,-6,17,18,19,20,21]]},{"type":"Polygon","properties":{"NOM_MUN":"Cosío","POB1":15042},"arcs":[[22,23,24]]},{"type":"Polygon","properties":{"NOM_MUN":"Jesús María","POB1":99590},"arcs":[[25,-7,-17,26,27]]},{"type":"Polygon","properties":{"NOM_MUN":"Pabellón de Arteaga","POB1":41862},"arcs":[[-14,28,-28,29,30,31]]},{"type":"Polygon","properties":{"NOM_MUN":"Rincón de Romos","POB1":49156},"arcs":[[32,-31,33,34,35,-23,36]]},{"type":"Polygon","properties":{"NOM_MUN":"San José de Gracia","POB1":8443},"arcs":[[-30,-27,-22,37,38,-34]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepezalá","POB1":19668},"arcs":[[39,-15,-32,-33,40]]},{"type":"Polygon","properties":{"NOM_MUN":"El Llano","POB1":18828},"arcs":[[41,42,-1,-12]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco de los Romo","POB1":35769},"arcs":[[-8,-26,-29,-13]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Ensenada","POB1":466814},"arcs":[[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83,84,85,86,87,88,89]],[[90]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Mexicali","POB1":936826},"arcs":[[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106,107,108,109,110,111,-90,112,113]]]},{"type":"Polygon","properties":{"NOM_MUN":"Tecate","POB1":101079},"arcs":[[-113,-89,114,115]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Tijuana","POB1":1559683},"arcs":[[[116]],[[117]],[[-115,-88,118,119,120,121,122,123]]]},{"type":"Polygon","properties":{"NOM_MUN":"Playas de Rosarito","POB1":90668},"arcs":[[-87,124,125,126,-119]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Comondú","POB1":70816},"arcs":[[[127,128,129,130,131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Mulegé","POB1":59114},"arcs":[[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157,-132,158,-85,159]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"La Paz","POB1":251871},"arcs":[[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175,176,177,178,-130,179]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Los Cabos","POB1":238487},"arcs":[[[180]],[[181]],[[-178,182]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Loreto","POB1":16738},"arcs":[[[183,-128,-158]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Calkiní","POB1":52890},"arcs":[[[200]],[[201]],[[202]],[[203]],[[204,205,206,207,208,209,210,211]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Campeche","POB1":259005},"arcs":[[[212,213,214,215]],[[216]],[[217]],[[218]]]},{"type":"Polygon","properties":{"NOM_MUN":"Carmen","POB1":221094},"arcs":[[219,220,221,222,223,224,225,226,227]]},{"type":"Polygon","properties":{"NOM_MUN":"Champotón","POB1":83021},"arcs":[[228,229,230,-214,231,232,233,-228]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Hecelchakán","POB1":28306},"arcs":[[[234,235,236,-210]],[[237]]]},{"type":"Polygon","properties":{"NOM_MUN":"Hopelchén","POB1":37777},"arcs":[[238,239,240,241,242,-232,-213,243,-235,-209,244]]},{"type":"Polygon","properties":{"NOM_MUN":"Palizada","POB1":8352},"arcs":[[245,246,-224]]},{"type":"Polygon","properties":{"NOM_MUN":"Tenabo","POB1":9736},"arcs":[[-244,-216,247,-236]]},{"type":"Polygon","properties":{"NOM_MUN":"Escárcega","POB1":54184},"arcs":[[248,-220,-234,249]]},{"type":"Polygon","properties":{"NOM_MUN":"Calakmul","POB1":26882},"arcs":[[250,251,252,-250,-233,-243]]},{"type":"Polygon","properties":{"NOM_MUN":"Candelaria","POB1":41194},"arcs":[[-253,253,254,-221,-249]]},{"type":"Polygon","properties":{"NOM_MUN":"Abasolo","POB1":1070},"arcs":[[255,256,257,258,259]]},{"type":"Polygon","properties":{"NOM_MUN":"Acuña","POB1":136755},"arcs":[[260,261,262,263,264]]},{"type":"Polygon","properties":{"NOM_MUN":"Allende","POB1":22675},"arcs":[[265,266,267,268]]},{"type":"Polygon","properties":{"NOM_MUN":"Arteaga","POB1":22544},"arcs":[[269,270,271,272,273,274]]},{"type":"Polygon","properties":{"NOM_MUN":"Candela","POB1":1808},"arcs":[[275,276,277,278,-256,279,280,281]]},{"type":"Polygon","properties":{"NOM_MUN":"Castaños","POB1":25892},"arcs":[[282,-278,283,284,285,286,287,288,289,290,291]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuatro Ciénegas","POB1":13013},"arcs":[[292,293,294,295,-290,296,297,298,299]]},{"type":"Polygon","properties":{"NOM_MUN":"Escobedo","POB1":2901},"arcs":[[300,301,-280,-260]]},{"type":"Polygon","properties":{"NOM_MUN":"Francisco I. Madero","POB1":55676},"arcs":[[302,303,304,305,306,-300]]},{"type":"Polygon","properties":{"NOM_MUN":"Frontera","POB1":75215},"arcs":[[307,-292,308,309,310,-258]]},{"type":"Polygon","properties":{"NOM_MUN":"General Cepeda","POB1":11682},"arcs":[[311,312,313]]},{"type":"Polygon","properties":{"NOM_MUN":"Guerrero","POB1":2091},"arcs":[[314,315,316,317,318]]},{"type":"Polygon","properties":{"NOM_MUN":"Hidalgo","POB1":1852},"arcs":[[319,320,-319,321]]},{"type":"Polygon","properties":{"NOM_MUN":"Jiménez","POB1":9935},"arcs":[[-261,322,323,324]]},{"type":"Polygon","properties":{"NOM_MUN":"Juárez","POB1":1599},"arcs":[[325,326,327,328,-315,-321,329]]},{"type":"Polygon","properties":{"NOM_MUN":"Lamadrid","POB1":1835},"arcs":[[330,331,332,-295]]},{"type":"Polygon","properties":{"NOM_MUN":"Matamoros","POB1":107160},"arcs":[[333,334,335,336,-304,337]]},{"type":"Polygon","properties":{"NOM_MUN":"Monclova","POB1":216206},"arcs":[[-308,-257,-279,-283]]},{"type":"Polygon","properties":{"NOM_MUN":"Morelos","POB1":8207},"arcs":[[338,-267,339,340,341]]},{"type":"Polygon","properties":{"NOM_MUN":"Múzquiz","POB1":66834},"arcs":[[-263,342,-341,343,344,345,346,347,348]]},{"type":"Polygon","properties":{"NOM_MUN":"Nadadores","POB1":6335},"arcs":[[-310,349,-332,350,351]]},{"type":"Polygon","properties":{"NOM_MUN":"Nava","POB1":27928},"arcs":[[352,353,-317,354,-268,-339,355]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocampo","POB1":10991},"arcs":[[356,357,-264,-349,358,-351,-331,-294,359]]},{"type":"Polygon","properties":{"NOM_MUN":"Parras","POB1":45401},"arcs":[[360,-312,361,362,363,364,-298]]},{"type":"Polygon","properties":{"NOM_MUN":"Piedras Negras","POB1":152806},"arcs":[[-353,365,-324,366]]},{"type":"Polygon","properties":{"NOM_MUN":"Progreso","POB1":3473},"arcs":[[-327,367,-281,-302,368,-347,369]]},{"type":"Polygon","properties":{"NOM_MUN":"Ramos Arizpe","POB1":75461},"arcs":[[370,-275,371,-313,-361,-297,-289,372,373]]},{"type":"Polygon","properties":{"NOM_MUN":"Sabinas","POB1":60847},"arcs":[[-266,374,-328,-370,-346,375,-344,-340]]},{"type":"Polygon","properties":{"NOM_MUN":"Sacramento","POB1":2314},"arcs":[[-350,-309,-291,-296,-333]]},{"type":"Polygon","properties":{"NOM_MUN":"Saltillo","POB1":725123},"arcs":[[-274,376,377,378,379,380,381,382,-362,-314,-372]]},{"type":"Polygon","properties":{"NOM_MUN":"San Buenaventura","POB1":22149},"arcs":[[-348,-369,-301,-259,-311,-352,-359]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan de Sabinas","POB1":41649},"arcs":[[-376,-345]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro","POB1":102650},"arcs":[[-365,383,-338,-303,-299]]},{"type":"Polygon","properties":{"NOM_MUN":"Sierra Mojada","POB1":6375},"arcs":[[-293,-307,384,385,386,387,-360]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Torreón","POB1":639629},"arcs":[[[388,389,390]],[[391,392,-336]]]},{"type":"Polygon","properties":{"NOM_MUN":"Viesca","POB1":21319},"arcs":[[-364,393,394,395,396,-391,397,-334,-384]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Unión","POB1":6289},"arcs":[[-329,-375,-269,-355,-316]]},{"type":"Polygon","properties":{"NOM_MUN":"Zaragoza","POB1":12702},"arcs":[[-262,-325,-366,-356,-342,-343]]},{"type":"Polygon","properties":{"NOM_MUN":"Armería","POB1":28695},"arcs":[[398,399,400,401]]},{"type":"Polygon","properties":{"NOM_MUN":"Colima","POB1":146904},"arcs":[[402,403,404,405,406,407,408,409]]},{"type":"Polygon","properties":{"NOM_MUN":"Comala","POB1":20888},"arcs":[[410,411,412,413,414,415]]},{"type":"Polygon","properties":{"NOM_MUN":"Coquimatlán","POB1":19385},"arcs":[[416,-408,417,-402,418,419]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuauhtémoc","POB1":27107},"arcs":[[420,421,-410,422,-412,423]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtlahuacán","POB1":5300},"arcs":[[424,425,-406]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Manzanillo","POB1":161420},"arcs":[[[426]],[[427,-419,-401,428,429,430]],[[431]],[[432]]]},{"type":"Polygon","properties":{"NOM_MUN":"Minatitlán","POB1":8174},"arcs":[[-414,433,-420,-428,434,435]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Tecomán","POB1":112726},"arcs":[[[436]],[[437]],[[-407,-426,438,439,-399,-418]]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Álvarez","POB1":119956},"arcs":[[-423,-409,-417,-434,-413]]},{"type":"Polygon","properties":{"NOM_MUN":"Acacoyagua","POB1":16814},"arcs":[[440,441,442,443]]},{"type":"Polygon","properties":{"NOM_MUN":"Acala","POB1":28947},"arcs":[[444,445,446,447,448,449]]},{"type":"Polygon","properties":{"NOM_MUN":"Acapetahua","POB1":27580},"arcs":[[450,451,452,453,454,-441]]},{"type":"Polygon","properties":{"NOM_MUN":"Altamirano","POB1":29865},"arcs":[[455,456,457,458]]},{"type":"Polygon","properties":{"NOM_MUN":"Amatán","POB1":21275},"arcs":[[459,460,461,462,463,464,465]]},{"type":"Polygon","properties":{"NOM_MUN":"Amatenango de la Frontera","POB1":29547},"arcs":[[466,467,468,469,470]]},{"type":"Polygon","properties":{"NOM_MUN":"Amatenango del Valle","POB1":8728},"arcs":[[471,472,473,474,475,476]]},{"type":"Polygon","properties":{"NOM_MUN":"Angel Albino Corzo","POB1":26628},"arcs":[[477,478,479,480,481,482]]},{"type":"Polygon","properties":{"NOM_MUN":"Arriaga","POB1":40042},"arcs":[[483,484,485,486,487,488]]},{"type":"Polygon","properties":{"NOM_MUN":"Bejucal de Ocampo","POB1":7623},"arcs":[[489,490,491,-469]]},{"type":"Polygon","properties":{"NOM_MUN":"Bella Vista","POB1":19281},"arcs":[[-470,492,493,494,495]]},{"type":"Polygon","properties":{"NOM_MUN":"Berriozábal","POB1":43179},"arcs":[[496,497,498,499,500]]},{"type":"Polygon","properties":{"NOM_MUN":"Bochil","POB1":30642},"arcs":[[501,502,503,504,505,506,507,508]]},{"type":"Polygon","properties":{"NOM_MUN":"El Bosque","POB1":18559},"arcs":[[509,510,-503,511,512]]},{"type":"Polygon","properties":{"NOM_MUN":"Cacahoatán","POB1":43811},"arcs":[[513,514,515,516,517]]},{"type":"Polygon","properties":{"NOM_MUN":"Catazajá","POB1":17140},"arcs":[[518,519,520,521]]},{"type":"Polygon","properties":{"NOM_MUN":"Cintalapa","POB1":78114},"arcs":[[522,-489,523,524,525,526,527,528]]},{"type":"Polygon","properties":{"NOM_MUN":"Coapilla","POB1":8444},"arcs":[[529,-508,530,531,532,533]]},{"type":"Polygon","properties":{"NOM_MUN":"Comitán de Domínguez","POB1":141013},"arcs":[[534,535,536,537,538,539,-474,540]]},{"type":"Polygon","properties":{"NOM_MUN":"La Concordia","POB1":44082},"arcs":[[541,542,-483,543,544,545,546]]},{"type":"Polygon","properties":{"NOM_MUN":"Copainalá","POB1":21050},"arcs":[[547,548,-532,549,550,-501,551]]},{"type":"Polygon","properties":{"NOM_MUN":"Chalchihuitán","POB1":14027},"arcs":[[552,-510,553,554,555]]},{"type":"Polygon","properties":{"NOM_MUN":"Chamula","POB1":76941},"arcs":[[556,557,558,559,560,561,562,563]]},{"type":"Polygon","properties":{"NOM_MUN":"Chanal","POB1":10817},"arcs":[[-457,564,-541,-473,565,566,567]]},{"type":"Polygon","properties":{"NOM_MUN":"Chapultenango","POB1":7332},"arcs":[[568,569,570,571,572,573,574,575]]},{"type":"Polygon","properties":{"NOM_MUN":"Chenalhó","POB1":36111},"arcs":[[576,577,578,-557,579,580,-556,581]]},{"type":"Polygon","properties":{"NOM_MUN":"Chiapa de Corzo","POB1":87603},"arcs":[[582,583,584,585,-448,586,587,588,589,590]]},{"type":"Polygon","properties":{"NOM_MUN":"Chiapilla","POB1":5405},"arcs":[[591,-445,592]]},{"type":"Polygon","properties":{"NOM_MUN":"Chicoasén","POB1":5018},"arcs":[[-507,593,594,595,-550,-531]]},{"type":"Polygon","properties":{"NOM_MUN":"Chicomuselo","POB1":31515},"arcs":[[596,-495,597,-478,-543,598]]},{"type":"Polygon","properties":{"NOM_MUN":"Chilón","POB1":111554},"arcs":[[599,600,601,602,603,604,605,606]]},{"type":"Polygon","properties":{"NOM_MUN":"Escuintla","POB1":30068},"arcs":[[607,608,609,-451,-444,610]]},{"type":"Polygon","properties":{"NOM_MUN":"Francisco León","POB1":7000},"arcs":[[-575,611,-548,612,613,614]]},{"type":"Polygon","properties":{"NOM_MUN":"Frontera Comalapa","POB1":67012},"arcs":[[615,-471,-496,-597,616,617]]},{"type":"Polygon","properties":{"NOM_MUN":"Frontera Hidalgo","POB1":12665},"arcs":[[618,619,620,621,622]]},{"type":"Polygon","properties":{"NOM_MUN":"La Grandeza","POB1":7272},"arcs":[[-492,623,624,-493]]},{"type":"Polygon","properties":{"NOM_MUN":"Huehuetán","POB1":33444},"arcs":[[625,626,627,628]]},{"type":"Polygon","properties":{"NOM_MUN":"Huixtán","POB1":21507},"arcs":[[629,-567,630,631,632,633]]},{"type":"Polygon","properties":{"NOM_MUN":"Huitiupán","POB1":22536},"arcs":[[634,635,-461,636,637]]},{"type":"Polygon","properties":{"NOM_MUN":"Huixtla","POB1":51359},"arcs":[[638,-627,639,640,-453,641,-609,642]]},{"type":"Polygon","properties":{"NOM_MUN":"La Independencia","POB1":41266},"arcs":[[-536,643,644]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixhuatán","POB1":10239},"arcs":[[645,646,647,-571,648,-463]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtacomitán","POB1":10176},"arcs":[[649,650,-569,651]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtapa","POB1":24517},"arcs":[[-562,652,-585,653,-505,654]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtapangajoya","POB1":5478},"arcs":[[-465,655,-650,656,657]]},{"type":"Polygon","properties":{"NOM_MUN":"Jiquipilas","POB1":37818},"arcs":[[658,-484,-523,659]]},{"type":"Polygon","properties":{"NOM_MUN":"Jitotol","POB1":18683},"arcs":[[660,661,-512,-502,662,663,664]]},{"type":"Polygon","properties":{"NOM_MUN":"Juárez","POB1":21084},"arcs":[[665,666,667,668,669,670,671]]},{"type":"Polygon","properties":{"NOM_MUN":"Larráinzar","POB1":20349},"arcs":[[-553,-581,672,673,674,-563,-655,-504,-511]]},{"type":"Polygon","properties":{"NOM_MUN":"La Libertad","POB1":4974},"arcs":[[675,676]]},{"type":"Polygon","properties":{"NOM_MUN":"Mapastepec","POB1":43913},"arcs":[[-482,677,-480,678,-442,-455,679,680,-544]]},{"type":"Polygon","properties":{"NOM_MUN":"Las Margaritas","POB1":111484},"arcs":[[-456,681,682,683,684,-644,-535,-565]]},{"type":"Polygon","properties":{"NOM_MUN":"Mazapa de Madero","POB1":7793},"arcs":[[-468,685,686,687,-490]]},{"type":"Polygon","properties":{"NOM_MUN":"Mazatán","POB1":26573},"arcs":[[688,689,-640,-626]]},{"type":"Polygon","properties":{"NOM_MUN":"Metapa","POB1":5033},"arcs":[[690,-623,691]]},{"type":"Polygon","properties":{"NOM_MUN":"Mitontic","POB1":11157},"arcs":[[692,-558,-579]]},{"type":"Polygon","properties":{"NOM_MUN":"Motozintla","POB1":69119},"arcs":[[693,-687,694,695,696,-643,-608,697]]},{"type":"Polygon","properties":{"NOM_MUN":"Nicolás Ruíz","POB1":4317},"arcs":[[698,699]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocosingo","POB1":198877},"arcs":[[700,-682,-459,701,702,-601,703,704,705,706,707]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocotepec","POB1":11878},"arcs":[[708,-533,-549,-612,-574]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocozocoautla de Espinosa","POB1":82059},"arcs":[[-499,709,710,711,-660,-529,712]]},{"type":"Polygon","properties":{"NOM_MUN":"Ostuacán","POB1":17067},"arcs":[[713,714,-614,715,716,717]]},{"type":"Polygon","properties":{"NOM_MUN":"Osumacinta","POB1":3792},"arcs":[[718,-583,719,720,-595]]},{"type":"Polygon","properties":{"NOM_MUN":"Oxchuc","POB1":43350},"arcs":[[-458,-568,-630,721,722,-702]]},{"type":"Polygon","properties":{"NOM_MUN":"Palenque","POB1":110918},"arcs":[[723,-676,724,725,726,-704,-600,727,728,-520]]},{"type":"Polygon","properties":{"NOM_MUN":"Pantelhó","POB1":20589},"arcs":[[-604,729,730,-582,-555,731,732]]},{"type":"Polygon","properties":{"NOM_MUN":"Pantepec","POB1":10870},"arcs":[[733,734,-663,-509,-530,735,-572,-648]]},{"type":"Polygon","properties":{"NOM_MUN":"Pichucalco","POB1":29813},"arcs":[[-657,-652,-576,-615,-715,736,-718,737,-667,738]]},{"type":"Polygon","properties":{"NOM_MUN":"Pijijiapan","POB1":50079},"arcs":[[739,-545,-681,740,741]]},{"type":"Polygon","properties":{"NOM_MUN":"El Porvenir","POB1":13201},"arcs":[[-491,-688,-694,742,-624]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Comaltitlán","POB1":27899},"arcs":[[-642,-452,-610]]},{"type":"Polygon","properties":{"NOM_MUN":"Pueblo Nuevo Solistahuacán","POB1":31075},"arcs":[[-636,743,744,-665,745,746,-646,-462]]},{"type":"Polygon","properties":{"NOM_MUN":"Rayón","POB1":9002},"arcs":[[-746,-664,-735,747]]},{"type":"Polygon","properties":{"NOM_MUN":"Reforma","POB1":40711},"arcs":[[748,749,750,751,752,-671,753,754,755]]},{"type":"Polygon","properties":{"NOM_MUN":"Las Rosas","POB1":25530},"arcs":[[756,757,-475,-540]]},{"type":"Polygon","properties":{"NOM_MUN":"Sabanilla","POB1":25187},"arcs":[[758,759,-638,760]]},{"type":"Polygon","properties":{"NOM_MUN":"Salto de Agua","POB1":57253},"arcs":[[-607,761,762,763,-728]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"San Cristóbal de las Casas","POB1":185917},"arcs":[[[764,-633,765,766,767,768,-560]],[[769,-631,-566,-472]]]},{"type":"Polygon","properties":{"NOM_MUN":"San Fernando","POB1":33060},"arcs":[[-596,-721,770,-497,-551]]},{"type":"Polygon","properties":{"NOM_MUN":"Siltepec","POB1":38143},"arcs":[[-494,-625,-743,-698,-611,-443,-679,-479,-598]]},{"type":"Polygon","properties":{"NOM_MUN":"Simojovel","POB1":40297},"arcs":[[-635,-760,771,772,-732,-554,-513,-662,773,-744]]},{"type":"Polygon","properties":{"NOM_MUN":"Sitalá","POB1":12269},"arcs":[[774,-730,-603]]},{"type":"Polygon","properties":{"NOM_MUN":"Socoltenango","POB1":17125},"arcs":[[-539,775,776,-617,-599,-542,777,-757]]},{"type":"Polygon","properties":{"NOM_MUN":"Solosuchiapa","POB1":8065},"arcs":[[-464,-649,-570,-651,-656]]},{"type":"Polygon","properties":{"NOM_MUN":"Soyaló","POB1":9740},"arcs":[[-654,-584,-719,-594,-506]]},{"type":"Polygon","properties":{"NOM_MUN":"Suchiapa","POB1":21045},"arcs":[[-590,778,-711,779]]},{"type":"Polygon","properties":{"NOM_MUN":"Suchiate","POB1":35056},"arcs":[[780,781,-620]]},{"type":"Polygon","properties":{"NOM_MUN":"Sunuapa","POB1":2235},"arcs":[[-714,-737]]},{"type":"Polygon","properties":{"NOM_MUN":"Tapachula","POB1":320451},"arcs":[[-517,782,-621,-782,783,784,785,-689,-629,786,-696,787]]},{"type":"Polygon","properties":{"NOM_MUN":"Tapalapa","POB1":4121},"arcs":[[-534,-709,-573,-736]]},{"type":"Polygon","properties":{"NOM_MUN":"Tapilula","POB1":12170},"arcs":[[-747,-748,-734,-647]]},{"type":"Polygon","properties":{"NOM_MUN":"Tecpatán","POB1":41045},"arcs":[[-613,-552,-500,-713,-528,788,789,-716]]},{"type":"Polygon","properties":{"NOM_MUN":"Tenejapa","POB1":40268},"arcs":[[790,-722,-634,-765,-559,-693,-578]]},{"type":"Polygon","properties":{"NOM_MUN":"Teopisca","POB1":37607},"arcs":[[-632,-770,-477,791,792,-766]]},{"type":"Polygon","properties":{"NOM_MUN":"Tila","POB1":71432},"arcs":[[793,794,-772,-759,795,796,-763]]},{"type":"Polygon","properties":{"NOM_MUN":"Tonalá","POB1":84594},"arcs":[[797,-742,798,799,-486,800]]},{"type":"Polygon","properties":{"NOM_MUN":"Totolapa","POB1":6375},"arcs":[[801,-699,802,-446,-592,803,-767,-793]]},{"type":"Polygon","properties":{"NOM_MUN":"La Trinitaria","POB1":72769},"arcs":[[-685,804,-618,-777,805,-537,-645]]},{"type":"Polygon","properties":{"NOM_MUN":"Tumbalá","POB1":31723},"arcs":[[-606,806,-794,-762]]},{"type":"Polygon","properties":{"NOM_MUN":"Tuxtla Gutiérrez","POB1":553374},"arcs":[[-771,-720,-591,-780,-710,-498]]},{"type":"Polygon","properties":{"NOM_MUN":"Tuxtla Chico","POB1":37737},"arcs":[[807,-692,-622,-783,-516]]},{"type":"Polygon","properties":{"NOM_MUN":"Tuzantán","POB1":28137},"arcs":[[-787,-628,-639,-697]]},{"type":"Polygon","properties":{"NOM_MUN":"Tzimol","POB1":14009},"arcs":[[-806,-776,-538]]},{"type":"Polygon","properties":{"NOM_MUN":"Unión Juárez","POB1":14089},"arcs":[[-514,808]]},{"type":"Polygon","properties":{"NOM_MUN":"Venustiano Carranza","POB1":61341},"arcs":[[-758,-778,-547,809,-587,-447,-803,-700,-802,-792,-476]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Corzo","POB1":74477},"arcs":[[-810,-546,-740,-798,810,-588]]},{"type":"Polygon","properties":{"NOM_MUN":"Villaflores","POB1":98618},"arcs":[[-779,-589,-811,-801,-485,-659,-712]]},{"type":"Polygon","properties":{"NOM_MUN":"Yajalón","POB1":34028},"arcs":[[-605,-733,-773,-795,-807]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lucas","POB1":6734},"arcs":[[-768,-804,-593,-450,811]]},{"type":"Polygon","properties":{"NOM_MUN":"Zinacantán","POB1":36489},"arcs":[[-769,-812,-449,-586,-653,-561]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Cancuc","POB1":29016},"arcs":[[-602,-703,-723,-791,-577,-731,-775]]},{"type":"Polygon","properties":{"NOM_MUN":"Aldama","POB1":5072},"arcs":[[-564,-675,812,-673,-580]]},{"type":"Polygon","properties":{"NOM_MUN":"Benemérito de las Américas","POB1":17282},"arcs":[[813,814,-706]]},{"type":"Polygon","properties":{"NOM_MUN":"Maravilla Tenejapa","POB1":11451},"arcs":[[815,-683,-701]]},{"type":"Polygon","properties":{"NOM_MUN":"Marqués de Comillas","POB1":9856},"arcs":[[-815,816,-707]]},{"type":"Polygon","properties":{"NOM_MUN":"Montecristo de Guerrero","POB1":6900},"arcs":[[-678,-481]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Duraznal","POB1":4545},"arcs":[[-774,-661,-745]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago el Pinar","POB1":3245},"arcs":[[-813,-674]]},{"type":"Polygon","properties":{"NOM_MUN":"Ahumada","POB1":11457},"arcs":[[817,818,819,820,821,822,823]]},{"type":"Polygon","properties":{"NOM_MUN":"Aldama","POB1":22302},"arcs":[[824,825,826,827,828,-820,829]]},{"type":"Polygon","properties":{"NOM_MUN":"Allende","POB1":8409},"arcs":[[830,831,832,833,834,835,836,837]]},{"type":"Polygon","properties":{"NOM_MUN":"Aquiles Serdán","POB1":10688},"arcs":[[838,839,-828]]},{"type":"Polygon","properties":{"NOM_MUN":"Ascensión","POB1":23975},"arcs":[[840,-823,841,842,843,844]]},{"type":"Polygon","properties":{"NOM_MUN":"Bachíniva","POB1":6011},"arcs":[[845,846,847]]},{"type":"Polygon","properties":{"NOM_MUN":"Balleza","POB1":17672},"arcs":[[848,849,850,851,852,853,854,855]]},{"type":"Polygon","properties":{"NOM_MUN":"Batopilas","POB1":14362},"arcs":[[856,857,858,859]]},{"type":"Polygon","properties":{"NOM_MUN":"Bocoyna","POB1":28766},"arcs":[[860,861,862,863,864,865]]},{"type":"Polygon","properties":{"NOM_MUN":"Buenaventura","POB1":22378},"arcs":[[866,867,868,869,870,-842,-822]]},{"type":"Polygon","properties":{"NOM_MUN":"Camargo","POB1":48748},"arcs":[[871,-387,872,-838,873,874,875,876,877]]},{"type":"Polygon","properties":{"NOM_MUN":"Carichí","POB1":8795},"arcs":[[878,879,880,-861,881,882]]},{"type":"Polygon","properties":{"NOM_MUN":"Casas Grandes","POB1":10587},"arcs":[[883,884,885,886,887,888,889,890]]},{"type":"Polygon","properties":{"NOM_MUN":"Coronado","POB1":2284},"arcs":[[891,892,893,894,-833,895]]},{"type":"Polygon","properties":{"NOM_MUN":"Coyame del Sotol","POB1":1681},"arcs":[[896,-830,-819,897]]},{"type":"Polygon","properties":{"NOM_MUN":"La Cruz","POB1":3982},"arcs":[[-875,898,899]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuauhtémoc","POB1":154639},"arcs":[[900,901,902,903,-848,904]]},{"type":"Polygon","properties":{"NOM_MUN":"Cusihuiriachi","POB1":5414},"arcs":[[905,906,907,-883,908,-903]]},{"type":"Polygon","properties":{"NOM_MUN":"Chihuahua","POB1":819543},"arcs":[[-829,-840,909,910,911,912,913,-867,-821]]},{"type":"Polygon","properties":{"NOM_MUN":"Chínipas","POB1":8441},"arcs":[[914,915,916,917]]},{"type":"Polygon","properties":{"NOM_MUN":"Delicias","POB1":137935},"arcs":[[918,919,920]]},{"type":"Polygon","properties":{"NOM_MUN":"Dr. Belisario Domínguez","POB1":2911},"arcs":[[921,922,-907,923,924]]},{"type":"Polygon","properties":{"NOM_MUN":"Galeana","POB1":5892},"arcs":[[-870,925,-885,926]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Isabel","POB1":3937},"arcs":[[-912,927,-925,928,929]]},{"type":"Polygon","properties":{"NOM_MUN":"Gómez Farías","POB1":8624},"arcs":[[930,931,932,933]]},{"type":"Polygon","properties":{"NOM_MUN":"Gran Morelos","POB1":3209},"arcs":[[-929,-924,-906,-902]]},{"type":"Polygon","properties":{"NOM_MUN":"Guachochi","POB1":49689},"arcs":[[-881,934,-856,935,936,-857,937,-862]]},{"type":"Polygon","properties":{"NOM_MUN":"Guadalupe","POB1":6458},"arcs":[[938,939,940,-898,-818,941,942]]},{"type":"Polygon","properties":{"NOM_MUN":"Guadalupe y Calvo","POB1":53499},"arcs":[[-855,943,944,945,946,947,948,-936]]},{"type":"Polygon","properties":{"NOM_MUN":"Guazapares","POB1":8998},"arcs":[[949,950,-915,951,952]]},{"type":"Polygon","properties":{"NOM_MUN":"Guerrero","POB1":39626},"arcs":[[-846,-904,-909,-882,-866,953,954,955,956]]},{"type":"Polygon","properties":{"NOM_MUN":"Hidalgo del Parral","POB1":107061},"arcs":[[-835,957,958,959,960,961]]},{"type":"Polygon","properties":{"NOM_MUN":"Huejotitán","POB1":1049},"arcs":[[-961,962,963,964,965]]},{"type":"Polygon","properties":{"NOM_MUN":"Ignacio Zaragoza","POB1":6934},"arcs":[[-869,966,-934,967,-886,-926]]},{"type":"Polygon","properties":{"NOM_MUN":"Janos","POB1":10953},"arcs":[[-844,968,-891,969,970,971,972]]},{"type":"Polygon","properties":{"NOM_MUN":"Jiménez","POB1":41265},"arcs":[[-386,973,974,975,-892,976,-831,-873]]},{"type":"Polygon","properties":{"NOM_MUN":"Juárez","POB1":1332131},"arcs":[[977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,-942,-824,-841,1016,1017,1018,1019,1020,1021]]},{"type":"Polygon","properties":{"NOM_MUN":"Julimes","POB1":4953},"arcs":[[1022,-877,1023,1024,1025,-826]]},{"type":"Polygon","properties":{"NOM_MUN":"López","POB1":4025},"arcs":[[-896,-832,-977]]},{"type":"Polygon","properties":{"NOM_MUN":"Madera","POB1":29611},"arcs":[[-968,-933,1026,1027,1028,-887]]},{"type":"Polygon","properties":{"NOM_MUN":"Maguarichi","POB1":1921},"arcs":[[-864,1029,-953,1030,1031]]},{"type":"Polygon","properties":{"NOM_MUN":"Manuel Benavides","POB1":1601},"arcs":[[-357,-388,-872,1032,1033]]},{"type":"Polygon","properties":{"NOM_MUN":"Matachí","POB1":3104},"arcs":[[1034,-956,1035]]},{"type":"Polygon","properties":{"NOM_MUN":"Matamoros","POB1":4499},"arcs":[[-895,1036,1037,-958,-834]]},{"type":"Polygon","properties":{"NOM_MUN":"Meoqui","POB1":43833},"arcs":[[1038,-921,1039,-1025]]},{"type":"Polygon","properties":{"NOM_MUN":"Morelos","POB1":8343},"arcs":[[-937,-949,1040,1041,-858]]},{"type":"Polygon","properties":{"NOM_MUN":"Moris","POB1":5312},"arcs":[[1042,1043,1044,1045,1046]]},{"type":"Polygon","properties":{"NOM_MUN":"Namiquipa","POB1":22880},"arcs":[[-914,1047,-905,-847,-957,-1035,1048,-931,-967,-868]]},{"type":"Polygon","properties":{"NOM_MUN":"Nonoava","POB1":2849},"arcs":[[1049,1050,-849,-935,-880,1051]]},{"type":"Polygon","properties":{"NOM_MUN":"Nuevo Casas Grandes","POB1":59337},"arcs":[[-871,-927,-884,-969,-843]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocampo","POB1":7546},"arcs":[[-954,-865,-1032,1052,-1043,1053]]},{"type":"Polygon","properties":{"NOM_MUN":"Ojinaga","POB1":26304},"arcs":[[1054,-1033,-878,-1023,-825,-897,-941]]},{"type":"Polygon","properties":{"NOM_MUN":"Praxedis G. Guerrero","POB1":4799},"arcs":[[-939,1055]]},{"type":"Polygon","properties":{"NOM_MUN":"Riva Palacio","POB1":8012},"arcs":[[-913,-930,-901,-1048]]},{"type":"Polygon","properties":{"NOM_MUN":"Rosales","POB1":16785},"arcs":[[-1026,-1040,-920,1056,1057,-910,-839,-827]]},{"type":"Polygon","properties":{"NOM_MUN":"Rosario","POB1":2235},"arcs":[[1058,-965,1059,-850,-1051,1060]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco de Borja","POB1":2290},"arcs":[[-923,1061,-1052,-879,-908]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco de Conchos","POB1":2983},"arcs":[[-899,-874,-837,1062,1063]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco del Oro","POB1":4753},"arcs":[[1064,1065,-852,1066,-963,-960]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Bárbara","POB1":10427},"arcs":[[1067,-1065,-959,-1038]]},{"type":"Polygon","properties":{"NOM_MUN":"Satevó","POB1":3662},"arcs":[[-1058,1068,1069,-1061,-1050,-1062,-922,-928,-911]]},{"type":"Polygon","properties":{"NOM_MUN":"Saucillo","POB1":32325},"arcs":[[-876,-900,-1064,1070,-1069,-1057,-919,-1039,-1024]]},{"type":"Polygon","properties":{"NOM_MUN":"Temósachic","POB1":6211},"arcs":[[-1049,-1036,-955,-1054,-1047,1071,1072,-1027,-932]]},{"type":"Polygon","properties":{"NOM_MUN":"El Tule","POB1":1869},"arcs":[[-964,-1067,-851,-1060]]},{"type":"Polygon","properties":{"NOM_MUN":"Urique","POB1":20386},"arcs":[[-938,-860,1073,-950,-1030,-863]]},{"type":"Polygon","properties":{"NOM_MUN":"Uruachi","POB1":8200},"arcs":[[-1053,-1031,-952,-918,1074,1075,1076,-1044]]},{"type":"Polygon","properties":{"NOM_MUN":"Valle de Zaragoza","POB1":5105},"arcs":[[-1063,-836,-962,-966,-1059,-1070,-1071]]},{"type":"Polygon","properties":{"NOM_MUN":"Azcapotzalco","POB1":414711},"arcs":[[1077,1078,1079,1080,1081]]},{"type":"Polygon","properties":{"NOM_MUN":"Coyoacán","POB1":620416},"arcs":[[1082,1083,1084,1085,1086]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuajimalpa de Morelos","POB1":186391},"arcs":[[1087,1088,1089,1090]]},{"type":"Polygon","properties":{"NOM_MUN":"Gustavo A. Madero","POB1":1185772},"arcs":[[1091,1092,1093,1094,1095,1096,1097,1098,-1078,1099,1100,1101,1102,1103]]},{"type":"Polygon","properties":{"NOM_MUN":"Iztacalco","POB1":384326},"arcs":[[1104,1105,1106,1107,1108]]},{"type":"Polygon","properties":{"NOM_MUN":"Iztapalapa","POB1":1815786},"arcs":[[1109,1110,1111,1112,1113,-1084,1114,-1106]]},{"type":"Polygon","properties":{"NOM_MUN":"La Magdalena Contreras","POB1":239086},"arcs":[[1115,1116,1117]]},{"type":"Polygon","properties":{"NOM_MUN":"Milpa Alta","POB1":130582},"arcs":[[1118,1119,1120,1121,1122,1123,1124,1125]]},{"type":"Polygon","properties":{"NOM_MUN":"Álvaro Obregón","POB1":727034},"arcs":[[1126,-1087,1127,-1117,1128,-1089,1129]]},{"type":"Polygon","properties":{"NOM_MUN":"Tláhuac","POB1":360265},"arcs":[[1130,1131,1132,1133,-1126,1134,-1113]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlalpan","POB1":650567},"arcs":[[1135,-1124,1136,1137,1138,1139,-1118,-1128,-1086]]},{"type":"Polygon","properties":{"NOM_MUN":"Xochimilco","POB1":415007},"arcs":[[-1085,-1114,-1135,-1125,-1136]]},{"type":"Polygon","properties":{"NOM_MUN":"Benito Juárez","POB1":385439},"arcs":[[-1127,1140,1141,-1107,-1115,-1083]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuauhtémoc","POB1":531831},"arcs":[[-1079,-1099,1142,-1108,-1142,1143]]},{"type":"Polygon","properties":{"NOM_MUN":"Miguel Hidalgo","POB1":372889},"arcs":[[-1144,-1141,-1130,-1088,1144,1145,-1080]]},{"type":"Polygon","properties":{"NOM_MUN":"Venustiano Carranza","POB1":430978},"arcs":[[1146,-1109,-1143,-1098]]},{"type":"Polygon","properties":{"NOM_MUN":"Canatlán","POB1":31401},"arcs":[[1147,1148,1149,1150,1151,1152,1153]]},{"type":"Polygon","properties":{"NOM_MUN":"Canelas","POB1":4122},"arcs":[[1154,1155,1156,1157]]},{"type":"Polygon","properties":{"NOM_MUN":"Coneto de Comonfort","POB1":4530},"arcs":[[1158,-1148,1159,1160,1161,1162]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuencamé","POB1":33664},"arcs":[[1163,1164,1165,1166,1167,1168,1169,1170,1171]]},{"type":"Polygon","properties":{"NOM_MUN":"Durango","POB1":582267},"arcs":[[1172,1173,1174,1175,1176,1177,1178,-1151]]},{"type":"Polygon","properties":{"NOM_MUN":"General Simón Bolívar","POB1":10629},"arcs":[[-397,1179,1180,1181,-1165,1182,-389]]},{"type":"Polygon","properties":{"NOM_MUN":"Gómez Palacio","POB1":327985},"arcs":[[-305,-337,-393,1183,1184,1185]]},{"type":"Polygon","properties":{"NOM_MUN":"Guadalupe Victoria","POB1":34052},"arcs":[[-1170,1186,-1174,1187,1188]]},{"type":"Polygon","properties":{"NOM_MUN":"Guanaceví","POB1":10149},"arcs":[[1189,1190,1191,1192,-944,-854]]},{"type":"Polygon","properties":{"NOM_MUN":"Hidalgo","POB1":4265},"arcs":[[-976,1193,1194,1195,1196,-893]]},{"type":"Polygon","properties":{"NOM_MUN":"Indé","POB1":5280},"arcs":[[1197,1198,1199,1200,-1196]]},{"type":"Polygon","properties":{"NOM_MUN":"Lerdo","POB1":141043},"arcs":[[-1184,-392,-335,-398,-390,-1183,-1164,1201,1202]]},{"type":"Polygon","properties":{"NOM_MUN":"Mapimí","POB1":25137},"arcs":[[1203,-1185,-1203,1204,1205,-1194,-975]]},{"type":"Polygon","properties":{"NOM_MUN":"Mezquital","POB1":33396},"arcs":[[1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,-1177]]},{"type":"Polygon","properties":{"NOM_MUN":"Nazas","POB1":12411},"arcs":[[-1202,-1172,1217,1218,1219,1220,1221,-1205]]},{"type":"Polygon","properties":{"NOM_MUN":"Nombre de Dios","POB1":18488},"arcs":[[1222,1223,1224,-1207,-1176]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocampo","POB1":9626},"arcs":[[-1066,-1068,-1037,-894,-1197,-1201,1225,1226,-1190,-853]]},{"type":"Polygon","properties":{"NOM_MUN":"El Oro","POB1":11320},"arcs":[[1227,-1162,1228,1229,-1192,1230,-1226,-1200]]},{"type":"Polygon","properties":{"NOM_MUN":"Otáez","POB1":5208},"arcs":[[1231,1232,1233]]},{"type":"Polygon","properties":{"NOM_MUN":"Pánuco de Coronado","POB1":11927},"arcs":[[-1188,-1173,-1150,1234,1235]]},{"type":"Polygon","properties":{"NOM_MUN":"Peñón Blanco","POB1":10473},"arcs":[[-1171,-1189,-1236,1236,-1218]]},{"type":"Polygon","properties":{"NOM_MUN":"Poanas","POB1":24918},"arcs":[[-1169,1237,1238,-1223,-1175,-1187]]},{"type":"Polygon","properties":{"NOM_MUN":"Pueblo Nuevo","POB1":49162},"arcs":[[-1217,1239,1240,1241,1242,-1178]]},{"type":"Polygon","properties":{"NOM_MUN":"Rodeo","POB1":12788},"arcs":[[-1220,1243,-1163,-1228,-1199,1244,1245]]},{"type":"Polygon","properties":{"NOM_MUN":"San Bernardo","POB1":3433},"arcs":[[-1231,-1191,-1227]]},{"type":"Polygon","properties":{"NOM_MUN":"San Dimas","POB1":19691},"arcs":[[-1179,-1243,1246,1247,1248,1249,-1232,1250,-1152]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan de Guadalupe","POB1":5947},"arcs":[[1251,-1180,-396,1252]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan del Río","POB1":11855},"arcs":[[-1219,-1237,-1235,-1149,-1159,-1244]]},{"type":"Polygon","properties":{"NOM_MUN":"San Luis del Cordero","POB1":2181},"arcs":[[-1246,1253,-1221]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro del Gallo","POB1":1709},"arcs":[[-1222,-1254,-1245,-1198,-1195,-1206]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Clara","POB1":7003},"arcs":[[1254,1255,1256,-1166,-1182]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Papasquiaro","POB1":44966},"arcs":[[-1229,-1161,1257,-1153,-1251,-1234,1258,-1156,1259]]},{"type":"Polygon","properties":{"NOM_MUN":"Súchil","POB1":6761},"arcs":[[1260,1261,-1208,-1225,1262,1263]]},{"type":"Polygon","properties":{"NOM_MUN":"Tamazula","POB1":26368},"arcs":[[1264,1265,-1157,-1259,-1233,-1250,1266,1267,1268,1269,-946]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepehuanes","POB1":10745},"arcs":[[-1230,-1260,-1155,1270,-1265,-945,-1193]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlahualilo","POB1":22244},"arcs":[[-385,-306,-1186,-1204,-974]]},{"type":"Polygon","properties":{"NOM_MUN":"Topia","POB1":8581},"arcs":[[-1271,-1158,-1266]]},{"type":"Polygon","properties":{"NOM_MUN":"Vicente Guerrero","POB1":21117},"arcs":[[-1263,-1224,-1239,1271]]},{"type":"Polygon","properties":{"NOM_MUN":"Nuevo Ideal","POB1":26092},"arcs":[[-1154,-1258,-1160]]},{"type":"Polygon","properties":{"NOM_MUN":"Abasolo","POB1":84332},"arcs":[[1272,1273,1274,1275,1276,1277,1278,1279]]},{"type":"Polygon","properties":{"NOM_MUN":"Acámbaro","POB1":109030},"arcs":[[1280,1281,1282,1283,1284,1285,1286,1287]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel de Allende","POB1":160383},"arcs":[[1288,1289,1290,1291,1292,1293,1294,1295,1296,1297]]},{"type":"Polygon","properties":{"NOM_MUN":"Apaseo el Alto","POB1":64433},"arcs":[[1298,1299,1300,1301,1302]]},{"type":"Polygon","properties":{"NOM_MUN":"Apaseo el Grande","POB1":85319},"arcs":[[1303,1304,1305,-1302,1306,1307,-1293,1308]]},{"type":"Polygon","properties":{"NOM_MUN":"Atarjea","POB1":5610},"arcs":[[1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319]]},{"type":"Polygon","properties":{"NOM_MUN":"Celaya","POB1":468469},"arcs":[[-1307,-1301,1320,1321,1322,1323,1324]]},{"type":"Polygon","properties":{"NOM_MUN":"Manuel Doblado","POB1":37145},"arcs":[[1325,1326,1327,1328,1329,1330]]},{"type":"Polygon","properties":{"NOM_MUN":"Comonfort","POB1":77794},"arcs":[[1331,-1294,-1308,-1325]]},{"type":"Polygon","properties":{"NOM_MUN":"Coroneo","POB1":11691},"arcs":[[1332,1333,1334]]},{"type":"Polygon","properties":{"NOM_MUN":"Cortazar","POB1":88397},"arcs":[[1335,-1322,1336,1337,1338,1339]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuerámaro","POB1":27308},"arcs":[[1340,-1279,1341,-1327]]},{"type":"Polygon","properties":{"NOM_MUN":"Doctor Mora","POB1":23324},"arcs":[[1342,1343,1344,1345]]},{"type":"Polygon","properties":{"NOM_MUN":"Dolores Hidalgo Cuna de la Independencia Nacional","POB1":148173},"arcs":[[1346,-1297,1347,1348,1349,1350]]},{"type":"Polygon","properties":{"NOM_MUN":"Guanajuato","POB1":171709},"arcs":[[1351,-1349,1352,1353,1354,1355]]},{"type":"Polygon","properties":{"NOM_MUN":"Huanímaro","POB1":20117},"arcs":[[1356,1357,-1276]]},{"type":"Polygon","properties":{"NOM_MUN":"Irapuato","POB1":529440},"arcs":[[1358,-1273,1359,1360,-1354,1361]]},{"type":"Polygon","properties":{"NOM_MUN":"Jaral del Progreso","POB1":36584},"arcs":[[1362,1363,1364,1365,-1339]]},{"type":"Polygon","properties":{"NOM_MUN":"Jerécuaro","POB1":50832},"arcs":[[1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,-1334,1384,1385,1386,-1287,1387,-1299,1388,1389,1390]]},{"type":"Polygon","properties":{"NOM_MUN":"León","POB1":1436480},"arcs":[[-1356,1391,1392,1393,1394,1395,1396,1397]]},{"type":"Polygon","properties":{"NOM_MUN":"Moroleón","POB1":49364},"arcs":[[1398,1399,1400,1401]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocampo","POB1":22683},"arcs":[[1402,1403,1404,1405,1406]]},{"type":"Polygon","properties":{"NOM_MUN":"Pénjamo","POB1":149936},"arcs":[[-1342,-1278,1407,1408,1409,1410,1411,1412,1413,-1328]]},{"type":"Polygon","properties":{"NOM_MUN":"Pueblo Nuevo","POB1":11169},"arcs":[[-1359,1414,1415,-1274]]},{"type":"Polygon","properties":{"NOM_MUN":"Purísima del Rincón","POB1":68795},"arcs":[[1416,-1330,1417,1418,1419,1420,-1395]]},{"type":"Polygon","properties":{"NOM_MUN":"Romita","POB1":56655},"arcs":[[-1341,-1326,1421,-1393,1422,-1360,-1280]]},{"type":"Polygon","properties":{"NOM_MUN":"Salamanca","POB1":260732},"arcs":[[-1348,-1296,1423,1424,-1340,-1366,1425,-1415,-1362,-1353]]},{"type":"Polygon","properties":{"NOM_MUN":"Salvatierra","POB1":97054},"arcs":[[1426,-1285,1427,1428,1429,1430,-1363,-1338]]},{"type":"Polygon","properties":{"NOM_MUN":"San Diego de la Unión","POB1":37103},"arcs":[[1431,-1351,1432,1433]]},{"type":"Polygon","properties":{"NOM_MUN":"San Felipe","POB1":106952},"arcs":[[-1350,-1352,-1398,1434,-1407,1435,1436,1437,-1433]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco del Rincón","POB1":113570},"arcs":[[-1394,-1422,-1331,-1417]]},{"type":"Polygon","properties":{"NOM_MUN":"San José Iturbide","POB1":72411},"arcs":[[1438,-1343,1439,1440,1441,1442,1443,-1289]]},{"type":"Polygon","properties":{"NOM_MUN":"San Luis de la Paz","POB1":115656},"arcs":[[1444,1445,-1344,-1439,-1298,-1347,-1432,1446,1447]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina","POB1":5120},"arcs":[[1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz de Juventino Rosas","POB1":79214},"arcs":[[-1332,-1324,1462,-1424,-1295]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Maravatío","POB1":6670},"arcs":[[-1430,1463]]},{"type":"Polygon","properties":{"NOM_MUN":"Silao","POB1":173024},"arcs":[[-1392,-1355,-1361,-1423]]},{"type":"Polygon","properties":{"NOM_MUN":"Tarandacuao","POB1":11641},"arcs":[[-1387,1464,-1288]]},{"type":"Polygon","properties":{"NOM_MUN":"Tarimoro","POB1":35571},"arcs":[[-1427,-1337,-1321,-1300,-1388,-1286]]},{"type":"Polygon","properties":{"NOM_MUN":"Tierra Blanca","POB1":18175},"arcs":[[-1461,1465,1466,1467,1468,1469,1470,-1440,-1346,1471]]},{"type":"Polygon","properties":{"NOM_MUN":"Uriangato","POB1":59305},"arcs":[[1472,1473,-1399,1474]]},{"type":"Polygon","properties":{"NOM_MUN":"Valle de Santiago","POB1":141058},"arcs":[[-1426,-1365,1475,1476,1477,-1357,-1275,-1416]]},{"type":"Polygon","properties":{"NOM_MUN":"Victoria","POB1":19820},"arcs":[[-1345,-1446,1478,1479,1480,1481,-1462,-1472]]},{"type":"Polygon","properties":{"NOM_MUN":"Villagrán","POB1":55782},"arcs":[[-1323,-1336,-1425,-1463]]},{"type":"Polygon","properties":{"NOM_MUN":"Xichú","POB1":11560},"arcs":[[-1482,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,-1320,1494,1495,1496,1497,1498,1499,1500,1501,-1449]]},{"type":"Polygon","properties":{"NOM_MUN":"Yuriria","POB1":70782},"arcs":[[-1364,-1431,-1464,-1429,1502,-1475,-1402,1503,1504,1505,-1476]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Acapulco de Juárez","POB1":789971},"arcs":[[[1506]],[[1507,1508,1509,1510,1511]]]},{"type":"Polygon","properties":{"NOM_MUN":"Ahuacuotzingo","POB1":25027},"arcs":[[1512,1513,1514,1515,1516,1517]]},{"type":"Polygon","properties":{"NOM_MUN":"Ajuchitlán del Progreso","POB1":38203},"arcs":[[1518,1519,1520,1521,1522,1523]]},{"type":"Polygon","properties":{"NOM_MUN":"Alcozauca de Guerrero","POB1":18971},"arcs":[[1524,1525,1526,1527,1528,1529,1530,1531]]},{"type":"Polygon","properties":{"NOM_MUN":"Alpoyeca","POB1":6637},"arcs":[[1532,1533,1534,1535,1536]]},{"type":"Polygon","properties":{"NOM_MUN":"Apaxtla","POB1":12389},"arcs":[[1537,1538,1539,1540,1541]]},{"type":"Polygon","properties":{"NOM_MUN":"Arcelia","POB1":32181},"arcs":[[1542,-1541,1543,-1520,1544,1545,1546,1547]]},{"type":"Polygon","properties":{"NOM_MUN":"Atenango del Río","POB1":8390},"arcs":[[1548,1549,1550,1551]]},{"type":"Polygon","properties":{"NOM_MUN":"Atlamajalcingo del Monte","POB1":5706},"arcs":[[1552,1553,1554,1555]]},{"type":"Polygon","properties":{"NOM_MUN":"Atlixtac","POB1":26341},"arcs":[[1556,1557,1558,1559,1560,1561,1562,-1515]]},{"type":"Polygon","properties":{"NOM_MUN":"Atoyac de Álvarez","POB1":61316},"arcs":[[1563,1564,1565,1566,1567]]},{"type":"Polygon","properties":{"NOM_MUN":"Ayutla de los Libres","POB1":62690},"arcs":[[1568,1569,1570,1571,1572,1573]]},{"type":"Polygon","properties":{"NOM_MUN":"Azoyú","POB1":14429},"arcs":[[1574,1575,1576,1577,1578,1579]]},{"type":"Polygon","properties":{"NOM_MUN":"Benito Juárez","POB1":15019},"arcs":[[-1566,1580,1581,1582]]},{"type":"Polygon","properties":{"NOM_MUN":"Buenavista de Cuéllar","POB1":12688},"arcs":[[1583,1584,1585,1586,1587]]},{"type":"Polygon","properties":{"NOM_MUN":"Coahuayutla de José María Izazaga","POB1":13025},"arcs":[[1588,1589,1590,1591,1592,1593]]},{"type":"Polygon","properties":{"NOM_MUN":"Cocula","POB1":14707},"arcs":[[1594,1595,1596,1597,1598]]},{"type":"Polygon","properties":{"NOM_MUN":"Copala","POB1":13636},"arcs":[[1599,1600,1601,1602,1603]]},{"type":"Polygon","properties":{"NOM_MUN":"Copalillo","POB1":14456},"arcs":[[1604,1605,1606,-1518,1607,1608,1609,-1550]]},{"type":"Polygon","properties":{"NOM_MUN":"Copanatoyac","POB1":18855},"arcs":[[1610,-1555,1611,1612,1613,-1558,1614]]},{"type":"Polygon","properties":{"NOM_MUN":"Coyuca de Benítez","POB1":73460},"arcs":[[1615,-1511,1616,-1581,-1565,1617]]},{"type":"Polygon","properties":{"NOM_MUN":"Coyuca de Catalán","POB1":42069},"arcs":[[1618,1619,-1523,1620,1621,1622,-1590,1623,1624]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuajinicuilapa","POB1":25922},"arcs":[[1625,1626,1627,1628,1629,1630,1631,-1577,1632]]},{"type":"Polygon","properties":{"NOM_MUN":"Cualác","POB1":7007},"arcs":[[1633,-1514,1634,1635]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuautepec","POB1":15115},"arcs":[[-1604,1636,-1571,1637]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuetzala del Progreso","POB1":9166},"arcs":[[1638,1639,-1538,1640,-1598]]},{"type":"Polygon","properties":{"NOM_MUN":"Cutzamala de Pinzón","POB1":21388},"arcs":[[1641,1642,1643,1644,1645,1646,1647]]},{"type":"Polygon","properties":{"NOM_MUN":"Chilapa de Álvarez","POB1":120790},"arcs":[[-1563,1648,-1561,1649,1650,1651,1652,1653,-1516]]},{"type":"Polygon","properties":{"NOM_MUN":"Chilpancingo de los Bravo","POB1":241717},"arcs":[[1654,1655,1656,-1512,-1616,1657,1658,1659]]},{"type":"Polygon","properties":{"NOM_MUN":"Florencio Villarreal","POB1":20175},"arcs":[[1660,1661,1662,-1572,-1637,-1603]]},{"type":"Polygon","properties":{"NOM_MUN":"General Canuto A. Neri","POB1":6301},"arcs":[[-1548,1663,1664]]},{"type":"Polygon","properties":{"NOM_MUN":"General Heliodoro Castillo","POB1":36586},"arcs":[[-1640,1665,1666,-1658,-1618,-1564,1667,-1539]]},{"type":"Polygon","properties":{"NOM_MUN":"Huamuxtitlán","POB1":14393},"arcs":[[1668,-1536,1669,-1636,1670,1671]]},{"type":"Polygon","properties":{"NOM_MUN":"Huitzuco de los Figueroa","POB1":37364},"arcs":[[1672,-1551,-1610,1673,1674,1675,-1586,1676,1677,1678,1679,1680]]},{"type":"Polygon","properties":{"NOM_MUN":"Iguala de la Independencia","POB1":140363},"arcs":[[-1587,-1676,1681,-1595,1682,1683]]},{"type":"Polygon","properties":{"NOM_MUN":"Igualapa","POB1":10815},"arcs":[[1684,1685,-1575,1686,1687]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixcateopan de Cuauhtémoc","POB1":6603},"arcs":[[1688,1689,1690]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Zihuatanejo de Azueta","POB1":118211},"arcs":[[[1691]],[[1692,1693,1694,-1591,-1623]]]},{"type":"Polygon","properties":{"NOM_MUN":"Juan R. Escudero","POB1":24364},"arcs":[[1695,1696,1697,-1508,-1657,1698]]},{"type":"Polygon","properties":{"NOM_MUN":"Leonardo Bravo","POB1":24720},"arcs":[[-1659,-1667,1699]]},{"type":"Polygon","properties":{"NOM_MUN":"Malinaltepec","POB1":29599},"arcs":[[-1554,1700,1701,1702,1703,-1612]]},{"type":"Polygon","properties":{"NOM_MUN":"Mártir de Cuilapan","POB1":17702},"arcs":[[-1674,-1609,1704,1705,1706,1707]]},{"type":"Polygon","properties":{"NOM_MUN":"Metlatónoc","POB1":18976},"arcs":[[1708,1709,1710,-1688,1711,1712,-1701,-1553,1713,-1529]]},{"type":"Polygon","properties":{"NOM_MUN":"Mochitlán","POB1":11376},"arcs":[[1714,-1699,-1656,1715,-1652]]},{"type":"Polygon","properties":{"NOM_MUN":"Olinalá","POB1":24723},"arcs":[[1716,-1671,-1635,-1513,-1607,1717]]},{"type":"Polygon","properties":{"NOM_MUN":"Ometepec","POB1":61306},"arcs":[[1718,1719,1720,1721,1722,-1633,-1576,-1686,1723]]},{"type":"Polygon","properties":{"NOM_MUN":"Pedro Ascencio Alquisiras","POB1":6978},"arcs":[[1724,1725,-1690,1726,1727,1728]]},{"type":"Polygon","properties":{"NOM_MUN":"Petatlán","POB1":44979},"arcs":[[1729,1730,-1693,-1622]]},{"type":"Polygon","properties":{"NOM_MUN":"Pilcaya","POB1":11558},"arcs":[[1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743]]},{"type":"Polygon","properties":{"NOM_MUN":"Pungarabato","POB1":37035},"arcs":[[1744,1745,-1524,-1620,1746,-1645]]},{"type":"Polygon","properties":{"NOM_MUN":"Quechultenango","POB1":34728},"arcs":[[1747,-1574,1748,-1696,-1715,-1651]]},{"type":"Polygon","properties":{"NOM_MUN":"San Luis Acatlán","POB1":42360},"arcs":[[1749,-1712,-1687,-1580,1750,-1600,-1638,-1570,1751,1752,-1703]]},{"type":"Polygon","properties":{"NOM_MUN":"San Marcos","POB1":48501},"arcs":[[-1662,1753,-1509,-1698,1754]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Totolapan","POB1":28009},"arcs":[[-1544,-1540,-1668,-1568,1755,-1521]]},{"type":"Polygon","properties":{"NOM_MUN":"Taxco de Alarcón","POB1":104053},"arcs":[[1756,1757,1758,1759,1760,1761,1762,-1588,-1684,1763,-1691,-1726,1764,-1740,1765]]},{"type":"Polygon","properties":{"NOM_MUN":"Tecoanapa","POB1":44079},"arcs":[[-1573,-1663,-1755,-1697,-1749]]},{"type":"Polygon","properties":{"NOM_MUN":"Técpan de Galeana","POB1":62071},"arcs":[[-1756,-1567,-1583,1766,-1730,-1621,-1522]]},{"type":"Polygon","properties":{"NOM_MUN":"Teloloapan","POB1":53769},"arcs":[[-1727,-1689,-1764,-1683,-1599,-1641,-1542,-1543,-1665,1767,1768,1769]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepecoacuilco de Trujano","POB1":30470},"arcs":[[-1708,1770,-1596,-1682,-1675]]},{"type":"Polygon","properties":{"NOM_MUN":"Tetipac","POB1":13128},"arcs":[[-1765,-1725,1771,-1741]]},{"type":"Polygon","properties":{"NOM_MUN":"Tixtla de Guerrero","POB1":40058},"arcs":[[-1653,-1716,-1655,1772,-1706]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlacoachistlahuaca","POB1":21306},"arcs":[[1773,1774,1775,1776,-1724,-1685,-1711,1777,-1709,-1528]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlacoapa","POB1":9967},"arcs":[[-1704,-1753,1778,1779,-1613]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlalchapa","POB1":11495},"arcs":[[1780,-1546,1781,-1745,-1644,1782]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlalixtaquilla de Maldonado","POB1":7096},"arcs":[[1783,1784,-1532,1785,-1534,1786]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlapa de Comonfort","POB1":81419},"arcs":[[-1535,-1786,-1531,1787,-1615,-1557,-1634,-1670]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlapehuala","POB1":21819},"arcs":[[-1545,-1519,-1746,-1782]]},{"type":"Polygon","properties":{"NOM_MUN":"La Unión de Isidoro Montes de Oca","POB1":25712},"arcs":[[-1695,1788,1789,1790,-1592]]},{"type":"Polygon","properties":{"NOM_MUN":"Xalpatláhuac","POB1":12240},"arcs":[[-1714,-1556,-1611,-1788,-1530]]},{"type":"Polygon","properties":{"NOM_MUN":"Xochihuehuetlán","POB1":7079},"arcs":[[1791,1792,-1672,-1717,1793,1794]]},{"type":"Polygon","properties":{"NOM_MUN":"Xochistlahuaca","POB1":28089},"arcs":[[1795,1796,1797,1798,1799,-1719,-1777,1800,1801]]},{"type":"Polygon","properties":{"NOM_MUN":"Zapotitlán Tablas","POB1":10516},"arcs":[[-1780,1802,-1559,-1614]]},{"type":"Polygon","properties":{"NOM_MUN":"Zirándaro","POB1":18813},"arcs":[[-1624,-1589,1803,1804]]},{"type":"Polygon","properties":{"NOM_MUN":"Zitlala","POB1":22587},"arcs":[[-1517,-1654,-1705,-1608]]},{"type":"Polygon","properties":{"NOM_MUN":"Eduardo Neri","POB1":46158},"arcs":[[-1707,-1773,-1660,-1700,-1666,-1639,-1597,-1771]]},{"type":"Polygon","properties":{"NOM_MUN":"Acatepec","POB1":32792},"arcs":[[-1779,-1752,-1569,-1748,-1650,-1560,-1803]]},{"type":"Polygon","properties":{"NOM_MUN":"Marquelia","POB1":12912},"arcs":[[1805,-1631,1806,-1601,-1751,-1579]]},{"type":"Polygon","properties":{"NOM_MUN":"Cochoapa el Grande","POB1":18778},"arcs":[[-1778,-1710]]},{"type":"Polygon","properties":{"NOM_MUN":"José Joaquin de Herrera","POB1":15678},"arcs":[[-1562,-1649]]},{"type":"Polygon","properties":{"NOM_MUN":"Juchitán","POB1":7166},"arcs":[[-1632,-1806,-1578]]},{"type":"Polygon","properties":{"NOM_MUN":"Iliatenco","POB1":10522},"arcs":[[-1713,-1750,-1702]]},{"type":"Polygon","properties":{"NOM_MUN":"Acatlán","POB1":20077},"arcs":[[1807,1808,1809,1810,1811,1812,1813,1814]]},{"type":"Polygon","properties":{"NOM_MUN":"Acaxochitlán","POB1":40583},"arcs":[[1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881]]},{"type":"Polygon","properties":{"NOM_MUN":"Actopan","POB1":54299},"arcs":[[1882,1883,1884,1885,1886,1887,1888,1889]]},{"type":"Polygon","properties":{"NOM_MUN":"Agua Blanca de Iturbide","POB1":8994},"arcs":[[1890,1891,1892,1893,-1811,1894,-1809]]},{"type":"Polygon","properties":{"NOM_MUN":"Ajacuba","POB1":17055},"arcs":[[1895,-1887,1896,1897,1898,1899,1900,1901,1902,1903]]},{"type":"Polygon","properties":{"NOM_MUN":"Alfajayucan","POB1":18879},"arcs":[[1904,1905,1906,1907,1908,1909]]},{"type":"Polygon","properties":{"NOM_MUN":"Almoloya","POB1":11294},"arcs":[[1910,1911,1912]]},{"type":"Polygon","properties":{"NOM_MUN":"Apan","POB1":42563},"arcs":[[1913,-1913,1914,1915,1916,1917,1918,1919,1920]]},{"type":"Polygon","properties":{"NOM_MUN":"El Arenal","POB1":17374},"arcs":[[1921,1922,-1885]]},{"type":"Polygon","properties":{"NOM_MUN":"Atitalaquia","POB1":26904},"arcs":[[-1901,1923,1924,1925,1926]]},{"type":"Polygon","properties":{"NOM_MUN":"Atlapexco","POB1":19452},"arcs":[[1927,1928,1929,1930,1931]]},{"type":"Polygon","properties":{"NOM_MUN":"Atotonilco el Grande","POB1":26940},"arcs":[[1932,1933,1934,1935,-1883,1936,1937]]},{"type":"Polygon","properties":{"NOM_MUN":"Atotonilco de Tula","POB1":31078},"arcs":[[-1900,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,-1924]]},{"type":"Polygon","properties":{"NOM_MUN":"Calnali","POB1":16962},"arcs":[[1958,1959,1960,1961,1962,1963]]},{"type":"Polygon","properties":{"NOM_MUN":"Cardonal","POB1":18427},"arcs":[[1964,1965,1966,1967,1968,1969]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuautepec de Hinojosa","POB1":54500},"arcs":[[1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,-1921,1985,1986,1987,1988,-1880]]},{"type":"Polygon","properties":{"NOM_MUN":"Chapantongo","POB1":12271},"arcs":[[1989,1990,1991,1992,1993,1994,1995,-1907]]},{"type":"Polygon","properties":{"NOM_MUN":"Chapulhuacán","POB1":22402},"arcs":[[1996,1997,1998,1999]]},{"type":"Polygon","properties":{"NOM_MUN":"Chilcuautla","POB1":17436},"arcs":[[2000,2001,2002,2003,-1990,-1906,2004]]},{"type":"Polygon","properties":{"NOM_MUN":"Eloxochitlán","POB1":2800},"arcs":[[2005,2006,-1965,2007,2008]]},{"type":"Polygon","properties":{"NOM_MUN":"Emiliano Zapata","POB1":13357},"arcs":[[2009,-1919,2010,2011,2012]]},{"type":"Polygon","properties":{"NOM_MUN":"Epazoyucan","POB1":13830},"arcs":[[2013,2014,2015,2016,2017]]},{"type":"Polygon","properties":{"NOM_MUN":"Francisco I. Madero","POB1":33901},"arcs":[[-1904,2018,2019]]},{"type":"Polygon","properties":{"NOM_MUN":"Huasca de Ocampo","POB1":17182},"arcs":[[2020,-1815,2021,2022,-1934]]},{"type":"Polygon","properties":{"NOM_MUN":"Huautla","POB1":22621},"arcs":[[2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,-1928,2045]]},{"type":"Polygon","properties":{"NOM_MUN":"Huazalingo","POB1":12779},"arcs":[[-1931,2046,-1963,2047,2048]]},{"type":"Polygon","properties":{"NOM_MUN":"Huehuetla","POB1":23563},"arcs":[[2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059]]},{"type":"Polygon","properties":{"NOM_MUN":"Huejutla de Reyes","POB1":122905},"arcs":[[2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,-2046,-1932,-2049,2082,2083,2084,2085]]},{"type":"Polygon","properties":{"NOM_MUN":"Huichapan","POB1":44253},"arcs":[[-1908,-1996,2086,2087,2088,2089,2090,2091]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixmiquilpan","POB1":86363},"arcs":[[-1968,2092,2093,-2005,-1905,2094,2095,2096]]},{"type":"Polygon","properties":{"NOM_MUN":"Jacala de Ledezma","POB1":12804},"arcs":[[2097,2098,2099,2100,2101,2102]]},{"type":"Polygon","properties":{"NOM_MUN":"Jaltocán","POB1":10933},"arcs":[[2103,-2085]]},{"type":"Polygon","properties":{"NOM_MUN":"Juárez Hidalgo","POB1":3193},"arcs":[[-2009,2104,2105]]},{"type":"Polygon","properties":{"NOM_MUN":"Lolotla","POB1":9843},"arcs":[[2106,2107,2108,2109,2110,2111,2112,2113,2114,-1961,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Metepec","POB1":11429},"arcs":[[[-1810,-1895]],[[2126,2127,-1882,2128,-1812,-1894,2129]]]},{"type":"Polygon","properties":{"NOM_MUN":"San Agustín Metzquititlán","POB1":9364},"arcs":[[2130,2131,2132,2133,2134,-1938,2135,2136]]},{"type":"Polygon","properties":{"NOM_MUN":"Metztitlán","POB1":21623},"arcs":[[2137,2138,-2136,-1937,-1890,2139,-1966,-2007,2140]]},{"type":"Polygon","properties":{"NOM_MUN":"Mineral del Chico","POB1":7980},"arcs":[[2141,2142,2143,2144,-1922,-1884,-1936]]},{"type":"Polygon","properties":{"NOM_MUN":"Mineral del Monte","POB1":13864},"arcs":[[2145,-2016,2146,2147,-2143]]},{"type":"Polygon","properties":{"NOM_MUN":"La Misión","POB1":10452},"arcs":[[2148,-1998,2149,2150,-2103,2151]]},{"type":"Polygon","properties":{"NOM_MUN":"Mixquiahuala de Juárez","POB1":42834},"arcs":[[-2019,-1903,2152,2153,2154,-2003,2155,2156]]},{"type":"Polygon","properties":{"NOM_MUN":"Molango de Escamilla","POB1":11209},"arcs":[[-2117,2157,-2141,-2006,-2106,2158,2159]]},{"type":"Polygon","properties":{"NOM_MUN":"Nicolás Flores","POB1":6614},"arcs":[[2160,-1969,-2097,2161,-2099]]},{"type":"Polygon","properties":{"NOM_MUN":"Nopala de Villagrán","POB1":15666},"arcs":[[-1995,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,-2087]]},{"type":"Polygon","properties":{"NOM_MUN":"Omitlán de Juárez","POB1":8963},"arcs":[[-2023,2187,-2017,-2146,-2142,-1935]]},{"type":"Polygon","properties":{"NOM_MUN":"San Felipe Orizatlán","POB1":39181},"arcs":[[2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,-2086,-2104,-2084,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240]]},{"type":"Polygon","properties":{"NOM_MUN":"Pacula","POB1":5049},"arcs":[[-2101,2241,2242,2243,2244,2245]]},{"type":"Polygon","properties":{"NOM_MUN":"Pachuca de Soto","POB1":267862},"arcs":[[-2148,2246,2247,2248,2249,-2144]]},{"type":"Polygon","properties":{"NOM_MUN":"Pisaflores","POB1":18244},"arcs":[[2250,-1999,-2149,2251,2252,2253]]},{"type":"Polygon","properties":{"NOM_MUN":"Progreso de Obregón","POB1":22217},"arcs":[[-2156,-2002,2254]]},{"type":"Polygon","properties":{"NOM_MUN":"Mineral de la Reforma","POB1":127404},"arcs":[[-2015,2255,-2247,-2147]]},{"type":"Polygon","properties":{"NOM_MUN":"San Agustín Tlaxiaca","POB1":32057},"arcs":[[-1923,-2145,-2250,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,-1897,-1886]]},{"type":"Polygon","properties":{"NOM_MUN":"San Bartolo Tutotepec","POB1":18137},"arcs":[[2287,2288,2289,-2055,2290,-2130,-1893]]},{"type":"Polygon","properties":{"NOM_MUN":"San Salvador","POB1":32773},"arcs":[[2291,-1888,-1896,-2020,-2157,-2255,-2001,-2094]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago de Anaya","POB1":16014},"arcs":[[-1889,-2292,-2093,-1967,-2140]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Tulantepec de Lugo Guerrero","POB1":33495},"arcs":[[-1988,2292,2293]]},{"type":"Polygon","properties":{"NOM_MUN":"Singuilucan","POB1":14851},"arcs":[[-2022,-1814,2294,-2293,-1987,2295,2296,2297,-2018,-2188]]},{"type":"Polygon","properties":{"NOM_MUN":"Tasquillo","POB1":16865},"arcs":[[-2095,-1910,2298,2299]]},{"type":"Polygon","properties":{"NOM_MUN":"Tecozautla","POB1":35067},"arcs":[[-2299,-1909,-2092,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314]]},{"type":"Polygon","properties":{"NOM_MUN":"Tenango de Doria","POB1":17206},"arcs":[[2315,2316,2317,2318,2319,2320,2321,2322,-2127,-2291,-2054]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepeapulco","POB1":51664},"arcs":[[-1986,-1920,-2010,2323,2324,-2296]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepehuacán de Guerrero","POB1":29125},"arcs":[[-2118,-2160,2325,-2150,-1997,2326]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepeji del Río de Ocampo","POB1":80612},"arcs":[[-1957,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepetitlán","POB1":9940},"arcs":[[2375,2376,-1992]]},{"type":"Polygon","properties":{"NOM_MUN":"Tetepango","POB1":11112},"arcs":[[-1902,-1927,2377,2378,-2153]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Tezontepec","POB1":11654},"arcs":[[2379,2380,2381,2382,2383]]},{"type":"Polygon","properties":{"NOM_MUN":"Tezontepec de Aldama","POB1":48025},"arcs":[[-2004,-2155,2384,2385,2386,-2376,-1991]]},{"type":"Polygon","properties":{"NOM_MUN":"Tianguistengo","POB1":14037},"arcs":[[2387,2388,2389,-1959,2390]]},{"type":"Polygon","properties":{"NOM_MUN":"Tizayuca","POB1":97461},"arcs":[[2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlahuelilpan","POB1":17153},"arcs":[[-2379,2408,-2385,-2154]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlahuiltepa","POB1":9753},"arcs":[[-2326,-2159,-2105,-2008,-1970,-2161,-2098,-2151]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlanalapa","POB1":10248},"arcs":[[-2297,-2325,2409,2410,2411]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlanchinol","POB1":36382},"arcs":[[-2219,-2083,-2048,-1962,-2115,2412]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlaxcoapan","POB1":26758},"arcs":[[-2378,-1926,2413,-2386,-2409]]},{"type":"Polygon","properties":{"NOM_MUN":"Tolcayuca","POB1":13228},"arcs":[[2414,-2382,2415,2416,2417,2418,2419,2420,-2408,2421,-2258]]},{"type":"Polygon","properties":{"NOM_MUN":"Tula de Allende","POB1":103919},"arcs":[[-2377,-2387,-2414,-1925,-1958,-2375,2422,2423,-1993]]},{"type":"Polygon","properties":{"NOM_MUN":"Tulancingo de Bravo","POB1":151584},"arcs":[[-1881,-1989,-2294,-2295,-1813,-2129]]},{"type":"Polygon","properties":{"NOM_MUN":"Xochiatipan","POB1":19067},"arcs":[[2424,2425,2426,2427,2428,2429,2430,2431,2432,-1929,-2045]]},{"type":"Polygon","properties":{"NOM_MUN":"Xochicoatlán","POB1":7320},"arcs":[[2433,-2138,-2158,-2116,-1960,-2390]]},{"type":"Polygon","properties":{"NOM_MUN":"Yahualica","POB1":23607},"arcs":[[2434,-2391,-1964,-2047,-1930,-2433]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacualtipán de Ángeles","POB1":32437},"arcs":[[2435,2436,2437,-2137,-2139,-2434,-2389]]},{"type":"Polygon","properties":{"NOM_MUN":"Zapotlán de Juárez","POB1":18036},"arcs":[[-2249,2438,-2383,-2415,-2257]]},{"type":"Polygon","properties":{"NOM_MUN":"Zempoala","POB1":39143},"arcs":[[-2256,-2014,-2298,-2412,2439,2440,-2384,-2439,-2248]]},{"type":"Polygon","properties":{"NOM_MUN":"Zimapán","POB1":38516},"arcs":[[-2162,-2096,-2300,-2315,2441,-2242,-2100]]},{"type":"Polygon","properties":{"NOM_MUN":"Acatic","POB1":21206},"arcs":[[2442,2443,2444]]},{"type":"Polygon","properties":{"NOM_MUN":"Acatlán de Juárez","POB1":23241},"arcs":[[2445,2446,2447,2448,2449]]},{"type":"Polygon","properties":{"NOM_MUN":"Ahualulco de Mercado","POB1":21714},"arcs":[[2450,2451,2452,2453,2454,2455]]},{"type":"Polygon","properties":{"NOM_MUN":"Amacueca","POB1":5545},"arcs":[[2456,2457,2458,2459]]},{"type":"Polygon","properties":{"NOM_MUN":"Amatitán","POB1":14648},"arcs":[[2460,-2455,2461,2462,2463]]},{"type":"Polygon","properties":{"NOM_MUN":"Ameca","POB1":57340},"arcs":[[2464,2465,2466,2467,2468,-2451,2469,2470]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juanito de Escobedo","POB1":8896},"arcs":[[2471,-2453,2472,2473]]},{"type":"Polygon","properties":{"NOM_MUN":"Arandas","POB1":72812},"arcs":[[2474,2475,2476,2477,2478,-1419,2479,2480,2481]]},{"type":"Polygon","properties":{"NOM_MUN":"El Arenal","POB1":17545},"arcs":[[2482,2483,-2464,2484]]},{"type":"Polygon","properties":{"NOM_MUN":"Atemajac de Brizuela","POB1":6655},"arcs":[[2485,2486,2487,2488,2489,2490,2491]]},{"type":"Polygon","properties":{"NOM_MUN":"Atengo","POB1":5400},"arcs":[[2492,2493,2494,2495,2496,2497]]},{"type":"Polygon","properties":{"NOM_MUN":"Atenguillo","POB1":4115},"arcs":[[2498,2499,2500,-2493,2501]]},{"type":"Polygon","properties":{"NOM_MUN":"Atotonilco el Alto","POB1":57717},"arcs":[[2502,2503,2504,2505,-2482,2506]]},{"type":"Polygon","properties":{"NOM_MUN":"Atoyac","POB1":8276},"arcs":[[2507,2508,-2458,2509,2510,2511,2512]]},{"type":"Polygon","properties":{"NOM_MUN":"Autlán de Navarro","POB1":57559},"arcs":[[2513,2514,2515,2516,2517,2518,2519]]},{"type":"Polygon","properties":{"NOM_MUN":"Ayotlán","POB1":38291},"arcs":[[2520,2521,2522,2523,2524,-2507,-2481]]},{"type":"Polygon","properties":{"NOM_MUN":"Ayutla","POB1":12664},"arcs":[[2525,2526,-2516,2527,2528,2529,-2497]]},{"type":"Polygon","properties":{"NOM_MUN":"La Barca","POB1":64269},"arcs":[[-2525,2530,2531,2532,2533,2534,-2503]]},{"type":"Polygon","properties":{"NOM_MUN":"Bolaños","POB1":6820},"arcs":[[2535,2536,2537,2538,2539]]},{"type":"Polygon","properties":{"NOM_MUN":"Cabo Corrientes","POB1":10029},"arcs":[[2540,2541,2542,2543]]},{"type":"Polygon","properties":{"NOM_MUN":"Casimiro Castillo","POB1":21475},"arcs":[[2544,2545,-2514,2546]]},{"type":"Polygon","properties":{"NOM_MUN":"Cihuatlán","POB1":39020},"arcs":[[2547,-430,2548,2549]]},{"type":"Polygon","properties":{"NOM_MUN":"Zapotlán el Grande","POB1":100534},"arcs":[[2550,2551,2552,2553,2554,2555]]},{"type":"Polygon","properties":{"NOM_MUN":"Cocula","POB1":26174},"arcs":[[-2492,2556,2557,2558]]},{"type":"Polygon","properties":{"NOM_MUN":"Colotlán","POB1":18091},"arcs":[[2559,2560,2561,2562,2563,2564,2565,2566,2567]]},{"type":"Polygon","properties":{"NOM_MUN":"Concepción de Buenos Aires","POB1":5933},"arcs":[[2568,-2513,2569,2570,2571,2572,2573]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuautitlán de García Barragán","POB1":17322},"arcs":[[-2520,2574,2575,-435,-431,-2548,2576,-2547]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuautla","POB1":2171},"arcs":[[-2498,-2530,2577,2578,-2502]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuquío","POB1":17795},"arcs":[[2579,2580,2581,2582,2583,-2444]]},{"type":"Polygon","properties":{"NOM_MUN":"Chapala","POB1":48839},"arcs":[[2584,2585,2586,2587,2588,2589,2590]]},{"type":"Polygon","properties":{"NOM_MUN":"Chimaltitán","POB1":3771},"arcs":[[-2538,2591,2592,2593,2594,2595,2596]]},{"type":"Polygon","properties":{"NOM_MUN":"Chiquilistlán","POB1":5814},"arcs":[[-2490,2597,2598,2599,2600,2601]]},{"type":"Polygon","properties":{"NOM_MUN":"Degollado","POB1":21132},"arcs":[[-2522,2602,-1413,2603,2604]]},{"type":"Polygon","properties":{"NOM_MUN":"Ejutla","POB1":2082},"arcs":[[2605,2606,2607,2608,-2600,2609,2610]]},{"type":"Polygon","properties":{"NOM_MUN":"Encarnación de Díaz","POB1":51396},"arcs":[[-3,2611,2612,2613]]},{"type":"Polygon","properties":{"NOM_MUN":"Etzatlán","POB1":18632},"arcs":[[2614,2615,2616,-2473,-2452,-2469]]},{"type":"Polygon","properties":{"NOM_MUN":"El Grullo","POB1":23845},"arcs":[[2617,-2606,2618,2619,-2518]]},{"type":"Polygon","properties":{"NOM_MUN":"Guachinango","POB1":4323},"arcs":[[2620,2621,2622,-2467,2623]]},{"type":"Polygon","properties":{"NOM_MUN":"Guadalajara","POB1":1495189},"arcs":[[2624,2625,2626,2627,2628]]},{"type":"Polygon","properties":{"NOM_MUN":"Hostotipaquillo","POB1":10284},"arcs":[[2629,2630,2631,2632]]},{"type":"Polygon","properties":{"NOM_MUN":"Huejúcar","POB1":6084},"arcs":[[2633,-2563,2634,2635]]},{"type":"Polygon","properties":{"NOM_MUN":"Huejuquilla el Alto","POB1":8781},"arcs":[[2636,2637]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"La Huerta","POB1":23428},"arcs":[[[-2550,2638,2639,2640,-2545,-2577]],[[2641]],[[2642]],[[2643]],[[2644]],[[2645]],[[2646]],[[2647]],[[2648]],[[2649]],[[2650]],[[2651]],[[2652]],[[2653]],[[2654]],[[2655]],[[2656]],[[2657]],[[2658]],[[2659]],[[2660]],[[2661]],[[2662]],[[2663]],[[2664]],[[2665]],[[2666]],[[2667]]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtlahuacán de los Membrillos","POB1":41060},"arcs":[[2668,2669,2670,-2586]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtlahuacán del Río","POB1":19005},"arcs":[[2671,2672,2673,-2581,2674,-2627,2675]]},{"type":"Polygon","properties":{"NOM_MUN":"Jalostotitlán","POB1":31948},"arcs":[[2676,2677,2678,2679,2680]]},{"type":"Polygon","properties":{"NOM_MUN":"Jamay","POB1":22881},"arcs":[[2681,2682,2683,-2534]]},{"type":"Polygon","properties":{"NOM_MUN":"Jesús María","POB1":18634},"arcs":[[-2603,-2521,-2480,-1418,-1329,-1414]]},{"type":"Polygon","properties":{"NOM_MUN":"Jilotlán de los Dolores","POB1":9545},"arcs":[[2684,2685,2686,2687,2688,2689]]},{"type":"Polygon","properties":{"NOM_MUN":"Jocotepec","POB1":42164},"arcs":[[-2450,2690,-2669,-2585,2691,2692,2693]]},{"type":"Polygon","properties":{"NOM_MUN":"Juanacatlán","POB1":13218},"arcs":[[-2587,-2671,2694,2695,2696,2697,2698]]},{"type":"Polygon","properties":{"NOM_MUN":"Juchitlán","POB1":5515},"arcs":[[2699,-2601,-2609,2700]]},{"type":"Polygon","properties":{"NOM_MUN":"Lagos de Moreno","POB1":153817},"arcs":[[2701,-2612,-2,-43,2702,-1403,-1435,-1397,2703]]},{"type":"Polygon","properties":{"NOM_MUN":"El Limón","POB1":5499},"arcs":[[2704,2705,-2619,-2611]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena","POB1":21321},"arcs":[[-2474,-2617,2706,2707,-2630,2708]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María del Oro","POB1":2517},"arcs":[[2709,2710,2711,2712,2713,2714,2715,-2685]]},{"type":"Polygon","properties":{"NOM_MUN":"La Manzanilla de la Paz","POB1":3755},"arcs":[[2716,-2572,2717,2718,2719]]},{"type":"Polygon","properties":{"NOM_MUN":"Mascota","POB1":14245},"arcs":[[2720,2721,2722,-2621,2723,-2500]]},{"type":"Polygon","properties":{"NOM_MUN":"Mazamitla","POB1":13225},"arcs":[[-2573,-2717,2724,2725,2726]]},{"type":"Polygon","properties":{"NOM_MUN":"Mexticacán","POB1":6034},"arcs":[[2727,2728,2729,2730,2731]]},{"type":"Polygon","properties":{"NOM_MUN":"Mezquitic","POB1":18084},"arcs":[[-2536,2732,2733,2734,-2637,2735,2736,2737]]},{"type":"Polygon","properties":{"NOM_MUN":"Mixtlán","POB1":3574},"arcs":[[-2724,-2624,-2466,2738,-2494,-2501]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocotlán","POB1":92967},"arcs":[[2739,2740,2741,-2504,-2535,-2684]]},{"type":"Polygon","properties":{"NOM_MUN":"Ojuelos de Jalisco","POB1":30097},"arcs":[[-42,-11,2742,2743,-1404,-2703]]},{"type":"Polygon","properties":{"NOM_MUN":"Pihuamo","POB1":12119},"arcs":[[2744,2745,-403,-422,2746,2747]]},{"type":"Polygon","properties":{"NOM_MUN":"Poncitlán","POB1":48408},"arcs":[[-2740,-2683,2748,2749,2750,2751,-2589,2752]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Puerto Vallarta","POB1":255681},"arcs":[[[-2542,2753,2754,2755,-2722,2756]],[[2757]]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Purificación","POB1":11623},"arcs":[[-2515,-2546,-2641,2758,-2528]]},{"type":"Polygon","properties":{"NOM_MUN":"Quitupan","POB1":8691},"arcs":[[2759,-2712,2760,2761,2762]]},{"type":"Polygon","properties":{"NOM_MUN":"El Salto","POB1":138226},"arcs":[[2763,2764,-2696,2765]]},{"type":"Polygon","properties":{"NOM_MUN":"San Cristóbal de la Barranca","POB1":3176},"arcs":[[-2672,2766,2767,2768,2769]]},{"type":"Polygon","properties":{"NOM_MUN":"San Diego de Alejandría","POB1":6647},"arcs":[[-1420,-2479,2770,2771]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan de los Lagos","POB1":65219},"arcs":[[2772,-2613,-2702,2773,2774,2775,-2679]]},{"type":"Polygon","properties":{"NOM_MUN":"San Julián","POB1":15454},"arcs":[[-2771,-2478,2776,-2775,2777]]},{"type":"Polygon","properties":{"NOM_MUN":"San Marcos","POB1":3762},"arcs":[[2778,2779,2780,-2707,-2616,2781]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín de Bolaños","POB1":3405},"arcs":[[-2539,-2597,2782,2783,2784]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín Hidalgo","POB1":26306},"arcs":[[2785,-2471,2786,2787,2788,-2558]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel el Alto","POB1":31166},"arcs":[[-2680,-2776,-2777,-2477,2789,2790,2791]]},{"type":"Polygon","properties":{"NOM_MUN":"Gómez Farías","POB1":14011},"arcs":[[2792,-2553,2793,-2508,-2569]]},{"type":"Polygon","properties":{"NOM_MUN":"San Sebastián del Oeste","POB1":5755},"arcs":[[-2756,2794,2795,2796,2797,2798,-2622,-2723]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María de los Ángeles","POB1":3726},"arcs":[[-2634,2799,2800,-2564]]},{"type":"Polygon","properties":{"NOM_MUN":"Sayula","POB1":34829},"arcs":[[-2459,-2509,-2794,-2552,2801,2802]]},{"type":"Polygon","properties":{"NOM_MUN":"Tala","POB1":69031},"arcs":[[2803,2804,-2448,2805,-2788,2806,-2483]]},{"type":"Polygon","properties":{"NOM_MUN":"Talpa de Allende","POB1":14410},"arcs":[[-2499,-2579,2807,-2543,-2757,-2721]]},{"type":"Polygon","properties":{"NOM_MUN":"Tamazula de Gordiano","POB1":37986},"arcs":[[2808,2809,-2554,-2793,-2574,-2727,2810,-2710,-2690]]},{"type":"Polygon","properties":{"NOM_MUN":"Tapalpa","POB1":18096},"arcs":[[2811,2812,-2598,-2489,2813,-2460,-2803]]},{"type":"Polygon","properties":{"NOM_MUN":"Tecalitlán","POB1":16847},"arcs":[[2814,-2809,-2689,2815,2816,-2748,2817]]},{"type":"Polygon","properties":{"NOM_MUN":"Tecolotlán","POB1":16573},"arcs":[[-2495,-2739,-2465,-2786,-2557,-2491,-2602,-2700,2818]]},{"type":"Polygon","properties":{"NOM_MUN":"Techaluta de Montenegro","POB1":3511},"arcs":[[-2510,-2457,-2814,-2488,2819]]},{"type":"Polygon","properties":{"NOM_MUN":"Tenamaxtlán","POB1":7051},"arcs":[[-2819,-2701,-2608,2820,-2526,-2496]]},{"type":"Polygon","properties":{"NOM_MUN":"Teocaltiche","POB1":40105},"arcs":[[2821,-2732,2822,2823,2824,2825,2826,-4,-2614,-2773,-2678]]},{"type":"Polygon","properties":{"NOM_MUN":"Teocuitatlán de Corona","POB1":10837},"arcs":[[2827,-2570,-2512,2828,-2693]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepatitlán de Morelos","POB1":136123},"arcs":[[-2475,-2506,2829,2830,-2445,-2584,2831,2832,-2791,2833]]},{"type":"Polygon","properties":{"NOM_MUN":"Tequila","POB1":40697},"arcs":[[-2709,-2633,2834,-2784,2835,2836,2837,-2768,2838,-2462,-2454,-2472]]},{"type":"Polygon","properties":{"NOM_MUN":"Teuchitlán","POB1":9088},"arcs":[[-2461,-2484,-2807,-2787,-2470,-2456]]},{"type":"Polygon","properties":{"NOM_MUN":"Tizapán el Alto","POB1":20857},"arcs":[[-2752,2839,2840,-2719,2841,-2590]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlajomulco de Zúñiga","POB1":416626},"arcs":[[-2449,-2805,2842,2843,-2766,-2695,-2670,-2691]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlaquepaque","POB1":608114},"arcs":[[2844,-2764,-2844,2845,-2625]]},{"type":"Polygon","properties":{"NOM_MUN":"Tolimán","POB1":9591},"arcs":[[-2576,2846,2847,2848,-415,-436]]},{"type":"Polygon","properties":{"NOM_MUN":"Tomatlán","POB1":35050},"arcs":[[-2808,-2578,-2529,-2759,-2640,2849,-2544]]},{"type":"Polygon","properties":{"NOM_MUN":"Tonalá","POB1":478689},"arcs":[[2850,-2697,-2765,-2845,-2629]]},{"type":"Polygon","properties":{"NOM_MUN":"Tonaya","POB1":5930},"arcs":[[2851,2852,-2705,-2610,-2599,-2813]]},{"type":"Polygon","properties":{"NOM_MUN":"Tonila","POB1":7256},"arcs":[[-424,-411,2853]]},{"type":"Polygon","properties":{"NOM_MUN":"Totatiche","POB1":4435},"arcs":[[2854,2855,2856,-2593,2857,2858,-2568]]},{"type":"Polygon","properties":{"NOM_MUN":"Tototlán","POB1":21871},"arcs":[[2859,2860,-2830,-2505,-2742]]},{"type":"Polygon","properties":{"NOM_MUN":"Tuxcacuesco","POB1":4234},"arcs":[[-2575,-2519,-2620,-2706,-2853,2861,-2847]]},{"type":"Polygon","properties":{"NOM_MUN":"Tuxcueca","POB1":6316},"arcs":[[-2591,-2842,-2718,-2571,-2828,-2692]]},{"type":"Polygon","properties":{"NOM_MUN":"Tuxpan","POB1":34182},"arcs":[[-2747,-421,-2854,2862,2863,-2556,2864,-2818]]},{"type":"Polygon","properties":{"NOM_MUN":"Unión de San Antonio","POB1":17325},"arcs":[[-2772,-2778,-2774,-2704,-1396,-1421]]},{"type":"Polygon","properties":{"NOM_MUN":"Unión de Tula","POB1":13737},"arcs":[[-2517,-2527,-2821,-2607,-2618]]},{"type":"Polygon","properties":{"NOM_MUN":"Valle de Guadalupe","POB1":6705},"arcs":[[-2792,-2833,2865,2866,-2681]]},{"type":"Polygon","properties":{"NOM_MUN":"Valle de Juárez","POB1":5798},"arcs":[[-2711,-2811,-2726,2867,-2761]]},{"type":"Polygon","properties":{"NOM_MUN":"San Gabriel","POB1":15310},"arcs":[[-2848,-2862,-2852,-2812,-2802,-2551,-2864,2868]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Corona","POB1":16969},"arcs":[[-2559,-2789,-2806,-2447,2869,-2486]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Guerrero","POB1":5638},"arcs":[[2870,-2858,-2592,-2537,-2738]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Hidalgo","POB1":18711},"arcs":[[-5,-2827,2871,-18]]},{"type":"Polygon","properties":{"NOM_MUN":"Cañadas de Obregón","POB1":4152},"arcs":[[-2728,-2822,-2677,-2867,2872]]},{"type":"Polygon","properties":{"NOM_MUN":"Yahualica de González Gallo","POB1":22284},"arcs":[[-2866,-2832,-2583,2873,2874,-2729,-2873]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacoalco de Torres","POB1":27901},"arcs":[[-2829,-2511,-2820,-2487,-2870,-2446,-2694]]},{"type":"Polygon","properties":{"NOM_MUN":"Zapopan","POB1":1243756},"arcs":[[-2463,-2839,-2767,-2676,-2626,-2846,-2843,-2804,-2485]]},{"type":"Polygon","properties":{"NOM_MUN":"Zapotiltic","POB1":29192},"arcs":[[-2555,-2810,-2815,-2865]]},{"type":"Polygon","properties":{"NOM_MUN":"Zapotitlán de Vadillo","POB1":6685},"arcs":[[-2849,-2869,-2863,-416]]},{"type":"Polygon","properties":{"NOM_MUN":"Zapotlán del Rey","POB1":17585},"arcs":[[-2741,-2753,-2588,-2699,2875,-2860]]},{"type":"Polygon","properties":{"NOM_MUN":"Zapotlanejo","POB1":63636},"arcs":[[-2698,-2851,-2628,-2675,-2580,-2443,-2831,-2861,-2876]]},{"type":"Polygon","properties":{"NOM_MUN":"San Ignacio Cerro Gordo","POB1":17626},"arcs":[[-2790,-2476,-2834]]},{"type":"Polygon","properties":{"NOM_MUN":"Acambay","POB1":60918},"arcs":[[2876,2877,2878,2879,2880,2881,2882]]},{"type":"Polygon","properties":{"NOM_MUN":"Acolman","POB1":136558},"arcs":[[2883,2884,2885,2886,2887,2888,2889]]},{"type":"Polygon","properties":{"NOM_MUN":"Aculco","POB1":44823},"arcs":[[2890,2891,2892,2893,2894,2895,-2882,2896,2897]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Almoloya de Alquisiras","POB1":14856},"arcs":[[[2898,2899,2900,2901]],[[2902,2903]]]},{"type":"Polygon","properties":{"NOM_MUN":"Almoloya de Juárez","POB1":147653},"arcs":[[2904,2905,2906,2907,2908,2909,2910]]},{"type":"Polygon","properties":{"NOM_MUN":"Almoloya del Río","POB1":10886},"arcs":[[2911,2912,2913,2914]]},{"type":"Polygon","properties":{"NOM_MUN":"Amanalco","POB1":22868},"arcs":[[2915,2916,2917,2918,2919,2920,-2905]]},{"type":"Polygon","properties":{"NOM_MUN":"Amatepec","POB1":26334},"arcs":[[2921,-1769,2922,-1783,-1643,2923]]},{"type":"Polygon","properties":{"NOM_MUN":"Amecameca","POB1":48421},"arcs":[[2924,2925,2926,2927,2928,2929]]},{"type":"Polygon","properties":{"NOM_MUN":"Apaxco","POB1":27521},"arcs":[[2930,-1943,-1942,-1941,-1940,-1939,-1899,2931]]},{"type":"Polygon","properties":{"NOM_MUN":"Atenco","POB1":56243},"arcs":[[2932,-2887,2933,2934,2935,2936]]},{"type":"Polygon","properties":{"NOM_MUN":"Atizapán","POB1":10299},"arcs":[[-2914,2937,2938]]},{"type":"Polygon","properties":{"NOM_MUN":"Atizapán de Zaragoza","POB1":489937},"arcs":[[2939,2940,2941,2942,2943,2944]]},{"type":"Polygon","properties":{"NOM_MUN":"Atlacomulco","POB1":93718},"arcs":[[2945,-2877,2946,2947,2948]]},{"type":"Polygon","properties":{"NOM_MUN":"Atlautla","POB1":27663},"arcs":[[2949,2950,2951,2952,2953,2954,-2928]]},{"type":"Polygon","properties":{"NOM_MUN":"Axapusco","POB1":25559},"arcs":[[-2441,2955,-2410,-2324,-2013,2956,2957,2958,2959,2960,-2380]]},{"type":"Polygon","properties":{"NOM_MUN":"Ayapango","POB1":8864},"arcs":[[2961,2962,2963,2964,-2930]]},{"type":"Polygon","properties":{"NOM_MUN":"Calimaya","POB1":47033},"arcs":[[2965,2966,2967,2968,2969,2970,2971,2972]]},{"type":"Polygon","properties":{"NOM_MUN":"Capulhuac","POB1":34101},"arcs":[[2973,2974,2975]]},{"type":"Polygon","properties":{"NOM_MUN":"Coacalco de Berriozábal","POB1":278064},"arcs":[[2976,2977,2978,-1104,2979]]},{"type":"Polygon","properties":{"NOM_MUN":"Coatepec Harinas","POB1":36174},"arcs":[[2980,2981,2982,2983,2984,-2902,2985,2986]]},{"type":"Polygon","properties":{"NOM_MUN":"Cocotitlán","POB1":12142},"arcs":[[2987,2988,2989]]},{"type":"Polygon","properties":{"NOM_MUN":"Coyotepec","POB1":39030},"arcs":[[2990,2991,2992,2993]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuautitlán","POB1":140059},"arcs":[[2994,2995,2996,2997,2998,2999,3000,3001]]},{"type":"Polygon","properties":{"NOM_MUN":"Chalco","POB1":310130},"arcs":[[3002,-2990,3003,3004,-1119,-1134,-1133,-1132,3005,3006]]},{"type":"Polygon","properties":{"NOM_MUN":"Chapa de Mota","POB1":27551},"arcs":[[-2354,3007,3008,3009,3010]]},{"type":"Polygon","properties":{"NOM_MUN":"Chapultepec","POB1":9676},"arcs":[[3011,-2967,3012,3013]]},{"type":"Polygon","properties":{"NOM_MUN":"Chiautla","POB1":26191},"arcs":[[3014,3015,-2935,3016,-2885,3017,3018]]},{"type":"Polygon","properties":{"NOM_MUN":"Chicoloapan","POB1":175053},"arcs":[[3019,3020,3021,3022]]},{"type":"Polygon","properties":{"NOM_MUN":"Chiconcuac","POB1":22819},"arcs":[[3023,-2936,-3016]]},{"type":"Polygon","properties":{"NOM_MUN":"Chimalhuacán","POB1":614453},"arcs":[[3024,3025,-3022,3026]]},{"type":"Polygon","properties":{"NOM_MUN":"Donato Guerra","POB1":33455},"arcs":[[-2919,3027,3028,3029,3030]]},{"type":"Polygon","properties":{"NOM_MUN":"Ecatepec de Morelos","POB1":1656107},"arcs":[[-2888,-2933,3031,3032,-1096,3033,-1092,-2979,3034,3035,3036]]},{"type":"Polygon","properties":{"NOM_MUN":"Ecatzingo","POB1":9369},"arcs":[[3037,3038,3039,3040,-2953,3041]]},{"type":"Polygon","properties":{"NOM_MUN":"Huehuetoca","POB1":100023},"arcs":[[3042,-2991,3043,-2348,-2347,-2346,-2345,-2344,-2343,-2342,-2341,-2340,-2339,-2338,-2337,-2336,-2335,-2334,-2333,-2332,-2331,-2330,-2329,-2328,-1956,-1955,-1954,-1953,-1952,-1951,-1950,-1949,-1948,-1947,3044]]},{"type":"Polygon","properties":{"NOM_MUN":"Hueypoxtla","POB1":39864},"arcs":[[-2422,-2407,3045,3046,-2932,-1898,-2287,-2286,-2285,-2284,-2283,-2282,-2281,-2280,-2279,-2278,-2277,-2276,-2275,-2274,-2273,-2272,-2271,-2270,-2269,-2268,-2267,-2266,-2265,-2264,-2263,-2262,-2261,-2260,-2259]]},{"type":"Polygon","properties":{"NOM_MUN":"Huixquilucan","POB1":242167},"arcs":[[-1145,-1091,3047,3048,3049]]},{"type":"Polygon","properties":{"NOM_MUN":"Isidro Fabela","POB1":10308},"arcs":[[-2941,3050,3051,3052,3053]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtapaluca","POB1":467361},"arcs":[[3054,3055,-3007,3056,3057,-3020,3058]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtapan de la Sal","POB1":33541},"arcs":[[3059,3060,-1743,3061,-2984,3062]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtapan del Oro","POB1":6629},"arcs":[[3063,3064,-3029,3065,3066]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtlahuaca","POB1":141482},"arcs":[[3067,-2908,3068,3069,3070]]},{"type":"Polygon","properties":{"NOM_MUN":"Xalatlaco","POB1":26865},"arcs":[[-1138,3071,3072,3073]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Jaltenco","POB1":26328},"arcs":[[[3074,3075]],[[-3036,3076,3077]]]},{"type":"Polygon","properties":{"NOM_MUN":"Jilotepec","POB1":83755},"arcs":[[-2170,-2169,-2168,-2167,-2166,-2165,-2164,-2163,-1994,-2424,3078,-2371,-2370,-2369,-2368,-2367,-2366,-2365,-2364,-2363,-2362,-2361,-2360,-2359,-2358,-2357,-2356,-2355,-3011,3079,-2895,3080,-2171]]},{"type":"Polygon","properties":{"NOM_MUN":"Jilotzingo","POB1":17970},"arcs":[[-2940,3081,3082,3083,-3051]]},{"type":"Polygon","properties":{"NOM_MUN":"Jiquipilco","POB1":69031},"arcs":[[3084,-3071,3085,3086,3087,3088,3089,3090]]},{"type":"Polygon","properties":{"NOM_MUN":"Jocotitlán","POB1":61204},"arcs":[[3091,3092,3093,-2949,3094,-3086,-3070]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Joquicingo","POB1":12840},"arcs":[[[3095,3096,3097,3098,3099]],[[3100,3101]]]},{"type":"Polygon","properties":{"NOM_MUN":"Juchitepec","POB1":23497},"arcs":[[-2963,3102,3103,3104,-1120,-3005,3105]]},{"type":"Polygon","properties":{"NOM_MUN":"Lerma","POB1":134799},"arcs":[[-2976,3106,3107,3108,3109,3110,3111,3112,-3049,3113]]},{"type":"Polygon","properties":{"NOM_MUN":"Malinalco","POB1":25624},"arcs":[[3114,-3101,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137]]},{"type":"Polygon","properties":{"NOM_MUN":"Melchor Ocampo","POB1":50240},"arcs":[[3138,3139,-2999]]},{"type":"Polygon","properties":{"NOM_MUN":"Metepec","POB1":214162},"arcs":[[-3108,3140,-3014,3141,-2973,3142,3143]]},{"type":"Polygon","properties":{"NOM_MUN":"Mexicaltzingo","POB1":11712},"arcs":[[-3013,-2966,-3142]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Morelos","POB1":28426},"arcs":[[[-2948,3144,-3009,3145,-3087,-3095]],[[3146,-3089]]]},{"type":"Polygon","properties":{"NOM_MUN":"Naucalpan de Juárez","POB1":833779},"arcs":[[3147,-1081,-1146,-3050,-3113,3148,-3082,-2945]]},{"type":"Polygon","properties":{"NOM_MUN":"Nezahualcóyotl","POB1":1110565},"arcs":[[-3025,3149,-1110,-1105,-1147,-1097,-3033,3150]]},{"type":"Polygon","properties":{"NOM_MUN":"Nextlalpan","POB1":31691},"arcs":[[3151,-3139,-2998,3152,-3076,3153,3154,3155,3156]]},{"type":"Polygon","properties":{"NOM_MUN":"Nicolás Romero","POB1":366602},"arcs":[[3157,-3091,3158,3159,3160,-2942,-3054]]},{"type":"Polygon","properties":{"NOM_MUN":"Nopaltepec","POB1":8895},"arcs":[[-2411,-2956,-2440]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocoyoacac","POB1":61805},"arcs":[[-3048,-1090,-1129,-1116,-1140,3161,-2974,-3114]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocuilan","POB1":31803},"arcs":[[3162,-3098,3163,-3073,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,-3116,-3102,-3115]]},{"type":"Polygon","properties":{"NOM_MUN":"El Oro","POB1":34446},"arcs":[[3174,-3093,3175,3176,3177,3178]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Otumba","POB1":34232},"arcs":[[[-2012,3179,3180,3181,3182,3183,-2957]],[[-2959,3184]]]},{"type":"Polygon","properties":{"NOM_MUN":"Otzoloapan","POB1":4864},"arcs":[[3185,3186,3187,3188,3189]]},{"type":"Polygon","properties":{"NOM_MUN":"Otzolotepec","POB1":78146},"arcs":[[-3052,-3084,3190,-3111,3191,3192]]},{"type":"Polygon","properties":{"NOM_MUN":"Ozumba","POB1":27207},"arcs":[[-2955,3193,3194,3195,-2962,-2929]]},{"type":"Polygon","properties":{"NOM_MUN":"Papalotla","POB1":4147},"arcs":[[3196,3197,-3019]]},{"type":"Polygon","properties":{"NOM_MUN":"La Paz","POB1":253845},"arcs":[[-3021,-3058,3198,-1111,-3150,-3027]]},{"type":"Polygon","properties":{"NOM_MUN":"Polotitlán","POB1":13002},"arcs":[[-2187,-2186,-2185,-2184,-2183,-2182,-2181,-2180,-2179,-2178,-2177,-2176,-2175,-2174,-2173,-2172,-3081,-2894,3199,3200,3201,3202,3203]]},{"type":"Polygon","properties":{"NOM_MUN":"Rayón","POB1":12748},"arcs":[[3204,-2970,3205,3206]]},{"type":"Polygon","properties":{"NOM_MUN":"San Antonio la Isla","POB1":22152},"arcs":[[3207,-3206,-2969,3208,-2938,-2913]]},{"type":"Polygon","properties":{"NOM_MUN":"San Felipe del Progreso","POB1":121396},"arcs":[[-3176,-3092,-3069,-2907,3209,3210]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"San Martín de las Pirámides","POB1":24851},"arcs":[[[3211,3212,-2960,-3185,-2958,-3184]],[[3213,-3182,3214]]]},{"type":"Polygon","properties":{"NOM_MUN":"San Mateo Atenco","POB1":72579},"arcs":[[3215,-3109,-3144]]},{"type":"Polygon","properties":{"NOM_MUN":"San Simón de Guerrero","POB1":6272},"arcs":[[3216,3217,3218]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Tomás","POB1":9111},"arcs":[[3219,-3067,3220,-3190]]},{"type":"Polygon","properties":{"NOM_MUN":"Soyaniquilpan de Juárez","POB1":11798},"arcs":[[-2423,-2374,-2373,-2372,-3079]]},{"type":"Polygon","properties":{"NOM_MUN":"Sultepec","POB1":25809},"arcs":[[3221,-2900,3222,-2904,3223,-1728,-1770,-2922,3224]]},{"type":"Polygon","properties":{"NOM_MUN":"Tecámac","POB1":364579},"arcs":[[3225,3226,-2889,-3037,3227,-3155,3228,-2405]]},{"type":"Polygon","properties":{"NOM_MUN":"Tejupilco","POB1":71077},"arcs":[[3229,3230,3231,-3219,3232,-3225,-2924,-1642]]},{"type":"Polygon","properties":{"NOM_MUN":"Temamatla","POB1":11206},"arcs":[[-2989,3233,3234,-3004]]},{"type":"Polygon","properties":{"NOM_MUN":"Temascalapa","POB1":35987},"arcs":[[-2961,-3213,3235,-3226,-2404,-2403,-2402,-2401,-2400,-2399,-2398,-2397,-2396,-2395,-2394,-2393,-2392,-2421,-2420,-2419,-2418,-2417,-2416,-2381]]},{"type":"Polygon","properties":{"NOM_MUN":"Temascalcingo","POB1":62695},"arcs":[[3236,-2878,-2946,-3094,-3175,3237]]},{"type":"Polygon","properties":{"NOM_MUN":"Temascaltepec","POB1":32870},"arcs":[[-3232,3238,3239,-2917,3240,-2987,3241,-3217]]},{"type":"Polygon","properties":{"NOM_MUN":"Temoaya","POB1":90010},"arcs":[[-3193,3242,-2909,-3068,-3085,-3158,-3053]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Tenancingo","POB1":90946},"arcs":[[[-3099,-3163,-3138,3243,3244,3245]],[[3246,-3136]]]},{"type":"Polygon","properties":{"NOM_MUN":"Tenango del Aire","POB1":10578},"arcs":[[-3235,3247,-2964,-3106]]},{"type":"Polygon","properties":{"NOM_MUN":"Tenango del Valle","POB1":77965},"arcs":[[3248,-3100,-3246,3249,-2982,3250,3251,-2971,-3205]]},{"type":"Polygon","properties":{"NOM_MUN":"Teoloyucan","POB1":63115},"arcs":[[3252,-2993,3253,-2996]]},{"type":"Polygon","properties":{"NOM_MUN":"Teotihuacán","POB1":53010},"arcs":[[-3183,-3214,3254,-2890,-3227,-3236,-3212]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepetlaoxtoc","POB1":27944},"arcs":[[-3215,-3181,3255,3256,-3197,-3018,-2884,-3255]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepetlixpa","POB1":18327},"arcs":[[3257,3258,3259,3260,-3103,-3196]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepotzotlán","POB1":88559},"arcs":[[-3253,-2995,3261,-3160,3262,-2352,-2351,-2350,-2349,-3044,-2994]]},{"type":"Polygon","properties":{"NOM_MUN":"Tequixquiac","POB1":33907},"arcs":[[-3047,3263,-3045,-1946,-1945,-1944,-2931]]},{"type":"Polygon","properties":{"NOM_MUN":"Texcaltitlán","POB1":17390},"arcs":[[-3242,-2986,-2901,-3222,-3233,-3218]]},{"type":"Polygon","properties":{"NOM_MUN":"Texcalyacac","POB1":5111},"arcs":[[-2912,3264,-3096,-3249,-3207,-3208]]},{"type":"Polygon","properties":{"NOM_MUN":"Texcoco","POB1":235151},"arcs":[[-3024,-3015,-3198,-3257,3265,-3059,-3023,-3026,-3151,-3032,-2937]]},{"type":"Polygon","properties":{"NOM_MUN":"Tezoyuca","POB1":35199},"arcs":[[-2934,-2886,-3017]]},{"type":"Polygon","properties":{"NOM_MUN":"Tianguistenco","POB1":70682},"arcs":[[-1139,-3074,-3164,-3097,-3265,-2915,-2939,-3209,-2968,-3012,-3141,-3107,-2975,-3162]]},{"type":"Polygon","properties":{"NOM_MUN":"Timilpan","POB1":15391},"arcs":[[-2896,-3080,-3010,-3145,-2947,-2883]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlalmanalco","POB1":46130},"arcs":[[-3056,3266,3267,3268,-2925,-2965,-3248,-3234,-2988,-3003]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Tlalnepantla de Baz","POB1":664225},"arcs":[[[-1095,-1094,-1093,-3034]],[[3269,-1102,-1101,-1100,-1082,-3148,-2944,3270]]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlatlaya","POB1":32997},"arcs":[[-1768,-1664,-1547,-1781,-2923]]},{"type":"Polygon","properties":{"NOM_MUN":"Toluca","POB1":819561},"arcs":[[-3216,-3143,-2972,-3252,3271,-2910,-3243,-3192,-3110]]},{"type":"Polygon","properties":{"NOM_MUN":"Tonatico","POB1":12099},"arcs":[[3272,-1744,-3061]]},{"type":"Polygon","properties":{"NOM_MUN":"Tultepec","POB1":131567},"arcs":[[3273,-2977,3274,-3000,-3140,-3152]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Tultitlán","POB1":486998},"arcs":[[[-3275,-2980,-1103,-3270,3275,-3001]],[[-3157,3276,-3077,-3035,-2978,-3274]]]},{"type":"Polygon","properties":{"NOM_MUN":"Valle de Bravo","POB1":61599},"arcs":[[-3186,-3221,-3066,-3028,-2918,-3240]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Allende","POB1":47709},"arcs":[[3277,-2920,-3031,3278,3279]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa del Carbón","POB1":44881},"arcs":[[-3263,-3159,-3090,-3147,-3088,-3146,-3008,-2353]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Guerrero","POB1":59991},"arcs":[[-3245,3280,-3063,-2983,-3250]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Victoria","POB1":94369},"arcs":[[-3278,3281,-3210,-2906,-2921]]},{"type":"Polygon","properties":{"NOM_MUN":"Xonacatlán","POB1":46331},"arcs":[[-3083,-3149,-3112,-3191]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacazonapan","POB1":4051},"arcs":[[3282,-3187,-3239,-3231]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacualpan","POB1":15121},"arcs":[[-2985,-3062,-1742,-1772,-1729,-3224,-2903,-3223,-2899]]},{"type":"Polygon","properties":{"NOM_MUN":"Zinacantepec","POB1":167759},"arcs":[[-3272,-3251,-2981,-3241,-2916,-2911]]},{"type":"Polygon","properties":{"NOM_MUN":"Zumpahuacán","POB1":16365},"arcs":[[-3137,-3247,-3135,3283,3284,3285,-1732,-3273,-3060,-3281,-3244]]},{"type":"Polygon","properties":{"NOM_MUN":"Zumpango","POB1":159647},"arcs":[[-3229,-3154,-3075,-3153,-2997,-3254,-2992,-3043,-3264,-3046,-2406]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuautitlán Izcalli","POB1":511675},"arcs":[[-3271,-2943,-3161,-3262,-3002,-3276]]},{"type":"Polygon","properties":{"NOM_MUN":"Valle de Chalco Solidaridad","POB1":357645},"arcs":[[-3057,-3006,-1131,-1112,-3199]]},{"type":"Polygon","properties":{"NOM_MUN":"Luvianos","POB1":27781},"arcs":[[-3283,-3230,-1648,3286,3287,3288,-3188]]},{"type":"Polygon","properties":{"NOM_MUN":"San José del Rincón","POB1":91345},"arcs":[[-3211,-3282,-3280,3289,3290,3291,3292,3293,-3177]]},{"type":"Polygon","properties":{"NOM_MUN":"Tonanitla","POB1":10216},"arcs":[[-3156,-3228,-3078,-3277]]},{"type":"Polygon","properties":{"NOM_MUN":"Acuitzio","POB1":10987},"arcs":[[3294,3295,3296,3297]]},{"type":"Polygon","properties":{"NOM_MUN":"Aguililla","POB1":16214},"arcs":[[3298,3299,3300,3301,3302]]},{"type":"Polygon","properties":{"NOM_MUN":"Álvaro Obregón","POB1":20913},"arcs":[[-1283,3303,3304,3305,3306,3307,3308]]},{"type":"Polygon","properties":{"NOM_MUN":"Angamacutiro","POB1":14684},"arcs":[[3309,3310,3311,3312,-1409]]},{"type":"Polygon","properties":{"NOM_MUN":"Angangueo","POB1":10768},"arcs":[[3313,-3292,3314,3315]]},{"type":"Polygon","properties":{"NOM_MUN":"Apatzingán","POB1":123649},"arcs":[[3316,3317,3318,-3300,3319,3320]]},{"type":"Polygon","properties":{"NOM_MUN":"Aporo","POB1":3218},"arcs":[[3321,-3316,3322,3323,3324]]},{"type":"Polygon","properties":{"NOM_MUN":"Aquila","POB1":23536},"arcs":[[3325,3326,3327,3328,3329,3330]]},{"type":"Polygon","properties":{"NOM_MUN":"Ario","POB1":34848},"arcs":[[3331,3332,3333,3334,3335,3336]]},{"type":"Polygon","properties":{"NOM_MUN":"Arteaga","POB1":21790},"arcs":[[3337,-1593,-1791,3338,-3328,3339,3340,3341]]},{"type":"Polygon","properties":{"NOM_MUN":"Briseñas","POB1":10653},"arcs":[[3342,3343,3344,-2749,-2682,-2533]]},{"type":"Polygon","properties":{"NOM_MUN":"Buenavista","POB1":42234},"arcs":[[3345,-3320,-3299,3346,-2687,3347]]},{"type":"Polygon","properties":{"NOM_MUN":"Carácuaro","POB1":9212},"arcs":[[3348,3349,3350,3351,3352]]},{"type":"Polygon","properties":{"NOM_MUN":"Coahuayana","POB1":14136},"arcs":[[3353,-3331,3354,-439,-425,-405]]},{"type":"Polygon","properties":{"NOM_MUN":"Coalcomán de Vázquez Pallares","POB1":17615},"arcs":[[-3302,3355,-3340,-3327,3356,-2745,-2817,3357]]},{"type":"Polygon","properties":{"NOM_MUN":"Coeneo","POB1":20492},"arcs":[[3358,3359,3360,3361,3362,3363]]},{"type":"Polygon","properties":{"NOM_MUN":"Contepec","POB1":32954},"arcs":[[3364,3365,3366,3367,-3238,-3179,3368,3369,3370,3371]]},{"type":"Polygon","properties":{"NOM_MUN":"Copándaro","POB1":8952},"arcs":[[3372,3373,3374,3375,3376,3377,3378]]},{"type":"Polygon","properties":{"NOM_MUN":"Cotija","POB1":19644},"arcs":[[3379,3380,3381,-2713,-2760,3382]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuitzeo","POB1":28227},"arcs":[[3383,-3308,3384,-3373,3385,-1400,-1474]]},{"type":"Polygon","properties":{"NOM_MUN":"Charapan","POB1":12163},"arcs":[[3386,3387,3388,3389,3390]]},{"type":"Polygon","properties":{"NOM_MUN":"Charo","POB1":21723},"arcs":[[-3306,3391,3392,3393,3394]]},{"type":"Polygon","properties":{"NOM_MUN":"Chavinda","POB1":9975},"arcs":[[3395,3396,3397,3398,3399]]},{"type":"Polygon","properties":{"NOM_MUN":"Cherán","POB1":18141},"arcs":[[3400,3401,3402,3403]]},{"type":"Polygon","properties":{"NOM_MUN":"Chilchota","POB1":36293},"arcs":[[3404,3405,-3404,3406,-3387,3407]]},{"type":"Polygon","properties":{"NOM_MUN":"Chinicuila","POB1":5271},"arcs":[[-3357,-3326,-3354,-404,-2746]]},{"type":"Polygon","properties":{"NOM_MUN":"Chucándiro","POB1":5166},"arcs":[[3408,-3376,3409,3410,3411]]},{"type":"Polygon","properties":{"NOM_MUN":"Churintzio","POB1":5564},"arcs":[[3412,3413,3414,3415,3416,3417,3418]]},{"type":"Polygon","properties":{"NOM_MUN":"Churumuco","POB1":14366},"arcs":[[3419,-1804,-1594,-3338,3420,3421]]},{"type":"Polygon","properties":{"NOM_MUN":"Ecuandureo","POB1":12855},"arcs":[[3422,-3419,3423,3424,3425,3426,3427]]},{"type":"Polygon","properties":{"NOM_MUN":"Epitacio Huerta","POB1":16218},"arcs":[[-3371,3428,-1385,-1333,3429,3430,3431,3432]]},{"type":"Polygon","properties":{"NOM_MUN":"Erongarícuaro","POB1":14555},"arcs":[[-3362,3433,3434,3435,3436,3437,3438]]},{"type":"Polygon","properties":{"NOM_MUN":"Gabriel Zamora","POB1":21294},"arcs":[[3439,3440,3441,3442,3443]]},{"type":"Polygon","properties":{"NOM_MUN":"Hidalgo","POB1":117620},"arcs":[[3444,3445,3446,3447,3448,3449,3450,3451]]},{"type":"Polygon","properties":{"NOM_MUN":"La Huacana","POB1":32757},"arcs":[[3452,-3334,3453,-3421,-3342,3454,-3318,3455,3456,-3441]]},{"type":"Polygon","properties":{"NOM_MUN":"Huandacareo","POB1":11592},"arcs":[[-1504,-1401,-3386,-3379,3377,-3377,-3409,3457]]},{"type":"Polygon","properties":{"NOM_MUN":"Huaniqueo","POB1":7983},"arcs":[[-3411,3458,-3359,3459,3460]]},{"type":"Polygon","properties":{"NOM_MUN":"Huetamo","POB1":41937},"arcs":[[3461,3462,-1625,-1805,-3420,3463,-3350]]},{"type":"Polygon","properties":{"NOM_MUN":"Huiramba","POB1":7925},"arcs":[[3464,3465,3466,3467]]},{"type":"Polygon","properties":{"NOM_MUN":"Indaparapeo","POB1":16427},"arcs":[[3468,3469,3470,3471,3472,-3392,-3305]]},{"type":"Polygon","properties":{"NOM_MUN":"Irimbo","POB1":14766},"arcs":[[3473,-3325,3474,-3446,3475]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtlán","POB1":13584},"arcs":[[3476,-3426,3477,-3396,3478,3479]]},{"type":"Polygon","properties":{"NOM_MUN":"Jacona","POB1":64011},"arcs":[[3480,3481,3482]]},{"type":"Polygon","properties":{"NOM_MUN":"Jiménez","POB1":13275},"arcs":[[3483,-3460,-3364,3484,3485,3486]]},{"type":"Polygon","properties":{"NOM_MUN":"Jiquilpan","POB1":34199},"arcs":[[3487,-3383,-2763,3488,3489,3490]]},{"type":"Polygon","properties":{"NOM_MUN":"Juárez","POB1":13604},"arcs":[[3491,3492,3493,3494]]},{"type":"Polygon","properties":{"NOM_MUN":"Jungapeo","POB1":19986},"arcs":[[3495,-3495,3496,-3448,3497]]},{"type":"Polygon","properties":{"NOM_MUN":"Lagunillas","POB1":5506},"arcs":[[3498,3499,-3465,3500,3501]]},{"type":"Polygon","properties":{"NOM_MUN":"Madero","POB1":17427},"arcs":[[3502,3503,-3353,3504,3505,-3295,3506]]},{"type":"Polygon","properties":{"NOM_MUN":"Maravatío","POB1":80258},"arcs":[[3507,3508,-3476,-3445,3509,-1281,-1465,-1386,-3429,-3370]]},{"type":"Polygon","properties":{"NOM_MUN":"Marcos Castellanos","POB1":13031},"arcs":[[-3489,-2762,-2868,-2725,-2720,-2841,3510]]},{"type":"Polygon","properties":{"NOM_MUN":"Lázaro Cárdenas","POB1":178817},"arcs":[[-1790,3511,-3329,-3339]]},{"type":"Polygon","properties":{"NOM_MUN":"Morelia","POB1":729279},"arcs":[[3512,-3394,3513,-3507,-3298,3514,-3466,-3500,-3499,-3502,3515,3516,-3360,-3459,-3410,-3375]]},{"type":"Polygon","properties":{"NOM_MUN":"Morelos","POB1":8091},"arcs":[[-1505,-3458,-3412,-3461,-3484,3517]]},{"type":"Polygon","properties":{"NOM_MUN":"Múgica","POB1":44963},"arcs":[[-3442,-3457,3518]]},{"type":"Polygon","properties":{"NOM_MUN":"Nahuatzen","POB1":27174},"arcs":[[3519,-3438,3520,3521,3522,-3402]]},{"type":"Polygon","properties":{"NOM_MUN":"Nocupétaro","POB1":7799},"arcs":[[-3352,3523,3524,-3505]]},{"type":"Polygon","properties":{"NOM_MUN":"Nuevo Parangaricutiro","POB1":18834},"arcs":[[3525,3526]]},{"type":"Polygon","properties":{"NOM_MUN":"Nuevo Urecho","POB1":8240},"arcs":[[-3335,-3453,-3440,3527,3528]]},{"type":"Polygon","properties":{"NOM_MUN":"Numarán","POB1":9599},"arcs":[[-1411,3529,3530,3531]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocampo","POB1":22628},"arcs":[[-3315,-3291,3532,3533,-3323]]},{"type":"Polygon","properties":{"NOM_MUN":"Pajacuarán","POB1":19450},"arcs":[[3534,-3479,-3400,3535,3536,-3344]]},{"type":"Polygon","properties":{"NOM_MUN":"Panindícuaro","POB1":16064},"arcs":[[3537,-3486,3538,3539,-3312]]},{"type":"Polygon","properties":{"NOM_MUN":"Parácuaro","POB1":25343},"arcs":[[3540,-3443,-3519,-3456,-3317,3541]]},{"type":"Polygon","properties":{"NOM_MUN":"Paracho","POB1":34721},"arcs":[[-3403,-3523,3542,-3388,-3407]]},{"type":"Polygon","properties":{"NOM_MUN":"Pátzcuaro","POB1":87794},"arcs":[[-3467,-3515,-3297,3543,3544,3545,-3436,3546]]},{"type":"Polygon","properties":{"NOM_MUN":"Penjamillo","POB1":17159},"arcs":[[-3313,-3540,3547,3548,-3417,3549,-3530,-1410]]},{"type":"Polygon","properties":{"NOM_MUN":"Peribán","POB1":25296},"arcs":[[3550,3551,-3348,-2686,-2716,3552]]},{"type":"Polygon","properties":{"NOM_MUN":"La Piedad","POB1":99576},"arcs":[[-3532,3553,-3413,-3423,3554,-2604,-1412]]},{"type":"Polygon","properties":{"NOM_MUN":"Purépero","POB1":15306},"arcs":[[3555,-3405,3556,3557]]},{"type":"Polygon","properties":{"NOM_MUN":"Puruándiro","POB1":67837},"arcs":[[-1477,-1506,-3518,-3487,-3538,-3311,3558]]},{"type":"Polygon","properties":{"NOM_MUN":"Queréndaro","POB1":13550},"arcs":[[3559,-3451,3560,-3472,3470,-3470]]},{"type":"Polygon","properties":{"NOM_MUN":"Quiroga","POB1":25592},"arcs":[[-3517,3561,-3434,-3361]]},{"type":"Polygon","properties":{"NOM_MUN":"Cojumatlán de Régules","POB1":9980},"arcs":[[3562,3563,-3490,-3511,-2840,-2751]]},{"type":"Polygon","properties":{"NOM_MUN":"Los Reyes","POB1":64141},"arcs":[[3564,3565,-3390,3566,-3553,-2715,3567,3568]]},{"type":"Polygon","properties":{"NOM_MUN":"Sahuayo","POB1":72841},"arcs":[[3569,-3491,-3564,3570]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lucas","POB1":18461},"arcs":[[-1646,-1747,-1619,-3463,3571]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Ana Maya","POB1":12618},"arcs":[[-1428,-1284,-3309,-3384,-1473,-1503]]},{"type":"Polygon","properties":{"NOM_MUN":"Salvador Escalante","POB1":45217},"arcs":[[3572,-3337,3573,3574,3575,-3545]]},{"type":"Polygon","properties":{"NOM_MUN":"Senguio","POB1":18427},"arcs":[[3576,-3293,-3314,-3322,-3474,-3509]]},{"type":"Polygon","properties":{"NOM_MUN":"Susupuato","POB1":8704},"arcs":[[3577,-3064,-3220,-3189,-3289,3578,-3493]]},{"type":"Polygon","properties":{"NOM_MUN":"Tacámbaro","POB1":69955},"arcs":[[-3296,-3506,-3525,3579,-3332,-3573,-3544]]},{"type":"Polygon","properties":{"NOM_MUN":"Tancítaro","POB1":29414},"arcs":[[3580,-3526,3581,-3542,-3321,-3346,-3552]]},{"type":"Polygon","properties":{"NOM_MUN":"Tangamandapio","POB1":27822},"arcs":[[3582,-3482,3583,-3565,3584,3585,-3398]]},{"type":"Polygon","properties":{"NOM_MUN":"Tangancícuaro","POB1":32677},"arcs":[[3586,-3557,-3408,-3391,-3566,-3584,-3481,3587],[3588]]},{"type":"Polygon","properties":{"NOM_MUN":"Tanhuato","POB1":15176},"arcs":[[3589,-3427,-3477,3590,-2531,-2524]]},{"type":"Polygon","properties":{"NOM_MUN":"Taretan","POB1":13558},"arcs":[[-3574,-3336,-3529,3591,3592]]},{"type":"Polygon","properties":{"NOM_MUN":"Tarímbaro","POB1":78623},"arcs":[[-3385,-3307,-3395,-3513,-3374]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepalcatepec","POB1":22987},"arcs":[[-3347,-3303,-3358,-2816,-2688]]},{"type":"Polygon","properties":{"NOM_MUN":"Tingambato","POB1":13950},"arcs":[[-3437,-3546,-3576,3593,3594,-3521]]},{"type":"Polygon","properties":{"NOM_MUN":"Tingüindín","POB1":13511},"arcs":[[3595,-3585,-3569,3596,-3381]]},{"type":"Polygon","properties":{"NOM_MUN":"Tiquicheo de Nicolás Romero","POB1":14274},"arcs":[[3597,-3287,-1647,-3572,-3462,-3349,-3504,3598]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlalpujahua","POB1":27587},"arcs":[[-3178,-3294,-3577,-3508,-3369]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlazazalca","POB1":6890},"arcs":[[-3418,-3549,3599,-3558,-3587,3600,-3424]]},{"type":"Polygon","properties":{"NOM_MUN":"Tocumbo","POB1":11504},"arcs":[[-3597,-3568,-2714,-3382]]},{"type":"Polygon","properties":{"NOM_MUN":"Tumbiscatío","POB1":7890},"arcs":[[-3455,-3341,-3356,-3301,-3319]]},{"type":"Polygon","properties":{"NOM_MUN":"Turicato","POB1":31877},"arcs":[[-3580,-3524,-3351,-3464,-3422,-3454,-3333]]},{"type":"Polygon","properties":{"NOM_MUN":"Tuxpan","POB1":26026},"arcs":[[-3324,-3534,3601,-3498,-3447,-3475]]},{"type":"Polygon","properties":{"NOM_MUN":"Tuzantla","POB1":16305},"arcs":[[-3497,-3494,-3579,-3288,-3598,3602,-3449]]},{"type":"Polygon","properties":{"NOM_MUN":"Tzintzuntzan","POB1":13556},"arcs":[[-3516,-3501,-3468,-3547,-3435,-3562]]},{"type":"Polygon","properties":{"NOM_MUN":"Tzitzio","POB1":9166},"arcs":[[-3473,-3561,-3450,-3603,-3599,-3503,-3514,-3393]]},{"type":"Polygon","properties":{"NOM_MUN":"Uruapan","POB1":315350},"arcs":[[-3543,-3522,-3595,3603,-3592,-3528,-3444,-3541,-3582,-3527,-3581,-3551,-3567,-3389]]},{"type":"Polygon","properties":{"NOM_MUN":"Venustiano Carranza","POB1":23457},"arcs":[[-3537,3604,-3571,-3563,-2750,-3345]]},{"type":"Polygon","properties":{"NOM_MUN":"Villamar","POB1":16991},"arcs":[[-3536,-3399,-3586,-3596,-3380,-3488,-3570,-3605]]},{"type":"Polygon","properties":{"NOM_MUN":"Vista Hermosa","POB1":18995},"arcs":[[-3591,-3480,-3535,-3343,-2532]]},{"type":"Polygon","properties":{"NOM_MUN":"Yurécuaro","POB1":29995},"arcs":[[-2523,-2605,-3555,-3428,-3590]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacapu","POB1":73455},"arcs":[[-3548,-3539,-3485,-3363,-3439,-3520,-3401,-3406,-3556,-3600]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Zamora","POB1":186102},"arcs":[[[-3601,-3588,-3483,-3583,-3397,-3478,-3425]],[[-3589]]]},{"type":"Polygon","properties":{"NOM_MUN":"Zináparo","POB1":3247},"arcs":[[-3531,-3550,-3416,-3415,-3414,-3554]]},{"type":"Polygon","properties":{"NOM_MUN":"Zinapécuaro","POB1":46666},"arcs":[[-3510,-3452,-3560,-3469,-3304,-1282]]},{"type":"Polygon","properties":{"NOM_MUN":"Ziracuaretiro","POB1":15222},"arcs":[[-3594,-3575,-3593,-3604]]},{"type":"Polygon","properties":{"NOM_MUN":"Zitácuaro","POB1":155534},"arcs":[[-3290,-3279,-3030,-3065,-3578,-3492,-3496,-3602,-3533]]},{"type":"Polygon","properties":{"NOM_MUN":"José Sixto Verduzco","POB1":25576},"arcs":[[-1358,-1478,-3559,-3310,-1408,-1277]]},{"type":"Polygon","properties":{"NOM_MUN":"Amacuzac","POB1":17021},"arcs":[[3605,3606,-1584,-1763,-1762,-1761,-1760,-1759,-1758,-1757,3607,3608]]},{"type":"Polygon","properties":{"NOM_MUN":"Atlatlahucan","POB1":18895},"arcs":[[-3259,-3258,-3195,3609,3610,3611,3612,3613,-3260]]},{"type":"Polygon","properties":{"NOM_MUN":"Axochiapan","POB1":33695},"arcs":[[3614,3615,3616,3617,3618,3619,3620,3621]]},{"type":"Polygon","properties":{"NOM_MUN":"Ayala","POB1":78866},"arcs":[[3622,3623,3624,3625,3626,3627,3628,3629,3630]]},{"type":"Polygon","properties":{"NOM_MUN":"Coatlán del Río","POB1":9471},"arcs":[[3631,3632,-3608,-1766,-1739,-1738,-1737,-1736,-1735,-1734,-1733,-3286,-3285,-3284,-3134,-3133,-3132,-3131,-3130,-3129,-3128,-3127,-3126,-3125,3633]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuautla","POB1":175207},"arcs":[[3634,-3631,3635,-3611]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuernavaca","POB1":365168},"arcs":[[3636,3637,3638,3639,3640,-3168,-3167,-3166,3641]]},{"type":"Polygon","properties":{"NOM_MUN":"Emiliano Zapata","POB1":83485},"arcs":[[3642,3643,3644,3645,3646,-3639]]},{"type":"Polygon","properties":{"NOM_MUN":"Huitzilac","POB1":17340},"arcs":[[-3642,-3165,-3072,-1137,-1123,3647]]},{"type":"Polygon","properties":{"NOM_MUN":"Jantetelco","POB1":15646},"arcs":[[-3625,3648,3649,3650,-3622,3651]]},{"type":"Polygon","properties":{"NOM_MUN":"Jiutepec","POB1":196953},"arcs":[[-3638,3652,3653,-3643]]},{"type":"Polygon","properties":{"NOM_MUN":"Jojutla","POB1":55115},"arcs":[[3654,3655,3656,3657]]},{"type":"Polygon","properties":{"NOM_MUN":"Jonacatepec","POB1":14604},"arcs":[[-3621,3658,-3626,-3652]]},{"type":"Polygon","properties":{"NOM_MUN":"Mazatepec","POB1":9456},"arcs":[[-3632,3659,3660,-3606,3661]]},{"type":"Polygon","properties":{"NOM_MUN":"Miacatlán","POB1":24990},"arcs":[[3662,3663,3664,-3660,-3634,-3124,-3123,-3122,-3121,-3120,-3119,-3118,-3117,-3174,-3173,-3172,-3171,-3170,-3169,-3641]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocuituco","POB1":16858},"arcs":[[3665,3666,3667,-3038]]},{"type":"Polygon","properties":{"NOM_MUN":"Puente de Ixtla","POB1":61585},"arcs":[[3668,3669,-3656,3670,-1677,-1585,-3607,-3661,-3665,3671]]},{"type":"Polygon","properties":{"NOM_MUN":"Temixco","POB1":108126},"arcs":[[-3647,3672,-3663,-3640]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepalcingo","POB1":25346},"arcs":[[-3620,3673,3674,-3627,-3659]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepoztlán","POB1":41629},"arcs":[[-3653,-3637,-3648,-1122,3675,3676,3677]]},{"type":"Polygon","properties":{"NOM_MUN":"Tetecala","POB1":7441},"arcs":[[-3662,-3609,-3633]]},{"type":"Polygon","properties":{"NOM_MUN":"Tetela del Volcán","POB1":19138},"arcs":[[3678,3679,-3666,-3042,-2952,3680]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlalnepantla","POB1":6636},"arcs":[[3681,3682,-3676,-1121,-3105]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlaltizapán","POB1":48881},"arcs":[[-3629,3683,-3658,3684,-3669,3685,-3645,3686]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlaquiltenango","POB1":31534},"arcs":[[-3684,-3628,-3675,3687,3688,-1681,-1680,-1679,-1678,-3671,-3655]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlayacapan","POB1":16543},"arcs":[[3689,-3613,3690,-3677,-3683]]},{"type":"Polygon","properties":{"NOM_MUN":"Totolapan","POB1":10789},"arcs":[[-3104,-3261,-3614,-3690,-3682]]},{"type":"Polygon","properties":{"NOM_MUN":"Xochitepec","POB1":63382},"arcs":[[-3646,-3686,-3672,-3664,-3673]]},{"type":"Polygon","properties":{"NOM_MUN":"Yautepec","POB1":97827},"arcs":[[-3612,-3636,-3630,-3687,-3644,-3654,-3678,-3691]]},{"type":"Polygon","properties":{"NOM_MUN":"Yecapixtla","POB1":46809},"arcs":[[-2954,-3041,-3040,-3039,-3668,3691,3692,-3623,-3635,-3610,-3194]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacatepec","POB1":35063},"arcs":[[-3657,-3670,-3685]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacualpan","POB1":9087},"arcs":[[3693,3694,-3692,-3667,-3680,3695]]},{"type":"Polygon","properties":{"NOM_MUN":"Temoac","POB1":14641},"arcs":[[3696,-3649,-3624,-3693,-3695]]},{"type":"Polygon","properties":{"NOM_MUN":"Acaponeta","POB1":36572},"arcs":[[-1215,3697,3698,3699,3700,3701]]},{"type":"Polygon","properties":{"NOM_MUN":"Ahuacatlán","POB1":15229},"arcs":[[3702,3703,-2798,3704,3705,3706]]},{"type":"Polygon","properties":{"NOM_MUN":"Amatlán de Cañas","POB1":11188},"arcs":[[3707,-2780,-2779,-2782,-2615,-2468,-2623,-2799,-3704]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Compostela","POB1":70399},"arcs":[[[3708]],[[3709,3710,-2796,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723]]]},{"type":"Polygon","properties":{"NOM_MUN":"Huajicori","POB1":11400},"arcs":[[-3702,3724,3725,-1240,-1216]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtlán del Río","POB1":27273},"arcs":[[3726,-2631,-2708,-2781,-3708,-3703,3727]]},{"type":"Polygon","properties":{"NOM_MUN":"Jala","POB1":17698},"arcs":[[-3728,-3707,3728,3729]]},{"type":"Polygon","properties":{"NOM_MUN":"Xalisco","POB1":49102},"arcs":[[3730,3731,-3710,3732,3733]]},{"type":"Polygon","properties":{"NOM_MUN":"Del Nayar","POB1":34300},"arcs":[[3734,3735,3736,3737,3738,3739,-3698,-1214,-1213,-1212,-1211,3740,-2734]]},{"type":"Polygon","properties":{"NOM_MUN":"Rosamorada","POB1":34393},"arcs":[[-3740,3741,3742,3743,-3699]]},{"type":"Polygon","properties":{"NOM_MUN":"Ruíz","POB1":23469},"arcs":[[3744,3745,-3742,-3739]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"San Blas","POB1":43120},"arcs":[[[3746]],[[3747]],[[3748]],[[3749,-3733,-3724,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759]],[[3760]]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Lagunillas","POB1":7510},"arcs":[[-3705,-2797,-3711,-3732,3761]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María del Oro","POB1":22412},"arcs":[[3762,-3729,-3706,-3762,-3731,3763,-3736]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Santiago Ixcuintla","POB1":93074},"arcs":[[[3764]],[[3765,-3745,-3738,3766,-3760,3767,3768,3769,3770]]]},{"type":"Polygon","properties":{"NOM_MUN":"Tecuala","POB1":39756},"arcs":[[-3700,-3744,3771,-3771,3772,3773,3774,3775,3776,3777]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepic","POB1":380249},"arcs":[[-3764,-3734,-3750,-3767,-3737]]},{"type":"Polygon","properties":{"NOM_MUN":"Tuxpan","POB1":30030},"arcs":[[-3746,-3766,-3772,-3743]]},{"type":"Polygon","properties":{"NOM_MUN":"La Yesca","POB1":13600},"arcs":[[-3727,-3730,-3763,-3735,-2733,-2540,-2785,-2835,-2632]]},{"type":"Polygon","properties":{"NOM_MUN":"Bahía de Banderas","POB1":124205},"arcs":[[-2795,-2755,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,-3712]]},{"type":"Polygon","properties":{"NOM_MUN":"Abasolo","POB1":2791},"arcs":[[3797,3798,3799]]},{"type":"Polygon","properties":{"NOM_MUN":"Agualeguas","POB1":3443},"arcs":[[3800,3801,3802,3803,3804,3805,3806]]},{"type":"Polygon","properties":{"NOM_MUN":"Los Aldamas","POB1":1374},"arcs":[[3807,3808,3809,3810,3811,3812]]},{"type":"Polygon","properties":{"NOM_MUN":"Allende","POB1":32593},"arcs":[[3813,3814,3815]]},{"type":"Polygon","properties":{"NOM_MUN":"Anáhuac","POB1":18480},"arcs":[[3816,3817,3818,3819,3820,3821,3822,3823,3824,-330,-320]]},{"type":"Polygon","properties":{"NOM_MUN":"Apodaca","POB1":523370},"arcs":[[3825,3826,3827,3828,3829,3830,3831]]},{"type":"Polygon","properties":{"NOM_MUN":"Aramberri","POB1":15470},"arcs":[[3832,3833,3834,3835,3836,3837,3838]]},{"type":"Polygon","properties":{"NOM_MUN":"Bustamante","POB1":3773},"arcs":[[3839,-276,3840,3841]]},{"type":"Polygon","properties":{"NOM_MUN":"Cadereyta Jiménez","POB1":86445},"arcs":[[3842,3843,3844,3845,-3814,3846,3847,3848]]},{"type":"Polygon","properties":{"NOM_MUN":"Carmen","POB1":16092},"arcs":[[-3798,3849,3850,3851]]},{"type":"Polygon","properties":{"NOM_MUN":"Cerralvo","POB1":7855},"arcs":[[3852,3853,3854,3855,3856,3857,3858,3859,-3803]]},{"type":"Polygon","properties":{"NOM_MUN":"Ciénega de Flores","POB1":24526},"arcs":[[3860,3861,3862]]},{"type":"Polygon","properties":{"NOM_MUN":"China","POB1":10864},"arcs":[[3863,3864,3865,3866,3867,3868,3869,3870,-3810]]},{"type":"Polygon","properties":{"NOM_MUN":"Dr. Arroyo","POB1":35445},"arcs":[[-3835,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881]]},{"type":"Polygon","properties":{"NOM_MUN":"Dr. Coss","POB1":1716},"arcs":[[3882,-3864,-3809,3883,3884]]},{"type":"Polygon","properties":{"NOM_MUN":"Dr. González","POB1":3345},"arcs":[[-3857,3885,3886,3887]]},{"type":"Polygon","properties":{"NOM_MUN":"Galeana","POB1":39991},"arcs":[[3888,3889,-3836,-3882,3890,3891,-379,-378,-377,-273]]},{"type":"Polygon","properties":{"NOM_MUN":"García","POB1":143668},"arcs":[[3892,3893,-374,3894,3895,3896]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Garza García","POB1":122659},"arcs":[[3897,3898]]},{"type":"Polygon","properties":{"NOM_MUN":"Gral. Bravo","POB1":5527},"arcs":[[3899,3900,-3865,-3883,3901]]},{"type":"Polygon","properties":{"NOM_MUN":"Gral. Escobedo","POB1":357937},"arcs":[[-3799,-3852,3902,-3829,3903,3904,-3897,3905]]},{"type":"Polygon","properties":{"NOM_MUN":"Gral. Terán","POB1":14437},"arcs":[[-3869,3906,3907,3908,-3845,3909]]},{"type":"Polygon","properties":{"NOM_MUN":"Gral. Treviño","POB1":1277},"arcs":[[-3812,3910,3911,-3853,-3802,3912]]},{"type":"Polygon","properties":{"NOM_MUN":"Gral. Zaragoza","POB1":5942},"arcs":[[3913,3914,3915,3916,-3872,-3834]]},{"type":"Polygon","properties":{"NOM_MUN":"Gral. Zuazua","POB1":55213},"arcs":[[3917,3918,3919,-3831,3920,-3863]]},{"type":"Polygon","properties":{"NOM_MUN":"Guadalupe","POB1":678006},"arcs":[[3921,3922,-3827,3923]]},{"type":"Polygon","properties":{"NOM_MUN":"Los Herreras","POB1":2030},"arcs":[[-3855,3924,-3911,-3811,-3871,3925]]},{"type":"Polygon","properties":{"NOM_MUN":"Higueras","POB1":1594},"arcs":[[3926,-3918,-3862,3927,-3859]]},{"type":"Polygon","properties":{"NOM_MUN":"Hualahuises","POB1":6914},"arcs":[[3928]]},{"type":"Polygon","properties":{"NOM_MUN":"Iturbide","POB1":3558},"arcs":[[-3890,3929,3930,3931,-3837]]},{"type":"Polygon","properties":{"NOM_MUN":"Juárez","POB1":256970},"arcs":[[-3849,3932,-3924,-3826,3933]]},{"type":"Polygon","properties":{"NOM_MUN":"Lampazos de Naranjo","POB1":5349},"arcs":[[3934,3935,3936,-3841,-282,-368,-326,-3825]]},{"type":"Polygon","properties":{"NOM_MUN":"Linares","POB1":78669},"arcs":[[3937,3938,3939,3940,3941,-3931,3942,3943,-3908],[-3929]]},{"type":"Polygon","properties":{"NOM_MUN":"Marín","POB1":5488},"arcs":[[-3919,-3927,-3858,-3888,3944]]},{"type":"Polygon","properties":{"NOM_MUN":"Melchor Ocampo","POB1":862},"arcs":[[-3912,-3925,-3854]]},{"type":"Polygon","properties":{"NOM_MUN":"Mier y Noriega","POB1":7095},"arcs":[[3945,3946,-3874]]},{"type":"Polygon","properties":{"NOM_MUN":"Mina","POB1":5447},"arcs":[[3947,3948,3949,-3895,-373,-288,-287,-286,-285,-284,-277,-3840]]},{"type":"Polygon","properties":{"NOM_MUN":"Montemorelos","POB1":59113},"arcs":[[3950,3951,-3815,-3846,-3909,-3944]]},{"type":"Polygon","properties":{"NOM_MUN":"Monterrey","POB1":1135550},"arcs":[[3952,-3922,-3933,-3848,3953,3954,-3898,3955,-3893,-3905]]},{"type":"Polygon","properties":{"NOM_MUN":"Parás","POB1":1034},"arcs":[[3956,-3807,3957,3958]]},{"type":"Polygon","properties":{"NOM_MUN":"Pesquería","POB1":20843},"arcs":[[-3920,-3945,-3887,3959,-3843,-3934,-3832]]},{"type":"Polygon","properties":{"NOM_MUN":"Los Ramones","POB1":5359},"arcs":[[-3844,-3960,-3886,-3856,-3926,-3870,-3910]]},{"type":"Polygon","properties":{"NOM_MUN":"Rayones","POB1":2628},"arcs":[[-272,3960,-3951,-3943,-3930,-3889]]},{"type":"Polygon","properties":{"NOM_MUN":"Sabinas Hidalgo","POB1":34671},"arcs":[[-3805,3961,3962,-3936,3963]]},{"type":"Polygon","properties":{"NOM_MUN":"Salinas Victoria","POB1":32660},"arcs":[[-3851,3964,-3949,3965,-3962,-3804,-3860,-3928,-3861,-3921,-3830,-3903]]},{"type":"Polygon","properties":{"NOM_MUN":"San Nicolás de los Garza","POB1":443273},"arcs":[[-3904,-3828,-3923,-3953]]},{"type":"Polygon","properties":{"NOM_MUN":"Hidalgo","POB1":16604},"arcs":[[-3965,-3850,-3800,-3906,-3896,-3950]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina","POB1":268955},"arcs":[[-3956,-3899,-3955,3966,-270,-371,-3894]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago","POB1":40469},"arcs":[[-3847,-3816,-3952,-3961,-271,-3967,-3954]]},{"type":"Polygon","properties":{"NOM_MUN":"Vallecillo","POB1":1971},"arcs":[[-3958,-3806,-3964,-3935,-3824,3967]]},{"type":"Polygon","properties":{"NOM_MUN":"Villaldama","POB1":4113},"arcs":[[-3966,-3948,-3842,-3937,-3963]]},{"type":"Polygon","properties":{"NOM_MUN":"Abejones","POB1":1084},"arcs":[[3968,3969,3970,3971,3972,3973]]},{"type":"Polygon","properties":{"NOM_MUN":"Acatlán de Pérez Figueroa","POB1":44885},"arcs":[[3974,3975,3976,3977,3978]]},{"type":"Polygon","properties":{"NOM_MUN":"Asunción Cacalotepec","POB1":2495},"arcs":[[3979,3980,3981,3982]]},{"type":"Polygon","properties":{"NOM_MUN":"Asunción Cuyotepeji","POB1":1012},"arcs":[[3983,3984,3985,3986,3987]]},{"type":"Polygon","properties":{"NOM_MUN":"Asunción Ixtaltepec","POB1":14751},"arcs":[[3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Asunción Nochixtlán","POB1":17820},"arcs":[[[3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012]],[[4013,4014]]]},{"type":"Polygon","properties":{"NOM_MUN":"Asunción Ocotlán","POB1":2612},"arcs":[[4015,4016]]},{"type":"Polygon","properties":{"NOM_MUN":"Asunción Tlacolulita","POB1":842},"arcs":[[4017,4018,4019]]},{"type":"Polygon","properties":{"NOM_MUN":"Ayotzintepec","POB1":6720},"arcs":[[4020,4021,4022,4023,4024,4025]]},{"type":"Polygon","properties":{"NOM_MUN":"El Barrio de la Soledad","POB1":13608},"arcs":[[4026,-3999,4027,4028,4029,4030]]},{"type":"Polygon","properties":{"NOM_MUN":"Calihualá","POB1":1220},"arcs":[[4031,4032,4033,4034,4035]]},{"type":"Polygon","properties":{"NOM_MUN":"Candelaria Loxicha","POB1":9860},"arcs":[[4036,4037,4038,4039,4040,4041]]},{"type":"Polygon","properties":{"NOM_MUN":"Ciénega de Zimatlán","POB1":2785},"arcs":[[4042,4043,4044,4045,4046]]},{"type":"Polygon","properties":{"NOM_MUN":"Ciudad Ixtepec","POB1":26450},"arcs":[[-3998,4047,-4028]]},{"type":"Polygon","properties":{"NOM_MUN":"Coatecas Altas","POB1":4712},"arcs":[[4048,4049,4050,4051]]},{"type":"Polygon","properties":{"NOM_MUN":"Coicoyán de las Flores","POB1":8531},"arcs":[[4052,-1774,-1527,4053]]},{"type":"Polygon","properties":{"NOM_MUN":"La Compañía","POB1":3302},"arcs":[[4054,4055,4056,4057,4058,4059,4060,4061,4062,4063]]},{"type":"Polygon","properties":{"NOM_MUN":"Concepción Buenavista","POB1":834},"arcs":[[4064,4065,4066,4067,4068]]},{"type":"Polygon","properties":{"NOM_MUN":"Concepción Pápalo","POB1":3071},"arcs":[[4069,4070,4071,4072,4073,4074,4075]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Constancia del Rosario","POB1":3860},"arcs":[[[4076,-1796,4077]],[[-1801,-1776,4078]]]},{"type":"Polygon","properties":{"NOM_MUN":"Cosolapa","POB1":14667},"arcs":[[4079,-3978,4080,4081]]},{"type":"Polygon","properties":{"NOM_MUN":"Cosoltepec","POB1":866},"arcs":[[4082,4083,4084,4085]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuilápam de Guerrero","POB1":18428},"arcs":[[4086,4087,4088,4089,4090]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuyamecalco Villa de Zaragoza","POB1":3846},"arcs":[[4091,-4076,4092,4093,4094]]},{"type":"Polygon","properties":{"NOM_MUN":"Chahuites","POB1":11105},"arcs":[[4095]]},{"type":"Polygon","properties":{"NOM_MUN":"Chalcatongo de Hidalgo","POB1":8481},"arcs":[[4096,4097,4098,4099,4100,4101,4102,4103]]},{"type":"Polygon","properties":{"NOM_MUN":"Chiquihuitlán de Benito Juárez","POB1":2458},"arcs":[[4104,4105,4106,4107,4108,4109]]},{"type":"Polygon","properties":{"NOM_MUN":"Heroica Ciudad de Ejutla de Crespo","POB1":19679},"arcs":[[4110,4111,4112,4113,4114,4115,4116,4117,-4052,4118,4119,4120,4121,4122,-4060,4123,4124,4125,4126,-4057,4127,4128,4129,4130]]},{"type":"Polygon","properties":{"NOM_MUN":"Eloxochitlán de Flores Magón","POB1":4263},"arcs":[[4131,4132,4133,4134,4135,4136,4137]]},{"type":"Polygon","properties":{"NOM_MUN":"El Espinal","POB1":8310},"arcs":[[4138,-3992,4139]]},{"type":"Polygon","properties":{"NOM_MUN":"Tamazulápam del Espíritu Santo","POB1":7362},"arcs":[[4140,4141,-3983,4142,4143,4144]]},{"type":"Polygon","properties":{"NOM_MUN":"Fresnillo de Trujano","POB1":1033},"arcs":[[4145,4146,4147,4148]]},{"type":"Polygon","properties":{"NOM_MUN":"Guadalupe Etla","POB1":2433},"arcs":[[4149,4150,4151,4152,4153,4154]]},{"type":"Polygon","properties":{"NOM_MUN":"Guadalupe de Ramírez","POB1":1425},"arcs":[[4155,4156,4157,4158]]},{"type":"Polygon","properties":{"NOM_MUN":"Guelatao de Juárez","POB1":544},"arcs":[[4159,4160]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Guevea de Humboldt","POB1":5285},"arcs":[[[4161,4162,4163]],[[4164]]]},{"type":"Polygon","properties":{"NOM_MUN":"Mesones Hidalgo","POB1":4402},"arcs":[[4165,-1798,4166]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Hidalgo","POB1":2112},"arcs":[[4167,4168,4169,4170,4171,4172]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Heroica Ciudad de Huajuapan de León","POB1":69839},"arcs":[[[4173,-3986,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184]],[[4185,4186,4187,4188]]]},{"type":"Polygon","properties":{"NOM_MUN":"Huautepec","POB1":5995},"arcs":[[4189,4190,4191,4192,4193,4194]]},{"type":"Polygon","properties":{"NOM_MUN":"Huautla de Jiménez","POB1":30004},"arcs":[[4195,4196,-4195,4197,-4193,4198,4199,4200,-4133,4201]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtlán de Juárez","POB1":7674},"arcs":[[4202,4203,4204,4205,4206,4207,-4161,4208,4209,4210,4211,4212,-4022,4213],[4214]]},{"type":"Polygon","properties":{"NOM_MUN":"Heroica Ciudad de Juchitán de Zaragoza","POB1":93038},"arcs":[[4215,4216,4217,4218,4219,4220,4221,4222,-4140,-3991,4223,4224]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Loma Bonita","POB1":41535},"arcs":[[[4225,4226,4227]],[[4228,4229,4230,4231,4232,4233]]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena Apasco","POB1":7522},"arcs":[[4234,4235,4236,4237,4238,4239]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena Jaltepec","POB1":3313},"arcs":[[4240,4241,-4015,4242,4243,4244,4245,4246,-4011]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Magdalena Jicotlán","POB1":93},"arcs":[[4247,4248,4249,4250,4251,4252]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena Mixtepec","POB1":1304},"arcs":[[4253,4254,4255,4256,4257,4258]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena Ocotlán","POB1":1141},"arcs":[[-4113,4259]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena Peñasco","POB1":3778},"arcs":[[4260,4261,4262,4263,4264,4265,4266]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena Teitipac","POB1":4368},"arcs":[[4267,4268,4269,4270,4271,4272,4273]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena Tequisistlán","POB1":6182},"arcs":[[4274,4275,4276,-4018,4277,4278,4279,4280,4281]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena Tlacotepec","POB1":1221},"arcs":[[-3995,4282,4283,4284,4285]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena Zahuatlán","POB1":409},"arcs":[[-4247,4286,4287,4288,-4012]]},{"type":"Polygon","properties":{"NOM_MUN":"Mariscala de Juárez","POB1":3530},"arcs":[[4289,4290,4291,4292,4293,-4157,4294,4295,4296,4297,-4146]]},{"type":"Polygon","properties":{"NOM_MUN":"Mártires de Tacubaya","POB1":1451},"arcs":[[4298,4299,4300,-1721]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Matías Romero Avendaño","POB1":38019},"arcs":[[[4301,4302]],[[4303,4304,4305,4306,-4031,4307,4308,4309,4310],[4311]]]},{"type":"Polygon","properties":{"NOM_MUN":"Mazatlán Villa de Flores","POB1":13435},"arcs":[[-4192,4312,-4094,4313,4314,4315,4316,-4199]]},{"type":"Polygon","properties":{"NOM_MUN":"Miahuatlán de Porfirio Díaz","POB1":41387},"arcs":[[4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,-4119,-4051]]},{"type":"Polygon","properties":{"NOM_MUN":"Mixistlán de la Reforma","POB1":2770},"arcs":[[4339,4340,4341,4342,4343,-4168]]},{"type":"Polygon","properties":{"NOM_MUN":"Monjas","POB1":2568},"arcs":[[4344,-4335]]},{"type":"Polygon","properties":{"NOM_MUN":"Natividad","POB1":586},"arcs":[[4345,4346]]},{"type":"Polygon","properties":{"NOM_MUN":"Nazareno Etla","POB1":3882},"arcs":[[4347,-4153,4348,4349]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Nejapa de Madero","POB1":7390},"arcs":[[[4350,4351,4352,-4280,4353,4354]],[[4355,4356,4357,4358]]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixpantepec Nieves","POB1":1182},"arcs":[[4359,4360,4361,4362,4363,4364,4365]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Niltepec","POB1":5353},"arcs":[[4366,4367,4368,4369,4370,4371]]},{"type":"Polygon","properties":{"NOM_MUN":"Oaxaca de Juárez","POB1":263357},"arcs":[[4372,4373,4374,4375,4376,4377,4378,4379,4380]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocotlán de Morelos","POB1":21341},"arcs":[[4381,4382,4383,4384,4385,4386,4387,4388,-4017,4389,4390,-4131,4391,4392,4393,4394,4395,4396,4397]]},{"type":"Polygon","properties":{"NOM_MUN":"La Pe","POB1":2446},"arcs":[[-4127,4398,-4058]]},{"type":"Polygon","properties":{"NOM_MUN":"Pinotepa de Don Luis","POB1":6629},"arcs":[[4399,4400,4401,4402,4403]]},{"type":"Polygon","properties":{"NOM_MUN":"Pluma Hidalgo","POB1":3060},"arcs":[[4404,4405,4406,-4037,4407]]},{"type":"Polygon","properties":{"NOM_MUN":"San José del Progreso","POB1":6579},"arcs":[[4408,-4386,4409,4410,-4116,4411,-4114,-4260,-4112,4412,4413]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Putla Villa de Guerrero","POB1":31897},"arcs":[[[4414,4415]],[[4416,4417,4418,4419,4420,4421,4422,-4167,-1797,-4077,4423,4424]]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Quioquitani","POB1":505},"arcs":[[4425,4426,4427,4428,4429,4430]]},{"type":"Polygon","properties":{"NOM_MUN":"Reforma de Pineda","POB1":2671},"arcs":[[4431,4432,4433]]},{"type":"Polygon","properties":{"NOM_MUN":"La Reforma","POB1":3331},"arcs":[[4434,4435,4436,4437,4438,4439]]},{"type":"Polygon","properties":{"NOM_MUN":"Reyes Etla","POB1":3568},"arcs":[[4440,-4154,-4348,4441,-4237]]},{"type":"Polygon","properties":{"NOM_MUN":"Rojas de Cuauhtémoc","POB1":1092},"arcs":[[4442,4443,4444,4445,4446,4447]]},{"type":"Polygon","properties":{"NOM_MUN":"Salina Cruz","POB1":82371},"arcs":[[4448,4449,4450,4451]]},{"type":"Polygon","properties":{"NOM_MUN":"San Agustín Amatengo","POB1":1312},"arcs":[[-4123,4452,-4061]]},{"type":"Polygon","properties":{"NOM_MUN":"San Agustín Atenango","POB1":1914},"arcs":[[4453,-4366,4454,4455]]},{"type":"Polygon","properties":{"NOM_MUN":"San Agustín Chayuco","POB1":3952},"arcs":[[4456,4457,4458,4459,4460,4461]]},{"type":"Polygon","properties":{"NOM_MUN":"San Agustín de las Juntas","POB1":8089},"arcs":[[-4446,4462,4463,4464,4465,4466,4467,4468]]},{"type":"Polygon","properties":{"NOM_MUN":"San Agustín Etla","POB1":3893},"arcs":[[4469,4470,4471,4472,4473]]},{"type":"Polygon","properties":{"NOM_MUN":"San Agustín Loxicha","POB1":22565},"arcs":[[4474,-4041,4475,4476,4477,4478,4479,4480]]},{"type":"Polygon","properties":{"NOM_MUN":"San Agustín Tlacotepec","POB1":874},"arcs":[[4481,4482,4483,-4262]]},{"type":"Polygon","properties":{"NOM_MUN":"San Agustín Yatareni","POB1":4075},"arcs":[[4484,4485,4486,4487,-4373,4488]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Cabecera Nueva","POB1":2851},"arcs":[[4489,4490,-4415,4491,-4440,4492,-4422]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Dinicuiti","POB1":2152},"arcs":[[4493,4494,4495,4496,4497,4498]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Huaxpaltepec","POB1":5867},"arcs":[[-4402,4499,4500,4501,4502]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Huayápam","POB1":4879},"arcs":[[4503,4504,4505,-4489,-4381]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Ixtlahuaca","POB1":1439},"arcs":[[4506,4507,4508,4509,4510]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Lagunas","POB1":505},"arcs":[[4511,4512,4513,4514,4515]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Nuxiño","POB1":1898},"arcs":[[4516,4517,4518,4519,4520]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Paxtlán","POB1":3990},"arcs":[[-4324,4521,4522,4523,4524,4525]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Sinaxtla","POB1":772},"arcs":[[4526,4527,4528,-4001,4529]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Solaga","POB1":1740},"arcs":[[4530,4531,4532,4533,4534,4535,4536,4537]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Teotilálpam","POB1":4427},"arcs":[[4538,4539,4540,4541,4542,4543,4544]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Tepetlapa","POB1":475},"arcs":[[4545,4546,4547]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Yaá","POB1":497},"arcs":[[4548,4549,4550,-4533,4551]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Zabache","POB1":726},"arcs":[[4552,-4055]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Zautla","POB1":4405},"arcs":[[-4442,-4350,4553,4554,4555,4556,4557,4558,-4238]]},{"type":"Polygon","properties":{"NOM_MUN":"San Antonino Castillo Velasco","POB1":5651},"arcs":[[4559,4560,4561,-4396]]},{"type":"Polygon","properties":{"NOM_MUN":"San Antonino el Alto","POB1":2508},"arcs":[[4562,4563,4564,4565,4566,4567,4568,4569]]},{"type":"Polygon","properties":{"NOM_MUN":"San Antonino Monte Verde","POB1":6650},"arcs":[[4570,4571,4572,4573,4574]]},{"type":"Polygon","properties":{"NOM_MUN":"San Antonio Acutla","POB1":297},"arcs":[[4575,4576,4577,4578]]},{"type":"Polygon","properties":{"NOM_MUN":"San Antonio de la Cal","POB1":21456},"arcs":[[4579,4580,4581,-4447,-4469,4582,-4375,4583,4584]]},{"type":"Polygon","properties":{"NOM_MUN":"San Antonio Huitepec","POB1":4289},"arcs":[[4585,-4568,4586,4587,4588,4589,4590,4591]]},{"type":"Polygon","properties":{"NOM_MUN":"San Antonio Nanahuatípam","POB1":1233},"arcs":[[4592,4593,4594,4595]]},{"type":"Polygon","properties":{"NOM_MUN":"San Antonio Sinicahua","POB1":1603},"arcs":[[-4263,-4484,4596,4597,4598,4599]]},{"type":"Polygon","properties":{"NOM_MUN":"San Antonio Tepetlapa","POB1":4394},"arcs":[[4600,4601,4602,4603,4604]]},{"type":"Polygon","properties":{"NOM_MUN":"San Baltazar Chichicápam","POB1":2439},"arcs":[[4605,4606,4607,-4272,4608,4609]]},{"type":"Polygon","properties":{"NOM_MUN":"San Baltazar Loxicha","POB1":2832},"arcs":[[4610,4611,4612,4613,4614]]},{"type":"Polygon","properties":{"NOM_MUN":"San Baltazar Yatzachi el Bajo","POB1":677},"arcs":[[4615,-4535,4616,-4172,4617,4618]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"San Bartolo Coyotepec","POB1":8684},"arcs":[[[4619,4620,-4045,4621]],[[4622,4623,4624,-4465,4625]]]},{"type":"Polygon","properties":{"NOM_MUN":"San Bartolomé Ayautla","POB1":4052},"arcs":[[4626,4627,-4110,4628,4629]]},{"type":"Polygon","properties":{"NOM_MUN":"San Bartolomé Loxicha","POB1":2422},"arcs":[[-4478,4630,4631,-4611,4632]]},{"type":"Polygon","properties":{"NOM_MUN":"San Bartolomé Quialana","POB1":2470},"arcs":[[4633,4634,-4270,4635]]},{"type":"Polygon","properties":{"NOM_MUN":"San Bartolomé Yucuañe","POB1":399},"arcs":[[4636,4637,4638,-4482,-4261,4639]]},{"type":"Polygon","properties":{"NOM_MUN":"San Bartolomé Zoogocho","POB1":368},"arcs":[[-4616,4640,4641,-4536]]},{"type":"Polygon","properties":{"NOM_MUN":"San Bartolo Soyaltepec","POB1":655},"arcs":[[4642,4643,4644,4645,4646,4647,4648,4649]]},{"type":"Polygon","properties":{"NOM_MUN":"San Bartolo Yautepec","POB1":677},"arcs":[[4650,4651]]},{"type":"Polygon","properties":{"NOM_MUN":"San Bernardo Mixtepec","POB1":2705},"arcs":[[4652,-4257,4653,4654,4655,-4563]]},{"type":"Polygon","properties":{"NOM_MUN":"San Blas Atempa","POB1":17094},"arcs":[[-3993,-4139,-4223,4656,-4221,4657,4658,4659]]},{"type":"Polygon","properties":{"NOM_MUN":"San Carlos Yautepec","POB1":11813},"arcs":[[-4354,-4279,4660,-4652,4661,4662,4663,4664,4665,4666,4667,-4426,4668,4669,4670,4671,4672,-4358,4673,4674,4675,4676,4677,4678,4679]]},{"type":"Polygon","properties":{"NOM_MUN":"San Cristóbal Amatlán","POB1":5024},"arcs":[[4680,4681,-4429,4682,4683,4684,4685,-4321,4686]]},{"type":"Polygon","properties":{"NOM_MUN":"San Cristóbal Amoltepec","POB1":1283},"arcs":[[-4265,4687,4688]]},{"type":"Polygon","properties":{"NOM_MUN":"San Cristóbal Lachirioag","POB1":1230},"arcs":[[4689,4690,4691]]},{"type":"Polygon","properties":{"NOM_MUN":"San Cristóbal Suchixtlahuaca","POB1":334},"arcs":[[4692,4693,4694,4695]]},{"type":"Polygon","properties":{"NOM_MUN":"San Dionisio del Mar","POB1":5098},"arcs":[[4696,-4217,-4369,4697,4698]]},{"type":"Polygon","properties":{"NOM_MUN":"San Dionisio Ocotepec","POB1":10500},"arcs":[[4699,4700,4701,4702,4703]]},{"type":"Polygon","properties":{"NOM_MUN":"San Dionisio Ocotlán","POB1":1245},"arcs":[[4704,4705,-4388]]},{"type":"Polygon","properties":{"NOM_MUN":"San Esteban Atatlahuca","POB1":3974},"arcs":[[4706,4707,4708,4709,4710,4711]]},{"type":"Polygon","properties":{"NOM_MUN":"San Felipe Jalapa de Díaz","POB1":26838},"arcs":[[4712,4713,-4544,4714,-4627,4715,4716]]},{"type":"Polygon","properties":{"NOM_MUN":"San Felipe Tejalápam","POB1":7187},"arcs":[[4717,-4509,4718,4719,4720,4721,-4555,4722]]},{"type":"Polygon","properties":{"NOM_MUN":"San Felipe Usila","POB1":11575},"arcs":[[4723,4724,4725,4726,4727,-4539,4728]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Cahuacuá","POB1":3427},"arcs":[[4729,4730,4731,4732,4733,4734,4735]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Cajonos","POB1":460},"arcs":[[4736,4737,-4618,-4171,4738,4739,4740,4741]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Chapulapa","POB1":2136},"arcs":[[-4542,4742,-4071,4743,4744,-4107,4745]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Chindúa","POB1":827},"arcs":[[4746,4747,4748,4749,4750,4751,4752]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco del Mar","POB1":7232},"arcs":[[-4433,4753,4754,-487,-800,4755,-4699,4756]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Huehuetlán","POB1":1160},"arcs":[[4757,4758,4759,4760,4761]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Ixhuatán","POB1":8959},"arcs":[[4762,-4434,-4757,-4698,-4368]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Jaltepetongo","POB1":1110},"arcs":[[-4287,-4246,4763,4764]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Lachigoló","POB1":3474},"arcs":[[4765,4766,4767,-4443,4768,4769,4770]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Logueche","POB1":2666},"arcs":[[-4681,4771,4772]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Nuxaño","POB1":378},"arcs":[[4773,4774,4775,4776,4777,-4749]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Ozolotepec","POB1":1945},"arcs":[[4778]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Sola","POB1":1509},"arcs":[[-4062,-4453,-4122,4779,4780]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Telixtlahuaca","POB1":11893},"arcs":[[4781,4782,4783,4784,4785]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Teopan","POB1":394},"arcs":[[-3984,4786,4787,-4067,4788,4789,-4253,4790,4791]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Tlapancingo","POB1":2152},"arcs":[[4792,4793,-1525,-1785,4794,-4034]]},{"type":"Polygon","properties":{"NOM_MUN":"San Gabriel Mixtepec","POB1":4733},"arcs":[[4795,4796,4797,4798,4799]]},{"type":"Polygon","properties":{"NOM_MUN":"San Ildefonso Amatlán","POB1":2393},"arcs":[[-4686,4800,4801,-4322]]},{"type":"Polygon","properties":{"NOM_MUN":"San Ildefonso Sola","POB1":940},"arcs":[[-4063,-4781,4802]]},{"type":"Polygon","properties":{"NOM_MUN":"San Ildefonso Villa Alta","POB1":3478},"arcs":[[4803,4804,4805,4806,4807,4808,-4552,-4532,4809,4810,-4692]]},{"type":"Polygon","properties":{"NOM_MUN":"San Jacinto Amilpas","POB1":13860},"arcs":[[4811,-4378]]},{"type":"Polygon","properties":{"NOM_MUN":"San Jacinto Tlacotepec","POB1":2231},"arcs":[[4812,4813,4814]]},{"type":"Polygon","properties":{"NOM_MUN":"San Jerónimo Coatlán","POB1":5449},"arcs":[[-4329,4815,4816,-4800,4817,4818,4819]]},{"type":"Polygon","properties":{"NOM_MUN":"San Jerónimo Silacayoapilla","POB1":1449},"arcs":[[4820,4821,-4179]]},{"type":"Polygon","properties":{"NOM_MUN":"San Jerónimo Sosola","POB1":2559},"arcs":[[-4786,4822,-4518,4823,-4009,4824,4825]]},{"type":"Polygon","properties":{"NOM_MUN":"San Jerónimo Taviche","POB1":1848},"arcs":[[4826,-4607,4827,-4410,-4385,4828]]},{"type":"Polygon","properties":{"NOM_MUN":"San Jerónimo Tecóatl","POB1":1606},"arcs":[[4829,4830,4831,4832,-4759,4833]]},{"type":"Polygon","properties":{"NOM_MUN":"San Jorge Nuchita","POB1":3215},"arcs":[[4834,4835,4836,4837,4838,-4294]]},{"type":"Polygon","properties":{"NOM_MUN":"San José Ayuquila","POB1":1511},"arcs":[[4839,4840,4841,4842]]},{"type":"Polygon","properties":{"NOM_MUN":"San José Chiltepec","POB1":11019},"arcs":[[4843,4844]]},{"type":"Polygon","properties":{"NOM_MUN":"San José del Peñasco","POB1":2094},"arcs":[[-4802,4845,-4522,-4323]]},{"type":"Polygon","properties":{"NOM_MUN":"San José Estancia Grande","POB1":977},"arcs":[[4846,4847,4848,4849]]},{"type":"Polygon","properties":{"NOM_MUN":"San José Independencia","POB1":3684},"arcs":[[4850,4851,4852]]},{"type":"Polygon","properties":{"NOM_MUN":"San José Lachiguiri","POB1":3849},"arcs":[[4853,-4430,-4682,-4773,4854,4855,4856]]},{"type":"Polygon","properties":{"NOM_MUN":"San José Tenango","POB1":18478},"arcs":[[-4852,4857,4858,-4716,-4630,4859,-4196,4860]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Achiutla","POB1":430},"arcs":[[4861,4862,4863]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Atepec","POB1":1517},"arcs":[[4864,4865,4866,-3970,4867,-4211]]},{"type":"Polygon","properties":{"NOM_MUN":"Ánimas Trujano","POB1":3759},"arcs":[[4868,4869,-4467]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Bautista Atatlahuca","POB1":1724},"arcs":[[4870,-3973,4871,4872,4873,4874,4875]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Bautista Coixtlahuaca","POB1":2808},"arcs":[[4876,-4650,4877,4878,4879,-4693,4880,4881,4882,4883]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Bautista Cuicatlán","POB1":9441},"arcs":[[-4093,-4075,4884,4885,-4875,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,-4314]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Bautista Guelache","POB1":6287},"arcs":[[4896,-4235,4897,4898,-4472]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Bautista Jayacatlán","POB1":1462},"arcs":[[-4873,4899,4900,-4783,4901]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Bautista Lo de Soto","POB1":2325},"arcs":[[4902,-1626,-1723,4903]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Bautista Suchitepec","POB1":417},"arcs":[[4904,-4787,-3988,4905,4906]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Bautista Tlacoatzintepec","POB1":2292},"arcs":[[-4728,4907,-4540]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Bautista Tlachichilco","POB1":1447},"arcs":[[4908,4909,-4035,-4795,-1784,4910,-4546,4911],[4912]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Bautista Tuxtepec","POB1":155766},"arcs":[[4913,4914,4915,4916,-4233,4917,-4227,4918,4919,-4845,4920,4921,4922,4923]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Cacahuatepec","POB1":8680},"arcs":[[4924,4925,4926,-4604,4927,-4299,-1720,-1800]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Cieneguilla","POB1":605},"arcs":[[4928,-4297,4929,4930,4931,4932,4933,4934]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Coatzóspam","POB1":2535},"arcs":[[-4629,-4109,4935,-4190,-4197,-4860]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Colorado","POB1":9494},"arcs":[[4936,-4400,4937,4938,4939,-4437,4940,-4461]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Comaltepec","POB1":2517},"arcs":[[4941,4942,4943]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Cotzocón","POB1":22356},"arcs":[[4944,4945,-4311,4946,4947,4948,4949,4950]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Chicomezúchil","POB1":320},"arcs":[[-4209,-4160,-4208,4951,4952,4953]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Chilateca","POB1":1442},"arcs":[[-4382,4954]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan del Estado","POB1":2546},"arcs":[[4955,4956,-4898,-4240,4957,-4901]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan del Río","POB1":1231},"arcs":[[4958,4959,4960,4961]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Diuxi","POB1":1256},"arcs":[[4962,4963,4964]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Evangelista Analco","POB1":404},"arcs":[[4965,4966,-4866]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Guelavía","POB1":3047},"arcs":[[4967,-4268,4968,4969,4970]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"San Juan Guichicovi","POB1":28142},"arcs":[[[4971,4972,4973,-4302,4974,-4309]],[[-4312]]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Ihualtepec","POB1":713},"arcs":[[4975,4976,4977,-4932]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Juquila Mixes","POB1":3924},"arcs":[[4978,4979,4980,-4677,4981,4982,-3982]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Juquila Vijanos","POB1":1832},"arcs":[[4983,4984,4985,-4538,4986,4987,4988]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Lachao","POB1":4531},"arcs":[[-4818,-4799,4989,4990,4991,4992,4993]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Lachigalla","POB1":3285},"arcs":[[4994,-4049,-4118,4995]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Lajarcia","POB1":715},"arcs":[[-4674,-4357,4996]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Lalana","POB1":17398},"arcs":[[4997,4998,4999,5000,5001,5002],[5003]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan de los Cués","POB1":2357},"arcs":[[5004,5005,5006,5007,-4316]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Mazatlán","POB1":17100},"arcs":[[-4310,-4975,-4303,-4974,5008,5009,-4164,5010,5011,5012,5013,-4947]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Mixtepec -Dto. 08 -","POB1":7611},"arcs":[[5014,5015,5016,5017,5018,5019,5020]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Mixtepec -Dto. 26 -","POB1":711},"arcs":[[5021,5022,-4683,-4428]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Ñumí","POB1":6666},"arcs":[[-4574,5023,5024,5025,-5021,5026]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Ozolotepec","POB1":3168},"arcs":[[-4667,5027,5028,5029,5030,5031],[-4779]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Petlapa","POB1":2807},"arcs":[[-5002,5032,-4807,5033,5034]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Quiahije","POB1":3628},"arcs":[[5035,5036,5037,5038,5039]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Quiotepec","POB1":2313},"arcs":[[-4726,5040,5041,5042,-3974,-4871,5043,5044]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Sayultepec","POB1":764},"arcs":[[-4530,-4000,5045,-4753,5046,5047]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Tabaá","POB1":1331},"arcs":[[-4810,-4531,-4986,5048]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Tamazola","POB1":3446},"arcs":[[5049,5050,-4591,5051,5052,5053,-4243,-4014,-4242,5054]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Teita","POB1":607},"arcs":[[5055,5056,5057,5058,5059]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Teitipac","POB1":2565},"arcs":[[5060,5061,5062,5063,-4273]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Tepeuxila","POB1":2773},"arcs":[[-5044,-4876,-4886,5064,5065,5066]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Teposcolula","POB1":1340},"arcs":[[-4647,5067,5068,5069,-4879,5070,5071]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Yaeé","POB1":1530},"arcs":[[5072,-4203,5073,5074]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Yatzona","POB1":452},"arcs":[[5075,-4805,5076,5077]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Yucuita","POB1":684},"arcs":[[-4002,-4529,5078,5079]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lorenzo","POB1":5955},"arcs":[[5080,-4500,-4401,-4937,-4460]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lorenzo Albarradas","POB1":2708},"arcs":[[-4959,5081,5082,-4704,5083]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lorenzo Cacaotepec","POB1":13704},"arcs":[[5084,-4510,-4718,5085,-4151,5086]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lorenzo Cuaunecuiltitla","POB1":771},"arcs":[[5087,5088,5089,-4762,5090]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lorenzo Texmelúcan","POB1":7048},"arcs":[[5091,5092,5093]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lorenzo Victoria","POB1":1007},"arcs":[[5094,-4838]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lucas Camotlán","POB1":3026},"arcs":[[5095,-4679,5096,-5013]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lucas Ojitlán","POB1":21514},"arcs":[[-4922,5097,5098,-4729,-4545,-4714,5099]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lucas Quiaviní","POB1":1745},"arcs":[[5100,5101,-4634,5102]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lucas Zoquiápam","POB1":7554},"arcs":[[5103,5104,-4200,-4317,-5008,5105,-4831]]},{"type":"Polygon","properties":{"NOM_MUN":"San Luis Amatlán","POB1":3624},"arcs":[[-4855,-4772,-4687,-4320,5106,-4318,-4050,-4995,5107]]},{"type":"Polygon","properties":{"NOM_MUN":"San Marcial Ozolotepec","POB1":1525},"arcs":[[5108,-4405,5109,5110,5111]]},{"type":"Polygon","properties":{"NOM_MUN":"San Marcos Arteaga","POB1":1557},"arcs":[[-4178,5112,5113,5114,-4835,-4293,5115,5116,-4821]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín de los Cansecos","POB1":816},"arcs":[[-4115,-4412]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín Huamelúlpam","POB1":1077},"arcs":[[5117,5118,5119,5120,-5025,5121]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín Itunyoso","POB1":2460},"arcs":[[5122,-4425,5123,-5017]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín Lachilá","POB1":1084},"arcs":[[-4056,-4553,5124,-4128]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín Peras","POB1":11361},"arcs":[[5125,5126,5127,-4054,-1526,-4794]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín Tilcajete","POB1":1742},"arcs":[[-4397,-4562,5128,5129,-4620,5130,5131]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín Toxpalan","POB1":3669},"arcs":[[5132,5133,-4832,-5106,-5007]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín Zacatepec","POB1":1277},"arcs":[[5134,5135,-4291,5136]]},{"type":"Polygon","properties":{"NOM_MUN":"San Mateo Cajonos","POB1":620},"arcs":[[-4170,5137,-4739]]},{"type":"Polygon","properties":{"NOM_MUN":"Capulálpam de Méndez","POB1":1467},"arcs":[[5138,5139,-4347,5140,5141,-4206]]},{"type":"Polygon","properties":{"NOM_MUN":"San Mateo del Mar","POB1":14252},"arcs":[[5142,-4450,5143,-4219]]},{"type":"Polygon","properties":{"NOM_MUN":"San Mateo Yoloxochitlán","POB1":3475},"arcs":[[-4134,-4201,-5105,5144]]},{"type":"Polygon","properties":{"NOM_MUN":"San Mateo Etlatongo","POB1":1181},"arcs":[[-4289,5145,-4747,-5046,-4013]]},{"type":"Polygon","properties":{"NOM_MUN":"San Mateo Nejápam","POB1":1180},"arcs":[[-4547,-4911,-1787,-1533,5146]]},{"type":"Polygon","properties":{"NOM_MUN":"San Mateo Peñasco","POB1":2116},"arcs":[[5147,-5059,5148,5149,-4597,-4483,-4639]]},{"type":"Polygon","properties":{"NOM_MUN":"San Mateo Piñas","POB1":2226},"arcs":[[5150,5151,5152,-4406,-5109,5153]]},{"type":"Polygon","properties":{"NOM_MUN":"San Mateo Río Hondo","POB1":3308},"arcs":[[5154,5155,5156,5157,-4481,5158,5159,-4524]]},{"type":"Polygon","properties":{"NOM_MUN":"San Mateo Sindihui","POB1":2086},"arcs":[[5160,5161,-4735,5162,-5056,5163,5164]]},{"type":"Polygon","properties":{"NOM_MUN":"San Mateo Tlapiltepec","POB1":234},"arcs":[[5165,5166,-4249,5167,5168]]},{"type":"Polygon","properties":{"NOM_MUN":"San Melchor Betaza","POB1":1091},"arcs":[[-4551,5169,-4340,-4173,-4617,-4534]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Achiutla","POB1":744},"arcs":[[-4963,-4640,-4267,5170,-4864,5171,5172]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Ahuehuetitlán","POB1":2465},"arcs":[[5173,-4912,-4548,5174,-4977]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Aloápam","POB1":2488},"arcs":[[5175,5176,-4956,-4900,-4872,-3972]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Amatitlán","POB1":7244},"arcs":[[5177,5178,-4180,-4822,-5117,5179,5180,-5137,-4290,-4149,5181]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Amatlán","POB1":1043},"arcs":[[-4207,-5142,5182,5183,5184,5185,-4952]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Coatlán","POB1":3483},"arcs":[[5186,5187,-4327,5188,-5159,-4480]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Chicahua","POB1":2274},"arcs":[[5189,-4643,-4877,5190,-4004]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Chimalapa","POB1":6608},"arcs":[[-526,5191,-4372,5192,-4224,-3990,5193]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel del Puerto","POB1":8481},"arcs":[[-4666,5194,5195,5196,5197,-5028]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel del Río","POB1":294},"arcs":[[5198,5199,5200]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Ejutla","POB1":916},"arcs":[[5201,-4125]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel el Grande","POB1":4127},"arcs":[[-4599,5202,5203,-4102,5204,-4707,5205]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Huautla","POB1":1399},"arcs":[[-4894,5206,5207,-4883,5208]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Mixtepec","POB1":3245},"arcs":[[5209,5210,5211,5212,-4565,5213]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Panixtlahuaca","POB1":6161},"arcs":[[5214,5215,5216,-5037]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Peras","POB1":3497},"arcs":[[5217,5218,5219,-4569,-4586,5220,5221]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Piedras","POB1":1296},"arcs":[[-5052,-4590,-4730,5222]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Quetzaltepec","POB1":7293},"arcs":[[-5097,-4678,-4981,5223,5224,-4948,-5014]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Santa Flor","POB1":801},"arcs":[[-4744,-4070,-4092,5225]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Sola de Vega","POB1":12525},"arcs":[[5226,5227,5228,5229,-5212,5230,-4803,-4780,-4121,5231,5232,-4330,-4820,5233,5234,5235,-5093,5236,5237,5238,-4588]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Soyaltepec","POB1":36564},"arcs":[[5239,-4923,-5100,-4713,5240,-4858,-4851,5241,-3975]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Suchixtepec","POB1":2911},"arcs":[[5242,-5111,5243,-5157]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Talea de Castro","POB1":2394},"arcs":[[5244,-4690,-4811,-5049,-4985,5245,5246,-5078]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Tecomatlán","POB1":308},"arcs":[[-4288,-4765,5247,-4774,-4748,-5146]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Tenango","POB1":794},"arcs":[[-4275,5248]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Tequixtepec","POB1":1042},"arcs":[[5249,5250,5251,-4881,-4696,5252,5253]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Tilquiápam","POB1":3160},"arcs":[[-4827,5254,-5061,-4608]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Tlacamama","POB1":3386},"arcs":[[5255,5256,5257]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Tlacotepec","POB1":3220},"arcs":[[5258,5259,5260,-4362]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Tulancingo","POB1":346},"arcs":[[5261,-4250,-5167,5262,-5253,-4695,5263,-4578]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Yotao","POB1":611},"arcs":[[5264,-4989,-5139,-4205]]},{"type":"Polygon","properties":{"NOM_MUN":"San Nicolás","POB1":1143},"arcs":[[5265,5266,-4338]]},{"type":"Polygon","properties":{"NOM_MUN":"San Nicolás Hidalgo","POB1":1012},"arcs":[[-4295,-4156,5267,5268]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pablo Coatlán","POB1":4167},"arcs":[[-5188,5269,-4614,5270,-4816,-4328]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"San Pablo Cuatro Venados","POB1":1388},"arcs":[[[5271,-4090,5272,5273,-4254,5274,-5218,5275,-4719,-4508]],[[5276,-4258,-4653,-4570,-5220]]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pablo Etla","POB1":15535},"arcs":[[-4504,-4380,5277,-5087,-4150,5278,-4470,5279]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pablo Huitzo","POB1":6307},"arcs":[[5280,5281,-4784,-4958]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pablo Huixtepec","POB1":9025},"arcs":[[5282,5283,5284,5285,5286,5287,-4655,5288]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pablo Macuiltianguis","POB1":929},"arcs":[[-4868,-3969,-5043,5289,-4212]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pablo Tijaltepec","POB1":2150},"arcs":[[-5163,5290,-4104,5291,5292,-5057]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pablo Villa de Mitla","POB1":11825},"arcs":[[5293,5294,5295,-4960,-5084,-4703,5296,-5101,5297,5298]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pablo Yaganiza","POB1":1108},"arcs":[[-4740,-5138,-4169,-4344,5299,5300,5301]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Amuzgos","POB1":6468},"arcs":[[5302,5303,-4926]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Apóstol","POB1":1544},"arcs":[[5304,-4413,-4111,-4391]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Atoyac","POB1":4136},"arcs":[[-4939,5305,-4601,5306]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Cajonos","POB1":1172},"arcs":[[5307,-4742,5308]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Coxcaltepec Cántaros","POB1":851},"arcs":[[5309,-4889,5310,-4007]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Comitancillo","POB1":3944},"arcs":[[-4660,5311,5312,-4283,-3994]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro el Alto","POB1":3903},"arcs":[[-5110,-4408,-4042,-4475,-5158,-5244]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Huamelula","POB1":9594},"arcs":[[5313,5314,-5195,-4665,5315,-4019,-4277,5316]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Huilotepec","POB1":2839},"arcs":[[-4220,-5144,-4449,5317,-4658]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Ixcatlán","POB1":10371},"arcs":[[-4717,-4859,-5241]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Ixtlahuaca","POB1":6822},"arcs":[[5318,-4091,-5272,-4507,5319]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Jaltepetongo","POB1":458},"arcs":[[5320,5321,-4891,5322]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Jicayán","POB1":11555},"arcs":[[-5306,-4938,-4404,5323,-5257,-4602]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Jocotipac","POB1":834},"arcs":[[5324,5325,5326,-5207,-4893]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Juchatengo","POB1":1693},"arcs":[[-4994,5327,-5234,-4819]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Mártir","POB1":1711},"arcs":[[-4706,5328,-4414,-5305,-4390,-4016,-4389]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Mártir Quiechapa","POB1":753},"arcs":[[-4857,5329,-4670]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Mártir Yucuxaco","POB1":1405},"arcs":[[5330,-5122,-5024,-4573,5331,5332]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Mixtepec -Dto. 22 -","POB1":42860},"arcs":[[5333,5334,5335,5336,5337,-4797]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Mixtepec -Dto. 26 -","POB1":1099},"arcs":[[-4668,-5032,5338,-5022,-4427]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Molinos","POB1":723},"arcs":[[5339,-5203,-4598,-5150,5340]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Nopala","POB1":840},"arcs":[[-4252,5341,5342,5343,5344,5345,-4791]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Ocopetatillo","POB1":884},"arcs":[[-4136,-4834,-4758,-5090,5346]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Ocotepec","POB1":2135},"arcs":[[-4980,5347,-5224]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Pochutla","POB1":43860},"arcs":[[5348,5349,5350,-4038,-4407,-5153]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Quiatoni","POB1":10491},"arcs":[[5351,-4982,-4676,5352,-4359,-4673,5353,5354,-5082,-4962,5355]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Sochiápam","POB1":4957},"arcs":[[-4727,-5045,-5067,5356,-4072,-4743,-4541,-4908]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Tapanatepec","POB1":13992},"arcs":[[-524,-488,-4755,5357],[-4096]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Taviche","POB1":1173},"arcs":[[5358,-4996,-4117,-4411,-4828,-4606,5359]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Teozacoalco","POB1":1320},"arcs":[[-5162,5360,-5053,-5223,-4736]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Teutila","POB1":4277},"arcs":[[-4543,5361,-4105,-4628,-4715]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Tidaá","POB1":894},"arcs":[[5362,-4776,5363,-4964,-5173]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Topiltepec","POB1":406},"arcs":[[5364,5365,5366,5367,-5047,-4752]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Totolápam","POB1":2603},"arcs":[[5368,-5354,-4672,5369,5370,5371,-4701]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Villa de Tututepec de Melchor Ocampo","POB1":43913},"arcs":[[[-5216,5372,5373,-5337,5374,5375,5376]],[[5377]]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Yaneri","POB1":1002},"arcs":[[-4215]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Yólox","POB1":2267},"arcs":[[5378,-5041,-4725,5379]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro y San Pablo Ayutla","POB1":5602},"arcs":[[5380,-5295,5381,-5300,-4343,5382,-4145]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Etla","POB1":9280},"arcs":[[-4471,-5279,-4155,-4441,-4236,-4897]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro y San Pablo Teposcolula","POB1":3989},"arcs":[[-5068,-4646,5383,-5366,5384,5385,5386,5387,-5333,5388,5389,-4516,5390]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro y San Pablo Tequixtepec","POB1":1878},"arcs":[[5391,5392,5393,5394,-4907,5395,5396,-4189,5397,-4083,5398]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Yucunama","POB1":232},"arcs":[[-5069,-5391,-4515,5399]]},{"type":"Polygon","properties":{"NOM_MUN":"San Raymundo Jalpan","POB1":2079},"arcs":[[5400,-4088,5401]]},{"type":"Polygon","properties":{"NOM_MUN":"San Sebastián Abasolo","POB1":1849},"arcs":[[5402,-4970,5403,5404,-4463,-4445,5405,-4767]]},{"type":"Polygon","properties":{"NOM_MUN":"San Sebastián Coatlán","POB1":2613},"arcs":[[-4613,5406,-5334,-4796,-4817,-5271]]},{"type":"Polygon","properties":{"NOM_MUN":"San Sebastián Ixcapa","POB1":3968},"arcs":[[-4603,-5256,5407,5408,-4300,-4928]]},{"type":"Polygon","properties":{"NOM_MUN":"San Sebastián Nicananduta","POB1":1449},"arcs":[[-5389,-5332,-4572,5409]]},{"type":"Polygon","properties":{"NOM_MUN":"San Sebastián Río Hondo","POB1":3664},"arcs":[[-4846,-4801,-4685,5410,5411,-5155,-4523]]},{"type":"Polygon","properties":{"NOM_MUN":"San Sebastián Tecomaxtlahuaca","POB1":8246},"arcs":[[-5127,5412,5413,-4363,-5261,5414]]},{"type":"Polygon","properties":{"NOM_MUN":"San Sebastián Teitipac","POB1":1976},"arcs":[[5415,-5063,5416,-4626,-4464,-5405]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"San Sebastián Tutla","POB1":16241},"arcs":[[[5417,-4585,5418]],[[5419,-4581,5420,5421,-4487,5422]]]},{"type":"Polygon","properties":{"NOM_MUN":"San Simón Almolongas","POB1":2623},"arcs":[[5423,5424,5425,5426,-5266,-4337]]},{"type":"Polygon","properties":{"NOM_MUN":"San Simón Zahuatlán","POB1":3833},"arcs":[[5427,-5135,-5181]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Ana","POB1":1978},"arcs":[[-4332,5428,-5425,5429]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Ana Ateixtlahuaca","POB1":510},"arcs":[[-4137,-5347,-5089,5430]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Ana Cuauhtémoc","POB1":738},"arcs":[[-4936,-4108,-4745,-5226,-4095,-4313,-4191]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Ana del Valle","POB1":1993},"arcs":[[5431,5432,5433]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Ana Tavela","POB1":908},"arcs":[[-4997,-4356,-5353,-4675]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Ana Tlapacoyan","POB1":1854},"arcs":[[5434,-4392,-4130,5435,-5210,5436]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Ana Yareni","POB1":809},"arcs":[[5437,5438,-5176,-3971,-4867,-4967]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Ana Zegache","POB1":3592},"arcs":[[-4561,5439,-5283,5440,5441,-5129]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catalina Quierí","POB1":922},"arcs":[[-4854,-4669,-4431]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Cuixtla","POB1":1496},"arcs":[[5442,-4334]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Ixtepeji","POB1":2633},"arcs":[[5443,-4505,5444,-5201,5445,-4954,5446]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Juquila","POB1":14710},"arcs":[[-5235,-5328,-4993,5447,5448,-5373,-5215,-5036,5449]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Lachatao","POB1":1307},"arcs":[[5450,5451,-5447,-4953,-5186]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Loxicha","POB1":3986},"arcs":[[-4479,-4633,-4615,-5270,-5187]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Mechoacán","POB1":4543},"arcs":[[5452,-4501,-5081,-4459]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Minas","POB1":1816},"arcs":[[-4829,-4384,5453,-5255]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Quiané","POB1":1847},"arcs":[[-4621,-5130,-5442,5454,-4046]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Tayata","POB1":679},"arcs":[[5455,-4862,-5171,-4266,-4689,5456,5457,5458]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Ticuá","POB1":954},"arcs":[[-5292,-4103,-5204,-5340,5459]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Yosonotú","POB1":1886},"arcs":[[-4101,5460,5461,-4708,-5205]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Zapoquila","POB1":448},"arcs":[[-4068,-4788,-4905,-5395,5462]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Acatepec","POB1":1470},"arcs":[[-4135,-5145,-5104,-4830]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Amilpas","POB1":10120},"arcs":[[-4580,-5418,5463,-5421]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz de Bravo","POB1":364},"arcs":[[5464,-4032,5465]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Itundujia","POB1":10975},"arcs":[[5466,5467,5468,5469,-4435,-4492,-4416,-4491,5470]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Mixtepec","POB1":3615},"arcs":[[-5288,5471,-5437,-5214,-4564,-4656]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Nundaco","POB1":2958},"arcs":[[5472,-4711,5473]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Papalutla","POB1":1972},"arcs":[[-4274,-5064,-5416,-5404,-4969]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Tacache de Mina","POB1":2606},"arcs":[[-5269,5474,-4930,-4296]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Tacahua","POB1":1170},"arcs":[[-5291,-4734,5475,5476,5477,-4097]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Tayata","POB1":608},"arcs":[[-5459,5478,-5119,5479,5480]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Xitla","POB1":4514},"arcs":[[-4345,-5443,-4333,-5430,-5424,-4336]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Xoxocotlán","POB1":77833},"arcs":[[-4583,-4468,-4870,5481,5482,-5402,-4087,-5319,5483,-4376]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Zenzontepec","POB1":17897},"arcs":[[5484,5485,-4814,5486,-5039,5487,5488,5489,5490]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Gertrudis","POB1":2858},"arcs":[[5491,5492,-4394,5493,-5286]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Inés del Monte","POB1":2535},"arcs":[[5494,5495,5496,-4255,-5274]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Inés Yatzeche","POB1":921},"arcs":[[5497,-5492,-5285]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Santa Lucía del Camino","POB1":47356},"arcs":[[[5498,-5423,-4486]],[[-4488,-5422,-5464,-5419,-4584,-4374]]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Lucía Miahuatlán","POB1":3356},"arcs":[[-4525,-5160,-5189,-4326,5499]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Lucía Monteverde","POB1":6678},"arcs":[[-4100,5500,-5471,-4490,-4421,5501,-5461]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Lucía Ocotlán","POB1":3604},"arcs":[[-4387,-4409,-5329,-4705]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Alotepec","POB1":2778},"arcs":[[-5225,-5348,-4979,-3981,5502,5503,-4949]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Apazco","POB1":1898},"arcs":[[-4006,5504,5505,-5323,-4890,-5310]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María la Asunción","POB1":3252},"arcs":[[-4194,-4198]]},{"type":"Polygon","properties":{"NOM_MUN":"Heroica Ciudad de Tlaxiaco","POB1":38453},"arcs":[[-5457,-4688,-4264,-4600,-5206,-4712,-5473,5506,-4417,-5123,-5016,5507,5508]]},{"type":"Polygon","properties":{"NOM_MUN":"Ayoquezco de Aldama","POB1":4406},"arcs":[[-5125,-4064,-5231,-5211,-5436,-4129]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Atzompa","POB1":27465},"arcs":[[-5278,-4379,-4812,-4377,-5484,-5320,-4511,-5085]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Camotlán","POB1":1632},"arcs":[[-4792,-5346,5509,-4175,-3985]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Colotepec","POB1":22562},"arcs":[[-4612,-4632,5510,5511,-5335,-5407]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Cortijo","POB1":1083},"arcs":[[5512,-4848,5513,-1627,-4903]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Coyotepec","POB1":2772},"arcs":[[-4625,5514,-5482,-4869,-4466]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Chachoápam","POB1":766},"arcs":[[-5190,-4003,-5080,5515,-4644]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Chilapa de Díaz","POB1":1932},"arcs":[[-4512,-5390,-5410,-4571,5516,5517,-4494,5518]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Chilchotla","POB1":20584},"arcs":[[-3976,-5242,-4853,-4861,-4202,-4132,5519,5520]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Chimalapa","POB1":8506},"arcs":[[-527,-5194,-3989,-4027,-4307,5521,5522,5523]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María del Rosario","POB1":480},"arcs":[[-5458,-5509,5524,-5120,-5479]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María del Tule","POB1":8165},"arcs":[[-4769,-4448,5525,5526]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Ecatepec","POB1":3461},"arcs":[[-4020,-5316,-4664,5527,-4662,-4651,-4661,-4278]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Guelacé","POB1":816},"arcs":[[-4444,-4768,-5406]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Guienagati","POB1":3286},"arcs":[[5528,5529,5530,5531,-4162,-5010]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Santa María Huatulco","POB1":38629},"arcs":[[[-5197,5532,-5349,-5152,5533]],[[5534]],[[5535]],[[5536]],[[5537]],[[5538]],[[5539]],[[5540]],[[5541]],[[5542]]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Huazolotitlán","POB1":10794},"arcs":[[-4502,5543,5544,5545]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Ipalapa","POB1":4888},"arcs":[[-4438,-4940,-5307,-4605,-4927,-5304,5546]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Ixcatlán","POB1":516},"arcs":[[-4895,-5209,-4882,-5252,5547]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Jacatepec","POB1":9240},"arcs":[[-4920,5548,-4025,5549,-5098,-4921,-4844]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Jalapa del Marqués","POB1":11888},"arcs":[[5550,-4285,5551,5552,-4281,-4353,5553,5554,-5531]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Jaltianguis","POB1":575},"arcs":[[-5446,-5200,5555,-5438,-4966,-4865,-4210]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Lachixío","POB1":1680},"arcs":[[-4566,-5213,5556,5557]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Mixtequilla","POB1":4442},"arcs":[[-5313,5558,-5552,-4284]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Nativitas","POB1":681},"arcs":[[5559,-5071,-4878,-4649]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Nduayaco","POB1":550},"arcs":[[5560,5561,-4863,-5456,-5481,5562,-5387]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Ozolotepec","POB1":3992},"arcs":[[-5030,5563,-5154,-5112,-5243,-5156,-5412,5564]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Pápalo","POB1":2209},"arcs":[[-5357,-5066,5565,-4073]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Peñoles","POB1":7865},"arcs":[[5566,-4721,5567,-5221,-4592,-5051,5568,-4557]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Petapa","POB1":15387},"arcs":[[-4030,5569,-4972,-4308]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Quiegolani","POB1":1770},"arcs":[[-5528,-4663]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Sola","POB1":1524},"arcs":[[-5229,5570]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Tataltepec","POB1":253},"arcs":[[-5164,-5060,-5148,-4638,5571]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Tecomavaca","POB1":1774},"arcs":[[-5005,-4315,-4896,-5548,5572,5573]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Temaxcalapa","POB1":968},"arcs":[[-4804,-4691,-5245,-5077]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Temaxcaltepec","POB1":2595},"arcs":[[5574,5575,-4991]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Teopoxco","POB1":4651},"arcs":[[-4760,-4833,-5134,5576,5577,5578]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Tepantlali","POB1":3505},"arcs":[[-4143,-4983,-5352,5579]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Texcatitlán","POB1":1113},"arcs":[[-5506,5580,-5326,5581,-5321]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Tlahuitoltepec","POB1":9663},"arcs":[[5582,5583,-4141,-5383,-4342,5584]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Tlalixtac","POB1":1754},"arcs":[[-5362,-4746,-4106]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Tonameca","POB1":24318},"arcs":[[5585,-4039,-5351,5586,5587,5588,-5511,-4631,-4477]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Totolapilla","POB1":896},"arcs":[[5589,-5554,-4352]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Xadani","POB1":7781},"arcs":[[-4657,-4222]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Yalina","POB1":354},"arcs":[[5590,5591,-4987,-4537,-4642,5592]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Yavesía","POB1":448},"arcs":[[5593,5594,5595,-5184]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Yolotepec","POB1":461},"arcs":[[-4733,5596,-5476]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Yosoyúa","POB1":1642},"arcs":[[-5460,-5341,-5149,-5058,-5293]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Yucuhiti","POB1":6551},"arcs":[[5597,-4419,5598]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Zacatepec","POB1":15076},"arcs":[[-4439,-5547,-5303,-4925,-1799,-4166,-4423,-4493]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Zaniza","POB1":2009},"arcs":[[5599,-5485,5600,5601,5602]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María Zoquitlán","POB1":3359},"arcs":[[-4671,-5330,-4856,-5108,-5359,5603,-5370]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Amoltepec","POB1":12313},"arcs":[[5604,-5601,-5491,5605,-5469]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Apoala","POB1":1053},"arcs":[[-5581,-5505,-4005,-5191,-4884,-5208,-5327]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Apóstol","POB1":4220},"arcs":[[-4395,-5493,-5498,-5284,-5440,-4560]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Santiago Astata","POB1":3915},"arcs":[[[-5314,5606,5607]],[[5608]]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Atitlán","POB1":3180},"arcs":[[-3980,-4142,-5584,5609,-5503]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Ayuquililla","POB1":2748},"arcs":[[5610,-4181,-5179,5611,-4843]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Cacaloxtepec","POB1":1686},"arcs":[[-4497,5612,-5113,-4177,5613]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Camotlán","POB1":3395},"arcs":[[-5034,-4806,-5076,5614,-5074,-4214,-4021,5615]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Comaltepec","POB1":1115},"arcs":[[-4023,-4213,-5290,-5042,-5379,5616]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Chazumba","POB1":4479},"arcs":[[5617,-5399,-4086,5618,5619,5620,5621]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Santiago Choápam","POB1":5413},"arcs":[[[-5001,5622,5623,-4944,5624,-4808,-5033]],[[-5004]]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago del Río","POB1":614},"arcs":[[-4364,-5414,5625]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Huajolotitlán","POB1":4350},"arcs":[[-5345,5626,-4498,-5614,-4176,-5510]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Huauclilla","POB1":663},"arcs":[[-4888,5627,-4825,-4008,-5311]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Ihuitlán Plumas","POB1":480},"arcs":[[5628,-5250,5629,-5169,5630,-4789,-4066]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Ixcuintepec","POB1":1568},"arcs":[[5631,5632,5633,-4355,-4680,-5096,-5012]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Ixtayutla","POB1":11917},"arcs":[[-5606,-5490,5634,-4462,-4941,-4436,-5470]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Jamiltepec","POB1":18383},"arcs":[[5635,-5376,5636,-5544,-5453,-4458,5637]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Jocotepec","POB1":13568},"arcs":[[-4919,-4226,5638,-5003,-5035,-5616,-4026,-5549]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Juxtlahuaca","POB1":32927},"arcs":[[5639,-5018,-5124,-4424,-4078,-1802,-4079,-1775,-4053,-5128,-5415,-5260]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Lachiguiri","POB1":4693},"arcs":[[-4163,-5532,-5555,-5590,-4351,-5634,5640,-5632,-5011],[-4165]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Lalopa","POB1":496},"arcs":[[-5075,-5615,-5247,5641]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Laollaga","POB1":3198},"arcs":[[5642,5643,-3996,-4286,-5551,-5530]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Laxopa","POB1":1394},"arcs":[[5644,-4737,-5308,5645,5646,-5595,5647,-5591]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Llano Grande","POB1":3260},"arcs":[[-4301,-5409,5648,-4849,-5513,-4904,-1722]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Matatlán","POB1":9653},"arcs":[[-5372,5649,-4609,-4271,-4635,-5102,-5297,-4702]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Miltepec","POB1":409},"arcs":[[-3987,-4174,5650,-5396,-4906]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Minas","POB1":1430},"arcs":[[-5094,-5236,-5450,-5040,-5487,-4813,5651]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Nacaltepec","POB1":1913},"arcs":[[-4874,-4902,-4782,-4826,-5628,-4887]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Nejapilla","POB1":219},"arcs":[[-5365,-4751,5652,5653,5654,-5385]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Nundiche","POB1":967},"arcs":[[-5508,-5015,-5026,-5121,-5525]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Nuyoó","POB1":1966},"arcs":[[-4709,-5462,-5502,-4420,-5598,5655]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Pinotepa Nacional","POB1":50309},"arcs":[[-5258,-5324,-4403,-4503,-5546,5656,5657,-4850,-5649,-5408]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Suchilquitongo","POB1":9542},"arcs":[[-4559,5658,-4520,5659,-5281,-4239]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Tamazola","POB1":4207},"arcs":[[-5475,-5268,-4159,5660,5661,-4909,-5174,-4976,-4931]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Tapextla","POB1":3031},"arcs":[[5662,5663,-1629]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Tejúpam de la Unión","POB1":2469},"arcs":[[-5264,-4694,-4880,-5070,-5400,-4514,5664,5665,-4579]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Tenango","POB1":1945},"arcs":[[-5660,-4519,-4823,-4785,-5282]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Tepetlapa","POB1":131},"arcs":[[-5263,-5166,-5630,-5254]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Tetepec","POB1":4953},"arcs":[[-5489,5666,-5638,-4457,-5635]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Texcalcingo","POB1":3076},"arcs":[[-5578,5667,5668]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Textitlán","POB1":4170},"arcs":[[-5238,5669,-5603,5670]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Tilantongo","POB1":3210},"arcs":[[-4245,5671,-5165,-5572,-4637,-4965,-5364,-4775,-5248,-4764]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Tillo","POB1":553},"arcs":[[-5368,5672,-4527,-5048]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Tlazoyaltepec","POB1":4894},"arcs":[[-4720,-5276,-5222,-5568]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Xanica","POB1":2884},"arcs":[[-5198,-5534,-5151,-5564,-5029]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Xiacuí","POB1":2171},"arcs":[[-5592,-5648,-5594,-5183,-5141,-4346,-5140,-4988]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Yaitepec","POB1":4122},"arcs":[[-4992,-5576,5673,-5448]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Yaveo","POB1":6665},"arcs":[[-4951,5674,-5623,-5000,5675,5676,5677]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Yolomécatl","POB1":2021},"arcs":[[-5563,-5480,-5118,-5331,-5388]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Yosondúa","POB1":7883},"arcs":[[5678,-5477,-5597,-4732,5679,-5467,-5501,-4099]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Yucuyachi","POB1":940},"arcs":[[-5466,-4036,-4910,-5662,5680]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Zacatepec","POB1":5515},"arcs":[[-5675,-4950,-5504,-5610,-5583,5681,-5624]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Zoochila","POB1":374},"arcs":[[-5645,-5593,-4641,-4619,-4738]]},{"type":"Polygon","properties":{"NOM_MUN":"Nuevo Zoquiápam","POB1":1652},"arcs":[[-5445,-5280,-4474,5682]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Ingenio","POB1":7554},"arcs":[[-4371,5683,-4225,-5193]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Albarradas","POB1":782},"arcs":[[-5382,-5294,5684,5685,-5301]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Armenta","POB1":3224},"arcs":[[-4847,-5658,5686,-5663,-1628,-5514]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Chihuitán","POB1":1521},"arcs":[[-4048,-3997,-5644,5687]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo de Morelos","POB1":10547},"arcs":[[-4040,-5586,-4476]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Ixcatlán","POB1":877},"arcs":[[-5679,-4098,-5478]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Nuxaá","POB1":3610},"arcs":[[-5659,-4558,-5569,-5050,5688,-4521]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Ozolotepec","POB1":913},"arcs":[[-5565,-5411,-4684,-5023,-5339,-5031]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Petapa","POB1":8394},"arcs":[[-4973,-5570,-4029,-5688,-5643,-5529,-5009]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Roayaga","POB1":997},"arcs":[[-4943,5689,-4549,-4809,-5625]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Santo Domingo Tehuantepec","POB1":61872},"arcs":[[[-5318,-4452,5690,-5607,-5317,-4276,-5249,-4282,-5553,-5559,-5312,-4659]],[[-5633,-5641]]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Teojomulco","POB1":4571},"arcs":[[-5092,-5652,-4815,-5486,-5600,-5670,-5237]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Tepuxtepec","POB1":5194},"arcs":[[-5356,-4961,-5296,-5381,-4144,-5580]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Tlatayápam","POB1":153},"arcs":[[-4778,5691,-5653,-4750]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Tomaltepec","POB1":2790},"arcs":[[-4770,-5527,5692,5693]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Tonalá","POB1":7153},"arcs":[[5694,-4456,5695,-4836,-5115]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Tonaltepec","POB1":276},"arcs":[[-4648,-5072,-5560]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Xagacía","POB1":1213},"arcs":[[-5302,-5686,5696,-5646,-5309,-4741]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Yanhuitlán","POB1":1609},"arcs":[[-5516,-5079,-4528,-5673,-5367,-5384,-4645]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Yodohino","POB1":369},"arcs":[[5697,-4495,-5518]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo Zanatepec","POB1":11218},"arcs":[[-525,-5358,-4754,-4432,-4763,-4367,-5192]]},{"type":"Polygon","properties":{"NOM_MUN":"Santos Reyes Nopala","POB1":15986},"arcs":[[-5575,-4990,-4798,-5338,-5374,-5449,-5674]]},{"type":"Polygon","properties":{"NOM_MUN":"Santos Reyes Pápalo","POB1":2829},"arcs":[[-5065,-4885,-4074,-5566]]},{"type":"Polygon","properties":{"NOM_MUN":"Santos Reyes Tepejillo","POB1":1213},"arcs":[[-5019,-5640,-5259,-4361,5698]]},{"type":"Polygon","properties":{"NOM_MUN":"Santos Reyes Yucuná","POB1":1332},"arcs":[[-5116,-4292,-5136,-5428,-5180]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Tomás Jalieza","POB1":3385},"arcs":[[-5454,-4383,-4955,-4398,-5132,5699,-4623,-5417,-5062]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Tomás Mazaltepec","POB1":2333},"arcs":[[-4722,-5567,-4556]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Tomás Ocotepec","POB1":4076},"arcs":[[-5474,-4710,-5656,-5599,-4418,-5507]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Tomás Tamazulapan","POB1":2191},"arcs":[[-4526,-5500,-4325]]},{"type":"Polygon","properties":{"NOM_MUN":"San Vicente Coatlán","POB1":3964},"arcs":[[-5426,-5429,-4331,-5233,5700]]},{"type":"Polygon","properties":{"NOM_MUN":"San Vicente Lachixío","POB1":2976},"arcs":[[-5571,-5228,5701,-5557,-5230]]},{"type":"Polygon","properties":{"NOM_MUN":"San Vicente Nuñú","POB1":493},"arcs":[[-5655,5702,-5561,-5386]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Silacayoápam","POB1":6747},"arcs":[[[-4158,-4839,-5095,-4837,-5696,-4455,-4365,-5626,-5413,-5126,-4793,-4033,-5465,-5681,-5661]],[[-4913]]]},{"type":"Polygon","properties":{"NOM_MUN":"Sitio de Xitlapehua","POB1":705},"arcs":[[-4319,-5107]]},{"type":"Polygon","properties":{"NOM_MUN":"Soledad Etla","POB1":5025},"arcs":[[-4152,-5086,-4723,-4554,-4349]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Tamazulápam del Progreso","POB1":7059},"arcs":[[5703,-5665,-4513,-5519,-4499,-5627,-5344]]},{"type":"Polygon","properties":{"NOM_MUN":"Tanetze de Zaragoza","POB1":1707},"arcs":[[-5246,-4984,-5265,-4204,-5073,-5642]]},{"type":"Polygon","properties":{"NOM_MUN":"Taniche","POB1":746},"arcs":[[-5202,-4124,-4059,-4399,-4126]]},{"type":"Polygon","properties":{"NOM_MUN":"Tataltepec de Valdés","POB1":5561},"arcs":[[-5377,-5636,-5667,-5488,-5038,-5217]]},{"type":"Polygon","properties":{"NOM_MUN":"Teococuilco de Marcos Pérez","POB1":1106},"arcs":[[-4473,-4899,-4957,-5177,-5439,-5556,-5199,-5683]]},{"type":"Polygon","properties":{"NOM_MUN":"Teotitlán de Flores Magón","POB1":8966},"arcs":[[-5133,-5006,-5574,5704,-4593,5705,5706,-5668,-5577]]},{"type":"Polygon","properties":{"NOM_MUN":"Teotitlán del Valle","POB1":5638},"arcs":[[5707,-5433,5708,5709,-4771,-5694,5710,-5451]]},{"type":"Polygon","properties":{"NOM_MUN":"Teotongo","POB1":951},"arcs":[[5711,-4576,-5666,-5704,-5343]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepelmeme Villa de Morelos","POB1":1734},"arcs":[[-4594,-5705,-5573,-5251,-5629,-4065,5712,5713]]},{"type":"Polygon","properties":{"NOM_MUN":"Tezoatlán de Segura y Luna","POB1":11319},"arcs":[[-5613,-4496,-5698,-5517,-4575,-5027,-5020,-5699,-4360,-4454,-5695,-5114]]},{"type":"Polygon","properties":{"NOM_MUN":"San Jerónimo Tlacochahuaya","POB1":5076},"arcs":[[5714,-4971,-5403,-4766,-5710]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Tlacolula de Matamoros","POB1":19625},"arcs":[[[5715,-5298,-5103,-4636,-4269,-4968,-5715,-5709,-5432]],[[-4700,-5083,-5355,-5369]]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlacotepec Plumas","POB1":510},"arcs":[[-5168,-4248,-4790,-5631]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlalixtac de Cabrera","POB1":9417},"arcs":[[-5452,-5711,-5693,-5526,-4582,-5420,-5499,-4485,-4506,-5444]]},{"type":"Polygon","properties":{"NOM_MUN":"Totontepec Villa de Morelos","POB1":5598},"arcs":[[-4942,-5682,-5585,-4341,-5170,-4550,-5690]]},{"type":"Polygon","properties":{"NOM_MUN":"Trinidad Zaachila","POB1":2653},"arcs":[[-4043,5716,-5496,5717]]},{"type":"Polygon","properties":{"NOM_MUN":"La Trinidad Vista Hermosa","POB1":249},"arcs":[[-5262,-4577,-5712,-5342,-4251]]},{"type":"Polygon","properties":{"NOM_MUN":"Unión Hidalgo","POB1":13970},"arcs":[[-5684,-4370,-4216]]},{"type":"Polygon","properties":{"NOM_MUN":"Valerio Trujano","POB1":1543},"arcs":[[-5322,-5582,-5325,-4892]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Bautista Valle Nacional","POB1":22446},"arcs":[[-5550,-4024,-5617,-5380,-4724,-5099]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Díaz Ordaz","POB1":6174},"arcs":[[-5647,-5697,-5685,-5299,-5716,-5434,-5708,-5185,-5596]]},{"type":"Polygon","properties":{"NOM_MUN":"Yaxe","POB1":2683},"arcs":[[-5371,-5604,-5360,-4610,-5650]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena Yodocono de Porfirio Díaz","POB1":1458},"arcs":[[-4777,-5363,-5172,-5562,-5703,-5654,-5692]]},{"type":"Polygon","properties":{"NOM_MUN":"Yogana","POB1":1308},"arcs":[[-4339,-5267,-5427,-5701,-5232,-4120]]},{"type":"Polygon","properties":{"NOM_MUN":"Yutanduchi de Guerrero","POB1":1292},"arcs":[[-5054,-5361,-5161,-5672,-4244]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Zaachila","POB1":34101},"arcs":[[-5401,-5483,-5515,-4624,-5700,-5131,-4622,-4044,-5718,-5495,-5273,-4089]]},{"type":"Polygon","properties":{"NOM_MUN":"San Mateo Yucutindó","POB1":3034},"arcs":[[-4589,-5239,-5671,-5602,-5605,-5468,-5680,-4731]]},{"type":"Polygon","properties":{"NOM_MUN":"Zapotitlán Lagunas","POB1":3133},"arcs":[[-4933,-4978,-5175,-5147,-1537,-1669,-1793,5718]]},{"type":"Polygon","properties":{"NOM_MUN":"Zapotitlán Palmas","POB1":1514},"arcs":[[-4183,5719]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Inés de Zaragoza","POB1":1707},"arcs":[[-4824,-4517,-5689,-5055,-4241,-4010]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Zimatlán de Álvarez","POB1":19215},"arcs":[[[-5287,-5494,-4393,-5435,-5472]],[[-5558,-5702,-5227,-4587,-4567]],[[-4047,-5455,-5441,-5289,-4654,-4256,-5497,-5717]],[[-4259,-5277,-5219,-5275]]]},{"type":"Polygon","properties":{"NOM_MUN":"Acajete","POB1":60353},"arcs":[[5720,5721,5722,5723,5724,5725,5726]]},{"type":"Polygon","properties":{"NOM_MUN":"Acateno","POB1":8916},"arcs":[[5727,5728,5729,5730]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Acatlán","POB1":33865},"arcs":[[[5731,5732,5733,5734,5735,5736,5737,5738,5739]],[[-4147,-4298,-4929,5740,5741,5742]]]},{"type":"Polygon","properties":{"NOM_MUN":"Acatzingo","POB1":52078},"arcs":[[5743,5744,5745,5746,5747,5748,5749,5750,5751]]},{"type":"Polygon","properties":{"NOM_MUN":"Acteopan","POB1":2881},"arcs":[[5752,5753,5754,5755,5756]]},{"type":"Polygon","properties":{"NOM_MUN":"Ahuacatlán","POB1":14754},"arcs":[[5757,5758,5759,5760,5761,5762,5763,5764,5765]]},{"type":"Polygon","properties":{"NOM_MUN":"Ahuatlán","POB1":3403},"arcs":[[5766,5767,5768,5769,5770,5771,5772,5773]]},{"type":"Polygon","properties":{"NOM_MUN":"Ahuazotepec","POB1":10457},"arcs":[[5774,5775,-1983,-1982,-1981,-1980,-1979,-1978,-1977,-1976,-1975,-1974,-1973,-1972,-1971,-1879,-1878,-1877,-1876,-1875,-1874,-1873,-1872,-1871,-1870,-1869,-1868,-1867,-1866,-1865,-1864]]},{"type":"Polygon","properties":{"NOM_MUN":"Ahuehuetitla","POB1":2008},"arcs":[[5776,5777,5778,5779,-5738]]},{"type":"Polygon","properties":{"NOM_MUN":"Ajalpan","POB1":60621},"arcs":[[5780,5781,5782,5783,5784,5785,5786,5787,5788,5789]]},{"type":"Polygon","properties":{"NOM_MUN":"Albino Zertuche","POB1":1770},"arcs":[[-1795,5790,5791,5792]]},{"type":"Polygon","properties":{"NOM_MUN":"Aljojuca","POB1":6288},"arcs":[[5793,5794,5795,5796,5797]]},{"type":"Polygon","properties":{"NOM_MUN":"Altepexi","POB1":18920},"arcs":[[5798,5799,5800,-5787,5801]]},{"type":"Polygon","properties":{"NOM_MUN":"Amixtlán","POB1":5004},"arcs":[[5802,5803,5804,5805,-5762,5806]]},{"type":"Polygon","properties":{"NOM_MUN":"Amozoc","POB1":100964},"arcs":[[5807,5808,5809,-5726]]},{"type":"Polygon","properties":{"NOM_MUN":"Aquixtla","POB1":7848},"arcs":[[5810,5811,5812,5813]]},{"type":"Polygon","properties":{"NOM_MUN":"Atempan","POB1":25386},"arcs":[[5814,5815,5816]]},{"type":"Polygon","properties":{"NOM_MUN":"Atexcal","POB1":3734},"arcs":[[-5621,5817,5818,5819,5820,5821]]},{"type":"Polygon","properties":{"NOM_MUN":"Atlixco","POB1":127062},"arcs":[[5822,5823,5824,5825,5826,5827,5828,5829]]},{"type":"Polygon","properties":{"NOM_MUN":"Atoyatempan","POB1":6426},"arcs":[[5830,5831,5832,5833,5834]]},{"type":"Polygon","properties":{"NOM_MUN":"Atzala","POB1":1228},"arcs":[[5835,5836]]},{"type":"Polygon","properties":{"NOM_MUN":"Atzitzihuacán","POB1":11684},"arcs":[[-3696,-3679,5837,-5823,5838,5839,-5756,5840]]},{"type":"Polygon","properties":{"NOM_MUN":"Atzitzintla","POB1":8408},"arcs":[[5841,5842,5843,5844,5845]]},{"type":"Polygon","properties":{"NOM_MUN":"Axutla","POB1":947},"arcs":[[5846,5847,5848,5849,5850,5851]]},{"type":"Polygon","properties":{"NOM_MUN":"Ayotoxco de Guerrero","POB1":8153},"arcs":[[5852,5853,5854,5855,5856,5857,5858]]},{"type":"Polygon","properties":{"NOM_MUN":"Calpan","POB1":13730},"arcs":[[5859,5860,5861,5862,5863,5864,5865]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Caltepec","POB1":4177},"arcs":[[[-5392,-5618,5866]],[[5867,-5713,-4069,-5463,-5394,5868]]]},{"type":"Polygon","properties":{"NOM_MUN":"Camocuautla","POB1":2476},"arcs":[[5869,5870,-5805,5871,5872]]},{"type":"Polygon","properties":{"NOM_MUN":"Caxhuacan","POB1":3791},"arcs":[[5873,5874,5875,5876,5877]]},{"type":"Polygon","properties":{"NOM_MUN":"Coatepec","POB1":758},"arcs":[[5878,5879,-5872,-5804,5880]]},{"type":"Polygon","properties":{"NOM_MUN":"Coatzingo","POB1":2964},"arcs":[[-5770,5881,5882,5883,5884]]},{"type":"Polygon","properties":{"NOM_MUN":"Cohetzala","POB1":1283},"arcs":[[-1605,-1549,5885,5886,5887,5888,5889,5890,5891]]},{"type":"Polygon","properties":{"NOM_MUN":"Cohuecan","POB1":4763},"arcs":[[-3650,-3697,-3694,-5841,-5755,5892]]},{"type":"Polygon","properties":{"NOM_MUN":"Coronango","POB1":34596},"arcs":[[5893,5894,5895,5896,5897,5898]]},{"type":"Polygon","properties":{"NOM_MUN":"Coxcatlán","POB1":19639},"arcs":[[-5706,-4596,5899,5900,-5785,5901,5902]]},{"type":"Polygon","properties":{"NOM_MUN":"Coyomeapan","POB1":14205},"arcs":[[-5091,-4761,-5579,-5669,-5707,-5903,5903,5904]]},{"type":"Polygon","properties":{"NOM_MUN":"Coyotepec","POB1":2339},"arcs":[[5905,-5819,5906,5907,5908]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuapiaxtla de Madero","POB1":8709},"arcs":[[5909,5910,5911,5912,5913]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuautempan","POB1":9212},"arcs":[[5914,5915,5916,5917]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuautinchán","POB1":9538},"arcs":[[5918,5919,-5808,-5725,5920,5921]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuautlancingo","POB1":79153},"arcs":[[5922,5923,5924,5925,5926,-5895]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuayuca de Andrade","POB1":3062},"arcs":[[-5772,5927,5928,5929]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuetzalan del Progreso","POB1":47433},"arcs":[[5930,5931,5932,-5855,5933,5934,5935,5936,5937]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuyoaco","POB1":15367},"arcs":[[5938,5939,5940,5941,5942,5943,5944]]},{"type":"Polygon","properties":{"NOM_MUN":"Chalchicomula de Sesma","POB1":43882},"arcs":[[5945,5946,-5846,5947,5948,5949,5950,-5795,5951]]},{"type":"Polygon","properties":{"NOM_MUN":"Chapulco","POB1":6992},"arcs":[[5952,5953,5954,5955,5956]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Chiautla","POB1":19037},"arcs":[[[-5887,5957,5958]],[[5959,5960,-5849,5961,5962,-5890,5963,5964,-3617,5965]]]},{"type":"Polygon","properties":{"NOM_MUN":"Chiautzingo","POB1":18762},"arcs":[[5966,5967,5968,5969]]},{"type":"Polygon","properties":{"NOM_MUN":"Chiconcuautla","POB1":15767},"arcs":[[5970,5971,-5758,5972]]},{"type":"Polygon","properties":{"NOM_MUN":"Chichiquila","POB1":24148},"arcs":[[5973,5974,5975,5976,5977,5978]]},{"type":"Polygon","properties":{"NOM_MUN":"Chietla","POB1":33935},"arcs":[[-3616,5979,5980,5981,-5837,5982,-5966]]},{"type":"Polygon","properties":{"NOM_MUN":"Chigmecatitlán","POB1":1227},"arcs":[[5983,5984,5985]]},{"type":"Polygon","properties":{"NOM_MUN":"Chignahuapan","POB1":57909},"arcs":[[5986,-1911,-1914,-1985,5987,-5812,5988]]},{"type":"Polygon","properties":{"NOM_MUN":"Chignautla","POB1":30254},"arcs":[[5989,-5944,5990,-5815,5991,5992,5993,5994]]},{"type":"Polygon","properties":{"NOM_MUN":"Chila","POB1":4699},"arcs":[[-4184,-5720,-4182,-5611,-4842,5995,-4187,5996]]},{"type":"Polygon","properties":{"NOM_MUN":"Chila de la Sal","POB1":1237},"arcs":[[-5962,-5848,5997,5998,5999]]},{"type":"Polygon","properties":{"NOM_MUN":"Honey","POB1":7463},"arcs":[[6000,-1816,-2128,-2323,-2322,-2321,-2320,-2319]]},{"type":"Polygon","properties":{"NOM_MUN":"Chilchotla","POB1":19257},"arcs":[[6001,6002,6003,6004,6005]]},{"type":"Polygon","properties":{"NOM_MUN":"Chinantla","POB1":2468},"arcs":[[-5779,6006,-5851,6007]]},{"type":"Polygon","properties":{"NOM_MUN":"Domingo Arenas","POB1":6946},"arcs":[[6008,-5865]]},{"type":"Polygon","properties":{"NOM_MUN":"Eloxochitlán","POB1":12575},"arcs":[[6009,6010,6011,6012,-5783]]},{"type":"Polygon","properties":{"NOM_MUN":"Epatlán","POB1":4594},"arcs":[[6013,6014,6015,6016,-5767,6017]]},{"type":"Polygon","properties":{"NOM_MUN":"Esperanza","POB1":13785},"arcs":[[6018,6019,6020,6021,-5948,-5845]]},{"type":"Polygon","properties":{"NOM_MUN":"Francisco Z. Mena","POB1":16270},"arcs":[[6022,6023,6024,6025,6026,6027]]},{"type":"Polygon","properties":{"NOM_MUN":"General Felipe Ángeles","POB1":19040},"arcs":[[6028,-5748,6029,6030,6031]]},{"type":"Polygon","properties":{"NOM_MUN":"Guadalupe","POB1":6276},"arcs":[[-5182,-4148,-5743,6032,6033,6034]]},{"type":"Polygon","properties":{"NOM_MUN":"Guadalupe Victoria","POB1":16551},"arcs":[[6035,6036,6037,6038,6039]]},{"type":"Polygon","properties":{"NOM_MUN":"Hermenegildo Galeana","POB1":7718},"arcs":[[6040,6041,-5881,-5803,6042]]},{"type":"Polygon","properties":{"NOM_MUN":"Huaquechula","POB1":25373},"arcs":[[-5753,6043,-5839,-5830,6044,6045,6046,6047]]},{"type":"Polygon","properties":{"NOM_MUN":"Huatlatlauca","POB1":6643},"arcs":[[6048,-5986,6049,-5883,6050,6051,6052,6053,6054]]},{"type":"Polygon","properties":{"NOM_MUN":"Huauchinango","POB1":97753},"arcs":[[6055,6056,6057,6058,6059,-5971,6060,-5775,-1863,-1862,-1861,-1860,-1859,-1858,-1857,-1856,-1855,-1854,-1853,-1852,-1851,-1850,-1849,-1848,-1847,-1846,-1845,-1844,-1843,-1842,-1841,-1840,-1839,-1838,-1837,-1836,-1835,-1834,-1833,-1832,-1831,-1830,-1829,-1828,-1827,-1826,-1825,-1824,-1823,-1822,-1821,-1820,-1819,6061]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Huehuetla","POB1":15689},"arcs":[[[6062,6063,6064,6065,6066,-5876]],[[6067,-5878,6068,6069,6070,6071]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Huehuetlán el Chico","POB1":8679},"arcs":[[[-5959,6072,-5888]],[[-3618,-5965,6073,6074]]]},{"type":"Polygon","properties":{"NOM_MUN":"Huejotzingo","POB1":63457},"arcs":[[-2926,-3269,6075,-5968,6076,6077,6078,6079,6080,-5866,-6009,-5864,6081]]},{"type":"Polygon","properties":{"NOM_MUN":"Hueyapan","POB1":11868},"arcs":[[6082,-5993,6083,6084,6085,-5853,6086]]},{"type":"Polygon","properties":{"NOM_MUN":"Hueytamalco","POB1":26689},"arcs":[[6087,6088,6089,6090,-6087,-5859,6091,6092,-5731]]},{"type":"Polygon","properties":{"NOM_MUN":"Hueytlalpan","POB1":5734},"arcs":[[6093,6094,-5873,-5880,6095,-6070]]},{"type":"Polygon","properties":{"NOM_MUN":"Huitzilan de Serdán","POB1":13982},"arcs":[[6096,6097,6098,-5917,6099]]},{"type":"Polygon","properties":{"NOM_MUN":"Huitziltepec","POB1":5306},"arcs":[[6100,6101,6102,6103,6104,6105,-5833]]},{"type":"Polygon","properties":{"NOM_MUN":"Atlequizayan","POB1":2833},"arcs":[[6106,6107,6108,-6066,6109]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixcamilpa de Guerrero","POB1":3695},"arcs":[[-1794,-1718,-1606,-5892,6110,-5791]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixcaquixtla","POB1":8093},"arcs":[[-5909,6111,6112]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtacamaxtitlán","POB1":25326},"arcs":[[6113,6114,6115,6116,-5989,-5811,6117,6118,-5941,6119,6120]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtepec","POB1":6811},"arcs":[[-6069,-5877,-6067,-6109,6121,-6094]]},{"type":"Polygon","properties":{"NOM_MUN":"Izúcar de Matamoros","POB1":72799},"arcs":[[-5983,-5836,-5982,6122,6123,-6018,-5774,6124,-5960]]},{"type":"Polygon","properties":{"NOM_MUN":"Jalpan","POB1":12547},"arcs":[[6125,6126,6127,-2051,6128,6129]]},{"type":"Polygon","properties":{"NOM_MUN":"Jolalpan","POB1":12662},"arcs":[[-3689,6130,-6074,-5964,-5889,-6073,-5958,-5886,-1552,-1673]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Jonotla","POB1":4598},"arcs":[[[-5938,6131,-6064,6132]],[[6133,-5932,6134,6135,-5857]]]},{"type":"Polygon","properties":{"NOM_MUN":"Jopala","POB1":12997},"arcs":[[6136,6137,6138,-6041,6139,6140,6141,6142]]},{"type":"Polygon","properties":{"NOM_MUN":"Juan C. Bonilla","POB1":18540},"arcs":[[-6080,6143,-5897,6144]]},{"type":"Polygon","properties":{"NOM_MUN":"Juan Galindo","POB1":10213},"arcs":[[6145,6146,-6058]]},{"type":"Polygon","properties":{"NOM_MUN":"Juan N. Méndez","POB1":5223},"arcs":[[-5906,-6113,6147,6148,6149,6150,6151,6152,-5820]]},{"type":"Polygon","properties":{"NOM_MUN":"Lafragua","POB1":7767},"arcs":[[6153,6154,-6006,6155,-6037]]},{"type":"Polygon","properties":{"NOM_MUN":"Libres","POB1":31532},"arcs":[[6156,6157,-6121,6158,-5939,6159,6160]]},{"type":"Polygon","properties":{"NOM_MUN":"La Magdalena Tlatlauquitepec","POB1":484},"arcs":[[6161,-6053,6162]]},{"type":"Polygon","properties":{"NOM_MUN":"Mazapiltepec de Juárez","POB1":2633},"arcs":[[-6030,-5747,6163,6164,6165]]},{"type":"Polygon","properties":{"NOM_MUN":"Mixtla","POB1":2216},"arcs":[[6166,6167,6168]]},{"type":"Polygon","properties":{"NOM_MUN":"Molcaxac","POB1":6218},"arcs":[[6169,6170,6171,-5834,-6106,6172,-6149]]},{"type":"Polygon","properties":{"NOM_MUN":"Cañada Morelos","POB1":18954},"arcs":[[6173,6174,-5957,6175,6176,6177,-6021]]},{"type":"Polygon","properties":{"NOM_MUN":"Naupan","POB1":9707},"arcs":[[6178,-6062,-1818,6179]]},{"type":"Polygon","properties":{"NOM_MUN":"Nauzontla","POB1":3598},"arcs":[[6180,-5936,6181,6182]]},{"type":"Polygon","properties":{"NOM_MUN":"Nealtican","POB1":12011},"arcs":[[-5862,6183,6184,6185]]},{"type":"Polygon","properties":{"NOM_MUN":"Nicolás Bravo","POB1":6009},"arcs":[[6186,6187,6188,6189,-5954]]},{"type":"Polygon","properties":{"NOM_MUN":"Nopalucan","POB1":27292},"arcs":[[6190,6191,6192,6193,6194,6195,6196,6197,6198,-5745,6199,-5723]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocotepec","POB1":4825},"arcs":[[-6120,-5940,-6159]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocoyucan","POB1":25720},"arcs":[[6200,6201,6202,-5827,6203,6204]]},{"type":"Polygon","properties":{"NOM_MUN":"Olintla","POB1":11641},"arcs":[[6205,6206,6207,-6071,-6096,-5879,-6042,-6139]]},{"type":"Polygon","properties":{"NOM_MUN":"Oriental","POB1":16575},"arcs":[[6208,-6161,6209,6210,6211,6212]]},{"type":"Polygon","properties":{"NOM_MUN":"Pahuatlán","POB1":20618},"arcs":[[6213,-6180,-1817,-6001,-2318]]},{"type":"Polygon","properties":{"NOM_MUN":"Palmar de Bravo","POB1":42887},"arcs":[[6214,6215,6216,6217,-5949,-6022,-6178]]},{"type":"Polygon","properties":{"NOM_MUN":"Pantepec","POB1":18435},"arcs":[[6218,-6028,6219,-6129,-2050]]},{"type":"Polygon","properties":{"NOM_MUN":"Petlalcingo","POB1":9382},"arcs":[[-4841,6220,-5735,6221,-4084,-5398,-4188,-5996]]},{"type":"Polygon","properties":{"NOM_MUN":"Piaxtla","POB1":4585},"arcs":[[6222,6223,-5852,-6007,-5778,6224,-6033,-5742,6225]]},{"type":"Polygon","properties":{"NOM_MUN":"Puebla","POB1":1539819},"arcs":[[-5809,-5920,6226,6227,6228,-6202,6229,6230,-5926,6231,6232,6233,6234]]},{"type":"Polygon","properties":{"NOM_MUN":"Quecholac","POB1":47281},"arcs":[[-5749,-6029,6235,-5950,-6218,6236]]},{"type":"Polygon","properties":{"NOM_MUN":"Quimixtlán","POB1":21275},"arcs":[[6237,6238,-6004,6239,6240,6241,-5979]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Rafael Lara Grajales","POB1":14052},"arcs":[[[6242,-6197]],[[6243,-6195]]]},{"type":"Polygon","properties":{"NOM_MUN":"Los Reyes de Juárez","POB1":25553},"arcs":[[6244,-5914,6245,-5752]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Cholula","POB1":100439},"arcs":[[-6201,6246,6247,6248,-6230]]},{"type":"Polygon","properties":{"NOM_MUN":"San Antonio Cañada","POB1":5110},"arcs":[[-5789,6249,6250]]},{"type":"Polygon","properties":{"NOM_MUN":"San Diego la Mesa Tochimiltzingo","POB1":1132},"arcs":[[-6045,-5829,6251,6252,6253]]},{"type":"Polygon","properties":{"NOM_MUN":"San Felipe Teotlalcingo","POB1":9426},"arcs":[[6254,-5970,6255]]},{"type":"Polygon","properties":{"NOM_MUN":"San Felipe Tepatlán","POB1":4120},"arcs":[[-6043,-5807,-5761,6256,-6140]]},{"type":"Polygon","properties":{"NOM_MUN":"San Gabriel Chilac","POB1":14454},"arcs":[[6257,-5800,6258,6259]]},{"type":"Polygon","properties":{"NOM_MUN":"San Gregorio Atzompa","POB1":8170},"arcs":[[-6205,6260,6261,-6247]]},{"type":"Polygon","properties":{"NOM_MUN":"San Jerónimo Tecuanipan","POB1":5826},"arcs":[[-5861,6262,-6248,-6262,6263,6264,-6184]]},{"type":"Polygon","properties":{"NOM_MUN":"San Jerónimo Xayacatlán","POB1":3777},"arcs":[[-5619,-4085,-6222,-5734,6265,6266]]},{"type":"Polygon","properties":{"NOM_MUN":"San José Chiapa","POB1":8087},"arcs":[[6267,6268,6269,-6213,6270,-6165,-6198,-6243,-6196,-6244,-6194]]},{"type":"Polygon","properties":{"NOM_MUN":"San José Miahuatlán","POB1":12699},"arcs":[[-4595,-5714,-5868,6271,-6259,-5799,6272,-5900]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Atenco","POB1":3416},"arcs":[[-6032,6273,-5796,-5951,-6236]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Atzompa","POB1":872},"arcs":[[-6054,-6162,6274,6275]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín Texmelucan","POB1":141112},"arcs":[[6276,6277,6278,-6077,-5967,-6255,6279]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín Totoltepec","POB1":651},"arcs":[[6280,-6016]]},{"type":"Polygon","properties":{"NOM_MUN":"San Matías Tlalancaleca","POB1":19310},"arcs":[[6281,6282,6283]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Ixitlán","POB1":586},"arcs":[[-4186,-5397,-5651,-4185,-5997]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel Xoxtla","POB1":11598},"arcs":[[6284,6285,6286,-5899,6287]]},{"type":"Polygon","properties":{"NOM_MUN":"San Nicolás Buenos Aires","POB1":9185},"arcs":[[6288,-5798,6289,-6211,6290,-6039]]},{"type":"Polygon","properties":{"NOM_MUN":"San Nicolás de los Ranchos","POB1":10777},"arcs":[[-2950,-2927,-6082,-5863,-6186,6291,6292]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pablo Anicano","POB1":3554},"arcs":[[-5777,-5737,6293,-6034,-6225]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Cholula","POB1":120459},"arcs":[[-5896,-5927,-6231,-6249,-6263,-5860,-6081,-6145]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro Yeloixtlahuaca","POB1":3395},"arcs":[[-4840,-5612,-5178,-6035,-6294,-5736,-6221]]},{"type":"Polygon","properties":{"NOM_MUN":"San Salvador el Seco","POB1":27622},"arcs":[[-6274,-6031,-6166,-6271,-6212,-6290,-5797]]},{"type":"Polygon","properties":{"NOM_MUN":"San Salvador el Verde","POB1":28419},"arcs":[[-3268,6294,-6283,6295,-6280,-6256,-5969,-6076]]},{"type":"Polygon","properties":{"NOM_MUN":"San Salvador Huixcolotla","POB1":13541},"arcs":[[-5751,6296,6297,-5910,-6245]]},{"type":"Polygon","properties":{"NOM_MUN":"San Sebastián Tlacotepec","POB1":13534},"arcs":[[-5520,-4138,-5431,-5088,-5905,6298,-6012,6299]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Tlaltempan","POB1":874},"arcs":[[-5884,-6050,-5985,6300]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Inés Ahuatempan","POB1":5944},"arcs":[[-5740,6301,-5929,6302,6303]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Isabel Cholula","POB1":8040},"arcs":[[-6261,-6204,-5826,6304,-6264]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Miahuatlán","POB1":21993},"arcs":[[6305,-5955,-6190,6306]]},{"type":"Polygon","properties":{"NOM_MUN":"Huehuetlán el Grande","POB1":7060},"arcs":[[6307,-6228,6308,-6275,-6163,-6052]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Tomás Hueyotlipan","POB1":8016},"arcs":[[6309,6310,-6168,6311,-5912,6312]]},{"type":"Polygon","properties":{"NOM_MUN":"Soltepec","POB1":11706},"arcs":[[-6199,-6164,-5746]]},{"type":"Polygon","properties":{"NOM_MUN":"Tecali de Herrera","POB1":20267},"arcs":[[6313,-6169,-6311,6314,-5831,6315,-5922]]},{"type":"Polygon","properties":{"NOM_MUN":"Tecamachalco","POB1":71571},"arcs":[[-6297,-5750,-6237,-6217,6316,6317,6318]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Tecomatlán","POB1":5420},"arcs":[[[-4935,6319,-6226,-5741]],[[6320,-5998,-5847,-6224]]]},{"type":"Polygon","properties":{"NOM_MUN":"Tehuacán","POB1":274906},"arcs":[[-5788,-5801,-6258,6321,-5821,-6153,6322,-6307,-6189,6323,-6250]]},{"type":"Polygon","properties":{"NOM_MUN":"Tehuitzingo","POB1":11328},"arcs":[[-6302,-5739,-5780,-6008,-5850,-5961,-6125,-5773,-5930]]},{"type":"Polygon","properties":{"NOM_MUN":"Tenampulco","POB1":6772},"arcs":[[6324,6325,-6092,-5858,-6136,6326]]},{"type":"Polygon","properties":{"NOM_MUN":"Teopantlán","POB1":4024},"arcs":[[-6051,-5882,-5769,6327,-6252,-5828,-6203,-6229,-6308]]},{"type":"Polygon","properties":{"NOM_MUN":"Teotlalco","POB1":3121},"arcs":[[-3688,-3674,-3619,-6075,-6131]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepanco de López","POB1":19002},"arcs":[[-6152,6328,-6176,-5956,-6306,-6323]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepango de Rodríguez","POB1":4244},"arcs":[[6329,-5763,-5806,-5871,6330]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepatlaxco de Hidalgo","POB1":16275},"arcs":[[6331,-5727,-5810,-6235]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepeaca","POB1":74708},"arcs":[[-6200,-5744,-6246,-5913,-6312,-6167,-6314,-5921,-5724]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepemaxalco","POB1":1141},"arcs":[[-5757,-5840,-6044]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepeojuma","POB1":8056},"arcs":[[6332,-6014,-6124,6333,6334,-6046,-6254]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepetzintla","POB1":10240},"arcs":[[6335,-5765,6336,-5915,6337]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepexco","POB1":6580},"arcs":[[-3615,-3651,-5893,-5754,-6048,6338,6339,-5980]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepexi de Rodríguez","POB1":20478},"arcs":[[6340,-6170,-6148,-6112,-5908,6341,6342,-5732,-6304]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepeyahualco","POB1":16390},"arcs":[[6343,-6040,-6291,-6210,-6160,-5945,-5990,6344]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepeyahualco de Cuauhtémoc","POB1":3365},"arcs":[[-6103,6345]]},{"type":"Polygon","properties":{"NOM_MUN":"Tetela de Ocampo","POB1":25793},"arcs":[[6346,6347,-6118,-5814,6348,-6338,-5918,-6099,6349]]},{"type":"Polygon","properties":{"NOM_MUN":"Teteles de Avila Castillo","POB1":5689},"arcs":[[-6084,-5992,-5817,6350,6351]]},{"type":"Polygon","properties":{"NOM_MUN":"Teziutlán","POB1":92246},"arcs":[[-6091,6352,-5994,-6083]]},{"type":"Polygon","properties":{"NOM_MUN":"Tianguismanalco","POB1":9807},"arcs":[[-5825,6353,-6292,-6185,-6265,-6305]]},{"type":"Polygon","properties":{"NOM_MUN":"Tilapa","POB1":8401},"arcs":[[-6340,6354,-6334,-6123,-5981]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlacotepec de Benito Juárez","POB1":48268},"arcs":[[6355,-6215,-6177,-6329,-6151,6356]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlacuilotepec","POB1":17115},"arcs":[[-6214,-2317,6357,-2052,-6128,6358,-6056,-6179]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlachichuca","POB1":28568},"arcs":[[6359,-5952,-5794,-6289,-6038,-6156,-6005,-6239]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlahuapan","POB1":36518},"arcs":[[-3267,-3055,-3266,6360,6361,6362,6363,6364,-6284,-6295]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlaltenango","POB1":6269},"arcs":[[6365,-6288,-5898,-6144,-6079]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlanepantla","POB1":4833},"arcs":[[-6310,6366,-6101,-5832,-6315]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlaola","POB1":19826},"arcs":[[6367,-6142,6368,-5759,-5972,-6060]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlapacoya","POB1":6406},"arcs":[[-6141,-6257,-5760,-6369]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlapanalá","POB1":8404},"arcs":[[-6335,-6355,-6339,-6047]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlatlauquitepec","POB1":51495},"arcs":[[6369,-6351,-5816,-5991,-5943,6370,6371,6372,-5934,-5854,-6086]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlaxco","POB1":5415},"arcs":[[-2316,-2053,-6358]]},{"type":"Polygon","properties":{"NOM_MUN":"Tochimilco","POB1":17028},"arcs":[[-2951,-6293,-6354,-5824,-5838,-3681]]},{"type":"Polygon","properties":{"NOM_MUN":"Tochtepec","POB1":19701},"arcs":[[6373,-6104,-6346,-6102,-6367,-6313,-5911,-6298,-6319]]},{"type":"Polygon","properties":{"NOM_MUN":"Totoltepec de Guerrero","POB1":1155},"arcs":[[-5620,-6267,6374,-6342,-5907,-5818]]},{"type":"Polygon","properties":{"NOM_MUN":"Tulcingo","POB1":9245},"arcs":[[-1792,-5793,6375,-5999,-6321,-6223,-6320,-4934,-5719]]},{"type":"Polygon","properties":{"NOM_MUN":"Tuzamapan de Galeana","POB1":5983},"arcs":[[6376,6377,-6327,-6135,-5931,-6133,-6063,-5875]]},{"type":"Polygon","properties":{"NOM_MUN":"Tzicatlacoyan","POB1":6242},"arcs":[[-6276,-6309,-6227,-5919,-6316,-5835,-6172,6378,-6055]]},{"type":"Polygon","properties":{"NOM_MUN":"Venustiano Carranza","POB1":27890},"arcs":[[6379,6380,6381,-6130,-6220,-6027]]},{"type":"Polygon","properties":{"NOM_MUN":"Vicente Guerrero","POB1":24217},"arcs":[[6382,6383,6384,6385,6386,6387,-5790,-6251,-6324,-6188]]},{"type":"Polygon","properties":{"NOM_MUN":"Xayacatlán de Bravo","POB1":1649},"arcs":[[-6343,-6375,-6266,-5733]]},{"type":"Polygon","properties":{"NOM_MUN":"Xicotepec","POB1":75601},"arcs":[[6388,6389,-6146,-6057,-6359,-6127]]},{"type":"Polygon","properties":{"NOM_MUN":"Xicotlán","POB1":1241},"arcs":[[-6000,-6376,-5792,-6111,-5891,-5963]]},{"type":"Polygon","properties":{"NOM_MUN":"Xiutetelco","POB1":37910},"arcs":[[6390,6391,-6345,-5995,-6353,-6090]]},{"type":"Polygon","properties":{"NOM_MUN":"Xochiapulco","POB1":3911},"arcs":[[-6347,6392,6393,6394]]},{"type":"Polygon","properties":{"NOM_MUN":"Xochiltepec","POB1":3187},"arcs":[[-6333,-6253,-6328,-5768,-6017,-6281,-6015]]},{"type":"Polygon","properties":{"NOM_MUN":"Xochitlán de Vicente Suárez","POB1":12249},"arcs":[[-6098,6395,-6107,6396,-6183,6397,-6393,-6350]]},{"type":"Polygon","properties":{"NOM_MUN":"Xochitlán Todos Santos","POB1":6049},"arcs":[[6398,-6357,-6150,-6173,-6105,-6374,-6318]]},{"type":"Polygon","properties":{"NOM_MUN":"Yaonáhuac","POB1":7514},"arcs":[[-6370,-6085,-6352]]},{"type":"Polygon","properties":{"NOM_MUN":"Yehualtepec","POB1":22976},"arcs":[[-6317,-6216,-6356,-6399]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacapala","POB1":4224},"arcs":[[-6379,-6171,-6341,-6303,-5928,-5771,-5885,-6301,-5984,-6049]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacapoaxtla","POB1":53295},"arcs":[[-6182,-5935,-6373,6399,6400,-6394,-6398]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacatlán","POB1":76296},"arcs":[[-1984,-5776,-6061,-5973,-5766,-6336,-6349,-5813,-5988]]},{"type":"Polygon","properties":{"NOM_MUN":"Zapotitlán","POB1":8220},"arcs":[[-5622,-5822,-6322,-6260,-6272,-5869,-5393,-5867]]},{"type":"Polygon","properties":{"NOM_MUN":"Zapotitlán de Méndez","POB1":5608},"arcs":[[-6095,-6122,-6108,-6396,-6097,6401,-6331,-5870]]},{"type":"Polygon","properties":{"NOM_MUN":"Zaragoza","POB1":15444},"arcs":[[6402,-6400,-6372]]},{"type":"Polygon","properties":{"NOM_MUN":"Zautla","POB1":19438},"arcs":[[-6348,-6395,-6401,-6403,-6371,-5942,-6119]]},{"type":"Polygon","properties":{"NOM_MUN":"Zihuateutla","POB1":12530},"arcs":[[6403,6404,-6143,-6368,-6059,-6147,-6390]]},{"type":"Polygon","properties":{"NOM_MUN":"Zinacatepec","POB1":15690},"arcs":[[-5901,-6273,-5802,-5786]]},{"type":"Polygon","properties":{"NOM_MUN":"Zongozotla","POB1":4599},"arcs":[[-6100,-5916,-6337,-5764,-6330,-6402]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Zoquiapan","POB1":2639},"arcs":[[[-6132,-5937,-6181,-6397,-6110,-6065]],[[-5856,-5933,-6134]]]},{"type":"Polygon","properties":{"NOM_MUN":"Zoquitlán","POB1":20529},"arcs":[[-6013,-6299,-5904,-5902,-5784]]},{"type":"Polygon","properties":{"NOM_MUN":"Amealco de Bonfil","POB1":62197},"arcs":[[-2897,-2881,-2880,-2879,-3237,-3368,-3367,-3366,-3365,-3372,-3433,6405,6406]]},{"type":"Polygon","properties":{"NOM_MUN":"Pinal de Amoles","POB1":27093},"arcs":[[6407,6408,6409,6410,-1316,6411]]},{"type":"Polygon","properties":{"NOM_MUN":"Arroyo Seco","POB1":12910},"arcs":[[6412,6413,6414,6415,6416,6417,6418,6419,6420,-6412,-1315,-1314,-1313,-1312,-1311,-1310,-1494,-1493,-1492,-1491,-1490,-1489,-1488,-1487,-1486,-1485,-1484,6421]]},{"type":"Polygon","properties":{"NOM_MUN":"Cadereyta de Montes","POB1":64183},"arcs":[[-2243,-2442,-2314,-2313,-2312,6422,6423,6424,-6410,6425]]},{"type":"Polygon","properties":{"NOM_MUN":"Colón","POB1":58171},"arcs":[[6426,6427,6428,6429,6430,-1470]]},{"type":"Polygon","properties":{"NOM_MUN":"Corregidora","POB1":143073},"arcs":[[6431,-1379,-1378,-1377,-1376,-1375,-1374,-1373,-1372,-1371,-1370,-1369,-1368,-1367,-1391,-1390,-1389,-1303,-1306,6432]]},{"type":"Polygon","properties":{"NOM_MUN":"Ezequiel Montes","POB1":38123},"arcs":[[-6423,-2311,-2310,-2309,-2308,-2307,-2306,-2305,-2304,-2303,-2302,6433,-6428,6434]]},{"type":"Polygon","properties":{"NOM_MUN":"Huimilpan","POB1":35554},"arcs":[[6435,6436,-6406,-3432,-3431,-3430,-1335,-1384,-1383,-1382,-1381,-1380,-6432,6437,6438]]},{"type":"Polygon","properties":{"NOM_MUN":"Jalpan de Serra","POB1":25550},"arcs":[[6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,-2245,6450,-6408,-6421,6451,6452,6453,6454]]},{"type":"Polygon","properties":{"NOM_MUN":"Landa de Matamoros","POB1":19929},"arcs":[[6455,6456,-2252,-2152,-2102,-2246,-6450,6457,6458]]},{"type":"Polygon","properties":{"NOM_MUN":"El Marqués","POB1":116458},"arcs":[[-1471,-6431,6459,-6439,6460,-1443,-1442,-1441]]},{"type":"Polygon","properties":{"NOM_MUN":"Pedro Escobedo","POB1":63966},"arcs":[[6461,6462,-6436,-6460,-6430]]},{"type":"Polygon","properties":{"NOM_MUN":"Peñamiller","POB1":18441},"arcs":[[-6425,6463,-1466,-1460,-1459,-1458,-1457,-1456,-1455,-1454,-1453,-1452,-1451,-1450,-1502,-1501,-1500,-1499,-1498,-1497,-1496,-1495,-1319,-1318,-1317,-6411]]},{"type":"Polygon","properties":{"NOM_MUN":"Querétaro","POB1":801940},"arcs":[[-6461,-6438,-6433,-1305,-1304,-1309,-1292,-1291,-1290,-1444]]},{"type":"Polygon","properties":{"NOM_MUN":"San Joaquín","POB1":8865},"arcs":[[-6426,-6409,-6451,-2244]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan del Río","POB1":241699},"arcs":[[-2090,-2089,-2088,-3204,-3203,-3202,-3201,-3200,-2893,-2892,-2891,-2898,-6407,-6437,-6463,6464]]},{"type":"Polygon","properties":{"NOM_MUN":"Tequisquiapan","POB1":63413},"arcs":[[-6434,-2301,-2091,-6465,-6462,-6429]]},{"type":"Polygon","properties":{"NOM_MUN":"Tolimán","POB1":26372},"arcs":[[-6424,-6435,-6427,-1469,-1468,-1467,-6464]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Cozumel","POB1":79535},"arcs":[[[6465]],[[6466,6467]],[[6468,6469]],[[6470]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Felipe Carrillo Puerto","POB1":75026},"arcs":[[[6471,6472,6473,6474,6475,6476,6477,6478]],[[6479]],[[6480]],[[6481]],[[6482]],[[6483]],[[6484]],[[6485]],[[6486]],[[6487]],[[6488]],[[6489]],[[6490]],[[6491]],[[6492]],[[6493]],[[6494]],[[6495]],[[6496]],[[6497]],[[6498]],[[6499]],[[6500]],[[6501]],[[6502]],[[6503]],[[6504]],[[6505]],[[6506]],[[6507]],[[6508]],[[6509]],[[6510]],[[6511]],[[6512]],[[6513]],[[6514]],[[6515]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Isla Mujeres","POB1":16203},"arcs":[[[6516,6517,6518,6519,6520]],[[6521]],[[6522,6523]],[[6524]],[[6525]],[[6526]],[[6527]],[[6528]],[[6529]],[[6530]],[[6531]],[[6532]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Othón P. Blanco","POB1":244553},"arcs":[[[6533]],[[6534]],[[6535]],[[6536]],[[6537]],[[6538]],[[6539]],[[6540]],[[6541]],[[6542]],[[6543]],[[6544]],[[6545]],[[6546]],[[6547]],[[6548]],[[6549]],[[6550]],[[6551]],[[6552]],[[6553]],[[6554]],[[6555]],[[6556]],[[6557]],[[6558]],[[6559]],[[6560]],[[6561]],[[6562]],[[-6478,6563,6564,6565,-251,-242,6566]]]},{"type":"Polygon","properties":{"NOM_MUN":"Benito Juárez","POB1":661176},"arcs":[[6567,6568,-6521,6569]]},{"type":"Polygon","properties":{"NOM_MUN":"José María Morelos","POB1":36179},"arcs":[[-6479,-6567,-241,6570,6571,6572,6573]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Lázaro Cárdenas","POB1":25333},"arcs":[[[6574,6575,6576,-6517,-6569,6577]],[[-6524,6578,6579,6580]]]},{"type":"Polygon","properties":{"NOM_MUN":"Solidaridad","POB1":159310},"arcs":[[6581,-6468,6582,6583,6584,6585,6586,6587,6588,6589,-6578,-6568]]},{"type":"Polygon","properties":{"NOM_MUN":"Tulum","POB1":28263},"arcs":[[-6470,6590,6591,6592,-6476,6593,-6588,6594,6595,6596,6597,6598,6599,6600]]},{"type":"Polygon","properties":{"NOM_MUN":"Ahualulco","POB1":18644},"arcs":[[6601,6602,6603,6604]]},{"type":"Polygon","properties":{"NOM_MUN":"Alaquines","POB1":8186},"arcs":[[6605,6606,6607,6608,6609]]},{"type":"Polygon","properties":{"NOM_MUN":"Aquismón","POB1":47423},"arcs":[[6610,6611,6612,6613,-6448,-6447,-6446,-6445,-6444,-6443,-6442,-6441,-6440,6614,6615]]},{"type":"Polygon","properties":{"NOM_MUN":"Armadillo de los Infante","POB1":4436},"arcs":[[6616,6617,6618,6619,6620,6621]]},{"type":"Polygon","properties":{"NOM_MUN":"Cárdenas","POB1":18937},"arcs":[[6622,6623,-6608]]},{"type":"Polygon","properties":{"NOM_MUN":"Catorce","POB1":9716},"arcs":[[6624,6625,6626,6627,6628,6629,6630]]},{"type":"Polygon","properties":{"NOM_MUN":"Cedral","POB1":18485},"arcs":[[-3880,6631,6632,-6628,6633]]},{"type":"Polygon","properties":{"NOM_MUN":"Cerritos","POB1":21394},"arcs":[[6634,-6620,6635,6636,6637,6638]]},{"type":"Polygon","properties":{"NOM_MUN":"Cerro de San Pedro","POB1":4021},"arcs":[[6639,-6617,6640,6641]]},{"type":"Polygon","properties":{"NOM_MUN":"Ciudad del Maíz","POB1":31323},"arcs":[[6642,6643,-6638,6644,6645,6646,6647,-6610]]},{"type":"Polygon","properties":{"NOM_MUN":"Ciudad Fernández","POB1":43528},"arcs":[[6648,6649,6650,6651]]},{"type":"Polygon","properties":{"NOM_MUN":"Tancanhuitz","POB1":21039},"arcs":[[6652,6653,6654,6655,-6612,6656]]},{"type":"Polygon","properties":{"NOM_MUN":"Ciudad Valles","POB1":167713},"arcs":[[6657,6658,6659,6660,-6616,6661,6662]]},{"type":"Polygon","properties":{"NOM_MUN":"Coxcatlán","POB1":17015},"arcs":[[6663,6664,6665,-6655]]},{"type":"Polygon","properties":{"NOM_MUN":"Charcas","POB1":21138},"arcs":[[6666,6667,6668,6669,-6631]]},{"type":"Polygon","properties":{"NOM_MUN":"Ebano","POB1":41529},"arcs":[[6670,6671]]},{"type":"Polygon","properties":{"NOM_MUN":"Guadalcázar","POB1":25985},"arcs":[[6672,6673,-6645,-6637,6674,6675,-3875,-3947]]},{"type":"Polygon","properties":{"NOM_MUN":"Huehuetlán","POB1":15311},"arcs":[[6676,-6613,-6656,-6666,6677]]},{"type":"Polygon","properties":{"NOM_MUN":"Lagunillas","POB1":5774},"arcs":[[6678,-6419,-6418,-6417,-6416,-6415,-6414,-6413,6679,6680]]},{"type":"Polygon","properties":{"NOM_MUN":"Matehuala","POB1":91522},"arcs":[[-3878,-3877,6681,6682,-6632,-3879]]},{"type":"Polygon","properties":{"NOM_MUN":"Mexquitic de Carmona","POB1":53442},"arcs":[[6683,6684,6685,-6603]]},{"type":"Polygon","properties":{"NOM_MUN":"Moctezuma","POB1":19327},"arcs":[[6686,6687,6688,6689,6690,-6605]]},{"type":"Polygon","properties":{"NOM_MUN":"Rayón","POB1":15707},"arcs":[[6691,6692,-6623,-6607,6693,6694,-6681]]},{"type":"Polygon","properties":{"NOM_MUN":"Rioverde","POB1":91924},"arcs":[[-6624,-6693,6695,-1480,6696,-6652,6697,6698,-6643,-6609]]},{"type":"Polygon","properties":{"NOM_MUN":"Salinas","POB1":30190},"arcs":[[-6669,6699,-6688,6700,6701,6702,6703,6704,6705]]},{"type":"Polygon","properties":{"NOM_MUN":"San Antonio","POB1":9390},"arcs":[[6706,6707,-6653,6708]]},{"type":"Polygon","properties":{"NOM_MUN":"San Ciro de Acosta","POB1":10171},"arcs":[[-6692,-6680,-6422,-1483,-1481,-6696]]},{"type":"Polygon","properties":{"NOM_MUN":"San Luis Potosí","POB1":772604},"arcs":[[-6691,6709,6710,6711,-6642,6712,6713,6714,-6684,-6602]]},{"type":"Polygon","properties":{"NOM_MUN":"San Martín Chalchicuautla","POB1":21347},"arcs":[[-2240,-2239,-2238,-2237,-2236,-2235,-2234,-2233,-2232,-2231,-2230,6715,6716,6717,6718,6719]]},{"type":"Polygon","properties":{"NOM_MUN":"San Nicolás Tolentino","POB1":5466},"arcs":[[6720,-6698,-6651,6721,-6621,-6635]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina","POB1":11835},"arcs":[[-6454,-6453,-6452,-6420,-6679,-6695,6722]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María del Río","POB1":40326},"arcs":[[-1447,-1434,-1438,6723,6724,-6649,-6697,-1479,-1445,6725]]},{"type":"Polygon","properties":{"NOM_MUN":"Santo Domingo","POB1":12043},"arcs":[[-6706,6726,6727,6728,-6625,-6670]]},{"type":"Polygon","properties":{"NOM_MUN":"San Vicente Tancuayalab","POB1":14958},"arcs":[[6729,6730,6731,6732,6733,6734]]},{"type":"Polygon","properties":{"NOM_MUN":"Soledad de Graciano Sánchez","POB1":267839},"arcs":[[-6640,-6712,6735,-6618]]},{"type":"Polygon","properties":{"NOM_MUN":"Tamasopo","POB1":28848},"arcs":[[6736,-6662,-6615,-6455,-6723,-6694,-6606,-6648]]},{"type":"Polygon","properties":{"NOM_MUN":"Tamazunchale","POB1":96820},"arcs":[[-2229,-2228,-2227,-2226,-2225,-2224,-2223,-2222,-2221,-2220,-2413,-2114,-2113,-2112,-2111,-2110,-2109,-2108,-2107,-2126,-2125,-2124,-2123,-2122,-2121,-2120,-2119,-2327,-2000,-2251,6737,6738,-6716]]},{"type":"Polygon","properties":{"NOM_MUN":"Tampacán","POB1":15838},"arcs":[[6739,6740,6741,-6717,-6739]]},{"type":"Polygon","properties":{"NOM_MUN":"Tampamolón Corona","POB1":14274},"arcs":[[-6718,-6742,6742,-6664,-6654,-6708,6743]]},{"type":"Polygon","properties":{"NOM_MUN":"Tamuín","POB1":37956},"arcs":[[6744,-6671,6745,-6734,6746,-6660,6747,6748]]},{"type":"Polygon","properties":{"NOM_MUN":"Tanlajás","POB1":19312},"arcs":[[-6709,-6657,-6611,-6661,-6747,-6733,6749]]},{"type":"Polygon","properties":{"NOM_MUN":"Tanquián de Escobedo","POB1":14382},"arcs":[[6750,-6719,-6744,-6707,-6750,-6732]]},{"type":"Polygon","properties":{"NOM_MUN":"Tierra Nueva","POB1":9024},"arcs":[[-1448,-6726]]},{"type":"Polygon","properties":{"NOM_MUN":"Vanegas","POB1":7902},"arcs":[[-3881,-6634,-6627,6751,6752,6753,-3891]]},{"type":"Polygon","properties":{"NOM_MUN":"Venado","POB1":14492},"arcs":[[-6700,-6668,6754,6755,6756,-6689]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Arriaga","POB1":16316},"arcs":[[-6715,6757,-1436,-1406,6758,-6685]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Guadalupe","POB1":9779},"arcs":[[-6630,6759,-6682,-3876,-6676,6760,-6755,-6667]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de la Paz","POB1":5350},"arcs":[[-6629,-6633,-6683,-6760]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Ramos","POB1":37928},"arcs":[[-6705,6761,6762,6763,6764,6765,-6727]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Reyes","POB1":46898},"arcs":[[6766,-6724,-1437,-6758,-6714]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Hidalgo","POB1":14876},"arcs":[[-6619,-6736,-6711,6767,-6756,-6761,-6675,-6636]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Juárez","POB1":10174},"arcs":[[-6644,-6699,-6721,-6639]]},{"type":"Polygon","properties":{"NOM_MUN":"Axtla de Terrazas","POB1":33245},"arcs":[[-6678,-6665,-6743,-6741,6768,6769]]},{"type":"Polygon","properties":{"NOM_MUN":"Xilitla","POB1":51498},"arcs":[[-6770,6770,-2253,-6457,-6456,-6459,-6458,-6449,-6614,-6677]]},{"type":"Polygon","properties":{"NOM_MUN":"Zaragoza","POB1":24596},"arcs":[[-6650,-6725,-6767,-6713,-6641,-6622,-6722]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Arista","POB1":15528},"arcs":[[-6710,-6690,-6757,-6768]]},{"type":"Polygon","properties":{"NOM_MUN":"Matlapa","POB1":30299},"arcs":[[-6740,-6738,-2254,-6771,-6769]]},{"type":"Polygon","properties":{"NOM_MUN":"El Naranjo","POB1":20495},"arcs":[[6771,6772,6773,-6663,-6737,-6647]]},{"type":"Polygon","properties":{"NOM_MUN":"Ahome","POB1":416299},"arcs":[[6774,6775,6776,6777,6778,6779]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Angostura","POB1":44993},"arcs":[[[6780]],[[6781]],[[6782]],[[6783,6784,6785,6786,6787]]]},{"type":"Polygon","properties":{"NOM_MUN":"Badiraguato","POB1":29999},"arcs":[[-1270,6788,6789,6790,-947]]},{"type":"Polygon","properties":{"NOM_MUN":"Concordia","POB1":28493},"arcs":[[-1247,-1242,6791,6792]]},{"type":"Polygon","properties":{"NOM_MUN":"Cosalá","POB1":16697},"arcs":[[6793,6794,6795,-1268]]},{"type":"Polygon","properties":{"NOM_MUN":"Culiacán","POB1":858638},"arcs":[[-1269,-6796,6796,6797,6798,6799,-6789]]},{"type":"Polygon","properties":{"NOM_MUN":"Choix","POB1":32998},"arcs":[[-951,-1074,-859,-1042,6800,6801,6802,-916]]},{"type":"Polygon","properties":{"NOM_MUN":"Elota","POB1":42907},"arcs":[[6803,6804,-6797,-6795]]},{"type":"Polygon","properties":{"NOM_MUN":"Escuinapa","POB1":54131},"arcs":[[-3725,-3701,-3778,6805,6806]]},{"type":"Polygon","properties":{"NOM_MUN":"El Fuerte","POB1":97536},"arcs":[[6807,-6775,6808,-6802]]},{"type":"Polygon","properties":{"NOM_MUN":"Guasave","POB1":285912},"arcs":[[6809,-6787,6810,-6777,6811]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Mazatlán","POB1":438434},"arcs":[[[6812]],[[6813]],[[6814]],[[6815]],[[6816]],[[6817]],[[6818]],[[-1248,-6793,6819,6820,6821]]]},{"type":"Polygon","properties":{"NOM_MUN":"Mocorito","POB1":45847},"arcs":[[-6790,-6800,6822,-6784,6823,6824]]},{"type":"Polygon","properties":{"NOM_MUN":"Rosario","POB1":49380},"arcs":[[-3726,-6807,6825,-6820,-6792,-1241]]},{"type":"Polygon","properties":{"NOM_MUN":"Salvador Alvarado","POB1":79085},"arcs":[[6826,-6824,-6788,-6810]]},{"type":"Polygon","properties":{"NOM_MUN":"San Ignacio","POB1":22527},"arcs":[[-1249,-6822,6827,-6804,-6794,-1267]]},{"type":"Polygon","properties":{"NOM_MUN":"Sinaloa","POB1":88282},"arcs":[[-948,-6791,-6825,-6827,-6812,-6776,-6808,-6801,-1041]]},{"type":"Polygon","properties":{"NOM_MUN":"Navolato","POB1":135603},"arcs":[[-6799,6828,-6785,-6823]]},{"type":"Polygon","properties":{"NOM_MUN":"Aconchi","POB1":2637},"arcs":[[6829,6830,6831,6832,6833,6834]]},{"type":"Polygon","properties":{"NOM_MUN":"Agua Prieta","POB1":79138},"arcs":[[-972,6835,6836,6837,6838,6839]]},{"type":"Polygon","properties":{"NOM_MUN":"Alamos","POB1":25848},"arcs":[[-917,-6803,-6809,-6780,6840,6841,6842,-1075]]},{"type":"Polygon","properties":{"NOM_MUN":"Altar","POB1":9049},"arcs":[[6843,6844,6845,6846,6847,6848,6849]]},{"type":"Polygon","properties":{"NOM_MUN":"Arivechi","POB1":1253},"arcs":[[6850,6851]]},{"type":"Polygon","properties":{"NOM_MUN":"Arizpe","POB1":3037},"arcs":[[6852,6853,6854,6855,6856,6857,6858,6859]]},{"type":"Polygon","properties":{"NOM_MUN":"Atil","POB1":625},"arcs":[[6860,6861]]},{"type":"Polygon","properties":{"NOM_MUN":"Bacadéhuachi","POB1":1252},"arcs":[[6862,6863,6864,6865,6866,6867]]},{"type":"Polygon","properties":{"NOM_MUN":"Bacanora","POB1":784},"arcs":[[6868,6869,-6851,6870,6871,6872]]},{"type":"Polygon","properties":{"NOM_MUN":"Bacerac","POB1":1467},"arcs":[[-970,-890,6873,6874,6875,6876]]},{"type":"Polygon","properties":{"NOM_MUN":"Bacoachi","POB1":1646},"arcs":[[6877,6878,6879,-6853]]},{"type":"Polygon","properties":{"NOM_MUN":"Bácum","POB1":22821},"arcs":[[6880,6881,6882,6883]]},{"type":"Polygon","properties":{"NOM_MUN":"Banámichi","POB1":1646},"arcs":[[6884,6885,6886,-6856]]},{"type":"Polygon","properties":{"NOM_MUN":"Baviácora","POB1":3560},"arcs":[[6887,6888,6889,6890,-6831]]},{"type":"Polygon","properties":{"NOM_MUN":"Bavispe","POB1":1454},"arcs":[[-6877,6891,-6836,-971]]},{"type":"Polygon","properties":{"NOM_MUN":"Benjamín Hill","POB1":5275},"arcs":[[6892,6893,6894,6895,6896]]},{"type":"Polygon","properties":{"NOM_MUN":"Caborca","POB1":81309},"arcs":[[6897,6898,6899,6900,-6849,6901]]},{"type":"Polygon","properties":{"NOM_MUN":"Cajeme","POB1":409310},"arcs":[[6902,6903,6904,6905,6906,6907,6908,6909,-6884]]},{"type":"Polygon","properties":{"NOM_MUN":"Cananea","POB1":32936},"arcs":[[6910,-6878,-6860,6911,6912,6913]]},{"type":"Polygon","properties":{"NOM_MUN":"Carbó","POB1":5347},"arcs":[[6914,6915,6916,6917,6918,-6894]]},{"type":"Polygon","properties":{"NOM_MUN":"La Colorada","POB1":1663},"arcs":[[6919,6920,6921,6922,6923,6924,6925]]},{"type":"Polygon","properties":{"NOM_MUN":"Cucurpe","POB1":958},"arcs":[[-6858,6926,6927,6928,6929]]},{"type":"Polygon","properties":{"NOM_MUN":"Cumpas","POB1":6362},"arcs":[[6930,6931,6932,6933,-6885,-6855,6934]]},{"type":"Polygon","properties":{"NOM_MUN":"Divisaderos","POB1":813},"arcs":[[-6865,6935,6936,6937,6938]]},{"type":"Polygon","properties":{"NOM_MUN":"Empalme","POB1":54131},"arcs":[[6939,6940,6941,6942]]},{"type":"Polygon","properties":{"NOM_MUN":"Etchojoa","POB1":60717},"arcs":[[6943,6944,6945,6946]]},{"type":"Polygon","properties":{"NOM_MUN":"Fronteras","POB1":8639},"arcs":[[6947,-6879,-6911,6948,-6838]]},{"type":"Polygon","properties":{"NOM_MUN":"Granados","POB1":1150},"arcs":[[-6866,-6939,6949,6950]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Guaymas","POB1":149299},"arcs":[[[6951]],[[6952]],[[6953]],[[6954]],[[6955]],[[6956]],[[6957]],[[6958]],[[6959]],[[6960]],[[6961]],[[6962]],[[6963]],[[6964]],[[6965]],[[6966]],[[6967]],[[6968]],[[6969,-6903,-6883,6970,6971,-6942,6972,-6940,6973,6974,-6925],[6975]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Hermosillo","POB1":784342},"arcs":[[[6976,-6918,6977,6978,6979,-6926,-6975,6980]],[[6981]],[[6982]],[[6983]],[[6984]]]},{"type":"Polygon","properties":{"NOM_MUN":"Huachinera","POB1":1350},"arcs":[[-889,6985,-6868,6986,6987,-6874]]},{"type":"Polygon","properties":{"NOM_MUN":"Huásabas","POB1":962},"arcs":[[6988,-6932,6989,-6987,-6867,-6951]]},{"type":"Polygon","properties":{"NOM_MUN":"Huatabampo","POB1":79313},"arcs":[[-6944,6990,-6841,-6779,6991]]},{"type":"Polygon","properties":{"NOM_MUN":"Huépac","POB1":1154},"arcs":[[-6934,6992,-6835,6993,6994,6995,-6886]]},{"type":"Polygon","properties":{"NOM_MUN":"Imuris","POB1":12316},"arcs":[[6996,6997,-6912,-6859,-6930,6998]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena","POB1":29707},"arcs":[[-6999,-6929,6999,7000,7001]]},{"type":"Polygon","properties":{"NOM_MUN":"Mazatán","POB1":1350},"arcs":[[-6980,7002,7003,-6920]]},{"type":"Polygon","properties":{"NOM_MUN":"Moctezuma","POB1":4680},"arcs":[[-6950,-6938,7004,7005,-6888,-6830,-6993,-6933,-6989]]},{"type":"Polygon","properties":{"NOM_MUN":"Naco","POB1":6401},"arcs":[[-6839,-6949,-6914,7006,7007]]},{"type":"Polygon","properties":{"NOM_MUN":"Nácori Chico","POB1":2051},"arcs":[[-888,-1029,7008,-6863,-6986]]},{"type":"Polygon","properties":{"NOM_MUN":"Nacozari de García","POB1":12751},"arcs":[[-6837,-6892,-6876,7009,-6935,-6854,-6880,-6948]]},{"type":"Polygon","properties":{"NOM_MUN":"Navojoa","POB1":157729},"arcs":[[-6908,7010,-6842,-6991,-6947]]},{"type":"Polygon","properties":{"NOM_MUN":"Nogales","POB1":220292},"arcs":[[7011,-6997,-7002,7012,7013,7014]]},{"type":"Polygon","properties":{"NOM_MUN":"Onavas","POB1":399},"arcs":[[7015,7016,-6905,7017,7018]]},{"type":"Polygon","properties":{"NOM_MUN":"Opodepe","POB1":2878},"arcs":[[-6857,-6887,-6996,7019,-6915,-6893,7020,-6927]]},{"type":"Polygon","properties":{"NOM_MUN":"Oquitoa","POB1":443},"arcs":[[7021,7022,-6846,7023,-6861]]},{"type":"Polygon","properties":{"NOM_MUN":"Pitiquito","POB1":9468},"arcs":[[-6902,-6848,7024,-6895,-6919,-6977,7025]]},{"type":"Polygon","properties":{"NOM_MUN":"Puerto Peñasco","POB1":57342},"arcs":[[7026,7027,7028,-6899,7029]]},{"type":"Polygon","properties":{"NOM_MUN":"Quiriego","POB1":3356},"arcs":[[-1076,-6843,-7011,-6907,7030]]},{"type":"Polygon","properties":{"NOM_MUN":"Rayón","POB1":1599},"arcs":[[-6995,7031,-6833,7032,7033,-6916,-7020]]},{"type":"Polygon","properties":{"NOM_MUN":"Rosario","POB1":5226},"arcs":[[7034,-1045,-1077,-7031,-6906,-7017]]},{"type":"Polygon","properties":{"NOM_MUN":"Sahuaripa","POB1":6020},"arcs":[[-6864,-7009,-1028,-1073,7035,-6871,-6852,-6870,7036,7037,-6936]]},{"type":"Polygon","properties":{"NOM_MUN":"San Felipe de Jesús","POB1":396},"arcs":[[-6834,-7032,-6994]]},{"type":"Polygon","properties":{"NOM_MUN":"San Javier","POB1":492},"arcs":[[7038,-6923,7039]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"San Luis Río Colorado","POB1":178380},"arcs":[[[7040]],[[7041,7042,7043,-7027,7044,-109,-108,-107]]]},{"type":"Polygon","properties":{"NOM_MUN":"San Miguel de Horcasitas","POB1":8382},"arcs":[[-7034,7045,-6978,-6917]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pedro de la Cueva","POB1":1604},"arcs":[[7046,-7037,-6869,7047,7048,-6889,-7006]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Ana","POB1":16014},"arcs":[[-6928,-7021,-6897,7049,7050,-7000]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz","POB1":1998},"arcs":[[7051,-7007,-6913,-6998,-7012]]},{"type":"Polygon","properties":{"NOM_MUN":"Sáric","POB1":2703},"arcs":[[7052,-6844,7053,-7014]]},{"type":"Polygon","properties":{"NOM_MUN":"Soyopa","POB1":1284},"arcs":[[-6873,7054,-7019,7055,-7040,-6922,7056,-7048]]},{"type":"Polygon","properties":{"NOM_MUN":"Suaqui Grande","POB1":1121},"arcs":[[-7039,-7056,-7018,-6904,-6970,-6924]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepache","POB1":1365},"arcs":[[-7038,-7047,-7005,-6937]]},{"type":"Polygon","properties":{"NOM_MUN":"Trincheras","POB1":1731},"arcs":[[-7050,-6896,-7025,-6847,-7023,7057]]},{"type":"Polygon","properties":{"NOM_MUN":"Tubutama","POB1":1735},"arcs":[[-7013,-7001,-7051,-7058,-7022,-6862,-7024,-6845,-7053]]},{"type":"Polygon","properties":{"NOM_MUN":"Ures","POB1":9185},"arcs":[[-6832,-6891,7058,-7003,-6979,-7046,-7033]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Hidalgo","POB1":1738},"arcs":[[-6875,-6988,-6990,-6931,-7010]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Pesqueira","POB1":1254},"arcs":[[-7049,-7057,-6921,-7004,-7059,-6890]]},{"type":"Polygon","properties":{"NOM_MUN":"Yécora","POB1":6046},"arcs":[[-1072,-1046,-7035,-7016,-7055,-6872,-7036]]},{"type":"Polygon","properties":{"NOM_MUN":"General Plutarco Elías Calles","POB1":15652},"arcs":[[-7029,7059,-6900]]},{"type":"Polygon","properties":{"NOM_MUN":"Benito Juárez","POB1":22009},"arcs":[[-6946,7060,-6909]]},{"type":"Polygon","properties":{"NOM_MUN":"San Ignacio Río Muerto","POB1":14136},"arcs":[[-6882,7061,-6971]]},{"type":"Polygon","properties":{"NOM_MUN":"Balancán","POB1":56739},"arcs":[[-255,7062,7063,7064,-222]]},{"type":"Polygon","properties":{"NOM_MUN":"Cárdenas","POB1":248481},"arcs":[[7065,7066,-755,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076]]},{"type":"Polygon","properties":{"NOM_MUN":"Centla","POB1":102110},"arcs":[[7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,-226]]},{"type":"Polygon","properties":{"NOM_MUN":"Centro","POB1":640359},"arcs":[[-7080,7088,7089,7090,-672,-753,-752,-751,-750,-749,7091,7092]]},{"type":"Polygon","properties":{"NOM_MUN":"Comalcalco","POB1":192802},"arcs":[[7093,7094,-7066,7095]]},{"type":"Polygon","properties":{"NOM_MUN":"Cunduacán","POB1":126416},"arcs":[[7096,7097,-7092,-756,-7067,-7095]]},{"type":"Polygon","properties":{"NOM_MUN":"Emiliano Zapata","POB1":29518},"arcs":[[-223,-7065,7098,-725,-677,-724,-519,7099,-246]]},{"type":"Polygon","properties":{"NOM_MUN":"Huimanguillo","POB1":179285},"arcs":[[-754,-670,-669,-668,-738,-717,-790,7100,7101,7102,7103,-7068]]},{"type":"Polygon","properties":{"NOM_MUN":"Jalapa","POB1":36391},"arcs":[[7104,7105,-7090,7106]]},{"type":"Polygon","properties":{"NOM_MUN":"Jalpa de Méndez","POB1":83356},"arcs":[[-7082,7107,-7097,-7094,7108]]},{"type":"Polygon","properties":{"NOM_MUN":"Jonuta","POB1":29511},"arcs":[[-247,-7100,-522,7109,-7078,-225]]},{"type":"Polygon","properties":{"NOM_MUN":"Macuspana","POB1":153132},"arcs":[[-7110,-521,-729,-764,-797,7110,-7107,-7089,-7079]]},{"type":"Polygon","properties":{"NOM_MUN":"Nacajuca","POB1":115066},"arcs":[[-7098,-7108,-7081,-7093]]},{"type":"Polygon","properties":{"NOM_MUN":"Paraíso","POB1":86620},"arcs":[[7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,-7083,-7109,-7096,-7077,7121]]},{"type":"Polygon","properties":{"NOM_MUN":"Tacotalpa","POB1":46302},"arcs":[[-7111,-796,-761,-637,-460,7122,-7105]]},{"type":"Polygon","properties":{"NOM_MUN":"Teapa","POB1":53555},"arcs":[[-7123,-466,-658,-739,-666,-7091,-7106]]},{"type":"Polygon","properties":{"NOM_MUN":"Tenosique","POB1":58960},"arcs":[[7123,7124,7125,-726,-7099,-7064]]},{"type":"Polygon","properties":{"NOM_MUN":"Abasolo","POB1":12070},"arcs":[[7126,7127,7128,7129,7130]]},{"type":"Polygon","properties":{"NOM_MUN":"Aldama","POB1":29470},"arcs":[[7131,7132,7133,7134,7135]]},{"type":"Polygon","properties":{"NOM_MUN":"Altamira","POB1":212001},"arcs":[[7136,7137,7138,7139,7140,-7133]]},{"type":"Polygon","properties":{"NOM_MUN":"Antiguo Morelos","POB1":9003},"arcs":[[-6748,-6659,7141,7142,7143]]},{"type":"Polygon","properties":{"NOM_MUN":"Burgos","POB1":4589},"arcs":[[7144,7145,7146,7147,-3939,-3938,-3907,-3868,7148]]},{"type":"Polygon","properties":{"NOM_MUN":"Bustamante","POB1":7636},"arcs":[[7149,7150,-6673,-3946,7151]]},{"type":"Polygon","properties":{"NOM_MUN":"Camargo","POB1":14933},"arcs":[[7152,-3902,-3885,7153,7154]]},{"type":"Polygon","properties":{"NOM_MUN":"Casas","POB1":4423},"arcs":[[7155,7156,7157,7158,-7129,7159,-7135,7160,7161]]},{"type":"Polygon","properties":{"NOM_MUN":"Ciudad Madero","POB1":197216},"arcs":[[7162,7163,-7138,7164]]},{"type":"Polygon","properties":{"NOM_MUN":"Cruillas","POB1":2011},"arcs":[[-7131,7165,7166,-7146,7167]]},{"type":"Polygon","properties":{"NOM_MUN":"Gómez Farías","POB1":8786},"arcs":[[7168,7169,7170,7171,7172]]},{"type":"Polygon","properties":{"NOM_MUN":"González","POB1":43435},"arcs":[[-7134,-7141,7173,7174,7175,7176,-7161]]},{"type":"Polygon","properties":{"NOM_MUN":"Güémez","POB1":15659},"arcs":[[7177,-7157,7178,7179,-3915,7180]]},{"type":"Polygon","properties":{"NOM_MUN":"Guerrero","POB1":4477},"arcs":[[7181,7182,-3959,-3968,-3823,7183]]},{"type":"Polygon","properties":{"NOM_MUN":"Gustavo Díaz Ordaz","POB1":15775},"arcs":[[7184,-3900,-7153,7185]]},{"type":"Polygon","properties":{"NOM_MUN":"Hidalgo","POB1":23793},"arcs":[[7186,-7181,-3914,-3833,7187,7188]]},{"type":"Polygon","properties":{"NOM_MUN":"Jaumave","POB1":15105},"arcs":[[7189,7190,-7170,7191,7192,7193,-3916,-7180]]},{"type":"Polygon","properties":{"NOM_MUN":"Jiménez","POB1":8338},"arcs":[[-7159,7194,7195,-7166,-7130]]},{"type":"Polygon","properties":{"NOM_MUN":"Llera","POB1":17333},"arcs":[[-7177,7196,-7171,-7191,7197,-7162]]},{"type":"Polygon","properties":{"NOM_MUN":"Mainero","POB1":2579},"arcs":[[7198,-3838,-3932,-3942]]},{"type":"Polygon","properties":{"NOM_MUN":"El Mante","POB1":115792},"arcs":[[7199,-7175,7200,-6749,-7144,7201,-7173]]},{"type":"Polygon","properties":{"NOM_MUN":"Matamoros","POB1":489193},"arcs":[[7202,7203,7204,7205]]},{"type":"Polygon","properties":{"NOM_MUN":"Méndez","POB1":4530},"arcs":[[7206,7207,-7149,-3867,7208]]},{"type":"Polygon","properties":{"NOM_MUN":"Mier","POB1":4762},"arcs":[[7209,7210,-3813,-3913,-3801,-3957,-7183]]},{"type":"Polygon","properties":{"NOM_MUN":"Miguel Alemán","POB1":27015},"arcs":[[-7154,-3884,-3808,-7211,7211]]},{"type":"Polygon","properties":{"NOM_MUN":"Miquihuana","POB1":3514},"arcs":[[7212,-7152,-3873,-3917,-7194]]},{"type":"Polygon","properties":{"NOM_MUN":"Nuevo Laredo","POB1":384033},"arcs":[[-7184,-3822,7213]]},{"type":"Polygon","properties":{"NOM_MUN":"Nuevo Morelos","POB1":3381},"arcs":[[-6658,-6774,7214,-7142]]},{"type":"Polygon","properties":{"NOM_MUN":"Ocampo","POB1":12962},"arcs":[[-7169,-7202,-7143,-7215,-6773,7215,7216,-7192]]},{"type":"Polygon","properties":{"NOM_MUN":"Padilla","POB1":14020},"arcs":[[-7187,7217,-7195,-7158,-7178]]},{"type":"Polygon","properties":{"NOM_MUN":"Palmillas","POB1":1795},"arcs":[[-7217,7218,-7150,-7213,-7193]]},{"type":"Polygon","properties":{"NOM_MUN":"Reynosa","POB1":608891},"arcs":[[7219,-7209,-3866,-3901,-7185,7220]]},{"type":"Polygon","properties":{"NOM_MUN":"Río Bravo","POB1":118259},"arcs":[[7221,-7204,7222,-7207,-7220,7223]]},{"type":"Polygon","properties":{"NOM_MUN":"San Carlos","POB1":9331},"arcs":[[7224,-7196,-7218,-7189,7225,-3940,-7148]]},{"type":"Polygon","properties":{"NOM_MUN":"San Fernando","POB1":57220},"arcs":[[-7223,-7203,7226,7227,-7127,-7168,-7145,-7208]]},{"type":"Polygon","properties":{"NOM_MUN":"San Nicolás","POB1":1031},"arcs":[[-7147,-7167,-7225]]},{"type":"Polygon","properties":{"NOM_MUN":"Soto la Marina","POB1":24764},"arcs":[[7228,-7136,-7160,-7128,-7228]]},{"type":"Polygon","properties":{"NOM_MUN":"Tampico","POB1":297554},"arcs":[[-7164,7229,7230,-7139]]},{"type":"Polygon","properties":{"NOM_MUN":"Tula","POB1":27572},"arcs":[[-7219,-7216,-6772,-6646,-6674,-7151]]},{"type":"Polygon","properties":{"NOM_MUN":"Valle Hermoso","POB1":63170},"arcs":[[-7222,7231,-7205]]},{"type":"Polygon","properties":{"NOM_MUN":"Victoria","POB1":321953},"arcs":[[-7156,-7198,-7190,-7179]]},{"type":"Polygon","properties":{"NOM_MUN":"Villagrán","POB1":6316},"arcs":[[-7226,-7188,-3839,-7199,-3941]]},{"type":"Polygon","properties":{"NOM_MUN":"Xicoténcatl","POB1":22864},"arcs":[[-7172,-7197,-7176,-7200]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Amaxac de Guerrero","POB1":9875},"arcs":[[[7232,7233,7234,7235,7236]],[[7237,7238,7239]]]},{"type":"Polygon","properties":{"NOM_MUN":"Apetatitlán de Antonio Carvajal","POB1":13361},"arcs":[[-7237,7240,7241,7242,-7240,7243]]},{"type":"Polygon","properties":{"NOM_MUN":"Atlangatepec","POB1":6018},"arcs":[[7244,7245,7246]]},{"type":"Polygon","properties":{"NOM_MUN":"Atltzayanca","POB1":15935},"arcs":[[-6114,-6158,7247,7248,7249,7250]]},{"type":"Polygon","properties":{"NOM_MUN":"Apizaco","POB1":76492},"arcs":[[7251,-7234,7252,7253,7254,7255,7256,7257]]},{"type":"Polygon","properties":{"NOM_MUN":"Calpulalpan","POB1":44807},"arcs":[[-1918,7258,7259,-6361,-3256,-3180,-2011]]},{"type":"Polygon","properties":{"NOM_MUN":"El Carmen Tequexquitla","POB1":15368},"arcs":[[-6157,-6209,-6270,7260,-7248]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuapiaxtla","POB1":13671},"arcs":[[-6269,7261,-7249,-7261]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuaxomulco","POB1":5066},"arcs":[[7262,7263,7264,7265]]},{"type":"Polygon","properties":{"NOM_MUN":"Chiautempan","POB1":66149},"arcs":[[7266,-7242,7267,7268,7269,7270]]},{"type":"Polygon","properties":{"NOM_MUN":"Muñoz de Domingo Arenas","POB1":4285},"arcs":[[7271,7272,7273,-7246,7274,-7255,7275]]},{"type":"Polygon","properties":{"NOM_MUN":"Españita","POB1":8399},"arcs":[[-6364,7276,7277,7278,7279,7280]]},{"type":"Polygon","properties":{"NOM_MUN":"Huamantla","POB1":84979},"arcs":[[-5721,-6332,7281,7282,7283,7284,7285,7286,7287,-7250,-7262,-6268,-6193,7288,7289]]},{"type":"Polygon","properties":{"NOM_MUN":"Hueyotlipan","POB1":13879},"arcs":[[-7273,7290,7291,7292,7293,-7280,7294,7295,7296]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtacuixtla de Mariano Matamoros","POB1":35162},"arcs":[[-6277,-6296,-6282,-6365,-7281,-7294,7297,7298,7299,7300]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtenco","POB1":6791},"arcs":[[-6192,7301,-7289]]},{"type":"Polygon","properties":{"NOM_MUN":"Mazatecochco de José María Morelos","POB1":9740},"arcs":[[7302,7303,7304]]},{"type":"Polygon","properties":{"NOM_MUN":"Contla de Juan Cuamatzi","POB1":35084},"arcs":[[-7236,7305,-7264,7306,-7268,-7241]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepetitla de Lardizábal","POB1":18725},"arcs":[[-6278,-7301,7307]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Sanctórum de Lázaro Cárdenas","POB1":8474},"arcs":[[[-7277,-6363,7308]],[[7309,-7295,-7279,7310,-7259,-1917]]]},{"type":"Polygon","properties":{"NOM_MUN":"Nanacamilpa de Mariano Arista","POB1":16640},"arcs":[[-6362,-7260,-7311,-7278,-7309]]},{"type":"Polygon","properties":{"NOM_MUN":"Acuamanala de Miguel Hidalgo","POB1":5711},"arcs":[[7311,7312,7313,-7305,7314,7315]]},{"type":"Polygon","properties":{"NOM_MUN":"Natívitas","POB1":23621},"arcs":[[-6285,-6366,-6078,-6279,-7308,-7300,7316,7317,7318,7319]]},{"type":"Polygon","properties":{"NOM_MUN":"Panotla","POB1":25128},"arcs":[[7320,-7298,-7293,7321,7322,7323,7324]]},{"type":"Polygon","properties":{"NOM_MUN":"San Pablo del Monte","POB1":69615},"arcs":[[-6233,7325,7326,-7303,-7314,7327]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Tlaxcala","POB1":17968},"arcs":[[7328,-7265,-7306,-7235,-7252]]},{"type":"Polygon","properties":{"NOM_MUN":"Tenancingo","POB1":11763},"arcs":[[-6232,-5925,7329,-7326]]},{"type":"Polygon","properties":{"NOM_MUN":"Teolocholco","POB1":21671},"arcs":[[-7282,-6234,-7328,-7313,7330,7331,7332,7333]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepeyanco","POB1":11048},"arcs":[[7334,7335,7336,7337,7338,7339,-7331,-7312]]},{"type":"Polygon","properties":{"NOM_MUN":"Terrenate","POB1":13775},"arcs":[[-6115,-7251,-7288,7340,7341,7342,7343]]},{"type":"Polygon","properties":{"NOM_MUN":"Tetla de la Solidaridad","POB1":28760},"arcs":[[7344,-7342,7345,-7256,-7275,-7245,7346]]},{"type":"Polygon","properties":{"NOM_MUN":"Tetlatlahuca","POB1":12410},"arcs":[[-6286,-7320,7347,7348,7349,7350,7351,7352,7353]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlaxcala","POB1":89795},"arcs":[[7354,-7324,7355,7356,-7238,-7243,-7267,7357,7358,-7339,7359,-7350]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlaxco","POB1":39939},"arcs":[[-5987,-6117,7360,7361,-7347,-7247,-7274,-7297,7362,-1915,-1912]]},{"type":"Polygon","properties":{"NOM_MUN":"Tocatlán","POB1":5589},"arcs":[[7363,-7286,7364]]},{"type":"Polygon","properties":{"NOM_MUN":"Totolac","POB1":20625},"arcs":[[-7323,7365,-7356]]},{"type":"Polygon","properties":{"NOM_MUN":"Ziltlaltépec de Trinidad Sánchez Santos","POB1":8224},"arcs":[[-6191,-5722,-7290,-7302]]},{"type":"Polygon","properties":{"NOM_MUN":"Tzompantepec","POB1":14611},"arcs":[[7366,-7365,-7285,7367,-7266,-7329,-7258]]},{"type":"Polygon","properties":{"NOM_MUN":"Xaloztoc","POB1":21769},"arcs":[[-7257,-7346,-7341,-7287,-7364,-7367]]},{"type":"Polygon","properties":{"NOM_MUN":"Xaltocan","POB1":9777},"arcs":[[-7239,-7357,-7366,-7322,-7292,7368,-7276,-7254,7369]]},{"type":"Polygon","properties":{"NOM_MUN":"Papalotla de Xicohténcatl","POB1":26997},"arcs":[[-5924,7370,7371,7372,-7315,-7304,-7327,-7330]]},{"type":"Polygon","properties":{"NOM_MUN":"Xicohtzinco","POB1":12255},"arcs":[[-5923,7373,7374,-7371]]},{"type":"Polygon","properties":{"NOM_MUN":"Yauhquemehcan","POB1":33081},"arcs":[[-7233,-7244,-7370,-7253]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacatelco","POB1":38654},"arcs":[[-5894,-6287,-7354,7375,7376,-7336,7377,7378,-7374]]},{"type":"Polygon","properties":{"NOM_MUN":"Benito Juárez","POB1":5687},"arcs":[[-1916,-7363,-7296,-7310]]},{"type":"Polygon","properties":{"NOM_MUN":"Emiliano Zapata","POB1":4146},"arcs":[[-6116,-7344,7379,-7361]]},{"type":"Polygon","properties":{"NOM_MUN":"Lázaro Cárdenas","POB1":2769},"arcs":[[-7380,-7343,-7345,-7362]]},{"type":"Polygon","properties":{"NOM_MUN":"La Magdalena Tlaltelulco","POB1":16834},"arcs":[[7380,-7333,7381,-7358,-7271]]},{"type":"Polygon","properties":{"NOM_MUN":"San Damián Texóloc","POB1":5064},"arcs":[[7382,-7325,-7355,-7349,-7318]]},{"type":"Polygon","properties":{"NOM_MUN":"San Francisco Tetlanohcan","POB1":9880},"arcs":[[-7283,-7334,-7381,-7270,7383]]},{"type":"Polygon","properties":{"NOM_MUN":"San Jerónimo Zacualpan","POB1":3581},"arcs":[[7384,-7351,-7360,-7338]]},{"type":"Polygon","properties":{"NOM_MUN":"San José Teacalco","POB1":5660},"arcs":[[-7284,-7384,-7269,-7307,-7263,-7368]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Huactzinco","POB1":6821},"arcs":[[-7352,-7385,-7337,-7377,7385]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lorenzo Axocomanitla","POB1":5045},"arcs":[[-7386,-7376,-7353]]},{"type":"Polygon","properties":{"NOM_MUN":"San Lucas Tecopilco","POB1":2833},"arcs":[[-7272,-7369,-7291]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Ana Nopalucan","POB1":6857},"arcs":[[-7321,-7383,-7317,-7299]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Apolonia Teacalco","POB1":4349},"arcs":[[-7319,-7348]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Catarina Ayometla","POB1":7992},"arcs":[[-7375,-7379,7386,-7372]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Cruz Quilehtla","POB1":6296},"arcs":[[-7373,-7387,-7378,-7335,-7316]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Isabel Xiloxoxtla","POB1":4436},"arcs":[[-7340,-7359,-7382,-7332]]},{"type":"Polygon","properties":{"NOM_MUN":"Acajete","POB1":8223},"arcs":[[7387,7388,7389,7390,7391,7392]]},{"type":"Polygon","properties":{"NOM_MUN":"Acatlán","POB1":3085},"arcs":[[7393,7394,7395,7396,7397]]},{"type":"Polygon","properties":{"NOM_MUN":"Acayucan","POB1":83817},"arcs":[[7398,7399,7400,7401,7402,7403,7404]]},{"type":"Polygon","properties":{"NOM_MUN":"Actopan","POB1":40994},"arcs":[[7405,7406,7407,7408,7409,7410]]},{"type":"Polygon","properties":{"NOM_MUN":"Acula","POB1":5129},"arcs":[[7411,7412,7413,7414]]},{"type":"Polygon","properties":{"NOM_MUN":"Acultzingo","POB1":20973},"arcs":[[-6175,7415,7416,7417,7418,-6383,-6187,-5953]]},{"type":"Polygon","properties":{"NOM_MUN":"Camarón de Tejeda","POB1":6224},"arcs":[[7419,7420,7421]]},{"type":"Polygon","properties":{"NOM_MUN":"Alpatláhuac","POB1":9691},"arcs":[[7422,7423]]},{"type":"Polygon","properties":{"NOM_MUN":"Alto Lucero de Gutiérrez Barrios","POB1":28017},"arcs":[[7424,7425,7426,7427,7428,7429,-7409]]},{"type":"Polygon","properties":{"NOM_MUN":"Altotonga","POB1":60396},"arcs":[[7430,7431,7432,7433,7434,7435,7436,7437]]},{"type":"Polygon","properties":{"NOM_MUN":"Alvarado","POB1":51955},"arcs":[[7438,7439,-7413,7440,7441,7442,7443,7444,7445]]},{"type":"Polygon","properties":{"NOM_MUN":"Amatitlán","POB1":7487},"arcs":[[7446,7447,7448,-7415,7449]]},{"type":"Polygon","properties":{"NOM_MUN":"Naranjos Amatlán","POB1":27548},"arcs":[[7450,7451,7452,7453]]},{"type":"Polygon","properties":{"NOM_MUN":"Amatlán de los Reyes","POB1":42268},"arcs":[[7454,7455,7456,7457,7458,7459,7460,7461]]},{"type":"Polygon","properties":{"NOM_MUN":"Angel R. Cabada","POB1":33528},"arcs":[[7462,7463,7464,7465,7466]]},{"type":"Polygon","properties":{"NOM_MUN":"La Antigua","POB1":25500},"arcs":[[7467,7468,7469,7470,7471]]},{"type":"Polygon","properties":{"NOM_MUN":"Apazapan","POB1":4027},"arcs":[[7472,7473,7474,7475]]},{"type":"Polygon","properties":{"NOM_MUN":"Aquila","POB1":1797},"arcs":[[-7416,-6174,-6020,7476]]},{"type":"Polygon","properties":{"NOM_MUN":"Astacinga","POB1":5995},"arcs":[[7477,7478,-6387,7479]]},{"type":"Polygon","properties":{"NOM_MUN":"Atlahuilco","POB1":9824},"arcs":[[7480,7481,7482,7483,7484,7485,7486]]},{"type":"Polygon","properties":{"NOM_MUN":"Atoyac","POB1":22986},"arcs":[[7487,7488,7489,-7462,7490,7491]]},{"type":"Polygon","properties":{"NOM_MUN":"Atzacan","POB1":20063},"arcs":[[7492,7493,7494,7495,7496,7497,7498]]},{"type":"Polygon","properties":{"NOM_MUN":"Atzalan","POB1":48397},"arcs":[[7499,7500,7501,7502,7503,-7437]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlaltetela","POB1":14613},"arcs":[[7504,7505,7506,7507,-5975,7508,7509,7510,7511,7512,-7475,7513]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Ayahualulco","POB1":25456},"arcs":[[[-6002,-6155,7514,7515,7516]],[[7517,7518,7519]]]},{"type":"Polygon","properties":{"NOM_MUN":"Banderilla","POB1":21546},"arcs":[[7520,7521,7522,7523]]},{"type":"Polygon","properties":{"NOM_MUN":"Benito Juárez","POB1":16692},"arcs":[[7524,7525,-2426,7526,7527]]},{"type":"Polygon","properties":{"NOM_MUN":"Boca del Río","POB1":138058},"arcs":[[7528,-7445,7529,7530]]},{"type":"Polygon","properties":{"NOM_MUN":"Calcahualco","POB1":12929},"arcs":[[7531,7532,-5946,-6360,-6238,-5978,7533,-7424]]},{"type":"Polygon","properties":{"NOM_MUN":"Camerino Z. Mendoza","POB1":41778},"arcs":[[7534,7535,7536,7537]]},{"type":"Polygon","properties":{"NOM_MUN":"Carrillo Puerto","POB1":16313},"arcs":[[7538,7539,7540]]},{"type":"Polygon","properties":{"NOM_MUN":"Catemaco","POB1":48593},"arcs":[[7541,7542,7543,7544,7545,7546]]},{"type":"Polygon","properties":{"NOM_MUN":"Cazones de Herrera","POB1":23483},"arcs":[[7547,7548,7549,7550]]},{"type":"Polygon","properties":{"NOM_MUN":"Cerro Azul","POB1":25801},"arcs":[[7551,7552,7553,7554]]},{"type":"Polygon","properties":{"NOM_MUN":"Citlaltépetl","POB1":11081},"arcs":[[7555,7556,7557,7558]]},{"type":"Polygon","properties":{"NOM_MUN":"Coacoatzintla","POB1":9416},"arcs":[[7559,7560,7561,7562]]},{"type":"Polygon","properties":{"NOM_MUN":"Coahuitlán","POB1":7810},"arcs":[[7563,7564,-6137,-6405]]},{"type":"Polygon","properties":{"NOM_MUN":"Coatepec","POB1":86696},"arcs":[[7565,-7512,7566,7567,7568,-7391,7569,7570,7571]]},{"type":"Polygon","properties":{"NOM_MUN":"Coatzacoalcos","POB1":305260},"arcs":[[7572,7573,7574,7575,7576,7577,7578]]},{"type":"Polygon","properties":{"NOM_MUN":"Coatzintla","POB1":48351},"arcs":[[7579,7580,-6381,7581,7582,7583]]},{"type":"Polygon","properties":{"NOM_MUN":"Coetzala","POB1":2144},"arcs":[[-7457,7584,7585,7586]]},{"type":"Polygon","properties":{"NOM_MUN":"Colipa","POB1":5728},"arcs":[[7587,7588,7589,7590]]},{"type":"Polygon","properties":{"NOM_MUN":"Comapa","POB1":18713},"arcs":[[7591,7592,7593,7594,7595,7596,7597,7598]]},{"type":"Polygon","properties":{"NOM_MUN":"Córdoba","POB1":196541},"arcs":[[7599,7600,7601,7602,-7460]]},{"type":"Polygon","properties":{"NOM_MUN":"Cosamaloapan de Carpio","POB1":57366},"arcs":[[-4915,7603,7604,7605,7606,7607,7608,7609,7610]]},{"type":"Polygon","properties":{"NOM_MUN":"Cosautlán de Carvajal","POB1":15668},"arcs":[[-7519,7611,-7510,7612]]},{"type":"Polygon","properties":{"NOM_MUN":"Coscomatepec","POB1":52510},"arcs":[[7613,7614,-7496,7615,-7532,-7423,-7534,-5977,7616,7617]]},{"type":"Polygon","properties":{"NOM_MUN":"Cosoleacaque","POB1":117725},"arcs":[[-7576,7618,7619,7620,7621,7622,7623,7624,7625]]},{"type":"Polygon","properties":{"NOM_MUN":"Cotaxtla","POB1":19710},"arcs":[[7626,7627,7628,7629,7630,7631,-7539,7632,7633]]},{"type":"Polygon","properties":{"NOM_MUN":"Coxquihui","POB1":15492},"arcs":[[7634,-6072,-6208,7635,7636,7637,7638]]},{"type":"Polygon","properties":{"NOM_MUN":"Coyutla","POB1":21822},"arcs":[[7639,-7638,7640,7641,7642,-7564,-6404,-6389,-6126,-6382,-7581]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuichapa","POB1":11645},"arcs":[[7643,-7456,7644,7645]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuitláhuac","POB1":26265},"arcs":[[-7489,7646,-7540,-7632,7647,7648,-7646,7649]]},{"type":"Polygon","properties":{"NOM_MUN":"Chacaltianguis","POB1":11683},"arcs":[[-4230,7650,-7608,7651,7652]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Chalma","POB1":12626},"arcs":[[[7653,7654,-2080,7655,-2078,-2077,-2076,-2075,-2074,-2073,-2072,-2071,-2070,-2069,7656,7657]],[[7658,-2028,-2027,-2026,-2025,-2024,-2082,7659]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Chiconamel","POB1":6752},"arcs":[[[-2068,-2067,-2066,-2065,-2064,-2063,-2062,-2061,-2218,-2217,-2216,-2215,-2214,7660,-7657]],[[-2079,-7656]]]},{"type":"Polygon","properties":{"NOM_MUN":"Chiconquiaco","POB1":13190},"arcs":[[7661,7662,-7427,7663,-7395,7664,7665]]},{"type":"Polygon","properties":{"NOM_MUN":"Chicontepec","POB1":54982},"arcs":[[-7527,-2425,-2044,-2043,-2042,-2041,-2040,-2039,-2038,-2037,-2036,-2035,-2034,-2033,-2032,-2031,-2030,7666,7667,7668,7669,7670]]},{"type":"Polygon","properties":{"NOM_MUN":"Chinameca","POB1":15214},"arcs":[[7671,7672,-7625,7673,7674,7675,7676]]},{"type":"Polygon","properties":{"NOM_MUN":"Chinampa de Gorostiza","POB1":15286},"arcs":[[7677,7678,-7452,7679,7680,7681]]},{"type":"Polygon","properties":{"NOM_MUN":"Las Choapas","POB1":77426},"arcs":[[-7103,-7102,-7101,-789,-5524,7682,7683,7684,7685]]},{"type":"Polygon","properties":{"NOM_MUN":"Chocamán","POB1":18601},"arcs":[[7686,-7601,7687,-7497,-7615]]},{"type":"Polygon","properties":{"NOM_MUN":"Chontla","POB1":14688},"arcs":[[-7559,7688,7689,7690,7691,7692]]},{"type":"Polygon","properties":{"NOM_MUN":"Chumatlán","POB1":3889},"arcs":[[-7641,-7637,7693]]},{"type":"Polygon","properties":{"NOM_MUN":"Emiliano Zapata","POB1":61718},"arcs":[[7694,-7407,7695,-7473,7696,-7572,7697]]},{"type":"Polygon","properties":{"NOM_MUN":"Espinal","POB1":25548},"arcs":[[-7640,-7580,7698,-6325,-6378,7699,-7639]]},{"type":"Polygon","properties":{"NOM_MUN":"Filomeno Mata","POB1":16418},"arcs":[[-7643,7700,-6206,-6138,-7565]]},{"type":"Polygon","properties":{"NOM_MUN":"Fortín","POB1":59761},"arcs":[[7701,7702,-7498,-7688,-7600,-7459]]},{"type":"Polygon","properties":{"NOM_MUN":"Gutiérrez Zamora","POB1":24353},"arcs":[[7703,7704]]},{"type":"Polygon","properties":{"NOM_MUN":"Hidalgotitlán","POB1":18277},"arcs":[[7705,7706,7707,7708,7709]]},{"type":"Polygon","properties":{"NOM_MUN":"Huatusco","POB1":54561},"arcs":[[7710,7711,-7617,-5976,-7508,7712,7713,-7598,7714]]},{"type":"Polygon","properties":{"NOM_MUN":"Huayacocotla","POB1":20765},"arcs":[[-1891,-1808,-2021,-1933,-2135,-2134,-2133,-2132,-2131,-2438,7715,7716,7717]]},{"type":"Polygon","properties":{"NOM_MUN":"Hueyapan de Ocampo","POB1":41649},"arcs":[[-7545,7718,-7399,7719,7720,7721]]},{"type":"Polygon","properties":{"NOM_MUN":"Huiloapan de Cuauhtémoc","POB1":6750},"arcs":[[7722,-7535,7723,7724,7725]]},{"type":"Polygon","properties":{"NOM_MUN":"Ignacio de la Llave","POB1":17121},"arcs":[[-7442,7726,7727,7728]]},{"type":"Polygon","properties":{"NOM_MUN":"Ilamatlán","POB1":13575},"arcs":[[7729,-2436,-2388,-2435,-2432]]},{"type":"Polygon","properties":{"NOM_MUN":"Isla","POB1":42205},"arcs":[[7730,7731,7732,-7721,7733,7734,7735]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixcatepec","POB1":12713},"arcs":[[-7691,7736,-7668,7737]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixhuacán de los Reyes","POB1":10724},"arcs":[[-7613,-7509,-5974,-6242,-6241,-6240,-6003,-7517,7738,7739,-7520]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixhuatlán del Café","POB1":21407},"arcs":[[7740,-7491,-7461,-7603,7741,-7618,-7712]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixhuatlancillo","POB1":21150},"arcs":[[7742,7743,7744,7745]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixhuatlán del Sureste","POB1":14903},"arcs":[[7746,-7620,7747,-7574,7748]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixhuatlán de Madero","POB1":49820},"arcs":[[-2060,-2059,-2058,-2057,-2056,-2290,7749,-7528,-7671,7750,-6023,-6219]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixmatlahuacan","POB1":5727},"arcs":[[7751,-7727,-7441,-7412,-7449,7752,-7606]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixtaczoquitlán","POB1":65385},"arcs":[[7753,7754,7755,7756,-7499,-7703,7757,7758]]},{"type":"Polygon","properties":{"NOM_MUN":"Jalacingo","POB1":40747},"arcs":[[-7500,-7436,7759,-6391,-6089,7760]]},{"type":"Polygon","properties":{"NOM_MUN":"Xalapa","POB1":457928},"arcs":[[7761,7762,-7698,-7571,7763,-7524]]},{"type":"Polygon","properties":{"NOM_MUN":"Jalcomulco","POB1":4940},"arcs":[[-7566,-7697,-7476,-7513]]},{"type":"Polygon","properties":{"NOM_MUN":"Jáltipan","POB1":39673},"arcs":[[7764,7765,-7675,7766,7767,-7622,7768,-7709]]},{"type":"Polygon","properties":{"NOM_MUN":"Jamapa","POB1":10376},"arcs":[[-7628,7769,7770]]},{"type":"Polygon","properties":{"NOM_MUN":"Jesús Carranza","POB1":27080},"arcs":[[7771,-7707,7772,-5522,-4306,-4305,-4304,-4946,7773,7774]]},{"type":"Polygon","properties":{"NOM_MUN":"Xico","POB1":35188},"arcs":[[7775,-7568,7776,-7739,-7516]]},{"type":"Polygon","properties":{"NOM_MUN":"Jilotepec","POB1":15313},"arcs":[[-7561,7777,-7762,-7523,7778,7779]]},{"type":"Polygon","properties":{"NOM_MUN":"Juan Rodríguez Clara","POB1":37193},"arcs":[[-7720,-7405,7780,7781,-7734]]},{"type":"Polygon","properties":{"NOM_MUN":"Juchique de Ferrer","POB1":16387},"arcs":[[-7589,7782,-7428,-7663,7783]]},{"type":"Polygon","properties":{"NOM_MUN":"Landero y Coss","POB1":1546},"arcs":[[-7394,7784,7785,-7665]]},{"type":"Polygon","properties":{"NOM_MUN":"Lerdo de Tejada","POB1":20141},"arcs":[[-7463,7786,7787,-7439,7788]]},{"type":"Polygon","properties":{"NOM_MUN":"Magdalena","POB1":2920},"arcs":[[7789,7790,-7754,7791]]},{"type":"Polygon","properties":{"NOM_MUN":"Maltrata","POB1":16898},"arcs":[[-5844,7792,7793,-7417,-7477,-6019]]},{"type":"Polygon","properties":{"NOM_MUN":"Manlio Fabio Altamirano","POB1":22585},"arcs":[[-7627,7794,7795,7796,7797,-7770]]},{"type":"Polygon","properties":{"NOM_MUN":"Mariano Escobedo","POB1":33941},"arcs":[[-5843,7798,-7494,7799,-7745,7800,-7793]]},{"type":"Polygon","properties":{"NOM_MUN":"Martínez de la Torre","POB1":101358},"arcs":[[7801,7802,7803,-7502,7804,-5729,7805]]},{"type":"Polygon","properties":{"NOM_MUN":"Mecatlán","POB1":11808},"arcs":[[-7694,-7636,-6207,-7701,-7642]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Mecayapan","POB1":17333},"arcs":[[[7806,7807,-7672,7808]],[[7809,7810,-7542]]]},{"type":"Polygon","properties":{"NOM_MUN":"Medellín","POB1":59126},"arcs":[[-7444,7811,-7629,-7771,-7798,7812,-7530]]},{"type":"Polygon","properties":{"NOM_MUN":"Miahuatlán","POB1":4429},"arcs":[[7813,-7785,-7398,7814,7815]]},{"type":"Polygon","properties":{"NOM_MUN":"Las Minas","POB1":2897},"arcs":[[7816,7817,-7433]]},{"type":"Polygon","properties":{"NOM_MUN":"Minatitlán","POB1":157840},"arcs":[[7818,-7710,-7769,-7621,-7747,7819,-7684]]},{"type":"Polygon","properties":{"NOM_MUN":"Misantla","POB1":62919},"arcs":[[-7666,-7786,-7814,7820,7821,-7503,-7804,7822,7823,7824,-7591,7825]]},{"type":"Polygon","properties":{"NOM_MUN":"Mixtla de Altamirano","POB1":10387},"arcs":[[7826,7827,7828]]},{"type":"Polygon","properties":{"NOM_MUN":"Moloacán","POB1":16120},"arcs":[[-7685,-7820,-7749,-7573,7829]]},{"type":"Polygon","properties":{"NOM_MUN":"Naolinco","POB1":20255},"arcs":[[-7425,-7408,-7695,-7763,-7778,-7560,7830,-7815,-7397,7831]]},{"type":"Polygon","properties":{"NOM_MUN":"Naranjal","POB1":4507},"arcs":[[-7702,-7458,-7587,7832,7833,-7758]]},{"type":"Polygon","properties":{"NOM_MUN":"Nautla","POB1":9974},"arcs":[[7834,7835,7836,-7824,7837]]},{"type":"Polygon","properties":{"NOM_MUN":"Nogales","POB1":34688},"arcs":[[-7724,-7538,7838,-7418,-7794,-7801,-7744,7839]]},{"type":"Polygon","properties":{"NOM_MUN":"Oluta","POB1":14784},"arcs":[[7840,7841,7842,-7402]]},{"type":"Polygon","properties":{"NOM_MUN":"Omealca","POB1":22561},"arcs":[[-4082,7843,7844,-7585,-7644,-7649,7845]]},{"type":"Polygon","properties":{"NOM_MUN":"Orizaba","POB1":120995},"arcs":[[-7746,-7800,-7493,-7757,7846,-7726,7847]]},{"type":"Polygon","properties":{"NOM_MUN":"Otatitlán","POB1":5250},"arcs":[[7848,-4916,-7611]]},{"type":"Polygon","properties":{"NOM_MUN":"Oteapan","POB1":14965},"arcs":[[7849,-7767,-7674,-7624]]},{"type":"Polygon","properties":{"NOM_MUN":"Ozuluama de Mascareñas","POB1":23276},"arcs":[[7850,7851,7852,-7556,-7693,7853,7854,7855,7856]]},{"type":"Polygon","properties":{"NOM_MUN":"Pajapan","POB1":15909},"arcs":[[-7577,-7626,-7673,-7808,7857,7858]]},{"type":"Polygon","properties":{"NOM_MUN":"Pánuco","POB1":97290},"arcs":[[-7231,7859,7860,-7856,7861,7862,-6735,-6746,-6672,-6745,-7201,-7174,-7140]]},{"type":"Polygon","properties":{"NOM_MUN":"Papantla","POB1":158599},"arcs":[[7863,7864,-7704,7865,-7806,-5728,-6093,-6326,-7699,-7584,7866,7867,-7550]]},{"type":"Polygon","properties":{"NOM_MUN":"Paso del Macho","POB1":29165},"arcs":[[7868,-7633,-7541,-7647,-7488,7869,7870,-7422]]},{"type":"Polygon","properties":{"NOM_MUN":"Paso de Ovejas","POB1":32576},"arcs":[[7871,-7595,7872,-7469,7873,-7796]]},{"type":"Polygon","properties":{"NOM_MUN":"La Perla","POB1":23648},"arcs":[[-7533,-7616,-7495,-7799,-5842,-5947]]},{"type":"Polygon","properties":{"NOM_MUN":"Perote","POB1":68982},"arcs":[[-6344,-6392,-7760,-7435,7874,7875,-7392,-7569,-7776,-7515,-6154,-6036]]},{"type":"Polygon","properties":{"NOM_MUN":"Platón Sánchez","POB1":17888},"arcs":[[-7661,-2213,-2212,-2211,-2210,-2209,-2208,-2207,-2206,-2205,-2204,-2203,-2202,-2201,-2200,-2199,-2198,-2197,-2196,-2195,-2194,-2193,-2192,-2191,-2190,-2189,7876,7877,-7660,-2081,-7655,7653,-7658]]},{"type":"Polygon","properties":{"NOM_MUN":"Playa Vicente","POB1":40984},"arcs":[[-7735,-7782,7878,-5677,7879,-4998,-5639,-4228,-4918,-4232,7880]]},{"type":"Polygon","properties":{"NOM_MUN":"Poza Rica de Hidalgo","POB1":193311},"arcs":[[-7583,7881,-7867]]},{"type":"Polygon","properties":{"NOM_MUN":"Las Vigas de Ramírez","POB1":17958},"arcs":[[7882,7883,7884,-7393,-7876]]},{"type":"Polygon","properties":{"NOM_MUN":"Pueblo Viejo","POB1":55358},"arcs":[[7885,-7860,-7230,-7163,7886]]},{"type":"Polygon","properties":{"NOM_MUN":"Puente Nacional","POB1":21603},"arcs":[[-7873,-7594,7887,7888,-7514,-7474,-7696,-7406,7889,-7470]]},{"type":"Polygon","properties":{"NOM_MUN":"Rafael Delgado","POB1":20245},"arcs":[[7890,7891,7892,-7536,-7723,-7847,-7756,7893]]},{"type":"Polygon","properties":{"NOM_MUN":"Rafael Lucio","POB1":7023},"arcs":[[7894,-7389,7895,-7779,-7522]]},{"type":"Polygon","properties":{"NOM_MUN":"Los Reyes","POB1":5484},"arcs":[[7896,-7481,7897,7898,7899]]},{"type":"Polygon","properties":{"NOM_MUN":"Río Blanco","POB1":40634},"arcs":[[-7725,-7840,-7743,-7848]]},{"type":"Polygon","properties":{"NOM_MUN":"Saltabarranca","POB1":5908},"arcs":[[-7467,7900,7901,-7787]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Tenejapan","POB1":2715},"arcs":[[-7790,7902,-7891,7903]]},{"type":"Polygon","properties":{"NOM_MUN":"San Andrés Tuxtla","POB1":157364},"arcs":[[-7465,7904,-7546,-7722,-7733,7905]]},{"type":"Polygon","properties":{"NOM_MUN":"San Juan Evangelista","POB1":33435},"arcs":[[7906,-7774,-4945,-5678,-7879,-7781,-7404]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Tuxtla","POB1":56427},"arcs":[[-7732,7907,-7901,-7466,-7906]]},{"type":"Polygon","properties":{"NOM_MUN":"Sayula de Alemán","POB1":31974},"arcs":[[7908,-7775,-7907,-7403,-7843]]},{"type":"Polygon","properties":{"NOM_MUN":"Soconusco","POB1":14395},"arcs":[[7909,-7676,-7766,7910,-7841,-7401]]},{"type":"Polygon","properties":{"NOM_MUN":"Sochiapa","POB1":3502},"arcs":[[7911,-7599,-7714]]},{"type":"Polygon","properties":{"NOM_MUN":"Soledad Atzompa","POB1":21380},"arcs":[[7912,-6384,-7419,-7839,-7537,-7893,7913,-7486]]},{"type":"Polygon","properties":{"NOM_MUN":"Soledad de Doblado","POB1":27008},"arcs":[[7914,-7596,-7872,-7795,-7634,-7869,-7421]]},{"type":"Polygon","properties":{"NOM_MUN":"Soteapan","POB1":32596},"arcs":[[-7677,-7910,-7400,-7719,-7544,7915,-7809]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Tamalín","POB1":11211},"arcs":[[[-7852,7916,-7678,7917]],[[-7451,7918,7919]],[[-7681,7920]]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Tamiahua","POB1":23588},"arcs":[[[-7917,-7851,7921,7922,7923,7924,-7552,7925,-7453,-7679]],[[7926]]]},{"type":"Polygon","properties":{"NOM_MUN":"Tampico Alto","POB1":12242},"arcs":[[-7861,-7886,7927,-7922,-7857]]},{"type":"Polygon","properties":{"NOM_MUN":"Tancoco","POB1":5873},"arcs":[[-7919,-7454,-7926,-7555,7928,-7689,-7558,7929]]},{"type":"Polygon","properties":{"NOM_MUN":"Tantima","POB1":12814},"arcs":[[-7853,-7918,-7682,-7921,-7680,-7920,-7930,-7557]]},{"type":"Polygon","properties":{"NOM_MUN":"Tantoyuca","POB1":101743},"arcs":[[-7854,-7692,-7738,-7667,-2029,-7659,-7878,7930]]},{"type":"Polygon","properties":{"NOM_MUN":"Tatatila","POB1":5584},"arcs":[[-7884,-7817,-7432,7931]]},{"type":"Polygon","properties":{"NOM_MUN":"Castillo de Teayo","POB1":18663},"arcs":[[7932,7933,-6025]]},{"type":"Polygon","properties":{"NOM_MUN":"Tecolutla","POB1":25126},"arcs":[[7934,-7835,7935,-7802,-7866,-7705,-7865]]},{"type":"Polygon","properties":{"NOM_MUN":"Tehuipango","POB1":23479},"arcs":[[7936,-7827,7937,-5781,-6388,-7479]]},{"type":"Polygon","properties":{"NOM_MUN":"Álamo Temapache","POB1":104499},"arcs":[[-7933,-6024,-7751,-7670,7938,-7553,-7925,7939,7940]]},{"type":"Polygon","properties":{"NOM_MUN":"Tempoal","POB1":34956},"arcs":[[-7855,-7931,-7877,-2241,-6720,-6751,-6731,7941,-7862]]},{"type":"Polygon","properties":{"NOM_MUN":"Tenampa","POB1":6247},"arcs":[[-7506,7942]]},{"type":"Polygon","properties":{"NOM_MUN":"Tenochtitlán","POB1":5222},"arcs":[[-7438,-7504,-7822,7943,7944]]},{"type":"Polygon","properties":{"NOM_MUN":"Teocelo","POB1":16327},"arcs":[[-7740,-7777,-7567,-7511,-7612,-7518]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepatlaxco","POB1":8249},"arcs":[[-7711,7945,-7870,-7492,-7741]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepetlán","POB1":9004},"arcs":[[-7396,-7664,-7426,-7832]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepetzintla","POB1":13949},"arcs":[[-7939,-7669,-7737,-7690,-7929,-7554]]},{"type":"Polygon","properties":{"NOM_MUN":"Tequila","POB1":14648},"arcs":[[-7759,-7834,7946,-7898,-7487,-7914,-7892,-7903,-7792]]},{"type":"Polygon","properties":{"NOM_MUN":"José Azueta","POB1":23999},"arcs":[[-7881,-4231,-7653,7947,-7447,7948,-7736]]},{"type":"Polygon","properties":{"NOM_MUN":"Texcatepec","POB1":10627},"arcs":[[7949,7950,-7717,7951]]},{"type":"Polygon","properties":{"NOM_MUN":"Texhuacán","POB1":5292},"arcs":[[7952,-7828,-7937,-7478,7953,-7900]]},{"type":"Polygon","properties":{"NOM_MUN":"Texistepec","POB1":20199},"arcs":[[-7772,-7909,-7842,-7911,-7765,-7708]]},{"type":"Polygon","properties":{"NOM_MUN":"Tezonapa","POB1":52584},"arcs":[[-4081,-3977,-5521,-6300,-6011,7954,-7844]]},{"type":"Polygon","properties":{"NOM_MUN":"Tierra Blanca","POB1":94087},"arcs":[[7955,-7728,-7752,-7605,7956,-4924,-5240,-3979,-4080,-7846,-7648,-7631]]},{"type":"Polygon","properties":{"NOM_MUN":"Tihuatlán","POB1":89774},"arcs":[[-7582,-6380,-6026,-7934,-7941,7957,-7551,-7868,-7882]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlacojalpan","POB1":4632},"arcs":[[7958,-4234,-4917,-7849,-7610]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlacolulan","POB1":10299},"arcs":[[-7431,-7945,7959,-7562,-7780,-7896,-7388,-7885,-7932]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlacotalpan","POB1":13284},"arcs":[[-7731,-7949,-7450,-7414,-7440,-7788,-7902,-7908]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlacotepec de Mejía","POB1":3965},"arcs":[[-7888,-7593,7960]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlachichilco","POB1":11276},"arcs":[[-7525,-7750,-2289,7961,-7950,7962]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlalixcoyan","POB1":37037},"arcs":[[-7956,-7630,-7812,-7443,-7729]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlalnelhuayocan","POB1":16311},"arcs":[[-7570,-7390,-7895,-7521,-7764]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlapacoyan","POB1":58084},"arcs":[[-7805,-7501,-7761,-6088,-5730]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlaquilpa","POB1":7151},"arcs":[[-6386,7963,-7482,-7897,-7954,-7480]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlilapan","POB1":4879},"arcs":[[-7755,-7791,-7904,-7894]]},{"type":"Polygon","properties":{"NOM_MUN":"Tomatlán","POB1":6763},"arcs":[[-7602,-7687,-7614,-7742]]},{"type":"Polygon","properties":{"NOM_MUN":"Tonayán","POB1":5696},"arcs":[[-7831,-7563,-7960,-7944,-7821,-7816]]},{"type":"Polygon","properties":{"NOM_MUN":"Totutla","POB1":16403},"arcs":[[-7713,-7507,-7943,-7505,-7889,-7961,-7592,-7912]]},{"type":"Polygon","properties":{"NOM_MUN":"Tuxpan","POB1":143362},"arcs":[[7964,-7548,-7958,-7940,-7924]]},{"type":"Polygon","properties":{"NOM_MUN":"Tuxtilla","POB1":2177},"arcs":[[-4229,-7959,-7609,-7651]]},{"type":"Polygon","properties":{"NOM_MUN":"Ursulo Galván","POB1":29005},"arcs":[[7965,-7471,-7890,-7411]]},{"type":"Polygon","properties":{"NOM_MUN":"Vega de Alatorre","POB1":19541},"arcs":[[-7429,-7783,-7588,-7825,-7837,7966]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Veracruz","POB1":552156},"arcs":[[[-7797,-7874,-7468,7967,-7531,-7813]],[[7968]]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Aldama","POB1":10851},"arcs":[[-7818,-7883,-7875,-7434]]},{"type":"Polygon","properties":{"NOM_MUN":"Xoxocotla","POB1":5163},"arcs":[[-7485,7483,-7483,-7964,-6385,-7913]]},{"type":"Polygon","properties":{"NOM_MUN":"Yanga","POB1":17462},"arcs":[[-7645,-7455,-7490,-7650]]},{"type":"Polygon","properties":{"NOM_MUN":"Yecuatla","POB1":11357},"arcs":[[-7826,-7590,-7784,-7662]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacualpan","POB1":6784},"arcs":[[-7951,-7962,-2288,-1892,-7718]]},{"type":"Polygon","properties":{"NOM_MUN":"Zaragoza","POB1":10720},"arcs":[[-7850,-7623,-7768]]},{"type":"Polygon","properties":{"NOM_MUN":"Zentla","POB1":12379},"arcs":[[-7597,-7915,-7420,-7871,-7946,-7715]]},{"type":"Polygon","properties":{"NOM_MUN":"Zongolica","POB1":41923},"arcs":[[-7829,-7953,-7899,-7947,-7833,-7586,-7845,-7955,-6010,-5782,-7938]]},{"type":"Polygon","properties":{"NOM_MUN":"Zontecomatlán de López y Fuentes","POB1":13866},"arcs":[[-7963,-7952,-7716,-2437,-7730,-2431,-2430,-2429,-2428,-2427,-7526]]},{"type":"Polygon","properties":{"NOM_MUN":"Zozocolco de Hidalgo","POB1":13434},"arcs":[[-7635,-7700,-6377,-5874,-6068]]},{"type":"Polygon","properties":{"NOM_MUN":"Agua Dulce","POB1":46010},"arcs":[[-7069,-7104,-7686,-7830,-7579,7969]]},{"type":"Polygon","properties":{"NOM_MUN":"El Higo","POB1":19128},"arcs":[[-7942,-6730,-7863]]},{"type":"Polygon","properties":{"NOM_MUN":"Nanchital de Lázaro Cárdenas del Río","POB1":27094},"arcs":[[-7575,-7748,-7619]]},{"type":"Polygon","properties":{"NOM_MUN":"Tres Valles","POB1":45095},"arcs":[[-4914,-7957,-7604]]},{"type":"Polygon","properties":{"NOM_MUN":"Carlos A. Carrillo","POB1":22907},"arcs":[[-7948,-7652,-7607,-7753,-7448]]},{"type":"Polygon","properties":{"NOM_MUN":"Tatahuicapan de Juárez","POB1":14297},"arcs":[[-7858,-7807,-7916,-7543,-7811,7970]]},{"type":"Polygon","properties":{"NOM_MUN":"Uxpanapa","POB1":27346},"arcs":[[-7819,-7683,-5523,-7773,-7706]]},{"type":"Polygon","properties":{"NOM_MUN":"San Rafael","POB1":29277},"arcs":[[-7936,-7838,-7823,-7803]]},{"type":"Polygon","properties":{"NOM_MUN":"Santiago Sochiapan","POB1":12409},"arcs":[[-5676,-4999,-7880]]},{"type":"Polygon","properties":{"NOM_MUN":"Abalá","POB1":6356},"arcs":[[7971,7972,7973,7974,7975,7976,7977]]},{"type":"Polygon","properties":{"NOM_MUN":"Acanceh","POB1":15337},"arcs":[[7978,7979,7980,7981,7982,7983]]},{"type":"Polygon","properties":{"NOM_MUN":"Akil","POB1":10362},"arcs":[[7984,7985,7986]]},{"type":"Polygon","properties":{"NOM_MUN":"Baca","POB1":5701},"arcs":[[7987,7988,7989,7990,7991,7992]]},{"type":"Polygon","properties":{"NOM_MUN":"Bokobá","POB1":2053},"arcs":[[7993,7994,7995,7996,7997,7998]]},{"type":"Polygon","properties":{"NOM_MUN":"Buctzotz","POB1":8637},"arcs":[[7999,8000,8001,8002,8003,8004]]},{"type":"Polygon","properties":{"NOM_MUN":"Cacalchén","POB1":6811},"arcs":[[-7997,8005,8006,8007,8008,8009]]},{"type":"Polygon","properties":{"NOM_MUN":"Calotmul","POB1":4095},"arcs":[[8010,8011,8012]]},{"type":"Polygon","properties":{"NOM_MUN":"Cansahcab","POB1":4696},"arcs":[[8013,8014,8015,8016,8017,8018,8019]]},{"type":"Polygon","properties":{"NOM_MUN":"Cantamayec","POB1":2407},"arcs":[[8020,8021,8022,8023,8024,8025,8026,8027]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Celestún","POB1":6831},"arcs":[[[8028]],[[8029]],[[8030]],[[8031]],[[8032]],[[8033,8034,8035,-212,8036,8037]]]},{"type":"Polygon","properties":{"NOM_MUN":"Cenotillo","POB1":3701},"arcs":[[8038,8039,8040,8041,8042,8043,-8003]]},{"type":"Polygon","properties":{"NOM_MUN":"Conkal","POB1":9143},"arcs":[[8044,8045,8046,8047]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuncunul","POB1":1595},"arcs":[[8048,8049,8050,8051,8052]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuzamá","POB1":4966},"arcs":[[8053,8054,-7980,8055]]},{"type":"Polygon","properties":{"NOM_MUN":"Chacsinkín","POB1":2818},"arcs":[[8056,8057,8058,-8023,8059]]},{"type":"Polygon","properties":{"NOM_MUN":"Chankom","POB1":4464},"arcs":[[8060,-8051,8061,8062,8063,8064]]},{"type":"Polygon","properties":{"NOM_MUN":"Chapab","POB1":3035},"arcs":[[8065,8066,8067,8068,8069]]},{"type":"Polygon","properties":{"NOM_MUN":"Chemax","POB1":33490},"arcs":[[-6575,-6590,8070,8071,8072]]},{"type":"Polygon","properties":{"NOM_MUN":"Chicxulub Pueblo","POB1":4113},"arcs":[[8073,8074,-8048,8075,8076]]},{"type":"Polygon","properties":{"NOM_MUN":"Chichimilá","POB1":7952},"arcs":[[-6474,8077,8078,8079]]},{"type":"Polygon","properties":{"NOM_MUN":"Chikindzonot","POB1":4162},"arcs":[[8080,-6472,-6574,8081,8082,-8063,8083]]},{"type":"Polygon","properties":{"NOM_MUN":"Chocholá","POB1":4530},"arcs":[[-7973,8084,8085,8086,8087,8088,8089]]},{"type":"Polygon","properties":{"NOM_MUN":"Chumayel","POB1":3148},"arcs":[[8090,8091,8092,8093,8094]]},{"type":"Polygon","properties":{"NOM_MUN":"Dzán","POB1":4941},"arcs":[[8095,8096,8097,-8068,8098]]},{"type":"Polygon","properties":{"NOM_MUN":"Dzemul","POB1":3489},"arcs":[[8099,8100,8101,8102,8103]]},{"type":"Polygon","properties":{"NOM_MUN":"Dzidzantún","POB1":8133},"arcs":[[8104,8105,-8014,8106,8107,8108]]},{"type":"Polygon","properties":{"NOM_MUN":"Dzilam de Bravo","POB1":2463},"arcs":[[8109,8110,8111,-8109,8112]]},{"type":"Polygon","properties":{"NOM_MUN":"Dzilam González","POB1":5905},"arcs":[[8113,-8005,8114,-8105,-8112]]},{"type":"Polygon","properties":{"NOM_MUN":"Dzitás","POB1":3540},"arcs":[[8115,8116,8117,8118,8119,-8040,8120]]},{"type":"Polygon","properties":{"NOM_MUN":"Dzoncauich","POB1":2772},"arcs":[[8121,8122]]},{"type":"Polygon","properties":{"NOM_MUN":"Espita","POB1":15571},"arcs":[[8123,-8012,8124,8125,8126,-8121,-8039,-8002,8127]]},{"type":"Polygon","properties":{"NOM_MUN":"Halachó","POB1":19072},"arcs":[[-206,8128]]},{"type":"Polygon","properties":{"NOM_MUN":"Hocabá","POB1":6061},"arcs":[[8129,8130,8131,8132,8133,8134,8135]]},{"type":"Polygon","properties":{"NOM_MUN":"Hoctún","POB1":5697},"arcs":[[8136,8137,8138,-8130,8139,-8006,-7996]]},{"type":"Polygon","properties":{"NOM_MUN":"Homún","POB1":7257},"arcs":[[8140,8141,8142,8143,8144,-8054,8145,-8134,8146]]},{"type":"Polygon","properties":{"NOM_MUN":"Huhí","POB1":4841},"arcs":[[8147,8148,-8141,8149,-8132,8150]]},{"type":"Polygon","properties":{"NOM_MUN":"Hunucmá","POB1":30731},"arcs":[[8151,8152,8153,8154,-8038,8155,8156]]},{"type":"Polygon","properties":{"NOM_MUN":"Ixil","POB1":3803},"arcs":[[8157,-7992,8158,-8074,8159,8160,-8102]]},{"type":"Polygon","properties":{"NOM_MUN":"Izamal","POB1":25980},"arcs":[[8161,8162,8163,-8137,-7995,8164,8165,8166,8167]]},{"type":"Polygon","properties":{"NOM_MUN":"Kanasín","POB1":78709},"arcs":[[8168,-7983,8169,8170]]},{"type":"Polygon","properties":{"NOM_MUN":"Kantunil","POB1":5502},"arcs":[[8171,-8148,8172,-8138,-8164,8173]]},{"type":"Polygon","properties":{"NOM_MUN":"Kaua","POB1":2761},"arcs":[[-8052,-8061,8174,8175]]},{"type":"Polygon","properties":{"NOM_MUN":"Kinchil","POB1":6571},"arcs":[[8176,-8088,8177,-8035,8178]]},{"type":"Polygon","properties":{"NOM_MUN":"Kopomá","POB1":2449},"arcs":[[8179,8180,-8086]]},{"type":"Polygon","properties":{"NOM_MUN":"Mama","POB1":2888},"arcs":[[8181,-8094,8182,-8099,-8067,8183]]},{"type":"Polygon","properties":{"NOM_MUN":"Maní","POB1":5250},"arcs":[[-8093,8184,8185,-7987,8186,-8096,-8183]]},{"type":"Polygon","properties":{"NOM_MUN":"Maxcanú","POB1":21704},"arcs":[[-8178,-8087,-8181,8187,8188,8189,-207,-8129,-205,-8036]]},{"type":"Polygon","properties":{"NOM_MUN":"Mayapán","POB1":3269},"arcs":[[-8143,8190,-8027,8191,-8091,8192]]},{"type":"Polygon","properties":{"NOM_MUN":"Mérida","POB1":830732},"arcs":[[-8076,-8047,8193,8194,8195,-8171,8196,-7975,8197,8198,8199]]},{"type":"Polygon","properties":{"NOM_MUN":"Mocochá","POB1":3071},"arcs":[[8200,-8045,-8075,-8159,-7991]]},{"type":"Polygon","properties":{"NOM_MUN":"Motul","POB1":33978},"arcs":[[-8101,8201,8202,8203,-8019,8204,-7998,-8010,8205,-7993,-8158]]},{"type":"Polygon","properties":{"NOM_MUN":"Muna","POB1":12336},"arcs":[[8206,8207,-8189,8208,8209]]},{"type":"Polygon","properties":{"NOM_MUN":"Muxupip","POB1":2755},"arcs":[[-8009,8210,-7988,-8206]]},{"type":"Polygon","properties":{"NOM_MUN":"Opichén","POB1":6285},"arcs":[[8211,-8209,-8188,-8180,-8085,-7972]]},{"type":"Polygon","properties":{"NOM_MUN":"Oxkutzcab","POB1":29325},"arcs":[[-7986,8212,-239,8213,8214,-8097,-8187]]},{"type":"Polygon","properties":{"NOM_MUN":"Panabá","POB1":7461},"arcs":[[8215,8216,-8000,-8114,-8111,8217,8218]]},{"type":"Polygon","properties":{"NOM_MUN":"Peto","POB1":24159},"arcs":[[-8082,-6573,8219,-8057,8220,8221]]},{"type":"MultiPolygon","properties":{"NOM_MUN":"Progreso","POB1":53958},"arcs":[[[-8160,-8077,-8200,8222,-8157,8223]],[[8224]],[[8225]],[[8226]],[[8227]],[[8228]],[[8229]],[[8230]],[[8231]],[[8232]],[[8233]],[[8234]],[[8235]],[[8236]],[[8237]],[[8238]],[[8239]],[[8240]],[[8241]],[[8242]],[[8243]],[[8244]],[[8245]],[[8246]],[[8247]],[[8248]],[[8249]],[[8250]],[[8251]],[[8252]],[[8253]],[[8254]],[[8255]],[[8256]],[[8257]],[[8258]],[[8259]],[[8260]],[[8261]],[[8262]],[[8263]],[[8264]],[[8265]],[[8266]],[[8267]],[[8268]],[[8269]],[[8270]],[[8271]]]},{"type":"Polygon","properties":{"NOM_MUN":"Quintana Roo","POB1":942},"arcs":[[-8120,8272,-8041]]},{"type":"Polygon","properties":{"NOM_MUN":"Río Lagartos","POB1":3438},"arcs":[[8273,-8219,8274,8275]]},{"type":"Polygon","properties":{"NOM_MUN":"Sacalum","POB1":4589},"arcs":[[8276,-8070,8277,-8210,-8212,-7978]]},{"type":"Polygon","properties":{"NOM_MUN":"Samahil","POB1":5008},"arcs":[[8278,-8089,-8177,8279,-8154]]},{"type":"Polygon","properties":{"NOM_MUN":"Sanahcat","POB1":1619},"arcs":[[-8150,-8147,-8133]]},{"type":"Polygon","properties":{"NOM_MUN":"San Felipe","POB1":1839},"arcs":[[-8275,-8218,-8110,8280]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa Elena","POB1":3833},"arcs":[[-8214,-245,-208,-8190,-8208,8281]]},{"type":"Polygon","properties":{"NOM_MUN":"Seyé","POB1":9276},"arcs":[[8282,-8135,-8146,-8056,-7979,8283,8284]]},{"type":"Polygon","properties":{"NOM_MUN":"Sinanché","POB1":3126},"arcs":[[-8203,8285,8286,8287,8288]]},{"type":"Polygon","properties":{"NOM_MUN":"Sotuta","POB1":8449},"arcs":[[8289,8290,-8028,-8191,-8142,-8149,-8172]]},{"type":"Polygon","properties":{"NOM_MUN":"Sucilá","POB1":3930},"arcs":[[8291,-8128,-8001,-8217]]},{"type":"Polygon","properties":{"NOM_MUN":"Sudzal","POB1":1689},"arcs":[[8292,8293,-8290,-8174,-8163]]},{"type":"Polygon","properties":{"NOM_MUN":"Suma","POB1":1876},"arcs":[[-8018,8294,8295,-7999,-8205]]},{"type":"Polygon","properties":{"NOM_MUN":"Tahdziú","POB1":4447},"arcs":[[-8221,-8060,-8022,8296]]},{"type":"Polygon","properties":{"NOM_MUN":"Tahmek","POB1":3609},"arcs":[[-8007,-8140,-8136,-8283,8297]]},{"type":"Polygon","properties":{"NOM_MUN":"Teabo","POB1":6205},"arcs":[[-8026,8298,-8185,-8092,-8192]]},{"type":"Polygon","properties":{"NOM_MUN":"Tecoh","POB1":16200},"arcs":[[-8055,-8145,8299,-8184,-8066,-8277,-7977,8300,-7981]]},{"type":"Polygon","properties":{"NOM_MUN":"Tekal de Venegas","POB1":2606},"arcs":[[-8043,8301,-8168,8302,8303,-8122,8304]]},{"type":"Polygon","properties":{"NOM_MUN":"Tekantó","POB1":3683},"arcs":[[8305,-8165,-7994,-8296]]},{"type":"Polygon","properties":{"NOM_MUN":"Tekax","POB1":40547},"arcs":[[8306,-6571,-240,-8213,-7985,-8186,-8299,-8025,8307]]},{"type":"Polygon","properties":{"NOM_MUN":"Tekit","POB1":9884},"arcs":[[-8193,-8095,-8182,-8300,-8144]]},{"type":"Polygon","properties":{"NOM_MUN":"Tekom","POB1":3100},"arcs":[[-8079,8308,-8084,-8062,-8050,8309]]},{"type":"Polygon","properties":{"NOM_MUN":"Telchac Pueblo","POB1":3557},"arcs":[[-8202,-8100,8310,-8286]]},{"type":"Polygon","properties":{"NOM_MUN":"Telchac Puerto","POB1":1726},"arcs":[[-8311,-8104,8311,-8287]]},{"type":"Polygon","properties":{"NOM_MUN":"Temax","POB1":6817},"arcs":[[-8004,-8044,-8305,-8123,-8304,8312,-8015,-8106,-8115]]},{"type":"Polygon","properties":{"NOM_MUN":"Temozón","POB1":14801},"arcs":[[-8072,8313,-8125,-8011,8314]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepakán","POB1":2226},"arcs":[[-8303,-8167,8315,-8016,-8313]]},{"type":"Polygon","properties":{"NOM_MUN":"Tetiz","POB1":4725},"arcs":[[-8280,-8179,-8034,-8155]]},{"type":"Polygon","properties":{"NOM_MUN":"Teya","POB1":1977},"arcs":[[-8316,-8166,-8306,-8295,-8017]]},{"type":"Polygon","properties":{"NOM_MUN":"Ticul","POB1":37685},"arcs":[[-8098,-8215,-8282,-8207,-8278,-8069]]},{"type":"Polygon","properties":{"NOM_MUN":"Timucuy","POB1":6833},"arcs":[[-7982,-8301,-7976,-8197,-8170]]},{"type":"Polygon","properties":{"NOM_MUN":"Tinum","POB1":11421},"arcs":[[8316,-8175,-8065,8317,-8117]]},{"type":"Polygon","properties":{"NOM_MUN":"Tixcacalcupul","POB1":6665},"arcs":[[-8078,-6473,-8081,-8309]]},{"type":"Polygon","properties":{"NOM_MUN":"Tixkokob","POB1":17176},"arcs":[[-8008,-8298,-8285,8318,-8195,8319,-7989,-8211]]},{"type":"Polygon","properties":{"NOM_MUN":"Tixmehuac","POB1":4746},"arcs":[[-8059,8320,-8308,-8024]]},{"type":"Polygon","properties":{"NOM_MUN":"Tixpéhual","POB1":5388},"arcs":[[-8284,-7984,-8169,-8196,-8319]]},{"type":"Polygon","properties":{"NOM_MUN":"Tizimín","POB1":73138},"arcs":[[-6576,-8073,-8315,-8013,-8124,-8292,-8216,-8274,8321]]},{"type":"Polygon","properties":{"NOM_MUN":"Tunkás","POB1":3464},"arcs":[[-8273,-8119,8322,-8293,-8162,-8302,-8042]]},{"type":"Polygon","properties":{"NOM_MUN":"Tzucacab","POB1":14011},"arcs":[[-8220,-6572,-8307,-8321,-8058]]},{"type":"Polygon","properties":{"NOM_MUN":"Uayma","POB1":3782},"arcs":[[8323,-8053,-8176,-8317,-8116,-8127]]},{"type":"Polygon","properties":{"NOM_MUN":"Ucú","POB1":3469},"arcs":[[-8199,8324,-8152,-8223]]},{"type":"Polygon","properties":{"NOM_MUN":"Umán","POB1":50993},"arcs":[[-8198,-7974,-8090,-8279,-8153,-8325]]},{"type":"Polygon","properties":{"NOM_MUN":"Valladolid","POB1":74217},"arcs":[[-8071,-6589,-6594,-6475,-8080,-8310,-8049,-8324,-8126,-8314]]},{"type":"Polygon","properties":{"NOM_MUN":"Xocchel","POB1":3236},"arcs":[[-8173,-8151,-8131,-8139]]},{"type":"Polygon","properties":{"NOM_MUN":"Yaxcabá","POB1":14802},"arcs":[[-8118,-8318,-8064,-8083,-8222,-8297,-8021,-8291,-8294,-8323]]},{"type":"Polygon","properties":{"NOM_MUN":"Yaxkukul","POB1":2868},"arcs":[[-8320,-8194,-8046,-8201,-7990]]},{"type":"Polygon","properties":{"NOM_MUN":"Yobaín","POB1":2137},"arcs":[[-8020,-8204,-8289,8325,-8107]]},{"type":"Polygon","properties":{"NOM_MUN":"Apozol","POB1":6314},"arcs":[[8326,8327,8328,8329]]},{"type":"Polygon","properties":{"NOM_MUN":"Apulco","POB1":5005},"arcs":[[-2823,-2731,8330]]},{"type":"Polygon","properties":{"NOM_MUN":"Atolinga","POB1":2692},"arcs":[[8331,-2594,-2857,8332]]},{"type":"Polygon","properties":{"NOM_MUN":"Benito Juárez","POB1":4372},"arcs":[[8333,8334,8335,-2836,-2783,-2596]]},{"type":"Polygon","properties":{"NOM_MUN":"Calera","POB1":39917},"arcs":[[8336,8337,8338,8339,8340,8341,8342]]},{"type":"Polygon","properties":{"NOM_MUN":"Cañitas de Felipe Pescador","POB1":8239},"arcs":[[8343,8344,8345]]},{"type":"Polygon","properties":{"NOM_MUN":"Concepción del Oro","POB1":12803},"arcs":[[8346,-6753,8347,-381]]},{"type":"Polygon","properties":{"NOM_MUN":"Cuauhtémoc","POB1":11915},"arcs":[[8348,-24,-36,8349,8350]]},{"type":"Polygon","properties":{"NOM_MUN":"Chalchihuites","POB1":10565},"arcs":[[8351,-1261,8352]]},{"type":"Polygon","properties":{"NOM_MUN":"Fresnillo","POB1":213139},"arcs":[[-8345,8353,8354,-8343,8355,-8341,8356,8357,8358,8359,8360]]},{"type":"Polygon","properties":{"NOM_MUN":"Trinidad García de la Cadena","POB1":3013},"arcs":[[8361,-2769,-2838,8362]]},{"type":"Polygon","properties":{"NOM_MUN":"Genaro Codina","POB1":8104},"arcs":[[8363,8364,-8350,-35,-39,8365,8366]]},{"type":"Polygon","properties":{"NOM_MUN":"General Enrique Estrada","POB1":5894},"arcs":[[-8342,-8356]]},{"type":"Polygon","properties":{"NOM_MUN":"General Francisco R. Murguía","POB1":21974},"arcs":[[8367,8368,-1255,-1181,-1252,8369,8370]]},{"type":"Polygon","properties":{"NOM_MUN":"El Plateado de Joaquín Amaro","POB1":1609},"arcs":[[8371,8372,8373,-2566,8374]]},{"type":"Polygon","properties":{"NOM_MUN":"General Pánfilo Natera","POB1":22346},"arcs":[[8375,8376,8377,8378,-6763]]},{"type":"Polygon","properties":{"NOM_MUN":"Guadalupe","POB1":159991},"arcs":[[-6764,-8379,8379,8380,-8364,8381,8382,8383]]},{"type":"Polygon","properties":{"NOM_MUN":"Huanusco","POB1":4306},"arcs":[[-19,-2872,-2826,8384,8385,8386]]},{"type":"Polygon","properties":{"NOM_MUN":"Jalpa","POB1":23557},"arcs":[[-2825,8387,-8330,8388,8389,8390,-8385]]},{"type":"Polygon","properties":{"NOM_MUN":"Jerez","POB1":57610},"arcs":[[-8340,8391,8392,8393,8394,8395,-8357]]},{"type":"Polygon","properties":{"NOM_MUN":"Jiménez del Teul","POB1":4584},"arcs":[[8396,8397,-1209,-1262,-8352]]},{"type":"Polygon","properties":{"NOM_MUN":"Juan Aldama","POB1":20543},"arcs":[[-8369,8398,8399,-1256]]},{"type":"Polygon","properties":{"NOM_MUN":"Juchipila","POB1":12284},"arcs":[[8400,8401,8402,8403,8404,-8328]]},{"type":"Polygon","properties":{"NOM_MUN":"Loreto","POB1":48365},"arcs":[[8405,8406,8407,-16,-40,8408]]},{"type":"Polygon","properties":{"NOM_MUN":"Luis Moya","POB1":12234},"arcs":[[8409,-8409,-41,-37,-25,-8349,8410]]},{"type":"Polygon","properties":{"NOM_MUN":"Mazapil","POB1":17813},"arcs":[[8411,-382,-8348,-6752,-6626,-6729,8412,-8370,-1253,-395]]},{"type":"Polygon","properties":{"NOM_MUN":"Melchor Ocampo","POB1":2662},"arcs":[[-383,-8412,-394,-363]]},{"type":"Polygon","properties":{"NOM_MUN":"Mezquital del Oro","POB1":2584},"arcs":[[-8403,8413,-2673,-2770,-8362,8414]]},{"type":"Polygon","properties":{"NOM_MUN":"Miguel Auza","POB1":22296},"arcs":[[8415,8416,-1167,-1257,-8400]]},{"type":"Polygon","properties":{"NOM_MUN":"Momax","POB1":2529},"arcs":[[-8374,8417,-2855,-2567]]},{"type":"Polygon","properties":{"NOM_MUN":"Monte Escobedo","POB1":8929},"arcs":[[8418,8419,-2635,-2562,-2561,-2560,-2859,-2871,-2737,8420]]},{"type":"Polygon","properties":{"NOM_MUN":"Morelos","POB1":11493},"arcs":[[8421,8422,-8338,8423]]},{"type":"Polygon","properties":{"NOM_MUN":"Moyahua de Estrada","POB1":4563},"arcs":[[8424,-2874,-2582,-2674,-8414,-8402]]},{"type":"Polygon","properties":{"NOM_MUN":"Nochistlán de Mejía","POB1":27932},"arcs":[[-8331,-2730,-2875,-8425,-8401,-8327,-8388,-2824]]},{"type":"Polygon","properties":{"NOM_MUN":"Noria de Ángeles","POB1":15607},"arcs":[[-6703,8425,8426,-8406,-8410,8427,8428]]},{"type":"Polygon","properties":{"NOM_MUN":"Ojocaliente","POB1":40740},"arcs":[[8429,-8428,-8411,-8351,-8365,-8381,8430,-8377]]},{"type":"Polygon","properties":{"NOM_MUN":"Pánuco","POB1":16875},"arcs":[[-6765,-8384,8431,-8424,-8337,-8355,8432]]},{"type":"Polygon","properties":{"NOM_MUN":"Pinos","POB1":69844},"arcs":[[-6604,-6686,-6759,-1405,-2744,8433,-8407,-8427,8434,-6701,-6687]]},{"type":"Polygon","properties":{"NOM_MUN":"Río Grande","POB1":62693},"arcs":[[8435,-8346,-8361,8436,8437,-8416,-8399,-8368]]},{"type":"Polygon","properties":{"NOM_MUN":"Sain Alto","POB1":21533},"arcs":[[-8360,8438,-8437]]},{"type":"Polygon","properties":{"NOM_MUN":"El Salvador","POB1":2710},"arcs":[[-3892,-6754,-8347,-380]]},{"type":"Polygon","properties":{"NOM_MUN":"Sombrerete","POB1":61188},"arcs":[[-8438,-8439,-8359,8439,-8397,-8353,-1264,-1272,-1238,-1168,-8417]]},{"type":"Polygon","properties":{"NOM_MUN":"Susticacán","POB1":1360},"arcs":[[8440,-8419,8441,-8395]]},{"type":"Polygon","properties":{"NOM_MUN":"Tabasco","POB1":15656},"arcs":[[8442,-20,-8387,-8372]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepechitlán","POB1":8215},"arcs":[[-8390,8443,-8334,-2595,-8332,8444]]},{"type":"Polygon","properties":{"NOM_MUN":"Tepetongo","POB1":7090},"arcs":[[-8394,8445,-2800,-2636,-8420,-8441]]},{"type":"Polygon","properties":{"NOM_MUN":"Teúl de González Ortega","POB1":5506},"arcs":[[8446,-8404,-8415,-8363,-2837,-8336]]},{"type":"Polygon","properties":{"NOM_MUN":"Tlaltenango de Sánchez Román","POB1":25493},"arcs":[[-8373,-8386,-8391,-8445,-8333,-2856,-8418]]},{"type":"Polygon","properties":{"NOM_MUN":"Valparaíso","POB1":33323},"arcs":[[-8358,-8396,-8442,-8421,-2736,-2638,-2735,-3741,-1210,-8398,-8440]]},{"type":"Polygon","properties":{"NOM_MUN":"Vetagrande","POB1":9353},"arcs":[[-8383,8447,-8422,-8432]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa de Cos","POB1":34328},"arcs":[[-8413,-6728,-6766,-8433,-8354,-8344,-8436,-8371]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa García","POB1":18269},"arcs":[[-8434,-2743,-10,-8408]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa González Ortega","POB1":12893},"arcs":[[-6762,-6704,-8429,-8430,-8376]]},{"type":"Polygon","properties":{"NOM_MUN":"Villa Hidalgo","POB1":18490},"arcs":[[-8435,-8426,-6702]]},{"type":"Polygon","properties":{"NOM_MUN":"Villanueva","POB1":29395},"arcs":[[-8366,-38,-21,-8443,-8375,-2565,-2801,-8446,-8393,8448]]},{"type":"Polygon","properties":{"NOM_MUN":"Zacatecas","POB1":138176},"arcs":[[-8448,-8382,-8367,-8449,-8392,-8339,-8423]]},{"type":"Polygon","properties":{"NOM_MUN":"Trancoso","POB1":16934},"arcs":[[-8431,-8380,-8378]]},{"type":"Polygon","properties":{"NOM_MUN":"Santa María de la Paz","POB1":2821},"arcs":[[-8389,-8329,-8405,-8447,-8335,-8444]]}]},"states":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"POB1":1184996},"arcs":[[36,40,39,15,9,10,41,42,1,2,3,4,17,18,19,20,37,38,34,35,23,24]]},{"type":"MultiPolygon","properties":{"POB1":3155070},"arcs":[[[43]],[[44]],[[45]],[[46]],[[47]],[[91]],[[48]],[[49]],[[92]],[[93]],[[94]],[[95]],[[96]],[[50]],[[97]],[[98]],[[51]],[[99]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[100]],[[72]],[[73]],[[74]],[[75]],[[76]],[[101]],[[102]],[[103]],[[77]],[[78]],[[79]],[[80]],[[104]],[[105]],[[81]],[[82]],[[116]],[[117]],[[90]],[[115,113,106,8449,108,109,8450,111,83,84,85,124,8451,126,119,8452,121,8453,123]]]},{"type":"MultiPolygon","properties":{"POB1":637026},"arcs":[[[180]],[[181]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[134]],[[133]],[[136]],[[135]],[[132]],[[137]],[[139]],[[138]],[[191]],[[189]],[[185]],[[186]],[[192]],[[190]],[[195]],[[198]],[[196]],[[199]],[[188]],[[197]],[[193]],[[184]],[[194]],[[187]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[183,128,179,8454,176,182,178,130,158,-85,159]]]},{"type":"MultiPolygon","properties":{"POB1":822441},"arcs":[[[204,205,206,207,244,238,239,240,241,250,251,253,254,221,222,245,246,224,225,226,228,8455,230,214,247,236,210,211]],[[203]],[[201]],[[202]],[[237]],[[218]],[[200]],[[216]],[[217]]]},{"type":"Polygon","properties":{"POB1":2748391},"arcs":[[322,366,353,317,321,319,329,325,367,281,275,276,283,8456,285,8457,287,372,373,370,269,270,271,272,376,8458,378,379,380,381,382,362,393,394,395,396,388,389,397,334,391,392,336,304,305,384,385,386,387,356,357,264]]},{"type":"MultiPolygon","properties":{"POB1":650555},"arcs":[[[436]],[[426]],[[437]],[[431]],[[410,423,420,421,402,403,404,424,438,439,399,428,429,430,434,435,414,415]],[[432]]]},{"type":"Polygon","properties":{"POB1":4796580},"arcs":[[518,723,676,724,725,726,704,813,816,707,815,683,804,615,466,685,694,787,517,808,514,807,690,618,780,783,8459,785,689,640,453,679,740,798,799,486,487,523,524,525,526,788,789,716,737,667,8460,669,753,754,755,748,8461,750,8462,752,671,665,738,657,465,459,636,760,795,796,763,728,520,521]]},{"type":"Polygon","properties":{"POB1":3406465},"arcs":[[1016,8463,1018,8464,8465,1021,8466,978,8467,980,8468,8469,8470,984,8471,986,8472,988,8473,990,8474,992,8475,8476,995,8477,997,8478,999,8479,1001,8480,8481,1004,8482,8483,1007,8484,8485,8486,1011,8487,1013,8488,1015,942,1055,939,1054,1033,-357,-388,-387,-386,973,974,975,892,893,1036,1067,1065,852,853,943,944,945,946,947,1040,1041,858,1073,950,915,916,1074,1075,1076,1044,1045,1071,1072,1027,1028,887,888,889,969,970,971,972,844]]},{"type":"Polygon","properties":{"POB1":8851080},"arcs":[[8489,1094,1095,1096,1146,1104,1109,1110,1111,1130,1131,8490,1133,1118,1119,1120,1121,1122,1136,1137,1138,1139,1115,1128,1089,1090,1144,1145,1080,1081,1099,8491,1101,1102,1103,1091,1092]]},{"type":"Polygon","properties":{"POB1":1632934},"arcs":[[-1068,-1037,-894,-893,-976,-975,-974,-385,-306,-305,-337,-393,-392,-335,-398,-390,-389,-397,-396,1252,1251,1180,1254,1255,1256,1166,1167,1237,1271,1263,1260,1261,1208,1209,1210,8492,8493,1213,1214,1215,1239,1240,1241,1246,1247,1248,1266,1267,1268,1269,-946,-945,-944,-854,-853,-1066]]},{"type":"Polygon","properties":{"POB1":5486372},"arcs":[[1436,1437,1433,1446,1447,1444,1478,1479,1480,1482,1483,8494,1485,8495,1487,8496,1489,8497,1491,8498,1493,1309,8499,1311,8500,8501,1314,1315,1316,8502,1318,1494,8503,1496,8504,1498,8505,8506,1501,1449,8507,1451,8508,8509,1454,8510,8511,1457,8512,1459,1465,1466,8513,1468,1469,1470,1440,8514,1442,1443,1289,8515,1291,1308,8516,1304,1305,1302,1388,8517,1390,8518,8519,8520,1369,8521,1371,8522,8523,1374,8524,1376,8525,1378,1379,8526,1381,8527,1383,1334,1332,1384,1385,1464,1280,1281,1282,1283,1427,1502,1472,1473,1399,1400,1503,1504,1505,1476,1477,1357,1276,1407,1408,1409,1410,1411,1412,1413,1328,1417,1418,1419,1420,1395,1396,1434,1402,1403,1404,1405,1435]]},{"type":"MultiPolygon","properties":{"POB1":3388768},"arcs":[[[1506]],[[1691]],[[1641,1642,1782,1780,1546,1663,1767,1768,1769,1727,1728,1771,1741,1742,1743,1731,1732,8528,1734,8529,1736,8530,1738,1765,1756,8531,1758,8532,1760,8533,1762,1583,1584,1676,1677,8534,8535,1680,1672,1551,1548,1604,1605,1717,1793,1794,1791,1792,1668,1536,1532,1786,1783,1784,1524,1525,1526,1773,1774,1775,1800,1801,1795,1796,1797,1798,1799,1719,1720,1721,1722,1625,1626,1627,1628,1629,1806,1601,1660,1753,1509,1616,1581,1766,1730,1693,1788,1789,1790,1592,1593,1803,1804,1624,1618,1746,1645,1646,1647]]]},{"type":"Polygon","properties":{"POB1":2665018},"arcs":[[2188,8536,8537,2191,8538,8539,8540,2195,8541,8542,2198,8543,8544,8545,2202,8546,8547,2205,8548,8549,2208,8550,2210,8551,2212,2213,8552,2215,8553,2217,8554,2061,8555,2063,8556,2065,8557,2067,2068,8558,2070,8559,8560,8561,8562,2075,8563,2077,2078,2079,2080,2081,2023,8564,2025,8565,2027,2028,2029,8566,2031,8567,2033,8568,2035,8569,2037,8570,2039,8571,2041,8572,2043,2424,2425,2426,8573,2428,8574,2430,2431,2434,2387,2435,2436,2437,2130,8575,2132,8576,2134,1932,2020,1807,1890,1891,2287,2288,2289,2055,8577,2057,8578,2059,2049,2050,2051,2052,2315,2316,2317,2318,8579,2320,8580,2322,2127,1815,1816,1817,1818,8581,1820,8582,1822,8583,1824,8584,1826,8585,1828,8586,1830,8587,1832,8588,8589,1835,8590,8591,1838,8592,1840,8593,1842,8594,1844,8595,1846,8596,8597,8598,8599,8600,1852,8601,1854,8602,1856,8603,1858,8604,1860,8605,1862,1863,8606,8607,8608,1867,8609,1869,8610,8611,8612,1873,8613,8614,1876,8615,1878,1970,8616,1972,8617,1974,8618,1976,8619,1978,8620,1980,8621,1982,1983,1984,1913,1910,1911,1914,1915,1916,1917,2010,2011,2012,2323,2409,2410,2439,2440,2379,2380,2415,8622,8623,2418,8624,2420,2391,8625,2393,8626,2395,8627,8628,8629,2399,8630,8631,8632,2403,2404,2405,2406,2421,2258,8633,2260,8634,2262,8635,2264,8636,8637,2267,8638,2269,8639,2271,8640,2273,8641,8642,2276,8643,8644,2279,8645,2281,8646,2283,8647,8648,2286,1897,1898,1938,8649,1940,8650,1942,1943,8651,1945,1946,8652,1948,8653,1950,8654,1952,8655,1954,8656,2327,8657,8658,2330,8659,8660,2333,8661,2335,8662,2337,8663,2339,8664,2341,8665,2343,8666,2345,8667,2347,2348,8668,8669,2351,2352,2353,2354,8670,8671,2357,8672,2359,8673,2361,8674,2363,8675,2365,8676,8677,2368,8678,2370,2371,8679,2373,2422,2423,1993,2162,8680,2164,8681,2166,8682,2168,8683,2170,2171,8684,8685,2174,8686,2176,8687,8688,2179,8689,8690,2182,8691,2184,8692,2186,2087,8693,2089,2090,2300,2301,8694,2303,8695,2305,8696,2307,8697,8698,2310,2311,8699,2313,2441,2242,2243,2244,2245,2101,2151,2251,2252,2253,2250,1999,2326,2118,8700,2120,8701,2122,8702,8703,2125,8704,2107,8705,2109,8706,8707,2112,8708,2412,2219,8709,2221,8710,8711,2224,8712,2226,8713,2228,2229,8714,2231,8715,2233,8716,2235,8717,2237,8718,2239,2240]]},{"type":"MultiPolygon","properties":{"POB1":7350682},"arcs":[[[2644]],[[2654]],[[2647]],[[2658]],[[2663]],[[2665]],[[2650]],[[2657]],[[2653]],[[2646]],[[2660]],[[2656]],[[2643]],[[2664]],[[2651]],[[2649]],[[2662]],[[2645]],[[2648]],[[2641]],[[2661]],[[2642]],[[2667]],[[2659]],[[2655]],[[2666]],[[2652]],[[2757]],[[2735,2736,2870,2858,2559,8719,2561,2634,2635,2799,2800,2564,2565,2566,2854,2855,2856,2593,2594,2595,2782,2835,2836,2837,2768,2769,2672,2673,2581,2873,2874,2729,2730,2822,2823,2824,2825,2871,-18,-5,-4,-3,-2,-43,-42,-11,2742,2743,-1404,-1403,-1435,-1397,-1396,-1421,-1420,-1419,-1418,-1329,-1414,-1413,2603,2604,2522,2523,2530,2531,2532,2681,2748,2749,2750,2839,2840,2719,2724,2867,2761,2762,2759,2712,2713,2714,2715,2685,2686,2687,2815,2816,2744,2745,-403,-422,-421,-424,-411,-416,-415,-436,-435,-431,-430,2548,2638,2849,2540,2753,2754,2794,2795,2796,2797,2798,2622,2467,2614,2781,8720,2779,2780,2707,2630,2631,2834,2784,2539,2732,2733,2734,2637]]]},{"type":"Polygon","properties":{"POB1":15175862},"arcs":[[-2187,-8693,-2185,-8692,-2183,-8691,-8690,-2180,-8689,-8688,-2177,-8687,-2175,-8686,-8685,-2172,-2171,-8684,-2169,-8683,-2167,-8682,-2165,-8681,-2163,-1994,-2424,-2423,-2374,-8680,-2372,-2371,-8679,-2369,-8678,-8677,-2366,-8676,-2364,-8675,-2362,-8674,-2360,-8673,-2358,-8672,-8671,-2355,-2354,-2353,-2352,-8670,-8669,-2349,-2348,-8668,-2346,-8667,-2344,-8666,-2342,-8665,-2340,-8664,-2338,-8663,-2336,-8662,-2334,-8661,-8660,-2331,-8659,-8658,-2328,-8657,-1955,-8656,-1953,-8655,-1951,-8654,-1949,-8653,-1947,-1946,-8652,-1944,-1943,-8651,-1941,-8650,-1939,-1899,-1898,-2287,-8649,-8648,-2284,-8647,-2282,-8646,-2280,-8645,-8644,-2277,-8643,-8642,-2274,-8641,-2272,-8640,-2270,-8639,-2268,-8638,-8637,-2265,-8636,-2263,-8635,-2261,-8634,-2259,-2422,-2407,-2406,-2405,-2404,-8633,-8632,-8631,-2400,-8630,-8629,-8628,-2396,-8627,-2394,-8626,-2392,-2421,-8625,-2419,-8624,-8623,-2416,-2381,-2380,-2441,-2440,-2411,-2410,-2324,-2013,-2012,3179,3255,3265,3054,3266,3267,3268,2925,2926,2949,2950,2951,3041,3037,3038,8721,3040,2953,3193,3194,3257,8722,3259,3260,3103,3104,-1120,-1119,-1134,-8491,-1132,-1131,-1112,-1111,-1110,-1105,-1147,-1097,-1096,-1095,-8490,-1093,-1092,-1104,-1103,-1102,-8492,-1100,-1082,-1081,-1146,-1145,-1091,-1090,-1129,-1116,-1140,-1139,-1138,3071,3164,3165,8723,3167,3168,8724,3170,8725,8726,3173,3116,8727,3118,8728,3120,8729,8730,3123,3124,8731,3126,8732,8733,8734,3130,8735,3132,8736,3283,8737,3285,-1732,-1744,-1743,-1742,-1772,-1729,-1728,-1770,-1769,-1768,-1664,-1547,-1781,-1783,-1643,-1642,-1648,3286,3287,3288,3188,3219,3063,3064,3029,3278,3289,3290,3291,3292,3293,3177,3178,3237,3236,2878,8738,2880,2896,2897,8739,8740,2892,3199,8741,3201,8742,3203]]},{"type":"Polygon","properties":{"POB1":4351037},"arcs":[[-1411,-1410,-1409,-1408,-1277,-1358,-1478,-1477,-1506,-1505,-1504,-1401,-1400,-1474,-1473,-1503,-1428,-1284,-1283,-1282,-1281,-1465,-1386,-1385,-1333,3429,8743,3431,3432,3371,8744,3365,8745,3367,-3238,-3179,-3178,-3294,-3293,-3292,-3291,-3290,-3279,-3030,-3065,-3064,-3220,-3189,-3289,-3288,-3287,-1647,-1646,-1747,-1619,-1625,-1805,-1804,-1594,-1593,-1791,-1790,3511,3329,3354,-439,-425,-405,-404,-2746,-2745,-2817,-2816,-2688,-2687,-2686,-2716,-2715,-2714,-2713,-2760,-2763,-2762,-2868,-2725,-2720,-2841,-2840,-2751,-2750,-2749,-2682,-2533,-2532,-2531,-2524,-2523,-2605,-2604,-1412]]},{"type":"Polygon","properties":{"POB1":1777227},"arcs":[[-1121,-3105,-3104,-3261,-3260,-8723,-3258,-3195,-3194,-2954,-3041,-8722,-3039,-3038,-3042,-2952,3680,3678,3695,3693,3696,3649,3650,3614,3615,3616,3617,3618,3673,3687,3688,-1681,-8536,-8535,-1678,-1677,-1585,-1584,-1763,-8534,-1761,-8533,-1759,-8532,-1757,-1766,-1739,-8531,-1737,-8530,-1735,-8529,-1733,-3286,-8738,-3284,-8737,-3133,-8736,-3131,-8735,-8734,-8733,-3127,-8732,-3125,-3124,-8731,-8730,-3121,-8729,-3119,-8728,-3117,-3174,-8727,-8726,-3171,-8725,-3169,-3168,-8724,-3166,-3165,-3072,-1137,-1123,-1122]]},{"type":"MultiPolygon","properties":{"POB1":1084979},"arcs":[[[3708]],[[3746]],[[3747]],[[3748]],[[3760]],[[3764]],[[-1216,-1215,-1214,-8494,-8493,-1211,3740,-2734,-2733,-2540,-2785,-2835,-2632,-2631,-2708,-2781,-2780,-8721,-2782,-2615,-2468,-2623,-2799,-2798,-2797,-2796,-2795,-2755,3778,8746,3780,8747,3782,8748,3784,8749,3786,8750,3788,8751,3790,8752,3792,8753,3794,8754,3796,3712,8755,3714,8756,3716,8757,3718,8758,3720,8759,3722,3750,8760,3752,8761,3754,8762,3756,8763,3758,3767,8764,3769,3772,8765,3774,8766,3776,3777,3700,3724,3725,-1240]]]},{"type":"Polygon","properties":{"POB1":4653458},"arcs":[[3816,8767,3818,8768,3820,3821,3822,3967,3958,3956,3800,3912,3812,3807,3883,3884,3901,3899,3900,3865,3866,3867,3906,8769,3938,3939,3940,3941,3931,3837,3838,3832,3913,3914,3915,3916,3872,3945,3946,3874,3875,3876,8770,3878,3879,3880,3890,3891,-379,-8459,-377,-273,-272,-271,-270,-371,-374,-373,-288,-8458,-286,-8457,-284,-277,-276,-282,-368,-326,-330,-320]]},{"type":"MultiPolygon","properties":{"POB1":3801962},"arcs":[[[5535]],[[5537]],[[5534]],[[5538]],[[5539]],[[5540]],[[5542]],[[5536]],[[5541]],[[5377]],[[5608]],[[4079,3978,5239,4923,4913,4914,4915,4916,4233,4228,4229,4230,4231,4917,4227,5638,4997,4998,5675,5676,5677,4944,4945,4303,8771,4305,5521,5522,5523,-527,-526,-525,-524,-488,-487,-800,4755,4696,4217,5142,4450,5690,5607,5314,5195,5532,5349,5586,8772,5588,5511,5335,5374,5636,5544,5656,5686,5663,-1629,-1628,-1627,-1626,-1723,-1722,-1721,-1720,-1800,-1799,-1798,-1797,-1796,-1802,-1801,-1776,-1775,-1774,-1527,-1526,-1525,-1785,-1784,-1787,-1533,-1537,-1669,-1793,5718,4933,4934,4928,4297,4146,4147,5181,5177,5611,4839,4840,4841,5610,4181,5719,4183,4184,5650,5396,4185,4186,4187,5397,4083,4084,5618,5619,5620,5621,5617,5391,5392,5393,5462,4068,5712,5713,4594,4595,5705,5706,5668,5578,4760,5090,5087,5430,4137,5519,5520,3976,4080,4081]]]},{"type":"Polygon","properties":{"POB1":5779829},"arcs":[[6024,6025,6379,6380,6381,6125,6388,6403,6404,6136,6137,6205,6206,6207,6071,6067,5873,6376,6377,6324,6325,6092,5727,5728,5729,6087,6088,6390,6391,6343,6035,6153,6154,6001,6002,6239,8773,6241,5973,5974,5975,5976,5977,6237,6359,5945,5946,5841,5842,5843,6018,6019,6173,6174,5952,6186,6382,6383,6384,6385,6386,6387,5780,5781,6009,6010,6299,-5520,-4138,-5431,-5088,-5091,-4761,-5579,-5669,-5707,-5706,-4596,-4595,-5714,-5713,-4069,-5463,-5394,-5393,-5392,-5618,-5622,-5621,-5620,-5619,-4085,-4084,-5398,-4188,-4187,-4186,-5397,-5651,-4185,-4184,-5720,-4182,-5611,-4842,-4841,-4840,-5612,-5178,-5182,-4148,-4147,-4298,-4929,-4935,-4934,-5719,-1792,-1795,-1794,-1718,-1606,-1605,-1549,-1552,-1673,-3689,-3688,-3674,-3619,-3618,-3617,-3616,-3615,-3651,-3650,-3697,-3694,-3696,-3679,-3681,-2951,-2950,-2927,-2926,-3269,-3268,-3267,-3055,-3266,6360,6361,6362,6363,6364,6281,6295,6276,6277,6278,6077,6365,6284,6285,6286,5893,5922,5923,5924,6231,6232,6233,6331,5720,5721,6190,6191,6192,6267,6268,6269,6208,6156,6157,6113,6114,6115,6116,5986,-1911,-1914,-1985,-1984,-1983,-8622,-1981,-8621,-1979,-8620,-1977,-8619,-1975,-8618,-1973,-8617,-1971,-1879,-8616,-1877,-8615,-8614,-1874,-8613,-8612,-8611,-1870,-8610,-1868,-8609,-8608,-8607,-1864,-1863,-8606,-1861,-8605,-1859,-8604,-1857,-8603,-1855,-8602,-1853,-8601,-8600,-8599,-8598,-8597,-1847,-8596,-1845,-8595,-1843,-8594,-1841,-8593,-1839,-8592,-8591,-1836,-8590,-8589,-1833,-8588,-1831,-8587,-1829,-8586,-1827,-8585,-1825,-8584,-1823,-8583,-1821,-8582,-1819,-1818,-1817,-1816,-2128,-2323,-8581,-2321,-8580,-2319,-2318,-2317,-2316,-2053,-2052,-2051,-2050,6218,6022,6023]]},{"type":"Polygon","properties":{"POB1":1827937},"arcs":[[6439,8774,6441,8775,6443,8776,6445,8777,6447,6448,8778,6458,8779,6456,-2252,-2152,-2102,-2246,-2245,-2244,-2243,-2442,-2314,-8700,-2312,-2311,-8699,-8698,-2308,-8697,-2306,-8696,-2304,-8695,-2302,-2301,-2091,-2090,-8694,-2088,-3204,-8743,-3202,-8742,-3200,-2893,-8741,-8740,-2898,-2897,-2881,-8739,-2879,-3237,-3368,-8746,-3366,-8745,-3372,-3433,-3432,-8744,-3430,-1335,-1384,-8528,-1382,-8527,-1380,-1379,-8526,-1377,-8525,-1375,-8524,-8523,-1372,-8522,-1370,-8521,-8520,-8519,-1391,-8518,-1389,-1303,-1306,-1305,-8517,-1309,-1292,-8516,-1290,-1444,-1443,-8515,-1441,-1471,-1470,-1469,-8514,-1467,-1466,-1460,-8513,-1458,-8512,-8511,-1455,-8510,-8509,-1452,-8508,-1450,-1502,-8507,-8506,-1499,-8505,-1497,-8504,-1495,-1319,-8503,-1317,-1316,-1315,-8502,-8501,-1312,-8500,-1310,-1494,-8499,-1492,-8498,-1490,-8497,-1488,-8496,-1486,-8495,-1484,6421,6412,8780,8781,8782,6416,8783,6418,6419,6451,8784,6453,6454]]},{"type":"MultiPolygon","properties":{"POB1":1325578},"arcs":[[[6476,6563,8785,6565,-251,-242,-241,6570,6571,6572,6573,6471,6472,6473,6474,6593,6588,6589,6574,6575,6576,6517,8786,6519,6569,6581,6466,6582,8787,6584,8788,6586,8789,6595,8790,6597,8791,8792,6600,6468,6590,8793,6592]],[[6465]],[[6522,6578,8794,6580]],[[6541]],[[6550]],[[6544]],[[6521]],[[6479]],[[6524]],[[6525]],[[6539]],[[6526]],[[6538]],[[6545]],[[6546]],[[6534]],[[6480]],[[6481]],[[6552]],[[6543]],[[6527]],[[6558]],[[6535]],[[6482]],[[6562]],[[6528]],[[6483]],[[6529]],[[6484]],[[6530]],[[6485]],[[6486]],[[6487]],[[6533]],[[6488]],[[6554]],[[6540]],[[6489]],[[6490]],[[6542]],[[6491]],[[6492]],[[6547]],[[6493]],[[6494]],[[6495]],[[6536]],[[6531]],[[6537]],[[6496]],[[6549]],[[6532]],[[6497]],[[6498]],[[6560]],[[6559]],[[6548]],[[6499]],[[6561]],[[6500]],[[6501]],[[6502]],[[6503]],[[6470]],[[6553]],[[6504]],[[6557]],[[6505]],[[6555]],[[6506]],[[6556]],[[6507]],[[6551]],[[6508]],[[6509]],[[6510]],[[6511]],[[6512]],[[6513]],[[6514]],[[6515]]]},{"type":"Polygon","properties":{"POB1":2585518},"arcs":[[-3881,-3880,-3879,-8771,-3877,-3876,-3875,-3947,6672,6673,6645,6771,6772,6773,6657,6658,6747,6748,6744,6671,6745,6734,6729,6730,6750,6719,-2240,-8719,-2238,-8718,-2236,-8717,-2234,-8716,-2232,-8715,-2230,-2229,-8714,-2227,-8713,-2225,-8712,-8711,-2222,-8710,-2220,-2413,-8709,-2113,-8708,-8707,-2110,-8706,-2108,-8705,-2126,-8704,-8703,-2123,-8702,-2121,-8701,-2119,-2327,-2000,-2251,-2254,-2253,-6457,-8780,-6459,-8779,-6449,-6448,-8778,-6446,-8777,-6444,-8776,-6442,-8775,-6440,-6455,-6454,-8785,-6452,-6420,-6419,-8784,-6417,-8783,-8782,-8781,-6413,-6422,-1483,-1481,-1480,-1479,-1445,-1448,-1447,-1434,-1438,-1437,-1436,-1406,6758,6685,6603,6686,6700,6701,6702,6703,6761,6762,6763,6764,6765,6727,6728,6625,6751,6752,6753,-3891]]},{"type":"MultiPolygon","properties":{"POB1":2767761},"arcs":[[[6812]],[[6813]],[[6814]],[[6815]],[[6816]],[[6817]],[[6818]],[[6780]],[[6781]],[[6782]],[[-951,-1074,-859,-1042,-1041,-948,-947,-1270,-1269,-1268,-1267,-1249,-1248,-1247,-1242,-1241,-3726,-3725,-3701,-3778,6805,6825,6820,6827,6804,6797,6828,6785,6810,6777,6778,6779,6808,6802,-916]]]},{"type":"MultiPolygon","properties":{"POB1":2662480},"arcs":[[[6951]],[[6952]],[[6953]],[[6954]],[[6955]],[[6956]],[[6957]],[[6958]],[[6959]],[[6960]],[[6961]],[[6962]],[[6963]],[[6964]],[[6965]],[[6966]],[[6967]],[[6968]],[[6983]],[[6982]],[[6984]],[[6981]],[[7040]],[[7041,8795,7043,7027,7059,6900,6849,7053,7014,7051,7007,6839,-972,-971,-970,-890,-889,-888,-1029,-1028,-1073,-1072,-1046,-1045,-1077,-1076,-1075,-917,-6803,-6809,-6780,-6779,6991,6944,7060,6909,6880,7061,6971,6942,6973,6980,7025,6897,7029,7044,-109,-8450,-107],[6940,6972],[6975]]]},{"type":"Polygon","properties":{"POB1":2238603},"arcs":[[-225,-247,-246,-223,-222,-255,7062,7123,8796,7125,-726,-725,-677,-724,-519,-522,-521,-729,-764,-797,-796,-761,-637,-460,-466,-658,-739,-666,-672,-753,-8463,-751,-8462,-749,-756,-755,-754,-670,-8461,-668,-738,-717,-790,7100,8797,7102,7103,7068,7069,8798,7071,8799,7073,8800,7075,7121,8801,7112,8802,8803,8804,7116,8805,8806,8807,7120,7083,8808,7085,8809,7087,-226]]},{"type":"Polygon","properties":{"POB1":3268554},"arcs":[[7181,7209,7211,7154,7185,7220,7223,7231,7205,7226,7228,7131,7136,7164,7162,7229,7230,7139,7173,7200,-6749,-6748,-6659,-6658,-6774,-6773,-6772,-6646,-6674,-6673,-3946,-3873,-3917,-3916,-3915,-3914,-3833,-3839,-3838,-3932,-3942,-3941,-3940,-3939,-8770,-3907,-3868,-3867,-3866,-3901,-3900,-3902,-3885,-3884,-3808,-3813,-3913,-3801,-3957,-3959,-3968,-3823,-3822,7213]]},{"type":"Polygon","properties":{"POB1":1169936},"arcs":[[-6117,-6116,-6115,-6114,-6158,-6157,-6209,-6270,-6269,-6268,-6193,-6192,-6191,-5722,-5721,-6332,-6234,-6233,-6232,-5925,-5924,-5923,-5894,-6287,-6286,-6285,-6366,-6078,-6279,-6278,-6277,-6296,-6282,-6365,-6364,-6363,-6362,-6361,-3256,-3180,-2011,-1918,-1917,-1916,-1915,-1912,-5987]]},{"type":"MultiPolygon","properties":{"POB1":7643194},"arcs":[[[7968]],[[7926]],[[-7231,-7230,-7163,7886,7927,7922,7964,7548,7863,7934,7835,7966,7429,7409,7965,7471,7967,7528,7445,7788,7463,7904,7546,7809,7970,7858,7577,7969,-7069,-7104,-7103,-8798,-7101,-789,-5524,-5523,-5522,-4306,-8772,-4304,-4946,-4945,-5678,-5677,-5676,-4999,-4998,-5639,-4228,-4918,-4232,-4231,-4230,-4229,-4234,-4917,-4916,-4915,-4914,-4924,-5240,-3979,-4080,-4082,-4081,-3977,-5521,-6300,-6011,-6010,-5782,-5781,-6388,-6387,-6386,-6385,-6384,-6383,-6187,-5953,-6175,-6174,-6020,-6019,-5844,-5843,-5842,-5947,-5946,-6360,-6238,-5978,-5977,-5976,-5975,-5974,-6242,-8774,-6240,-6003,-6002,-6155,-6154,-6036,-6344,-6392,-6391,-6089,-6088,-5730,-5729,-5728,-6093,-6326,-6325,-6378,-6377,-5874,-6068,-6072,-6208,-6207,-6206,-6138,-6137,-6405,-6404,-6389,-6126,-6382,-6381,-6380,-6026,-6025,-6024,-6023,-6219,-2060,-8579,-2058,-8578,-2056,-2290,-2289,-2288,-1892,-1891,-1808,-2021,-1933,-2135,-8577,-2133,-8576,-2131,-2438,-2437,-2436,-2388,-2435,-2432,-2431,-8575,-2429,-8574,-2427,-2426,-2425,-2044,-8573,-2042,-8572,-2040,-8571,-2038,-8570,-2036,-8569,-2034,-8568,-2032,-8567,-2030,-2029,-2028,-8566,-2026,-8565,-2024,-2082,-2081,-2080,-2079,-2078,-8564,-2076,-8563,-8562,-8561,-8560,-2071,-8559,-2069,-2068,-8558,-2066,-8557,-2064,-8556,-2062,-8555,-2218,-8554,-2216,-8553,-2214,-2213,-8552,-2211,-8551,-2209,-8550,-8549,-2206,-8548,-8547,-2203,-8546,-8545,-8544,-2199,-8543,-8542,-2196,-8541,-8540,-8539,-2192,-8538,-8537,-2189,-2241,-6720,-6751,-6731,-6730,-6735,-6746,-6672,-6745,-7201,-7174,-7140]]]},{"type":"MultiPolygon","properties":{"POB1":1955577},"arcs":[[[8028]],[[8029]],[[8030]],[[8031]],[[8032]],[[8224]],[[8321,-6576,-6575,-6590,-6589,-6594,-6475,-6474,-6473,-6472,-6574,-6573,-6572,-6571,-240,-239,-245,-208,-207,-206,-205,-212,8036,8155,8223,8160,8102,8311,8287,8325,8107,8112,8280,8275]],[[8225]],[[8226]],[[8227]],[[8228]],[[8229]],[[8230]],[[8231]],[[8232]],[[8233]],[[8234]],[[8235]],[[8236]],[[8237]],[[8238]],[[8239]],[[8240]],[[8241]],[[8242]],[[8243]],[[8244]],[[8245]],[[8246]],[[8247]],[[8248]],[[8249]],[[8250]],[[8251]],[[8252]],[[8253]],[[8254]],[[8255]],[[8256]],[[8257]],[[8258]],[[8259]],[[8260]],[[8261]],[[8262]],[[8263]],[[8264]],[[8265]],[[8266]],[[8267]],[[8268]],[[8269]],[[8270]],[[8271]]]},{"type":"Polygon","properties":{"POB1":1490668},"arcs":[[-383,-382,-381,-380,-3892,-6754,-6753,-6752,-6626,-6729,-6728,-6766,-6765,-6764,-6763,-6762,-6704,-6703,-6702,-6701,-6687,-6604,-6686,-6759,-1405,-2744,-2743,-10,-16,-40,-41,-37,-25,-24,-36,-35,-39,-38,-21,-20,-19,-2872,-2826,-2825,-2824,-2823,-2731,-2730,-2875,-2874,-2582,-2674,-2673,-2770,-2769,-2838,-2837,-2836,-2783,-2596,-2595,-2594,-2857,-2856,-2855,-2567,-2566,-2565,-2801,-2800,-2636,-2635,-2562,-8720,-2560,-2859,-2871,-2737,-2736,-2638,-2735,-3741,-1210,-1209,-1262,-1261,-1264,-1272,-1238,-1168,-1167,-1257,-1256,-1255,-1181,-1252,-1253,-395,-394,-363]]}]}},"arcs":[[[5145,6045],[0,15],[9,9],[0,5],[-20,-4],[0,21],[-10,0],[3,15],[-1,22],[-5,-1],[-1,15],[6,7],[2,20],[15,-5],[13,3]],[[5156,6167],[-3,8],[-7,3],[-3,12]],[[5143,6190],[-16,29],[-5,-4],[-2,11],[-12,-4],[-5,22],[-20,0],[-5,15],[-10,-1],[-13,-13]],[[5055,6245],[-12,-9]],[[5043,6236],[-10,-7],[-1,-9],[-9,-3],[-18,-15],[-3,-6],[-10,0]],[[4992,6196],[8,-8],[1,-12],[8,-2],[-4,-12]],[[5005,6162],[27,-6],[7,-15],[0,-7],[12,-26],[16,-3],[1,-15],[11,3],[0,-7],[8,0],[1,-6]],[[5088,6080],[4,8],[10,-7],[2,-10],[8,2],[-2,-13],[-6,-1],[2,-19],[13,-1],[7,9],[7,-6],[-3,-5],[1,-20]],[[5131,6017],[8,0],[4,9],[-4,7],[6,12]],[[5176,5939],[0,28],[-10,-1],[-4,8],[8,0],[-2,13],[12,5],[8,7],[31,36],[0,7]],[[5219,6042],[0,21],[-9,7],[-2,10]],[[5208,6080],[-14,-25],[-16,-2],[2,-17],[-11,-1],[-4,-15],[-7,12],[-3,16],[-10,-3]],[[5131,6017],[-7,-14],[-8,19]],[[5116,6022],[-3,-3],[2,-16],[-8,-3],[0,-13],[4,-6],[0,-11]],[[5111,5970],[6,0],[3,17],[9,-13],[7,0],[-3,-15],[1,-18],[-4,-10],[5,-4],[2,-25]],[[5137,5902],[5,3],[10,-13],[14,8],[3,27],[6,0],[1,12]],[[4994,6075],[-2,14],[-1,40],[-4,1],[4,20],[-1,12],[6,-6],[9,6]],[[4992,6196],[-12,-7],[-4,-6],[-12,2],[-6,5],[-2,14],[-7,-3],[-1,8],[-7,-1]],[[4941,6208],[-23,-24],[-4,-17],[-7,-2],[2,-18],[-9,-8],[2,-6]],[[4902,6133],[8,-29],[1,-14],[6,-10],[5,-21]],[[4922,6059],[7,-17],[7,-9],[1,-15],[20,-17]],[[4957,6001],[8,9],[8,-3],[7,6],[4,13],[-3,11],[8,-5],[-2,18],[5,2],[0,22],[2,1]],[[5096,5855],[3,15],[-1,26],[-10,9],[-5,-10],[-7,-5],[4,-12],[-18,2],[-1,-10],[8,-8],[-13,0]],[[5056,5862],[7,-13],[11,-2],[4,-37],[4,-1]],[[5082,5809],[2,21],[13,18],[-1,7]],[[5078,6037],[10,2],[4,7],[-5,19],[4,5],[-3,10]],[[4994,6075],[7,3],[16,-7],[4,3],[-4,-18],[10,4],[1,7],[15,-5],[-3,-2],[4,-24]],[[5044,6036],[10,0],[1,-11],[7,8],[2,-9],[6,1],[1,15],[7,-3]],[[5116,6022],[-11,-11],[-23,1],[4,12],[-8,13]],[[5044,6036],[0,-22],[10,-5],[2,-20],[8,3]],[[5064,5992],[1,-14],[15,3],[2,-15],[12,-2],[0,-6]],[[5094,5958],[4,7],[13,5]],[[5116,5861],[0,24],[-7,2],[-9,10],[-5,16],[0,21],[-7,2],[1,20],[5,2]],[[5064,5992],[-1,-12],[-7,1],[3,-16],[-2,-13],[-5,-5],[8,-1],[1,-13],[-14,1],[-11,-4],[0,-19],[-4,-28],[-2,0]],[[5030,5883],[-3,-7]],[[5027,5876],[1,-8],[24,-7],[4,1]],[[5096,5855],[13,1],[7,5]],[[4957,6001],[2,-18],[6,-12],[0,-19],[5,1],[4,-19],[-10,-9],[1,-25],[18,0]],[[4983,5900],[33,-1],[2,-6],[10,-3],[2,-7]],[[5125,5869],[4,1],[-1,30],[9,2]],[[5116,5861],[9,8]],[[5208,6080],[4,14],[3,-8],[13,3],[-1,18],[-13,-1],[-20,11]],[[5194,6117],[-30,20],[-1,16],[-7,14]],[[1812,2502],[0,0]],[[906,2572],[0,0]],[[900,2563],[0,0]],[[890,2561],[5,8],[-10,0],[5,-8]],[[1007,2527],[5,7],[0,18],[7,11],[3,34],[-3,21],[6,12],[1,30],[-10,19],[1,22],[-2,4],[2,17],[-22,-4],[-4,-22],[-11,-12],[-18,12],[2,-23],[6,-3],[26,-48],[3,-12],[-5,-21],[-2,-21],[5,-10],[0,-21],[10,-10]],[[1736,2343],[0,0]],[[1728,2336],[10,8],[0,7],[-11,-8],[1,-7]],[[1593,2270],[0,0]],[[1593,2237],[0,0]],[[1584,2214],[0,0]],[[1556,2195],[0,0]],[[1554,2196],[0,0]],[[1556,2188],[0,0]],[[1542,2171],[0,0]],[[1542,2170],[0,0]],[[1544,2168],[0,0]],[[1541,2166],[0,0]],[[1544,2163],[0,0]],[[1540,2162],[0,0]],[[1546,2162],[0,0]],[[1544,2161],[0,0]],[[1558,2156],[0,0]],[[1548,2154],[0,0]],[[1679,2131],[0,0]],[[1544,2134],[0,0]],[[1542,2131],[0,0]],[[1540,2115],[7,2],[0,20],[4,12],[-7,-8],[0,-15],[-4,-11]],[[1539,2113],[0,0]],[[1514,2073],[0,0]],[[1530,1853],[0,0]],[[1536,1845],[0,0]],[[1528,1846],[0,0]],[[26,2070],[-5,17],[6,21],[8,3],[12,22],[3,32],[-1,21],[3,6],[-2,21],[-3,6],[-2,15],[-16,9],[3,-8],[-4,-25],[0,-19],[-5,-9],[-2,-17],[-6,-22],[-12,-11],[1,-30],[-4,-15],[4,-9],[13,-5],[9,-13],[0,10]],[[825,1712],[0,0]],[[1237,1564],[0,0]],[[1217,1540],[0,0]],[[1193,1519],[0,0]],[[723,1307],[0,0]],[[508,539],[0,0]],[[505,536],[0,0]],[[1168,1091],[-1,17],[3,18],[0,28],[2,10],[-4,12],[3,20],[-1,34],[6,21],[9,21],[0,14],[6,19],[-2,21],[2,19],[-4,31],[3,19],[-7,37],[6,12],[-4,9],[0,12],[-5,20],[10,27],[0,9],[10,11],[7,22],[-1,11],[6,14],[11,36],[14,9],[4,20],[12,2],[8,14],[-1,23],[11,19],[-6,5],[2,14],[10,5],[6,16],[14,2],[1,-16],[7,-1],[8,4],[13,13],[7,19],[13,12],[9,19],[15,14],[6,20],[7,8],[9,3],[14,21],[1,9],[10,12],[5,9],[9,12],[11,6],[1,12],[19,14],[2,10],[13,16],[9,22],[18,25],[5,17],[-10,19],[5,12],[0,16],[9,7],[5,16],[8,9],[1,14],[9,19],[0,12],[-5,2],[-3,17],[5,10],[1,13],[-4,6],[7,28],[5,9],[12,-3],[3,-13],[-4,-2],[1,-12],[18,-5],[2,16],[10,-10],[-3,13],[7,5],[1,44],[5,9],[0,7],[10,2],[12,-10],[0,-5],[12,-7],[10,11],[0,8],[6,7],[1,32],[12,48],[8,9],[0,26],[5,19],[0,20],[3,11],[14,15],[6,1],[4,9],[8,2],[14,-1],[17,-9],[5,6],[2,17],[11,-4],[1,11],[-4,4],[0,29],[-5,20],[0,29],[11,16],[1,6],[15,23],[-8,31],[0,16],[6,29],[-3,9],[0,17],[12,11]],[[1780,2740],[-454,0]],[[1326,2740],[9,-18],[7,-20],[7,-11],[6,-22],[7,-16],[9,-31],[-6,-22],[-6,4],[-8,-9],[14,-51],[9,-41],[2,-29],[-6,-10],[-1,-17],[-6,-4],[-1,-10],[-11,-13],[-8,2],[-4,-6],[3,-16],[-3,-25],[-7,-9],[-12,-5],[-15,3],[0,-18],[-4,-8],[-6,0],[-2,-10],[-10,-5],[-3,-24],[-6,-20],[-5,2],[-5,-9],[-1,-22],[-3,-10],[-8,1],[-2,-16],[-14,-17],[-18,-1],[-1,-15],[-6,-8],[-6,5],[-4,-9],[-2,-44],[-9,-22],[-6,0],[-6,-10],[-10,7],[-9,-22],[-3,-25],[-23,-19],[-2,-11],[-8,-5],[-5,-19],[-12,-15],[-21,-41],[-14,-5],[-18,-19],[-27,-2],[-11,-3],[-6,-25],[-14,-27],[-15,-14],[-13,-9],[-11,0],[-4,-9],[-22,-31],[-15,5],[-11,-15],[-13,-28],[-12,-2],[-2,-5],[-22,-26],[0,-11],[4,-24],[0,-19],[-5,-33],[-14,-27],[-20,-13],[4,-21],[4,-40],[0,-14],[-6,-19],[2,-26],[0,-44],[-4,-24],[-6,-14],[-2,-13],[-7,-12],[-12,-16],[-12,-10],[-8,2],[-11,12],[3,14],[-7,-4],[0,-19],[-4,-20],[-4,-2],[-5,-19],[2,-39],[3,-23],[1,-59],[-6,-24],[-1,-35],[-8,-23],[-11,-4],[-12,-21],[-7,0],[-10,-13],[-3,-12],[-8,-18],[-3,1],[-6,-18],[-6,-5],[-13,9],[-4,-9],[9,-83],[0,-27],[-5,-9],[-9,-33],[-12,-32],[-8,-4],[0,-7],[-10,-12],[-2,-13],[-10,-12],[-4,-25],[-8,-16],[-16,-18],[-9,2],[-1,-19],[-5,-9],[-10,-7],[-5,-17],[-6,0],[0,-10],[11,-6],[-4,-15],[5,-25],[0,-11],[-12,-20],[-2,-10],[-7,1],[-8,-19],[7,1],[16,16],[5,-1],[6,-13],[8,-35],[0,-20],[-4,-13],[-15,-1],[-9,-21],[-15,-4],[-3,-6],[0,-20],[-4,-14],[-9,-7],[-11,3],[-9,-10],[-8,-21],[1,-35]],[[481,373],[35,-31],[30,-26]],[[546,316],[45,-38]],[[591,278],[21,1],[101,6],[86,-87]],[[799,198],[2,37],[1,54],[6,143],[76,215],[14,38],[31,47],[7,108],[1,2],[8,119],[6,69],[187,52],[30,9]],[[350,161],[0,0]],[[1740,2354],[11,4],[17,22],[14,26],[-9,4],[-3,-17],[-14,-17],[-8,-2],[0,-6],[-8,-14]],[[1718,2328],[0,0]],[[1717,2322],[0,0]],[[1718,2322],[0,0]],[[1711,2271],[0,0]],[[1706,2263],[0,0]],[[1697,2234],[0,0]],[[1695,2227],[0,0]],[[1691,2221],[0,0]],[[1544,1853],[0,9],[12,2],[17,23],[1,10],[10,9],[13,42],[-8,19],[1,24],[8,10],[29,7],[6,-3],[18,0],[4,5],[-4,7],[0,21],[0,61],[6,14],[0,15],[4,6],[13,4],[-4,13],[0,26],[-11,-10],[-1,-5],[-12,-8],[-3,-11],[-15,-12],[-5,-21],[-17,-29],[-13,-11],[-2,-8],[-13,-12],[-8,-22],[1,-7],[-5,-11],[-17,-3],[-2,-20],[-17,-39],[-11,-18],[-1,-12],[6,-17],[4,-25],[-2,-17],[6,5],[12,-11]],[[1259,1601],[5,3],[3,13],[-10,-2],[2,-14]],[[1268,1598],[0,0]],[[1241,1580],[0,0]],[[1155,701],[-8,0],[0,-16],[4,2],[4,14]],[[1155,543],[2,15],[8,16],[14,17],[6,23],[-23,-3],[0,-4],[-13,-8],[-10,-20],[-1,-43],[12,-1],[5,8]],[[1134,134],[-1,7],[-13,3],[-7,-10],[-6,6],[-10,-2],[-3,16],[3,10],[-10,17],[2,13],[-4,-1],[1,32],[-9,16],[-10,13],[-8,21],[3,14]],[[1062,289],[6,9]],[[1068,298],[15,23],[-5,18],[10,62],[-3,27],[1,45],[7,7],[1,10],[21,15],[10,1],[6,24],[5,4]],[[1136,534],[-4,44],[3,20],[6,16],[2,26],[-2,12],[-7,2],[-6,19],[-8,46],[1,29],[-2,15],[-6,18],[0,61],[-4,17],[3,6],[-2,62]],[[1110,927],[0,1]],[[1110,928],[1,15],[4,14],[13,17],[6,13],[-4,3],[-3,23],[8,14],[29,24],[4,40]],[[799,198],[-1,-34],[0,-48],[-1,0],[0,-64],[1,-3]],[[798,49],[52,-9],[100,-14],[72,-9],[90,-11],[51,-6],[-8,23],[-1,10],[-11,24],[-7,-1],[2,21],[-4,17],[7,0],[-4,7],[-3,33]],[[591,278],[3,-20],[-8,-9],[-8,2],[-9,-6],[2,-14],[-10,-30],[-12,-17],[-1,-18],[-8,-32],[2,-47]],[[542,87],[79,-13],[65,-8],[61,-10],[51,-7]],[[366,181],[0,0]],[[361,178],[0,0]],[[546,316],[-46,-67],[-40,0],[0,-11],[13,-10],[-13,-6],[0,-14],[-8,-4],[-3,-16],[-12,-8],[-15,2],[-8,-1]],[[414,181],[0,-1]],[[414,180],[0,-2]],[[414,178],[-7,-27]],[[407,151],[0,0]],[[407,151],[-2,-11],[0,-32],[51,-7],[24,-4],[62,-10]],[[481,373],[-1,-23],[-7,-22],[-2,-26],[-6,-20],[-14,-10],[-15,-5],[-5,-12],[-4,-21],[-13,-52]],[[414,182],[0,-1]],[[414,181],[0,0]],[[2093,3555],[-5,80],[21,52],[-5,13],[-6,1],[-2,10],[16,51],[-4,3],[5,30],[14,21],[0,17],[-5,14],[5,10],[-4,2],[2,54],[6,63],[1,24],[4,19],[-5,8],[7,28],[6,10],[8,21],[20,7],[0,8],[14,-1],[11,22],[5,-1],[6,26],[7,-4],[6,7],[6,-1],[13,26],[16,12],[8,-3],[23,-31],[19,3],[7,8],[-2,10],[12,7],[7,33],[1,13],[-10,5],[4,66],[37,9]],[[2362,4307],[4,9],[-1,19],[5,12],[6,5],[2,10]],[[2378,4362],[-5,11],[2,7],[-31,27],[-5,0],[1,43],[-5,12],[-26,-20],[-12,-1],[-5,19],[3,9],[-5,12],[4,6],[-17,0],[0,16],[-12,-1],[-1,-8],[-15,7],[2,-11],[-9,5],[-6,-7],[-8,62],[-5,-6],[-20,4],[-7,-5],[-11,4],[-17,19],[-2,-8],[-12,15],[0,20],[-28,19],[0,20],[-4,17],[-11,9],[8,5],[-3,11],[-10,-2],[8,-7],[-7,-1],[-29,47],[13,4],[9,11],[9,28],[8,12],[1,11]],[[2118,4777],[-5,16],[0,10],[-12,-26],[-25,-29],[-9,-14],[-18,-18],[-14,-17],[-13,-8],[-3,-5],[-30,-24],[0,-12],[-4,-12],[-10,-10],[-3,-13],[-7,-4],[4,-11],[6,2],[4,-11],[-2,-23],[-7,-15],[-19,-18],[-12,5],[1,16],[-5,-12],[-10,-11],[10,-30],[12,-47],[12,-56],[14,-90],[4,-34],[5,-13],[-4,-11],[4,-9],[3,-22],[2,-34],[2,-11],[-1,-26],[3,-56],[0,-57],[-1,-33],[-5,-28],[-5,-11],[-2,-19],[-8,-26],[-3,-24],[-5,-22],[-13,-29],[-16,-15],[-4,3],[-5,-10],[-2,-25],[-14,-42],[-14,-27],[-14,-11],[-9,2],[0,11],[-7,4],[-11,-15],[-17,-19],[-8,-4],[-10,-14],[-12,3],[-1,-7],[-10,-18],[-22,-24]],[[1773,3637],[-10,-14],[8,4],[10,-6],[-5,-36],[2,-22],[10,5],[7,16],[15,-2],[6,-12],[6,12],[6,0],[4,-43],[6,2],[54,-2],[0,9],[9,-14],[17,2],[5,8],[6,-1],[5,12],[8,-1],[8,13],[34,1],[4,7],[9,-12],[6,11],[4,-7],[22,14],[4,5],[15,-22],[9,-3],[7,-10],[9,3],[7,-5],[5,11],[8,-5]],[[2435,4250],[-8,25],[-4,-1],[-1,-15],[6,-9],[7,0]],[[2433,4306],[0,0]],[[2381,4348],[0,0]],[[2361,4282],[0,0]],[[2363,4303],[0,0]],[[2352,4237],[0,0]],[[1983,4143],[0,0]],[[1984,4145],[0,0]],[[2199,3506],[0,0]],[[2049,3372],[0,0]],[[2049,3283],[0,0]],[[2050,3272],[0,0]],[[2000,3210],[0,0]],[[1995,3163],[10,12],[2,14],[-4,14],[-8,-2],[-2,-20],[-6,-10],[7,-13],[1,5]],[[1298,3241],[0,0]],[[1298,3241],[0,0]],[[1272,3220],[0,0]],[[2039,3060],[5,10],[-2,6],[-10,-6],[-1,-8],[8,-2]],[[1166,3015],[0,0]],[[1167,3014],[0,0]],[[1166,3014],[0,0]],[[1788,2829],[0,0]],[[1782,2796],[0,0]],[[1005,2799],[0,0]],[[1014,2805],[10,8],[-5,12],[-2,-10],[-11,-11],[8,1]],[[2160,3554],[-15,17],[-12,-13],[-3,-8],[-7,5],[-5,-7],[-15,16],[-10,-9]],[[1773,3637],[-10,-11],[-17,-27],[-51,-55],[-15,-26],[-14,-10],[-5,-13],[-13,-14],[-25,-8],[-6,-30],[-19,-21],[-22,-10],[-22,3],[-10,7],[-3,21],[-8,7],[0,12],[-9,7],[-10,-3],[-10,-10],[-3,-10],[-12,-20],[-16,-12],[0,-9],[-9,-35],[-5,-18],[-15,-24],[-14,-14],[-23,-10],[-10,3],[-1,11],[-6,2],[-16,-27],[-3,-19],[-9,-19],[-23,-25],[-25,-11],[-7,0],[-10,7],[0,7],[-13,-18],[-8,-2],[-5,-10],[-6,-1],[-5,7],[-7,-4],[3,-7],[-5,-16],[-14,-4],[0,-67],[-3,-23],[-8,-24],[-14,-14],[-9,-14],[-12,-7],[-11,-11],[-7,0],[-8,-8],[-7,0],[-8,-17],[0,-9],[-6,-21],[-9,-12],[-11,-2],[0,7],[-9,-18],[-19,-15],[-2,-17],[-4,-6],[-12,-7],[-5,7],[-6,-14],[-3,-24],[-5,-21],[-9,-12],[8,-11],[9,9],[5,10],[13,2],[13,-5],[24,5],[5,9],[15,-4],[9,6],[13,1],[4,9],[12,0],[2,4],[19,4],[9,-6],[13,-1],[11,8],[12,-9],[18,-19],[12,-18],[11,-11],[11,4],[9,-13],[-3,-18],[3,-12],[19,-33]],[[1780,2740],[3,21],[-3,7],[1,33],[-3,19],[9,10],[9,18],[-1,13],[3,18],[15,26],[5,-1],[6,17],[8,6],[0,8],[8,7],[15,3],[13,9],[7,14],[13,2],[10,14],[10,10],[0,9],[9,10],[1,9],[3,42],[3,2],[1,15],[4,16],[6,5],[3,14],[9,9],[1,12],[5,9],[5,25],[-5,13],[14,19],[2,9],[15,7],[8,12],[23,6],[7,11],[13,2],[3,14],[-11,5],[-8,17],[-4,21],[3,20],[11,12],[6,14],[2,13],[12,9],[3,12],[22,-17],[3,-7],[24,28],[8,21],[20,24],[3,11],[7,3],[10,16],[11,8],[-2,13],[0,43],[-1,14],[3,10]],[[2605,4831],[0,0]],[[2546,4811],[0,0]],[[2715,4886],[0,8],[-20,-6],[-10,-24],[-8,-34],[1,-23],[-6,-18],[1,-26],[15,40],[0,6],[9,18],[4,16],[7,11],[7,32]],[[2531,4718],[0,0]],[[2531,4713],[0,0]],[[2526,4702],[0,0]],[[2541,4677],[6,5],[4,12],[5,-1],[1,13],[4,2],[-2,10],[-5,2],[0,14],[-5,14],[-7,1],[1,-17],[-8,2],[-2,-22],[-3,-5],[2,-15],[-6,-7],[15,-8]],[[2529,4645],[10,23],[-2,8],[-10,-4],[7,-5],[-13,-8],[8,-14]],[[2524,4642],[0,0]],[[2474,4507],[-3,11],[-3,-9],[6,-2]],[[2461,4505],[0,0]],[[2469,4500],[0,0]],[[2462,4488],[0,0]],[[2491,4357],[0,0]],[[2429,4361],[5,17],[8,13],[7,1],[17,9],[5,9],[3,15],[-2,19],[7,25],[7,16],[-13,4],[-1,-8],[-13,-15],[-8,-2],[1,-7],[-6,-8],[-3,-20],[-6,-22],[-10,-5],[2,-41]],[[2556,4867],[0,2]],[[2556,4869],[2,-18],[-4,-2],[1,-11],[-9,-10],[-1,-33],[4,-10],[6,-1],[3,-8],[21,5],[-1,15],[6,4],[10,15],[5,17],[5,0],[6,10],[18,13],[6,10],[16,17],[3,16],[3,31],[0,15],[21,9],[15,-6],[14,-12],[1,12],[6,5],[1,9],[-4,11],[-6,5],[-1,29],[2,8],[10,15],[9,8],[11,20],[12,25],[-3,7],[-1,29],[4,9],[1,22]],[[2748,5149],[0,10],[-9,8],[-14,6],[-4,11],[-10,-4],[-3,8],[-10,-8],[-3,17],[-10,3],[-11,-17],[0,46],[-1,20],[19,15],[9,2],[-2,20],[-26,-32],[-17,12],[-2,31],[-10,5],[4,4],[14,0],[2,23],[11,37],[-7,7],[0,15],[-3,7],[-6,-8],[9,28],[-6,4],[9,7],[-3,16],[-14,-13],[-4,7],[1,-13],[-14,17],[-23,13]],[[2614,5453],[-5,-35],[-5,-26],[-3,-44],[-8,-22],[-14,-31],[0,-11],[-11,-32],[-3,-2],[-7,-23],[-17,-28],[-23,-22],[-20,-13],[-23,-18],[-13,-13],[-19,-26],[-19,-36],[-7,-10],[-8,-18],[-15,-27],[-16,-22],[-24,-41],[-19,-23],[-1,-6],[-11,-15],[-79,-79],[-34,-30],[-37,-27],[-18,-6],[-8,0],[-12,6],[-17,4]],[[2378,4362],[2,13],[12,11],[3,15],[7,-2],[10,13],[4,26],[9,22],[7,7],[-2,7],[6,9],[0,16],[9,26],[-2,22],[-6,11],[-3,25],[-4,2],[-8,16],[-3,23],[0,40],[3,23],[13,26],[-1,36],[6,31],[10,16],[3,17],[7,18],[9,6],[5,15],[15,9],[37,13],[24,-1],[6,-6]],[[2685,5583],[0,0]],[[2686,5582],[0,0]],[[2748,5149],[-1,4],[10,13],[18,10],[10,12],[19,9],[1,7],[15,8],[-5,20],[18,34],[-1,28],[3,1],[2,12],[-4,9],[0,37],[-4,12],[0,24],[-7,20],[-5,8],[-5,16],[-5,4],[-8,19],[-11,7],[-2,7],[-11,1],[-20,13],[-13,15],[0,14],[-27,24],[-2,14],[-11,17],[-14,3],[-6,5],[2,8],[-22,0],[-18,-21],[-11,-20],[-8,-23],[-6,-27],[-2,-30],[-3,-10]],[[2160,3554],[18,14],[13,0],[6,7],[-4,4],[0,14],[-4,6],[0,36],[13,15],[0,18],[7,1],[6,14],[1,25],[-4,0],[0,17],[6,18],[-1,15],[5,8],[2,21],[4,15],[5,3],[3,21],[-8,20],[2,25],[-6,11],[1,23],[3,3],[3,19],[1,30],[6,-2],[7,14],[-6,2],[1,19],[17,19],[4,11],[7,1],[5,42],[11,38],[7,4],[0,8],[10,16],[12,-1],[2,6],[17,0],[0,16],[-4,16],[4,18],[4,5],[1,18],[4,6],[2,17],[11,16],[3,10],[-3,12],[3,30],[5,9]],[[2318,3823],[-8,27],[6,32],[-10,-12],[-7,-3],[-1,11],[-7,13],[-3,12],[-8,12],[-1,25],[-7,8],[1,24],[-9,-11],[0,-13],[5,-10],[2,-35],[3,-14],[9,-14],[-2,-35],[14,-5],[0,-6],[8,6],[15,-12]],[[2408,4025],[3,10],[-2,10],[3,11],[1,31],[-10,-5],[-5,-23],[1,-17],[9,-17]],[[2326,4023],[6,14],[1,11],[-8,8],[-6,-29],[7,-4]],[[2253,3787],[1,18],[-8,-7],[7,-11]],[[2255,3969],[2,0],[3,26],[-5,-9],[0,-17]],[[2291,4094],[0,0]],[[2323,4010],[0,0]],[[2295,4093],[0,0]],[[2266,4014],[0,0]],[[2280,3838],[0,0]],[[2241,3805],[0,0]],[[2321,4007],[0,0]],[[2250,3997],[0,0]],[[2237,3951],[0,0]],[[2265,4007],[0,0]],[[2248,3993],[0,0]],[[8804,6947],[0,0]],[[8813,6798],[-3,5],[3,-21],[0,16]],[[8816,6789],[0,0]],[[8819,6766],[-1,13],[-4,-5],[5,-8]],[[8841,6730],[0,1]],[[8841,6731],[-2,103],[15,1],[2,6],[31,-2],[4,13],[-4,27],[16,4],[0,14],[18,-3],[8,9],[11,0],[8,-23],[12,-6],[0,-5]],[[8960,6869],[32,67]],[[8992,6936],[20,41],[-10,0],[-1,18],[11,0],[-1,24]],[[9011,7019],[-4,51]],[[9007,7070],[-15,-2],[4,-12],[-24,-10],[8,-20],[2,-17],[-8,-3],[-1,9],[-6,-6],[-4,8],[-1,23],[-9,-1],[-1,-19],[-10,-2],[-2,-23],[-8,-6],[-13,0],[0,6],[-8,0],[1,17],[-17,-3],[2,-23],[-12,3],[0,9],[-35,-6],[0,3],[-41,23]],[[8809,7018],[-2,-2],[0,-63],[1,-31],[-3,-17],[1,-14],[-3,-4],[0,-25],[6,-31],[6,-13],[5,-26],[2,-27],[-4,-1],[0,-11],[7,-13],[0,-9],[7,-6],[-2,-29],[4,-18]],[[8834,6678],[8,-1],[-1,53]],[[8941,7242],[10,8],[-17,51],[16,7],[8,-15],[2,8],[7,5],[-2,16],[-7,4],[4,16],[2,29],[13,6],[-2,15],[-9,2],[2,30],[4,12],[13,11],[19,-4],[1,14],[-1,49],[-15,-1]],[[8989,7505],[1,-40],[-31,1],[-36,-5],[-8,73],[-13,-7],[3,17],[-7,-2],[-1,-17],[-11,-3],[-2,3],[-15,0],[-3,-11],[4,0],[-1,-17],[-5,0],[0,-64],[-1,-14],[-8,-12],[-7,5],[1,7],[7,-1],[2,12],[-4,6],[-6,-6],[-6,13],[0,-13],[-8,-1],[-1,-30],[13,-3],[-12,-1],[5,-24],[-12,9],[-7,-1],[6,-25],[-15,3],[-11,-6],[0,-17],[14,0],[-2,-8],[-11,0],[-8,-3],[-5,-8],[-10,-4],[-13,-11],[-5,3],[-17,-8]],[[8743,7295],[8,-17],[1,-19],[12,-20],[23,-21],[5,-10],[9,-6],[15,-36],[4,-14]],[[8820,7152],[19,3],[0,-6],[11,2],[2,7],[12,5],[3,23],[13,0],[6,-9],[1,13],[-6,18],[6,6],[8,-3],[9,13],[-8,14],[7,1],[11,-8],[17,4],[10,7]],[[8344,7025],[0,0]],[[8337,7020],[0,0]],[[8342,7023],[0,0]],[[8693,7749],[8,1],[-2,18],[-3,0],[-1,20],[11,0],[4,10],[-2,16],[-6,-1],[-2,15],[-18,5],[-5,12],[-1,17],[-5,-1],[1,-17],[-20,-1],[4,11],[-2,25],[-7,0],[8,17],[-5,5],[-2,-14],[-6,6],[3,14],[-1,27],[-8,37],[12,12],[-1,18],[-3,-1]],[[8644,8000],[-4,13],[-16,-3],[1,-16],[-10,3],[-2,19],[-7,0],[3,11],[-5,11],[-9,0],[-8,6],[0,26],[-24,8],[5,5],[-2,29],[3,25],[-18,-3],[-9,23]],[[8542,8157],[-8,-4],[-10,3],[-2,-8],[-13,-1],[-3,-8],[-10,-5],[-13,-14],[0,-20],[-6,12],[-6,-6],[-8,0],[2,9],[-7,8],[2,10],[-6,3],[-4,65],[0,31],[-4,8],[-2,16],[-10,-11]],[[8434,8245],[-21,-22]],[[8413,8223],[6,-13],[-10,-18],[-1,-8],[28,-3],[2,-5],[-21,3],[-8,-8],[-3,-10],[9,-5],[0,-20],[-7,-27],[6,-1],[-5,-16],[-6,9],[2,30],[-3,0],[-2,-36],[-8,-7],[1,-13],[-5,-6],[-4,-17],[-1,-30],[-4,-6],[-16,14],[-3,6],[-7,-14],[7,-8],[7,0],[7,-9],[1,-23],[4,-3],[6,-25],[5,1],[4,-17],[4,4],[0,-13],[-17,-5],[-11,0],[-2,-6],[9,5],[-2,-11],[-11,-8],[-9,0],[-8,6],[-4,8],[-11,0],[-6,-8],[-22,-6],[4,-18],[-2,-7],[-6,7],[-13,-2],[-1,8],[-8,9],[-13,0],[-4,19],[5,6],[9,22]],[[8275,7948],[-42,1],[-7,-3]],[[8226,7946],[-5,10],[-12,-19],[-9,-3],[-4,-14],[1,-20],[-10,-31],[-4,-5],[0,-19]],[[8183,7845],[28,-8],[45,-4],[23,-6],[15,0],[32,-7],[16,0],[5,5],[12,29],[17,13],[1,-22],[4,-6],[10,0],[20,-8],[14,-11],[0,-3],[16,-9],[35,-30],[13,-6],[17,-25],[14,-28],[17,-17],[18,-14],[15,-8],[18,-17]],[[8588,7663],[7,3],[21,-21],[15,24],[6,-17],[8,18],[-7,7],[18,28],[7,-14],[14,17],[-5,11],[3,13],[11,18],[7,-1]],[[8588,7663],[23,-21],[8,-16],[47,-47],[54,-76],[13,-31],[-1,-22],[5,-17],[2,-39],[-2,-30],[7,-24],[1,-9]],[[8745,7331],[-3,-13]],[[8742,7318],[-4,-1],[0,-14],[5,-8]],[[8989,7505],[-3,42],[-3,99]],[[8983,7646],[-24,-14],[4,17],[-51,-14],[-2,28]],[[8910,7663],[-1,8],[-13,17],[-3,30],[-25,0],[-3,53],[-48,-7],[-4,118],[-3,5],[-17,0],[8,-56],[-27,-9],[-19,-5],[-26,-19],[4,-58],[-3,-4],[-11,17],[-10,-20],[-8,-6],[-8,6],[0,16]],[[9007,7070],[-1,23],[-3,26],[-12,-2],[-1,29],[-4,12],[6,0],[-1,14],[-30,3]],[[8961,7175],[3,-7],[-3,-21],[-6,0],[6,-14],[-13,-3],[-9,5],[-13,-25],[-14,8],[-1,8],[-6,-2],[1,-34],[-28,-3],[-12,-8],[-1,-8],[-19,0],[0,-9],[-9,-6],[-4,9],[-11,-1],[1,-10],[-16,0]],[[8807,7054],[-1,-14],[4,-3],[-1,-19]],[[8809,7018],[0,0]],[[9041,7034],[47,96],[-2,33],[6,9]],[[9092,7172],[-1,25],[20,53],[16,2],[-1,15],[-4,0],[7,23],[6,1],[12,26],[36,51]],[[9183,7368],[41,59],[6,10],[0,74]],[[9230,7511],[0,79],[4,0],[-4,73],[0,63]],[[9230,7726],[-25,3],[-3,-30],[1,-14],[-21,0],[-22,-1],[-34,3],[0,-86],[-1,-20],[-30,-5],[-4,53],[-58,-3],[-2,19],[-48,3],[0,-2]],[[8941,7242],[3,-18],[10,7],[1,13],[6,1],[1,-34],[-2,5],[-10,-3],[0,-31],[13,7],[-2,-14]],[[9011,7019],[13,4],[-1,19],[3,15],[15,-23]],[[8413,8223],[-7,-11],[-3,7]],[[8403,8219],[-11,-15],[-20,-6],[-6,-13],[-7,-3],[-8,2],[-10,-3],[-4,-14],[-5,1],[-15,-20],[1,-11],[-15,7],[-8,-5],[-5,-13],[-7,-9],[-3,-9],[-1,-24],[4,-6],[-9,-28],[2,-39],[-2,-20],[1,-43]],[[8820,7152],[-8,-19],[3,-12],[-8,-19],[3,-35],[-3,-13]],[[8883,8102],[-11,0],[0,-18],[-45,2],[-4,-144],[1,-21],[-16,0],[-1,23],[-26,1],[1,-18],[-7,0],[0,11],[-35,2],[0,71],[-24,0],[-3,42],[-11,-3],[1,-20],[-24,1],[-1,12],[-15,0],[9,-27],[-8,-5],[-3,10],[-9,-2],[0,-11],[-7,-1],[-1,-7]],[[8910,7663],[31,0],[0,18],[8,1],[-1,23],[-8,109],[-17,-2],[0,-6],[-12,-3],[-1,20],[7,2],[0,12],[-11,-1],[-1,17],[-6,-2],[-3,22],[3,6],[-1,14],[9,2],[0,25],[3,0],[-1,18],[6,6],[19,-2],[-3,41],[7,0],[-1,84],[-2,17],[-52,4],[0,14]],[[9230,7726],[1,65],[-2,9],[1,100],[-1,52],[8,0],[2,34],[-6,0],[2,49],[-6,0],[-2,38],[5,-3],[0,42],[-18,0],[-1,34],[18,0],[0,13],[-6,0],[0,20],[-13,-1],[0,36],[17,0],[0,7]],[[9229,8221],[0,66],[-246,0],[-67,-1],[-32,1]],[[8884,8287],[2,-106],[1,-31],[0,-48],[-4,0]],[[8884,8287],[-47,1],[-9,-1],[-60,-1],[-8,1],[-110,0]],[[8650,8287],[0,-78],[-42,0],[-3,-10],[-1,13],[-4,-9],[-15,-2],[-8,2],[-8,-8],[-2,-10],[-11,-9],[-4,-9],[-10,-10]],[[5509,3250],[-38,40]],[[5471,3290],[-4,-9],[-32,16],[-8,-15],[-19,18],[-11,-7],[-16,-25]],[[5381,3268],[-20,-20]],[[5361,3248],[-6,-3],[-2,-14],[-12,-8],[-7,0],[7,-39]],[[5341,3184],[12,8],[4,7],[17,-17],[16,-35],[12,14],[6,3],[3,14],[6,9],[11,-1],[-5,8],[1,15],[9,7],[3,20],[16,-16],[49,25],[8,5]],[[5529,2009],[9,22],[-2,19],[-7,0],[0,-12],[-23,11],[1,13],[-17,0],[0,16],[-14,3],[-92,-17]],[[5384,2064],[3,-54],[-41,25],[-18,-79],[-45,26],[-53,33],[-18,62],[-3,0],[-9,31],[-23,71]],[[5177,2179],[-31,-9],[-31,-11],[-67,-26],[-15,46],[-4,8]],[[5029,2187],[-56,-80],[-35,-34],[-37,-42]],[[4901,2031],[-11,-9],[1,-13],[5,-6],[-1,-8],[3,-28],[13,-2],[-2,-10],[4,-2],[5,-16],[-5,-2],[0,-13],[6,-30],[4,0],[-2,-23],[9,-10],[3,-31],[9,0],[1,-27],[13,-17],[-1,-16],[7,-24],[18,3],[1,-5],[14,-7],[1,-8],[7,15],[11,-12],[-2,-10],[11,-2],[1,5],[16,0],[6,7],[6,-2],[5,-12],[4,-21],[0,-14],[7,-12],[6,4],[0,-8],[7,0],[12,14],[4,-6],[2,8],[6,6],[15,0],[-1,8],[20,19],[13,0],[9,4],[2,-9],[12,-2],[6,4],[0,-9],[6,0],[1,10],[9,-1],[0,8],[7,-8],[13,2],[4,-7],[16,15],[10,-5],[11,10],[7,-3],[1,8],[7,-4],[3,6],[7,-6],[5,10],[5,-10],[17,1],[2,-19],[7,-7],[2,32],[12,-3],[12,-15],[3,0],[1,22],[4,1],[11,-13],[2,6],[-6,10],[6,5],[0,14],[7,6],[4,29],[4,-7],[9,0],[6,5],[1,9],[-4,12],[0,18],[7,8],[4,-9],[-1,-18],[4,-6],[6,4],[-1,17],[3,14],[-6,18],[1,10],[18,0],[7,3],[8,21],[11,5],[8,-3],[9,7],[2,12],[5,7],[1,12],[8,14],[3,12],[17,9],[3,9],[17,14],[2,16]],[[5481,2625],[-1,-24]],[[5480,2601],[3,0],[25,-48],[8,-10],[18,-13],[17,-7]],[[5551,2523],[12,4],[13,0]],[[5576,2527],[0,8],[-15,-3],[-10,8],[-27,47],[7,5],[5,10],[-3,14],[-4,-3],[1,19],[-49,-7]],[[5615,4135],[-3,4],[12,6],[-2,12],[17,5]],[[5639,4162],[4,8],[-1,8],[7,0],[14,11],[1,3],[-6,40],[18,6],[26,-8],[6,2],[15,18],[4,-1],[3,21]],[[5730,4270],[-6,8],[9,11],[1,10],[-10,4],[-14,-2],[-6,-5],[-2,20]],[[5702,4316],[-17,-8],[-18,-13],[-50,-17],[-34,10],[-30,40],[0,6]],[[5553,4334],[-25,-13],[-4,0],[0,-15],[-5,-24],[7,1],[1,-18],[-5,-14],[-15,-7],[10,-14],[1,10],[13,7],[4,-12],[-11,-5],[-9,-15],[4,-2],[21,9],[2,-3],[-11,-18],[-4,3],[-7,-41],[1,-10],[-10,-7]],[[5511,4146],[4,-11],[5,-2],[7,15],[5,0],[13,-12],[14,2],[18,-16],[4,7],[18,0],[16,6]],[[5615,3467],[-2,14],[-24,39],[-2,-4]],[[5587,3516],[-18,-63],[-38,56],[-34,49],[-1,0]],[[5496,3558],[-3,-28],[-9,0],[-4,-14],[-10,-14],[-14,-28]],[[5456,3474],[24,-41],[9,-14],[7,6],[6,-3],[-5,-11],[14,-17],[0,-17],[7,-7],[-14,-26],[-6,-19],[-5,-7],[-14,-4],[-8,-24]],[[5509,3250],[6,-6]],[[5515,3244],[0,11],[8,37],[10,-11],[12,-19]],[[5545,3262],[6,5],[4,12],[4,-8],[6,-2],[6,7],[0,-18],[6,3],[6,-13],[10,-5],[1,14],[7,5],[35,16],[0,56],[1,22],[-4,28],[4,28],[-16,27],[-6,28]],[[5325,3391],[12,16],[6,0],[8,-11],[10,0],[15,9],[31,-14],[4,0],[16,21],[3,34],[16,13],[10,15]],[[5496,3558],[-34,49],[-5,7],[-27,35],[-4,9],[30,55]],[[5456,3713],[1,2]],[[5457,3715],[0,0]],[[5457,3715],[0,2]],[[5457,3717],[4,5],[7,31]],[[5468,3753],[-16,7],[-5,-17],[-13,-14],[-12,-22],[-29,-17],[-3,7],[-8,2],[-8,14],[-26,2],[-16,-40]],[[5332,3675],[-8,-21],[8,-9],[-18,-14],[16,4],[7,-7],[-33,-60],[-20,-17],[-9,-17],[0,-11],[-10,-14],[-5,13],[-16,-41],[-17,-48],[11,-14],[17,-19]],[[5255,3400],[31,-35]],[[5286,3365],[-1,19],[20,23],[3,5],[17,-21]],[[4808,3443],[38,-35],[-22,-38],[-31,-52]],[[4793,3318],[33,-2],[26,1],[12,8],[0,-9],[45,44],[15,16],[-2,-44],[-1,-73],[6,16],[14,4],[5,-21],[11,10],[8,-27],[4,-5],[5,-23],[21,28],[18,7],[10,11],[13,30],[16,-4],[27,12],[6,-1],[-14,-66],[-25,-34],[14,-39],[20,17],[3,-9],[-7,-14],[54,-4],[6,17],[9,4]],[[5145,3168],[4,42],[11,5],[0,7],[15,39],[-2,5],[3,27],[18,-3],[1,-12],[15,0],[6,-14],[15,29],[6,-8]],[[5237,3285],[-1,8],[-12,32],[2,13],[-8,1],[1,21],[24,6],[12,34]],[[5332,3675],[-17,40],[-21,-18],[-11,-14],[-6,-41],[-4,55],[-7,-8],[-8,1],[-22,-10],[0,3]],[[5236,3683],[-14,18],[-5,-52],[-2,20],[-20,3],[-3,-27],[-27,16],[-37,-33],[31,55],[10,28],[13,17]],[[5182,3728],[2,32],[4,16],[-14,-2],[0,-19],[-8,-13],[-34,25],[7,45],[-24,14],[-23,9],[-7,-47],[-34,16],[21,-69],[4,-11],[-8,-37],[1,27],[-17,-6],[-36,0],[7,-22],[-6,0],[52,-157],[-14,7],[-39,49],[-29,1],[-7,3],[-18,-19],[-23,-59],[-12,-2],[-4,-7],[-50,66],[-4,60]],[[4869,3628],[-5,-1],[-4,-41],[-7,-2],[-5,-12],[10,-7],[-2,-12],[-7,-14],[9,-24],[13,-46],[-11,-10],[-16,43],[-36,-59]],[[5341,3184],[9,-58],[-9,0],[6,-40],[-12,-33],[-1,-28],[-4,-11]],[[5330,3014],[31,-1],[0,2],[15,0],[-1,17],[18,-1],[6,47],[29,24],[1,6],[14,21],[1,7],[11,4],[8,10],[10,18],[6,18],[0,10],[12,10],[9,16],[3,-2],[12,24]],[[4869,3628],[5,0],[-7,21],[8,20],[1,27],[22,3],[-10,37],[4,6],[2,32],[-10,-2],[0,-10],[-14,-9],[0,5],[-59,-12],[-2,17],[14,4],[-1,17],[-14,-3],[0,31],[-6,-3],[-9,-12],[-1,41],[13,2],[12,6],[-2,32],[-8,7],[1,-8],[-5,-2],[-5,17],[7,7],[-9,23],[-2,-17],[-1,31],[-7,24],[10,5],[-5,24]],[[4791,3989],[-2,0],[-14,34],[-8,4],[-4,-8],[2,-15],[-12,13]],[[4753,4017],[4,-15],[2,-41],[-5,-7],[-3,-21]],[[4751,3933],[0,-51],[-1,-26],[0,-72],[28,-80],[-18,-42],[-14,-108],[-4,-27],[-13,-8]],[[4729,3519],[16,-20],[20,-19],[43,-37]],[[5381,3268],[-17,36],[-11,31],[-4,27],[-5,1],[-7,17],[-12,3],[0,8]],[[5286,3365],[-5,-33],[-5,-4],[-11,-17],[0,-4]],[[5265,3307],[13,-5],[2,12],[12,6],[24,-2],[6,-14],[0,-8],[5,0]],[[5327,3296],[18,-20],[4,3],[12,-31]],[[5297,4309],[7,-17],[6,-5],[-16,-5],[2,-27],[-8,-1],[-4,-15],[-5,-7],[-15,-3],[1,-9],[-8,-8],[3,-20],[8,7],[4,-56],[-24,-3],[-6,-9],[0,-10],[-5,-6],[1,-10],[-22,-11],[8,-66],[18,3],[5,-29],[4,1],[2,-36]],[[5253,3967],[1,-16],[22,7],[19,14],[12,-32],[-5,-13],[3,-14],[11,30],[12,-6],[5,10],[8,1],[-32,21],[-4,35],[0,26],[34,2],[9,-1],[-7,-10],[-11,-28],[37,9],[-4,29],[-3,9],[-11,16],[-6,0],[18,28],[3,-14],[13,-7],[0,-11],[6,4],[4,14],[30,3],[16,13],[-7,3],[-13,16],[-1,17],[9,3],[-13,6],[-1,17],[-16,8]],[[5391,4156],[-27,1],[7,20],[5,6],[0,9],[30,10],[6,7],[-9,7],[-1,-7],[-11,3],[2,26],[-18,1],[-5,69],[-12,-2],[-3,15],[-32,-8],[-14,0],[-12,-4]],[[5712,2885],[-78,-30],[-35,-14]],[[5599,2841],[18,-89],[7,2],[2,-18],[8,4],[3,-16],[-16,-16],[-1,-6],[15,-30],[-25,-9],[-6,0],[-8,-46],[0,-6],[12,-3],[9,-57]],[[5617,2551],[28,-24],[8,-21],[2,1],[7,-25],[-13,-12],[7,-6],[-4,-25],[11,-3],[15,-13]],[[5678,2423],[0,10],[6,14],[17,8],[-3,8],[-7,8],[9,15],[1,9],[-4,14],[3,15],[16,37],[-2,21],[11,23],[11,1],[4,25],[38,24],[11,33]],[[5789,2688],[-18,19],[10,39],[-3,8],[-30,7],[1,62],[-44,11],[7,51]],[[5856,2869],[-28,55],[-21,34],[-27,-49],[-33,-55],[-31,38]],[[5716,2892],[-4,-7]],[[5789,2688],[11,13],[3,21],[6,21],[9,6],[10,1],[-2,23],[5,12],[7,4],[2,13],[-2,16],[7,12],[0,24],[9,1],[2,14]],[[5529,2009],[8,3],[6,8],[13,9],[0,11],[6,7],[2,17],[-2,6],[3,8],[9,6],[0,7],[9,11],[8,4],[4,8],[3,23],[0,14],[4,16],[0,37]],[[5602,2204],[-7,5],[-9,-4],[4,13],[-13,3],[-13,26],[7,11]],[[5571,2258],[-8,-1],[-3,8],[-15,7],[-7,11],[3,14],[-8,5],[-3,8],[-11,14],[-14,0],[-19,-6],[-11,-11],[-11,-2],[-3,-5],[-20,1],[12,-49],[0,-25],[3,-85],[-45,-9],[-29,-4],[2,-65]],[[5674,3083],[-1,0]],[[5673,3083],[-2,-9],[-6,-2],[-14,-27],[-9,-13],[-6,3],[-12,-10],[0,-14],[-11,4],[-35,19],[-19,16],[-18,-9],[-10,15],[2,-25],[-19,7],[-36,-61],[-3,-2],[4,-35]],[[5479,2940],[27,-27],[10,13],[6,-2],[0,-48],[-34,-42],[9,-14],[-7,-10],[10,-33],[7,4]],[[5507,2781],[35,25],[35,23],[22,12]],[[5716,2892],[-20,25],[-8,69],[-7,48],[-6,49],[-1,0]],[[5145,3168],[20,3],[2,-10],[10,-5],[8,9],[24,-33]],[[5209,3132],[1,5],[13,14],[21,66],[4,24],[4,0],[15,44]],[[5267,3285],[-22,-4],[-8,4]],[[4850,4066],[-13,21],[-7,0],[4,13],[1,15],[-3,26],[3,0],[-1,15],[-3,0],[-5,47],[-9,-2],[-8,-10],[-32,-2],[-23,24]],[[4754,4213],[-1,-21]],[[4753,4192],[1,-22],[11,-72],[14,0],[-5,-19],[-29,-7],[6,-9],[-3,-28]],[[4748,4035],[5,-9],[0,-9]],[[4791,3989],[-2,8],[7,2],[2,43],[10,2],[14,12],[15,20],[3,-17],[11,4],[-1,3]],[[5542,2493],[9,5],[0,25]],[[5480,2601],[-43,6],[-42,7]],[[5395,2614],[2,-66],[26,-22]],[[5423,2526],[34,-4],[36,-6],[10,-4],[8,-18],[22,-12],[9,11]],[[5177,2179],[30,91],[19,56],[17,54],[15,44],[7,26],[43,21],[87,41],[28,14]],[[5395,2614],[-5,0]],[[5390,2614],[3,-10],[-36,4],[-20,26],[-25,-24],[-8,-4],[-6,15],[23,67],[12,0],[1,19],[0,47],[7,-5],[10,-2],[12,14],[10,2],[-5,5],[-6,17],[8,-7],[9,2],[-2,10],[14,5],[2,4]],[[5393,2799],[6,28],[-12,-15],[-11,-1],[5,37],[4,17],[14,49],[7,31]],[[5406,2945],[-32,2],[-41,-3],[-2,-11],[2,-17],[0,-25]],[[5333,2891],[0,-17],[-6,-9],[-11,-3],[-3,-12],[-6,3],[-12,-16],[-14,-3],[-4,-4],[-16,-3],[-7,-8],[-13,-8],[-3,16],[-13,-2],[-15,-15],[-12,-28],[-5,-14],[-7,-9],[3,-19],[-5,-11],[-13,0],[-4,-11],[-18,-6],[7,-42],[1,-29],[-3,-40],[1,-44],[-4,-6],[3,-16],[-2,-37],[-4,-20],[-22,-41],[-23,-14],[-25,-37],[-9,-19],[-13,-7],[-1,18],[-13,27],[1,35],[-5,11],[-13,-24]],[[5025,2427],[-3,-23],[-6,5],[-20,-32],[5,-19],[-26,-15],[17,-49],[33,-99],[4,-8]],[[5265,3307],[-1,-11],[3,-11]],[[5209,3132],[0,-6],[-8,-22],[-2,-12],[-6,-14],[2,-11],[-7,-5],[-6,-19],[-5,-7]],[[5177,3036],[14,5],[7,-12],[18,-1],[9,24],[17,39],[7,21],[0,23],[2,14],[17,15],[-2,10],[8,18],[3,-14],[12,9],[0,8],[14,7],[-19,10],[0,-4],[-15,-5],[-1,12],[5,4],[-1,17],[35,39],[3,5],[8,-2],[9,18]],[[5616,2369],[28,9],[18,17],[4,-2]],[[5666,2393],[4,7],[12,9],[-4,14]],[[5617,2551],[-3,-26],[-38,2]],[[5542,2493],[14,-46],[14,-23],[12,-26],[8,-3],[15,-21],[11,-5]],[[4659,2425],[4,-16],[8,4],[3,-9],[-8,-4],[6,-24],[5,6],[3,-7],[5,17],[11,-32],[2,2],[16,-53],[-1,-1],[18,-47],[5,-3],[-3,-13],[15,-29],[16,-48]],[[4764,2168],[7,4],[0,11],[4,-9],[10,7],[3,-6],[9,2],[14,9],[13,-7],[0,-12],[5,-8],[-2,-8],[4,-18],[5,-5],[0,-10],[12,-3],[1,-11],[7,-6],[6,-20],[-1,-10],[5,-5],[7,5],[19,-18],[10,-7],[-1,-12]],[[5025,2427],[3,34],[4,30],[2,28],[4,32],[-18,23],[7,24],[9,20],[2,16],[8,26],[10,52],[-1,19],[11,29],[19,-24],[11,20],[4,-3],[8,15],[-12,30],[-15,6],[11,22],[6,-10],[9,10],[5,-3],[14,20],[-13,71],[5,20],[15,-21],[14,71],[13,31],[17,21]],[[4793,3318],[-38,0],[-38,-43],[-18,-58],[-6,-15],[3,-56],[19,0],[33,-73],[-47,-14],[3,-65],[4,-54],[0,-16],[3,-52],[-6,-8],[18,-34],[-4,-14],[-19,-1],[6,-20],[-5,-3],[-2,9],[-8,7],[-21,-13],[-8,16],[14,-68],[7,-36],[18,-85],[6,-25],[14,-71],[9,-41],[-4,-12],[-2,7],[-65,-55]],[[5236,3683],[5,56],[-24,0],[1,6],[-9,48],[27,9],[3,33],[9,36],[-14,11],[2,17],[12,21],[0,19],[5,28]],[[5297,4309],[-2,8],[8,1],[-2,13],[14,7],[-3,42],[9,2],[1,-18],[25,5],[0,16],[9,-4],[0,-11],[16,0],[-5,31],[-14,1],[-4,28],[-26,42],[3,21],[-15,24],[-4,25],[-8,-1],[3,13]],[[5302,4554],[-7,-2],[-6,-23],[10,6],[3,-25],[-18,-14],[-9,11],[-28,-19],[-17,-49],[-6,-30],[-74,-29],[-49,-27],[-18,-3],[-53,5]],[[5030,4355],[-23,-47],[-7,-22],[-15,-9],[-30,-65],[1,-13],[-3,-42],[-27,-7],[4,-22],[-40,-18],[6,-37]],[[4896,4073],[7,2],[22,11],[-2,-23],[6,0],[0,-11],[6,0],[0,-11],[18,-6],[1,6],[10,-3],[0,-5],[-22,-23],[0,-6],[14,0],[0,-23],[35,2],[13,-56],[22,0],[9,55],[15,-1],[0,-33],[25,6],[-1,27],[7,0],[2,-34],[13,-49],[-6,-9],[14,-56],[8,5],[41,1],[7,-21],[5,-7],[38,29],[14,-17],[-10,-14],[-9,0],[4,-32],[-6,-21],[-14,-28]],[[5616,2369],[-12,-2],[-3,-53],[-8,-2],[-22,-54]],[[5602,2204],[5,21],[10,1],[3,22],[6,8],[-1,11],[9,2],[4,12],[0,25],[9,12],[-2,33],[4,13],[9,10],[8,1],[0,18]],[[5673,3083],[-80,33],[-40,63],[-9,16],[1,67]],[[5330,3014],[-3,-13],[-13,-28],[-9,-25],[-5,-34],[33,-23]],[[5406,2945],[24,-3],[49,-2]],[[5577,4068],[3,16],[9,21],[18,-3],[8,16],[22,6],[3,10],[-23,-3],[-2,4]],[[5511,4146],[-5,-7],[-9,4],[-5,-10],[-18,10],[-9,2],[-42,23],[-19,2],[-11,-6],[-2,-8]],[[5468,3753],[8,16],[21,17],[12,30],[9,6],[3,35],[0,31],[9,4],[14,3]],[[5544,3895],[3,17],[-4,28],[-3,3],[-5,22],[11,37],[7,15],[0,9],[5,14],[2,25],[17,3]],[[5481,2625],[1,66],[4,47],[18,12],[3,31]],[[5393,2799],[11,2],[10,7],[16,-4],[-4,-12],[4,-24],[-16,-14],[6,-21],[6,-11],[-28,-22],[1,-27],[-5,4],[-18,-11],[1,-50],[13,-2]],[[5553,4334],[-2,14]],[[5551,4348],[0,1]],[[5551,4349],[-3,72],[29,43],[-31,46],[0,6],[9,40],[-2,82],[1,26]],[[5554,4664],[-16,0],[-16,-16],[-18,23],[-38,-27]],[[5466,4644],[-15,-17],[-12,-32],[-4,-29],[-7,-18],[-35,-19],[-10,-7],[-19,14],[-3,9],[-11,14]],[[5350,4559],[-4,5],[-10,-4],[-33,-5]],[[5303,4555],[-1,-1]],[[4896,4073],[-46,-7]],[[4729,3519],[-23,-13],[-38,-25],[-11,-3],[-4,-16],[-13,-3]],[[4640,3459],[-5,-6],[-3,-21],[-8,-21],[-1,-11],[-9,-4],[-16,-24],[-6,-14],[5,-17],[-5,0],[21,-27],[1,-15],[13,-7],[-4,-33],[-10,-7],[-5,-18],[1,-50],[-4,-20],[-3,3],[-4,-18],[0,-13],[-14,-7],[0,-13],[4,-60],[2,1],[1,-63],[-2,-11]],[[4589,2983],[-3,-21],[-4,4],[-4,-29],[4,-3],[-4,-10],[2,-22],[-2,-16],[4,2],[-17,-33],[11,-18],[-13,0],[-5,-4],[4,-13],[1,-17],[-4,-35],[6,3],[-2,10],[16,8],[5,-25],[-16,-8],[13,-54],[8,-25],[-2,-1],[31,-107],[2,2],[15,-47],[16,-55],[7,-20],[0,-19]],[[4658,2430],[1,-5]],[[4864,4531],[-6,2],[-10,-9],[-16,-6],[-42,-62],[-10,-16],[2,-21],[-8,-14],[1,-17],[-7,-13],[-18,-15],[-7,-10],[-1,-9],[-6,-9],[-1,-11],[-8,-13],[-8,-7],[0,-8],[-8,-13],[-6,-1],[-4,-13]],[[4701,4266],[4,-20]],[[4705,4246],[8,20],[7,-2],[-8,-12],[9,-11],[4,11],[14,15],[12,9],[0,20],[48,15],[1,19],[22,24],[6,3],[2,49],[11,8],[5,13],[8,8],[-15,-2],[9,7],[-5,20],[31,34],[0,19],[-11,8],[1,10]],[[4753,4192],[-9,-4],[-9,-19],[-12,-15],[-18,-33]],[[4705,4121],[13,-13],[0,-10],[5,-1],[3,-24],[7,-3],[-2,-7],[9,0],[0,-9],[6,-9],[2,-10]],[[5030,4355],[3,37]],[[5033,4392],[2,27],[-70,-37]],[[4965,4382],[-5,12],[-46,129],[-7,22],[-1,17],[-9,-6]],[[4897,4556],[-12,-16],[-9,1],[-7,-11],[-5,1]],[[4705,4246],[8,-21],[2,-14],[12,-10],[11,-2],[8,3],[8,11]],[[4578,7610],[-6,18],[0,35],[-3,18],[-7,3],[1,17],[-3,7],[0,16],[-6,9]],[[4554,7733],[-27,-23],[-20,-19]],[[4507,7691],[6,-23],[7,0],[3,-11],[12,-2],[2,-12],[-1,-17],[-11,-19],[-2,-14],[3,-12]],[[4526,7581],[8,2],[9,7],[7,0],[7,8],[8,0],[13,12]],[[4698,7545],[5,16],[-1,15],[-6,20],[-1,30],[11,17],[-2,11],[2,26]],[[4706,7680],[-8,17],[-6,2],[1,13],[-9,-1],[-4,18]],[[4680,7729],[-3,-2]],[[4677,7727],[-3,-14],[3,-14],[-2,-8],[0,-23],[-8,-22],[-11,3],[1,-17],[-23,-17],[-3,11],[-13,-1]],[[4618,7625],[-5,-5]],[[4613,7620],[1,-6],[-14,-25],[11,-13],[3,0],[0,-28],[3,-14]],[[4617,7534],[10,-3],[6,-8],[0,-9],[13,-25]],[[4646,7489],[6,4],[-7,27],[6,-3],[2,8],[-6,9],[8,4],[4,14],[-2,10],[7,-11],[17,-12],[1,8],[16,-2]],[[4665,7390],[2,12]],[[4667,7402],[-5,8],[-13,6],[-1,17]],[[4648,7433],[-7,0],[6,8],[-7,10],[5,0],[-8,32],[-12,9],[-1,16],[-8,0],[-5,-8],[-2,6],[-8,-7],[1,-6],[-7,-7],[3,-4],[-7,-7],[-8,7],[-6,-2]],[[4577,7480],[5,-8],[0,-29],[-5,-13]],[[4577,7430],[-3,-9],[7,-5],[2,10],[7,7],[7,-6]],[[4597,7427],[4,17],[22,-20],[11,-3],[6,-17],[10,-9],[15,-5]],[[4536,7506],[14,5],[8,-5],[20,21],[17,1],[10,-1],[2,-7],[4,11],[6,3]],[[4613,7620],[-1,9],[-22,8],[0,-19],[3,-14],[-6,3],[-5,-6],[-4,9]],[[4526,7581],[4,-6],[-5,-5],[-13,-23],[9,-3],[2,-13]],[[4523,7531],[7,-1],[5,-11],[-11,-6],[1,-13],[4,-1],[7,7]],[[4707,7482],[-1,15],[-6,9],[0,27]],[[4700,7533],[-2,12]],[[4646,7489],[3,-37],[5,3],[2,-22],[-8,0]],[[4667,7402],[0,10],[11,18],[1,14],[5,0],[11,22],[0,5],[12,11]],[[4677,7727],[-12,-9],[-7,14],[8,12],[-3,10]],[[4663,7754],[-14,-18],[-8,-3],[3,-9],[-8,-6],[-6,-10],[-3,5],[-9,-5],[-1,-6],[5,-11],[-9,-6],[1,-23],[3,-2],[1,-35]],[[4391,7606],[0,0]],[[4475,7502],[15,12],[18,6],[-2,5],[17,6]],[[4507,7691],[-34,-24],[-20,-12],[-14,-4],[1,-14],[9,-6],[-4,-19],[-11,-12],[-14,0],[1,12],[-8,-8],[-6,13],[-4,-13],[-19,-12],[-22,-9],[-8,-1],[-23,-14],[-4,0]],[[4327,7568],[4,-6],[16,8],[4,-3],[1,13],[7,2],[-2,-20],[3,5],[6,-11],[5,-23],[9,-10],[4,8],[5,-4],[2,12],[8,0],[1,-15],[7,-2],[-1,-8]],[[4406,7514],[13,-6],[-1,12],[9,-9],[3,8],[6,-9],[11,1],[4,-11],[5,3],[11,-7],[8,6]],[[2001,7666],[0,0]],[[2397,7509],[-6,2],[-1,-8],[5,-12],[2,18]],[[4577,7480],[-6,-9],[-6,6],[-7,-8],[-8,0],[0,8],[-13,17],[-1,12]],[[4475,7502],[10,4],[4,-11],[17,-3],[-3,-17],[4,-11],[9,-12],[7,-22],[-5,-6],[4,-19]],[[4522,7405],[7,-7],[14,12],[10,0],[3,11],[21,9]],[[1161,8000],[11,-3],[4,5],[-6,9],[-18,3],[1,-15],[8,1]],[[2340,7739],[13,11],[10,22],[-1,31],[-3,6],[-9,4],[-2,-10],[-12,-9],[-5,0],[-2,-9],[-10,-7],[4,-4],[1,-14],[8,-2],[4,-18],[4,-1]],[[4663,7754],[2,13],[-10,13],[-10,3],[-17,45]],[[4628,7828],[-12,-22],[-26,-32],[-30,-30],[-6,-11]],[[8103,9590],[-4,-2],[-6,-17],[-3,-31],[-4,3]],[[8086,9543],[4,-24],[6,1],[7,-10],[9,-4]],[[8112,9506],[14,-2],[29,0]],[[8155,9504],[-5,4],[2,13],[-13,0],[-9,18],[7,8],[-8,25],[-1,-10],[-6,16],[2,6],[-9,7],[-12,-1]],[[8098,8931],[-3,13],[-7,1],[-5,14],[13,1]],[[8096,8960],[-7,5],[8,15],[-3,16]],[[8094,8996],[-5,7],[6,11],[-11,17],[-8,6]],[[8076,9037],[-10,-12],[4,-11],[-9,8],[-9,0],[-3,-11],[5,-5],[5,10],[5,-1],[-2,-18],[-4,4],[-1,-11],[-16,-7],[-8,2],[-2,-18],[2,-8],[-5,-16],[2,-14],[10,-27],[4,-3],[19,-3],[0,-3]],[[8063,8893],[7,-7]],[[8070,8886],[13,9],[6,27],[5,6],[0,-11],[7,7],[-3,7]],[[8103,9590],[-5,7],[19,6],[-2,8],[8,0],[10,11],[-6,7],[1,16]],[[8128,9645],[-7,7],[-4,11],[-13,13],[-1,14],[-6,-12],[-7,10],[-1,11],[14,43],[3,2]],[[8106,9744],[-7,-3]],[[8099,9741],[-13,-24],[-25,-39],[-12,-23],[-13,-18]],[[8036,9637],[3,-8],[11,11],[0,-14],[13,-21],[1,-15],[11,-13],[1,-23],[-2,-7],[9,7],[3,-11]],[[8453,8955],[-2,9],[-11,-7],[-5,-9],[-2,-13],[-7,6],[3,8],[-3,14],[-15,13],[-8,3],[-5,-10],[6,-9],[-7,-11],[-11,-1],[-2,8],[-9,-15],[-19,10],[-2,-27],[-24,3],[-6,-34],[-4,-8]],[[8320,8885],[4,-7],[-15,-9]],[[8309,8869],[-9,-6],[-11,-16]],[[8289,8847],[23,-17],[1,-22],[5,-2],[0,-13],[12,6],[-1,15],[17,-3],[14,10],[0,19],[3,5],[31,4],[10,-4],[-4,25],[15,14],[8,12],[17,20],[11,6],[6,-8],[-1,12],[10,-5],[6,17],[-11,7],[-10,-4],[2,14]],[[8067,8462],[5,27],[-12,6],[9,11],[0,-6],[14,-4],[-2,4],[7,12],[0,12],[5,11]],[[8093,8535],[0,17],[-5,-5],[-9,5],[5,7],[-10,9]],[[8074,8568],[-6,-7],[-1,12],[-6,-1],[-7,-23],[-13,0]],[[8041,8549],[-5,-16],[0,-9]],[[8036,8524],[0,-4]],[[8036,8520],[0,-18],[6,-4],[-11,-16],[9,-31]],[[8040,8451],[10,-4],[9,4],[3,18],[5,-7]],[[8334,9427],[-1,0],[-25,70],[-4,14],[-14,38]],[[8290,9549],[-5,-2],[-2,-11]],[[8283,9536],[5,-24],[6,0],[-2,-9],[2,-18],[-3,-6],[-7,7],[-12,-15]],[[8272,9471],[-5,-9],[1,-10],[11,1],[5,-22]],[[8284,9431],[14,-1],[4,-7],[15,-1],[5,5],[6,-5],[6,5]],[[8213,8940],[-4,9],[9,1],[5,-15]],[[8223,8935],[3,18]],[[8226,8953],[0,9],[-7,7],[7,0],[6,11],[1,10],[-4,7]],[[8229,8997],[-8,6]],[[8221,9003],[-1,-15],[-20,-6],[-10,14],[-9,8],[-5,-12],[4,-7]],[[8180,8985],[6,4],[2,-19],[0,-23],[5,-16],[20,9]],[[8136,9310],[3,15],[0,30],[4,6],[6,-4],[8,6],[3,7],[7,1],[-1,18],[9,1],[-12,14],[11,17]],[[8174,9421],[-13,24],[-8,-9],[-18,-6],[-14,10]],[[8121,9440],[0,-1]],[[8121,9439],[23,-24],[-1,-8],[5,-8],[2,-34],[-17,10],[-17,6],[-3,15],[-6,-8],[-3,14],[-15,7],[1,20]],[[8090,9429],[-11,-13],[-10,-6]],[[8069,9410],[7,-24],[-8,0],[8,-10],[-7,-11],[3,-20],[11,-17],[-8,-2],[12,-16],[7,1],[9,-15],[20,-14],[7,16],[4,-3],[2,15]],[[7716,9045],[6,6],[20,6],[7,12],[7,-12],[9,0],[13,9],[1,7]],[[7779,9073],[2,9],[6,5],[-8,19],[-7,11]],[[7772,9117],[0,14],[-10,4],[-1,-9],[-9,8],[-3,-3],[-16,17],[-2,17],[-5,10],[-1,13],[-22,-1],[-7,-6],[-9,0],[-5,-6],[-10,-4],[-4,-6]],[[7668,9165],[-1,-2]],[[7667,9163],[-2,-19],[17,-17],[5,-10],[-1,-13],[3,-11],[-6,-28],[-16,-41]],[[7667,9024],[9,-9],[6,13],[11,-1],[2,11],[8,8],[0,-5],[13,4]],[[8283,9536],[-3,-12],[-14,-4]],[[8266,9520],[-1,-2]],[[8265,9518],[7,-47]],[[8272,9471],[-21,-5]],[[8251,9466],[-8,5],[-9,-8],[-5,-11],[2,-12],[-2,-26]],[[8229,9414],[10,-12],[9,11],[0,-9],[7,-10],[4,1]],[[8259,9395],[13,17],[4,12],[8,7]],[[7917,8708],[-1,16],[8,5],[0,20],[-4,0],[-3,13],[12,12],[0,26],[20,17]],[[7949,8817],[-2,13],[-7,8],[-2,9]],[[7938,8847],[-3,9],[-6,-3],[-1,10],[-13,-6],[-2,-14],[3,-16],[-4,-6],[-16,0],[3,-9],[-7,-20],[-5,-5],[1,-19],[-4,6],[-5,-8],[13,-1],[5,-5],[0,-23],[-8,-8],[4,-9]],[[7893,8720],[4,2],[1,-19]],[[7898,8703],[7,-2],[12,7]],[[8026,8651],[7,3],[-14,19],[-2,11],[16,8],[-4,-8],[7,-21],[0,23],[7,14],[11,-5],[4,-10],[3,22],[11,0]],[[8072,8707],[0,9]],[[8072,8716],[-10,12],[4,6],[-4,17]],[[8062,8751],[-6,8],[-10,5]],[[8046,8764],[-12,-1],[-1,-18],[-21,-15],[-7,1],[-9,-7]],[[7996,8724],[-2,-13],[0,-17],[-7,-5]],[[7987,8689],[-1,-5],[8,-5],[-1,-7],[7,-4],[-1,-25]],[[7999,8643],[6,5],[10,-1],[8,11],[3,-7]],[[8127,8678],[-20,38],[-1,8]],[[8106,8724],[-9,2],[-1,12],[-6,1],[-6,-16],[-1,10],[-11,-17]],[[8072,8707],[3,-4],[-5,-16],[13,3],[7,-17],[0,-8]],[[8090,8665],[12,6],[14,-6],[5,14],[6,-1]],[[8296,9688],[0,17],[-5,17],[-4,-1],[-1,18],[3,11]],[[8289,9750],[-5,12]],[[8284,9762],[-9,4],[-4,-6]],[[8271,9760],[1,-18],[-12,-2],[6,-51],[6,-6],[2,-22],[5,-9]],[[8279,9652],[17,36]],[[8389,8242],[4,19],[7,5],[-4,11],[1,14]],[[8397,8291],[-11,6],[-8,-17],[-10,0],[-5,-6],[-7,2],[-6,18],[4,4],[0,13],[-7,0],[4,9],[1,15],[-7,-6],[1,17],[-3,2],[6,15],[-11,18],[-11,-17],[-5,7],[3,21],[-6,10],[-8,-3],[-6,-10],[0,-13],[4,-7],[-8,-20],[-12,-1],[6,-5],[-3,-7],[2,-11],[-6,0],[-2,11],[-14,-7],[1,-12],[10,4],[0,-8]],[[8283,8313],[6,0],[1,-11],[-4,-12]],[[8286,8290],[6,7],[5,-9],[1,-20],[4,-3],[11,5],[1,-11],[-5,-4],[16,-11],[4,3],[4,-16],[17,9],[-6,12],[5,10],[5,-6],[2,-14],[8,7],[8,-2],[10,2],[7,-7]],[[7836,8793],[4,1],[-10,14],[-1,11],[-19,4],[2,22],[-7,13],[-2,21],[-5,-3],[-3,20],[1,17],[-7,13],[0,15],[-8,-1],[-4,11],[3,10],[-4,13],[-16,2],[-8,13],[-4,-6],[-9,7],[1,7],[-5,9],[-14,0],[-2,23],[5,12],[-8,4]],[[7667,9024],[-11,-28]],[[7656,8996],[1,-7]],[[7657,8989],[3,-10],[25,-105]],[[7685,8874],[28,-117],[9,-33],[19,-81]],[[7741,8643],[9,9]],[[7750,8652],[-8,6],[0,24],[9,5],[10,14],[6,2],[11,23],[4,19],[25,7],[5,12],[11,5],[13,24]],[[7977,8635],[-1,9],[11,3],[4,-8],[6,-3],[2,7]],[[7987,8689],[-7,2],[-8,-4]],[[7972,8687],[-4,-4],[-9,-29],[-10,-10],[5,-20],[0,-10]],[[7954,8614],[11,0]],[[7965,8614],[15,11],[-3,10]],[[8274,8980],[-1,21],[7,1],[0,16],[9,5],[5,-6],[-1,13],[8,0],[13,22],[2,12],[-5,18],[12,8]],[[8323,9090],[-9,17],[16,27],[1,17]],[[8331,9151],[-8,-7],[-1,7],[-18,4],[1,9],[-6,25],[3,14],[-6,4],[-11,-11],[-11,22],[0,12],[-9,0]],[[8265,9230],[-12,-1],[-1,-27],[6,0],[5,-9],[-5,-7],[13,0],[9,-17],[1,-16],[6,-7],[-4,-3],[-4,-17],[-4,8],[-5,-4],[-9,-19],[-22,-15],[0,17],[-6,6]],[[8233,9119],[-1,-12],[3,-9],[-5,-8]],[[8230,9090],[2,-11],[12,-2],[-12,-26],[7,-21],[-10,10],[2,-18],[6,-10],[-8,-15]],[[8226,8953],[2,-12],[12,5],[6,15],[-2,6],[18,12],[12,1]],[[8178,9162],[-8,9],[-16,7],[5,16],[6,9],[15,14],[14,4],[1,8],[21,7],[11,7],[1,10],[8,5],[-9,0],[-4,7]],[[8223,9265],[-7,9],[-9,28],[6,4],[-5,17],[-20,-23],[-12,-9],[-11,-17],[-8,20],[-13,1],[-8,15]],[[8069,9410],[-16,-2]],[[8053,9408],[-5,-12],[-7,0],[-6,9],[-9,1],[-7,-9],[-2,-15],[-10,-4],[-6,3],[-5,-5],[0,-14],[-15,2],[7,-16],[-5,-22],[-9,-16]],[[7974,9310],[5,2],[11,-15],[-5,-8],[2,-17],[4,-7],[6,4],[13,-4],[2,-18],[6,0],[2,-21],[6,-8],[0,-9],[7,-11],[19,-64],[2,-13],[6,0],[-10,-14],[5,-3]],[[8055,9104],[1,3],[17,4],[10,6],[-3,9],[12,14],[12,-14],[4,8],[35,27],[5,12],[14,-11],[16,0]],[[7937,8595],[8,7]],[[7945,8602],[2,17],[7,-5]],[[7972,8687],[-4,16],[-12,10]],[[7956,8713],[-4,-13],[-9,-1],[-13,7],[-4,7],[-9,-5]],[[7898,8703],[-3,-29],[10,-1],[9,-8],[2,-15],[6,-6],[0,-19],[5,-12],[-7,-8],[5,-6],[3,6],[9,-10]],[[8106,8724],[0,0]],[[8127,8678],[7,-2],[14,-22],[5,9]],[[8153,8663],[6,14]],[[8159,8677],[-4,16],[0,31],[2,6],[-4,7],[-12,4],[-18,-6],[1,-10],[-8,-4],[-10,3]],[[8117,8775],[13,4]],[[8130,8779],[21,12],[10,1]],[[8161,8792],[-2,5],[-2,28],[4,7]],[[8161,8832],[3,14],[-7,7],[-10,-7],[-5,-21],[-10,15],[-5,-5],[-15,4]],[[8112,8839],[-9,-4],[-22,-6],[-7,4]],[[8074,8833],[-5,-10],[5,-9],[0,-15],[-5,-4],[2,-17],[-11,0],[0,-6],[13,-2]],[[8073,8770],[16,18],[8,1],[14,-10],[1,-11]],[[8112,8768],[5,7]],[[8320,8885],[-3,6],[-9,2],[-9,-5],[-7,1],[-10,18],[2,22],[-1,22],[-4,18],[-5,11]],[[8223,8935],[-7,-11]],[[8216,8924],[-4,-9],[2,-9],[16,0],[12,3],[3,-35],[-10,-2],[-2,-9]],[[8233,8863],[15,7],[2,8],[9,0],[2,-5],[19,-1],[5,4],[22,-4],[2,-3]],[[7961,8506],[6,3],[3,15],[13,3],[13,-9]],[[7996,8518],[5,7],[-1,16]],[[8000,8541],[0,11],[-6,15]],[[7994,8567],[-2,8],[-7,0],[-6,-7]],[[7979,8568],[-14,9]],[[7965,8577],[-6,-2]],[[7959,8575],[-5,2],[-1,-13],[-6,-23]],[[7947,8541],[8,-7],[2,4],[3,-13],[-8,-2],[-3,-8],[1,-15],[11,6]],[[8192,8722],[-6,12],[6,18]],[[8192,8752],[-15,-1],[-2,11],[-8,11]],[[8167,8773],[-16,-7],[-10,16],[-11,-3]],[[8117,8775],[5,-19],[-8,-3],[-4,-8],[1,-16],[-4,-4]],[[8107,8725],[-1,-1]],[[8159,8677],[13,11],[-4,22],[6,3],[1,18],[14,-4],[3,-5]],[[7989,8798],[10,1],[10,-17],[-5,4],[-8,-9],[9,-5],[-10,-3],[1,-7],[11,9]],[[8007,8771],[11,-9],[17,18]],[[8035,8780],[-13,5],[5,14],[-8,6],[2,13],[-11,2],[0,18],[24,2],[13,12],[-4,11],[9,-8],[-2,10],[6,-3],[2,17]],[[8058,8879],[-1,10],[6,4]],[[8076,9037],[0,8],[-5,10],[-8,6],[-6,11],[0,12]],[[8057,9084],[-9,-7],[0,-18],[-4,-2],[5,-12],[-16,-18],[-5,-12],[-20,-4],[-7,-4],[-15,22]],[[7986,9029],[-3,-3],[6,-16],[8,-11],[-1,-16],[-14,-5]],[[7982,8978],[9,-5],[1,-16],[4,4],[0,-35],[6,-10],[-6,-8],[-2,-23]],[[7994,8885],[7,4],[3,-6],[-4,-19],[4,-4],[-8,-16],[7,1],[-10,-22],[1,-24],[-5,-1]],[[8116,8936],[-5,9],[2,24],[-17,-9]],[[8098,8931],[9,0],[9,5]],[[7996,8724],[5,11],[-7,10]],[[7994,8745],[-12,-6],[0,10]],[[7982,8749],[-2,-7],[-7,-2],[-14,-12],[4,-4],[-7,-11]],[[8273,9288],[-1,12],[-5,11],[2,12],[-9,21],[-8,10],[6,4],[-3,10],[4,27]],[[8229,9414],[-11,-3],[-15,-14],[-9,19],[-7,-3],[-8,13],[-5,-5]],[[8223,9265],[6,-2],[10,14],[27,-2],[5,3],[2,10]],[[8359,8584],[52,1],[8,13],[-1,6]],[[8418,8604],[-4,5],[2,18],[11,-1],[6,-12],[-4,-5],[12,-2],[0,17],[-10,1],[1,7],[-7,11],[-12,-6],[-5,13],[17,10],[-1,5],[-14,-5],[-11,32],[-7,3],[-23,21],[-21,-2],[-8,9],[-28,2],[-15,3],[-7,7],[-18,-19],[-7,3],[-5,23],[-22,2],[-9,-3]],[[8229,8741],[-9,-2],[3,-5],[-2,-13]],[[8221,8721],[11,-4],[0,-5],[10,-8],[-4,-11],[4,-10],[-9,-2],[-5,-8],[-6,2],[-5,-7],[-10,9]],[[8207,8677],[3,-15]],[[8210,8662],[-7,-17],[11,-11],[4,1],[6,13],[6,-3],[10,-16],[4,4],[8,-16],[10,12],[3,-4],[-7,-13],[8,-14]],[[8266,8598],[4,-8],[11,15],[7,-10],[3,-12],[11,-14]],[[8302,8569],[22,23],[8,3],[7,12],[5,-5],[21,1],[-7,-7],[1,-12]],[[8194,9537],[-4,30],[-12,17],[6,2],[3,20]],[[8187,9606],[-10,5],[3,10]],[[8180,9621],[-6,-11],[-10,-2],[1,-11],[5,-7],[-15,-2],[-3,-8],[-5,2],[-7,16],[4,3],[2,21],[-9,9],[-1,14],[-8,0]],[[8155,9504],[14,3],[9,22],[16,8]],[[7959,8575],[-5,3],[3,7],[-8,8],[-4,9]],[[7937,8595],[-3,-7],[-9,11],[-4,-6],[5,-7],[0,-10],[-31,-2],[-1,-15]],[[7894,8559],[0,-11],[16,-7],[4,-11],[15,-1],[7,-6]],[[7936,8523],[7,7],[4,11]],[[8355,9366],[-21,61]],[[8273,9288],[4,-17]],[[8277,9271],[12,5],[11,22],[6,-1],[8,17],[12,6],[15,-5],[5,11],[11,12],[0,13],[-5,1],[-1,11],[4,3]],[[8274,9858],[6,20],[-4,4],[5,14]],[[8281,9896],[-4,-1],[-4,11],[-6,-1],[-7,9],[-8,-1],[-6,-12]],[[8246,9901],[2,-29]],[[8248,9872],[6,-4],[-2,13],[5,-4],[3,-21]],[[8260,9856],[3,7],[11,-5]],[[8265,9518],[-14,-4]],[[8251,9514],[5,-10],[0,-17],[-5,-21]],[[8195,9781],[-2,-3],[-10,14],[-9,-18],[-4,5],[-7,-4],[-10,5],[1,-23]],[[8154,9757],[19,-28],[7,2],[2,-7]],[[8182,9724],[10,8],[7,-14],[2,4],[14,-8],[-4,-4],[3,-11]],[[8214,9699],[11,4],[3,8],[-1,19],[-5,-7],[1,12],[6,7],[0,12],[6,5],[-2,12],[-5,5],[-17,4],[-8,6],[-4,-9],[-4,4]],[[8202,8835],[3,11],[8,-2],[10,3],[10,16]],[[8216,8924],[-4,7]],[[8212,8931],[-15,-25],[-5,8],[-10,-3],[-1,-7]],[[8181,8904],[11,-8],[8,4],[-3,-11],[-14,-4],[-15,-2],[1,-23],[-2,-21],[2,-3]],[[8169,8836],[8,-6],[9,3],[3,7],[13,-5]],[[8143,8607],[-2,16],[-13,22],[-12,-14],[-8,2],[-7,-5],[0,-12],[-19,-19]],[[8082,8597],[-8,-8],[0,-21]],[[8093,8535],[5,-2]],[[8098,8533],[11,9],[4,-3],[13,17],[-3,2],[12,22],[13,-7],[-5,15],[0,19]],[[8188,9638],[0,17],[11,1],[0,9],[-9,7],[-8,26],[1,7],[-5,6],[4,13]],[[8154,9757],[-14,25],[-15,-2],[-9,-9]],[[8116,9771],[-17,-30]],[[8106,9744],[6,2],[4,10],[4,-10],[0,-13],[16,-4],[3,-18],[-3,-6],[3,-10],[7,-2],[11,4],[11,-22],[-6,0],[-3,-9],[7,-7],[2,-27],[5,-11],[7,0]],[[8187,9606],[8,2],[1,6],[-7,6],[1,6],[-7,12],[5,0]],[[8323,9090],[12,-1],[6,-12],[3,23],[18,-3],[14,7],[1,15],[7,2],[4,-10],[11,16],[12,-6],[1,-18],[3,-5],[13,-1],[6,8],[13,0],[3,19],[8,3],[10,13],[3,-1],[15,12],[-3,13]],[[8483,9164],[-12,-15],[0,5],[-9,0],[-6,13],[-6,-8],[-6,12],[-5,2],[-2,-10],[-6,-5],[-20,9],[-18,-21],[-7,7],[2,-15],[4,-2],[-9,-7],[-10,26],[-6,-14],[-2,8],[6,11],[-3,4],[-5,-14],[-12,0],[0,4],[-20,-3]],[[8041,8549],[5,23],[-7,-1],[1,15],[-8,-8],[-6,-14],[-3,3]],[[8023,8567],[-2,4],[-14,-3],[-7,6]],[[8000,8574],[-6,-7]],[[8000,8541],[9,2],[13,13],[-5,-24],[6,1],[-2,13],[10,1],[0,-11],[5,-12]],[[7997,8456],[5,7]],[[8002,8463],[-3,8],[-3,24],[-3,12],[7,1],[-4,10]],[[7961,8506],[1,-9],[11,-10],[4,-17],[11,-7],[0,-6],[9,-1]],[[8074,8833],[-11,-2],[-4,15],[-7,3],[10,16],[-4,14]],[[8035,8780],[5,3],[8,-8],[-2,-11]],[[8062,8751],[11,19]],[[8036,8520],[-7,-2],[0,-14],[-13,-27],[-7,-1],[-1,-11],[-6,-2]],[[7997,8456],[9,-2],[0,-10],[8,-9],[0,-12]],[[8014,8423],[5,3],[0,19],[6,-2],[3,14],[5,3],[1,-9],[6,0]],[[7854,8996],[0,6],[-10,8],[-11,0],[7,18],[-15,-1],[-4,16],[-7,3],[-5,12],[0,19],[-7,-9],[-6,14],[-4,-8],[-13,-1]],[[7836,8793],[7,0],[5,9],[-3,28],[4,8],[-5,26],[-8,15],[12,8],[4,22],[11,12],[-3,7],[1,17],[-2,10],[-7,5],[-3,32],[5,4]],[[8064,8638],[5,12],[16,3]],[[8085,8653],[7,5],[-2,7]],[[8026,8651],[-1,-5]],[[8025,8646],[-7,-8],[7,-11]],[[8025,8627],[9,4],[0,8],[13,5],[1,-6],[10,4],[6,-4]],[[8004,8311],[-7,13],[0,17],[6,3],[-1,9]],[[8002,8353],[-8,9],[-8,32],[4,1],[1,19],[-8,-6],[-15,1],[-4,-3],[-7,15],[-9,-3],[-5,-16],[-2,15],[-7,6],[-1,-8],[-7,-8],[-2,-12],[-7,5],[-5,-8],[3,-12],[-4,-13],[-10,-1]],[[7901,8366],[2,-5],[0,-22],[-6,-9],[-5,-23],[4,3]],[[7896,8310],[0,0]],[[7896,8310],[9,3],[2,-12]],[[7907,8301],[3,-16],[6,3],[-2,9],[15,13],[1,-16],[24,16],[3,-8],[12,5],[3,13],[3,-23],[7,2],[1,-11],[-5,-5]],[[7978,8283],[4,-11],[19,0],[6,10],[3,16],[-6,13]],[[8107,8725],[-1,4]],[[8106,8729],[-8,2],[-2,11],[7,17]],[[8103,8759],[9,9]],[[8431,8469],[0,-8],[-11,-7],[-5,-14],[-7,-4],[-24,-1],[-13,-9],[6,-5],[-2,-16],[1,-27],[-5,-23],[14,-12],[-3,-5],[5,-7]],[[8387,8331],[11,5],[6,10],[21,7],[7,10],[6,-4],[-1,11],[4,18],[-4,4],[7,16],[0,32],[-3,14],[-10,15]],[[8090,9429],[-1,8],[8,0],[13,7],[11,-5]],[[8121,9440],[-4,2],[-7,48],[2,16]],[[8036,9637],[-60,-93]],[[7976,9544],[20,-21],[-13,-6],[-2,-13],[13,-14],[18,14],[14,-15],[-3,-47],[13,6],[4,8],[-4,-31],[28,3],[-11,-20]],[[8453,8955],[7,1],[4,27],[13,-13],[9,8],[6,-7],[-1,-7],[11,4],[7,14],[-4,14],[8,10],[-5,10],[15,19],[8,-8],[9,1],[3,16],[-5,21],[12,9]],[[8550,9074],[-17,12],[-4,23],[-6,-7],[0,16],[7,14],[8,-1],[-3,8],[3,13],[-4,8],[5,11],[11,10],[2,17]],[[8552,9198],[-27,0]],[[8525,9198],[-8,-17],[-5,-5],[-7,4],[1,7],[-10,0],[-2,-11],[-11,-12]],[[8290,9549],[-26,72]],[[8264,9621],[-6,-7],[-2,-19],[16,-8],[-1,-7],[-8,-5],[-3,-14],[3,-14]],[[8263,9547],[3,-27]],[[8195,9781],[4,16],[9,7],[0,23],[-3,18],[4,10],[-10,5],[2,5],[-8,6],[-1,10],[-9,1]],[[8183,9882],[-15,-23],[-21,-38],[-17,-25],[-14,-25]],[[8273,9836],[1,22]],[[8260,9856],[4,-18],[9,-2]],[[8167,8773],[-2,14],[-4,5]],[[8223,9535],[10,9],[8,0],[9,8],[13,-5]],[[8264,9621],[8,18]],[[8272,9639],[-12,12],[-7,-4],[1,12],[-8,2],[-6,11],[-2,-18],[8,2],[-3,-13],[-9,-8],[-7,0],[-2,17]],[[8225,9652],[-11,-1],[-13,-16],[0,5],[-13,-2]],[[8194,9537],[2,-8],[12,-4],[15,10]],[[8133,8990],[10,0]],[[8143,8990],[4,13],[4,0],[-5,11],[-4,-1],[-7,11],[-10,4],[1,-8],[12,-12],[-5,-18]],[[8594,9198],[1,-27],[14,-24],[-15,-25],[5,-22],[-10,-2],[3,-27],[6,8],[7,-19],[-11,-7],[-5,13],[-6,4],[-11,-12],[1,19],[-5,21],[-10,-1],[1,-15],[-5,8],[-4,-6],[0,-10]],[[8289,8847],[-1,-11],[-10,-10],[-24,-4],[2,-15],[-6,-5],[-7,-17],[-7,-8],[1,-10],[-5,-3],[-13,3]],[[8219,8767],[3,-15],[10,-5],[-3,-6]],[[8418,8604],[5,-2],[6,-12],[16,14],[3,-5],[14,-6],[8,10],[10,1],[0,10],[-9,16],[-2,18],[6,8],[16,0],[0,5],[11,10],[4,-11],[-18,-14],[7,-17],[5,11],[16,8],[-1,7],[4,16],[5,4],[4,-15],[4,4],[2,-18],[10,3],[0,9],[6,-7],[8,3],[-8,15],[1,11],[13,-19]],[[8564,8661],[8,1],[4,6],[3,19],[13,21],[14,3],[1,14],[8,8],[14,34],[18,10],[5,7],[-1,-17],[6,-1],[3,11],[-6,6],[13,5],[3,19],[15,0],[7,14],[16,-1],[0,12],[14,8],[3,8],[13,13],[-1,8],[10,9],[0,9],[7,16],[1,25]],[[8755,8928],[-8,1],[-8,7],[5,14],[3,33],[-6,-5],[0,15],[6,0],[-10,12]],[[8737,9005],[-1,14],[-4,1],[0,-24],[-6,8],[-9,20],[6,5],[-5,12],[7,4],[-5,5],[1,11],[-7,-4],[-14,7],[-9,-3],[-1,13],[-5,3],[5,30],[-3,8],[8,2],[-13,16],[-3,-9],[-4,10],[6,0],[2,11],[-12,23],[-2,8],[-10,9],[-1,13]],[[8658,9198],[-64,0]],[[7965,8577],[5,10],[6,20],[-1,5],[-10,2]],[[7938,8847],[5,1],[-3,8],[-2,16],[3,14]],[[7941,8886],[-1,3],[16,31],[-13,27]],[[7943,8947],[-6,0],[-5,-16],[-11,6],[5,26],[-2,12],[-12,4],[-19,-3],[-12,2],[-14,12],[3,19],[-4,-7],[-12,-6]],[[7750,8652],[16,6],[11,7],[5,10],[3,-9],[5,2],[2,-13],[6,2],[1,-9],[-8,-7],[14,-7],[1,5],[13,1],[23,18],[12,-8],[11,16],[7,16],[9,9],[-2,7],[9,0],[-4,8],[2,11],[7,3]],[[7916,8449],[8,7],[1,16],[7,4],[0,17],[3,0]],[[7935,8493],[1,30]],[[7894,8559],[-7,-3],[0,-9],[-7,-4],[-2,17],[-8,-8],[1,-10],[-13,-2],[1,-17],[-2,-11],[-17,-1]],[[7840,8511],[14,-31],[-1,-20],[9,-34],[11,2],[1,-21],[10,-6]],[[7884,8401],[2,11],[15,25],[-6,8],[3,6],[15,0],[3,-2]],[[7994,8745],[13,26]],[[7989,8798],[-8,-3]],[[7981,8795],[0,-19],[-8,-9],[-4,-24],[8,2],[-1,9],[6,-5]],[[8202,8835],[9,-5],[3,-16],[-24,-7],[-3,-9],[3,-15]],[[8190,8783],[18,10],[8,-2],[6,-11],[2,-12],[-5,-1]],[[8397,8291],[2,17],[-3,16],[-5,-3],[-7,6],[3,4]],[[8431,8469],[3,13],[9,7],[7,-1]],[[8450,8488],[4,8],[16,9],[0,-12],[15,16],[2,-3],[16,12],[3,-5],[8,6],[0,15],[6,2],[5,12],[-2,10],[-12,-1],[0,14],[-4,12]],[[8507,8583],[3,16],[6,8],[11,0],[7,7],[1,16],[5,1],[3,-12],[15,2],[5,6],[-3,11],[0,16],[4,7]],[[8359,8584],[-11,-7],[0,6],[-12,11],[-7,-4],[2,-8],[16,-2],[-1,-23],[6,2],[2,-12],[-12,-4],[-1,-10],[13,-18],[-7,0],[-4,-8],[6,-2],[2,-16],[-4,0],[-3,-13],[-18,16],[-11,1],[-26,-32],[-6,-10],[9,-14],[-10,-11],[-4,10],[-8,-13],[-8,-6],[0,-8],[-8,-4],[6,-5],[-5,-8],[-2,-11],[-19,-15],[-5,11],[-9,-7]],[[8220,8370],[0,-24],[4,-5],[15,5],[5,6],[6,-14],[19,-31],[2,5],[5,-10],[6,3],[1,8]],[[8207,8677],[-6,5],[3,15],[-6,4],[4,7]],[[8202,8708],[-10,14]],[[8153,8663],[8,-16],[5,-1],[0,15],[-3,13],[7,3],[7,-32],[13,0]],[[8190,8645],[14,15],[6,2]],[[8000,8574],[0,14],[6,4]],[[8006,8592],[-2,33],[3,8],[11,12],[7,1]],[[7977,8635],[13,-16],[2,-14],[-4,-7],[-1,-13],[-8,-17]],[[7935,8493],[3,-10],[9,-5],[6,-13],[-1,-8],[-10,-9],[-1,-15],[-5,-4],[-20,20]],[[7884,8401],[1,-10],[16,-15],[0,-10]],[[8002,8353],[-1,38],[4,10],[8,8],[1,14]],[[7919,9319],[9,-1],[6,6],[9,-13],[14,1],[13,-12],[4,10]],[[7976,9544],[-34,-50],[-29,-39],[-3,-6],[-21,-26],[-7,-11],[-29,-37]],[[7853,9375],[10,-18],[7,8],[13,-42],[20,-32],[0,22],[16,6]],[[8223,9535],[12,-19],[16,-2]],[[8082,8597],[2,23]],[[8084,8620],[-4,-13],[-16,31]],[[8025,8627],[1,-16],[7,1],[-5,-12]],[[8028,8600],[7,-8],[-8,0],[-4,-25]],[[8006,8592],[14,0],[8,8]],[[7946,8213],[8,0]],[[7954,8213],[0,0]],[[7954,8213],[3,8],[8,2]],[[7965,8223],[0,0]],[[7965,8223],[10,15],[7,0],[4,11],[-10,6],[-2,17],[4,11]],[[7907,8301],[-12,4],[4,-12],[9,3],[-3,-7],[4,-24],[-6,-13],[5,-29],[4,5],[10,-7],[-1,-4]],[[7921,8217],[5,-18]],[[7926,8199],[15,18],[5,-4]],[[8230,9090],[-12,2],[-1,-12],[-6,14]],[[8211,9094],[-6,-2],[4,-16],[-6,6],[-6,-18],[-10,0],[5,-12],[-3,-13],[7,-13],[-1,-11],[5,5],[2,-18],[6,-4],[1,9],[7,5],[5,-9]],[[8122,8482],[4,4],[6,-5],[3,11],[6,5],[3,29],[-6,6],[8,20],[9,8],[4,-8],[1,9],[9,11],[-1,27],[-5,14]],[[8163,8613],[-20,-6]],[[8098,8533],[18,-16],[0,-19],[6,-16]],[[8302,8569],[-8,-14],[-8,12],[-7,-11],[2,-13],[-21,-17],[-2,-11],[-5,9],[-17,2],[-13,-17],[-8,1],[-4,-7],[-5,4]],[[8206,8507],[-2,-14],[5,-6],[-1,-12],[5,-1],[7,9],[6,-8],[-1,-7],[-9,-10],[-4,1],[-5,-10],[0,-9],[-11,8],[-17,-5],[-3,-4],[3,-26]],[[8179,8413],[14,3],[9,-7],[18,-18],[-3,-10],[3,-11]],[[8161,8832],[8,4]],[[8181,8904],[-14,0],[-7,11],[-18,-14],[4,10],[-6,10],[6,5],[-8,8]],[[8138,8934],[-2,1]],[[8136,8935],[-10,-6],[2,-7],[-6,-3],[-1,-8],[-8,-1],[-7,5],[0,-23]],[[8106,8892],[1,-21],[-4,-13],[10,-9],[-1,-10]],[[8213,8940],[-1,-9]],[[7981,8795],[-9,0],[-2,21],[-7,-1],[-6,7],[-8,-5]],[[8163,8613],[18,13],[11,2]],[[8192,8628],[-2,17]],[[8085,8653],[5,-6],[-8,-3],[-1,-20],[3,-4]],[[8221,8721],[-19,-13]],[[8233,9119],[10,13],[-3,9],[-8,-1],[-6,20],[9,1],[9,10],[-5,7],[-9,3],[-4,24],[3,4],[-2,12],[20,25],[7,5],[2,-13],[4,4],[-1,13],[12,9]],[[8271,9264],[6,7]],[[8178,9162],[1,-14],[4,1],[-1,-22],[6,0],[8,-14],[4,-14],[6,2],[5,-7]],[[7982,8978],[-19,-13],[-1,8],[-17,-3],[-4,-9],[5,-10],[-3,-4]],[[7941,8886],[6,6],[18,8],[3,-15],[4,8],[3,-5],[8,6],[7,-7],[-3,-13],[7,11]],[[8281,9896],[3,6],[0,31],[-7,10],[-4,33],[-11,10],[-4,12],[-28,-44]],[[8230,9954],[11,-32],[5,-21]],[[8271,9760],[-6,0],[2,16],[-7,6],[-4,29],[-4,9],[-3,27],[2,22],[-3,3]],[[8230,9954],[-17,-25],[-12,-15],[-6,-13]],[[8195,9901],[0,0]],[[8195,9901],[-12,-19]],[[8214,9699],[4,-16],[-8,-1],[10,-10],[5,-20]],[[8272,9639],[7,13]],[[7741,8643],[1,-14],[12,-5],[8,-35],[3,4],[17,-8],[13,0],[11,-5],[0,-16],[9,-3],[7,-11]],[[7822,8550],[18,-39]],[[8192,8752],[-2,16],[4,5],[-4,10]],[[8180,8985],[-10,-3],[-9,18],[-13,-17]],[[8148,8983],[-2,-20],[1,-13],[-4,0],[-5,-16]],[[8206,8507],[-3,8],[2,10],[-1,32],[8,1],[-1,26],[5,16]],[[8216,8600],[-5,10],[-13,2],[-6,16]],[[8122,8482],[5,-10],[13,-8],[3,-24],[7,-14],[3,2]],[[8153,8428],[10,-2],[3,-12],[13,-1]],[[7821,9132],[1,23],[5,19],[-2,6],[9,29],[-6,8],[8,28],[8,-18],[3,10],[14,4],[2,13],[13,-3],[9,10],[9,22],[16,8],[0,9],[9,19]],[[7853,9375],[-28,-34],[-44,-48],[-29,-28],[-27,-20],[-12,0],[-14,-10]],[[7699,9235],[-11,-11],[-20,-59]],[[7772,9117],[9,3],[11,10],[17,-1],[12,3]],[[8148,8983],[-9,-3],[4,10]],[[8133,8990],[-1,-5],[-17,17],[-8,-19],[-5,2],[1,13],[-4,5],[-5,-7]],[[8116,8936],[13,4],[7,-5]],[[8525,9198],[-110,0],[-60,168]],[[8271,9264],[2,-11],[-5,2],[-2,-12],[4,-10],[-5,-3]],[[8266,8598],[-9,-17],[-9,14],[-9,-13],[-12,1],[1,14],[-8,8],[-4,-5]],[[8284,9762],[0,24],[3,30],[-3,9],[-11,11]],[[8296,9688],[16,33],[-4,3],[-4,22],[-5,6],[-10,-2]],[[8055,9104],[5,-2],[3,-18],[-6,0]],[[7821,9132],[10,1],[7,7],[8,-6],[10,9],[9,-1],[11,8],[11,-1],[-5,-21],[4,-8],[9,15],[11,-1],[9,-10],[2,6],[8,-5],[15,0],[9,-29],[14,-4],[13,1],[7,9],[8,-5],[5,-11],[-7,-11],[-3,-12],[4,-15],[-7,-6],[3,-13]],[[8070,8886],[3,-7],[7,8],[6,-4],[10,6],[7,12],[3,-9]],[[8103,8759],[5,-11],[-2,-19]],[[8755,8928],[-2,8],[11,-1],[-7,9],[1,24],[9,-3],[3,13],[-9,8],[13,-5],[1,11],[14,-7],[0,9],[15,0],[7,3],[-3,19],[22,0],[1,9],[8,-3],[-4,13],[3,7],[-7,8],[2,7],[8,0],[-10,9],[1,10],[-8,1],[-2,15],[5,4],[-1,9],[-6,-4],[-1,11],[7,2],[-8,7],[0,19],[9,7],[0,6],[-8,5],[7,6],[0,12],[-8,-3],[0,16],[6,-7],[-2,16],[-110,0]],[[8712,9198],[1,-36],[4,-8],[4,4],[3,-8],[12,-6],[4,3],[-3,27],[14,0],[0,-17],[17,6],[0,11],[11,0],[-4,-33],[-11,6],[1,-37],[21,-5],[-3,-4],[2,-22],[-8,1],[-4,-8],[-4,5],[1,-21],[-7,-2],[5,-7],[-16,-4],[6,-10],[1,-26],[-21,4],[-1,-6]],[[8594,9198],[-42,0]],[[8712,9198],[-54,0]],[[3816,924],[1,1],[3,35],[7,1],[-3,20],[4,9],[13,9],[12,2],[0,40],[18,-2],[0,-18],[13,0],[0,34],[7,19],[11,-6],[2,6],[-7,0],[0,45],[54,0],[2,-16],[18,0],[11,11],[7,13],[-1,6],[18,15],[-6,66],[13,8],[0,80],[23,0],[5,3],[1,21],[-4,12],[0,28],[10,14],[2,15]],[[4050,1395],[1,11],[-20,-3],[0,10],[-8,0],[0,7],[-12,11],[6,12],[-2,13],[16,0],[0,30],[-18,-19],[-6,18],[-16,15],[-4,0],[-6,12],[-13,9],[-12,23],[-10,14],[-2,20],[42,0],[1,84],[-13,0],[1,58],[-24,3],[20,17],[-2,27],[-11,5],[-7,-2],[-2,-7],[-6,4],[-1,20]],[[3942,1787],[-6,-3]],[[3936,1784],[-5,-7],[3,-35],[2,-7],[-52,5],[-3,2],[-30,-14],[-10,-8],[-19,8],[-5,11],[6,5],[7,17],[-33,0],[-2,-16],[-29,0],[0,9],[-11,11],[6,17],[-4,0],[-7,-16],[2,-21],[-25,-3],[0,28]],[[3727,1770],[-18,-3],[0,-40],[6,3],[4,-12],[-8,-14],[-4,-21],[3,-17],[-13,-2],[-15,-11],[-7,-17],[2,-21],[-7,-19],[-4,-6],[-2,-11],[9,-37],[-9,3],[-1,-13],[7,-1],[0,-24],[5,-2],[5,-31],[-4,-4],[-39,-18],[0,-7],[-14,-2],[1,-11],[-8,-7],[-6,-14],[-9,7],[-8,-12],[-9,-5],[-9,22],[-6,-8],[-9,19],[-13,-2],[16,-34],[-27,-36],[31,-64],[13,-28],[-23,2],[4,-9],[1,-12],[7,0],[0,-15],[8,-9],[-25,-46],[20,0],[8,-12],[0,-15],[3,-2],[-3,-25],[9,0],[-2,-33],[-20,-1]],[[3567,1093],[2,-25],[5,-5],[2,-22],[8,-1],[0,-39],[2,-7],[-2,-32],[48,2],[0,-40],[11,3],[10,13]],[[3653,940],[16,0],[10,-7],[0,-13],[20,-3],[11,-5],[9,12],[37,0],[-2,-20],[37,0],[-2,16],[7,2],[1,-18],[19,20]],[[4287,2192],[28,64],[21,42],[-7,4]],[[4329,2302],[-17,7],[-5,-7],[-7,-1],[-2,-14],[-14,5],[-6,-3],[-10,7],[2,-22],[-52,23],[-2,-6],[-16,-22],[-16,44],[-6,-27],[-18,18],[-4,-12],[-9,-9],[-10,5],[-1,10],[-11,14],[-10,17],[0,6],[-9,1],[-9,7],[1,22],[-25,23],[-6,26],[-4,8]],[[4063,2422],[-14,-6],[-13,-20],[0,25],[-3,-8],[-11,-7],[-7,0],[-5,17]],[[4010,2423],[-3,-6],[-2,-43],[-2,-20],[-17,0],[-15,-5],[0,3],[-17,4],[1,-6],[-11,-9]],[[3944,2341],[0,-16],[-18,-1],[-40,-38],[1,-12],[-5,-18],[-3,-22],[-4,-6],[0,-13],[-14,-5],[-13,-49],[1,-7],[11,6],[-5,-21],[-6,0],[-3,-8],[0,-27],[-2,-9],[31,0],[0,-14],[8,-1],[7,7],[12,-5],[-2,-9],[4,-18],[-4,-10],[2,-35],[-4,-38],[-5,-14],[2,-24],[22,0],[0,-37],[2,-52],[17,-61]],[[3942,1787],[14,7],[-1,14],[3,9],[0,-14],[6,-4],[51,-1],[-1,31],[16,0],[0,51],[60,1],[-8,7],[-4,14],[0,21],[8,12],[11,-7],[8,4],[9,-4],[5,12],[-5,14],[13,9],[6,14],[5,3],[26,49],[16,21],[5,2],[17,0],[6,-4],[7,21],[-5,8],[-1,21],[-8,13],[-6,0],[2,9],[-9,22],[22,41],[0,-8],[8,-3],[8,4],[18,3],[12,-13],[6,19],[18,-12],[7,19]],[[4198,3093],[23,54],[-7,11],[7,10],[-5,23]],[[4216,3191],[-1,-2],[-58,49],[-7,17],[-4,20],[3,17],[4,1],[9,42],[7,13]],[[4169,3348],[5,24],[7,10],[-8,14],[5,7],[-4,8],[-15,-27],[2,28],[-5,33],[6,2],[-3,34],[3,25],[-30,-7],[-3,-4],[0,-19],[10,-5],[8,-14],[2,-17],[-6,-15],[-15,4]],[[4128,3429],[-6,-10],[6,-4],[-6,-19],[-10,-2],[-13,-10],[-12,0],[3,-7],[-15,-9],[-15,-16],[-4,4]],[[4056,3356],[2,-12],[11,-21],[-1,-23],[3,-5],[-6,-21],[-14,9],[0,-19],[-2,-6],[9,-34],[16,0],[0,-15],[11,6],[0,-16],[9,3],[7,-6],[2,-25],[-3,-20],[-9,-14],[0,-19],[4,-9]],[[4095,3109],[-2,-14],[3,-8]],[[4096,3087],[3,-2],[12,9],[10,1],[7,7],[13,-12],[3,-9],[-2,-17],[4,-2]],[[4146,3062],[3,8],[7,-6],[-6,13],[3,6],[8,-4],[18,29],[1,-28],[18,13]],[[4010,2423],[-17,0],[20,35],[-15,20]],[[3998,2478],[-24,-1],[-8,-5],[4,-20],[-10,2],[-3,-7],[-11,6],[-12,-11],[-5,-18],[-9,3],[6,-20],[8,0],[-3,-17],[-4,-1],[-1,-16],[4,-2],[6,-20],[-1,12],[5,2],[4,-24]],[[3640,553],[3,23],[5,6],[4,36],[-15,31],[13,2],[11,7],[16,1],[0,67],[13,13],[-3,7],[10,13],[-7,8],[-10,6],[0,6],[-34,-1],[1,17],[-33,22],[9,57],[13,1],[5,29],[9,21],[5,2],[-2,13]],[[3567,1093],[-18,-2],[-10,37],[-5,-4],[-12,5],[-6,18],[0,9],[-10,-9],[-5,-25],[-6,-7],[-7,5],[0,-11],[-5,0],[-10,45],[-35,0]],[[3438,1154],[-5,0],[0,-14],[-30,36],[-5,0],[2,-26],[-12,-5],[-12,-18],[3,-12],[-11,-1],[-12,8],[-10,-26],[-40,31],[5,-24],[-23,19]],[[3288,1122],[-5,-26],[8,-7],[-6,-34],[-5,-4],[-1,-61],[-10,2],[0,-6],[-21,0],[-3,-25],[7,-10],[-18,-38],[-6,-24],[-12,0],[0,-71]],[[3216,818],[0,-58],[2,-10],[0,-84],[-2,-33],[0,-80],[54,-1],[12,1],[133,0],[22,-1],[29,1],[174,0]],[[3527,2380],[-10,4],[-3,-13],[-7,-14],[-11,-2],[4,-21],[-17,-2],[-4,-7],[1,-11],[-4,-9],[-13,-4],[-6,-12]],[[3457,2289],[6,-5],[-3,-13],[5,-3],[-8,-48],[9,-1],[-3,-19],[-9,1],[0,-17],[7,0],[2,-14],[20,0],[7,3],[3,-17],[-7,-20],[8,2],[3,-14],[19,5]],[[3516,2129],[-4,14],[7,19],[4,0],[7,9],[5,12],[0,15],[6,20],[12,8],[3,10],[7,8],[0,32],[-8,4],[-15,1],[7,27],[-13,29],[3,2],[-3,15],[-5,4],[-2,22]],[[3642,3187],[62,16],[12,-11],[11,6]],[[3727,3198],[-8,3],[2,9],[16,-7],[11,5],[-4,21],[6,-5]],[[3750,3224],[-3,28],[22,5],[3,-7],[19,12],[3,11],[17,-2],[-1,12],[-4,0],[-2,12],[4,12],[14,7],[8,27],[7,15],[-2,6],[20,4],[0,10],[9,3]],[[3864,3379],[-1,5],[7,16],[10,-10],[9,28]],[[3889,3418],[-7,22],[-8,-11],[-16,3],[2,15],[-2,10],[11,4],[4,6],[-18,6],[-1,11],[-6,1],[-4,10],[-1,25],[-4,16],[2,5],[-4,19],[-11,7],[3,3]],[[3829,3570],[-3,7],[8,4],[3,22],[-7,24],[1,10],[-11,6],[-1,18],[8,-2],[-4,17],[-7,-7],[-36,75]],[[3780,3744],[-16,-26],[-7,-29],[-13,-13],[-1,-14],[-12,-13],[-17,-6],[-2,2],[-20,-17],[-13,-16],[0,-9],[-6,-10],[-9,0],[-12,-36],[-15,-16],[-11,-7],[2,-9]],[[3628,3525],[2,-6],[-1,-15],[10,-6],[4,-8],[7,1],[5,-13],[-3,-21],[-5,-4],[-2,-21],[4,-36],[3,-5],[-22,-42],[3,-19],[-5,-7],[2,-10],[6,-7],[-6,-14],[10,-4],[0,-19],[-7,-14],[-8,-4],[0,-8],[12,-5],[0,-22],[5,-4],[2,-20],[-2,-5]],[[3402,3154],[21,68],[9,1],[7,11],[16,4],[4,6],[7,22],[-4,2],[27,63],[-40,39],[-20,10],[-7,11],[0,26],[-7,26]],[[3415,3443],[-12,0],[0,-10],[-9,5],[-13,-14],[-5,4],[-2,-9],[-5,6],[-7,-15],[-12,5],[-4,-7],[-4,14],[1,14],[9,16],[-1,10],[-5,2],[1,13],[-6,22],[-16,2],[-5,19],[2,14],[-6,2],[-16,-28],[7,-27],[18,-17],[-3,-28],[-10,0],[-1,6],[-8,-9],[-12,-1],[-8,7],[8,10],[-5,0],[4,13],[-1,9],[-8,-1]],[[3281,3470],[-5,-14],[5,-17],[-2,-7],[-8,1],[4,-15],[-3,-7]],[[3272,3411],[19,-10],[11,-8],[1,-44],[2,-14],[0,-24],[11,-4],[3,3],[9,-13],[-3,-19],[22,-4],[3,-26],[-5,-21],[13,2],[5,5],[6,-7],[1,-59],[3,-5],[12,22],[17,-31]],[[3455,2722],[1,21],[7,9],[0,8],[11,13],[11,-2],[7,18],[8,-9],[17,16],[-14,2],[7,21],[7,4],[-2,18],[6,14],[-1,12],[6,5],[-13,27],[10,10],[-7,0],[-4,8],[3,14],[4,0],[-2,27]],[[3517,2958],[-21,11],[-6,-6],[-11,45],[-40,-66],[-29,-22],[-7,4],[-10,21],[-10,11],[-5,14],[-10,10],[-5,12],[-1,14]],[[3362,3006],[-4,2],[-7,-11],[0,-8],[-12,-21],[-5,-19],[-6,6],[-2,8],[-5,0],[-1,10],[-7,-7],[-7,3],[-10,-17]],[[3296,2952],[-2,-11],[9,4],[5,-10],[8,12],[0,-24],[7,-6],[2,-14],[4,-7],[0,-15],[7,-12],[-6,-46],[3,-11],[0,-38]],[[3333,2774],[13,-14],[-10,-38],[4,-7]],[[3340,2715],[11,2],[4,-21],[10,-2],[18,4],[6,-17],[10,2],[4,12],[13,3],[14,9],[0,17],[15,5],[10,-7]],[[3727,1770],[0,17],[35,56]],[[3762,1843],[-22,3],[-32,-5],[-11,14],[-7,2],[-11,-2],[0,14],[-6,2],[-3,-10],[-6,-4],[-15,-2],[-12,18],[-15,-5],[-17,3],[-6,-19],[-12,3],[-5,-3],[-3,7],[-9,3],[6,-14],[-6,-7],[-22,9],[-19,0],[-6,-3],[-8,7],[-12,-4],[-13,4],[-7,18],[2,4],[-13,0]],[[3472,1876],[2,-19],[-4,-2],[8,-23],[-2,-38],[-11,4],[4,-18],[-11,-42],[-2,-26],[-23,15],[5,-6],[5,-33],[-13,-23],[-4,4],[-8,-9],[-1,-14],[-23,-28]],[[3394,1618],[12,-1],[44,0],[9,-2],[0,-174],[-6,-38]],[[3453,1403],[17,-5],[-4,-43],[-9,-24],[-12,-19],[23,-1],[1,-41],[-6,-1],[4,-9],[-4,-10],[3,-13],[-3,-12],[-11,-5],[-4,-23],[-10,0],[1,-38],[-1,-5]],[[4475,2337],[15,12],[2,-8],[7,13],[8,-17],[14,18],[8,23],[-2,20],[11,24],[14,-27],[16,1],[0,15],[27,-14],[37,26],[6,-26],[6,8],[9,-11],[3,14],[6,-5],[-4,27]],[[4589,2983],[-7,-1],[-45,0],[-35,-2],[-3,9],[-19,-9],[-6,0],[-10,16],[-13,-3],[-2,-14],[-7,0],[0,-7],[-8,8],[1,9],[-11,12],[-16,10],[-21,35],[-17,-17],[-5,20],[-6,4],[-16,0],[-3,-7],[-17,-12],[-2,4],[-12,-10],[-6,0],[-14,10],[7,19],[-6,9],[-14,-23],[-8,2],[0,11],[-16,-3],[-13,23],[0,19],[-13,7],[-1,-10],[-13,-7],[-15,3],[1,5]],[[4146,3062],[9,-34],[11,0],[2,-4],[0,-30],[-15,0],[2,-7],[-14,-29],[-1,-13],[5,-3],[-6,-28],[12,-5],[-13,-10],[10,-25]],[[4148,2874],[10,-10],[2,4],[11,-3],[4,-10],[5,7],[20,2],[17,-16],[9,-1],[4,4],[-4,17],[7,8],[4,-12],[20,-9],[17,-11],[-2,-8],[6,-6],[9,0],[6,-10],[13,-4],[-2,-5],[-15,-3],[-2,-4],[-2,-31],[-8,-10],[-3,-23]],[[4274,2740],[10,-5],[3,-9],[-2,-9],[-5,1],[-6,-9],[-12,-8],[-3,-15],[-8,-16],[-10,-35],[2,-10],[4,7],[18,-19],[2,-9]],[[4267,2604],[21,3],[8,-11],[2,-12],[14,-32],[4,1],[1,-26],[10,-6],[-3,-10],[-1,-29],[2,-10],[0,-22],[4,-1],[3,-19],[-15,6],[1,-23],[24,-11],[-1,-10],[10,-10],[0,-5],[11,0],[-9,-30],[-3,0],[0,-21]],[[4350,2326],[32,-23],[4,8],[12,0],[0,12],[9,0],[0,16],[6,9],[8,-2],[7,4],[-15,31],[10,3],[12,17],[7,-12],[10,19],[16,-29],[-5,-8],[6,-3],[6,-31]],[[3626,2705],[4,16],[-10,8],[5,13],[-18,19],[16,6],[-2,15],[4,14],[14,23],[-9,8],[0,5],[-9,0],[6,33],[7,-3],[5,10],[0,12],[31,-5],[9,12],[-2,11],[7,4],[6,11]],[[3690,2917],[7,21],[-2,14],[-5,-1],[-10,-16],[-11,14],[-5,0],[-1,26],[-3,11],[-15,-17],[-4,1],[-4,26],[-14,36],[-10,11],[8,10],[-4,20]],[[3617,3073],[-1,-10],[-9,1],[2,-28],[-4,-7],[-3,-29],[-5,15],[-8,7],[-6,-15],[-6,0],[-9,-13],[-6,-12],[-5,1],[0,-24],[3,-14],[-4,-3],[-8,12],[-1,12],[-7,-11],[-12,11],[-11,0],[0,-8]],[[3455,2722],[11,-3],[12,16],[12,0],[-1,-9],[18,0],[6,7],[3,-15],[6,1],[4,-36],[11,3],[4,-12]],[[3541,2674],[4,-15],[8,1],[1,-9],[-6,-19],[9,2],[0,8],[8,3],[-1,8],[-7,3],[0,18],[3,6],[14,-6],[-7,17],[3,10],[13,-13],[11,8],[0,-13],[23,5],[9,17]],[[3303,1211],[5,18],[3,20],[0,40],[-3,14],[0,19],[-7,16],[2,17],[0,23],[3,7],[-3,17],[-4,3],[2,15],[-5,7],[-2,25],[-8,0],[-3,8],[16,4],[-3,36]],[[3296,1500],[-1,42],[10,14],[-2,5],[4,23]],[[3307,1584],[-7,-4],[-14,0],[-5,11],[4,21],[3,32],[-6,0],[3,9],[-2,20],[-7,19],[0,31]],[[3276,1723],[-24,0],[-4,16],[-5,-5],[-30,0],[0,-142],[-28,0],[0,26],[-16,0],[0,-26],[-47,0],[-17,47],[3,12],[-13,4],[-6,7]],[[3089,1662],[-2,-40],[-2,0]],[[3085,1622],[4,-9],[3,-35],[-1,-8]],[[3091,1570],[-2,-9],[0,-26],[-1,-77]],[[3088,1458],[36,33],[1,-49],[8,-24],[11,2],[2,-25],[9,4],[0,-5],[11,0],[1,-14],[9,-12],[15,-2],[11,9],[17,2],[1,-11],[-5,-3],[1,-15],[12,-12],[-2,-8],[-11,-2],[-4,-11],[5,-3],[6,-14],[1,-14],[5,-3],[5,7],[-4,-19],[19,-20],[12,-5],[0,-14],[-11,-19],[-1,-8],[17,-4],[7,10],[-1,7],[32,-5]],[[4322,3457],[-7,35],[7,14],[-14,21],[-6,23],[-6,0],[-22,32]],[[4274,3582],[-13,-3],[-12,14],[-8,20],[-12,-3],[-17,20]],[[4212,3630],[-15,-58],[-51,34],[-2,-13],[-6,-2],[-8,15],[-13,-11],[4,-13],[-6,-15],[-8,4]],[[4107,3571],[1,-8],[-18,-7],[13,-24],[19,-27],[-3,-10],[6,-1],[-6,-28],[0,-16],[9,-21]],[[4169,3348],[7,-2],[9,22],[6,-6],[14,10],[-4,17],[-13,-5],[-3,7],[28,10],[2,18],[-1,26],[9,47],[9,-19],[10,-4],[-3,-20],[23,-9],[3,19],[36,-14],[13,0],[-1,11],[9,1]],[[4221,1300],[23,73],[24,0],[-19,57],[8,32],[3,31],[8,0],[0,7],[-7,14],[7,5],[-2,18],[6,20],[-4,7],[5,26],[11,7],[-3,15],[-7,-2],[-2,17],[-6,9],[6,5],[4,19],[8,2],[-2,38],[-3,14],[-17,16],[11,23],[21,7],[2,109],[-4,18],[10,19],[10,14],[15,43],[5,-15],[8,8],[14,9],[14,30],[6,6],[-18,16],[5,7],[15,35],[-25,0],[-1,31],[-47,67],[-5,34],[-11,1]],[[4050,1395],[16,11],[-1,19],[12,0],[-3,-22],[45,1],[-5,-28],[16,0],[0,-31],[17,0],[0,44],[17,0],[0,-16],[13,0],[-2,-59],[25,0],[-3,-14],[24,0]],[[4148,2874],[-9,-17]],[[4139,2857],[10,-11],[-19,-38],[21,-27],[7,-6],[2,9],[5,-13],[-3,-10],[12,-12],[4,-9],[31,-4],[-6,-21],[43,4],[13,7],[-2,9],[16,1],[1,4]],[[3659,2088],[5,8],[-11,49],[16,6],[1,46],[4,4],[-1,18],[-21,-6],[-4,4],[-2,17],[8,11],[7,6],[-4,5],[9,5],[-2,7],[-9,3],[-6,-5],[-7,11],[3,6],[-11,22],[15,7],[4,-7],[14,15],[2,19],[5,26],[5,7],[7,20],[8,-8],[22,26],[12,27],[13,10],[-24,9],[-1,4],[12,0],[-1,20],[9,9],[6,13]],[[3742,2502],[-3,2],[-22,-8],[-13,7],[4,16],[-2,7]],[[3706,2526],[-17,3],[-6,10],[-10,6],[-3,-5],[-14,-6],[-19,0],[-1,13],[-39,1],[-14,-2],[-6,-5]],[[3577,2541],[0,-7],[10,-19],[-15,-13],[-2,-17],[0,-27],[-3,0],[-6,-17],[-11,-10],[-11,-4],[4,-11],[-2,-8],[-13,1],[-1,-29]],[[3516,2129],[12,-27],[20,2],[0,4],[14,-1],[3,-12],[-2,-12],[12,-9],[1,-17],[4,0],[0,26],[16,16],[12,0],[2,7],[13,-7],[14,22],[22,-33]],[[3706,2526],[2,14],[-4,18],[-7,-2],[0,-19],[-8,7],[5,15],[-13,0],[-4,12],[10,3],[1,11],[6,-11],[28,10],[-13,23],[5,6],[-6,2],[1,10],[15,0],[-1,7],[11,7]],[[3734,2639],[2,14],[8,14],[-16,29],[-16,-24],[0,47]],[[3712,2719],[-3,-11],[-16,-28],[-16,18],[0,-5],[-28,-6],[-5,4],[4,11],[-9,5],[-7,-11],[-6,9]],[[3541,2674],[-4,-12],[-3,1],[-5,17],[-2,-31],[13,-3],[1,-11],[-9,-11],[-3,-15],[8,-12],[-9,-3],[-6,-7],[1,-13],[24,-16],[5,3],[10,-13],[5,7],[10,-14]],[[3998,2478],[7,25],[3,43],[-8,-2],[-4,-18],[0,16],[-5,-1],[-2,9],[2,21],[-21,3],[-4,13],[-17,-5],[-7,13],[-4,0],[-5,28],[-12,2],[1,37],[-29,-6]],[[3893,2656],[-15,7],[-17,4],[-8,9],[-6,-2],[-10,10],[-17,-22]],[[3820,2662],[-1,-3],[14,-11],[-2,-9],[6,-32],[3,10],[6,-2],[-2,-28],[2,-5],[2,-33],[2,-2],[-9,-16],[-5,-1],[8,-15],[-3,-12],[-6,-4],[-5,6],[-10,-10]],[[3820,2495],[-3,-16],[4,-10],[-6,-8],[1,-15],[-6,1],[1,-19],[10,-7],[-6,-16],[-12,-10],[-11,-24],[-8,-9],[0,-11],[-8,-17],[8,-6],[-4,-8],[-9,-3],[-2,-14],[-6,-6],[-14,7],[-18,5],[-7,-15],[2,-45],[-3,-103],[-6,-25],[7,-22],[6,-4],[7,-18],[4,-29]],[[3741,2048],[3,-34],[-15,-4],[1,-28],[4,-17],[-8,0],[-2,-12],[5,-18],[0,-34],[8,-1],[0,-39],[16,-6],[9,-12]],[[3198,2913],[-7,29],[-25,48],[-19,-13],[-6,2],[-5,24],[-4,4],[6,36],[3,0],[1,17],[19,19],[8,-9],[-1,11],[4,13],[-3,21],[6,13],[1,12],[-7,9],[-1,8],[-8,8],[-5,13],[-12,-7],[-2,11],[-6,-1],[1,10],[-7,10],[4,9],[-6,13],[0,20],[7,9],[-1,21],[2,12]],[[3135,3285],[-6,-2],[2,10],[-7,10],[1,8]],[[3125,3311],[-16,-5],[-7,-9],[4,-18],[-13,4],[-1,-14],[3,-8],[-1,-23],[-5,-21],[-13,-19],[-2,-28],[12,-28],[10,-17],[-11,-37],[-3,-25],[-7,-20],[1,-21],[0,-21],[-3,-7],[-15,-9],[-9,-19]],[[3049,2966],[5,-21],[8,4],[18,-11],[-9,-15],[15,-26],[-2,-14],[-8,-7],[16,-21],[24,-4],[9,25],[8,-9],[9,1],[5,-6],[4,14],[7,2],[1,13],[8,18],[-4,11],[16,-16],[3,-15],[-4,-6],[13,3],[7,27]],[[4119,2598],[-4,8],[0,95],[-11,-7],[-8,18],[-2,-4],[-14,0],[0,11],[-6,-1],[-1,8],[-22,10],[-10,21],[-14,-24]],[[4027,2733],[-13,-25],[7,-3],[1,-14],[16,-24],[0,10],[16,-15],[8,-16],[2,-9],[10,-2],[-3,-29]],[[4071,2606],[11,-1],[4,-13],[15,-2],[8,-8],[4,12],[6,4]],[[3806,2663],[-6,18],[-6,0],[3,29],[0,15],[-6,-3],[-5,14],[-10,0],[7,18],[4,-4],[9,4],[6,7],[-7,10],[22,0],[5,10],[-3,32],[-5,13],[6,4],[-10,21],[-17,6],[-3,7],[-11,-16],[-10,-2],[-9,11],[-5,21],[-2,-6]],[[3753,2872],[-14,-39],[12,1],[-2,-37],[2,-2],[-19,-24],[-6,3],[-17,-4],[15,-4],[2,-12],[-18,2],[5,-20],[6,0],[2,-8],[-9,-9]],[[3734,2639],[6,-7],[4,3],[6,-17],[6,13],[15,4],[1,-13],[5,-14]],[[3777,2608],[5,6],[15,8],[14,3],[4,23],[-11,5],[2,10]],[[3394,1618],[-45,-1],[-1,-40],[-13,1],[-19,-12],[-2,23],[-7,-5]],[[3296,1500],[39,5],[13,-9],[4,-7],[14,4],[3,-33],[-15,-18],[0,-69],[16,4],[13,-7],[3,6],[17,4],[0,-4],[12,0],[-1,-43],[24,15],[0,28],[15,27]],[[3820,2662],[-4,-4],[-10,5]],[[3777,2608],[-3,-32],[-6,2],[-4,-17],[-5,-12],[-7,-2],[1,-7],[9,5],[1,-10],[-8,-17],[-13,-16]],[[3742,2502],[9,-14],[4,14],[9,-3],[0,-8],[13,-6],[10,0],[8,-15],[5,14],[9,14],[11,-3]],[[3415,1928],[-2,32],[9,2],[-4,24],[-2,26],[-7,55]],[[3409,2067],[-15,14],[-8,-8],[-11,1],[1,-20],[-8,-14],[-8,1],[-2,-10],[-10,7],[-9,0],[-7,-16],[0,9],[-9,-7],[-11,-2]],[[3312,2022],[-5,-19],[6,0],[-4,-23],[4,0],[0,-22],[6,0],[0,-14],[19,2],[-2,-35],[-10,0],[-10,-23]],[[3316,1888],[-3,-7],[3,-7],[12,4],[6,-12],[6,-4],[6,18],[9,13],[15,2],[4,19],[35,19],[6,-5]],[[3617,3073],[0,8],[-10,4],[-1,7],[14,6],[8,9],[5,11],[6,24],[3,45]],[[3628,3525],[-6,-12],[-6,0],[-11,-19],[-18,-2],[-2,-4],[-12,4],[-5,-4],[-11,16],[-10,4],[-10,-2],[-11,10],[-9,-3],[-9,-9],[-9,-17],[-11,-2],[-6,-7],[-5,6]],[[3477,3484],[-7,-15],[-20,-8],[-12,5],[-8,-13],[-14,-4],[-1,-6]],[[3402,3154],[-4,-42],[-25,30],[-15,-9],[-16,-3],[12,-14],[12,-7],[6,-24],[2,-32],[18,-18],[-6,-3],[-12,-15],[-11,-6],[-1,-5]],[[3908,783],[-2,3],[-2,52],[13,13],[-2,14],[-12,13],[8,29],[6,-2],[4,9],[10,6],[5,-2],[4,9],[24,26],[4,-8],[7,6],[-6,-58],[5,-8]],[[3974,885],[9,13],[3,19],[10,0],[10,17],[19,12],[2,9],[4,0],[10,13],[9,34],[1,12],[10,7],[5,12],[5,0],[4,15],[7,8],[5,0],[3,11],[13,10],[3,9],[-2,15],[11,0],[14,12],[4,11],[5,-9],[8,14],[16,-2],[-2,11],[9,-2],[6,13],[5,-2],[-1,10],[15,5],[4,16],[6,11],[6,0],[5,10],[11,-2],[8,13],[0,13],[5,19],[12,6],[3,-4],[16,53],[1,24]],[[4271,1321],[-21,3],[-7,-7],[-7,-16],[-15,-1]],[[3816,924],[15,-14],[0,-46],[-3,6],[-2,-17],[5,0],[-2,-58],[-5,0],[7,-36],[9,14],[4,-3],[12,-25]],[[3856,745],[8,12],[9,8],[6,0],[11,14],[18,4]],[[3780,3744],[-3,6],[6,36],[-14,16],[2,9],[-7,19],[7,8],[0,11],[-5,12],[8,0],[-4,17],[-11,4],[-3,7],[-10,5],[-5,-3],[-4,22],[2,122],[9,-12],[20,-16]],[[3768,4007],[0,7],[-15,13],[-9,17],[-9,5],[-1,6],[-17,22],[-2,17],[-8,6],[1,9]],[[3708,4109],[-8,-9],[0,-7],[-10,-9],[9,14],[-20,-4],[-23,7],[-19,1],[-7,-40],[-8,-1],[-22,-9]],[[3600,4052],[9,-3],[1,-17],[-8,-9],[-7,9],[-11,0],[-7,-14],[3,-19],[-43,-53],[-11,-9],[-4,-13],[-17,-18],[5,-18],[0,-25],[-8,-26],[0,-16],[-13,-19],[-22,-18],[-14,3],[-10,15],[-8,3]],[[3435,3805],[-7,-22],[-12,-11],[-23,1],[-28,-3],[-5,18],[-8,0],[-2,-18],[-7,-8],[-10,-2],[-4,-7],[-1,-15],[-13,-34]],[[3315,3704],[-1,-17],[9,-18],[0,-12],[20,2],[19,0],[8,-21],[13,-12],[-1,21],[3,12],[27,24],[-2,-21],[-5,-22],[15,-6],[0,-15],[10,-17],[-2,-9],[8,-2],[6,-12],[-10,-9],[3,-16],[12,-14],[-1,-7],[14,-1],[6,17],[0,13],[4,13],[11,2],[-1,-16],[5,0],[-2,-22],[-5,-9],[7,-35],[-9,-3],[1,-8]],[[3274,2963],[-6,9],[-1,22],[-4,14],[-1,17],[-6,11],[5,9],[-9,4],[4,3],[-1,8],[3,18],[4,3],[0,17],[-6,7],[-8,2],[-6,11],[-17,-9],[-4,21],[-18,23],[9,5],[-3,21],[-4,-6],[3,19],[-6,21],[12,35],[-15,11],[-7,12],[-16,11],[-4,-20],[-17,18],[-6,13]],[[3149,3293],[-14,-8]],[[3198,2913],[47,57],[-3,-18],[-15,-32],[26,-23]],[[3253,2897],[6,24],[-1,19],[5,8],[9,3],[2,12]],[[3340,2715],[3,-17],[-13,-14],[-9,4],[-13,-14],[3,-8],[-8,-6],[-8,-22],[-2,1],[-13,-16],[-31,-43],[6,-14],[-2,-5]],[[3253,2561],[12,-34],[14,-12],[-5,-7],[6,-8],[14,-6],[1,-12],[13,-31],[-5,-20],[8,2],[0,-10],[16,4],[6,-2],[1,-18],[-5,-13],[4,-13],[-3,-6],[4,-8]],[[3334,2367],[9,-6],[11,-17],[-1,28],[8,0],[2,-14],[20,-16],[5,-12],[4,5],[0,-12],[4,3],[4,-12],[6,-6],[2,-21],[6,-4],[2,-35],[11,-15]],[[3427,2233],[16,-10],[6,16],[-14,17],[-7,25],[5,3],[2,20],[20,7],[-1,-11],[3,-11]],[[4056,3356],[-6,6],[-2,15],[-3,-4],[-9,4],[-5,-14],[-14,10],[-6,9]],[[4011,3382],[-13,-27],[-14,-13]],[[3984,3342],[-13,-10],[-7,-18],[-8,-3],[1,-11],[-4,4],[-10,-7],[0,7],[-8,5]],[[3935,3309],[-5,-9],[3,-8],[-4,-23],[1,-17],[-8,-11],[4,-10],[2,-28],[3,2],[9,-14],[-2,-12],[-10,-6]],[[3928,3173],[8,-9],[-7,-4],[0,-41],[4,-5],[18,25],[7,-6],[2,13],[4,3],[12,-9],[7,7],[-1,14],[11,16],[5,-7],[4,-20],[5,-3],[-5,-24],[29,-26],[6,15],[-4,17],[22,13],[3,-10],[9,-4],[7,2],[-8,-26],[28,7],[1,-2]],[[3935,3309],[-8,12],[-11,35],[-2,21],[-5,6],[-13,-6],[-1,-7],[-11,-28],[-8,6]],[[3876,3348],[-10,-6],[4,-15],[-4,-2],[-3,-14],[-6,10],[-2,-7],[-7,3],[-11,-32],[4,-9],[1,-38],[12,0],[-3,-16],[4,0]],[[3855,3222],[13,-2],[6,-12],[10,-7],[-4,-15],[-1,-32],[-2,-10]],[[3877,3144],[3,10],[13,0],[15,20],[3,-6],[17,5]],[[3472,1876],[-16,3],[-10,11],[-11,3],[-7,9],[-7,-9],[-6,35]],[[3316,1888],[-8,-2],[-2,-32],[-10,-4],[0,-35],[3,-26],[3,-10],[-17,3],[-10,-17],[1,-42]],[[3288,1122],[1,23],[7,26],[4,7],[-2,16],[5,17]],[[3088,1458],[-1,-36],[11,7],[11,10],[3,-9],[-7,-14],[-5,-17],[-13,-2],[0,-20],[-8,-25],[10,-10],[4,-18],[-20,-1]],[[3073,1323],[3,-1],[-3,-33],[-4,-17],[-3,0],[-12,-14],[0,-8],[-10,-1],[-2,5],[-21,-8],[-5,-9],[-9,-5],[-1,-7],[3,-30],[-7,-19],[-9,-12],[-9,3],[4,-22],[1,-49],[0,-5]],[[2989,1091],[-2,-24],[42,2],[0,-58],[38,-2],[0,-15],[-21,0],[6,-13],[-11,-12],[-1,-15],[-20,-14],[-4,-6],[4,-20],[9,-14],[-13,-1],[-4,-14],[-13,9],[-2,-5],[9,-16],[19,0],[20,-54]],[[3045,819],[20,-1],[151,0]],[[4640,3459],[-51,-16],[-23,0]],[[4566,3443],[-19,0],[0,-14],[-13,2],[-3,18],[-33,-14],[-25,-6],[-14,-36],[-7,18],[-7,6],[5,15],[-5,7],[6,4],[4,16],[-6,12],[-8,26],[-15,9],[-17,17],[-6,18],[-3,22],[-11,40],[-3,0],[3,21],[-3,10],[-22,39]],[[4364,3673],[-6,-21],[-9,6],[-11,-13],[-7,-21],[-10,-14],[0,-5],[-12,-16],[-4,4],[-15,-14],[-16,3]],[[4322,3457],[-7,-47],[-3,-10],[-4,-33],[-26,2],[-14,-20],[-6,-1],[-21,-55],[-6,11],[-7,-4],[2,-22],[-15,-9],[-2,-24],[13,-7],[0,-14],[-5,-8],[-1,-17],[-4,-8]],[[3753,567],[0,0]],[[3753,567],[4,5]],[[3757,572],[2,0]],[[3759,572],[0,2]],[[3759,574],[1,0]],[[3760,574],[0,1]],[[3760,575],[1,0]],[[3761,575],[5,-4]],[[3766,571],[0,-2]],[[3766,569],[1,-2]],[[3767,567],[2,-2]],[[3769,565],[2,-1]],[[3771,564],[0,0]],[[3771,564],[1,0]],[[3772,564],[3,5]],[[3775,569],[1,1]],[[3776,570],[1,1]],[[3777,571],[0,0]],[[3777,571],[6,1]],[[3783,572],[1,2]],[[3784,574],[2,2]],[[3786,576],[3,2]],[[3789,578],[6,7]],[[3795,585],[0,3]],[[3795,588],[2,9],[7,14]],[[3804,611],[3,8]],[[3807,619],[2,6]],[[3809,625],[1,4]],[[3810,629],[1,2]],[[3811,631],[2,4]],[[3813,635],[1,3]],[[3814,638],[2,5]],[[3816,643],[1,1]],[[3817,644],[0,2]],[[3817,646],[2,4]],[[3819,650],[0,4]],[[3819,654],[0,2]],[[3819,656],[2,8]],[[3821,664],[3,19],[12,11],[4,19],[8,26],[8,6]],[[3640,553],[40,-1],[44,0],[11,1]],[[3735,553],[2,0]],[[3737,553],[10,0],[5,10]],[[3752,563],[1,1]],[[3753,564],[0,1]],[[3753,565],[0,2]],[[4329,2302],[4,18],[17,-10],[0,16]],[[4267,2604],[-7,-30],[-13,-3],[-7,-8],[-1,19],[-38,9],[-8,-26],[0,-7],[-9,-2],[-10,-8],[-2,9],[-18,1],[-12,7],[-11,12]],[[4131,2577],[-6,-1],[-8,-11],[-8,0],[-1,-16],[-8,-6],[-9,-16],[-7,-2],[-3,-9],[4,-3],[-2,-14],[1,-19],[-15,-13]],[[4069,2467],[4,-8],[2,-28],[-12,-9]],[[3312,2022],[1,19],[22,-8],[0,31],[17,0],[1,24],[-41,3],[-19,-16],[-4,27],[-4,-1],[-2,36],[-2,13],[17,6],[2,39],[-46,-2],[5,29],[-6,15],[-20,5],[7,22],[-7,-3],[-4,8],[-1,-12],[-13,4],[-3,9],[6,13],[7,-7],[6,12],[-6,4],[4,13],[-58,3],[8,22],[-8,18],[-31,-18],[-4,-9],[-3,7],[1,15],[-11,2],[-7,-10],[-12,9],[-5,-12]],[[3099,2332],[0,-13],[-12,-6],[-7,-9],[-1,-17],[7,-3],[-1,-6],[-9,1],[-8,-26],[-2,-12],[-6,-5],[2,-27],[-5,-53],[-2,-26],[4,-10],[-6,-5],[9,-18],[-9,-26],[-5,6],[-3,-22],[4,0],[0,-24],[-7,-5],[11,-10]],[[3053,2016],[15,1],[4,-23],[-11,-59],[-1,-17],[-4,-12],[8,-4],[2,-10],[14,-4],[6,-7],[-8,-3],[-4,-21],[8,-9],[-7,-14],[6,-2],[-1,-22],[-4,-14],[12,-5],[-13,-32],[21,-1],[0,-7],[13,-5],[5,-8],[-2,-26],[-19,0],[-7,-3],[-4,-17],[10,-9],[-5,-18],[2,-3]],[[3296,2952],[-4,16],[-11,-7],[-7,2]],[[3253,2897],[18,-14],[-3,-12],[-9,-9],[1,-21],[-7,-11],[0,-10],[-8,-18],[2,-18],[4,-9],[-4,-11]],[[3247,2764],[7,-4],[1,-20],[8,-15],[11,-10],[4,2],[23,-2],[15,21],[7,4],[4,14],[1,17],[5,3]],[[4475,2337],[1,-6],[-12,1],[4,-16],[5,3],[3,-22],[9,2],[1,-11],[7,-19],[-5,-7],[7,-10],[-8,-16],[3,-17],[8,15],[9,-17],[-9,-17],[6,-10],[-15,-23],[12,-3],[-6,-21],[5,-6],[-5,-17],[2,-4],[-7,-17],[-13,0],[3,-17],[-13,-1],[0,-13],[-6,0],[-1,-23],[-8,-18],[-1,-10],[20,-5],[9,1],[15,8],[3,-11],[5,6],[4,-15],[45,33],[2,-34]],[[4554,2000],[14,1],[3,6],[12,-2],[21,8],[3,8],[6,-4],[3,10],[-2,13],[12,3],[1,9],[7,14],[19,5],[8,7],[7,-3],[5,9],[13,-6],[0,9],[9,4],[0,10],[7,1],[10,19],[-1,10],[7,-3],[7,18],[13,5],[0,6],[10,2],[3,-16],[6,3],[-5,8],[2,6],[10,-2],[0,10]],[[3410,2198],[7,9],[-7,5],[9,15],[8,6]],[[3334,2367],[2,-24],[-5,-30],[-5,-21],[2,-1],[1,-34],[-7,-3],[14,-35],[4,1],[-4,17],[12,-7],[5,5],[-7,-24],[7,-9],[10,-7],[4,-16],[22,7],[3,10],[10,-3],[8,5]],[[4107,3571],[-4,4],[-12,-7],[-11,2],[1,9],[-8,-8],[0,-10],[-17,-3],[-9,-33],[-13,-44],[6,39],[-10,-2],[-13,1],[1,-10],[-7,-12],[-4,2],[-7,-25],[-2,7],[-4,-17],[-12,5],[-4,5]],[[3978,3474],[10,-29],[9,-2],[7,4],[12,-9],[1,-12],[-6,-7],[4,-7],[10,-2],[-3,-9],[-13,-1],[2,-18]],[[4131,2577],[0,10],[-12,6],[0,5]],[[4071,2606],[-2,-12],[-5,-8],[-18,-13],[-4,-20],[-11,-16],[-3,-20],[-6,-9],[14,-14],[8,2],[14,-26],[11,-3]],[[3315,3704],[-24,-57],[1,-2],[-13,-26],[4,-5]],[[3283,3614],[10,-12],[-5,-2],[8,-12],[-1,-18],[-9,-12],[0,-8],[-12,-20],[-2,-12],[-16,-13],[10,-6],[13,-18],[2,-11]],[[3142,2542],[-13,2],[4,24],[-5,40],[5,9],[-4,10],[7,1],[7,10],[10,31],[-12,5],[-1,16],[4,3],[0,18],[-9,0],[-2,8],[-5,-4],[-12,13]],[[3116,2728],[-5,-2],[-10,20],[-12,-1],[-1,11],[-6,5],[-9,-1],[-40,-32],[5,-6],[-7,-1],[-15,-13],[-14,0],[-11,-12],[-11,26],[8,16],[-14,14]],[[2974,2752],[-5,-2],[-7,-15],[-4,-6],[-3,-25],[-10,-48],[2,-21]],[[2947,2635],[0,-29],[-3,-21],[4,-4],[7,6],[5,-5],[8,11],[4,-11],[8,9],[11,2],[14,-3],[8,7],[8,-8],[12,7],[-1,-8],[14,-2],[20,-18],[9,4],[7,-6],[0,-17],[7,0],[4,-7],[16,17],[10,-9],[0,-18],[6,6],[7,-8]],[[3132,2530],[10,12]],[[3741,2048],[-4,9],[-8,2],[0,-7],[-13,-2],[0,-10],[-16,-4],[2,-14],[-12,-10],[-37,3],[0,6],[15,-2],[5,28],[-18,1],[1,37],[3,3]],[[3410,2198],[11,-13],[-6,-9],[3,-9],[-1,-22],[-3,-14],[-15,-14],[4,-9],[6,-41]],[[3715,2907],[2,24],[10,6],[6,-13],[6,10],[14,7],[3,4],[-8,4],[3,9],[-1,14],[2,15],[7,6],[-8,15],[3,12],[9,16],[21,14],[8,10]],[[3792,3060],[4,26],[-13,7],[-4,15],[-11,-4],[11,25],[-7,-1],[-8,-21],[-7,-6],[-4,28],[-5,1],[-4,13],[-5,3],[3,12],[-2,9],[4,11],[-3,9],[-1,-9],[-9,-10],[-2,31],[-2,-1]],[[3690,2917],[6,6],[8,-3],[8,-13],[3,0]],[[3247,2764],[1,-17],[-5,-11],[-8,0],[-7,-11],[-21,1],[-12,3],[-6,14],[-8,7],[-18,0],[-3,-22],[-9,5],[-5,-19],[-2,15],[-17,2],[-11,-3]],[[3142,2542],[14,-2],[12,12],[6,-12],[34,0],[4,15],[14,-4],[7,17],[12,-7],[8,0]],[[4271,1321],[0,17],[7,16],[-4,4],[0,11],[15,13],[-3,12],[19,26],[0,17],[4,0],[13,21],[-1,9],[7,23],[0,24],[-3,7],[4,19],[-7,25],[4,8],[-3,9],[7,26],[1,37],[6,5],[0,8],[9,13],[2,15],[4,-1],[0,13],[7,7],[6,16],[0,17],[6,7],[2,33],[11,21],[11,9],[5,12],[20,21],[4,18],[8,0],[6,12],[9,-2],[15,6],[9,11],[2,9],[6,-2],[-3,14],[12,19],[4,18],[18,11],[9,17],[19,19],[16,9]],[[3908,783],[6,2],[9,14],[6,0],[6,31],[8,0],[5,14],[7,0],[19,41]],[[4027,2733],[-9,9],[-8,1],[-12,7],[-8,27],[-6,10]],[[3984,2787],[-13,21],[-5,-2],[-3,-10],[-9,-4],[-1,-15],[-16,-4],[-6,-14],[-9,-12],[-2,-15],[3,-7],[-8,-34],[-5,-8],[-2,7],[-9,-9],[-8,0],[0,-7],[-7,-4],[9,-14]],[[3869,3076],[9,-7],[5,5],[1,11],[5,-8],[5,4],[6,24],[-5,7],[-11,-3],[-10,10],[3,25]],[[3855,3222],[-11,-9],[-13,-1],[-7,3],[6,14],[-6,5],[-20,-14],[-12,-4],[-22,11],[-20,-3]],[[3792,3060],[7,0],[10,10],[1,9],[6,7],[33,2],[-1,-17],[3,-11],[18,16]],[[3753,2872],[-9,-14],[-4,4],[-5,44],[-13,-9],[-1,13],[-6,-3]],[[4096,3087],[1,-15],[5,-12],[1,-19],[-7,-5],[-5,-32],[-7,-1],[2,-14],[-8,-13],[6,-6],[-7,-21],[-22,-21],[-13,-8]],[[4042,2920],[13,-21],[32,-3],[26,-4],[8,-10],[3,-24],[6,-7],[8,14],[1,-8]],[[3984,3342],[-1,0],[-9,42],[-16,16],[-11,19],[-8,5],[-3,12]],[[3936,3436],[-3,0],[-16,-22],[-18,-23],[-10,27]],[[3864,3379],[3,-11],[9,-20]],[[3978,3474],[6,21],[-11,-17],[-17,-32],[-9,4],[-1,-14],[-3,7],[-7,-7]],[[3984,2787],[6,15],[-6,4],[-2,26],[-11,16],[-1,19],[10,14],[13,2],[3,26]],[[3996,2909],[-9,-3],[-6,22],[-3,-4],[-7,11],[-4,-7],[-16,-1],[-8,-6],[-3,-14],[-6,16],[6,8],[-2,11],[-5,-9],[-24,-6],[-8,-29],[-30,19],[6,25],[-24,10],[-3,10],[9,18],[12,-7],[7,12],[0,12],[-16,9],[-6,-3],[-10,14],[-2,15],[29,28],[-4,16]],[[4042,2920],[-14,-6],[-11,-10],[-9,-5],[-6,11],[-6,-1]],[[3132,2530],[-3,-3],[-8,-29],[3,-16],[-5,-2],[4,-29],[-5,1],[-3,-19],[1,-10],[-7,-12]],[[3109,2411],[-4,-20],[-5,-11],[-1,-48]],[[3272,3411],[-19,-34],[-15,2],[0,-23],[-11,14],[-2,-9],[-7,-5],[1,12],[-8,-10],[-2,-31],[6,-10],[8,-6],[3,-5],[-4,-20],[-11,3],[-4,-8],[-6,4],[-7,12],[-5,-11],[-6,-1],[-7,17],[-3,-10],[-19,5],[-5,-4]],[[3049,2966],[-4,-21],[2,-17],[-5,-4],[-1,-18],[-10,-9],[-3,-9],[-8,-3],[-19,-1],[-7,-17]],[[2994,2867],[2,-19],[8,-4],[5,-14],[-14,-7],[-2,-10]],[[2993,2813],[-2,-17],[0,-22],[-17,-22]],[[6072,7395],[5,20]],[[6077,7415],[-6,4]],[[6071,7419],[-14,-7]],[[6057,7412],[-4,-3],[2,-11]],[[6055,7398],[1,-10],[16,7]],[[6068,7471],[10,1]],[[6078,7472],[6,0],[7,20]],[[6091,7492],[-1,10]],[[6090,7502],[-8,-3],[-8,4],[-17,-4]],[[6057,7499],[11,-28]],[[6042,7447],[2,10]],[[6044,7457],[-6,8],[2,13],[-10,8],[0,7],[-8,9],[-3,36]],[[6019,7538],[-5,-4],[2,-12],[-10,-8],[4,-14]],[[6010,7500],[8,-17],[0,-11],[24,-25]],[[6085,7348],[1,9]],[[6086,7357],[2,5],[-7,15],[2,8]],[[6083,7385],[0,0]],[[6083,7385],[11,6]],[[6094,7391],[8,5]],[[6102,7396],[-1,9],[5,18]],[[6106,7423],[-18,-1],[-4,-4]],[[6084,7418],[-7,-3]],[[6072,7395],[-5,-15]],[[6067,7380],[0,-1]],[[6067,7379],[4,3],[4,-11],[-4,-1],[6,-13]],[[6077,7357],[6,-11]],[[6083,7346],[2,2]],[[6105,7438],[-1,11]],[[6104,7449],[-1,9],[-6,-3],[-5,5],[-13,1]],[[6079,7461],[0,-14]],[[6079,7447],[4,0]],[[6083,7447],[13,-3],[9,-6]],[[6104,7449],[21,18]],[[6125,7467],[5,16]],[[6130,7483],[5,6]],[[6135,7489],[-16,0],[-14,7],[-6,14]],[[6099,7510],[-8,-18]],[[6078,7472],[1,-11]],[[6023,7541],[-2,-3]],[[6021,7538],[5,-13],[10,-15],[1,-15],[17,-12],[-1,13]],[[6053,7496],[-8,15],[0,17],[-10,20],[-12,-7]],[[6132,7550],[0,11],[4,8]],[[6136,7569],[-3,7],[4,6],[-2,24],[-6,15]],[[6129,7621],[-17,-6],[-9,20]],[[6103,7635],[-20,-6],[-3,-15]],[[6080,7614],[-1,0]],[[6079,7614],[-8,-16],[4,-22],[6,5]],[[6081,7581],[9,-29],[22,-10]],[[6112,7542],[13,0],[7,8]],[[6063,7452],[-1,17],[6,2]],[[6057,7499],[-4,-3]],[[6021,7538],[-2,0]],[[6044,7457],[18,-10],[1,5]],[[6135,7489],[-3,11],[-2,27],[2,12],[7,3]],[[6139,7542],[-2,5]],[[6137,7547],[0,1]],[[6137,7548],[-5,2]],[[6112,7542],[8,-15],[-21,-17]],[[6090,7502],[-12,9],[0,20],[-4,14],[7,7],[0,29]],[[6079,7614],[-28,-3],[-17,-19]],[[6034,7592],[-9,-42]],[[6025,7550],[-2,-5]],[[6023,7545],[0,-4]],[[6063,7452],[5,-2]],[[6068,7450],[11,-3]],[[6084,7418],[-1,29]],[[6068,7450],[-4,-6],[7,-25]],[[6042,7447],[4,-4]],[[6046,7443],[6,-8],[5,-23]],[[6106,7423],[-1,15]],[[4317,4504],[2,7],[-6,27],[9,4],[-5,16],[5,2]],[[4322,4560],[3,25],[17,13],[12,3],[12,-1],[-5,20],[0,32],[5,3]],[[4366,4655],[9,19],[7,-10],[3,26],[-5,3],[2,29],[22,7],[-3,12],[-8,-12],[-2,13],[-12,17],[-5,-4],[-7,13]],[[4367,4768],[-6,23],[-13,-8],[-3,9],[-13,11],[-11,0],[-10,-5],[-7,4],[-3,8],[-5,-7],[0,16],[-8,7],[2,25],[-13,1],[-5,-32],[-4,-12],[-8,-4],[9,-17],[-13,-5],[-3,7],[-4,-7],[-20,9],[-11,-18],[-18,-34],[-16,-3],[6,19],[-13,-4],[2,10],[-11,2],[4,14],[8,4],[10,23],[-8,-1],[-5,-19],[-19,5],[-2,16]],[[4156,4805],[-6,-6],[-29,-17],[-7,1],[-8,-20],[-11,0],[-7,5],[-5,-5],[12,-16],[3,-29],[-9,-8],[-2,-17],[-16,-15],[37,-1],[1,-5],[-8,-18],[8,-1],[4,-18],[10,-16],[1,-7]],[[4124,4612],[3,20],[10,-12],[2,6],[9,1]],[[4148,4627],[15,-12],[15,-15],[16,32],[24,31],[5,-8],[-5,-20],[5,-6],[5,19],[28,-45],[5,-10],[-8,5],[-7,-14],[-2,-30],[7,-3],[1,-18],[18,-8],[20,-16],[4,2],[23,-7]],[[3833,4347],[3,15],[7,7],[8,-12],[0,-17],[10,5],[2,8],[-4,10],[16,1]],[[3875,4364],[-4,7],[4,10],[-15,-1],[1,25],[-7,1],[5,17],[-30,1],[-21,-23],[7,-12],[-4,-15],[-10,19],[-9,3],[4,-33],[-19,43],[-10,30],[-11,-17],[1,25],[-3,2],[-17,-4],[-7,-19],[-10,7],[1,16]],[[3721,4446],[-8,2],[-9,-7],[-7,-29],[9,-8],[-2,-21],[-7,0],[3,-16],[-10,-9]],[[3690,4358],[0,-5],[14,-20],[13,6],[10,-13],[37,-2],[8,-7],[14,10],[-9,10],[11,11],[8,-1],[8,-9],[-1,-17],[-7,-3],[26,-7],[-13,7],[8,15],[11,26],[5,-12]],[[4358,4443],[9,13],[-15,15],[-5,18],[-5,6],[9,3],[-6,5],[0,30],[-10,1],[-2,24],[-10,-4],[-1,6]],[[4317,4504],[-10,-23],[5,-33],[-16,9],[-6,-15],[-23,-35],[-15,9],[0,-24],[-10,-3],[2,-14],[-6,-8],[-2,6],[-7,-9],[-2,-10],[-7,8],[-2,-5]],[[4218,4357],[3,-12],[-15,-4],[-7,-18]],[[4199,4323],[12,-6],[10,8],[10,-10],[0,-17],[6,7],[4,-8],[3,15],[9,9],[9,-1],[7,9],[0,-26],[22,-32]],[[4291,4271],[-6,28],[17,20],[-5,17],[5,-1],[-1,14],[10,-12],[8,10],[9,-4],[2,13],[10,-8],[8,21],[1,34],[-2,18],[11,22]],[[4615,4269],[3,8],[0,16],[5,20],[11,10],[3,-9],[9,4],[22,-7],[25,-15]],[[4693,4296],[-3,17],[14,10],[-30,61],[18,16],[25,-42],[4,15],[16,3],[-5,14],[-8,12],[24,2],[-1,5],[20,0],[4,16],[-2,19],[-5,-1],[-19,4],[2,26],[7,-2],[-1,10],[-12,-2],[3,25],[-4,-1],[-7,37],[-8,20]],[[4725,4560],[-17,44],[15,11],[2,12],[-19,-17],[-1,-4],[-11,9],[8,29],[-15,18],[-2,29],[10,-2],[-1,27],[-10,9],[-1,7],[20,3],[-10,7],[0,28],[-10,9],[1,13],[-13,8],[-3,11],[-11,11],[2,18],[16,-2],[8,-10]],[[4683,4828],[-1,28],[2,8],[-15,22],[-5,19],[-4,4],[-8,-22],[-11,11],[-16,22]],[[4625,4920],[-20,27]],[[4605,4947],[1,-13],[-4,-12],[-21,-23],[-6,13],[14,10],[-2,25],[-15,-4],[3,8],[-5,3],[-9,-11],[-5,-25],[10,-10],[-4,-3]],[[4562,4905],[8,-9],[-1,-16],[-9,-18],[6,-16],[0,-15],[6,10],[5,-13],[-7,-26],[8,-3],[-2,-21],[-12,-1],[-12,-19],[3,-5],[-10,-1],[-7,-9],[10,2],[25,15],[-2,-13],[1,-34],[-9,-24],[-9,6]],[[4554,4695],[10,-9],[-6,-21],[23,-34],[15,-19],[-6,-18],[5,-7],[-1,-12],[5,-1],[4,-10],[5,2],[1,-19],[-11,-2],[0,-12],[-4,-16],[7,-5],[-14,-6],[-11,22],[-13,-5],[-5,-20],[-7,-19],[-5,-20],[5,-25],[-4,0]],[[4547,4439],[-1,-12],[17,-2],[-2,-29],[-3,-8],[19,-21],[-7,-22],[14,-32],[5,-3],[9,-31],[9,-15],[8,5]],[[4367,4768],[11,2],[-2,10],[6,1],[26,-21],[-3,11],[8,-9],[12,11],[6,-4],[4,13],[5,5],[3,16],[5,9],[3,-12],[11,11],[0,-6]],[[4462,4805],[3,-9],[12,-2],[9,5],[8,-2],[0,16],[3,39]],[[4497,4852],[5,10],[-5,15],[6,4],[-2,10],[5,-1],[7,9],[-3,10],[-11,2],[-9,14],[-8,2],[-11,20],[-5,3]],[[4466,4950],[-2,-13],[-11,-4],[-4,17],[3,14],[-12,0],[3,26],[-14,7],[-8,-6],[1,17],[-3,10],[0,17],[3,16],[-7,47]],[[4415,5098],[-9,6],[-12,-2],[-1,7],[-9,-4],[-9,-9],[-2,16],[8,7],[-7,11],[8,6],[5,-6],[11,14],[8,-6],[8,6],[2,9],[-12,11],[-6,-8],[-7,0],[-1,22],[14,0],[-6,8],[-19,-1],[1,-16],[-15,44],[-8,-10],[-23,22],[6,10],[-7,20],[-18,-18],[0,13],[-26,2],[0,47]],[[4289,5299],[-7,-4],[3,-41],[-12,-10],[4,-27],[-16,5],[-25,13],[-7,6],[-44,-36],[0,13],[-9,7],[-9,-12],[2,-8],[-4,-6],[-11,5],[-1,11],[-10,-4],[4,-25],[-6,-6],[4,-4],[-3,-36],[13,-38],[-7,-19],[3,-19],[-13,-17],[0,-9],[-10,6],[-19,2],[-16,-26],[-5,-5],[-10,2],[2,-7],[-31,-23]],[[4049,4987],[1,-36],[5,0],[10,-21],[6,0],[4,-7],[3,-27],[18,-14],[3,-15],[-8,4],[12,-14],[3,5],[6,-12],[12,-2],[8,4],[20,-9],[4,-38]],[[4897,4556],[1,4],[-16,17],[-17,0],[-18,10],[-4,6],[8,30],[9,16],[17,23],[-2,12],[6,16],[10,15],[7,5],[-3,6]],[[4895,4716],[-3,18],[-21,-16],[-5,13],[-19,-18],[-10,24],[-4,-7],[-4,19],[-7,-10],[-15,-9],[-6,7]],[[4801,4737],[4,-15],[-10,-14],[1,-14],[5,-13],[-10,-17],[-10,8],[2,-15],[-20,-15],[-3,9],[-4,-19],[-16,-37],[22,-4],[-25,-1],[-5,-21],[-7,-9]],[[4693,4296],[7,-10],[1,-20]],[[4705,4121],[-20,-34],[-4,6],[-13,-20],[5,-7],[-6,-11],[-5,7],[-7,-14],[4,-7],[-16,-30]],[[4643,4011],[16,-8],[6,-20],[5,-32],[7,-8],[4,-17]],[[4681,3926],[1,6],[8,-1],[-1,8],[12,0],[-1,18],[7,1],[1,-15],[7,1],[0,7],[16,4],[-7,-4],[-4,-14],[14,-3],[3,10],[14,-11]],[[4562,4905],[-21,-22],[-5,2],[-6,-9],[-2,-16],[-12,-13],[-7,-15],[-4,3],[2,11],[-10,6]],[[4462,4805],[3,-27],[27,-12],[-5,-12],[-7,2],[2,-15],[7,-10],[-5,-7],[7,-3],[-4,-16],[-6,-5],[-5,-19],[-11,1],[0,-6],[9,-4],[0,-9],[-13,-16]],[[4461,4647],[16,-3],[-15,-22],[25,-27],[18,-1],[7,17],[12,12],[6,-28],[6,14],[-3,23],[10,60],[4,11],[7,-8]],[[3829,3570],[8,12],[0,7],[12,-11],[2,6],[-1,12],[-7,4],[23,2],[7,17],[2,12],[6,9],[5,-2],[5,11],[5,-1],[2,11],[13,-1],[4,-11],[2,-21],[13,-14],[3,15],[13,1],[7,-16]],[[3953,3612],[-2,30],[-8,22],[-7,-12],[-7,7],[7,14],[-5,31],[-3,7],[12,6],[4,12],[-3,3],[-3,13],[-9,5],[2,6],[7,0],[0,14],[10,13],[8,-2],[22,28],[6,14],[0,27],[7,13],[9,-2],[8,-21],[7,-7],[3,24],[-3,13],[-7,-6],[-6,7],[0,25],[4,13],[2,31],[5,-3],[12,20],[6,4],[-7,-42],[20,34],[11,-20],[-10,-13],[9,-3],[-3,-11],[20,2]],[[4071,3908],[3,12],[-18,27],[8,11],[5,-4],[4,11],[-5,4],[-4,34],[-11,7],[0,13],[5,26],[-9,0],[2,33]],[[4051,4082],[-21,26],[-3,-8],[-11,9],[-11,-11],[-11,-21],[0,-28],[-10,-14],[-8,7],[-16,-15],[-14,-7],[-8,1],[-15,-8],[-1,-6],[-19,4],[-4,10],[-8,0],[-11,-8],[-1,-13],[-9,0],[-8,-7],[-1,-12],[-6,2],[-5,-21],[-13,45],[-33,-29],[-36,29]],[[4364,3673],[4,26],[22,39],[-2,10],[-1,26],[1,20],[-27,18],[4,49],[-13,30],[6,4],[10,17],[6,5],[9,-5],[7,15],[15,-2],[1,9]],[[4406,3934],[3,27],[-4,4],[-48,31],[5,13],[10,17],[6,5],[-5,10],[-12,7],[-7,-4],[-13,12],[3,17],[-9,11]],[[4335,4084],[-15,14],[-13,-11],[-7,-11],[-5,-18],[-20,-37],[-16,-21],[-9,-38],[-4,-4],[-26,-66],[5,-12],[2,-19],[-9,-9],[-15,-3],[4,-12],[-7,8],[-3,-5],[0,-17],[-3,-1],[-13,-22],[-10,16],[-11,-26]],[[4160,3790],[-7,-20],[-3,0],[-8,-18],[70,-118],[0,-4]],[[4335,4084],[10,24],[-1,3],[10,20],[-1,26],[3,0],[1,17],[-5,8]],[[4352,4182],[-10,16],[6,3],[-6,18],[-5,-5],[-5,16],[-11,-11],[-2,10]],[[4319,4229],[-4,-10],[-9,-3],[-3,-10],[-14,-14],[0,-7],[-7,3],[1,-7],[-14,-11],[-6,5],[-6,-14],[-6,-4],[0,-14],[-8,2],[-1,12],[-9,14],[-17,-32],[-6,-1],[1,-16],[5,-5],[-8,-20],[-4,-24],[1,-17],[-5,-14],[8,-10],[-4,-11],[-7,-4],[-3,-10],[-2,10],[-10,18],[-12,-8],[-5,7],[-7,-28],[-6,-13],[5,-12],[-2,-23],[-12,-3],[-6,-18],[-3,-1],[1,-16],[-7,4],[4,-28],[-4,-19],[6,-4],[-6,-21],[-4,-6],[-6,-23]],[[4118,3823],[5,0],[16,-18],[16,-7],[5,-8]],[[4615,4269],[-14,-44],[9,-23],[-17,-39],[-17,5],[-1,-11],[-14,7],[-7,-24],[-2,-26]],[[4552,4114],[13,33],[12,-4],[2,13],[9,-3],[-7,-33],[9,0],[-3,-12],[-15,-1],[1,-34],[4,-3],[-15,-32],[-3,2],[-3,-17],[12,-9],[-4,-12],[12,-9],[18,0],[10,4],[34,7],[5,7]],[[4566,3443],[-29,52],[-6,10],[9,7],[0,18],[-3,17],[3,4],[22,0],[-3,38],[-6,9],[7,12],[-3,11],[-15,22],[7,15],[45,85],[27,45],[19,30],[2,13],[9,36],[11,52],[11,-13],[7,7],[1,13]],[[4552,4114],[-12,3],[-1,-17],[-8,1],[-2,12],[-7,1],[-4,-20],[-4,9],[-16,-1]],[[4498,4102],[-11,-29],[-1,-10],[6,-2],[4,-48],[6,-6],[-6,-3],[-1,-8],[-14,4],[-6,-8],[-12,29],[-11,-21],[2,-8],[0,-24],[-3,-13],[-5,0],[-2,-19],[-26,-7],[-4,5],[-4,-7],[-4,7]],[[4415,5098],[7,8],[19,-1],[18,20],[1,19],[-3,0],[0,27],[13,0]],[[4470,5171],[-8,25],[-5,24],[-2,-31],[-22,-12],[1,6],[12,7],[-1,16],[3,14],[9,5],[3,11],[-14,17],[3,15],[-1,11],[-10,3],[7,12],[10,-2],[0,33],[-3,18],[-6,7],[-8,2],[-2,20],[-6,16],[1,24],[6,13],[10,9],[16,-14],[7,12],[14,-2],[6,-4],[1,19]],[[4491,5445],[-1,80],[4,4]],[[4494,5529],[-1,18],[4,11],[5,1],[9,18],[0,41],[4,3],[0,15],[5,4],[-4,6],[-4,-5],[-16,5],[-10,0],[-5,-10],[-8,0],[-1,14],[-11,8],[0,14],[-4,5],[1,13],[-4,6],[6,16],[-4,8],[7,14],[-5,5],[-4,19],[-5,-3],[-5,13],[0,9],[8,24],[-7,14],[-1,10],[-9,11]],[[4435,5836],[-7,-7]],[[4428,5829],[-8,6]],[[4420,5835],[-8,5]],[[4412,5840],[-23,14],[2,13],[-6,3],[-13,-16],[-3,-10],[-6,0],[-5,-10],[-3,-26],[-17,-1],[0,-43],[-4,-13],[-15,5],[-13,-5],[-5,-9],[-1,-26],[-3,-9],[-14,4],[-9,-5],[-1,23],[-31,55],[-9,4]],[[4233,5788],[-6,-48],[-20,-38]],[[4207,5702],[4,-17],[52,-27],[-7,-5],[0,-39],[-5,-5],[-8,8],[-10,-12],[0,-31],[-5,-6],[-2,-13],[4,-17],[-2,-10]],[[4228,5528],[-2,-10],[5,-4],[7,-15],[13,-7],[17,-19],[15,-9],[6,-16],[6,-5],[-3,-13],[3,-4],[0,-23],[-8,-9],[3,-6],[-3,-27],[5,-13],[2,-26],[7,-6],[3,-31],[-14,28],[-1,-14]],[[4547,4439],[-11,-3],[-9,7],[-13,-54],[-2,23],[-8,11],[-6,2],[-11,-5],[4,-28],[-15,-2],[1,17],[-11,10],[-4,-7],[-3,10],[-5,2],[-1,-14]],[[4453,4408],[-3,-6],[-13,11],[-5,-6]],[[4432,4407],[-1,-20],[-4,-7],[0,-22],[-3,-13],[5,2],[1,-30],[-1,-40],[-2,-5]],[[4427,4272],[7,-7],[6,6],[7,-1],[35,-22],[4,-9],[5,7],[16,-5],[-6,-25],[5,0],[-2,-18],[-7,-15],[-4,1],[-1,-22],[5,-5],[6,7],[1,-17],[-4,-11],[-6,16],[-4,-4]],[[4490,4148],[-5,-20],[-1,-15],[13,-5],[1,-6]],[[4466,4950],[6,6],[-3,5],[8,9],[-1,9],[-7,4],[2,20],[18,-11],[6,5],[0,-8],[6,-3],[3,11],[-9,1],[1,9],[-11,5],[-2,6],[16,7],[7,-4],[8,17],[3,-7],[14,3],[0,25],[30,6]],[[4561,5065],[-15,23],[-7,6],[0,16],[-6,0],[1,12],[-5,4],[8,6],[-11,10],[1,5],[-11,14],[-9,16]],[[4507,5177],[-22,1],[-15,-7]],[[4118,3823],[-10,-22]],[[4108,3801],[-8,-24],[-3,-1],[-19,-42],[-11,-3],[-3,-24],[5,-8],[0,-14],[-7,-3],[-11,-28],[-13,15],[-7,-12],[-11,11],[-5,-30],[-5,-3],[3,-9],[-2,-19],[-7,-9],[-6,-17],[-14,0],[4,-6],[-6,-14],[-11,7],[3,11],[-20,17],[-1,16]],[[4319,4229],[4,15],[-11,16],[-6,-4],[3,-10],[-10,10],[-3,-3],[-7,12],[2,6]],[[4199,4323],[-11,7],[-5,-12],[4,-10],[-3,-44],[-5,-5],[-9,-23],[-2,-10],[-7,0],[-18,-17],[-14,11],[-3,-1],[-1,19],[-11,-4],[-1,-22],[-4,-13],[-7,-9],[-11,12]],[[4091,4202],[-16,-29],[3,-46],[-12,-10],[5,-5],[-5,-14],[-8,-1],[-7,-15]],[[4071,3908],[10,-13],[6,4],[4,-19],[0,-9],[19,-38],[-12,-21],[10,-11]],[[4013,4640],[-7,4],[1,21],[-10,-1],[-1,-19],[-33,6],[-2,11],[-14,9],[-3,-4],[-17,0],[-1,-5],[-8,5],[1,23],[-5,5],[-5,-4],[-7,-18],[-9,6],[-27,-5]],[[3866,4674],[-4,-13],[-4,1],[3,-12],[-10,-13],[-1,-21],[-8,-21],[25,-29],[-23,-2],[0,-4]],[[3844,4560],[6,-33],[21,6],[13,-11],[12,5],[2,-10],[13,4],[5,-6],[5,-22],[-1,-15],[11,-12],[13,-2],[6,20],[50,29],[-2,-8],[8,4],[0,24],[19,-1],[1,23],[3,2],[-11,34],[0,9],[-8,18],[-7,0],[10,22]],[[4366,4655],[21,5],[4,-4],[10,6],[-1,-30],[7,-2],[3,-16],[16,-2],[-7,-6],[-6,-26],[19,1],[5,4],[2,-14],[4,0]],[[4443,4571],[23,5],[-1,13],[-20,-4],[14,62],[2,0]],[[4443,4571],[1,-19],[20,-9],[2,-9],[-7,-19],[0,-21],[5,-24],[-5,-2],[-12,14],[1,-47],[-2,-11],[7,-16]],[[4605,4947],[-1,10],[-10,-3],[-1,13],[-8,-2],[7,10],[4,13],[6,0],[-4,32],[-7,18],[2,7]],[[4593,5045],[-18,15],[0,8],[-14,-3]],[[4228,5528],[-3,-1],[-18,10],[-29,3],[-42,0],[-9,7],[-4,-15],[0,-17],[-5,-10],[1,-17],[-2,-13],[-11,-5]],[[4106,5470],[-3,-11],[-7,-9],[-5,2],[-20,-6],[-6,2],[-9,13],[-13,-5],[-12,-8],[-5,-10],[4,-18],[-3,-6],[4,-9],[-1,-19],[-5,-9],[2,-12],[-14,-5],[-4,-14],[2,-5],[-7,-16],[-1,-10]],[[4003,5315],[5,-30],[-10,-4],[-2,-8],[5,-18],[-11,-14],[1,-13],[-4,-17],[-9,-12]],[[3978,5199],[0,-36],[12,-8],[7,-10],[1,-14],[0,-27],[13,-10],[7,-28],[-10,-3],[3,-46],[38,-30]],[[4432,4407],[-11,2],[-4,-6],[-12,4],[-9,-3],[0,14],[-9,10],[-29,15]],[[4352,4182],[20,17]],[[4372,4199],[16,17],[26,31],[4,-2],[9,27]],[[3978,5199],[-3,-4],[-2,-13],[-22,11],[-3,21],[-5,-20],[-6,-52],[4,-23],[3,-6],[-7,-13]],[[3937,5100],[-1,-18],[-3,1],[-4,-15]],[[3929,5068],[-3,-13],[3,-35],[28,18],[1,-10],[-1,-12],[-11,-16],[-15,-2],[12,-20],[-2,-9],[-5,1],[-10,-11],[-5,-13],[-7,-1],[0,-25],[3,-14],[-4,-2],[0,-16],[-5,-9],[-8,-31],[-9,0],[0,-28],[-25,-37]],[[3866,4783],[-3,-18],[-3,-41],[-11,-17],[10,-6],[-1,-14],[11,-8],[-3,-5]],[[4013,4640],[14,-20],[2,11],[8,-2],[5,-8],[9,9],[7,-6],[16,5],[6,-16],[20,15],[-1,-8],[20,-23],[0,13],[5,2]],[[4983,4749],[-16,11],[-13,4],[-15,-1],[-13,-15],[-13,10],[-4,-7],[-8,-28],[-6,-7]],[[4965,4382],[5,11],[1,11],[6,10],[-4,17],[-9,0],[0,20],[33,22],[1,21],[5,19],[11,66],[6,53],[4,68],[-2,25],[5,0],[-2,9],[-13,2],[-5,9],[-22,-2],[-2,6]],[[4372,4199],[7,-7],[20,-1],[5,7],[7,-23],[-5,-11],[9,-11],[13,-4],[1,26],[7,-5],[16,1],[5,14],[18,-21],[4,11],[7,-11],[-2,-4],[6,-12]],[[4801,4737],[-4,1]],[[4797,4738],[-7,2],[-8,-16],[-8,9],[-20,1],[-15,3],[-3,-5],[-11,11],[-1,29]],[[4724,4772],[-9,21],[-8,3],[0,9],[-9,7],[-10,-3],[-7,3],[2,16]],[[4218,4357],[-9,0],[-5,12],[-10,-7],[0,17],[-5,10],[-8,4],[1,11],[-3,24],[-8,10],[-7,15],[-2,17],[17,-12],[6,17],[-22,4],[-16,12],[7,38],[-18,9],[5,11],[-12,-2],[5,20],[5,4],[-1,12],[22,0],[-1,10],[-7,6],[-4,28]],[[3844,4560],[-2,-5],[-11,0],[-5,-10],[-6,3],[0,11],[-31,-2],[-7,-19],[-5,8],[-16,17],[-4,13],[-6,0],[4,-29],[6,-13],[-6,-18],[-8,-10],[-12,-8],[-1,-19],[-3,-2],[-1,-16],[-9,-15]],[[3875,4364],[45,0],[28,-4],[9,45],[27,-38],[-4,-43],[-2,-7],[5,-21],[-9,-6],[17,1],[23,4],[17,30],[22,-11],[-6,-28],[-6,-6],[2,-9],[17,-13],[-6,-24],[4,-63],[17,35],[9,6],[7,-10]],[[4583,5182],[-1,10],[-8,-5],[6,12],[-7,2],[-2,7],[-34,38],[-13,17],[-6,35],[-8,24],[-1,21]],[[4509,5343],[-2,14],[-3,59],[-13,29]],[[4507,5177],[-6,10],[10,-4],[10,1],[0,-11],[10,-11],[8,18],[-5,12],[11,-9],[0,-30],[5,5],[12,-10],[33,-15]],[[4595,5133],[-3,12],[21,1],[-3,26],[-6,9],[-11,-15],[-9,6],[-1,10]],[[3708,4109],[3,31],[-8,13],[-7,20],[3,3],[2,22]],[[3701,4198],[-21,7],[-13,-13],[-10,12],[-20,34],[-8,4],[1,13],[-5,6],[-12,2],[3,13],[17,18],[2,9],[11,11],[-2,22],[-11,9],[8,23],[11,-5],[24,-19],[14,14]],[[3866,4783],[-6,3],[-7,-10],[-24,-13],[-18,8],[-7,7],[-1,18],[-6,8],[-31,13],[-12,-7]],[[3754,4810],[-7,-3],[-1,-8],[-17,-38],[1,-6],[-6,-13],[10,-13],[3,-18],[-6,-10],[-16,-10],[2,-10],[-7,-2],[-13,-39],[0,-14],[-7,-25],[-3,-3],[-24,-43],[-23,-39],[-5,-1]],[[3635,4515],[-6,-1],[-5,8],[-4,-4],[-5,-21],[6,-4],[-14,-24],[-10,-10],[-5,10],[1,-13],[-14,-39],[-2,-15],[-20,-12],[2,-67],[-7,-28],[5,-1],[3,-10],[-8,-8]],[[3552,4276],[-3,-3],[-16,-38],[10,3],[-11,-50],[8,-11],[7,-1],[3,-10],[0,-12],[5,-6],[-3,-9],[-9,-1],[0,-28],[18,0],[27,-21],[19,-19],[-7,-18]],[[3833,4347],[-5,-22],[18,-12],[-3,-8],[-9,0],[-1,-7],[14,0],[3,9],[3,-13],[4,0],[1,-15],[-2,-18],[-6,-5],[-3,-12],[-16,0],[-20,11],[-10,0],[-8,-6],[-5,-10],[-12,-4],[-1,-10],[-7,-7],[-13,-6],[-14,-13],[-2,6],[-6,-6],[-12,-2],[-8,2],[-12,-1]],[[4593,5045],[5,7],[0,13],[5,10],[-15,30],[7,28]],[[5325,6730],[-5,9],[14,41],[7,2],[-6,6],[-1,24],[7,3],[1,10],[-11,5],[1,18],[4,11],[14,4],[14,-8]],[[5364,6855],[2,7],[10,-2]],[[5376,6860],[-1,9],[-7,7],[-4,-3],[5,15],[2,22],[-8,3],[-2,11]],[[5361,6924],[-14,-17],[-3,4],[-15,5],[-13,0],[-6,3],[-1,14],[3,6],[2,20]],[[5314,6959],[-5,-3],[-8,8],[-7,-3],[-1,6]],[[5293,6967],[2,-11],[-6,-12],[1,-12],[6,-2],[7,-22],[-3,-11],[1,-18],[-1,-31]],[[5300,6848],[6,-4],[-2,-22],[4,-2],[1,-21],[-6,-18],[-7,-1],[-1,-12],[-5,-9]],[[5290,6759],[4,-15],[-4,0],[-2,-14],[3,-7],[10,-8],[4,12],[10,7],[0,-10],[10,6]],[[5617,7138],[-6,14]],[[5611,7152],[-13,-3],[-7,8],[-14,6],[-6,14],[-10,-1],[-4,-22],[-13,-10],[-1,21],[-6,0],[-2,-8],[-7,3],[-8,-11],[-12,2],[0,15],[-4,0]],[[5504,7166],[-4,2],[-3,-13],[-7,0]],[[5490,7155],[0,-8],[8,-9],[-1,-9],[4,-2]],[[5501,7127],[6,0],[3,-12],[5,0],[1,-12],[10,-4],[-2,-9],[7,-5],[-7,-3],[0,-11],[4,-9],[4,12],[4,-12],[12,-8],[-1,-7],[13,-10]],[[5560,7037],[16,-3],[9,-9],[8,-17]],[[5593,7008],[11,8],[4,9],[-7,9],[0,14],[12,3],[4,-3],[0,20],[5,13],[-5,15],[5,2],[5,-11],[11,-3],[13,6],[-4,5],[8,6],[-6,1],[2,16]],[[5651,7118],[-3,-2],[-4,-23],[-9,-4],[-6,2],[-4,10],[0,19],[-8,18]],[[5640,6557],[0,21],[4,17],[-4,1],[5,16],[9,8],[4,14]],[[5658,6634],[0,11],[-11,21],[1,9],[-18,12],[-6,11],[7,2],[-2,20],[2,4]],[[5631,6724],[0,0]],[[5631,6724],[3,13],[-12,4],[-4,6]],[[5618,6747],[-6,1]],[[5612,6748],[0,-24],[-5,-5],[0,-12],[-13,-1],[-7,-14],[-7,-6],[-7,13],[-16,13],[-4,-14],[-12,6],[-15,2],[-7,-8],[-14,5],[-5,-7],[-6,4],[1,9]],[[5495,6709],[-14,2],[0,-8],[-11,-8]],[[5470,6695],[-1,-15],[-5,-9]],[[5464,6671],[14,-11],[15,-22],[8,-4],[2,-12],[7,3],[6,-9],[-1,-16],[7,9],[-2,-16],[22,-8],[-5,-25],[7,-2],[6,6],[9,-17],[5,0],[21,-8],[20,-2]],[[5605,6537],[26,5],[9,15]],[[5658,6924],[-3,18],[-10,11],[-10,-1],[-13,12],[-2,-8],[-16,-11],[-3,0]],[[5601,6945],[-2,-6],[1,-26],[-5,-9],[-6,0]],[[5589,6904],[-1,-24]],[[5588,6880],[1,-4],[16,1],[-3,-14],[8,6],[7,-3],[-1,-6],[8,0],[10,-15],[9,3],[5,-14]],[[5648,6834],[-1,14],[5,32],[0,20],[6,24]],[[5650,6801],[0,0]],[[5650,6801],[3,12]],[[5653,6813],[1,22],[-6,-1]],[[5588,6880],[0,-6],[-17,-3],[2,-8],[-8,-4],[0,-11],[11,-22],[6,1],[4,-28],[11,-1],[2,-13],[-4,-9],[9,5],[1,-7]],[[5605,6774],[2,-11],[5,-5],[0,-10]],[[5618,6747],[5,12],[-1,8],[8,5],[3,19],[7,-2],[2,8],[8,4]],[[5876,6383],[2,11],[-7,8],[5,26]],[[5876,6428],[0,0]],[[5876,6428],[7,11],[7,-11]],[[5890,6428],[1,-1]],[[5891,6427],[2,0]],[[5893,6427],[13,3],[4,6]],[[5910,6436],[-8,15],[1,18]],[[5903,6469],[2,5],[-16,-5],[-12,15],[0,6],[-16,21],[-14,-6]],[[5847,6505],[-2,0]],[[5845,6505],[-8,-9]],[[5837,6496],[6,-34],[4,-13],[0,-14],[5,-23],[7,-19],[17,-10]],[[5589,6904],[-3,12],[-6,-5],[-6,20],[-14,-1],[-1,9],[-12,-9]],[[5547,6930],[-6,-8],[5,-22],[-9,-4],[3,-24],[-18,-6],[-2,-11]],[[5520,6855],[7,-12],[-7,4],[-1,-21]],[[5519,6826],[12,-8],[-3,-24],[4,0],[3,-17]],[[5535,6777],[13,-2],[3,-12],[13,9],[0,11],[4,1],[10,-17],[19,-3],[8,10]],[[5259,6706],[-4,6],[21,-3],[1,10],[-7,24],[3,15]],[[5273,6758],[-5,-4],[-9,5],[1,9],[-6,6],[-3,18],[-5,6]],[[5246,6798],[-9,7],[-2,16],[-12,3],[-2,18],[-11,-4],[-1,-8],[-11,8],[0,-11],[-12,3]],[[5186,6830],[3,-13],[0,-22],[-4,-17],[-14,-3],[0,-28],[-7,0],[1,-13],[-8,2],[-4,-6],[2,-12]],[[5155,6718],[3,-22],[3,-4],[15,-4],[1,-4],[18,3],[1,10],[10,-8]],[[5206,6689],[14,-11],[4,5],[13,2],[-1,5],[14,15],[9,1]],[[5535,6777],[2,-11],[-10,-9],[-9,4],[-4,-7],[-9,4],[-5,-27],[0,-25],[-5,3]],[[5696,6975],[8,16],[-2,10],[-7,11],[3,18],[-3,2],[-5,25],[-3,4]],[[5687,7061],[-2,-7],[-5,8],[-7,-12],[6,0],[3,-14],[-17,0],[6,-7],[-1,-15],[5,-6],[3,-24],[4,-7],[11,1],[-9,-11]],[[5684,6967],[12,8]],[[5479,6858],[22,4],[0,-4],[19,-3]],[[5547,6930],[-1,12]],[[5546,6942],[-17,-1],[-1,-14],[-5,1],[-3,19],[-17,2],[-7,6]],[[5496,6955],[1,-11],[-7,-9],[-4,1],[2,-23],[-6,-2],[-1,-14],[-4,-9]],[[5477,6888],[2,-30]],[[5273,6758],[8,4],[9,-3]],[[5300,6848],[-9,0],[0,-11],[-7,-2],[-4,9],[-17,-1],[0,-8],[-6,-6],[10,0],[-2,-24],[-8,4],[-11,-11]],[[5714,6546],[-3,8],[-7,-1],[-6,-7],[-35,-7],[-1,-5]],[[5662,6534],[-8,-34],[13,-7],[3,8],[6,-4],[3,8],[4,-12],[10,0],[3,-11]],[[5696,6482],[9,1],[6,14],[9,11],[11,23]],[[5731,6531],[-4,18],[-13,-3]],[[5578,6436],[5,12],[17,22],[-2,15],[-10,5],[3,17],[4,3],[0,15],[3,-3],[7,15]],[[5464,6671],[-1,-3]],[[5463,6668],[-1,-22],[-5,-19],[0,-8],[11,-3],[5,-9],[-16,-19],[-6,3],[-7,-20],[9,-5],[-5,-12],[4,-7],[2,-19],[3,-11],[-13,-6],[3,-9],[-10,-7],[0,-13],[-10,2]],[[5427,6484],[3,-12],[12,-4],[15,-11],[1,-32],[7,2],[-1,18],[11,-4],[1,-20],[3,0]],[[5479,6421],[7,2],[7,-11],[5,15],[10,5],[10,-7],[-3,-11],[7,-2],[1,10],[14,-5],[0,7],[19,1],[11,-8],[8,20],[3,-1]],[[5369,6521],[17,-4],[4,-7],[0,-12],[5,0],[5,-12],[21,-2],[3,-10],[3,10]],[[5463,6668],[-10,0],[-6,9]],[[5447,6677],[-21,8],[-2,4],[-12,-1],[-8,-5],[-7,5],[-20,-7]],[[5377,6681],[4,-11],[9,-12],[-1,-21],[-8,1],[3,-13],[2,-26],[-7,-12],[2,-10],[-17,-20],[0,-13],[-10,-1],[0,-21]],[[5354,6522],[15,3],[0,-4]],[[5361,6924],[-5,3],[-5,23],[-5,8]],[[5346,6958],[-6,-5],[-4,10],[-7,-2],[-2,-8],[-13,6]],[[5393,6821],[-11,2],[0,-9],[-8,5],[-15,19],[5,2],[0,15]],[[5325,6730],[12,-19],[11,-8]],[[5348,6703],[14,-1],[0,-23],[15,2]],[[5447,6677],[-9,30],[-7,10],[0,11],[-7,-2],[-7,17],[-5,2],[-5,12],[-3,19],[4,1],[-4,39],[-7,-2],[-4,7]],[[5496,6955],[1,6],[-6,6],[-1,11],[-12,3]],[[5478,6981],[-9,-3],[-2,-8]],[[5467,6970],[-10,-9],[0,-11],[-1,-34],[8,-3],[-4,-5],[2,-14]],[[5462,6894],[6,3],[1,-9],[8,0]],[[5667,6924],[1,0]],[[5668,6924],[0,0]],[[5668,6924],[2,1]],[[5670,6925],[4,3]],[[5674,6928],[0,0]],[[5674,6928],[4,5]],[[5678,6933],[0,0]],[[5678,6933],[0,0]],[[5678,6933],[0,0]],[[5678,6933],[1,0]],[[5679,6933],[0,3]],[[5679,6936],[0,0]],[[5679,6936],[1,2]],[[5680,6938],[1,3]],[[5681,6941],[0,0]],[[5681,6941],[1,1]],[[5682,6942],[1,2]],[[5683,6944],[1,23]],[[5687,7061],[-4,4],[1,23],[10,8],[1,28],[-5,-5],[2,16]],[[5692,7135],[-27,3]],[[5665,7138],[-2,-12],[-11,-3],[-1,-5]],[[5593,7008],[-2,-31],[2,-13],[-3,-6],[11,-13]],[[5658,6924],[2,0]],[[5660,6924],[1,0]],[[5661,6924],[6,0]],[[5354,6522],[-5,-8],[-7,0],[-5,33],[0,34],[-3,9],[-14,-3],[-9,-7],[-3,29],[6,-2],[-1,15],[4,-4],[4,9]],[[5321,6627],[-7,-2],[-1,20],[-6,-1],[-4,-9],[-14,-1],[-3,19],[-4,-3],[-9,18],[1,-15],[-3,-1]],[[5271,6652],[-6,-10],[1,-22],[14,2],[0,-23],[-10,-2],[-3,8],[-9,0],[3,-12],[-17,-6],[0,-18]],[[5244,6569],[-8,-1],[0,-31],[-3,1]],[[5233,6538],[-4,-14],[9,-18],[7,4],[2,-32]],[[5247,6478],[6,-13],[-3,-9],[9,-9],[12,-1],[3,-8],[9,4],[6,-8],[-1,-15]],[[5288,6419],[9,2],[1,6],[9,3],[1,10],[7,8],[7,1],[6,23],[5,-2],[1,-11],[17,2],[5,11],[11,8],[3,16],[4,3],[-5,22]],[[5427,7050],[7,7],[-1,17],[-5,0],[2,17],[-5,19],[5,2],[-1,-13]],[[5429,7099],[12,10],[-13,8],[-1,9]],[[5427,7126],[-11,-13],[-13,3],[-4,-6]],[[5399,7110],[0,-4],[-9,-3],[-1,-18],[17,-23],[1,-15],[20,3]],[[5311,6371],[-3,-5],[-2,-18],[-17,-37],[6,-8]],[[5295,6303],[5,-9],[-2,-7],[9,-19],[1,-11],[-4,-1],[4,-24],[4,-10],[3,-21],[-7,-1],[2,-24],[12,1],[8,-11]],[[5330,6166],[5,-6]],[[5335,6160],[7,-9],[16,1]],[[5358,6152],[-1,38],[2,5],[-9,5],[1,35],[6,2],[28,-6],[-4,31],[-6,25],[2,7],[13,3],[11,17],[-11,9],[-6,23],[4,30],[-14,6],[-21,-10],[-5,8],[-13,12],[-5,-8],[-6,0],[1,-20],[-14,7]],[[5293,6967],[-2,11],[3,10],[-6,0],[-1,15]],[[5287,7003],[-5,0],[-2,9],[-6,3],[0,10],[-34,-8]],[[5240,7017],[-6,6],[-6,-14],[-12,9],[-5,10],[-2,-8],[-6,6]],[[5203,7026],[-1,-14],[-4,6],[-3,-9],[2,-12],[-6,-11],[6,-14],[-9,-5],[-1,-7],[6,-13]],[[5193,6947],[-5,0],[-2,-9],[-14,4],[2,14],[-6,-17],[5,-15],[-19,6],[-9,-5]],[[5145,6925],[9,-29],[8,-9],[0,-18],[5,-4],[6,-26]],[[5173,6839],[7,5],[6,-14]],[[5393,6821],[3,0],[-5,21]],[[5391,6842],[-8,-2],[-8,8],[1,12]],[[5244,6569],[-12,7],[-4,-10],[-3,9],[-8,0],[-1,19],[5,3],[-2,16],[-8,35],[1,17],[-6,24]],[[5155,6718],[-7,-4]],[[5148,6714],[3,-27],[8,-9]],[[5159,6678],[4,0],[8,-11],[1,-8],[10,-23],[7,-6],[6,4],[0,-13],[11,-31],[2,-21],[4,-6]],[[5212,6563],[4,-19],[11,0],[6,-6]],[[5259,6706],[10,-5],[0,-24],[2,-25]],[[5321,6627],[6,2],[0,11],[7,2],[0,25],[-2,8],[14,2],[0,23],[2,3]],[[5470,6695],[-9,28],[-8,2],[5,9],[2,11],[-4,6],[13,6],[1,12],[10,4],[-14,-1],[4,16],[-6,4],[6,11],[0,27]],[[5470,6830],[-5,0],[-8,-8],[-1,8],[11,6],[-3,16],[6,7],[9,-1]],[[5462,6894],[-4,-11],[-6,-12],[-4,6],[-10,-5],[-4,8],[-9,-1],[-5,8],[-6,-4],[-4,-15],[-12,-5],[4,-17],[-11,-4]],[[5546,6942],[1,28],[-5,8],[1,14],[5,0],[2,14],[8,0],[2,31]],[[5501,7127],[-5,-11],[-4,1],[-5,-12],[7,-9],[-6,-9]],[[5488,7087],[3,-16]],[[5491,7071],[6,-10],[11,-2],[2,-28],[-9,-9],[-17,-4],[0,5]],[[5484,7023],[-9,-7],[5,-21],[-4,0],[2,-14]],[[5570,6284],[6,24],[9,-6],[3,6],[-13,7],[-2,6],[13,-3],[-1,32],[2,18],[6,16],[11,-4],[13,5],[-3,21],[1,10],[-8,-9],[-3,7],[-17,-16],[0,14],[8,16],[-8,1],[-9,7]],[[5479,6421],[-1,-22],[6,-30],[-5,-13],[4,-23],[5,-3],[2,-24],[7,1],[14,-13],[2,-20],[19,2],[4,-13]],[[5536,6263],[13,9],[2,5],[12,-1],[7,8]],[[5288,6419],[0,-17],[-11,-15],[4,-9],[11,-1],[9,-7],[10,1]],[[5358,6152],[17,-8],[15,2],[8,11],[16,-4],[9,4]],[[5423,6157],[-1,7],[18,23],[8,3],[25,-6],[24,6],[5,10],[17,12],[1,16],[12,6],[2,-8],[3,7]],[[5537,6233],[7,4],[-8,26]],[[5640,6557],[5,-9],[17,-14]],[[5714,6546],[9,14],[4,18],[-3,6],[5,13],[-1,8],[6,2],[-5,8]],[[5729,6615],[-5,-4],[-1,23],[-12,1]],[[5711,6635],[-1,1]],[[5710,6636],[2,5],[-10,13]],[[5702,6654],[-22,0],[-4,2],[-12,-7],[0,-12],[-6,-3]],[[5719,6226],[10,11],[7,0]],[[5736,6237],[5,29],[-3,30],[-5,5],[-3,30],[7,0],[-2,13],[-12,5],[1,5],[-13,6],[1,10],[-14,-2],[0,18],[-7,9],[3,6],[-3,15],[7,7],[-9,11],[1,12],[-5,8],[7,5],[4,23]],[[5570,6284],[6,0],[4,16],[11,1],[8,13],[5,-2],[3,-8],[6,5],[-2,12],[6,1],[5,-7]],[[5622,6315],[9,-4],[7,-7],[22,0],[3,-7],[-5,-18],[-4,-2],[8,-17],[0,-12],[5,-17],[6,2],[15,-3],[7,-6],[11,5],[13,-3]],[[5765,6480],[11,-11],[8,3],[3,10],[8,-1],[8,13]],[[5803,6494],[4,6]],[[5807,6500],[-2,2]],[[5805,6502],[-3,23]],[[5802,6525],[0,1]],[[5802,6526],[0,1]],[[5802,6527],[0,1]],[[5802,6528],[0,0]],[[5802,6528],[0,0]],[[5802,6528],[-3,9]],[[5799,6537],[0,1]],[[5799,6538],[0,21],[3,9]],[[5802,6568],[-10,2],[-9,-6],[1,-18],[-12,-8],[1,-10],[-11,-9],[-3,-7]],[[5759,6512],[0,-16],[3,1],[3,-17]],[[5519,6826],[-12,-6],[-9,2],[-1,-8],[-6,6],[0,7],[-8,4],[-10,-10],[2,14],[-5,-5]],[[5491,7071],[-7,3],[4,-10],[-9,3],[-5,-13],[6,-3],[8,-18],[-4,-10]],[[5665,7138],[-21,14],[-2,20],[-2,-28],[-4,7],[-7,-2],[-9,3],[3,-8],[6,-1],[2,-8],[-14,3]],[[5802,6568],[1,6]],[[5803,6574],[-5,14],[-8,-7],[-5,2],[3,9],[-5,15]],[[5783,6607],[-1,3]],[[5782,6610],[3,8],[-4,4],[6,8],[-9,2]],[[5778,6632],[-8,5],[-6,-8],[-14,-1],[-2,4]],[[5748,6632],[-19,-17]],[[5731,6531],[10,7],[1,-8],[13,-7],[4,-11]],[[5466,7085],[-12,5],[-4,8]],[[5450,7098],[-7,-13],[-4,-1],[-3,12],[-7,3]],[[5427,7050],[-2,-7],[1,-18],[3,8],[12,0],[0,12],[11,-3],[3,12],[8,11],[-3,3],[6,17]],[[5467,6970],[-5,5],[-7,-6],[1,14],[-18,1],[-12,14],[0,-9],[-12,-11],[0,-4],[-19,4],[-18,19]],[[5377,6997],[-10,1],[-8,-15],[-6,6],[-6,-3]],[[5347,6986],[3,-19],[-4,-9]],[[5736,6237],[11,11],[3,-2]],[[5750,6246],[1,24],[9,-7],[7,14],[16,19]],[[5783,6296],[4,18]],[[5787,6314],[1,17],[-10,16],[2,31],[-16,-1],[6,16],[4,3],[-12,22],[-3,15],[5,7],[3,17],[-7,7],[0,15],[5,1]],[[5787,6314],[33,-1],[-2,12],[7,23],[12,6],[12,-13],[9,-2],[0,7],[6,2],[10,-9],[3,-9]],[[5877,6330],[0,37]],[[5877,6367],[0,3]],[[5877,6370],[-1,1]],[[5876,6371],[0,0]],[[5876,6371],[0,1]],[[5876,6372],[0,0]],[[5876,6372],[0,1]],[[5876,6373],[0,0]],[[5876,6373],[0,0]],[[5876,6373],[0,1]],[[5876,6374],[0,9]],[[5837,6496],[-2,-1]],[[5835,6495],[-3,-1]],[[5832,6494],[-1,-1]],[[5831,6493],[-1,0]],[[5830,6493],[-5,-1],[-2,-10]],[[5823,6482],[-9,-2]],[[5814,6480],[-3,-2]],[[5811,6478],[-8,16]],[[5488,7087],[-9,-5],[-13,3]],[[5399,7110],[-11,3]],[[5388,7113],[-8,-3],[-11,3],[-5,-7]],[[5364,7106],[3,-16],[-3,-3],[-2,-22],[6,-3],[0,-9],[-5,1],[-5,-11],[1,-20],[18,3],[3,-23],[-3,-6]],[[5836,8806],[0,0]],[[5922,8611],[3,16],[10,1],[-1,16],[12,3],[2,25],[3,7],[-9,10],[4,12]],[[5946,8701],[-16,2],[0,17],[8,12],[21,-6],[1,-6],[8,-2],[4,16],[-5,4],[-3,13],[-10,4],[5,28],[-4,18],[-10,16],[-13,10],[-7,30],[6,4],[-1,19]],[[5930,8880],[-25,-12],[-22,-19],[-6,-9],[-16,-16],[-6,-1],[3,-7],[-10,-1],[0,-11],[6,-4],[-2,-8],[-9,-4],[-7,6],[4,8],[-8,2],[-1,-16],[-13,-19],[-13,-9]],[[5805,8760],[9,1],[2,-7],[9,1],[3,8],[13,-2],[0,-9],[-10,-6],[8,-17],[5,0],[3,-19],[8,-18],[-12,-9],[0,-32],[11,-1],[2,5],[0,-28],[12,-3]],[[5868,8624],[25,-2],[4,-27],[14,-1],[0,12],[5,10],[6,-5]],[[6134,8230],[-5,3],[0,15],[4,-5],[8,2],[6,-4],[4,19],[7,1],[10,8],[6,20],[8,-5],[0,9],[-9,11],[6,12],[0,12],[11,-4],[3,15],[6,8]],[[6199,8347],[0,8],[6,6],[-8,10]],[[6197,8371],[-9,-4],[-17,28],[-19,-7],[-5,2],[-4,-9],[-11,-3],[-7,-7],[-14,-4],[-5,4],[-7,14]],[[6099,8385],[-4,-4],[2,-12],[-17,-13]],[[6080,8356],[6,-17],[3,-21],[6,-34],[-4,-15]],[[6091,8269],[6,-18],[13,1],[8,-12],[-1,-6],[7,-9],[10,5]],[[5622,8041],[9,9],[4,16],[4,-2],[-3,16],[13,-5],[-1,-9],[10,3],[7,6],[3,-12],[9,1],[7,8],[5,-8],[16,-1]],[[5705,8063],[-3,15],[5,8]],[[5707,8086],[-9,9],[-1,8],[-7,-6],[-6,-16],[-7,3],[-2,18],[-6,-4],[-3,11],[-6,-1],[7,26],[6,16],[2,15],[-8,22],[0,11],[-4,1],[-5,12],[-9,3],[1,21],[-3,3],[0,23],[-4,12],[-4,34],[2,13],[10,19],[5,21],[-1,21]],[[5655,8381],[-10,13],[0,7],[-7,6],[-9,1],[-1,-6],[-10,-1],[0,-12],[-13,-14],[-22,-11],[-13,9],[-22,-24]],[[5548,8349],[-2,-10],[-11,-6],[1,-18],[-3,-4],[7,-17],[0,-10],[13,-21],[0,-6],[10,-6],[14,-17],[0,-23],[4,-10],[1,-58],[-2,-11],[13,2],[2,-11],[6,-3],[16,-19],[-9,-27],[3,-35]],[[5611,8039],[5,7],[6,-5]],[[6333,8442],[4,7],[2,15],[-6,3]],[[6333,8467],[-1,8],[8,33],[7,34],[-5,1],[-5,13],[-1,15]],[[6336,8571],[6,15],[19,-3],[13,18],[-1,13],[-4,3]],[[6369,8617],[-4,-6],[-7,2],[-6,13]],[[6352,8626],[-2,1],[-1,-29],[-12,-3],[-11,-7],[0,-15],[-14,-5],[1,-16],[-14,-5],[0,-9],[-8,-5],[-3,-10]],[[6288,8523],[5,-5],[-4,-7],[1,-26],[8,-10],[0,-16],[-4,-22]],[[6294,8437],[4,-14]],[[6298,8423],[5,2],[7,-8],[1,6],[-6,6],[7,15],[7,-4],[4,11],[10,-9]],[[6289,8359],[3,25]],[[6292,8384],[-10,8],[4,23]],[[6286,8415],[-4,4],[-10,-13],[3,-7],[-12,-9],[-2,-6],[4,-10],[-6,-19]],[[6259,8355],[11,-5],[1,3],[12,-7]],[[6283,8346],[1,11],[5,2]],[[5837,8078],[8,-3],[6,6],[-2,28],[0,25],[-5,9],[1,24],[-2,37]],[[5843,8204],[-7,17],[-7,0],[-6,-12],[-15,8],[0,-10],[-8,8],[-4,-8],[-6,2],[4,-13],[5,5],[-1,-22],[2,-8],[-10,0],[-2,8],[6,3],[0,8],[-8,7],[-8,-2],[-4,-17]],[[5774,8178],[0,-16],[6,0],[0,-14],[-9,0],[-1,-16]],[[5770,8132],[8,-1],[-1,-50]],[[5777,8081],[19,-8],[2,-9],[9,0],[11,3],[-1,-9],[6,6],[8,3],[1,10],[-11,-3],[-12,9],[-8,-3],[4,18],[6,4],[3,-11],[6,1],[1,9],[11,-7],[5,-16]],[[5787,7996],[2,6],[-6,6],[0,8],[-6,22],[11,6],[-7,17],[-4,20]],[[5770,8132],[-10,-13],[-4,12],[-14,16],[-8,0],[-7,-10],[-6,0],[-1,-17],[-9,-8],[7,-17],[-8,-3],[-3,-6]],[[5705,8063],[5,-20],[-3,-1],[3,-17],[-5,-3]],[[5705,8022],[6,-11],[-1,-14],[6,2],[-1,-11]],[[5715,7988],[7,3],[0,-17],[2,-11],[8,6],[3,-7]],[[5735,7962],[3,10],[5,2],[3,-14],[6,8],[0,18],[6,8],[7,-7],[7,12],[0,8],[9,4],[-3,-17],[9,2]],[[6159,8102],[7,20]],[[6166,8122],[-6,-2],[-5,6],[-4,27],[-4,-3],[-13,7],[-1,7],[-8,-5],[0,-15],[8,-4],[3,-9],[-12,-5],[-13,14],[4,-18],[-7,-3],[-4,7],[-12,11],[-8,17],[4,5],[0,28],[-4,3],[-16,-26],[-4,6]],[[6064,8170],[-6,-2],[-5,-17],[-4,-1],[1,-20],[12,-7],[-6,-7],[1,-19],[6,-5],[-1,-14],[6,-12],[17,1],[0,-4],[18,1],[2,-7]],[[6105,8057],[7,-11],[4,1],[0,13],[9,-2],[-3,31],[14,0],[23,13]],[[6276,8540],[5,7],[-6,3],[-2,8],[-5,4],[1,22],[-7,7],[1,16],[-5,-6],[-7,15],[-8,4]],[[6243,8620],[-5,-20],[3,-37],[8,2],[-5,-12],[-12,-4],[7,-9]],[[6239,8540],[3,-5]],[[6242,8535],[4,8],[6,-4],[24,1]],[[6197,8371],[-2,33],[-12,9],[3,23]],[[6186,8436],[-13,18],[15,9]],[[6188,8463],[-1,12],[3,8],[-3,9],[-18,20],[-6,1],[-4,15]],[[6159,8528],[-10,8],[-5,26],[-15,-1],[-6,-4]],[[6123,8557],[3,-19],[7,-6],[3,-12]],[[6136,8520],[1,-17]],[[6137,8503],[20,-22],[0,-16],[-7,-12],[-16,-18],[-12,-9],[-10,-25],[-14,2],[1,-18]],[[5746,8454],[4,12],[14,8]],[[5764,8474],[-7,29],[16,25],[-35,29],[3,8],[-5,36],[-8,18],[9,10],[-8,6],[-12,0],[-2,20],[-4,10],[0,16]],[[5711,8681],[-16,-5],[1,-12],[-9,0],[0,-18],[-30,-16],[-5,-10],[-5,10],[-10,-5]],[[5637,8625],[5,-14],[1,-22],[-5,-8],[3,-5],[8,7],[0,-15],[4,-4],[0,-13],[-5,-9],[8,-34],[6,-14],[-10,-2],[2,-8],[-3,-23],[9,-8],[-5,-18],[3,-16]],[[5658,8419],[23,7],[43,25],[7,6],[15,-3]],[[6064,8636],[13,10],[20,8],[1,6],[18,5],[5,17],[8,-4],[3,6],[-7,8],[11,9],[1,10],[10,4]],[[6147,8715],[5,17],[17,24],[-11,19],[-22,46]],[[6136,8821],[-4,10],[-4,-12],[-5,1],[1,9],[-23,6],[-6,-3]],[[6095,8832],[-5,-3],[-10,3],[1,-6],[-11,1],[-1,-4]],[[6069,8823],[-3,-17],[4,-19],[1,-76],[-5,-15],[-11,7],[-13,-5],[-4,-14],[5,-9],[-3,-36]],[[6040,8639],[19,-15],[5,12]],[[6264,8822],[2,6],[14,-2],[1,15],[5,13],[-7,26],[-4,8],[7,-2],[-2,14]],[[6280,8900],[-1,13],[5,17]],[[6284,8930],[-6,9],[-11,1],[1,7],[-7,5],[1,14],[-10,-1],[-7,6],[-5,-11]],[[6240,8960],[21,-14],[-15,-41],[-8,-9],[-11,-2]],[[6227,8894],[2,-20],[-6,-27]],[[6223,8847],[1,-7],[14,-1],[0,-17],[12,-5],[0,5],[14,0]],[[5711,8681],[6,19],[8,3],[9,8],[1,9]],[[5735,8720],[-70,-42],[-14,-6],[-17,-11],[-21,-11]],[[5613,8650],[0,-4],[22,10],[6,-9],[-12,-15],[8,-7]],[[5989,7893],[5,3],[5,16],[4,3]],[[6003,7915],[5,11],[1,17],[9,-11],[0,14],[19,5]],[[6037,7951],[-14,12],[4,9],[-5,2],[-10,-2],[-4,-6],[-3,10],[-9,3],[-2,14],[-8,4]],[[5986,7997],[-8,-14],[-16,0],[-5,-10]],[[5957,7973],[2,-14],[8,-13],[0,-14],[4,-4],[-6,-22],[11,-16],[13,3]],[[5333,7932],[-5,9],[-7,27],[8,14],[5,-2],[1,10],[7,7],[6,21],[3,6],[-7,8],[5,10],[-13,5],[-1,11],[12,3],[8,17],[11,2],[8,15],[11,11]],[[5385,8106],[1,11],[-10,11],[4,22],[-5,7]],[[5375,8157],[-11,18],[-13,4],[6,14],[-14,9],[-8,-3]],[[5335,8199],[-8,-4],[-10,-11],[-13,4],[-11,-3],[-2,10],[-4,-5],[1,-12],[-12,-14],[-6,-14],[-1,7],[-8,-1],[-2,-8],[-12,-6],[-1,8],[-10,-6],[-15,-19],[-9,-5],[-5,-14],[9,-15],[15,-8],[1,-13],[-11,-7],[-15,-4]],[[5206,8059],[2,-15],[5,8],[6,0],[-6,-10],[6,-3],[-2,-23],[3,-14],[-4,-16],[-5,-6],[4,-20],[5,-6],[-9,-19],[2,-29],[8,-11]],[[5221,7895],[8,-13],[18,-11],[13,-4],[7,2],[3,10],[10,-6],[15,0],[5,12],[6,29],[12,7],[4,7],[11,4]],[[5923,8033],[2,14],[-2,8],[-8,-3],[0,12],[4,6],[5,-10],[14,-8],[0,18],[-5,3],[-8,13],[-7,-3],[-4,15],[-6,3],[4,14],[-6,11],[-8,-7],[-2,15],[6,17],[-1,19],[4,9],[12,3],[7,32]],[[5924,8214],[-1,2]],[[5923,8216],[-12,-6],[-4,2],[-12,-12],[-7,2],[-7,-15],[-11,3],[0,11]],[[5870,8201],[-12,-6],[-4,-13],[3,-6],[8,8],[4,-10],[2,-18],[0,-33],[16,-32],[-5,0],[12,-21],[3,-9],[-5,-11],[0,-15],[-4,-8]],[[5888,8027],[9,-2],[1,-6],[11,-1],[5,11],[9,4]],[[6168,8885],[2,15]],[[6170,8900],[5,6],[4,23],[-1,16],[3,3]],[[6181,8948],[-10,3],[-3,10],[-17,-3],[-22,-14],[-32,-17]],[[6097,8927],[10,-1],[0,-11],[-8,-11]],[[6099,8904],[6,-15],[9,9],[16,1],[15,-7],[7,-11],[-7,-15],[13,-3],[-2,28],[12,-6]],[[6166,8122],[3,6],[-4,12]],[[6165,8140],[-2,19]],[[6163,8159],[-7,5],[-3,14],[5,20],[-6,11],[9,20],[-10,-2],[-7,5],[0,-15],[-10,13]],[[6091,8269],[-9,10],[-30,-14]],[[6052,8265],[-3,-27]],[[6049,8238],[13,-26],[-7,-27],[8,-3],[1,-12]],[[6228,8463],[2,21],[8,-2],[8,10],[3,21],[5,10],[-12,12]],[[6239,8540],[-6,-4],[-18,0]],[[6215,8536],[-13,-4],[-6,3]],[[6196,8535],[3,-30],[5,-16],[-7,-31],[-9,5]],[[6186,8436],[6,-6],[21,10],[9,2],[9,11],[-3,10]],[[5791,8503],[4,14],[18,37],[5,5],[3,20],[10,4],[5,-12],[13,4],[3,-7],[6,1],[-5,17],[2,9],[13,29]],[[5805,8760],[-17,-11],[-19,-7],[-34,-22]],[[5764,8474],[6,2],[10,16],[4,13],[7,-2]],[[5547,7940],[8,-5],[6,23],[13,5],[7,16],[1,-9],[7,3],[2,13]],[[5591,7986],[-5,4],[-2,15],[6,17],[4,-9],[7,-5],[11,23],[-1,8]],[[5548,8349],[-18,4]],[[5530,8353],[-15,-22],[-13,-9],[-10,-26],[-18,9],[2,19],[-14,7],[-6,8],[-5,-22],[-9,-52],[4,-13],[-6,-7],[8,-5],[-20,-8]],[[5428,8232],[-1,-16],[-5,-1],[1,-23],[3,-3],[-11,-8],[0,-13],[-12,6],[-9,-13],[-19,-4]],[[5385,8106],[9,6],[9,-6],[4,6],[4,-11],[5,-1],[-4,9],[8,-6],[10,14],[4,-5],[10,8],[26,10],[9,-27],[0,-15],[12,-15],[5,2],[5,-36],[-3,-14],[11,-10],[-2,-13],[4,-8],[-2,-25],[6,-3],[1,-11]],[[5516,7955],[2,-14],[6,5],[7,-17],[6,9],[10,2]],[[6312,8952],[5,17],[-1,7],[10,4],[-1,8]],[[6325,8988],[1,17],[-4,11]],[[6322,9016],[-10,23]],[[6312,9039],[-13,-3],[-10,2],[-7,9],[-10,2],[-5,9],[-4,14]],[[6263,9072],[-4,-12],[-9,-16],[-26,-40],[-6,-6],[-8,-19]],[[6210,8979],[9,-8],[9,1]],[[6228,8972],[2,-8],[10,-4]],[[6284,8930],[2,-2],[9,10],[17,14]],[[6254,8341],[-17,14],[-27,8],[1,8],[-3,20],[-9,1],[-2,-21]],[[6199,8347],[3,-11],[8,-2],[7,-27],[-6,-5],[15,-22],[20,-15]],[[6246,8265],[-1,29],[3,11],[0,20],[6,16]],[[6099,8904],[-5,-20],[5,-14],[10,-11],[-14,-27]],[[6136,8821],[7,-4],[2,16],[20,3],[0,12],[12,6],[-4,16],[1,11],[-6,4]],[[5870,8201],[1,11],[0,26],[-8,5]],[[5863,8243],[1,-10],[-9,2],[-5,-12],[1,-22],[-8,3]],[[5837,8078],[2,-9],[5,3],[3,-12],[6,4],[5,19],[12,-22],[0,-11],[-4,-1],[2,-14],[15,-13],[5,5]],[[5637,7744],[14,11],[0,16],[11,-2],[2,6],[7,0],[3,11]],[[5674,7786],[-5,8],[-5,28],[-8,4],[-3,25],[4,11]],[[5657,7862],[1,7],[-6,41],[-5,2],[-4,11],[6,15],[-8,27],[-2,-2],[-8,17]],[[5631,7980],[-10,-9]],[[5621,7971],[-13,-12],[-3,-11],[-14,-11],[-15,-22],[-4,0],[-7,-22],[5,-42],[-3,0],[-2,-23],[-6,-1],[4,-24],[-6,-5],[-2,-24],[5,-7],[-3,-13]],[[5557,7754],[3,-14],[5,-8],[12,9],[8,13],[-1,16],[7,-4],[0,-8],[13,-17],[0,-9],[7,0],[2,-11]],[[5613,7721],[7,12],[17,11]],[[6137,8503],[5,-13],[-4,-14],[1,-4],[-7,-12],[-3,-14],[-8,5],[-4,-6],[-7,17],[-4,1],[2,16],[-1,28],[14,-1],[4,10],[11,4]],[[6123,8557],[-4,3]],[[6119,8560],[-9,-21],[-3,-2],[-5,-20],[2,-4],[-7,-19],[-13,-3],[-6,-14],[-11,7],[-9,-2],[-8,-11],[1,-12],[-9,-8],[-10,8]],[[6032,8459],[2,-19]],[[6034,8440],[4,-26],[-3,-11],[2,-16],[-3,-15]],[[6034,8372],[11,-1],[8,6],[11,-14],[16,-7]],[[5975,8404],[10,16],[-1,10],[6,1],[2,14],[8,3],[-6,9]],[[5994,8457],[2,7],[-10,0],[1,22],[-5,4],[3,7],[-2,13],[-6,12],[4,5],[-8,11],[0,14],[5,23],[-1,8]],[[5977,8583],[-3,1],[1,25],[-13,3],[-1,-8],[-9,12],[-7,-7],[-13,-6],[-3,-5],[-7,13]],[[5791,8503],[-3,-4],[3,-18],[8,-4],[4,-15],[15,2],[6,-15],[17,1],[-2,-21]],[[5839,8429],[9,-3],[4,-6],[-2,28],[6,21],[16,-7],[17,-23],[1,-17],[8,-4],[6,4],[2,-17],[10,3],[7,-7]],[[5923,8401],[12,1],[-1,-4],[14,1],[16,-4],[11,9]],[[6097,8927],[-48,-21]],[[6049,8906],[8,-11],[1,-27],[0,-36],[3,-3]],[[6061,8829],[8,-6]],[[5735,7962],[15,-17],[6,-16],[5,2],[3,-10],[14,-8],[5,-13]],[[5783,7900],[2,15],[11,14],[-1,6],[10,0],[0,14],[-9,0],[4,9],[-2,8],[4,10],[-10,1],[0,11],[-6,0],[1,8]],[[5863,8243],[4,4],[-2,27],[3,9],[-4,11]],[[5864,8294],[-13,14],[1,9],[-8,2],[-2,15],[-4,2],[7,14],[-6,-3],[-9,5],[-7,14],[4,10],[8,-1],[-14,13],[0,23],[10,19],[8,-1]],[[5746,8454],[-8,-14],[4,-8],[-4,-34],[16,-7],[8,11],[2,-18],[-6,-20],[4,-39],[0,-20],[-5,-23],[8,-12],[-8,-19],[-2,-47],[-6,-15],[25,-11]],[[6289,8301],[-8,10],[3,19],[-1,16]],[[6259,8355],[-5,-14]],[[6246,8265],[-4,-10]],[[6242,8255],[9,-11],[8,1],[-2,-8],[7,-6],[-1,-7],[10,1],[0,-14],[13,-8],[-1,27],[-5,4],[-1,10],[-12,3],[0,11],[5,14],[0,15],[14,7],[3,7]],[[6101,8014],[2,19],[-1,13],[3,11]],[[6049,8238],[-7,-8],[-13,-4],[-12,8],[-8,-7]],[[6009,8227],[-1,-26],[3,-19],[6,-18],[-1,-21],[5,-24],[-9,-2],[3,-6],[-18,-5],[-1,-8],[9,-6],[-4,-8],[3,-25],[-3,-9],[-7,-4],[-2,-13],[3,-12],[5,7],[5,-10],[-19,-2]],[[5986,8016],[0,-19]],[[6037,7951],[21,-2]],[[6058,7949],[-1,5],[9,12],[-1,-9]],[[6065,7957],[0,-5]],[[6065,7952],[1,0]],[[6066,7952],[8,-9],[6,3],[2,19],[6,4],[2,8],[7,6],[4,11],[0,20]],[[5986,8016],[-8,3],[3,8],[-6,6],[-13,-1],[3,14],[-1,13],[5,5],[0,14],[-7,6],[-12,2],[-4,11],[-9,1],[-2,8],[3,10],[-2,10],[6,4],[-6,6],[3,4],[-10,11],[3,6],[-8,19],[-2,13],[11,18],[-9,7]],[[5923,8033],[5,-6],[-3,-12],[-8,-4],[2,-15]],[[5919,7996],[10,5],[7,-16],[8,3],[2,-14],[3,2],[3,-14],[5,11]],[[6293,8777],[-9,10],[-1,23],[6,-8],[17,17]],[[6306,8819],[-6,10],[3,11],[-6,15],[-3,0],[0,19],[-4,7],[-5,-3],[1,13],[-6,9]],[[6264,8822],[5,-9],[-10,1],[-2,-21],[7,-2],[7,-32]],[[6271,8759],[10,7],[10,-2],[2,13]],[[5901,7972],[-14,18],[-6,1],[-5,-8],[-2,10],[-8,-17],[0,-18],[-8,1]],[[5858,7959],[-3,-19],[7,-12],[2,-14],[8,-4],[2,-9],[8,-3]],[[5882,7898],[12,9],[10,38],[-7,23],[4,4]],[[5284,8359],[0,0]],[[5428,8232],[-11,-7],[5,29],[-9,8],[7,13],[-3,10],[-9,-3],[-4,17],[3,9],[-8,-1],[-12,-20],[-14,21],[-2,12],[4,2],[2,22],[-14,-3],[12,12],[-4,24],[6,3],[-4,7],[-1,16],[-5,5],[1,10],[-17,5]],[[5351,8423],[-1,-8],[-13,-21],[-9,-7],[-9,1],[-12,-10],[-4,3],[-1,-11],[-15,-6],[0,-19],[-10,-23],[-11,-14]],[[5266,8308],[5,-10],[6,7],[13,-18],[-6,-7],[21,0],[18,5],[6,-8],[-7,-9],[-1,6],[-6,-14],[1,-22],[-5,0],[1,-9],[13,9],[9,-5],[1,-34]],[[6021,8628],[2,3]],[[6023,8631],[1,14],[-5,13],[2,14],[4,12],[-8,-2],[0,-8],[-12,-15],[-32,-12],[5,33]],[[5978,8680],[-13,18],[-7,3],[-12,0]],[[5977,8583],[9,3],[-2,7],[6,1],[10,17],[5,0],[4,21],[12,-4]],[[5864,8294],[7,13],[-2,13],[7,5],[-1,14],[12,3],[11,-3],[1,-4],[16,-1],[1,29],[12,-3],[-5,41]],[[6243,8620],[10,25],[-1,14],[4,9]],[[6256,8668],[-14,-22],[-6,15],[-19,-7],[-5,5],[-14,23],[10,-4],[10,35],[-2,9]],[[6216,8722],[-3,8],[1,30],[-14,-16],[-9,-36],[-8,-8],[2,-10],[7,-1],[-8,-22]],[[6184,8667],[2,-12],[-3,-7],[3,-15],[5,-3],[8,-20],[7,-6],[0,-11],[6,-4],[2,-22],[9,-10],[-8,-21]],[[6052,8265],[-6,51],[-8,5],[0,27],[-6,-1],[2,25]],[[6034,8372],[-15,-6],[-2,-13],[-9,4],[-6,-4],[-7,-26]],[[5995,8327],[4,-7],[-4,-16],[0,-16],[-9,-22],[-13,-3],[-4,-6],[-18,9],[-6,-3],[1,-28],[11,-8]],[[5957,8227],[5,3],[2,-17],[7,8],[7,4],[-1,-14],[7,9],[11,-11],[4,14],[10,4]],[[6352,8626],[7,12],[-4,12],[-6,1],[3,19],[16,9],[1,14],[-9,2],[-5,-7],[-7,9]],[[6348,8697],[-2,-22],[1,-11],[-13,-21],[-21,-8],[0,-4],[-10,-18],[0,-9],[9,-10],[-22,-26],[-5,-8],[-17,33],[3,28],[1,66],[7,25],[6,8],[6,-1],[17,14]],[[6308,8733],[-1,10],[4,15],[-2,11],[-7,-3],[1,-12],[-6,-2],[1,21],[-5,4]],[[6271,8759],[-12,-1],[5,-27],[5,-5]],[[6269,8726],[4,-12],[-10,-25],[-6,-2],[-1,-19]],[[6276,8540],[3,0],[2,-17],[7,0]],[[6032,8459],[-7,29],[4,4],[-8,20],[4,15],[0,25],[11,10],[6,-1],[-11,10],[1,16],[-9,15],[4,12],[-6,14]],[[5994,8457],[3,9],[17,-6],[3,-7],[12,-5],[5,-8]],[[6233,8225],[4,4],[-1,16],[6,10]],[[6163,8159],[18,-3],[11,3],[1,5],[12,1],[-9,14],[-8,-3],[-7,6],[15,13],[10,4],[27,26]],[[6356,8830],[2,16],[7,11],[-7,7],[5,4]],[[6363,8868],[-3,19],[4,0],[1,15],[5,12],[7,-1],[-4,18]],[[6373,8931],[-1,-2],[-20,17],[-7,0]],[[6345,8946],[1,-6],[-8,0]],[[6338,8940],[-8,6],[-18,6]],[[6306,8819],[14,10],[12,0],[7,14],[8,4],[3,-18],[6,1]],[[5874,7851],[6,17]],[[5880,7868],[-1,16],[5,-5],[-2,19]],[[5858,7959],[-20,-27],[-7,9],[4,8],[-7,7],[2,15],[-9,-8],[4,-9],[-7,-26],[-3,-4],[7,-18],[-4,-8]],[[5818,7898],[7,-20]],[[5825,7878],[9,-5],[8,-11],[8,2],[15,-5],[1,-8],[8,0]],[[5530,8353],[-8,38],[7,1],[-6,9],[-1,16],[-13,-2],[-9,-10],[-7,29],[7,24],[-16,11],[-6,12],[4,11],[1,15],[-8,6],[-1,17],[-8,13]],[[5466,8543],[-13,-18],[-14,-14],[-4,-11],[-15,-16],[-19,-14],[-16,-8],[-35,-25],[1,-14]],[[5938,7803],[0,8],[10,11],[6,1],[11,-14]],[[5965,7809],[3,7]],[[5968,7816],[1,3]],[[5969,7819],[0,1]],[[5969,7820],[0,0]],[[5969,7820],[1,3]],[[5970,7823],[0,0]],[[5970,7823],[1,5]],[[5971,7828],[-4,9],[0,11],[-15,-3]],[[5952,7845],[-8,-12],[-7,11],[-9,-1],[-8,-18],[-5,8],[-6,-2],[-1,-11],[-12,-3],[-7,-17]],[[5889,7800],[12,2],[2,7],[7,0],[-12,-25]],[[5898,7784],[4,-9]],[[5902,7775],[12,8],[7,23],[4,2],[0,-9],[13,4]],[[5631,7980],[4,3],[-4,18],[7,1]],[[5638,8002],[-3,12],[-7,-12],[-2,20],[2,10],[-6,9]],[[5591,7986],[2,8],[11,13],[0,-10],[11,-7],[6,-19]],[[6119,8560],[-5,28],[-21,25],[-8,-2],[-15,3],[-5,6],[-1,16]],[[6040,8639],[-5,2],[-12,-10]],[[6216,8722],[10,5],[5,-4],[4,7],[23,-17],[7,2],[4,11]],[[6223,8847],[-1,-3],[-30,18],[5,9],[-19,25],[-8,4]],[[6147,8715],[2,-18],[6,-8],[0,-11],[5,-3]],[[6160,8675],[1,3],[22,-8],[1,-3]],[[6049,8906],[-32,-13],[-43,-13],[-31,-3],[-13,3]],[[5978,8680],[8,7],[-4,19],[6,7],[6,-1],[-3,11],[5,8],[8,4],[-4,11],[-10,-1],[-1,13],[5,10],[8,2],[-1,-14],[17,11],[7,19],[6,-10],[8,8],[3,20],[14,9],[5,16]],[[5658,8419],[2,-25],[-5,-13]],[[5976,7850],[2,8]],[[5978,7858],[0,3]],[[5978,7861],[0,1]],[[5978,7862],[0,3]],[[5978,7865],[4,0]],[[5982,7865],[0,0]],[[5982,7865],[1,10],[7,3],[-1,15]],[[5919,7996],[-10,-10],[2,-10],[-10,-4]],[[5880,7868],[3,-6],[6,3],[14,-3],[8,9],[0,11],[12,-11],[4,13],[7,-3],[0,-12],[12,-4],[6,-8],[0,-12]],[[5971,7828],[5,22]],[[5613,8650],[-23,-9],[-19,-14],[-39,-23],[-17,-7],[-20,-14],[-7,-1],[-14,-12],[1,-13],[-9,-14]],[[5783,7900],[2,-22]],[[5785,7878],[1,3],[14,-10]],[[5800,7871],[10,19],[8,8]],[[5957,8227],[4,-15],[9,1],[-1,-10],[10,-8],[-1,-20],[-6,-4],[-5,14],[1,8],[-9,8],[-2,8],[-15,-2],[-3,19],[-5,-5],[-9,6],[-2,-11]],[[5874,7851],[4,-23],[6,-6],[-1,-9],[6,-13]],[[5975,8404],[2,-21],[4,-12],[1,-27],[5,-14],[8,-3]],[[6369,8617],[-1,32],[11,4]],[[6379,8653],[27,18]],[[6406,8671],[6,9]],[[6412,8680],[5,15],[-6,19],[-22,-10],[0,9],[-13,4],[-8,-5],[-4,4],[5,15],[-8,7],[-1,13],[5,6],[14,0],[1,6],[13,19],[-2,12],[-25,-1],[-6,6],[-1,24],[-3,7]],[[6308,8733],[5,8],[18,-9],[16,-24],[1,-11]],[[6160,8675],[11,-9],[0,-22],[-5,-10]],[[6166,8634],[-1,-38],[6,-10],[11,-7],[-4,-3],[1,-15],[9,-19],[8,-1],[0,-6]],[[5671,7873],[-6,20],[6,28],[11,-17],[7,6],[4,18],[-6,21],[-3,16],[9,1],[5,13],[12,17],[5,-8]],[[5705,8022],[-7,-7],[0,7],[-11,9],[-8,-3],[-5,-9],[-6,8],[-5,-3],[0,-22],[-5,9],[-9,-9],[0,17],[-8,-3],[-3,-14]],[[5657,7862],[10,0],[4,11]],[[6319,8397],[15,38]],[[6334,8435],[-1,7]],[[6298,8423],[-2,-7],[-10,-1]],[[6292,8384],[4,-3],[12,18],[11,-2]],[[6294,8437],[-2,11],[-6,1],[0,-9],[-20,20],[4,3],[-4,16],[4,5],[8,-8],[3,15],[-3,7],[2,10],[8,4],[-12,15],[0,8],[-7,-1],[2,-7],[-3,-15],[8,-17],[-13,-2],[-7,6],[-8,-7],[3,-14],[12,-1],[-7,-5],[2,-21],[-5,-2],[-5,12],[-5,3],[-15,-1]],[[5266,8308],[-11,-10],[0,-9],[-7,-9],[-3,-18],[-13,-18],[-15,-9],[0,-3],[-28,-25],[-22,-11],[-22,2],[-12,23]],[[5133,8221],[0,-15],[-13,-13],[-2,-11],[2,-12],[-2,-14],[3,-27],[-2,-3],[6,-14],[0,-10],[9,-13]],[[5134,8089],[24,-2],[5,-7],[6,3],[15,-5],[-1,-11],[16,0],[7,-8]],[[6284,8193],[2,6],[10,-6],[6,6],[-2,10],[4,14],[-5,7],[5,30]],[[6304,8260],[0,14],[-15,27]],[[6233,8225],[20,-22]],[[6253,8203],[18,-1],[1,-9],[12,0]],[[6430,8705],[-2,1]],[[6428,8706],[-9,-5],[-5,10],[-8,20]],[[6406,8731],[-3,5],[3,19],[4,3],[2,17]],[[6412,8775],[2,19],[-4,18],[-4,7],[-2,21],[-9,2]],[[6395,8842],[3,10],[-5,8],[-11,2],[-9,11],[1,-8],[-11,3]],[[6412,8680],[3,1]],[[6415,8681],[20,13],[-5,11]],[[6166,8634],[-7,-9],[-11,2],[-3,-13],[7,-4],[-8,-7],[-1,-18],[15,6],[7,-24],[12,-9],[-4,-5],[-1,-14],[-6,-10],[-7,-1]],[[5333,7932],[6,-1]],[[5339,7931],[8,-4],[12,1],[4,-10],[14,8],[0,-12],[20,-5],[6,-8],[1,6],[21,0],[5,10],[10,-2],[7,5],[17,3],[5,-6],[19,-7],[1,19],[5,0],[9,12],[-1,13],[6,-5],[8,6]],[[6227,8894],[-12,-3],[-19,11],[-7,13],[2,21],[7,16],[7,-10],[16,15],[7,15]],[[6210,8979],[-17,-32],[-12,1]],[[6290,6950],[3,2]],[[6293,6952],[10,4]],[[6303,6956],[6,3]],[[6309,6959],[3,2]],[[6312,6961],[0,11],[-4,6],[4,33],[11,8]],[[6323,7019],[-5,24],[3,11],[-5,8],[-6,-5],[-12,14],[-8,17],[-4,1]],[[6286,7089],[-13,-13]],[[6273,7076],[7,-8],[2,-14],[4,-6],[-1,-15],[6,-7],[-5,-14],[4,-14],[-10,-26],[2,-11],[8,-11]],[[6356,7015],[5,-1],[4,-10],[7,0],[5,-12]],[[6377,6992],[12,12],[2,8]],[[6391,7012],[-2,7],[8,10],[0,7]],[[6397,7036],[-1,12],[9,6],[-4,11]],[[6401,7065],[0,0]],[[6401,7065],[-1,0]],[[6400,7065],[0,0]],[[6400,7065],[-1,0]],[[6399,7065],[0,-1]],[[6399,7064],[-1,0]],[[6398,7064],[0,0]],[[6398,7064],[0,1]],[[6398,7065],[0,0]],[[6398,7065],[0,0]],[[6398,7065],[0,0]],[[6398,7065],[0,0]],[[6398,7065],[0,0]],[[6398,7065],[0,2]],[[6398,7067],[0,0]],[[6398,7067],[0,0]],[[6398,7067],[0,0]],[[6398,7067],[0,0]],[[6398,7067],[0,0]],[[6398,7067],[-1,1]],[[6397,7068],[0,0]],[[6397,7068],[0,0]],[[6397,7068],[0,0]],[[6397,7068],[0,0]],[[6397,7068],[0,2]],[[6397,7070],[0,0]],[[6397,7070],[0,0]],[[6397,7070],[0,1]],[[6397,7071],[0,0]],[[6397,7071],[0,0]],[[6397,7071],[0,0]],[[6397,7071],[0,0]],[[6397,7071],[1,0]],[[6398,7071],[0,0]],[[6398,7071],[0,0]],[[6398,7071],[0,0]],[[6398,7071],[-1,0]],[[6397,7071],[0,2]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[-1,0]],[[6396,7073],[0,0]],[[6396,7073],[0,0]],[[6396,7073],[0,1]],[[6396,7074],[0,0]],[[6396,7074],[-1,0]],[[6395,7074],[-2,0]],[[6393,7074],[0,0]],[[6393,7074],[-5,11]],[[6388,7085],[-9,4],[-4,-4],[-7,8],[-7,-9],[-10,5],[2,-10]],[[6353,7079],[7,-8],[-2,-18],[-13,-27],[6,-6]],[[6351,7020],[5,-5]],[[6179,6922],[7,14],[-2,14],[-6,8],[12,6],[-4,10]],[[6186,6974],[-7,14],[2,10]],[[6181,6998],[-11,0],[-7,-9],[2,-17],[-21,19],[-3,10],[0,27],[-2,5]],[[6139,7033],[-7,-3]],[[6132,7030],[-7,0]],[[6125,7030],[4,-4],[-4,-39],[0,-17],[13,-7],[-3,-21]],[[6135,6942],[4,0],[0,14],[5,-6],[8,-1],[-4,-18],[4,-16],[-2,-7],[2,-11]],[[6152,6897],[6,8],[15,8],[3,-5],[3,14]],[[6293,6952],[15,-28],[8,-9]],[[6316,6915],[10,1],[11,-9],[1,-6]],[[6338,6901],[6,10],[-4,21],[-8,23]],[[6332,6955],[-1,9],[-9,3],[-10,-6]],[[6309,6959],[-6,-3]],[[6110,7030],[9,4],[6,-4]],[[6132,7030],[-2,17],[-8,-1],[-3,11],[3,7],[-5,12],[3,17],[-8,-3],[-3,3],[-10,-3],[0,31]],[[6099,7121],[-5,-9],[-9,3]],[[6085,7115],[-8,1]],[[6077,7116],[-2,-4]],[[6075,7112],[1,-5],[-12,-12],[4,-13]],[[6068,7082],[6,14],[4,0],[5,-32],[6,-10],[-22,-4]],[[6067,7050],[11,-24]],[[6078,7026],[11,6],[3,-6],[18,4]],[[6030,6873],[2,15],[-4,3],[3,22]],[[6031,6913],[1,15],[-2,19],[-4,3],[-3,14],[-8,2]],[[6015,6966],[-2,-16],[-7,-1],[-8,10],[-13,-1],[-20,-6],[-10,4]],[[5955,6956],[-1,-25],[4,-2],[1,-26],[5,1],[-1,-13],[-4,-4],[2,-10]],[[5961,6877],[13,-11]],[[5974,6866],[7,3],[4,-9],[21,0],[13,6],[3,22],[8,-15]],[[6348,7211],[5,3],[6,25],[4,10],[13,6],[0,12],[-7,3],[-12,10]],[[6357,7280],[-18,-5],[-6,3],[3,20],[-14,30]],[[6322,7328],[-16,-10],[-7,0],[13,-17],[-5,-10],[-8,1],[-1,-12],[12,-13],[5,-15],[9,-7],[-1,-9],[8,-12],[6,4],[11,-17]],[[6338,7208],[10,3]],[[6322,7328],[-5,9]],[[6317,7337],[-9,-3]],[[6308,7334],[-25,5]],[[6283,7339],[-10,3],[-4,-17]],[[6269,7325],[2,-14],[-10,-17]],[[6261,7294],[2,-15],[6,4],[-1,-19],[13,-8],[2,-7],[11,-13],[8,-2],[14,-16],[0,-10]],[[6316,7208],[12,-3],[8,8],[2,-5]],[[6181,6998],[-3,11],[0,16],[-4,23]],[[6174,7048],[-11,-1],[-24,-14]],[[6075,7112],[-14,-7],[-7,12],[-14,-1]],[[6040,7116],[-8,-7],[0,-11],[8,-2]],[[6040,7096],[5,-8],[13,-3],[8,-6]],[[6066,7079],[2,3]],[[6338,6548],[4,7],[-2,15],[-3,1],[0,21],[-6,12],[4,19],[4,2]],[[6339,6625],[-1,5]],[[6338,6630],[-8,2],[0,-9],[-11,-20],[-14,-3],[-7,7]],[[6298,6607],[1,-20],[6,-6],[1,-9]],[[6306,6572],[11,-12],[-1,-13],[4,-5],[13,-3],[5,9]],[[6264,6899],[1,40],[4,6]],[[6269,6945],[-1,8],[-6,0],[-3,16],[-11,1],[-3,14],[-7,-1],[0,23]],[[6238,7006],[-2,-8],[-8,0]],[[6228,6998],[-9,-9],[-3,16],[-4,1],[5,-22],[-8,-3],[-4,-9],[-9,6],[-10,-4]],[[6179,6922],[11,-14],[3,3],[0,-14],[18,-6],[18,6]],[[6229,6897],[13,11],[10,-14],[12,5]],[[6077,7116],[-5,0],[-3,13],[-10,9],[-4,11]],[[6055,7149],[0,0]],[[6055,7149],[0,3]],[[6055,7152],[0,0]],[[6055,7152],[-1,2]],[[6054,7154],[-1,15],[4,0],[-5,14]],[[6052,7183],[2,5]],[[6054,7188],[-1,1]],[[6053,7189],[0,2]],[[6053,7191],[0,1]],[[6053,7192],[-1,2]],[[6052,7194],[-1,0]],[[6051,7194],[-1,3]],[[6050,7197],[0,0]],[[6050,7197],[-1,-1]],[[6049,7196],[0,0]],[[6049,7196],[-1,1]],[[6048,7197],[0,0]],[[6048,7197],[-12,-20],[7,-11],[-1,-14],[-5,-3],[-7,13]],[[6030,7162],[-5,-4],[0,-11],[11,-4],[0,-14],[4,-13]],[[6299,6671],[-21,-14]],[[6278,6657],[-11,3],[-3,6],[-14,11],[-18,2]],[[6232,6679],[0,-9],[-5,-4],[0,-12],[12,-3],[1,-6],[-8,-7]],[[6232,6638],[7,-14],[16,-6],[7,3],[5,11]],[[6267,6632],[8,-6],[6,4],[3,-14],[12,-3]],[[6296,6613],[7,5],[1,21],[-6,2],[1,30]],[[6139,6787],[5,-5]],[[6144,6782],[1,7],[-6,11],[0,18],[-6,10],[1,15],[4,5]],[[6138,6848],[-5,0],[-2,20],[-5,3],[-3,16],[-11,4],[-4,14],[-7,3],[-8,-11]],[[6093,6897],[-3,-10],[-7,-2],[-2,-9],[10,-21],[-3,-9],[-6,1],[-3,-9],[-7,-5],[4,-4],[-1,-28],[-5,-5],[-2,-37],[-2,-7]],[[6066,6752],[14,-4],[5,-16],[12,-12]],[[6097,6720],[-1,9],[14,-12],[8,5],[3,16],[-6,7],[2,15],[4,5],[0,17],[12,6],[6,-1]],[[6388,7085],[-1,3]],[[6387,7088],[0,1]],[[6387,7089],[-1,1]],[[6386,7090],[0,0]],[[6386,7090],[-4,12]],[[6382,7102],[0,0]],[[6382,7102],[0,0]],[[6382,7102],[0,0]],[[6382,7102],[0,1]],[[6382,7103],[0,0]],[[6382,7103],[-2,6]],[[6380,7109],[0,0]],[[6380,7109],[3,3]],[[6383,7112],[3,6],[-3,11],[2,15]],[[6385,7144],[-5,8],[-12,-4],[-3,9],[-13,18],[0,11],[-14,22]],[[6316,7208],[1,-26]],[[6317,7182],[5,-28],[-2,-13],[4,-6]],[[6324,7135],[1,-16],[7,-12],[-6,-11]],[[6326,7096],[7,-4],[2,-13],[13,5],[5,-5]],[[6015,6966],[-6,1],[7,16],[0,12]],[[6016,6995],[-1,0]],[[6015,6995],[-16,-1],[-3,-10],[-17,14],[4,7],[-5,28],[-4,10]],[[5974,7043],[-11,2]],[[5963,7045],[-2,-9]],[[5961,7036],[-3,-10],[-3,8],[-4,-11],[-7,-3],[1,-17],[-10,1],[4,-9],[-3,-11],[13,-1],[-2,-10]],[[5947,6973],[8,-17]],[[6178,6509],[-6,0],[1,14],[-9,-1],[-2,14],[-5,7],[-10,1],[-5,11],[-3,16],[-5,0]],[[6134,6571],[-8,3],[-7,-5],[1,-8],[-10,-4],[1,-19],[3,-13],[-4,-11]],[[6110,6514],[2,-8],[11,-1],[-1,-6],[11,-3],[3,5],[6,-12],[10,-8]],[[6152,6481],[7,18],[9,-5],[0,6],[10,9]],[[6071,6911],[0,21]],[[6071,6932],[-8,10],[-11,-3],[2,36],[7,6],[-3,14]],[[6058,6995],[-3,8],[-28,-6]],[[6027,6997],[-11,-2]],[[6031,6913],[20,-3],[7,3],[13,-2]],[[6192,6703],[7,16],[1,15]],[[6200,6734],[-11,10],[-11,2],[1,13],[-2,7],[-8,-19],[-4,7],[-8,-6],[-2,9],[2,19],[-6,-1],[-7,7]],[[6139,6787],[-6,-38],[-7,-8],[7,-16],[10,-2],[2,-7],[-6,-7],[10,-12],[4,-16]],[[6153,6681],[5,-2],[4,10],[-1,20],[8,1],[2,9],[7,-1],[14,-15]],[[6246,7277],[4,4],[8,-3],[3,16]],[[6269,7325],[-4,7],[-6,-9],[-5,0],[-6,17],[-12,3],[-8,-3]],[[6228,7340],[-2,-28],[2,-1]],[[6228,7311],[3,4],[11,-6],[-6,-3],[5,-15],[-1,-15],[6,1]],[[6252,7134],[-13,18],[-9,3],[-1,-15],[-18,-5]],[[6211,7135],[1,-16],[9,0],[-4,-10],[5,-13],[6,0],[0,-25]],[[6228,7071],[13,8],[5,-11]],[[6246,7068],[2,-1]],[[6248,7067],[5,-2],[-7,19],[9,9],[-13,27],[12,10],[-2,4]],[[6078,7026],[7,-1],[-6,-19],[5,-3],[-2,-20],[4,-8]],[[6086,6975],[10,-1],[5,9],[1,12],[16,-6],[0,13],[-6,10],[-2,18]],[[6269,6945],[4,5],[17,0]],[[6273,7076],[-11,-1],[-5,-10]],[[6257,7065],[4,-14],[0,-17],[-8,8],[-9,-8],[2,-11],[-7,6],[-1,-23]],[[6349,6522],[9,3]],[[6358,6525],[0,0]],[[6358,6525],[1,0]],[[6359,6525],[0,1]],[[6359,6526],[7,-11]],[[6366,6515],[6,3],[0,9],[6,9]],[[6378,6536],[13,15],[-1,22],[-5,10],[-7,1]],[[6378,6584],[0,1]],[[6378,6585],[0,0]],[[6378,6585],[0,0]],[[6378,6585],[0,0]],[[6378,6585],[0,1]],[[6378,6586],[-1,0]],[[6377,6586],[-1,0]],[[6376,6586],[0,0]],[[6376,6586],[0,0]],[[6376,6586],[0,1]],[[6376,6587],[0,-1]],[[6376,6586],[0,1]],[[6376,6587],[0,0]],[[6376,6587],[-1,11],[-5,3],[0,20],[-4,-4],[-3,16]],[[6363,6633],[-18,-2],[-6,-6]],[[6338,6548],[10,-2],[-2,-15],[3,-9]],[[6298,6607],[-2,6]],[[6267,6632],[2,-9],[-5,-12],[6,-13],[0,-16],[8,-14]],[[6278,6568],[8,-2],[0,10],[13,-5],[7,1]],[[6442,6854],[-1,12]],[[6441,6866],[-6,6],[-2,8]],[[6433,6880],[-3,11]],[[6430,6891],[-11,5],[-11,28]],[[6408,6924],[-7,-6],[2,-7],[-16,11],[-5,-11]],[[6382,6911],[21,-18],[-3,-10],[6,-9],[4,-17],[5,6],[8,-1],[-4,-15],[-3,-3],[-1,-17],[-7,-3],[1,-11],[-3,-12]],[[6406,6801],[6,-8],[5,-23],[8,23],[6,2],[1,15],[-3,5],[4,24],[0,9]],[[6433,6848],[0,0]],[[6433,6848],[-1,0]],[[6432,6848],[0,0]],[[6432,6848],[10,6]],[[6275,6464],[0,0]],[[6275,6464],[0,0]],[[6275,6464],[0,0]],[[6275,6464],[13,-4],[2,10],[-4,5],[8,5],[2,18],[6,5]],[[6302,6503],[0,0]],[[6302,6503],[0,2]],[[6302,6505],[0,0]],[[6302,6505],[2,1]],[[6304,6506],[1,3]],[[6305,6509],[0,0]],[[6305,6509],[0,0]],[[6305,6509],[0,0]],[[6305,6509],[0,0]],[[6305,6509],[0,0]],[[6305,6509],[0,0]],[[6305,6509],[13,3]],[[6318,6512],[1,0]],[[6319,6512],[4,-3]],[[6323,6509],[7,-5]],[[6330,6504],[9,-8]],[[6339,6496],[5,-1]],[[6344,6495],[6,-3],[0,12],[-6,8],[5,10]],[[6278,6568],[-10,4],[-5,-11],[-7,3],[-3,-8],[-10,-11]],[[6243,6545],[1,-17],[10,2],[7,-17]],[[6261,6513],[3,9],[-1,14],[9,-2],[10,-16],[0,-9],[-7,-7],[-3,-12]],[[6272,6490],[-8,-5],[3,-14],[8,-7]],[[5947,6973],[-8,0],[-2,-13],[-6,12],[-14,9],[-8,-11],[-18,0],[-3,8],[-4,-3],[-13,3],[-12,-6],[-8,15]],[[5851,6987],[2,-29]],[[5853,6958],[3,-42]],[[5856,6916],[2,-42]],[[5858,6874],[0,0]],[[5858,6874],[9,3],[2,8],[9,3],[4,17],[6,-6],[4,-14],[6,-6],[14,-5],[3,11],[12,3],[1,-14],[9,-15],[4,4],[11,-5],[-3,16],[3,8],[9,-5]],[[6093,6897],[4,16],[-2,12],[-6,8]],[[6089,6933],[-7,-20],[-11,-2]],[[6030,6873],[4,-2],[-2,-13],[12,-6],[0,-4],[-12,-6],[5,-15],[-1,-9]],[[6036,6818],[6,-15],[-7,-13],[1,-33]],[[6036,6757],[9,-3],[6,7],[15,-9]],[[6104,6617],[-3,12],[2,30],[9,6],[5,23],[-16,1],[-8,11]],[[6093,6700],[-5,-10],[-10,-3],[-1,-11],[9,-13],[-5,2],[-1,-9],[-8,-5],[-13,1]],[[6059,6652],[-3,-13],[0,-13],[-6,-2]],[[6050,6624],[-6,-11],[-2,-12],[6,-7],[0,-16],[-10,-7],[0,-8],[6,-6],[1,-17]],[[6045,6540],[9,-1],[2,-6],[9,-5]],[[6065,6528],[9,10],[1,9],[8,11],[-1,5],[10,17],[3,17],[4,3],[5,17]],[[6261,6513],[11,-23]],[[6153,6681],[7,-24],[5,-9]],[[6165,6648],[13,18],[7,-3],[5,8],[0,24],[2,8]],[[6209,6497],[0,0]],[[6209,6497],[1,-1]],[[6210,6496],[0,0]],[[6210,6496],[1,-1]],[[6211,6495],[0,1]],[[6211,6496],[0,0]],[[6211,6496],[0,0]],[[6211,6496],[0,1]],[[6211,6497],[-5,26],[-1,43],[6,40],[0,16],[4,7],[0,15],[4,3],[3,-10],[10,1]],[[6232,6679],[-11,0],[-5,11]],[[6216,6690],[-14,-3],[3,-8],[-5,-8],[4,-5],[2,12],[9,-9],[-12,-14],[-5,-1],[-6,-29],[4,0]],[[6196,6625],[5,-4],[0,-23],[4,-3],[-7,-18],[1,-14],[-7,-7],[7,-6],[-1,-8],[6,-28],[-9,-12]],[[6195,6502],[1,-4]],[[6196,6498],[0,0]],[[6196,6498],[0,-1]],[[6196,6497],[0,-1]],[[6196,6496],[1,0]],[[6197,6496],[0,0]],[[6197,6496],[0,0]],[[6197,6496],[12,1]],[[6339,6958],[-2,6],[8,10],[3,15]],[[6348,6989],[2,23],[6,3]],[[6351,7020],[-5,-3],[-7,9],[-6,-6],[-1,9],[-9,-10]],[[6332,6955],[7,3]],[[6278,6812],[-6,11],[0,17],[-3,8],[-11,10]],[[6258,6858],[0,0]],[[6258,6858],[-8,10]],[[6250,6868],[0,0]],[[6250,6868],[12,20],[2,11]],[[6229,6897],[0,-12],[-7,-14],[-1,-28],[2,-14]],[[6223,6829],[10,5],[3,-19],[19,-2],[4,-10],[6,3],[2,-10],[6,0],[5,16]],[[6209,6744],[-1,13],[5,3]],[[6213,6760],[9,8],[-3,9],[-4,-1],[1,13],[7,15],[0,25]],[[6152,6897],[3,-17],[-5,0],[1,-11],[-5,-6],[-8,0],[3,-15],[-3,0]],[[6200,6734],[9,10]],[[6228,6998],[-2,13],[3,9]],[[6229,7020],[-13,16]],[[6216,7036],[-11,-3],[-3,20],[-13,1]],[[6189,7054],[3,-17],[-13,0],[-5,11]],[[6229,7020],[-1,26],[3,7],[7,-2],[1,11],[7,-1],[0,7]],[[6228,7071],[-7,-7],[-2,-10]],[[6219,7054],[-3,-18]],[[6105,6510],[5,4]],[[6134,6571],[1,7]],[[6135,6578],[-3,1],[-1,15],[-6,5],[-17,0],[6,7],[-3,10],[-7,1]],[[6065,6528],[1,-6],[14,-9],[25,-3]],[[6067,7050],[-5,-2]],[[6062,7048],[-6,-3]],[[6056,7045],[-6,-5],[2,-15],[-8,-3],[2,-17],[-11,3],[-9,-4],[1,-7]],[[6058,6995],[1,11],[12,-8],[-3,-23],[15,-14]],[[6083,6961],[3,14]],[[6216,6690],[-6,17],[9,13],[-6,8],[2,5],[-6,11]],[[6165,6648],[0,-10],[6,-7],[-6,-20]],[[6165,6611],[11,2],[19,-1],[1,13]],[[6093,6700],[-3,14],[5,-2],[2,8]],[[6036,6757],[5,-12],[-2,-18],[7,-2],[-1,-25],[11,-6],[-2,-16],[5,-26]],[[5961,7036],[-6,7]],[[5955,7043],[0,0]],[[5955,7043],[-1,0]],[[5954,7043],[0,0]],[[5954,7043],[0,0]],[[5954,7043],[0,0]],[[5954,7043],[-4,0]],[[5950,7043],[0,0]],[[5950,7043],[-11,0],[-6,-3],[-9,11],[-10,-17],[-4,6],[-8,-3]],[[5902,7037],[-1,0]],[[5901,7037],[-2,0]],[[5899,7037],[0,2]],[[5899,7039],[-1,1]],[[5898,7040],[0,0]],[[5898,7040],[0,0]],[[5898,7040],[0,2]],[[5898,7042],[0,0]],[[5898,7042],[-6,-3],[-13,-19],[-7,-12]],[[5872,7008],[2,0]],[[5874,7008],[0,0]],[[5874,7008],[-2,-4]],[[5872,7004],[0,0]],[[5872,7004],[0,-1]],[[5872,7003],[-1,-2]],[[5871,7001],[-14,-21],[-6,7]],[[6257,7065],[-9,2]],[[6290,6392],[0,1]],[[6290,6393],[0,0]],[[6290,6393],[0,1]],[[6290,6394],[0,0]],[[6290,6394],[0,0]],[[6290,6394],[0,0]],[[6290,6394],[0,0]],[[6290,6394],[1,0]],[[6291,6394],[0,0]],[[6291,6394],[0,0]],[[6291,6394],[0,0]],[[6291,6394],[0,1]],[[6291,6395],[0,0]],[[6291,6395],[0,0]],[[6291,6395],[0,0]],[[6291,6395],[0,0]],[[6291,6395],[0,1]],[[6291,6396],[0,0]],[[6291,6396],[-1,-1]],[[6290,6395],[0,0]],[[6290,6395],[0,1]],[[6290,6396],[0,0]],[[6290,6396],[0,0]],[[6290,6396],[0,0]],[[6290,6396],[1,13],[-10,4],[0,7]],[[6281,6420],[-8,12],[-7,21]],[[6266,6453],[0,1]],[[6266,6454],[0,0]],[[6266,6454],[1,0]],[[6267,6454],[8,10]],[[6243,6545],[-13,-14],[0,-20],[-11,-5]],[[6219,6506],[0,-7]],[[6219,6499],[0,0]],[[6219,6499],[0,-1]],[[6219,6498],[0,0]],[[6219,6498],[0,0]],[[6219,6498],[0,0]],[[6219,6498],[0,0]],[[6219,6498],[0,0]],[[6219,6498],[0,0]],[[6219,6498],[3,-10],[6,9],[8,0]],[[6236,6497],[9,-8],[3,-17],[0,-36],[-7,-7],[-16,-9],[-2,-11],[9,0],[1,-10],[15,4],[4,-8],[7,-1]],[[6259,6394],[0,0]],[[6259,6394],[2,-1]],[[6261,6393],[0,0]],[[6261,6393],[0,0]],[[6261,6393],[1,-1]],[[6262,6392],[0,0]],[[6262,6392],[0,0]],[[6262,6392],[0,0]],[[6262,6392],[1,0]],[[6263,6392],[6,-1],[4,10],[6,-15]],[[6279,6386],[11,1],[0,5]],[[6050,6624],[2,3],[-8,16],[-6,-8],[4,15],[-15,9],[-3,12],[-7,-3],[0,-14],[-9,-2],[-3,7],[-10,-25]],[[5995,6634],[4,-12],[-2,-13],[4,-19]],[[6001,6590],[4,-7],[1,-22],[-6,-1],[-4,-12],[3,-7]],[[5999,6541],[14,1],[3,-16]],[[6016,6526],[7,-9],[6,2],[3,11],[13,10]],[[6219,7054],[-7,7],[1,7],[-8,16],[-4,-2],[-6,20],[-2,15]],[[6193,7117],[-14,-7],[-3,5]],[[6176,7115],[-7,-3]],[[6169,7112],[2,-8],[-6,-16],[4,-7],[-3,-8],[5,-9],[5,3],[0,-11],[7,-2],[2,10],[4,-10]],[[6139,6433],[6,5],[0,14],[7,29]],[[6105,6510],[4,-10],[-4,-24],[-6,-9],[7,-7],[-1,-16]],[[6105,6444],[10,-2],[3,-5],[12,-1],[9,-8]],[[6139,6428],[0,5]],[[6071,6932],[6,1],[0,9],[6,7],[0,12]],[[6211,7135],[-5,6],[-13,-3],[5,-17],[-5,-4]],[[6169,7112],[-13,-8],[-7,1]],[[6149,7105],[-13,-2],[-2,4]],[[6134,7107],[-9,-9],[-5,4],[-1,8]],[[6119,7110],[0,0]],[[6119,7110],[0,0]],[[6119,7110],[0,0]],[[6119,7110],[2,3],[-5,25],[5,11],[-9,0],[0,-8]],[[6112,7141],[0,0]],[[6112,7141],[0,-20],[-8,16]],[[6104,7137],[0,0]],[[6104,7137],[0,0]],[[6104,7137],[0,1]],[[6104,7138],[0,0]],[[6104,7138],[0,0]],[[6104,7138],[0,0]],[[6104,7138],[0,2]],[[6104,7140],[0,0]],[[6104,7140],[0,1]],[[6104,7141],[0,0]],[[6104,7141],[0,0]],[[6104,7141],[0,0]],[[6104,7141],[0,2]],[[6104,7143],[0,0]],[[6104,7143],[-1,1]],[[6103,7144],[0,0]],[[6103,7144],[-1,-3]],[[6102,7141],[0,0]],[[6102,7141],[0,-1]],[[6102,7140],[-1,-2]],[[6101,7138],[0,-6]],[[6101,7132],[-2,-11]],[[6338,6901],[0,-10],[11,-11],[4,-12]],[[6353,6868],[12,-10],[0,-6],[17,-4],[17,-31],[4,-16]],[[6403,6801],[3,0]],[[6382,6911],[-7,13],[-7,4],[-11,-3],[-11,21],[0,7],[-7,5]],[[6089,6933],[5,12],[9,-6],[11,2],[4,6],[10,-5],[4,7],[3,-7]],[[6324,7135],[-12,-2],[3,-14],[-12,-3],[-4,-9],[-11,3],[5,-8]],[[6293,7102],[4,-6],[14,-3],[8,6],[7,-3]],[[6286,7089],[-7,-2],[2,9],[12,6]],[[6317,7182],[-9,-10],[-8,8],[-1,16],[-4,-6],[-1,10],[-14,0]],[[6280,7200],[-8,-1],[-4,-9]],[[6268,7190],[3,-14],[-6,-10],[-7,-1],[-1,-10],[-7,-1],[2,-20]],[[5974,6866],[-4,-3],[3,-15],[-5,-22],[5,-4],[1,-15],[4,-2]],[[5978,6805],[21,4],[6,11],[18,5],[8,-11],[1,-9],[4,13]],[[5858,6874],[3,-33]],[[5861,6841],[23,-11]],[[5884,6830],[0,0]],[[5884,6830],[3,2]],[[5887,6832],[0,0]],[[5887,6832],[2,-1]],[[5889,6831],[0,0]],[[5889,6831],[1,-2]],[[5890,6829],[0,0]],[[5890,6829],[0,0]],[[5890,6829],[0,0]],[[5890,6829],[2,-6],[11,-3],[19,-13],[7,6],[2,-7]],[[5931,6806],[0,0]],[[5931,6806],[14,-19],[7,0],[4,-8],[8,-1]],[[5964,6778],[3,9],[12,9],[-1,9]],[[6408,6924],[-2,1]],[[6406,6925],[-4,16]],[[6402,6941],[-4,9],[-12,5],[-6,-3],[0,21],[-2,0]],[[6378,6973],[-22,-3],[-3,11]],[[6353,6981],[0,0]],[[6353,6981],[0,2]],[[6353,6983],[0,0]],[[6353,6983],[-5,6]],[[6246,7277],[3,-22]],[[6249,7255],[6,-11],[-3,-20],[9,-6],[0,-10],[14,5],[5,-13]],[[6165,6611],[3,-4],[-7,-9],[-13,2],[-13,-22]],[[6178,6509],[8,-2],[2,-8],[7,3]],[[6048,7197],[-4,8],[-7,0],[-8,13],[-6,21],[-10,0]],[[6013,7239],[0,0]],[[6013,7239],[0,0]],[[6013,7239],[0,2]],[[6013,7241],[0,0]],[[6013,7241],[1,0]],[[6014,7241],[0,1]],[[6014,7242],[0,0]],[[6014,7242],[-1,0]],[[6013,7242],[0,0]],[[6013,7242],[0,0]],[[6013,7242],[0,0]],[[6013,7242],[0,3]],[[6013,7245],[0,0]],[[6013,7245],[1,0]],[[6014,7245],[0,0]],[[6014,7245],[0,0]],[[6014,7245],[0,0]],[[6014,7245],[0,2]],[[6014,7247],[0,0]],[[6014,7247],[0,0]],[[6014,7247],[0,0]],[[6014,7247],[0,0]],[[6014,7247],[0,1]],[[6014,7248],[-14,1]],[[6000,7249],[3,-10],[-3,-5],[4,-26],[-5,-3],[-8,5],[-4,-11]],[[5987,7199],[-1,-2]],[[5986,7197],[-7,-11],[-9,-6],[2,-22]],[[5972,7158],[1,-3]],[[5973,7155],[-1,-1]],[[5972,7154],[7,-6]],[[5979,7148],[0,-2]],[[5979,7146],[-1,-5]],[[5978,7141],[0,0]],[[5978,7141],[0,-1]],[[5978,7140],[0,0]],[[5978,7140],[1,0]],[[5979,7140],[0,0]],[[5979,7140],[2,0]],[[5981,7140],[0,0]],[[5981,7140],[0,0]],[[5981,7140],[0,-2]],[[5981,7138],[0,0]],[[5981,7138],[1,0]],[[5982,7138],[0,0]],[[5982,7138],[0,0]],[[5982,7138],[1,-15]],[[5983,7123],[11,4],[5,-3],[12,10],[-6,4],[6,17],[11,-8],[5,19],[3,-4]],[[6015,6995],[-4,6],[-3,24],[4,9],[3,20]],[[6015,7054],[-10,8],[1,9],[-14,-15],[-5,0],[-4,-13],[-9,0]],[[6066,7079],[-4,-8]],[[6062,7071],[7,-6],[-7,-17]],[[6200,7196],[-9,-4],[-4,15],[-6,-7]],[[6181,7200],[-8,-6],[-5,-14],[-5,6]],[[6163,7186],[5,-10],[-7,-10]],[[6161,7166],[2,-5],[9,8],[13,-25]],[[6185,7144],[13,19],[6,12],[-4,2],[0,19]],[[6056,7045],[-7,2],[-4,15]],[[6045,7062],[-15,17]],[[6030,7079],[-15,-25]],[[6304,6676],[-9,16],[-3,30],[4,7],[-8,7],[-10,2],[-8,11]],[[6270,6749],[-3,-10],[-8,5],[0,10],[-5,0],[-11,12],[-8,2],[0,-9],[-8,-6]],[[6227,6753],[5,-25],[10,1],[12,-7],[0,-9],[5,-6],[-9,-9],[4,-2],[-3,-11],[8,0],[3,-6],[10,-2],[6,-20]],[[6299,6671],[5,5]],[[6149,7196],[-1,4]],[[6148,7200],[3,2]],[[6151,7202],[0,0]],[[6151,7202],[1,0]],[[6152,7202],[0,1]],[[6152,7203],[0,0]],[[6152,7203],[0,1]],[[6152,7204],[-1,1]],[[6151,7205],[0,0]],[[6151,7205],[0,0]],[[6151,7205],[0,1]],[[6151,7206],[0,0]],[[6151,7206],[1,7],[-7,1],[-6,21]],[[6139,7235],[-7,-4]],[[6132,7231],[-12,-9],[2,-2],[-6,-20],[9,-7]],[[6125,7193],[11,-7],[1,-6]],[[6137,7180],[4,10],[8,6]],[[6062,7071],[1,-6],[-10,-3],[0,9],[-8,-9]],[[6249,7255],[-13,-24]],[[6236,7231],[-7,-13]],[[6229,7218],[2,-8],[9,7],[17,-17],[-1,-11],[12,1]],[[6211,6497],[8,9]],[[6040,7096],[-10,-17]],[[6149,7105],[3,22],[0,28],[8,16],[1,-5]],[[6163,7186],[-5,-3]],[[6158,7183],[0,0]],[[6158,7183],[0,0]],[[6158,7183],[-1,2]],[[6157,7185],[0,0]],[[6157,7185],[-8,11]],[[6137,7180],[-11,-22],[6,-14],[7,0],[0,-31],[-5,-6]],[[5983,7123],[-5,-27],[-8,-11],[-1,-11]],[[5969,7074],[-10,-24],[4,-5]],[[6363,6633],[3,13]],[[6366,6646],[-8,5],[-5,15],[5,26],[8,1],[-7,14]],[[6359,6707],[-1,-1]],[[6358,6706],[0,0]],[[6358,6706],[0,0]],[[6358,6706],[-1,0]],[[6357,6706],[-2,4],[-13,3],[1,-9],[-9,7],[-5,-7]],[[6329,6704],[9,-6],[-4,-11],[-8,-3],[3,-16]],[[6329,6668],[11,-16],[4,-11],[-6,-11]],[[6227,6753],[-14,7]],[[6329,6668],[-10,6],[-15,2]],[[6270,6749],[-5,13],[5,14],[2,-10],[9,-10],[10,-5],[12,-21]],[[6303,6730],[-1,18]],[[6302,6748],[-9,10],[-3,18],[-9,11],[5,26],[-8,-1]],[[6176,7115],[6,4],[6,16],[-3,9]],[[6229,7218],[-5,12],[-6,-11],[4,-9],[-14,-8]],[[6208,7202],[-8,-6]],[[5964,6778],[-5,-21],[-7,-5],[-2,-20],[13,-11],[2,-19],[4,-8],[0,-11],[12,-10],[4,-24],[7,-2],[-1,-11],[4,-2]],[[4890,6776],[-5,-8],[-12,-9],[0,-6],[-10,10],[0,-14],[-4,-12],[-7,-1],[-4,-11],[4,-3],[1,-15]],[[4853,6707],[13,-6],[0,-7],[20,-20]],[[4886,6674],[7,1],[8,-11],[5,0],[4,11],[10,10],[2,17],[-4,18],[2,5],[-4,12],[2,16],[-15,1],[-14,6],[4,7],[-3,9]],[[4690,6944],[-9,3],[-7,-3],[-1,-11],[-6,9]],[[4667,6942],[0,-17],[-5,-8],[2,-10],[-7,4],[-10,-14],[-2,-6],[-1,-28]],[[4644,6863],[9,-3],[9,12],[10,0]],[[4672,6872],[9,11],[7,28],[3,0]],[[4691,6911],[-3,4],[2,29]],[[4573,6789],[-9,0],[-13,15],[-7,-3],[-17,-24]],[[4527,6777],[0,-14],[8,-24]],[[4535,6739],[11,9],[7,-4],[10,-24],[5,-4],[4,-18]],[[4572,6698],[6,0],[10,9],[8,2],[6,-7],[10,4]],[[4612,6706],[0,4]],[[4612,6710],[-11,21],[-6,3],[0,13],[-10,7],[-4,-13],[-8,11],[0,26],[8,12],[-8,-1]],[[4664,7096],[5,-1],[4,11],[11,0],[2,4]],[[4686,7110],[3,7],[-9,7],[-6,19],[-7,9],[2,16]],[[4669,7168],[-1,11],[-11,-14],[-5,-2]],[[4652,7163],[0,-9],[-7,1],[3,-11],[0,-18],[3,-20],[10,-3],[3,-7]],[[4626,6722],[2,-7],[-16,-5]],[[4612,6706],[6,-39],[5,-7],[-6,-5],[5,-20],[25,15],[7,-3]],[[4654,6647],[6,10],[-4,24],[0,11]],[[4656,6692],[-5,5],[-11,-5],[-4,22],[-10,8]],[[4532,6919],[-12,10],[-7,-16],[-14,-10],[-1,-15],[-10,-8],[-2,8]],[[4486,6888],[-4,-8],[-7,-3],[-6,-11]],[[4469,6866],[-3,-8],[4,-11],[-10,-15],[9,-21],[-5,-3]],[[4464,6808],[0,-27],[6,-3],[-5,-11],[2,-5]],[[4467,6762],[5,-2],[5,7],[1,11],[21,6],[6,-3],[10,10],[6,-11],[6,-3]],[[4573,6789],[4,17],[6,6],[-1,11],[8,0]],[[4590,6823],[-12,12],[6,8],[-16,11],[2,6],[-7,11],[-4,14],[-7,-12],[-5,7],[-3,28],[4,11],[-12,5],[-4,-5]],[[4574,6696],[-2,2]],[[4535,6739],[5,-12],[-2,-4],[-9,4],[1,-7],[-6,-9],[0,-33],[-8,-21]],[[4516,6657],[4,-10],[6,-4],[9,2],[3,8],[0,26],[12,-1],[6,13],[8,-10],[5,1],[0,9],[5,5]],[[5004,6775],[0,-21]],[[5004,6754],[3,10],[10,9],[11,-2],[11,-62],[-1,-21],[-9,4],[-4,-13],[6,-11],[-5,-2]],[[5026,6666],[12,1],[5,-12],[13,4],[5,-5],[6,4],[12,-1],[4,-5],[7,5],[11,1],[1,-8]],[[5102,6650],[23,-6],[4,5],[-1,15],[10,-2]],[[5138,6662],[10,3],[9,-7],[2,20]],[[5148,6714],[-1,8],[-12,-12],[-9,7],[-3,13],[-7,2],[0,11],[-10,9],[-6,14],[-7,4],[6,19],[-9,6],[-4,14]],[[5086,6809],[-8,-1],[-8,5],[-5,-8],[-10,6],[-8,-1],[-4,6]],[[5043,6816],[-7,-2],[1,-9],[6,-9],[-8,-15],[-14,-5],[-6,8],[-11,-9]],[[4653,6750],[-9,4],[0,-9],[-15,-2],[-9,-6]],[[4620,6737],[3,-17],[3,2]],[[4656,6692],[2,10],[-6,3],[3,22],[6,1],[3,-9],[6,12],[-5,10],[0,19],[-5,-3],[0,-10],[-7,3]],[[4620,6988],[6,1],[4,11]],[[4630,7000],[6,9],[10,-7],[6,4],[-1,20],[2,13],[10,12],[7,-5],[5,13]],[[4675,7059],[-6,17],[-7,9],[-5,-1]],[[4657,7084],[-22,-2],[-16,16],[-3,-17]],[[4616,7081],[7,-13],[-5,-3],[0,-9],[-14,-3],[-5,-13],[2,-8],[-6,-9]],[[4595,7023],[4,-7],[-6,-4],[2,-7],[-4,-14],[6,-4],[-3,-12]],[[4594,6975],[7,-3],[4,15],[15,1]],[[4417,6975],[7,-6],[-3,-19]],[[4421,6950],[2,-18],[19,-2],[0,-12],[6,-13],[13,3],[1,-7],[16,4],[2,-6]],[[4480,6899],[4,6],[2,30],[9,9],[-1,25],[2,4]],[[4496,6973],[-8,10],[-1,19],[-3,-4],[-16,21],[-12,1]],[[4456,7020],[-6,-12],[-13,-6],[-4,6]],[[4433,7008],[-6,-20],[-10,-13]],[[4322,7020],[0,-32]],[[4322,6988],[10,-4],[0,-6],[10,-9],[3,1],[-1,-20],[4,-11],[7,-6],[-1,-9],[-10,-10],[7,-17],[0,-17]],[[4351,6880],[11,-1],[1,7],[8,-1],[-3,-16],[5,0],[9,-12],[13,3],[-2,9],[6,14],[-5,8],[11,12],[-5,7],[12,21],[2,11],[-6,5],[5,6],[8,-3]],[[4417,6975],[-4,11],[-7,-2],[-7,11],[-10,0],[-1,-6],[-7,3],[-3,-17],[-5,-5],[-8,25],[-6,0],[3,16],[-6,7],[0,12],[-12,13],[-8,-10],[-4,3],[-10,-16]],[[5033,6897],[-7,-1],[-2,-8],[-19,2],[-8,-3],[-6,20],[-7,-2]],[[4984,6905],[4,-14],[-9,-11],[-8,5],[-4,-11],[-5,-1]],[[4962,6873],[-2,-18],[6,-7],[11,3],[3,-11],[-4,-1],[1,-13],[-12,-5],[0,-9],[5,-6]],[[4970,6806],[16,-11],[4,-13],[6,-3],[4,10],[4,-14]],[[5043,6816],[-1,21],[2,14],[-9,20],[-6,6],[7,6],[-3,14]],[[4755,7151],[-11,4],[-3,11],[-9,-4],[-7,4],[1,26],[-23,-7]],[[4703,7185],[-8,-16],[0,-11],[-12,11],[-5,11],[-6,-1],[-3,-11]],[[4686,7110],[3,-9],[2,-22],[-1,-17],[7,-3]],[[4697,7059],[16,8]],[[4713,7067],[1,4],[-10,8],[0,6],[9,8],[4,-14],[13,11],[2,8],[7,0],[1,12],[7,11],[10,0]],[[4757,7121],[8,12],[-10,18]],[[4435,7343],[0,-6],[-13,-8],[5,-3],[-2,-15],[3,-16],[-5,-4],[1,-18],[3,-6],[-11,6],[-5,-14],[-10,0],[-4,-10]],[[4397,7249],[-1,-13],[3,-14],[8,0],[-6,-11]],[[4401,7211],[6,-20],[5,0],[1,-15],[16,-7]],[[4429,7169],[5,20],[14,10],[5,7]],[[4453,7206],[3,16],[12,2],[1,12],[5,6],[4,19],[12,11],[4,-2],[2,17],[6,7]],[[4502,7294],[-9,20]],[[4493,7314],[-4,12],[-7,8],[-5,12],[-6,-3],[-10,7],[-10,-10],[-16,3]],[[5086,6809],[1,9],[9,-4],[-4,8],[4,3],[1,15],[8,18]],[[5105,6858],[-2,11],[-6,0],[-7,11],[-11,7],[-1,9],[6,43],[23,3]],[[5107,6942],[-1,5],[-15,3],[-9,-9]],[[5082,6941],[-10,3],[-6,8]],[[5066,6952],[2,-16],[-2,-6],[-12,0],[-1,-14],[-16,-19],[-4,0]],[[4456,7020],[-7,14],[4,9],[8,-9],[0,6],[15,-11],[6,7],[-2,18]],[[4480,7054],[-4,13],[-7,-5],[-9,6],[0,10],[-12,10],[2,10],[-7,7],[-5,-3],[6,15],[0,15],[-18,11],[3,26]],[[4401,7211],[-9,-7],[-5,10],[-7,-8],[-5,-23],[-1,-36],[-9,-13],[2,-10],[-5,-5],[-9,4],[-4,-17]],[[4349,7106],[-1,-13],[-9,-2],[5,-12],[-11,-14],[3,-8]],[[4336,7057],[5,14],[7,2],[6,-16],[9,8],[8,-9],[12,9],[1,-14],[8,11],[9,3],[7,-3],[10,8],[-1,-6],[8,-2],[-6,-17],[0,-20],[10,1],[0,-14],[4,-4]],[[5066,6952],[-6,3]],[[5060,6955],[-16,-2],[-4,-6],[-12,6],[-12,16],[-8,4],[3,10]],[[5011,6983],[-10,1],[-12,8],[-6,-5]],[[4983,6987],[2,-13],[-19,-1],[1,-6],[10,-1],[-10,-5],[3,-8],[-3,-6],[0,-16]],[[4967,6931],[17,-26]],[[4482,6114],[11,0],[5,-16],[8,11],[12,7],[1,-9],[11,-24],[9,12],[13,-11],[12,12],[1,-12],[5,8],[0,-22],[4,-4],[-2,-19],[7,-1],[3,9],[13,-3]],[[4595,6052],[1,17],[-4,9],[6,5],[-3,12],[14,-3],[1,-9],[12,-13],[10,1],[7,7],[-1,7],[8,3],[-1,9]],[[4645,6097],[-6,7],[-1,34],[7,8],[-1,14],[-9,6],[-15,-3],[-5,6],[-2,-17],[-18,7],[-4,14],[-9,3]],[[4582,6176],[-13,5]],[[4569,6181],[-3,-3],[-16,2],[-19,-11],[-12,4],[-6,-4],[-9,2],[-11,-12],[-9,-23],[4,-2],[-6,-20]],[[4058,7034],[-2,-20],[-3,-8],[-7,-3],[-4,-16],[-14,-18],[-8,-14],[-7,-19],[-3,-25],[6,2],[8,-19],[5,-1],[6,-14],[13,-7],[41,-9],[31,-3],[7,-3]],[[4127,6857],[2,17],[7,0],[-2,-14],[9,-3],[3,14],[11,1],[1,5]],[[4158,6877],[-3,23],[3,0],[2,17],[20,11],[-5,4],[-3,32],[2,20],[-8,11],[2,10],[13,4],[4,19],[3,1]],[[4188,7029],[-19,11],[-10,-1],[-9,9],[-4,-20],[-8,6],[-8,-1],[-9,7],[-8,-4],[-3,-17],[-5,-7],[-8,3],[-13,-9],[0,9],[-18,17],[-8,2]],[[4378,7416],[-7,-20],[7,-14],[-4,-8],[-13,-9],[-7,0],[-4,-16],[2,-6]],[[4352,7343],[3,-1],[4,-24],[10,10],[5,-20],[8,6],[-2,-16],[3,-3],[11,6],[1,-37],[2,-15]],[[4435,7343],[-4,3],[1,21],[-6,17],[-22,1],[-6,8],[6,25],[-5,3],[-21,-5]],[[4347,7474],[-6,1],[1,20],[7,7],[6,-13],[13,-7],[6,0],[2,-10],[8,-1],[5,4],[9,-9],[4,6],[2,23],[4,4],[-2,15]],[[4327,7568],[2,-17],[-5,-7],[-11,0],[1,-10],[-12,5],[-2,-5]],[[4300,7534],[-3,-3],[9,-21],[-7,-4],[-6,-11],[8,0],[0,-12],[17,-2],[5,-10],[8,-3],[1,-7],[15,13]],[[4693,7326],[-2,-6],[-7,2],[-4,-10],[-3,-20],[-5,1],[-7,-15],[0,-23],[3,-5]],[[4668,7250],[8,5],[13,-5]],[[4689,7250],[15,6],[12,-11],[9,-3]],[[4725,7242],[0,11],[5,-3],[2,20]],[[4732,7270],[0,17],[-7,6],[-14,21],[3,14]],[[4714,7328],[-11,9],[-11,-2],[1,-9]],[[4594,6975],[-2,-5],[-10,-3],[-6,6],[-7,-3],[-7,-14]],[[4562,6956],[11,-11],[2,-20],[7,13],[8,-2],[4,-14],[-12,-11],[3,-9],[2,-29],[7,-8],[-1,-10],[7,-8],[15,1]],[[4615,6848],[2,9],[-6,9],[5,25],[7,0],[-1,31],[3,0],[2,20],[-10,13],[-2,12],[5,21]],[[4719,5996],[6,-12],[0,-17],[5,-20]],[[4730,5947],[0,-1]],[[4730,5946],[9,-4],[1,-8],[14,-9],[8,6],[4,-8]],[[4766,5923],[5,-3]],[[4771,5920],[-4,12],[8,7],[-3,10],[2,11],[-3,14],[6,1],[1,-8],[9,3],[0,19],[13,-9],[6,2],[14,19]],[[4820,6001],[-8,9],[3,11],[11,2],[1,9]],[[4827,6032],[-1,16],[-9,8],[-11,3]],[[4806,6059],[-9,-1],[3,16],[-4,2],[-13,-6],[-2,5],[-8,-12],[-19,26]],[[4754,6089],[-4,-15],[4,-15],[-11,-3],[-4,-10],[3,-17],[-7,-1],[-1,-19],[-15,-13]],[[4775,7192],[-3,-17],[-17,-24]],[[4757,7121],[2,-8],[-3,-10],[9,4],[5,14],[5,2],[1,-20],[-4,-5],[5,-8],[11,2],[0,-4]],[[4788,7088],[17,13]],[[4805,7101],[5,11],[-4,9],[2,20],[4,8]],[[4812,7149],[-2,5],[3,15],[-4,0],[-1,24],[-5,-1]],[[4803,7192],[-2,-17],[-14,-9],[-1,17],[-11,9]],[[4493,7314],[3,26],[5,3],[6,17],[4,-1]],[[4511,7359],[10,25],[1,21]],[[4347,7474],[1,-13],[-4,-9],[7,-11],[14,2],[-1,-20],[11,-2],[3,-5]],[[4336,7057],[-1,-7],[-9,4],[-4,-4]],[[4322,7050],[0,-30]],[[4853,6707],[-17,0]],[[4836,6707],[1,-20],[-4,-2],[-5,-15],[0,-10],[-5,-3],[-5,5],[-5,-5],[-1,-23],[-9,-3],[2,-7],[16,-6],[-3,-9],[5,-1],[0,-10],[-9,-4],[-1,-16],[8,-12]],[[4821,6566],[0,-6],[11,1],[10,-18]],[[4842,6543],[7,1],[8,-6],[6,9],[9,3],[0,16],[8,12],[10,6],[-1,8],[11,-2]],[[4900,6590],[-7,17],[-3,1],[0,17],[-7,6],[-4,11],[0,24],[7,8]],[[4747,7009],[-15,2],[-5,-9],[3,-25],[21,-2],[14,3],[0,-20],[5,-5]],[[4770,6953],[7,-6],[25,9],[3,-6],[9,0],[7,-12],[0,-13],[-4,-4],[5,-7]],[[4822,6914],[12,3]],[[4834,6917],[0,0]],[[4834,6917],[-2,5],[8,7],[-3,9],[-11,8],[-2,10],[11,-4],[15,0],[3,23],[-4,59]],[[4849,7034],[-8,2],[-4,9],[-20,-5],[-5,8]],[[4812,7048],[-10,-2],[-4,-10],[-14,-4],[-6,-7],[-13,1],[-18,-17]],[[4645,6097],[10,3],[0,25],[9,3]],[[4664,6128],[-1,19],[10,14],[7,2]],[[4680,6163],[1,9],[13,11],[6,13],[0,16],[-6,13],[0,9],[-7,12]],[[4687,6246],[-2,14],[3,20],[-3,6]],[[4685,6286],[-12,-5],[0,14],[-9,1],[-2,-9],[-6,-1],[-3,11],[-9,0]],[[4644,6297],[-7,-25],[7,-2],[0,-10],[-5,-8],[3,-15],[9,-7],[5,-21],[-8,3],[-2,7],[-8,2],[-7,-14],[-14,0],[-13,-8],[-11,0],[-8,-10],[-3,-13]],[[4616,7081],[-9,10],[-11,5],[-1,16],[5,14],[-7,1],[-7,-6],[-8,8]],[[4578,7129],[-8,9],[-3,9],[-9,5]],[[4558,7152],[2,-17]],[[4560,7135],[-1,-11],[-10,-6],[2,-13],[5,-7],[7,-27]],[[4563,7071],[6,-14],[0,-11],[10,-1],[14,-13],[2,-9]],[[5105,6858],[11,-11],[8,5],[13,-1],[6,-5],[1,-12],[4,14],[11,-4],[0,-6],[14,1]],[[5145,6925],[-3,4],[-19,-1],[-4,13]],[[5119,6941],[-12,1]],[[4489,7208],[-12,-5],[-5,-12]],[[4472,7191],[5,-2],[4,-21],[7,-2],[5,-17],[8,2],[2,-11]],[[4503,7140],[1,3],[14,-2]],[[4518,7141],[9,8],[11,-1],[8,-10],[14,-3]],[[4558,7152],[-1,14],[-4,2],[0,24],[2,16],[-14,-8],[-5,14],[-1,17],[-4,-3]],[[4531,7228],[-10,-4],[0,-13],[13,-18],[0,-21],[-5,-4],[-6,9],[0,19],[-17,6],[-9,0],[-8,6]],[[5143,6190],[27,2],[-2,7],[8,13],[4,-7],[5,12],[-3,20],[-5,3],[8,16],[-7,13],[5,6],[-6,9],[-2,18],[-4,11],[-3,-3],[-2,14],[-6,-3],[-4,9],[5,12],[-16,11],[-5,0],[-7,10],[5,2],[0,9],[-9,13]],[[5129,6387],[-10,-2],[-11,5],[1,-10],[-6,11],[-8,-8],[-8,7],[-12,-2],[-7,-14],[-18,13],[-6,-13]],[[5044,6374],[-4,-15],[8,-7],[-1,-14],[3,-11],[10,-9],[0,-31],[-6,-6],[-4,10],[-2,-12],[2,-16],[4,-2],[1,-16]],[[4467,6762],[0,-20]],[[4467,6742],[9,1],[8,-5],[-4,-16],[2,-11],[21,7],[-1,-27],[3,-13],[-9,-7],[4,-13]],[[4500,6658],[16,-1]],[[4453,7206],[0,-20],[11,-3],[8,8]],[[4489,7208],[1,11],[-3,14],[17,-3],[4,3]],[[4508,7233],[-4,6],[0,14],[5,5],[-1,26],[3,7],[-9,3]],[[4377,6751],[-2,-18],[-10,-11],[-7,-25],[1,-16]],[[4359,6681],[-1,-16],[-7,-10],[-1,-19]],[[4350,6636],[13,-5],[11,12],[3,16],[9,13],[0,9],[16,20],[13,6],[9,13],[2,14],[8,3],[0,6],[11,6],[3,10],[6,3],[2,33],[8,13]],[[4469,6866],[-12,-3],[0,22],[-13,-11],[1,-8],[-23,-11],[-14,0],[-6,-8],[2,-11],[-5,-3],[-1,-12],[-9,-10],[-3,-16],[4,1],[3,-15],[-9,-1],[-1,-15],[-6,-14]],[[4771,6788],[-11,-2],[-7,19],[-17,-2],[-1,-13]],[[4735,6790],[-1,-34],[-2,-6],[15,-1],[8,-6],[7,-15]],[[4762,6728],[9,12]],[[4771,6740],[6,13]],[[4777,6753],[-1,28],[-5,7]],[[4556,6629],[-1,-9],[-7,-9],[-7,-20],[-6,15],[-7,3],[-7,12],[-7,-3],[-11,9],[-4,-4],[-10,5],[2,-9],[-11,-2]],[[4480,6617],[-9,-5],[-1,-13],[5,-4],[-6,-11],[5,-16],[4,-42],[-4,-10],[2,-15]],[[4476,6501],[5,-9],[30,2],[2,-6],[9,6]],[[4522,6494],[0,12],[6,3],[7,14],[9,-4],[11,16],[3,10],[17,12],[5,-6],[10,5],[-6,20],[4,-1],[0,11],[-6,7],[0,11],[-14,13],[-4,12],[-8,0]],[[4836,5918],[-11,21],[-16,5],[-7,-28],[-12,-1],[-8,-9],[-9,7],[-2,7]],[[4766,5923],[-2,-5],[2,-23],[-9,-4],[-3,11],[-5,3],[1,-15],[-4,-2],[5,-11],[-6,-4],[0,-16],[12,-8],[5,-10],[2,7]],[[4764,5846],[8,-11],[16,8],[3,-8],[5,3],[2,13],[9,-2],[-1,20],[-12,9],[-3,28],[6,0],[3,-10],[7,2],[22,0],[7,20]],[[4568,5878],[-11,2],[-4,11],[-11,-15],[-4,-16]],[[4538,5860],[15,-38],[5,0],[2,-14],[5,-1],[0,-20],[-9,-5],[-12,-13],[8,-7],[-7,-10],[4,-15],[-12,-7],[-1,-24],[4,-11],[-9,-1],[-6,-20],[2,-9],[7,-3],[8,-10],[27,1],[5,-2],[2,10],[24,-2],[14,3],[9,9],[-3,17],[1,15],[-3,3],[2,13],[-3,7],[-14,8],[-14,18],[2,8],[-6,6],[3,15],[-2,21],[-5,-1],[3,18],[-6,1],[9,13],[-1,7],[-9,11],[1,9],[-8,8],[-2,10]],[[4300,7534],[-10,2],[0,-13],[6,-10],[-2,-10],[-13,-4],[0,9],[-13,2],[-10,-7],[-15,-14],[-4,-9],[-19,-23],[4,-17],[-4,-14],[-9,-14],[-3,-17],[-4,-1],[-2,-29],[-9,-15],[-6,6],[-6,-6],[1,-8],[-9,-10],[-7,0],[-6,-14]],[[4160,7318],[9,2],[5,-11],[6,0],[-1,-16],[6,-16],[12,3],[18,-21],[6,-3]],[[4221,7256],[5,3],[0,16],[-4,5],[2,10],[14,7],[-2,-10],[7,8],[13,3],[14,-12],[8,19],[2,12],[6,9],[12,-3],[9,2],[4,11],[9,-10],[6,6],[9,-3],[17,14]],[[4195,7373],[0,0]],[[4193,7367],[0,0]],[[4200,7382],[0,0]],[[4287,7544],[0,0]],[[4200,7376],[0,0]],[[4208,7408],[0,0]],[[4269,7517],[0,0]],[[4193,7371],[0,0]],[[4202,7378],[0,0]],[[4218,7455],[0,0]],[[4202,7380],[0,0]],[[4183,7354],[0,0]],[[4210,7409],[0,0]],[[4288,7539],[0,0]],[[4187,7357],[0,0]],[[4202,7385],[0,0]],[[4218,7427],[0,0]],[[4242,7499],[0,0]],[[4188,7357],[0,0]],[[4203,7388],[0,0]],[[4196,7367],[0,0]],[[4200,7378],[0,0]],[[4243,7497],[0,0]],[[4200,7381],[0,0]],[[4245,7495],[0,0]],[[4183,7354],[0,0]],[[4188,7357],[0,0]],[[4770,6953],[-4,-34],[3,-3]],[[4769,6916],[9,-11],[0,-12],[7,7],[-3,-12],[8,-1],[4,-13]],[[4794,6874],[2,9],[13,4],[6,6],[0,12],[7,9]],[[4744,6630],[9,-6],[-5,-12],[0,-11],[6,-5],[1,-9],[-4,-15]],[[4751,6572],[5,-6],[19,0],[4,-15]],[[4779,6551],[9,1],[6,-7],[7,5],[0,7],[11,1],[9,8]],[[4836,6707],[-2,18],[-11,-3],[-8,4],[-11,12],[-10,2],[-6,9],[-17,-9]],[[4762,6728],[2,-14],[-6,-2],[-3,-24],[3,-12],[-5,-18],[-4,-5],[0,-11],[-5,-12]],[[4994,6521],[-3,-12],[-7,5],[1,-12],[-6,-16],[6,-8],[8,-2],[-1,-13],[-12,-10]],[[4980,6453],[2,-18],[17,-6],[1,9],[14,-8],[10,-10]],[[5024,6420],[5,-5],[11,5],[-8,15],[0,11],[11,-1],[-3,7],[4,15],[-4,4],[4,11],[7,6],[-6,5],[2,16],[4,-3],[14,2],[10,8],[2,23]],[[5077,6539],[-3,-3],[-13,6],[-4,-7],[-17,9],[3,7],[-23,9],[-2,-10],[-10,-1],[-5,6]],[[5003,6555],[0,-20],[-13,-3],[4,-11]],[[4983,6987],[-5,21],[-6,3],[-8,-5],[-4,11]],[[4960,7017],[-20,1],[4,-43]],[[4944,6975],[-3,-19],[5,-9],[15,-6],[6,-10]],[[4842,7392],[7,4],[9,13],[8,1],[12,11],[9,1],[3,-10],[12,14],[2,29],[13,-12],[4,-10],[9,19],[8,-5],[6,-24],[17,-2],[11,8],[7,-13],[11,-1],[4,-19]],[[4994,7396],[9,3],[2,10],[-7,6],[6,17]],[[5004,7432],[-7,-2],[-1,13],[-10,25],[-1,15],[-11,23],[0,14],[-9,28],[-10,-6],[2,-12],[-5,6],[-9,-3],[-5,-8],[-6,6]],[[4932,7531],[-6,2],[0,8],[-13,7],[-5,8],[-5,-6],[-6,2],[-9,14],[-7,0],[-14,14],[0,18],[-9,-11],[-4,3]],[[4854,7590],[-7,3],[-1,-29],[-15,-9],[-3,-10],[7,-11],[1,-9],[-8,-2],[-5,-9],[-4,2],[-10,-21],[5,-13],[12,-13],[8,-22],[-5,-11],[-5,4],[-1,-13]],[[4823,7427],[6,-4],[11,1],[-7,-14],[8,-5],[-9,-4],[2,-10],[8,1]],[[4691,6911],[16,7],[10,13],[10,7],[20,-2],[6,-3],[2,-11],[14,-6]],[[4747,7009],[-5,9],[2,8],[8,11]],[[4752,7037],[-10,3],[-5,-8],[-7,2],[-9,-14]],[[4721,7020],[-9,-20],[3,-14],[-15,-17],[-10,-25]],[[4794,6874],[4,-9]],[[4798,6865],[7,-3],[3,-25]],[[4808,6837],[9,-12]],[[4817,6825],[2,13],[13,14],[-1,20],[4,-3]],[[4835,6869],[-3,42],[2,6]],[[4502,7084],[8,1],[12,-17],[3,-17],[9,-3],[0,17],[16,0],[13,6]],[[4518,7141],[6,-9],[-7,-6],[-7,-16],[-10,-1],[5,-19],[-3,-6]],[[5136,6451],[-6,-4],[4,-11],[-5,2],[-3,-11],[0,-17],[5,-4],[-2,-19]],[[5194,6117],[5,2],[-2,12],[4,6],[11,2],[7,10],[2,17],[9,7],[-6,13],[5,6],[8,-4],[2,16],[-5,4],[14,24],[12,7],[-1,12],[17,14],[-1,21],[3,10],[6,-1],[6,9],[5,-1]],[[5247,6478],[-9,5],[-9,15],[-9,3],[0,-10],[-10,-28],[-5,-5],[-13,-1],[-13,-9],[-9,7],[2,12],[-7,9],[-1,-9],[-10,2],[-2,8],[-8,-8],[5,-7],[-13,-11]],[[4531,7228],[-1,19]],[[4530,7247],[-8,3],[-14,-17]],[[4500,6658],[-9,-15],[-15,-6],[-8,14],[-5,1]],[[4463,6652],[4,-14],[8,-11],[5,3],[0,-13]],[[4556,6629],[7,16],[8,-7],[0,9],[9,8],[3,8],[-6,17],[2,11],[-5,5]],[[4842,7392],[3,2],[10,-10],[4,-19],[-6,-2],[-2,-13],[4,-4],[4,-24]],[[4859,7322],[10,3]],[[4869,7325],[2,10],[5,-9],[8,-1],[5,4],[3,-6],[7,6],[3,-14],[24,-6]],[[4926,7309],[5,20],[18,8],[1,6]],[[4950,7343],[-3,11],[3,3],[-2,33],[-5,6],[4,3],[11,-9],[6,3],[4,9],[11,-4],[13,-17]],[[4992,7381],[3,9]],[[4995,7390],[-1,6]],[[4845,7132],[-5,12],[-9,5],[-3,-3],[-16,3]],[[4805,7101],[3,-19]],[[4808,7082],[14,5],[1,18],[8,7],[7,-5],[3,-12],[10,0]],[[4851,7095],[3,7],[-2,11],[-7,19]],[[4322,6988],[-4,-1],[-2,-20],[-3,-3],[3,-17],[-11,-8],[-1,-11],[3,-11],[-5,2],[-12,-8],[2,-7],[-7,-11],[4,-13],[-7,-7],[5,-2],[-3,-12],[-11,-5],[-3,-9],[-6,3],[-5,-8],[-17,5],[3,14],[-9,0],[-1,13],[5,2],[-1,12],[-5,8],[-10,-3],[-9,3],[-4,-18],[4,-5],[-18,-9],[1,-16],[-6,2]],[[4192,6848],[1,-29],[-7,-7],[2,-20],[-5,-12],[-3,-22],[17,1],[0,5],[10,-6],[4,-13],[14,-13],[7,0]],[[4232,6732],[5,21],[6,5],[10,-10],[9,2],[7,12],[1,-5],[11,-3],[4,-8],[8,-1],[19,11],[0,-17],[8,1],[2,-11],[6,-2],[11,-18],[1,-27],[14,5],[5,-6]],[[4377,6751],[-4,0],[-9,12],[-8,16],[1,13],[-4,-2],[0,11],[-5,7],[7,11],[0,13],[-6,0],[0,18],[-9,5],[11,14],[0,11]],[[4845,7132],[4,15],[7,5]],[[4856,7152],[2,10],[5,3],[-2,23],[6,6],[-2,10],[1,18],[-5,9],[0,14],[-6,-3]],[[4855,7242],[-5,-11],[-4,3],[-9,-14],[-6,-1],[-2,-12],[-6,-2],[-5,8],[-13,-5],[-6,-12],[4,-4]],[[4970,6461],[2,21],[-6,-3],[-8,15],[-1,-9],[-10,-9],[3,12],[-4,4],[-14,-3],[1,8],[-11,8]],[[4922,6505],[-3,-2],[-6,-27],[-5,0],[-5,-16]],[[4903,6460],[5,-22],[4,-5],[6,4],[0,-13],[6,7],[2,-12],[5,6],[6,-2],[0,-11],[9,-8],[0,-16]],[[4946,6388],[9,13],[0,10],[6,2]],[[4961,6413],[-7,10],[15,23],[1,15]],[[4482,6114],[0,-9],[6,-13],[2,-20],[-6,-7],[-17,10],[-9,-7],[-2,-11],[-15,12],[-11,2]],[[4430,6071],[-2,0],[3,-24],[-2,0],[1,-32],[-3,-12],[3,-5],[4,-36],[5,-5],[-2,-11],[5,-13],[-1,-9],[13,-21],[-2,-13],[1,-19]],[[4453,5871],[8,1],[3,-7],[1,-22],[4,-9],[11,-5],[2,9],[11,9],[-4,-23],[2,-6],[-9,-5],[4,-8],[-5,-11],[4,-11],[13,-3],[8,5],[6,-15],[10,2],[0,14],[5,4],[2,15],[-4,8],[1,14],[-4,2],[-2,25],[-5,-1],[0,12],[17,-11],[6,6]],[[4568,5878],[4,19],[0,22],[9,16],[1,16],[6,16],[6,-28],[0,-25],[5,-14],[-6,-22],[3,-11],[8,-13],[2,-36],[7,-23],[0,-14],[5,-24],[8,-2],[1,-7],[25,11],[10,-6],[6,2]],[[4668,5755],[3,18],[5,0],[1,26],[7,26],[-11,12],[-3,37],[-11,-2],[-2,18],[2,8],[12,9],[-5,15],[-5,6],[-5,19],[-2,17],[-12,24]],[[4642,5988],[-4,-2],[0,-15],[-8,-6],[-1,9],[-7,1],[-3,-9],[-7,0],[-5,13],[-11,2],[-2,38],[8,7],[5,11],[-1,8],[-11,7]],[[4486,6888],[-6,11]],[[4944,6975],[-9,-1],[-7,-15],[2,-10],[-3,-16],[-11,-11],[-9,-1],[-9,3]],[[4898,6924],[8,-14],[15,1],[6,-20],[10,8]],[[4937,6899],[2,-8],[6,12],[13,-13],[-1,-10],[5,-7]],[[5219,6042],[10,4],[9,-4]],[[5238,6042],[6,2],[2,9],[8,-4],[7,7],[6,15],[9,6],[10,19],[0,11],[12,-6],[5,5],[9,-4],[2,44],[4,1],[4,13],[5,-4],[3,10]],[[4782,7654],[-12,12],[-4,-1],[-10,11],[-15,-5],[-5,8]],[[4736,7679],[-8,-8],[-15,-3],[-7,12]],[[4700,7533],[6,-5],[14,5],[9,-9],[0,-11],[6,0],[1,-30]],[[4736,7483],[9,-3],[1,6],[10,-3],[2,-11],[6,-5],[10,-1],[3,5],[-3,11],[2,10],[-7,3],[-4,8],[9,5],[0,14],[5,3],[-5,12],[-3,19],[8,6],[3,11],[-6,0],[2,20],[-8,-3],[-1,17],[-4,13],[-7,4],[4,8],[16,0],[4,22]],[[4960,7017],[0,3]],[[4960,7020],[2,12],[-4,10],[-13,-2],[-17,17]],[[4928,7057],[-11,0],[6,5],[-4,11],[-8,-5],[-6,-14],[2,-3],[-12,-8],[-20,-4]],[[4875,7039],[-9,-2],[-11,6],[-6,-9]],[[4834,6917],[16,-4],[3,-8],[10,11],[12,-1],[6,9],[9,3],[8,-3]],[[4127,6857],[11,-11],[11,-15],[7,-28],[0,-13],[-6,-12],[-9,-7]],[[4141,6771],[6,-4],[2,-13],[4,0],[1,-23],[13,-16],[8,5],[3,-11],[-3,-17],[10,-29],[-1,-6],[9,-6],[9,-14]],[[4202,6637],[5,18],[8,5],[2,26],[11,9],[1,8],[6,0],[3,9],[0,15],[-6,5]],[[4192,6848],[-4,7],[-10,-8],[-10,8],[-2,17],[-6,-3],[-2,8]],[[4137,6840],[0,0]],[[4221,7256],[0,-9],[5,-5],[10,-31],[-1,-11],[-5,-6],[5,-11],[8,10],[4,-2],[0,-14],[11,-3],[16,11],[3,-23],[10,-2],[11,-8],[4,-15],[7,-7],[10,0],[0,-9],[11,-9],[12,6],[1,-8],[6,-4]],[[4945,7183],[-3,11],[3,16],[-6,8],[4,10],[-6,3],[-12,-1],[-8,19],[5,13],[-1,7],[9,18],[-8,17],[4,5]],[[4869,7325],[2,-14],[7,-10],[-6,-9],[1,-15],[-7,-24],[5,-3],[0,-11],[-5,-6],[1,-33],[6,0],[4,-10],[9,-5],[0,-25],[3,-14]],[[4889,7146],[9,-3]],[[4898,7143],[19,6],[6,6],[5,-3],[5,16],[12,15]],[[4757,6827],[2,-8],[12,2],[0,5],[9,3]],[[4780,6829],[11,2],[2,10],[7,4],[8,-8]],[[4798,6865],[-15,1],[-8,-18],[-15,-9],[-3,-12]],[[4744,6630],[-10,-12],[-11,12],[0,-17],[-8,-1],[-5,-9],[-10,2],[-3,-8],[-10,10],[-3,8],[-18,1]],[[4666,6616],[2,-7],[-5,-15],[8,-6],[-1,-13],[-11,3],[-4,8],[0,-11],[-6,-1],[5,-17],[2,-24],[11,-22]],[[4667,6511],[5,13],[14,9],[7,-14],[7,-1],[0,7],[12,-6]],[[4712,6519],[17,3],[-2,9],[9,12],[8,25],[7,4]],[[5138,6662],[-1,-12],[4,1],[2,-28],[-4,-4],[0,-41],[2,-14],[6,-2]],[[5147,6562],[4,13],[27,-2],[6,-8],[10,0],[6,6],[9,-11],[3,3]],[[5024,6420],[0,-13],[6,-16],[2,-13],[6,2],[6,-6]],[[5136,6451],[-4,4],[-2,26],[-3,8],[-11,9],[-2,27],[2,9]],[[5116,6534],[-3,7],[-8,1]],[[5105,6542],[-7,-11],[0,9],[-5,2],[-16,-3]],[[5102,6650],[-6,-6],[7,-6],[2,-16],[7,-15],[-4,-5],[4,-8],[-5,-18],[0,-24],[-2,-10]],[[5116,6534],[9,4],[1,9],[8,-9],[13,16],[0,8]],[[4452,6718],[0,0]],[[4452,6718],[-11,-14],[-15,7],[8,-14],[-3,-17],[9,-2],[4,4],[9,-5]],[[4453,6677],[4,-9],[-4,-12],[10,-4]],[[4467,6742],[-3,-2],[-8,-28],[-4,6]],[[4644,6297],[-1,15],[5,12],[-6,5],[-3,16],[14,1],[-1,13],[11,3],[0,9]],[[4663,6371],[-3,-2],[-9,9],[-13,7],[0,7],[-7,1],[-6,8]],[[4625,6401],[0,-10],[-7,-4],[5,-16],[7,1],[1,-11],[-5,-3],[-2,-18],[-12,-12],[-2,5],[-11,-4],[-1,-9],[-7,-2],[0,-18],[-9,-1],[-4,-13],[-8,-3],[4,-18],[-7,-14],[4,-16],[9,-17],[-14,-22],[5,-6],[-2,-9]],[[4562,6956],[-1,-7],[-15,3],[-2,8],[-8,0],[2,-13],[-6,-19],[0,-9]],[[4590,6823],[3,-5]],[[4593,6818],[6,-6],[20,17],[9,4],[7,22]],[[4635,6855],[-4,0],[-12,-10],[-4,3]],[[5026,6666],[-3,2]],[[5023,6668],[-3,-5],[0,-19],[-20,-16],[-2,-17]],[[4998,6611],[-3,-17],[15,-16],[-5,-2],[-5,-16],[3,-5]],[[4775,7192],[-12,-1],[-4,8],[4,3],[3,14],[-8,8],[-1,12],[-6,3],[-5,-8],[-12,-1],[-9,12]],[[4689,7250],[-6,-16],[1,-17],[4,-1],[2,-13],[9,5],[-1,-12],[5,-11]],[[4202,6637],[2,-5],[13,1],[0,9],[11,-5],[11,7]],[[4239,6644],[5,-11],[17,-8],[3,-15],[16,-18],[1,-7],[12,2]],[[4293,6587],[8,4],[13,-2]],[[4314,6589],[1,16],[16,13],[-1,8],[16,10]],[[4346,6636],[4,0]],[[4836,5918],[6,11]],[[4842,5929],[2,9],[-17,16],[-1,25],[6,0],[4,11],[-8,13],[-8,-2]],[[4668,7250],[-12,-16],[-1,-14]],[[4655,7220],[6,2],[2,-11],[-13,0],[-12,-18],[10,-2],[5,-14],[-1,-14]],[[4653,6750],[2,13],[12,-3],[0,22],[4,10],[0,15],[4,1]],[[4675,6808],[-8,28],[3,7],[9,5],[-4,4],[-3,20]],[[4644,6863],[-1,-11],[-8,3]],[[4593,6818],[0,-6],[8,-4],[4,-13],[14,-15],[3,-11],[-8,-22],[6,-10]],[[4322,7050],[-12,4],[-8,11],[2,11],[-4,19],[-11,4],[-14,0],[-12,8],[-6,-6],[-10,1],[-12,-17],[1,-14],[-10,-9],[-4,3],[-15,-26],[-4,1],[-3,-12],[-12,1]],[[4823,7427],[-9,-9],[-5,6],[-5,-8],[-4,7],[-9,0],[-1,-18]],[[4790,7405],[5,-1],[2,-12],[-9,-12],[-10,-9],[4,-3],[0,-14],[-7,-1],[-5,-14],[-8,1],[0,-18],[-5,-4],[2,-15],[-10,-8],[-1,-22],[11,-11],[-8,-1],[-7,12],[-8,-6],[-4,3]],[[4855,7242],[-2,14],[6,8],[0,9],[-6,11],[5,13],[1,25]],[[4655,7220],[-6,13],[-7,-11],[-2,9],[-5,0],[0,-14],[-10,11],[-11,-4],[-5,-5],[0,11],[-13,-5],[-3,-5],[-10,7]],[[4583,7227],[5,-11],[-1,-25],[-9,-3],[3,-19],[-3,-3],[0,-37]],[[4657,7084],[7,12]],[[4758,7374],[8,-6],[5,17],[0,11],[12,2],[7,7]],[[4854,7590],[2,30],[7,14],[-11,-2],[-2,14],[-4,-1]],[[4846,7645],[-6,1],[0,17],[-8,8],[-11,27],[-8,3],[-6,-4],[-11,-17],[-2,-20],[-4,-11],[-8,5]],[[4736,7483],[3,-17],[5,-11],[-4,-18],[10,-7],[-1,-12],[6,1],[5,-10],[-8,-19],[6,-16]],[[4502,7084],[6,-6],[5,-24],[-6,-18],[2,-18],[-4,-16],[-7,-7],[7,-9],[-2,-11],[-7,-2]],[[4675,7059],[7,-8],[16,2],[-1,6]],[[4503,7140],[2,-8],[-8,-15],[-13,-5],[5,-19],[-4,-14],[3,-3],[1,-25],[-9,3]],[[4980,6453],[-4,10],[-6,-2]],[[4961,6413],[12,-14],[-4,-44],[6,-9],[4,-20],[-6,-9],[4,-9],[-21,-4],[1,-16],[-7,0]],[[4950,6288],[-3,-10],[-13,-4],[-5,-28],[3,-5],[-9,-4]],[[4923,6237],[-1,-2]],[[4922,6235],[8,-4],[10,-20]],[[4940,6211],[1,33],[7,5],[5,-4],[5,13],[8,10],[8,1],[4,15],[11,8],[24,-10],[14,-20],[11,-7],[-2,-9],[7,-10]],[[4752,7037],[12,2],[12,4],[19,16],[5,8],[-17,1],[5,20]],[[4713,7067],[9,-10],[-4,-9],[0,-12],[4,-3],[-1,-13]],[[4970,6806],[-12,-11],[-6,2],[1,-14],[-9,8],[-3,12],[-9,-5],[-9,0],[-5,-7],[-3,16],[-15,4]],[[4900,6811],[-8,3],[4,-10],[-11,-4],[2,-14],[7,0],[-4,-10]],[[4900,6590],[12,14],[0,-8],[13,-10],[2,-7]],[[4927,6579],[3,3],[16,-7],[1,19],[12,0],[-1,11],[6,10],[6,-10],[-1,12],[4,7],[12,1],[8,-4],[5,-10]],[[5023,6668],[-6,3],[-1,8],[-8,5],[0,6],[-14,11],[-4,10],[3,29],[11,14]],[[4522,6494],[6,-9],[12,0],[0,-10],[13,-17],[9,10],[7,2],[-4,-12],[3,-2],[3,16],[20,-9],[3,4],[8,-4],[-2,-14],[7,-15],[17,-19],[1,-14]],[[4663,6371],[8,13],[5,-1],[1,-18],[14,-6],[0,7],[7,17]],[[4698,6383],[1,22],[-14,3],[-4,7],[-15,-8],[-1,4],[-15,4],[-3,9],[-7,-3],[-7,8],[1,23],[7,-9],[18,3],[0,29],[-7,1],[2,8],[9,8]],[[4663,6492],[4,8],[0,11]],[[4666,6616],[-5,18],[-7,13]],[[4875,7039],[9,22],[-6,0]],[[4878,7061],[-6,-5],[-1,6],[-10,0],[-2,-5],[-9,0],[-2,27],[3,11]],[[4808,7082],[0,-15],[4,-7],[0,-12]],[[4675,6808],[6,-7],[7,3],[4,8],[6,-4],[21,4],[5,4]],[[4724,6816],[1,5],[-9,14],[1,5],[11,0],[1,-7],[17,-5],[5,8],[6,-9]],[[4771,6788],[0,15],[8,0],[1,26]],[[4724,6816],[4,1],[0,-17],[5,0],[2,-10]],[[4511,7359],[1,-8],[12,-14],[10,8],[5,-2],[1,8],[5,-5],[11,-4],[-2,-13],[14,-11],[-4,-6],[10,0]],[[4574,7312],[18,3],[7,5],[0,15],[3,2],[16,-8],[5,8],[14,3],[3,8]],[[4640,7348],[-19,1],[2,10],[-8,3],[-19,1],[-7,10],[-11,1],[5,19],[7,9],[8,4],[-1,21]],[[4160,7318],[-14,-18],[1,-7],[-19,-37],[-4,-14],[-14,-31],[-11,-19],[-9,-23],[-17,-36],[-16,-55],[1,-44]],[[4777,6753],[9,1],[11,11],[5,10],[0,20],[7,5],[5,-3],[0,25],[3,3]],[[4583,7227],[-6,8],[-10,1],[-6,13],[3,14],[7,6]],[[4571,7269],[-2,4],[-22,-3],[-9,-3],[-1,-11],[-7,-9]],[[4665,7390],[9,-5],[8,17],[9,7],[-1,-7],[9,14],[13,10],[-4,15],[6,3],[2,14],[-9,11],[0,13]],[[4754,6089],[-2,15],[-10,0],[-4,8]],[[4738,6112],[-8,-4],[-2,5]],[[4728,6113],[-10,22],[-2,11],[-4,-2],[-1,12],[-9,-8],[-9,7],[1,8],[-14,0]],[[4664,6128],[11,-3],[1,-13],[11,-3],[0,-11],[-9,1],[2,-10],[12,-17],[-9,-7],[10,-7],[-4,-3],[-2,-17],[0,-25],[5,-11],[-1,-10]],[[4691,5992],[7,-4],[0,11],[18,1],[3,-4]],[[4937,6899],[-2,-31],[-7,-2],[-9,-16],[-14,2],[-9,-14]],[[4896,6838],[5,-16],[-1,-11]],[[4571,7269],[7,-5],[9,6],[1,11],[-14,31]],[[4665,7390],[-9,-2],[3,-14],[-2,-14]],[[4657,7360],[14,-9],[10,-11],[5,-11],[7,-3]],[[4714,7328],[14,6],[12,12],[6,-6],[18,13],[-6,6],[0,15]],[[4927,6579],[-8,0],[-3,-14],[2,-7]],[[4918,6558],[12,0],[5,-16],[7,1],[5,9],[6,-11],[6,5],[1,-12],[5,0],[10,-15],[11,5],[8,-3]],[[4856,7152],[6,-14],[14,-6],[13,14]],[[4657,7360],[-4,-1],[-1,-14],[-12,3]],[[4667,6942],[-4,18],[-11,-7],[-1,11],[-6,0],[2,11],[-12,9],[2,13],[-7,3]],[[4642,5988],[7,11],[8,4],[6,-3],[7,4],[7,-4],[1,-13],[9,-3],[4,8]],[[4940,6211],[1,-3]],[[4918,6558],[0,-23],[6,-11],[-7,-13],[5,-6]],[[4842,6543],[-13,-18],[7,-4],[1,-9],[-3,-22],[6,-24],[5,-12]],[[4845,6454],[1,8],[6,4],[10,-10],[5,10],[10,4],[0,10],[12,5],[2,-16],[9,-1],[3,-8]],[[4835,6869],[1,-3],[13,2],[1,-13],[6,2],[4,-9],[14,14],[7,0],[9,-10],[-4,-4],[4,-10],[6,0]],[[5872,7211],[-1,3],[-13,-10],[-4,3],[1,-10],[-12,-14],[-2,9],[-11,-3]],[[5830,7189],[2,-9],[9,0],[-12,-17],[-12,5],[-2,-24],[-16,-12],[-10,-5],[-6,-12]],[[5783,7115],[9,-5],[6,-11],[10,-10]],[[5808,7089],[1,0]],[[5809,7089],[4,9],[17,-2]],[[5830,7096],[2,14],[15,11],[-2,9],[16,-9],[3,-19],[11,5],[1,5],[11,1],[7,7]],[[5894,7120],[4,1],[-3,34],[-7,8],[-7,0],[-4,20],[3,25],[-8,3]],[[6172,7323],[-7,3],[-2,17]],[[6163,7343],[-11,-3]],[[6152,7340],[-20,-3],[-1,8]],[[6131,7345],[-2,6],[-6,-1]],[[6123,7350],[5,-13],[2,-17]],[[6130,7320],[5,-11],[6,3],[3,-17]],[[6144,7295],[6,6],[1,8],[6,-1],[0,7],[9,-3],[6,11]],[[5827,7016],[0,0]],[[5827,7016],[1,0]],[[5828,7016],[3,-10]],[[5831,7006],[16,12],[7,-2],[5,9],[13,8],[15,20],[10,-10],[-1,14]],[[5896,7057],[-1,22],[16,10],[-1,17],[-7,-2]],[[5903,7104],[-9,16]],[[5830,7096],[1,-11],[-6,-18],[3,-30],[-10,-14],[-4,-20]],[[5814,7003],[-2,-16],[8,8],[2,20],[5,1]],[[5872,7760],[-6,-8],[-4,11],[-9,-11],[-4,23]],[[5849,7775],[-4,-7],[-10,-7],[-5,-14],[-9,-3],[7,-8],[0,-11],[-7,-6]],[[5821,7719],[7,-6],[7,0],[4,-8],[4,6]],[[5843,7711],[8,8],[6,-6],[7,19],[10,7],[2,15],[-4,6]],[[5856,7780],[5,6],[-3,19],[1,15],[-5,-6],[-9,-2]],[[5845,7812],[4,-34],[7,2]],[[5838,7525],[0,-9],[-7,-10]],[[5831,7506],[0,-38],[4,-18],[14,-4],[-2,-8],[6,0],[-2,-9],[-10,1],[0,-11],[-7,-12],[-8,-5],[3,-23]],[[5829,7379],[-1,-9],[10,1]],[[5838,7371],[20,8],[13,15],[0,11],[13,5],[8,-2]],[[5892,7408],[9,7],[-5,8],[2,15]],[[5898,7438],[-7,9],[0,17],[5,8],[-2,11]],[[5894,7483],[-5,6],[-11,-3],[5,22],[-3,3],[-15,-3],[1,-14],[-13,3],[-1,25],[-4,9],[-3,-7],[-7,1]],[[5968,7582],[-12,-6]],[[5956,7576],[4,-3]],[[5960,7573],[11,-3]],[[5971,7570],[5,12],[-8,0]],[[5838,7525],[0,13]],[[5838,7538],[-4,15],[-5,6],[-13,3]],[[5816,7562],[-16,-1],[-11,5],[-2,-18],[2,-11],[-7,-3]],[[5782,7534],[3,-17],[4,-7],[0,-11]],[[5789,7499],[2,-8],[12,12],[2,-8]],[[5805,7495],[8,-9],[5,9],[11,5],[2,6]],[[5763,7772],[4,3],[0,16],[4,1],[0,22],[3,11],[7,2],[2,10],[22,0],[-3,20],[-6,8],[4,6]],[[5785,7878],[-7,-20],[-9,-10],[2,-11],[-7,-4],[-17,8],[-9,-2],[0,8],[-13,0],[-9,4],[-1,-6],[-12,-2],[-3,8],[-10,8],[-13,2],[-6,12]],[[5674,7786],[4,-3],[16,2],[0,-4],[15,-3],[0,-7],[6,-11],[4,11],[37,-3],[7,4]],[[6179,7572],[8,-4],[5,14],[6,-15],[13,0],[6,3],[9,-5],[10,10]],[[6236,7575],[1,5]],[[6237,7580],[-1,16],[4,-1],[0,19],[-4,6]],[[6236,7620],[-3,-5],[-10,0],[-5,6],[-10,-1],[-10,3],[-8,-2],[-1,10]],[[6189,7631],[-1,-10],[-7,-3]],[[6181,7618],[4,-4],[4,-16],[3,-2],[0,-12],[-13,-12]],[[6077,7152],[-1,16],[-6,-2],[-3,-15],[-8,11],[-5,-8]],[[6085,7115],[8,5],[3,7],[-4,11],[-15,14]],[[6118,7401],[0,-36],[6,2],[2,-7],[-3,-10]],[[6131,7345],[11,3],[8,6]],[[6150,7354],[0,5]],[[6150,7359],[0,8],[6,10]],[[6156,7377],[-7,7],[-19,8],[-12,9]],[[5960,7573],[0,-9]],[[5960,7564],[12,2],[-1,4]],[[6021,7388],[-3,-18],[-8,-3]],[[6010,7367],[7,-13]],[[6017,7354],[2,-8],[12,7],[7,-14]],[[6038,7339],[7,-2],[10,9]],[[6055,7346],[-1,19],[-4,0],[-2,17],[-4,3]],[[6044,7385],[-12,-8],[-11,11]],[[5820,7228],[0,-7],[6,0],[3,-16],[-14,1],[2,-10],[11,3],[2,-10]],[[5872,7211],[7,11],[-3,8],[9,9]],[[5885,7239],[5,10],[8,4],[1,11]],[[5899,7264],[-12,9],[-7,-6],[-9,6],[-26,-23],[-11,-5],[2,-11],[-7,7],[-11,0],[2,-13]],[[6236,7620],[3,6],[1,23]],[[6240,7649],[-2,4]],[[6238,7653],[-11,7]],[[6227,7660],[-17,8],[-11,0],[-10,9],[-4,16]],[[6185,7693],[-7,-8]],[[6178,7685],[9,-22],[6,-6],[-5,-8],[4,-14],[-3,-4]],[[6208,7202],[-8,18],[-8,-4],[0,12],[5,8],[9,9],[-5,21],[4,4],[7,-17],[9,-17],[15,-5]],[[6228,7311],[2,-5],[-26,-22],[-8,-1],[-1,10],[-6,-7]],[[6189,7286],[8,-20],[-5,-4],[-2,13]],[[6190,7275],[-5,-6]],[[6185,7269],[-22,-19]],[[6163,7250],[3,-8],[7,8],[9,-5],[-7,-6],[4,-4],[-2,-11],[4,-24]],[[6181,7618],[-7,5]],[[6174,7623],[-4,-28]],[[6170,7595],[7,-22]],[[6177,7573],[2,-1]],[[5930,7547],[0,9],[12,-4]],[[5942,7552],[-3,10],[11,-3],[2,-9]],[[5952,7550],[0,9]],[[5952,7559],[-7,8],[-10,3],[-1,8]],[[5934,7578],[-4,12]],[[5930,7590],[-9,-1],[-1,7],[-19,-1],[0,3],[-11,0]],[[5890,7598],[17,-32],[9,-8],[2,-14]],[[5918,7544],[12,3]],[[5974,7541],[7,-2]],[[5981,7539],[6,14],[-8,0],[2,9],[-10,2],[1,-20]],[[5972,7544],[2,-3]],[[6084,7317],[5,-8]],[[6089,7309],[10,3]],[[6099,7312],[0,13],[-6,18],[1,6],[-9,-1]],[[6083,7346],[-1,-23],[2,-6]],[[5859,7621],[16,3]],[[5875,7624],[4,2]],[[5879,7626],[2,36],[4,5],[2,10],[7,3],[-5,11],[6,24]],[[5895,7715],[-4,-2],[2,16],[-2,9],[-9,8],[6,15]],[[5888,7761],[-6,3],[-10,-4]],[[5843,7711],[9,-34],[-9,-6],[1,-12]],[[5844,7659],[9,4],[0,-17],[12,-6],[-10,-8],[4,-11]],[[6175,7548],[-3,4]],[[6172,7552],[-12,-8]],[[6160,7544],[2,-14],[11,9],[2,9]],[[6035,7253],[-1,-15],[12,-4],[3,-10],[12,6]],[[6061,7230],[4,9]],[[6065,7239],[0,16],[-8,7]],[[6057,7262],[-7,-21],[-15,12]],[[6061,7281],[-3,-17]],[[6058,7264],[14,15],[3,-24],[4,0]],[[6079,7255],[2,8]],[[6081,7263],[4,4],[-2,10]],[[6083,7277],[-9,2],[-2,11],[6,3]],[[6078,7293],[-3,18]],[[6075,7311],[-11,9]],[[6064,7320],[0,-19],[3,0],[0,-26],[-6,6]],[[6222,7520],[-7,7],[-22,7],[-2,11],[-8,-6],[-1,11],[-7,-2]],[[6160,7544],[-7,20],[-6,4],[-1,10]],[[6146,7578],[-7,0],[-3,-9]],[[6139,7542],[7,-11],[-3,-4],[7,-19]],[[6150,7508],[9,0],[3,-8],[8,0],[0,10],[13,-13],[-2,12],[15,-13],[15,-3],[6,4],[5,23]],[[5987,7199],[2,17],[-11,5],[1,9],[-10,22],[-2,20],[-6,-8],[-9,-2],[-1,5],[-13,5]],[[5938,7272],[-9,-14],[6,-8],[-8,-14],[1,-12],[-9,3],[-8,-13]],[[5911,7214],[0,-24],[5,-5]],[[5916,7185],[7,1],[2,-6],[22,14],[2,-5],[14,-1],[14,8],[2,10],[7,-9]],[[5960,7542],[-8,8]],[[5942,7552],[6,-8]],[[5948,7544],[12,-2]],[[6165,7367],[-6,10]],[[6159,7377],[-3,-10],[4,-7],[-10,-1]],[[6150,7354],[3,-3],[-1,-11]],[[6163,7343],[2,17]],[[6165,7360],[0,7]],[[6186,7447],[-11,0],[-6,10],[-6,-2],[-12,17]],[[6151,7472],[2,-8]],[[6153,7464],[2,-14],[-8,-3],[-1,-12]],[[6146,7435],[16,-3],[4,8],[10,0],[10,7]],[[6159,7377],[-3,0]],[[6133,7464],[-1,-12],[-7,-8],[0,-8]],[[6125,7436],[4,-14],[12,-6],[5,10],[0,9]],[[6153,7464],[-16,-12],[-4,12]],[[5782,7534],[-8,-6],[-2,-17],[-20,-2],[-1,28],[-3,-4],[0,-22],[-10,3],[-1,8]],[[5737,7522],[-3,-12],[-10,1],[-6,-9],[-1,-13],[-7,-1]],[[5710,7488],[1,-8],[-3,-11],[6,-9],[0,-8],[18,-5]],[[5732,7447],[-4,8],[1,14],[6,19],[-2,15],[4,-4],[13,4],[0,-17],[9,-6],[13,0],[5,6],[9,2],[3,11]],[[6118,7401],[-6,3]],[[6112,7404],[-10,-8]],[[6094,7391],[3,-9],[-6,-25],[-5,0]],[[6099,7312],[0,0]],[[6099,7312],[3,0]],[[6102,7312],[8,23],[9,-6],[-2,-9],[4,-5],[9,5]],[[6209,7691],[-19,0],[-2,5]],[[6188,7696],[-2,-2]],[[6186,7694],[0,-1]],[[6186,7693],[-1,0]],[[6227,7660],[-14,31],[-4,0]],[[6067,7207],[0,14],[-6,9]],[[6035,7253],[0,8],[-6,-5],[-10,7],[-5,-5],[0,-11]],[[6053,7189],[6,-3],[4,11],[5,0],[-1,10]],[[6125,7193],[0,-11],[-13,14],[0,22],[-9,-4],[-4,-7],[0,-13],[-5,-11]],[[6094,7183],[1,-7],[9,-11],[-22,-5],[-5,-8]],[[6010,7500],[-8,-1]],[[6002,7499],[-7,-24],[0,-21],[2,-16]],[[5997,7438],[11,-5],[26,-4],[12,14]],[[6010,7367],[-8,7],[-5,-3],[-11,3],[-14,16]],[[5972,7390],[-4,0]],[[5968,7390],[-5,-6],[1,-8],[-7,-2],[2,-17]],[[5959,7357],[14,0],[3,5],[16,-5],[19,-8],[6,5]],[[6230,7451],[3,24],[-4,0],[-1,14],[10,33]],[[6238,7522],[-11,8],[-5,-10]],[[6150,7508],[-13,-23]],[[6137,7485],[11,-7],[3,-6]],[[6186,7447],[6,-3],[6,7],[11,-2],[4,-6],[17,8]],[[5930,7758],[0,3]],[[5930,7761],[-10,-3],[-5,-8],[-3,8],[-8,-3],[-6,5],[4,15]],[[5898,7784],[-2,-12],[-8,-11]],[[5895,7715],[2,-7],[13,4],[14,23],[1,15],[5,8]],[[5700,7541],[6,-13],[0,-35]],[[5706,7493],[4,-5]],[[5737,7522],[-5,6],[2,17],[-4,11]],[[5730,7556],[-11,0],[3,-4],[-18,-13],[-4,2]],[[5903,7384],[-5,21],[-6,3]],[[5838,7371],[-4,-3],[3,-9],[-1,-13],[7,-9],[5,-12],[-12,-27],[3,-1],[-2,-16],[5,-2]],[[5842,7279],[3,-7],[10,12],[4,14],[9,8],[-6,11],[9,8],[3,10],[8,-10],[7,3],[2,-10],[7,-1],[3,-11]],[[5901,7306],[7,3],[-6,13],[-7,6],[-3,12],[2,13],[-5,7],[13,8],[-9,5],[4,9],[6,2]],[[6034,7592],[-5,5]],[[6029,7597],[-3,-2]],[[6026,7595],[-9,-1],[-23,-11],[-16,-1],[5,-20],[23,-4],[19,-8]],[[6091,7256],[4,10]],[[6095,7266],[-5,0],[1,-10]],[[6099,7312],[2,-7]],[[6101,7305],[1,7]],[[5969,7074],[-7,-7],[-8,-2],[-2,11],[-16,-1],[5,32],[-3,9],[7,0],[5,11],[18,-3],[-1,9],[15,5]],[[5916,7185],[3,-23],[-17,7],[-5,-3],[-6,6],[-1,-7],[19,-21],[-6,-4],[0,-36]],[[5896,7057],[6,-7],[0,-13]],[[6021,7388],[-5,11],[-5,0],[-5,10],[-1,15],[-7,5],[-6,-5]],[[5992,7424],[-9,-22]],[[5983,7402],[-11,-12]],[[5956,7353],[-9,6],[-5,23],[-4,0],[-14,14],[-3,-2],[-6,11],[1,-13],[-11,4],[-2,-12]],[[5901,7306],[1,-8],[12,-1],[0,-6]],[[5914,7291],[8,4]],[[5922,7295],[-2,16]],[[5920,7311],[5,15],[7,0],[10,11],[2,-16]],[[5944,7321],[13,14]],[[5957,7335],[-3,7],[2,11]],[[5842,7279],[-38,-15],[-2,8]],[[5802,7272],[1,-16],[7,-6],[3,-22]],[[5813,7228],[7,0]],[[5899,7264],[11,15],[-2,8],[6,4]],[[5955,7598],[5,0],[10,17]],[[5970,7615],[0,0]],[[5970,7615],[-7,27],[2,1]],[[5965,7643],[-14,0],[-5,6]],[[5946,7649],[5,-7],[5,-19],[-4,-13],[3,-12]],[[5972,7652],[-3,-9]],[[5969,7643],[3,9]],[[6174,7623],[-2,17],[-9,8]],[[6163,7648],[-11,-8]],[[6152,7640],[-6,-14],[-10,3],[-7,-8]],[[6146,7578],[2,8],[8,3],[13,11],[1,-5]],[[5972,7544],[-12,-5]],[[5960,7539],[-2,-5]],[[5958,7534],[0,-24],[-11,0]],[[5947,7510],[-1,-10],[9,-8],[-1,-13],[-12,-27]],[[5942,7452],[2,0]],[[5944,7452],[8,0],[21,-8],[0,-6],[19,-5]],[[5992,7433],[5,5]],[[6002,7499],[-7,-3],[-17,6],[-7,11],[-6,0],[0,17],[6,0],[3,11]],[[5967,7645],[2,-2]],[[5972,7652],[0,11],[4,0],[-2,22],[-3,3],[0,14],[10,5],[3,-8],[3,27]],[[5987,7726],[0,0]],[[5987,7726],[0,1]],[[5987,7727],[0,0]],[[5987,7727],[0,2]],[[5987,7729],[1,7]],[[5988,7736],[-1,0]],[[5987,7736],[-1,0]],[[5986,7736],[2,18]],[[5988,7754],[-7,26],[-4,3]],[[5977,7783],[0,1]],[[5977,7784],[0,0]],[[5977,7784],[-1,0]],[[5976,7784],[0,1]],[[5976,7785],[0,1]],[[5976,7786],[0,0]],[[5976,7786],[0,2]],[[5976,7788],[-1,1]],[[5975,7789],[0,3]],[[5975,7792],[-5,-4],[-5,-25],[-7,-5]],[[5958,7758],[0,-17],[-6,-2],[-4,-15]],[[5948,7724],[1,-3]],[[5949,7721],[1,-16],[2,-4],[-2,-13],[9,3],[4,-24],[-2,-5],[6,-9],[0,-8]],[[6083,7277],[6,7]],[[6089,7284],[-1,6],[-7,-3],[-3,6]],[[5960,7539],[0,3]],[[5948,7544],[-15,0],[-3,3]],[[5918,7544],[5,-7],[-4,-13],[12,-15],[13,1]],[[5944,7510],[4,20],[10,4]],[[5885,7239],[2,-17],[7,-6],[13,2],[4,-4]],[[5938,7272],[4,14],[16,-3],[-9,20],[-8,0],[-10,-11],[-1,6],[-8,-3]],[[5920,7311],[13,-7],[11,17]],[[6044,7385],[9,6],[2,7]],[[5992,7433],[0,-9]],[[6133,7464],[-8,3]],[[6112,7404],[2,26],[11,6]],[[6098,7298],[-3,-12],[-6,-2]],[[6081,7263],[3,-7],[7,0]],[[6095,7266],[4,-7],[8,3],[1,-12],[4,5],[-1,20]],[[6111,7275],[1,14],[-4,2]],[[6108,7291],[-7,-1],[-2,8]],[[6099,7298],[-1,0]],[[5959,7357],[-3,-4]],[[5957,7335],[21,-1],[1,-20],[9,1],[2,-25]],[[5990,7290],[20,-3],[11,24],[-4,4],[9,3],[8,-9]],[[6034,7309],[-3,12],[7,18]],[[6023,7545],[-18,6],[-13,2],[0,-16],[-11,2]],[[5967,7645],[-2,-2]],[[5970,7615],[9,-11],[25,0],[13,-4],[9,-5]],[[6029,7597],[-7,18],[0,25],[2,8]],[[6024,7648],[-3,8],[4,18],[-1,11]],[[6024,7685],[0,3]],[[6024,7688],[-10,14]],[[6014,7702],[-8,13],[-12,1],[-5,10]],[[5989,7726],[0,0]],[[5989,7726],[-1,0]],[[5988,7726],[0,0]],[[5988,7726],[0,0]],[[5988,7726],[-1,0]],[[5778,7205],[9,15],[7,-6],[2,17],[17,-3]],[[5802,7272],[-4,1],[3,-14],[-19,-3]],[[5782,7256],[-10,3],[0,8],[-11,-11]],[[5761,7256],[0,-32],[3,-11]],[[5764,7213],[3,-6],[11,-2]],[[6228,7340],[-5,3]],[[6223,7343],[-6,-6],[-6,5],[-10,-13],[-9,7],[-13,-4]],[[6179,7332],[2,-12]],[[6181,7320],[0,-9]],[[6181,7311],[4,0],[4,-13],[-5,-1],[5,-11]],[[6190,7275],[-5,8],[0,-14]],[[5741,7584],[3,2],[-6,12]],[[5738,7598],[-14,6],[-6,8],[-1,19],[-6,9]],[[5711,7640],[-20,-19],[-13,0]],[[5678,7621],[0,-17],[3,-1],[3,-17],[9,-6]],[[5693,7580],[10,-4],[6,8],[9,3],[16,-5],[7,2]],[[5983,7402],[-8,10],[-5,17],[-12,7],[-14,16]],[[5942,7452],[-4,9],[-14,-1],[-1,-13]],[[5923,7447],[19,3],[-1,-9],[-6,5],[1,-10],[7,-1],[1,-25],[5,0],[6,-14],[13,-6]],[[6178,7685],[-4,3]],[[6174,7688],[-2,-3]],[[6172,7685],[-1,-11],[6,-3],[2,-14],[5,-8],[-2,-7],[-7,-5],[-1,-14]],[[6165,7360],[6,8]],[[6171,7368],[-6,-1]],[[6137,7485],[-7,-2]],[[5831,7006],[-3,-9]],[[5828,6997],[1,0]],[[5829,6997],[0,-10]],[[5829,6987],[0,0]],[[5829,6987],[3,-9],[19,9]],[[5952,7598],[-14,-1],[-8,-7]],[[5934,7578],[21,4],[-1,4]],[[5954,7586],[-2,12]],[[5956,7576],[-2,10]],[[5952,7559],[8,5]],[[5829,7379],[-6,-3],[7,-17],[-10,14],[-18,-6]],[[5802,7367],[1,-16],[-12,0],[-7,-11],[0,-17],[5,-6],[-9,-10],[2,-21],[5,-13],[-5,-17]],[[6181,7311],[2,-13],[-10,-6],[-3,-12],[-5,7],[-8,-8],[3,-16]],[[6160,7263],[3,-13]],[[6177,7326],[4,-6]],[[6179,7332],[-2,-6]],[[5944,7510],[3,0]],[[5776,7655],[14,-3],[6,-7],[11,-2],[7,9],[16,-1],[-10,12]],[[5820,7663],[-9,13],[-8,17]],[[5803,7693],[-15,5],[-6,9],[-9,-5],[-3,-8],[13,-18],[-8,-13],[1,-8]],[[5693,7580],[-6,-10],[2,-11],[11,-18]],[[5730,7556],[-1,11],[6,-1],[6,18]],[[5804,7730],[8,3],[8,-4],[1,-10]],[[5849,7775],[7,5]],[[5845,7812],[-9,4],[4,34],[-11,6],[1,14],[-7,2],[2,6]],[[5763,7772],[2,-4],[24,-10],[10,-28],[5,0]],[[6139,7235],[-1,9],[5,12],[-2,8],[8,9]],[[6149,7273],[-5,22]],[[6102,7312],[4,-3],[2,-18]],[[6111,7275],[14,3],[5,-8],[0,-11],[-14,-7],[3,-10],[6,0],[7,-11]],[[5637,7744],[3,-3],[16,0],[10,13],[16,-2],[-1,-11],[6,-14],[19,8],[6,12],[13,-9],[2,-16],[3,-4],[-2,-16],[5,-4],[-4,-13],[4,-5],[-8,-18],[-8,-9]],[[5717,7653],[14,1]],[[5731,7654],[17,9],[3,8],[6,-2],[1,-13],[14,-5],[4,4]],[[5803,7693],[7,15],[-6,8],[0,14]],[[6172,7552],[-3,13]],[[6169,7565],[-8,-1],[-3,15],[-12,-1]],[[6160,7263],[-7,-2],[-4,12]],[[5763,7107],[6,2],[11,11],[3,-5]],[[5778,7205],[9,3],[-13,-14],[-9,-18],[-1,-36],[4,-16],[-10,3],[1,-26],[4,6]],[[5731,7654],[4,-6],[-3,-22],[4,-1],[2,-27]],[[5738,7598],[10,13],[6,3],[11,-2],[4,6],[11,-6],[8,3],[0,-19],[11,1],[6,6],[5,-13],[5,-4],[3,-13],[-2,-11]],[[5838,7538],[0,4],[9,-6],[2,9],[-5,8],[11,9],[0,10],[-8,6],[10,3],[1,17],[-3,23],[4,0]],[[5844,7659],[-4,-8],[-2,19],[-18,-7]],[[5923,7447],[2,-4],[-7,-13],[2,-20],[-9,-4],[0,18],[-5,-2],[-8,16]],[[5949,7721],[-1,-8],[-7,-2],[-8,-9],[-8,3]],[[5925,7705],[3,-20],[-9,-11],[2,-3],[0,-26]],[[5921,7645],[10,-5],[0,12],[14,4],[1,-7]],[[5958,7758],[-12,-19],[2,-15]],[[6169,7565],[8,8]],[[5952,7598],[3,0]],[[5921,7645],[-6,1],[0,-15],[-6,1],[-20,-6],[-10,0]],[[5875,7624],[4,-3]],[[5879,7621],[8,-1],[4,-13],[-1,-9]],[[6058,7264],[-1,-2]],[[6065,7239],[12,0],[2,16]],[[6177,7326],[-5,-3]],[[6223,7343],[-9,24],[3,14],[6,6],[2,12],[7,14]],[[6232,7413],[-4,3],[-20,-31],[-20,-8],[-1,-9],[-16,0]],[[6172,7685],[-6,-8]],[[6166,7677],[0,0]],[[6166,7677],[-2,-15]],[[6164,7662],[-1,-14]],[[6061,7281],[-3,6],[-21,8],[-3,14]],[[5990,7290],[2,-26],[8,-15]],[[6094,7183],[-10,7],[0,34],[-8,-4],[-1,-14],[-8,1]],[[5968,7582],[2,33]],[[6232,7413],[-3,6],[8,17],[-7,-3],[0,18]],[[6238,7522],[2,3]],[[6240,7525],[-5,9],[-2,30],[3,9]],[[6236,7573],[0,2]],[[6062,7351],[15,6]],[[6055,7346],[7,5]],[[5879,7621],[1,-7],[-5,-13],[5,-5],[-2,-20],[10,-28],[6,-4],[1,-22],[7,-9],[-1,-16],[-6,0],[-1,-14]],[[5930,7761],[8,14],[3,19],[-3,9]],[[6098,7298],[-12,-3],[-1,13],[4,1]],[[6084,7317],[-9,1],[0,-7]],[[6062,7351],[2,-8],[-3,-15],[3,-8]],[[6099,7298],[2,7]],[[5759,7402],[2,13],[10,3],[4,6],[12,0],[-1,16],[5,7],[7,30],[9,8],[-2,10]],[[5732,7447],[15,-18],[-6,-11],[2,-19],[8,0]],[[5751,7399],[8,3]],[[5925,7705],[3,13],[2,40]],[[5759,7402],[5,-3],[0,-14],[8,-3],[6,6],[-1,11],[8,3],[3,-21],[14,-14]],[[5717,7653],[-6,-13]],[[5975,7792],[-1,0]],[[5974,7792],[0,3]],[[5974,7795],[-9,14]],[[5613,7721],[8,-13],[5,-1],[3,-10],[6,0],[-1,-17],[4,1],[-1,-12],[5,-4],[-2,-9]],[[5640,7656],[8,-1],[8,-10]],[[5656,7645],[6,-2],[3,-9],[12,-6],[1,-7]],[[5751,7399],[-8,-3],[2,-17],[-10,-14]],[[5735,7365],[-5,-6],[-1,-16]],[[5729,7343],[0,-18],[-6,-16]],[[5723,7309],[-3,-4],[4,-15]],[[5724,7290],[6,-3],[17,3],[5,-4],[9,-13],[0,-17]],[[5408,7413],[-6,13],[0,10],[-11,1],[-1,7],[-11,5]],[[5379,7449],[-8,-8],[-10,3],[-10,-3]],[[5351,7441],[6,-22]],[[5357,7419],[10,-1],[6,-11],[-4,-11],[12,-14],[4,-8],[6,2],[4,8],[12,-3],[1,32]],[[4967,7629],[2,6],[19,0]],[[4988,7635],[-3,8],[-1,26],[-2,0],[1,22],[-2,13],[-6,9],[-3,27],[6,21],[7,10],[0,14],[4,12],[9,9]],[[4998,7806],[-1,13],[-13,6],[-10,-5],[-2,22],[-5,-5],[-17,10],[0,38],[-7,1],[0,7],[9,7],[1,9],[-23,9],[-4,10],[-5,-11],[-8,-5]],[[4913,7912],[-8,-8],[-6,-12],[-9,-5],[1,-50],[2,-20],[-8,-18],[7,-14],[-7,-18],[-4,0],[4,-24],[-3,-2],[0,-19],[7,-3],[2,-7],[8,-10]],[[4899,7702],[8,-11],[8,0],[2,13],[6,1],[1,-17],[9,-11],[9,2],[4,-12],[9,-11],[0,-16],[4,-11],[8,0]],[[5504,7166],[3,24],[-9,9]],[[5498,7199],[-10,26],[4,6],[-1,11]],[[5491,7242],[-3,-3],[-13,5],[-6,-6]],[[5469,7238],[0,-38],[-7,-7]],[[5462,7193],[0,-10],[6,3],[14,-11],[0,-20],[2,-11]],[[5484,7144],[6,11]],[[5287,7003],[0,19],[5,0],[-2,18]],[[5290,7040],[-1,8],[-13,22],[-9,26]],[[5267,7096],[-15,14],[-13,-7],[6,-15],[-6,-15],[-4,-2]],[[5235,7071],[-2,-9],[3,-8],[9,-11],[-1,-18],[-4,-8]],[[5700,7314],[6,-8],[13,0],[4,3]],[[5729,7343],[-9,7],[-14,-1],[-9,-15],[-2,-13]],[[5695,7321],[5,-7]],[[5109,7547],[-4,9],[2,11],[-7,23],[-6,4],[3,6],[-13,32],[4,10],[-15,34],[0,22],[-6,9],[6,9],[15,0],[9,9],[2,-9],[13,6],[2,11]],[[5114,7733],[-10,22]],[[5104,7755],[-3,-11],[-7,-1],[-8,10],[3,5],[0,16],[9,4],[1,7],[-11,15],[-26,11],[-23,3],[-16,-14],[-4,9],[-21,-3]],[[4988,7635],[9,8],[-4,6],[6,3],[-2,8],[16,3],[4,-9],[0,-17],[-7,-6],[0,-13],[6,-20],[-1,-9],[10,-10],[3,10],[11,-2],[7,-21]],[[5046,7566],[6,4],[2,-8],[6,3],[11,-20],[6,10],[12,-2],[7,-12],[5,7],[8,-1]],[[5681,7287],[8,4],[3,10],[9,8],[-1,5]],[[5695,7321],[-6,-3],[-5,10],[-9,0]],[[5675,7328],[-13,-8]],[[5662,7320],[9,-8],[5,-20],[5,-5]],[[4689,7828],[7,15],[13,19],[12,-4],[2,12],[6,1],[6,-9],[14,20],[-7,14],[-1,19],[8,9],[16,-4],[0,-13]],[[4765,7907],[15,0],[15,7],[-9,18],[-1,20],[-4,10],[3,10],[12,-7],[9,9],[9,-4],[10,2],[3,18],[11,0],[0,9],[8,15],[28,-3],[9,-3],[13,16],[10,-10]],[[4906,8014],[2,10],[10,6],[19,-2],[3,7],[-2,10],[5,2],[-2,17],[-15,6],[0,35],[2,4]],[[4928,8109],[-5,8],[4,28]],[[4927,8145],[-46,-33],[-17,-14],[-14,-9],[-25,0],[-2,-8],[-8,0],[-21,-14],[-13,-1],[-14,-8],[-12,-11],[-7,3],[-6,-9],[-32,-22],[-11,-11],[-5,-18],[-1,-17],[-14,-39],[-4,-16],[-14,-20],[-20,-22],[-4,0],[7,-17]],[[4644,7859],[20,-1],[1,-15],[12,-12],[12,-3]],[[5309,7503],[4,25],[-10,11],[-9,17],[2,12]],[[5296,7568],[-4,8],[5,6],[1,15],[-7,12],[2,19],[5,15],[-6,3],[-4,25],[2,3]],[[5290,7674],[-13,8],[-12,-6],[0,-11],[-15,-2],[-2,-10],[-5,-1],[-8,-14]],[[5235,7638],[12,-13],[-3,-15],[-4,-6],[-1,-28],[-4,-3],[6,-12],[-2,-13],[-6,-9],[-7,0],[-2,-8],[6,-1],[-2,-8],[10,-8],[-13,-5],[-4,2]],[[5221,7511],[6,-14],[6,0]],[[5233,7497],[8,8],[14,5],[4,-8],[10,0],[7,7],[3,-12],[9,0],[6,9],[15,-3]],[[5214,7859],[4,31],[3,5]],[[5134,8089],[5,-8],[0,-14],[-12,-3],[-20,-6],[-13,0],[3,17],[-6,2],[-3,-10],[-8,0],[-9,5],[2,23],[-18,5],[-5,5],[-10,-2],[3,23],[-8,2],[0,9],[-22,6],[-1,-14],[-6,-10],[-7,9],[-5,-2],[-2,-20],[-8,3],[-9,8],[-1,15],[-9,-1],[-13,-8],[3,-15],[-16,1],[-1,7],[-10,-7]],[[4906,8014],[0,-23],[10,-15]],[[4916,7976],[0,4],[15,6],[10,-3],[8,10],[12,6],[3,12],[10,0],[5,-6],[9,2],[0,7],[18,-6],[2,8],[8,3],[1,-12],[6,-20],[9,-11],[16,3],[2,-7],[7,2],[9,-5],[-2,-11],[4,-2],[-1,-18],[6,-9],[8,5],[6,-3],[-2,-11],[4,-2],[1,-14],[-5,-8],[7,-23],[12,3],[3,-17],[15,-1],[1,-5],[-6,-14],[2,-8]],[[5119,7831],[9,-3],[6,3],[12,-4],[4,15],[15,17],[10,-9],[5,1],[11,-8],[6,11],[17,5]],[[5011,6983],[-6,29]],[[5005,7012],[-6,8]],[[4999,7020],[-27,-2],[-12,2]],[[5023,7444],[1,11],[-5,8],[2,14],[-3,3],[11,9],[-1,22],[5,6],[-1,14],[4,3],[1,14],[9,7],[0,11]],[[4967,7629],[-7,-9],[-2,-11],[-12,-6],[-3,-16],[-9,-11],[-4,3],[1,-12],[-4,-9],[5,-14],[-5,-7],[5,-6]],[[5004,7432],[7,11],[12,1]],[[5474,7562],[4,0],[6,18],[2,26],[8,12],[14,-6],[6,12],[8,5],[13,26],[-4,5],[5,8],[0,14],[-13,40],[3,13]],[[5526,7735],[-9,4],[-6,11],[-1,-7],[-12,-2],[-6,17],[-9,-3],[-5,-19],[-8,-9],[-21,20],[-3,8],[-19,6],[-3,-1]],[[5424,7760],[-6,-20],[7,-10],[-1,-17],[4,-1],[1,-14]],[[5429,7698],[1,-10],[9,0],[1,-8],[-9,-23],[13,-1],[-1,-7],[10,-4],[4,-13],[8,-3],[-11,-28],[-2,-9],[5,-9],[7,-1],[2,-10]],[[5466,7572],[8,-10]],[[4680,7729],[3,4],[-4,11],[7,10],[10,2],[-2,10],[6,8],[0,15],[-8,11],[1,9],[-4,19]],[[4644,7859],[-3,-11],[-13,-20]],[[4913,7912],[-10,14],[-11,9],[5,11],[10,0],[-1,17],[10,13]],[[4765,7907],[0,-8],[-5,-1],[5,-12],[2,-31],[-2,-8],[18,-2],[-6,-12],[0,-11],[6,-8],[-9,-31],[-7,-5],[-10,-25],[6,-6],[-3,-17],[-9,-14],[5,-3],[-6,-14],[-10,-5],[-4,-15]],[[4846,7645],[4,15],[4,-4],[2,12],[13,15],[7,-12],[11,3],[5,19],[7,9]],[[5303,7183],[-1,10],[9,7],[21,4],[3,20],[-1,11]],[[5334,7235],[-2,13]],[[5332,7248],[-11,2],[-12,9],[5,14],[-6,8],[-8,3],[-5,-4],[-6,4],[0,11],[-9,-2],[1,10]],[[5281,7303],[-5,-2],[-1,-10],[-6,-2],[-9,6],[-3,-3]],[[5257,7292],[3,-12],[0,-16],[4,-2],[-2,-18],[5,-16],[5,-1],[0,-9],[-5,-2],[3,-30]],[[5270,7186],[13,8],[9,-8],[11,-3]],[[5754,7090],[0,0]],[[5754,7090],[1,-1]],[[5755,7089],[0,0]],[[5755,7089],[0,7],[8,11]],[[5764,7213],[-14,-5],[-2,-6],[-8,-2]],[[5740,7200],[-9,-4],[3,-16],[-10,2],[-8,9],[-8,-6],[3,-22],[8,-11],[0,-22],[-9,-4],[-10,4]],[[5700,7130],[-2,-9],[5,-11],[21,-3],[14,-3],[5,-14]],[[5743,7090],[7,-5],[4,5]],[[5426,7151],[18,-3],[4,4],[-4,34]],[[5444,7186],[-3,10],[-7,-4],[0,12],[-7,-4],[-9,7],[-8,-3]],[[5410,7204],[-11,1]],[[5399,7205],[1,-56]],[[5400,7149],[1,-1]],[[5401,7148],[0,0]],[[5401,7148],[9,-5],[7,8],[9,0]],[[4965,7182],[14,4],[4,7]],[[4983,7193],[2,7]],[[4985,7200],[-2,14],[8,20],[2,35],[-6,-2],[-19,12],[-1,36],[-3,14],[-8,13],[-6,1]],[[4945,7183],[6,6],[13,3],[1,-10]],[[5450,7098],[31,29],[3,17]],[[5462,7193],[-18,-7]],[[5426,7151],[1,-25]],[[5109,7228],[-1,8],[6,12],[6,33]],[[5120,7281],[2,14],[-2,9],[9,8],[-4,9],[-1,13]],[[5124,7334],[-1,8],[-8,11],[-1,-22],[-14,0],[-10,5],[-2,10]],[[5088,7346],[-6,2],[-2,-16],[5,-6],[3,-25],[0,-20],[5,-12],[-3,-10],[0,-14],[-3,-7]],[[5087,7238],[9,-7],[8,5],[5,-8]],[[5491,7242],[1,25],[5,2],[13,15],[0,11],[5,11]],[[5515,7306],[4,23],[-6,10],[-5,-2],[-13,22],[-2,8],[-9,-2],[-3,9],[-10,-9],[-1,-8]],[[5470,7357],[5,0],[0,-17],[-10,-23],[0,-14],[-5,-2],[1,-17],[4,-7],[-2,-8]],[[5463,7269],[6,-7],[0,-24]],[[5038,7073],[5,11],[15,7]],[[5058,7091],[-2,14],[-8,2],[1,13],[8,7],[-4,8]],[[5053,7135],[-13,6],[-6,-3],[-11,3]],[[5023,7141],[-5,-3],[0,-14],[3,-15],[4,-5],[-14,-17]],[[5011,7087],[16,-19],[11,5]],[[5176,7219],[7,16],[7,7],[7,0],[17,22]],[[5214,7264],[-5,6],[-12,36],[2,3],[-14,9]],[[5185,7318],[0,-14],[-6,-3],[2,-7],[-7,-10],[-14,6],[-8,-1],[-5,5],[-7,-3],[0,-12],[-5,-12]],[[5135,7267],[7,-12],[12,1],[3,13],[16,-2],[0,-42],[3,-6]],[[5146,7189],[11,-3],[15,4],[0,14],[6,9]],[[5178,7213],[-2,6]],[[5135,7267],[-15,14]],[[5109,7228],[6,-4],[2,-13],[4,3],[3,-10],[-7,-4],[5,-8],[10,-2],[8,7],[6,-8]],[[5377,7148],[14,9],[3,-11],[6,3]],[[5399,7205],[-5,1],[-15,12],[0,6],[-7,-2],[-15,2]],[[5357,7224],[-6,-21],[6,-14],[11,-3],[-8,-9],[-4,-25]],[[5356,7152],[21,-4]],[[5132,7005],[14,17],[3,-8]],[[5149,7014],[9,9],[0,20],[8,14],[12,11]],[[5178,7068],[0,0]],[[5178,7068],[6,3]],[[5184,7071],[2,10],[-9,11],[-3,10]],[[5174,7102],[-29,4],[-2,-22],[-10,-8]],[[5133,7076],[-5,-2],[0,-13],[-5,-27],[6,0],[3,-29]],[[5356,7816],[-6,14],[4,4],[-4,27],[-4,8],[0,10],[4,5],[-3,23],[-4,0],[-4,13],[0,11]],[[5214,7859],[7,-5],[4,-12],[10,-11],[13,-28],[0,-8],[7,-3],[8,10],[0,-13],[5,-1],[1,-24],[5,-10],[17,-19],[0,-11],[4,-11],[-3,-23],[6,-5]],[[5298,7685],[8,5],[-4,18],[4,2],[8,17],[7,9],[-2,11],[8,0],[0,14],[3,22],[17,23],[9,10]],[[5121,7000],[11,5]],[[5133,7076],[-3,13]],[[5130,7089],[-11,-1],[-15,-10],[-19,4],[-8,-11],[-14,3]],[[5063,7074],[-3,-7],[4,-10],[-6,-17],[-1,-9],[4,-8]],[[5061,7023],[7,7],[12,-7],[7,7],[14,-24]],[[5101,7006],[15,-2],[5,-4]],[[5700,7130],[-8,5]],[[5696,6975],[2,-3]],[[5698,6972],[2,0]],[[5700,6972],[10,6]],[[5710,6978],[14,9],[5,10],[20,20],[0,11],[-9,18],[-7,8],[11,7],[-1,29]],[[5281,7303],[2,9],[6,5]],[[5289,7317],[-2,25]],[[5287,7342],[-7,26],[-6,14],[-6,2],[-10,-6],[0,-7],[-9,-3],[-1,-8]],[[5248,7360],[-1,-14],[-11,0]],[[5236,7346],[4,-28],[-4,-6],[3,-18]],[[5239,7294],[18,-2]],[[5192,7524],[2,7],[10,14],[0,10],[-6,14],[-1,11],[-7,4],[2,13],[6,9],[4,17]],[[5202,7623],[-11,9],[-4,-1],[-8,9],[-4,-11],[-10,3],[-4,11]],[[5161,7643],[-6,-11],[-1,-25],[-5,-3]],[[5149,7604],[1,-20],[-3,-22]],[[5147,7562],[2,-28],[8,7],[-7,-24],[4,-3],[10,3],[12,10],[16,-3]],[[5617,7204],[5,17],[-4,13],[8,5],[5,-5],[10,18]],[[5641,7252],[3,17],[6,10],[-3,5],[1,21],[5,18]],[[5653,7323],[-6,9],[-7,-3],[-17,10],[0,12],[7,11],[-7,9],[-2,17],[3,6]],[[5624,7394],[-15,24],[6,9]],[[5615,7427],[0,14],[-13,-1],[-15,-7],[-7,14],[-11,8],[-7,-3]],[[5562,7452],[-6,-15],[0,-11],[-14,-10],[-5,-18],[0,-27],[1,-1],[2,-28]],[[5540,7342],[11,-3],[9,6],[4,-2],[-5,-25],[-8,-11],[0,-18],[12,-23]],[[5563,7266],[21,4],[2,-17],[-8,-17],[21,-5],[2,-7],[13,1],[3,-21]],[[5202,7623],[11,-2],[6,7],[1,10],[6,8],[9,-8]],[[5290,7674],[8,11]],[[5119,7831],[-3,-15],[-5,-3],[-2,-18],[-3,-3],[1,-32],[-3,-5]],[[5114,7733],[10,0]],[[5124,7733],[5,2],[7,18],[11,-9],[8,8],[-1,-33],[-4,-3],[7,-11],[0,-22],[4,-40]],[[5377,7148],[10,-10],[-2,-14],[3,-11]],[[5357,7224],[-13,1],[-3,11],[-7,-1]],[[5303,7183],[2,-8],[-4,-6],[17,-11]],[[5318,7158],[5,5],[22,-5],[11,-6]],[[5526,7735],[11,11],[1,11]],[[5538,7757],[-1,18],[4,10],[-4,27],[5,11],[-5,3],[3,14],[0,22],[6,30],[-2,32],[-6,0],[9,16]],[[5356,7816],[10,-3],[17,7],[10,-3],[11,-8],[3,-9],[8,-5],[2,-28],[7,-7]],[[5343,7354],[7,11],[10,6],[2,17]],[[5362,7388],[1,16],[-4,5]],[[5359,7409],[-9,-4],[-4,5],[-10,-12],[-8,-2],[2,-8],[9,0],[0,-8],[-8,-18]],[[5331,7362],[12,-8]],[[5498,7199],[7,9]],[[5505,7208],[9,10],[8,24]],[[5522,7242],[0,0]],[[5522,7242],[8,8],[-4,17],[2,42]],[[5528,7309],[-13,-3]],[[5668,7245],[2,35],[5,-1],[6,8]],[[5662,7320],[-4,-5],[-5,8]],[[5641,7252],[6,-10],[9,3],[12,0]],[[5037,7012],[19,-1],[5,12]],[[5063,7074],[-5,17]],[[5038,7073],[-4,-14],[-8,-8],[7,-5],[3,-15]],[[5036,7031],[5,-6],[-4,-13]],[[5091,7157],[8,9],[-1,11],[-8,16],[-13,-2],[-6,-8],[-6,8]],[[5065,7191],[-5,-3],[-1,-47]],[[5059,7141],[12,-11],[8,5],[-1,9],[13,13]],[[5313,7138],[0,9],[5,11]],[[5270,7186],[-11,4],[-22,-8],[-9,8],[-7,-14],[-6,1],[-1,-20]],[[5214,7157],[2,-5],[10,9],[-1,8],[18,-3],[13,-12],[4,9],[8,0],[2,-15],[8,3],[10,-10]],[[5288,7141],[3,8],[12,5],[4,-13],[6,-3]],[[4965,7104],[1,28],[4,3],[-5,23],[-6,5],[6,19]],[[4898,7143],[-1,-16],[6,0],[-5,-11],[1,-11]],[[4899,7105],[4,-1]],[[4903,7104],[1,9],[10,0],[3,7],[4,-8],[14,7],[9,10],[6,-2],[0,-18],[6,-6],[9,1]],[[5660,7488],[6,-10],[12,0],[7,5],[3,11]],[[5688,7494],[-4,14],[3,9],[-20,3],[-1,8],[-8,5]],[[5658,7533],[-19,0],[-4,-17],[1,-14]],[[5636,7502],[15,-14],[9,0]],[[5668,7388],[3,25],[4,11],[-17,13],[-4,7],[1,39],[5,5]],[[5636,7502],[-2,-10],[4,-6],[-4,-5],[2,-20],[-10,-12],[-2,-11],[-9,-11]],[[5624,7394],[7,-10],[0,4],[12,6],[25,-6]],[[5373,7351],[0,0]],[[5373,7351],[-1,13],[-4,1],[1,23],[-7,0]],[[5343,7354],[6,-3],[7,-14]],[[5356,7337],[4,-11],[15,6],[-5,16],[3,3]],[[5455,7376],[9,11],[1,-8],[4,13],[8,7],[-9,31],[15,0],[-3,7],[2,21],[9,11],[-1,8]],[[5490,7477],[-4,18],[-2,29],[-3,26],[-7,12]],[[5466,7572],[-9,-11],[-16,3],[-7,-6],[0,-7],[-13,-9],[0,13],[-9,-10],[-22,0]],[[5390,7545],[-5,0],[0,-20],[4,-9],[-5,-5],[0,-22],[-4,-12],[2,-5],[-3,-23]],[[5408,7413],[13,-5],[13,14],[0,-14],[5,-26],[8,-5],[1,5],[7,-6]],[[5740,7200],[1,17],[-20,5]],[[5721,7222],[-6,-5],[-7,7],[0,14],[-10,-2],[-2,-8],[-19,3],[-9,14]],[[5617,7204],[-1,-21],[4,-3],[-5,-26],[-4,-2]],[[4878,7061],[-2,26],[10,6],[13,0],[0,12]],[[5133,8221],[-18,13],[-21,-18],[-16,-12],[-10,-2],[-48,-24],[-8,0],[-27,-14],[-16,-2],[-5,-4],[-15,-1],[-22,-12]],[[5410,7204],[-7,9],[10,20],[5,26],[10,5],[14,0],[0,-5],[15,-6],[-2,11],[8,5]],[[5470,7357],[-13,-8],[-6,11],[-1,8],[5,8]],[[5357,7419],[2,-10]],[[5356,7337],[-1,-9],[-6,-7]],[[5349,7321],[2,-23],[13,-4],[-8,-10],[-1,-6],[-8,11],[-10,6],[-2,-8],[1,-20],[-5,-11],[1,-8]],[[5313,7138],[13,-8],[3,-6],[12,-3],[4,-11],[11,3],[8,-7]],[[5124,7733],[-11,-25],[-3,-17],[5,-48],[3,-14],[8,-8],[5,-12],[18,-5]],[[5214,7264],[14,-1],[12,4],[-1,27]],[[5236,7346],[-5,13],[-11,6],[-14,-3],[-3,8],[-7,-7]],[[5196,7363],[-5,1],[-7,-10]],[[5184,7354],[-6,-15],[2,-13],[5,-8]],[[5429,7698],[-19,-17],[-6,0],[-7,-25],[0,-17],[-7,-4],[-3,-39]],[[5387,7596],[7,-9],[3,-18],[-4,-4],[-3,-20]],[[5111,7506],[-3,-3],[-9,-28],[-6,-7],[1,-24],[-7,-17],[7,-14],[2,-14]],[[5096,7399],[17,17],[13,-6],[13,0],[0,20],[4,11],[-1,14],[-18,13],[-6,12],[-7,26]],[[5192,7524],[2,-4]],[[5194,7520],[12,-6],[6,8],[9,-11]],[[5203,7026],[-4,10],[-2,-10],[-7,7]],[[5190,7033],[-5,-10],[-2,-17],[-7,0],[-3,-8]],[[5173,6998],[6,-4],[0,-16],[5,-1],[1,-25],[8,-5]],[[5735,7365],[-12,14],[-16,3],[-17,-2]],[[5690,7380],[-2,-12],[-5,-6],[-5,-22],[-7,-3],[4,-9]],[[5005,7012],[14,7],[17,12]],[[5011,7087],[-9,-11],[0,8],[-9,5],[-9,-1]],[[4984,7088],[4,-37],[10,0],[-2,-26],[3,-5]],[[5267,7096],[5,0],[6,11],[3,13],[-3,13],[10,8]],[[5214,7157],[-6,3],[-3,-11]],[[5205,7149],[4,-15],[5,0],[10,-30],[4,-3],[-2,-19],[9,-11]],[[5115,7517],[5,2],[9,17],[1,9],[7,11],[10,6]],[[5109,7547],[5,-8],[1,-22]],[[5184,7354],[-6,0],[-9,6],[-8,-12],[-16,-2],[-9,-17],[-12,5]],[[5351,7441],[-15,8],[-6,-5]],[[5330,7444],[-6,-1],[-12,-11],[-9,1],[-4,-10],[-16,4],[-6,-8],[-8,0],[-12,-7],[-2,-6],[-18,-4]],[[5237,7402],[-2,-6],[11,-9],[-5,-19],[7,-8]],[[5287,7342],[5,3],[-2,15],[30,-3],[11,5]],[[5205,7149],[-8,-1]],[[5197,7148],[-2,-11],[-6,-2],[-6,-15],[1,-7],[-10,-11]],[[5184,7071],[5,-14],[-5,-9],[1,-15],[5,0]],[[5053,7356],[6,15],[9,8]],[[5068,7379],[2,8],[-6,9],[6,19],[-3,3],[2,15],[-17,-10],[-8,1],[-21,20]],[[4995,7390],[4,-9],[11,-7],[7,-10],[22,-11],[14,3]],[[5173,6998],[-7,8],[-15,2],[-2,6]],[[5121,7000],[1,-11],[8,-5],[9,-17],[-17,-14],[2,-6],[-5,-6]],[[5196,7149],[4,19],[-3,8],[10,6],[-3,3],[1,21],[-19,10],[-8,-3]],[[5146,7189],[-4,-28]],[[5142,7161],[6,-3],[10,10],[2,-14],[16,-5],[9,-9],[11,9]],[[5290,7040],[12,10],[12,-10],[-3,-23],[12,-14],[0,-11],[12,2],[1,-16],[5,9],[6,-1]],[[5505,7208],[19,3],[4,7],[13,-1],[0,16],[10,9],[3,14],[9,10]],[[5540,7342],[-3,-14],[-5,-6],[-4,-13]],[[5349,7321],[-23,2],[-3,-5],[-25,-9],[-9,8]],[[4928,7057],[1,25]],[[4929,7082],[-18,3],[-3,-4],[-5,23]],[[5047,7234],[6,-4]],[[5053,7230],[5,1],[-3,11],[5,0],[8,20],[15,-9],[4,-15]],[[5088,7346],[6,5],[-1,12],[-8,4],[-11,-16],[-4,8],[-5,-5],[-12,2]],[[4992,7381],[-2,-33],[9,-11],[8,2],[8,-7],[19,0],[-4,-12],[2,-20],[4,-16]],[[5036,7284],[8,-7],[6,-35],[-3,-8]],[[4963,7085],[2,19]],[[4929,7082],[26,0],[8,3]],[[5538,7757],[5,-7],[14,4]],[[5330,7444],[-1,10],[-5,1],[-5,19],[-8,9],[2,6],[-4,14]],[[5233,7497],[9,-19],[-6,-12]],[[5236,7466],[0,-19],[-6,-7]],[[5230,7440],[0,-14],[9,-11],[-2,-13]],[[5721,7222],[1,9],[-7,16],[10,15],[-1,28]],[[5688,7494],[18,-1]],[[5656,7645],[2,-25],[-3,-31],[11,-5],[0,-15],[-5,-7],[0,-11],[-7,-4],[4,-14]],[[5387,7596],[-6,2],[-4,-8],[-8,-3],[-2,11],[-7,-4],[-11,1],[-1,8],[-9,0],[-4,12],[-6,-5],[-2,-23],[-5,-6],[-11,-6],[-1,-10],[-14,3]],[[5068,7379],[4,1],[0,13],[17,-1],[7,7]],[[5111,7506],[4,11]],[[5053,7135],[6,6]],[[5065,7191],[-14,3],[-4,6],[9,14],[-3,16]],[[5047,7234],[-13,8],[-26,-11],[1,-20],[4,0],[-1,-11],[-7,0],[-10,-17]],[[4995,7183],[19,-7],[-4,-11],[1,-13],[11,-3],[1,-8]],[[5132,7140],[10,21]],[[5091,7157],[14,-5],[5,-14],[11,3],[-1,-7],[12,6]],[[5098,7163],[0,0]],[[5082,6941],[-7,14],[4,19],[-2,7],[13,-1],[6,4],[5,22]],[[5037,7012],[0,-25],[2,-15],[7,-8],[13,-3],[1,-6]],[[5194,7520],[-11,-31],[-6,-3],[1,-11],[13,-11]],[[5191,7464],[5,-4],[2,9],[15,-11],[14,-1],[0,12],[9,-3]],[[5230,7440],[-17,-10],[-1,-14],[-8,-14],[1,-8],[-10,-2]],[[5195,7392],[1,-29]],[[4983,7193],[5,-10],[7,0]],[[5036,7284],[-20,-7],[-2,4],[-14,-5],[-1,-6],[9,-15],[-2,-13],[-7,-11],[1,-12],[-9,-15],[-6,-4]],[[5569,7509],[0,11],[5,11],[2,20],[-4,25],[8,11],[-2,10],[6,29],[-1,19],[3,10],[12,2],[3,-8],[3,-34],[0,-11],[11,5],[5,16],[11,7],[9,24]],[[5490,7477],[2,6],[17,3],[1,11],[-4,8],[10,11],[2,9],[10,0],[3,5],[-12,9],[14,27],[-2,-21],[11,-1],[3,-19],[10,0],[14,-16]],[[5197,7148],[-1,1]],[[5132,7140],[3,-2],[1,-19],[-8,0],[0,-7],[7,-13],[-5,-10]],[[5690,7380],[-12,-1],[-10,9]],[[5569,7509],[-5,-14],[7,1],[-6,-19],[3,-11],[-6,-14]],[[5195,7392],[-14,4],[1,9],[9,11],[-8,8],[8,40]],[[4984,7088],[-10,-1],[-6,-8],[-5,6]],[[5992,7844],[10,14],[8,7],[2,-14]],[[6012,7851],[5,10],[-1,15],[2,14],[-3,3],[-2,21],[-10,1]],[[5976,7850],[2,0]],[[5978,7850],[9,8],[5,-14]],[[6174,7688],[-6,19],[-12,4],[-4,8],[-7,5]],[[6145,7724],[-6,-5]],[[6139,7719],[-2,-20]],[[6137,7699],[10,-14]],[[6147,7685],[6,-1],[7,-22],[4,0]],[[6211,7870],[2,11]],[[6213,7881],[-1,12],[4,16],[-2,20],[3,-1],[-4,23],[2,4]],[[6215,7955],[-7,3]],[[6208,7958],[-8,-9]],[[6200,7949],[-2,-11],[-7,-3],[-9,-20]],[[6182,7915],[0,-17],[-3,-9],[7,1],[0,-6],[12,-5]],[[6198,7879],[4,0]],[[6202,7879],[9,-9]],[[6158,7770],[10,11],[-3,5],[9,0]],[[6174,7786],[-1,6]],[[6173,7792],[-5,17]],[[6168,7809],[-5,-3],[-2,11],[3,10],[-3,7]],[[6161,7834],[-17,-1],[-5,8],[7,21],[-9,-3],[1,-22],[-9,21],[2,17],[-11,1],[-3,9]],[[6117,7885],[-6,5],[-3,-6]],[[6108,7884],[7,-26],[7,-5],[1,-11],[-11,-9],[-1,4],[-18,4],[3,-13],[-3,-11],[6,-8],[-3,-26]],[[6096,7783],[11,-15],[0,-18],[9,10]],[[6116,7760],[9,7],[12,0],[6,8],[4,14],[11,-19]],[[5999,7792],[2,7]],[[6001,7799],[-9,-4],[-8,22],[-7,0],[-2,6],[10,10],[-7,17]],[[5988,7754],[1,10],[10,28]],[[6145,7724],[5,3],[-5,9],[0,22],[2,6],[11,6]],[[6116,7760],[3,-11],[-3,-11],[5,-8],[7,0],[11,-11]],[[6061,7660],[4,11],[-1,23]],[[6064,7694],[1,14],[-4,-4],[-7,22],[3,1]],[[6057,7727],[-5,6]],[[6052,7733],[-4,-17],[-7,3],[-10,-17],[1,11],[-5,0],[7,9],[-3,4],[5,18],[-7,0],[-11,-14]],[[6018,7730],[-4,-28]],[[6024,7648],[6,1],[7,11],[16,-3],[-3,14],[11,-11]],[[6057,7727],[14,11],[4,9]],[[6075,7747],[1,6]],[[6076,7753],[-5,17],[4,4],[1,14],[-12,7],[-2,-7]],[[6062,7788],[-1,-20],[-6,-4]],[[6055,7764],[1,-15],[-4,-16]],[[6080,7614],[-10,35],[-9,11]],[[6173,7792],[9,6],[10,0],[6,7],[2,-7]],[[6200,7798],[12,2],[-8,16],[4,20]],[[6208,7836],[3,7],[0,27]],[[6202,7879],[-4,-7],[2,-15],[-5,-12],[7,-8],[-10,0],[-2,-14],[-6,-3],[-1,-7],[-15,-4]],[[6064,7694],[17,22]],[[6081,7716],[3,19],[-4,-2],[-5,14]],[[6072,7840],[-4,3],[-2,14],[10,30],[-5,22],[-4,-3],[-11,8]],[[6056,7914],[-6,-13],[-6,9],[-9,-7],[0,-10],[-6,0],[1,-15],[-3,-3],[4,-16],[6,-8],[12,5]],[[6049,7856],[-4,6],[10,-5],[4,4],[0,-13],[7,-1],[0,-11]],[[6066,7836],[6,-5],[0,9]],[[6198,7879],[-10,-12],[-14,-11],[5,-11],[-8,-15],[-10,4]],[[5999,7792],[6,-3],[6,13],[7,10],[-1,14]],[[6017,7826],[-7,5],[2,20]],[[5992,7844],[18,-24],[-8,-11],[-1,-10]],[[6018,7730],[-7,14],[1,6],[12,8],[7,11],[1,12]],[[6032,7781],[3,8],[-7,10],[6,7]],[[6034,7806],[-2,17],[-15,3]],[[6209,7691],[-10,11],[3,3],[6,24],[-10,7],[-6,14]],[[6192,7750],[-1,7],[-6,-3]],[[6185,7754],[-4,7],[-5,-14],[5,-6],[-4,-15],[6,-7],[5,-23]],[[6059,7816],[-1,12]],[[6058,7828],[-5,0],[-2,25],[-2,3]],[[6056,7914],[-8,10],[2,11],[17,-3],[-10,12],[1,5]],[[6034,7806],[25,10]],[[6055,7764],[-9,-3],[-1,-8],[-7,2],[0,9],[5,13],[-11,4]],[[6182,7915],[-5,-1],[-5,7],[-1,14],[-8,2],[-14,11]],[[6149,7948],[-7,-13],[-10,-7],[1,-15],[-9,-9],[-1,-15],[-6,-4]],[[6103,7635],[14,28],[1,11]],[[6118,7674],[-1,9]],[[6117,7683],[-5,18],[-20,4],[-7,11],[-4,0]],[[6226,7725],[-7,11]],[[6219,7736],[-3,-1],[-6,21],[-5,-9],[-13,3]],[[6238,7653],[-6,7],[-3,21],[-4,6],[-1,15],[-9,11],[1,6],[9,-11],[3,3],[-2,14]],[[6152,7640],[-7,2],[-1,18],[-8,-14],[-1,13],[-4,-4],[-3,11]],[[6128,7666],[-10,8]],[[6108,7884],[-9,-2],[-5,-31],[-9,-10],[-1,6],[-12,-7]],[[6066,7836],[-8,-8]],[[6059,7816],[4,-11],[-1,-17]],[[6076,7753],[9,-1],[9,12],[2,19]],[[6149,7948],[-2,15],[-6,3]],[[6141,7966],[-15,0],[-1,14],[-9,5],[0,6],[-15,23]],[[6128,7666],[8,3],[11,10],[0,6]],[[6137,7699],[-7,-3],[-6,12],[-4,-1],[-3,-24]],[[6185,7754],[-1,18]],[[6184,7772],[-10,14]],[[6218,7743],[-3,13],[-6,5],[-3,14],[-4,13]],[[6202,7788],[-18,-16]],[[6219,7736],[-1,7]],[[6202,7788],[-2,10]],[[4233,5788],[-5,5],[3,18],[-9,-3],[-9,16],[6,9],[3,24],[-4,6]],[[4218,5863],[-16,7],[-9,-1],[-2,35],[-8,14],[-19,-8],[-10,-1],[-5,4]],[[4149,5913],[-3,-22],[-9,2],[-2,-21],[-8,-16],[-5,1],[0,9],[-5,1],[-15,-10],[2,-15],[-4,-1],[0,-21],[-10,-3],[-6,3],[-4,-13],[-9,5],[-11,-10],[3,25],[-12,-13],[5,-7],[-2,-11],[-9,-9],[-7,2],[-4,-10],[-4,3],[-9,-6],[-4,-9],[-3,-19]],[[4014,5748],[13,-12],[13,19],[0,11],[18,1],[3,12],[13,-5],[7,11],[10,-18],[0,-28],[-5,-5],[2,-15],[-8,-1],[3,-18]],[[4083,5700],[19,2],[0,18],[7,31],[36,-1],[0,-9],[7,-2],[5,16],[9,11],[8,0],[7,-14],[13,-2],[5,-10],[-6,-15],[9,0],[5,-23]],[[4410,6566],[-3,7],[10,9],[0,6],[-8,4],[-5,-3],[-3,15]],[[4401,6604],[-8,-5],[-7,14],[-11,0],[-1,10],[-12,-10],[-16,23]],[[4314,6589],[3,-9],[9,-8],[-1,-8],[12,-12],[-1,-11],[4,-6],[-5,-4],[5,-6],[9,-2],[-4,-22]],[[4345,6501],[6,15],[1,12],[9,20],[1,-13],[-7,-13],[5,-1],[16,-12],[-1,-9]],[[4375,6500],[14,12],[-9,14],[17,13],[3,18],[6,-1],[4,10]],[[4401,6604],[5,22],[11,-1],[3,-13],[16,1],[-2,17],[6,4],[5,20],[4,6],[4,17]],[[4143,6569],[0,0]],[[4182,6404],[16,21],[8,-8],[5,5],[3,-10],[5,-2],[12,5],[13,17],[7,2],[17,-9],[2,-10],[16,6],[6,-1]],[[4292,6420],[-3,30],[-5,9],[3,9],[-6,8],[-10,-4],[1,6],[9,-1],[-1,6],[11,24],[-8,-2],[-8,8],[4,6],[-2,12],[3,19],[15,27],[-2,10]],[[4239,6644],[4,-23],[-11,-5],[-3,-13],[-12,1],[-2,8],[-7,-4],[-11,3],[-2,6],[-33,9],[-6,-3],[-13,20],[-11,21],[-13,10],[-7,-9],[15,-34],[-10,-14]],[[4117,6617],[0,0]],[[4117,6617],[1,-1]],[[4118,6616],[1,-6],[10,-16],[2,-18],[11,5]],[[4142,6581],[0,1]],[[4142,6582],[11,-12],[2,-9]],[[4155,6561],[0,-1]],[[4155,6560],[2,-7],[-2,-36],[4,-9]],[[4159,6508],[0,0]],[[4159,6508],[-1,-1]],[[4158,6507],[0,0]],[[4158,6507],[-2,-10],[5,-8],[0,-19],[-4,-38],[-5,-25],[2,-6]],[[4154,6401],[15,-4],[-5,16],[18,-9]],[[4083,5700],[-12,5],[-6,-40],[2,-19],[-3,-7],[9,-21]],[[4073,5618],[4,-25],[4,-14],[-10,-28],[0,-13],[15,-10],[7,-26],[7,0],[-1,-27],[7,-5]],[[4470,6487],[6,14]],[[4410,6566],[2,-8],[17,4],[0,-5],[19,-1],[5,-11],[-6,-13],[1,-8],[-5,-5],[1,-14],[-5,-1],[0,-18],[4,3],[20,-4],[7,2]],[[4375,6500],[-3,-1],[-4,-17],[12,-1],[-1,-10],[6,5],[11,-9],[20,-26],[-3,-4],[6,-7],[-4,-11],[4,-12]],[[4419,6407],[6,1],[1,9],[6,3],[3,14],[-1,12],[7,12],[6,-4],[7,6],[4,10],[10,5],[2,12]],[[4304,6384],[1,9],[-6,3],[-8,21],[3,6]],[[4294,6423],[-2,-3]],[[4182,6404],[-1,-11],[5,-9],[8,2],[5,-8],[1,-23],[15,-6],[7,-16]],[[4222,6333],[8,-3],[7,9],[16,5],[12,-1],[3,9],[8,7],[2,13],[8,8],[4,-5],[14,9]],[[4430,6071],[-2,11],[-6,7],[-17,7],[7,36],[3,6],[-11,55],[4,0],[1,12],[-6,22],[-1,13],[8,3],[-4,15],[0,14],[-11,-5],[3,15],[-3,6],[11,11],[-9,10],[10,0],[2,7],[-14,27]],[[4395,6343],[-8,-5],[-4,10],[-9,-3],[0,-12],[5,-8],[-1,-8],[-11,-1],[-5,-37],[-6,-10]],[[4356,6269],[0,-10],[-7,-14],[0,-8],[-9,-19],[3,-4],[-9,-13],[3,-8],[-6,-6],[-1,-10],[-10,-18],[-1,-15],[-14,-8],[-2,6],[-13,2],[-14,18],[3,11],[-7,7],[-12,-4],[-6,-7],[-2,10]],[[4252,6179],[-4,-21],[16,-23],[9,5],[0,-26],[-12,9],[-1,-4]],[[4260,6119],[0,-9],[6,-17],[9,-4],[6,-11],[2,-11],[12,-9],[-6,-2],[4,-7],[-11,-10],[7,-21],[-6,-25],[-10,-13],[-35,-7]],[[4238,5973],[-4,-6],[1,-23],[-8,-4],[-1,-29],[-3,-3],[-2,-17],[-5,1],[-3,-14],[5,-15]],[[4435,5836],[-1,11],[8,4],[13,13],[-2,7]],[[4238,5973],[9,27],[-1,22],[5,3],[-2,16],[-10,9],[7,10],[-9,25],[-23,2],[-3,-15],[-9,17],[-15,-1],[6,-14],[-6,-4],[-3,7],[-7,-2],[-6,7],[-13,-1],[-2,4]],[[4156,6085],[-6,-11],[-2,14],[-12,0],[-1,-12],[-14,-15],[-1,-5],[-18,3],[-5,-6],[-3,8],[-6,-1],[-10,-15],[-1,-30],[-15,-5],[-8,-9],[-5,-17]],[[4049,5984],[-1,-13],[9,5],[1,10],[5,2],[-6,-17],[-6,-6],[17,-1],[1,-35],[9,21],[6,-4],[12,3],[6,-6],[-3,-15],[9,-2],[4,-7],[3,10],[-7,5],[8,4],[7,-8],[-2,-5],[8,-5],[11,7],[0,-7],[9,-7]],[[4260,6119],[-10,-5],[-11,4],[-18,-6],[0,-4],[-11,1],[1,12],[-12,-6],[-1,11],[-18,-3],[-3,-14],[-6,-2],[-5,10]],[[4166,6117],[-4,-32],[-6,0]],[[3842,6399],[0,22],[-9,0],[-6,-15],[7,-7],[8,0]],[[3777,6330],[10,6],[9,0],[5,12],[-7,6],[-2,16],[-8,-2],[-7,-7],[-14,-8],[-6,-8],[12,-16],[8,1]],[[3708,6223],[16,1],[20,17],[0,14],[11,16],[-3,18],[-6,14],[-4,-10],[-15,-9],[-12,-11],[1,-9],[-8,-19],[2,-14],[-2,-8]],[[4195,6232],[9,0],[3,8],[-4,7],[0,16],[11,13],[-3,14],[4,8],[-5,6],[2,20],[10,9]],[[4154,6401],[6,-24],[6,-16]],[[4166,6361],[0,0]],[[4166,6361],[2,0]],[[4168,6361],[0,0]],[[4168,6361],[2,-15],[-4,-8]],[[4166,6338],[0,0]],[[4166,6338],[1,-4]],[[4167,6334],[0,-1]],[[4167,6333],[-4,-11],[-8,-10],[-10,8],[-5,-9],[-18,-16],[-25,-25],[-8,-14]],[[4089,6256],[2,-11],[5,1],[-2,14],[7,0],[0,-13],[-4,-10],[10,-5],[6,2],[2,-13],[11,-7],[9,7],[3,-12],[-4,-9],[14,10],[3,9],[8,7],[2,-6],[15,1],[10,-4],[6,16],[3,-1]],[[3702,6179],[5,19],[-7,6],[-3,-14],[5,-11]],[[4294,6423],[14,-1],[0,13],[10,20],[5,-11],[10,4],[-8,16],[5,15],[9,9],[6,13]],[[4395,6343],[1,24],[8,-2],[8,8],[-3,17],[2,11],[8,6]],[[4304,6384],[9,-11],[9,9],[5,-14],[-12,-11],[17,-21],[1,-10],[14,-4],[-12,-21],[3,-23],[12,2],[6,-11]],[[3951,6139],[0,0]],[[4044,5985],[11,34],[25,62],[8,6],[8,0],[4,19],[6,5],[-3,-13],[12,-6],[2,47],[12,-7],[6,-11],[21,0],[8,3],[2,-7]],[[4252,6179],[0,14],[-9,12],[-11,5],[-9,-1],[-8,-15],[-20,6],[-5,-2],[11,19],[-7,0],[1,15]],[[4089,6256],[-3,-14],[-11,-34],[-13,-48],[-17,-40],[-9,-24],[-10,-35],[-3,-21],[2,-36],[0,-37],[4,-8],[-5,-21]],[[4024,5938],[0,-1]],[[4024,5937],[-4,-38]],[[4020,5899],[9,0],[0,15],[5,14],[1,29],[6,25],[3,3]],[[4049,5984],[-5,1]],[[4020,5899],[-6,-40]],[[4014,5859],[0,-1]],[[4014,5858],[-3,-8]],[[4011,5850],[0,-1]],[[4011,5849],[-9,-43],[-12,-34],[0,-6]],[[3990,5766],[3,-1],[8,30],[7,9],[9,-1],[0,-18],[-8,-35],[5,-2]],[[4141,6771],[-2,-1]],[[4139,6770],[0,-1]],[[4139,6769],[-6,-22]],[[4133,6747],[0,-1]],[[4133,6746],[-10,-19],[-9,-4],[-10,14],[-27,-12],[-9,-7]],[[4068,6718],[0,0]],[[4068,6718],[-2,0]],[[4066,6718],[0,0]],[[4066,6718],[-5,8],[-3,-8],[5,-9],[11,0],[3,-9]],[[4077,6700],[0,0]],[[4077,6700],[6,-16],[3,-20],[3,0]],[[4089,6664],[0,0]],[[4089,6664],[4,-4]],[[4093,6660],[1,0]],[[4094,6660],[4,-11]],[[4098,6649],[0,-1]],[[4098,6648],[5,-16],[12,-12]],[[4115,6620],[1,0]],[[4116,6620],[1,-3]],[[5690,3874],[-3,29],[-8,22],[-8,-2]],[[5671,3923],[0,-1]],[[5671,3922],[-1,-14],[-6,-6],[10,-17],[7,-15],[9,4]],[[5991,3619],[-5,49],[6,19]],[[5992,3687],[-17,2],[1,26],[-6,-4],[-7,4],[-13,17],[-14,0]],[[5936,3732],[-14,-7],[-24,28],[-9,16],[-13,-3],[-11,4],[-2,7],[-12,2],[-6,-12],[-14,-7],[-1,-5]],[[5830,3755],[-2,-4],[3,-24],[-10,4]],[[5821,3731],[8,-51],[2,-2],[-2,-30]],[[5829,3648],[8,4],[18,0],[11,9],[5,-10],[1,-13],[6,-3],[2,14],[5,-14],[8,-2]],[[5893,3633],[-3,11],[5,17],[10,0],[0,5],[7,7],[7,-5],[-3,-21],[11,-3],[6,3],[-3,-12],[9,-2],[33,14],[4,-9],[-1,-21],[16,2]],[[6059,3720],[6,59],[5,43]],[[6070,3822],[-6,-1],[-3,46],[7,4],[-5,13],[2,18],[-4,1],[2,14]],[[6063,3917],[-2,6],[-16,0],[-7,-13],[-6,7]],[[6032,3917],[-4,3],[-5,-14],[-6,6],[-1,-14],[1,-30],[-15,-56]],[[6002,3812],[-6,-26],[21,-64],[0,-29]],[[6017,3693],[23,29],[19,-2]],[[5788,4219],[4,6],[11,2],[22,-15]],[[5825,4212],[3,11],[-4,7],[1,11],[5,5],[-7,4],[3,10],[-9,5],[-1,7],[-8,0],[-11,7],[-3,12],[-8,4],[-8,-8]],[[5778,4287],[2,-5],[-13,-18],[-4,-11],[20,-20],[5,-14]],[[5856,2869],[5,5],[6,-5],[2,17],[10,5],[8,18]],[[5887,2909],[0,1]],[[5887,2910],[1,2]],[[5888,2912],[1,1]],[[5889,2913],[4,8]],[[5893,2921],[-63,73],[1,34],[51,29],[1,37],[2,48]],[[5885,3142],[23,105],[6,7],[3,13],[-26,82],[-12,-4],[1,21]],[[5880,3366],[-11,0],[-5,10],[-2,-8],[-6,4],[-11,0],[-16,12],[-2,-9],[-10,16],[-12,-38]],[[5805,3353],[-4,-22],[6,-20],[10,-8],[-14,-11],[-3,5],[-9,0],[-6,-4],[-7,6],[0,-11],[-10,0],[0,-20],[7,0],[0,-20],[-7,0],[0,-21],[-16,0],[0,-25],[-3,0],[0,-20],[-22,0],[0,-17],[-10,0],[-11,-16],[-1,-10],[-8,1],[-3,-8],[-14,-20],[4,-17],[-4,-1],[-6,-11]],[[5773,4030],[-3,3]],[[5770,4033],[-21,-7],[1,-12],[-9,-1]],[[5741,4013],[-18,-18],[0,-3]],[[5723,3992],[-1,-20],[2,-5],[-3,-19]],[[5721,3948],[0,-14],[6,-3]],[[5727,3931],[3,13],[3,-4],[19,1],[19,14]],[[5771,3955],[-7,10],[11,10],[-1,18],[-14,21],[8,-3],[0,10],[5,9]],[[5936,4752],[-1,36],[-4,12],[-14,56],[-2,49],[27,43]],[[5942,4948],[-33,0],[-14,6],[-7,-1],[-4,11],[1,7],[-5,7],[-8,-15],[-14,3],[-2,8],[-7,-4],[-4,5],[0,-15],[-13,8],[-17,-2],[-4,8],[-7,27],[-3,0]],[[5801,5001],[-14,1],[0,-11],[-13,1],[-5,-8],[0,-32],[5,-2],[1,-11],[-4,0],[-17,-11],[4,-11],[-12,-14],[0,-7],[8,-14],[-11,-29],[-5,-21],[10,2],[0,-9]],[[5748,4825],[4,0],[-1,-11],[7,-9],[12,-6],[3,6],[11,-6],[2,-24],[-8,-54],[5,5],[4,-7],[12,-2],[8,3],[0,-6],[8,-5],[5,6],[14,1],[2,7],[6,-3],[-2,-9],[13,-17]],[[5853,4694],[2,9],[12,21],[4,22],[7,-2],[4,11],[6,-1],[0,-15],[10,-13],[-3,-22]],[[5895,4704],[26,-13],[6,23]],[[5927,4714],[9,38]],[[5644,3621],[-34,2],[3,-9],[-2,-28],[3,-15],[-9,1],[-1,-11],[-6,-20],[-5,-5],[-6,-20]],[[5615,3467],[37,21],[1,23],[5,-5]],[[5658,3506],[10,31],[-13,9],[8,26],[5,6],[-19,15],[-7,24],[2,4]],[[5810,4041],[20,-7],[24,4],[1,7],[8,9],[4,-9],[3,9],[6,-7]],[[5876,4047],[9,12],[0,11],[4,2],[0,39],[9,7],[8,16],[-1,8],[-10,1],[-4,16],[-9,7],[-3,14],[-4,1]],[[5875,4181],[-4,4],[1,14],[-2,16]],[[5870,4215],[-1,7],[-8,8],[-25,-34],[-7,-8],[-3,4],[4,14],[-5,6]],[[5788,4219],[-5,-20],[8,-7],[-3,-4],[7,-17],[-12,-14],[-7,-17],[-12,19],[-10,-26]],[[5754,4133],[-4,-8]],[[5750,4125],[6,3],[11,-6],[1,7],[13,5],[7,-8],[-6,-4],[-10,-17],[4,-5],[1,-13],[10,-7],[7,-14],[-8,-10],[3,-4],[15,6],[6,-17]],[[5690,3874],[0,0]],[[5690,3874],[8,3],[10,18],[-6,8],[9,33],[0,12]],[[5711,3948],[-22,0],[-8,-2],[-10,-23]],[[5936,3732],[0,28],[11,0],[10,14],[7,21],[4,0],[4,14]],[[5972,3809],[-26,0],[-9,3],[-6,11],[14,44]],[[5945,3867],[12,39],[-5,13]],[[5952,3919],[-28,21],[-10,-20],[-6,-17]],[[5908,3903],[-25,-26],[-14,-7],[0,-4]],[[5869,3866],[-3,-12],[-11,-4],[-3,7],[-9,-5],[-2,4]],[[5841,3856],[-2,-12],[-8,-8],[1,-21],[-6,-18],[-3,-20],[-6,-4]],[[5817,3773],[0,-21],[13,3]],[[5732,3912],[-2,-9],[3,-28],[-5,-12],[-6,-2],[-2,-8],[14,10],[-1,-10],[9,-6],[3,7],[11,-14],[5,16],[8,-13]],[[5769,3843],[5,23]],[[5774,3866],[-7,5],[1,11],[-7,6],[-7,15],[3,3],[-13,4],[-4,10],[-2,-8],[-6,0]],[[6063,3917],[1,20]],[[6064,3937],[0,41],[-8,7],[16,57],[5,7],[22,10],[17,14],[9,-15],[17,28],[4,-9],[11,5],[4,-12],[12,0],[6,-12],[5,5],[7,-5],[8,15],[20,-17],[0,-37],[7,8],[20,-1],[5,-8],[3,10]],[[6254,4028],[1,49],[-1,7],[0,64],[46,0]],[[6300,4148],[5,0],[-1,23],[-24,30],[-38,50],[-17,20],[-60,78]],[[6165,4349],[-22,30],[-8,-2],[-6,4],[-13,-1],[-5,-28]],[[6111,4352],[1,-8],[-13,-21],[7,-12],[-7,-10],[16,-1],[-4,-28],[-7,3],[-8,-35],[-3,-7],[-7,4],[-16,-30],[-6,9],[-2,-5],[-10,-2],[0,-13],[-11,-12],[-6,4],[-1,9],[-10,0],[-9,-29],[-9,-6],[4,-8],[-10,-11],[-12,12]],[[5988,4155],[0,-13],[4,0],[-1,-17],[-5,-1],[6,-51],[-15,-35],[13,-15],[-7,-16],[12,-10],[-1,-9],[-16,-34]],[[5978,3954],[10,1],[3,-5],[18,35],[26,-31],[-3,-3],[0,-34]],[[5801,5001],[-2,28],[-2,3],[21,16],[-2,9],[9,1],[-1,27],[12,0],[4,24],[4,12]],[[5844,5121],[-12,32],[-14,59],[5,32]],[[5823,5244],[-11,-8],[1,-13],[-13,-13],[-5,18],[-22,-13],[-4,-9],[-13,-3],[5,17],[-11,-6],[-17,3],[-4,5],[-2,-10],[-11,-1],[-4,13],[-1,25],[-6,-3],[-1,33],[-3,11],[-7,7],[0,7],[11,5],[-5,10],[-2,38],[4,17]],[[5702,5374],[-13,-3],[3,41],[13,-3],[-3,18],[-47,-18]],[[5655,5409],[-1,-10]],[[5654,5399],[9,-83],[-19,-30],[6,-40],[1,-19],[11,9],[-4,-28]],[[5658,5208],[0,0]],[[5658,5208],[-6,-3],[4,-35],[10,-24],[0,-11],[-6,1],[-8,-24],[-2,2],[0,-35],[-10,-10]],[[5640,5069],[1,-12],[-8,-2],[3,-25],[-3,0],[1,-16],[-5,-1],[7,-58],[6,-25],[-5,-26],[6,0],[1,-12],[-10,-3],[-21,-15]],[[5613,4874],[7,-3],[2,-25],[-15,-1],[10,-67],[-1,-29]],[[5616,4749],[17,-21],[15,-9],[2,25],[17,-6],[3,-10],[9,37],[18,33],[10,-2],[13,34],[5,-35],[18,15],[5,-7],[0,22]],[[6171,3850],[17,-4],[0,32],[-9,9],[-60,67],[-35,-10],[-20,-7]],[[6070,3822],[1,7],[12,4],[-3,-7],[6,-7],[6,4],[10,-4],[5,-10],[8,3],[0,-7]],[[6115,3805],[17,35],[21,42],[18,-32]],[[5908,3903],[-9,13],[0,15],[12,20],[-3,4],[-1,24],[5,7],[-16,31],[-13,-6],[-3,23]],[[5880,4034],[-3,-9],[-16,-16],[-17,-5]],[[5844,4004],[-6,-8],[3,-14],[-3,-10],[-7,0],[-3,-11],[-12,-7],[-4,-35],[4,7],[8,-2],[45,-58]],[[5702,4316],[10,19],[15,12],[-6,11],[9,16],[1,9],[7,10],[6,15],[3,-5],[9,8],[9,39],[16,18],[5,12],[24,-8],[7,13]],[[5817,4485],[7,15],[0,11],[-4,8],[-8,-4],[1,9],[10,25],[-5,2],[-10,17],[17,28],[14,16],[10,17],[8,30],[-12,20],[0,11],[8,4]],[[5616,4749],[-34,-50],[-9,17]],[[5573,4716],[-17,-49],[-2,-3]],[[5676,3981],[-9,39]],[[5667,4020],[-18,-13],[-11,7],[-10,16],[-3,-10],[-5,-1],[-3,9],[-13,6],[-8,18],[-13,2],[3,11],[-9,3]],[[5544,3895],[5,1],[20,-11],[5,-12],[4,22],[22,-3],[12,-10],[2,10],[0,48],[28,-24],[8,1]],[[5650,3917],[8,3]],[[5658,3920],[10,35],[8,26]],[[5671,4021],[10,13],[0,11],[12,4],[15,10],[-10,32]],[[5698,4091],[-27,-26],[4,-30],[-4,-14]],[[6205,3844],[48,10]],[[6253,3854],[0,59],[1,26],[0,89]],[[6171,3850],[7,-13],[27,7]],[[5711,3948],[10,0]],[[5723,3992],[-22,4]],[[5701,3996],[-9,-17],[-8,-3],[-8,5]],[[5658,3920],[13,2]],[[6111,4352],[-6,-3],[-7,13],[-1,16],[-17,13],[-9,-3],[-1,5]],[[6070,4393],[-12,2],[1,-17],[7,-9],[-23,-3],[-6,6],[1,-10],[-14,-2],[0,-21],[-18,-4],[-1,12],[-8,6],[-5,-8],[-1,14]],[[5991,4359],[0,8],[-12,-3],[3,-23],[-15,-5],[-3,9],[-13,13],[-7,-1],[-6,12],[-26,-31],[3,-4],[-12,-15],[-9,-21],[-9,4],[-2,-9],[6,-7],[-8,-22],[-5,7],[-5,-9],[4,-37],[-5,-10]],[[5875,4181],[27,28],[-1,-24],[6,-1],[1,15],[4,0],[-1,-43],[6,-1],[1,12],[5,-11],[0,-13],[12,-1],[0,6],[15,1],[5,19],[10,-9],[4,5],[9,0],[-3,-14],[13,5]],[[6002,3812],[-5,-1]],[[5997,3811],[-25,-2]],[[5992,3687],[4,7],[10,-14],[11,13]],[[5942,4948],[9,3],[1,20],[6,3],[11,17]],[[5969,4991],[1,11],[8,41],[-3,-2]],[[5975,5041],[-10,-5],[-26,56],[-12,9],[-13,-6]],[[5914,5095],[-7,-3],[-27,-5],[-12,0],[-17,6],[-7,28]],[[5774,3866],[8,-13],[8,31],[-8,11],[4,15]],[[5786,3910],[-1,20],[-7,10],[-4,18]],[[5774,3958],[-3,-3]],[[5727,3931],[5,-19]],[[5730,4073],[-9,0],[0,-32],[3,-11]],[[5724,4030],[18,-9],[-1,-8]],[[5770,4033],[-3,14],[-26,26],[-11,0]],[[5945,3867],[6,-6],[6,5],[26,2],[12,-7],[2,-50]],[[5978,3954],[-6,10],[-5,1],[-3,-14],[-19,7],[7,-14],[0,-25]],[[5841,3856],[4,11],[-11,20],[-3,18],[-9,12],[-13,-8],[-23,1]],[[5769,3843],[14,-14],[-9,-31],[25,-19],[1,-6],[17,0]],[[5891,4456],[37,2],[-1,23],[1,25],[-5,4],[-16,-2],[-19,1],[0,-27],[3,-26]],[[5817,4485],[1,-8]],[[5818,4477],[7,20],[18,-22],[1,16],[9,13],[-12,12],[4,5],[2,22],[10,18],[9,38],[0,13],[15,39],[10,14]],[[5891,4665],[4,39]],[[5750,4125],[-7,-13],[-13,-39]],[[5773,4030],[22,1],[-1,3],[15,3],[1,4]],[[5805,3353],[-14,3],[8,11],[0,10],[-14,17],[-5,-5],[-4,7],[2,21]],[[5778,3417],[-18,1],[2,-13],[-10,-29],[-24,-6],[-1,-14],[-6,-3],[-2,16],[-8,21],[-7,-3],[7,25],[-1,10],[-19,0],[3,25],[4,16],[0,14]],[[5698,3477],[3,13],[-17,-2],[-26,18]],[[6070,4393],[0,0]],[[6070,4393],[2,11],[-4,1],[-3,11],[7,49],[-14,29]],[[6058,4494],[-1,4],[8,43],[-10,4]],[[6055,4545],[-26,-18],[-13,17],[-10,1],[-4,14],[-8,6]],[[5994,4565],[-6,4],[-9,-2],[-12,18],[-3,11],[1,21],[-15,8],[0,7],[-9,-5],[-13,2],[-29,24],[-8,12]],[[5818,4477],[8,-2],[1,-9]],[[5827,4466],[5,1],[0,-9],[17,-3],[1,-6],[8,-7],[1,-10],[11,-12],[20,6],[15,11],[2,10],[9,-1],[-2,-14],[14,7],[6,-15],[14,-5],[4,6],[9,-11],[0,9],[7,-6],[13,13],[11,-8],[0,-15],[12,6],[1,-16],[-13,-4],[2,-19],[4,-13],[-7,-2]],[[5844,4004],[-17,-2],[-17,-12],[-1,-15],[-10,-3],[-2,-10],[-11,3],[-12,-7]],[[5823,5244],[8,65],[-20,-8],[-30,-1],[-9,16],[-11,14],[21,19],[-8,40]],[[5774,5389],[-39,-10],[6,-30],[-4,4],[-18,-7],[-9,27],[-8,1]],[[5644,3621],[0,12],[6,17],[-2,8],[7,13]],[[5655,3671],[9,37],[1,12],[-5,1],[-11,25],[-7,2],[-13,47],[8,9]],[[5637,3804],[10,22],[15,20],[-5,4],[-1,17],[-8,24],[2,26]],[[5827,4466],[-3,-3],[-17,-88],[-10,5],[-7,-6],[-5,-18],[-9,9],[1,-10],[-5,-7],[-15,-34],[1,-7],[-6,-12]],[[5752,4295],[12,-20],[14,12]],[[5701,3996],[4,7],[2,15],[17,12]],[[5754,4133],[-8,-2],[-22,21]],[[5724,4152],[-8,-26],[-10,-11],[1,-13],[-9,-11]],[[5671,4021],[-4,-1]],[[5996,3557],[-4,60],[-1,2]],[[5893,3633],[2,-16],[-1,-38],[3,-35],[8,-4],[-2,-18],[-5,8],[-7,-42],[-21,-10],[6,-29],[9,5],[12,-37],[2,2],[8,-16],[-10,-10],[11,-30]],[[5908,3363],[4,-3],[6,8],[7,2],[-1,7],[12,3],[2,21],[-7,13],[-4,45],[-15,21],[2,8],[38,4],[45,38],[-1,27]],[[5880,4034],[-4,13]],[[5730,4270],[10,0],[12,25]],[[5821,3731],[-21,-9],[-4,-14],[-5,2],[-2,-14],[-16,-11],[-25,-5]],[[5748,3680],[-4,-21],[0,-14],[-6,-8],[0,-9],[-6,-8],[3,-6],[-5,-5],[6,-14],[0,-9],[-8,-4],[-4,-10],[0,-19],[-5,-26],[-4,-11],[-13,-4],[0,-11],[4,-9],[-3,-16],[-5,1]],[[5778,3417],[4,7],[-4,12],[11,16],[0,19],[6,17],[-20,21],[5,4],[8,16],[-4,5],[11,2],[-4,17],[9,1],[2,7],[-3,25],[-5,2],[1,11],[9,4],[0,7],[9,4],[-3,17],[5,13],[14,4]],[[5690,3874],[1,-8],[-6,-16],[-7,-13],[-27,-29],[-11,-8],[-3,4]],[[5655,3671],[9,-13],[5,-13],[14,-1],[1,18],[10,-1],[6,22],[9,6],[6,22],[14,0],[6,7],[8,-14],[6,-1],[-1,-23]],[[5724,4152],[7,29],[-19,9],[-8,-9],[-20,-14],[-5,-8],[-6,19],[-11,-2],[-4,-8],[-19,-6]],[[5880,3366],[8,-10],[16,-1],[4,8]],[[6873,8422],[11,39],[1,11]],[[6885,8472],[2,26]],[[6887,8498],[-13,0],[-9,-7]],[[6865,8491],[4,-6],[-3,-12],[-6,-8],[8,-16],[-8,0],[-3,10],[-12,-2],[-2,-6]],[[6843,8451],[6,-15],[14,-15]],[[6863,8421],[10,-4],[0,5]],[[6967,8001],[-16,6],[-6,-19],[-7,0],[-1,-8],[-9,3],[9,11],[-2,3],[-14,-17],[-2,5],[17,34],[-9,12],[-9,-17],[-11,-13],[4,-4],[-12,-10],[-3,9],[-2,25],[-7,1],[-16,-18],[-11,-3],[-2,4]],[[6858,8005],[-11,-1],[2,-7]],[[6849,7997],[5,-6],[0,-19],[-9,-6],[2,-18],[6,-8],[0,-14]],[[6853,7926],[7,3],[3,-8],[-6,-3],[3,-11],[6,2],[-6,-19],[22,-12],[2,-6]],[[6884,7872],[8,7],[19,0],[14,11],[2,16],[9,14],[2,25],[3,0],[0,12],[6,9],[12,11],[0,11],[8,13]],[[7081,8671],[6,-2],[14,14],[5,9]],[[7106,8692],[-6,8],[9,6],[-2,12]],[[7107,8718],[-21,-1]],[[7086,8717],[-9,-14],[4,-32]],[[6566,8218],[8,9],[-2,10],[-13,4]],[[6559,8241],[-32,-4]],[[6527,8237],[-9,-24]],[[6518,8213],[12,5],[9,-2]],[[6539,8216],[9,-4],[15,2],[3,4]],[[7420,8801],[10,14],[7,-3],[8,15],[-1,7]],[[7444,8834],[-9,11],[5,13],[-1,11],[4,18],[-5,0],[-6,21],[3,6]],[[7435,8914],[-13,5],[0,17],[-14,-8],[-2,7],[-7,-2],[-6,8],[1,15],[-3,8]],[[7391,8964],[-15,13],[-12,5],[-7,29]],[[7357,9011],[-11,0],[0,-4]],[[7346,9007],[-2,-24],[-16,-7]],[[7328,8976],[-2,-20],[-6,2]],[[7320,8958],[5,-9]],[[7325,8949],[9,2]],[[7334,8951],[1,15],[11,1],[19,-9],[12,-24],[7,-22],[-6,-14],[6,-17],[-15,-12]],[[7369,8869],[10,-9],[6,-16],[-7,-11],[30,-42],[9,14],[3,-4]],[[6672,8479],[-1,-6]],[[6671,8473],[1,-10]],[[6672,8463],[0,-26]],[[6672,8437],[8,-8],[9,-15],[2,-10]],[[6691,8404],[11,2]],[[6702,8406],[7,14],[3,-9]],[[6712,8411],[11,2],[8,-4]],[[6731,8409],[-6,31],[-6,0],[-8,-14],[-11,6],[-5,16],[4,14],[13,5]],[[6712,8467],[8,20],[16,5],[10,-15],[-5,-7],[6,-7]],[[6747,8463],[5,-1],[1,20],[-6,-1],[-9,14],[-15,-1],[-3,-6],[-12,16],[5,7],[13,7],[-6,33]],[[6720,8551],[-14,-8]],[[6706,8543],[-4,-26],[-12,1]],[[6690,8518],[-4,-23],[-4,-1]],[[6682,8494],[-10,-15]],[[6677,8606],[3,12],[-4,6]],[[6676,8624],[-13,-13],[0,-14],[10,-3],[-2,11],[6,1]],[[6844,8839],[-3,6]],[[6841,8845],[-4,-11],[7,5]],[[7143,9058],[22,4],[-7,29],[-11,-1],[-11,11],[7,3],[-2,8],[8,4],[4,21],[-7,-1],[1,18],[8,24]],[[7155,9178],[-3,18],[-9,-2]],[[7143,9194],[-13,-35],[0,-15],[4,-14],[-6,-4],[0,-20],[5,-15],[-10,-18],[20,-15]],[[7032,8364],[-6,3]],[[7026,8367],[-10,-1],[-22,8],[-16,-4]],[[6978,8370],[-2,-13],[8,-15]],[[6984,8342],[4,10],[22,4],[5,-20],[1,-34]],[[7016,8302],[0,-4],[16,-4],[7,11],[2,20]],[[7041,8325],[-7,6],[1,13],[-3,20]],[[7418,8770],[-3,24],[5,7]],[[7369,8869],[-21,-6],[-15,3]],[[7333,8866],[5,-25],[-9,-9],[7,0],[5,-17]],[[7341,8815],[24,-4],[3,-9]],[[7368,8802],[8,-10],[10,1],[18,-15],[14,-8]],[[6362,8406],[6,19],[5,5]],[[6373,8430],[-2,21]],[[6371,8451],[-7,0],[-12,-9],[-13,3],[-2,-9]],[[6337,8436],[11,-1],[2,-7],[-2,-19],[3,-9]],[[6351,8400],[11,6]],[[6921,9253],[-2,17],[-6,7],[1,19]],[[6914,9296],[2,13],[-7,22],[-9,5]],[[6900,9336],[-10,7]],[[6890,9343],[-7,-21],[2,-18]],[[6885,9304],[0,-19],[2,-7],[7,2],[4,-8],[1,-20],[-4,-3],[1,-12],[9,-1]],[[6905,9236],[6,2],[10,15]],[[6827,8761],[3,2]],[[6830,8763],[4,0]],[[6834,8763],[0,0]],[[6834,8763],[-3,16]],[[6831,8779],[-8,-3],[-3,-12],[7,-3]],[[7334,8951],[4,-9],[2,-18],[-4,-5],[-1,-25],[-3,2],[-1,-22],[2,-8]],[[6882,8961],[10,4]],[[6892,8965],[-2,15],[2,7]],[[6892,8987],[-10,2],[-3,8],[-9,-7],[-10,0],[-13,-11]],[[6847,8979],[6,-22],[-4,-3],[6,-9],[3,-17],[9,20],[15,13]],[[6379,8564],[-3,13],[-5,1],[3,16],[11,-10],[-2,12],[5,11],[-1,25],[-3,20],[-5,1]],[[6336,8571],[8,1],[8,-8],[6,-11],[2,11],[8,2],[2,-5],[9,3]],[[6791,8912],[6,17],[7,-1]],[[6804,8928],[0,-13]],[[6804,8915],[3,-7]],[[6807,8908],[10,12],[3,13]],[[6820,8933],[0,18]],[[6820,8951],[3,4]],[[6823,8955],[-12,7],[-10,-5],[2,-8],[-17,-3]],[[6786,8946],[-9,-9]],[[6777,8937],[0,-33]],[[6777,8904],[8,15],[6,-7]],[[6637,8137],[2,14],[-1,14],[-6,25],[-2,0],[-6,25],[-5,4],[1,22],[10,13],[-1,8]],[[6629,8262],[-14,-16],[-4,-8],[-18,-14],[-7,2]],[[6586,8226],[-10,-11],[-6,-12]],[[6570,8203],[21,1],[10,-4],[1,-25]],[[6602,8175],[4,0],[6,-21],[7,-1],[6,-19],[12,3]],[[6805,8230],[14,17]],[[6819,8247],[8,16],[18,-5]],[[6845,8258],[4,13],[-3,3]],[[6846,8274],[-2,-4],[-15,-7],[-6,14],[-11,6]],[[6812,8283],[-9,-6],[-6,6],[-20,-3],[-4,6]],[[6773,8286],[-2,-2],[-2,-26],[7,-20],[11,2],[9,-13]],[[6796,8227],[9,3]],[[6460,8689],[-6,16],[-1,-5],[-20,8],[-5,-2]],[[6430,8705],[14,-4],[-3,-11],[-6,-7],[-6,2],[-7,-7],[4,-8],[7,-1],[5,14],[14,-4],[8,10]],[[6406,8671],[5,-18],[5,-3],[3,8],[0,15],[-4,8]],[[6870,7856],[14,16]],[[6853,7926],[-12,-12],[3,-14],[-1,-11],[4,9],[4,-8],[-1,-14],[6,-7],[-3,-19]],[[6853,7850],[0,-13],[17,19]],[[6511,8119],[-7,4],[7,14],[-5,16],[-8,-2],[-6,-17],[-10,2]],[[6482,8136],[-1,-24]],[[6481,8112],[6,-14]],[[6487,8098],[13,2],[9,-11],[1,-14],[8,5],[-2,12],[8,8],[-13,19]],[[6814,8692],[3,8],[13,6],[-2,10]],[[6828,8716],[0,18]],[[6828,8734],[-11,-2],[-4,-5],[0,-12],[-6,-11],[-3,6]],[[6804,8710],[-7,-11]],[[6797,8699],[9,-10],[8,3]],[[6816,8216],[-1,7],[-10,7]],[[6796,8227],[-8,-2]],[[6788,8225],[-9,-22],[10,-8],[4,-11],[12,-3]],[[6805,8181],[7,26],[4,9]],[[7642,9080],[-6,31],[-9,-2],[4,-25],[10,-9],[1,5]],[[6606,8747],[-13,-7],[-1,8]],[[6592,8748],[-10,5]],[[6582,8753],[-6,-21],[-6,10],[-7,-4],[-11,10]],[[6552,8748],[1,-16]],[[6553,8732],[0,-11]],[[6553,8721],[7,-6],[6,-28],[9,-9]],[[6575,8678],[4,14],[8,13]],[[6587,8705],[2,19],[13,6],[4,17]],[[6845,8187],[-6,13],[0,12]],[[6839,8212],[-5,-5]],[[6834,8207],[-10,0]],[[6824,8207],[-3,-11],[3,-15]],[[6824,8181],[13,-2],[5,3]],[[6842,8182],[3,5]],[[6831,8856],[8,0]],[[6839,8856],[0,5]],[[6839,8861],[-2,12],[4,0]],[[6841,8873],[-2,11]],[[6839,8884],[-5,17],[11,-2]],[[6845,8899],[-1,6],[7,2],[10,11],[6,-10],[12,-9]],[[6879,8899],[-3,14],[5,1]],[[6881,8914],[-2,9],[3,38]],[[6847,8979],[-11,8]],[[6836,8987],[-15,0],[-7,11],[-13,0]],[[6801,8998],[-2,-2]],[[6799,8996],[-1,-15]],[[6798,8981],[17,8],[1,-9],[15,1],[-3,-16],[-5,-10]],[[6820,8951],[14,-12]],[[6834,8939],[5,-6],[3,-14],[-9,-4],[1,9],[-2,9]],[[6832,8933],[-12,-2]],[[6820,8931],[10,-16],[-13,-11],[1,-10],[-6,-3],[-5,17]],[[6804,8915],[-5,-8]],[[6799,8907],[3,-22],[3,-4],[-3,-14]],[[6802,8867],[5,-2]],[[6807,8865],[14,11],[4,-6],[9,-1],[0,-8],[-6,2],[-5,-9],[8,2]],[[6799,8061],[4,26],[-1,8]],[[6802,8095],[-3,14]],[[6799,8109],[-1,0]],[[6798,8109],[-2,-7],[-12,-4]],[[6784,8098],[0,-11]],[[6784,8087],[13,-23],[-3,-3]],[[6794,8061],[5,0]],[[7352,9028],[5,-17]],[[7391,8964],[3,4],[-7,20],[-7,0],[-11,10],[2,14],[-19,16]],[[7031,8681],[7,-3],[27,1],[5,-19]],[[7070,8660],[9,13],[2,-2]],[[7086,8717],[-4,2],[-8,-8],[-13,5],[4,16],[-4,1]],[[7061,8733],[-7,2],[-1,-14]],[[7053,8721],[-2,-10],[3,-10],[-15,-15],[-9,0],[1,-5]],[[6406,8246],[-3,8],[-7,-9],[-8,-2],[-3,-11]],[[6385,8232],[-1,-18],[5,-7]],[[6389,8207],[8,-6]],[[6397,8201],[6,-1],[0,18],[3,7],[0,21]],[[6820,8621],[-5,2],[1,7]],[[6816,8630],[0,1]],[[6816,8631],[-5,-8]],[[6811,8623],[0,-4]],[[6811,8619],[2,0]],[[6813,8619],[7,2]],[[6392,8316],[9,2]],[[6401,8318],[-2,14]],[[6399,8332],[-10,-2],[-6,-9],[-9,-5],[1,8],[-6,-2],[1,-14]],[[6370,8308],[16,2],[6,6]],[[6912,8558],[-5,-5]],[[6907,8553],[7,-8],[-2,13]],[[7277,8752],[8,7],[3,14],[-5,53],[-18,20],[-27,-11],[0,-2]],[[7238,8833],[-3,-22],[-5,-10],[9,-8],[16,-6],[-4,-6],[2,-13],[-5,-21]],[[7248,8747],[8,-7],[5,4],[8,12],[8,-4]],[[7213,8840],[5,0],[-5,18],[-9,-10],[9,-8]],[[6465,8772],[-2,21],[-18,-15],[-33,-3]],[[6406,8731],[-1,4],[17,-5],[7,2],[11,-10],[9,8],[5,12],[1,21],[10,9]],[[7025,8606],[7,8],[-4,20],[-10,11]],[[7018,8645],[-1,0]],[[7017,8645],[-12,-23]],[[7005,8622],[2,-8]],[[7007,8614],[3,-24]],[[7010,8590],[4,2],[2,12],[9,2]],[[6511,8202],[7,11]],[[6527,8237],[-1,12]],[[6526,8249],[-7,27],[6,35]],[[6525,8311],[-9,8],[0,8],[-6,11]],[[6510,8338],[-2,-10],[-5,2],[0,-11],[-9,2],[-4,10],[-7,1],[-17,-15],[4,-12]],[[6470,8305],[5,6],[14,-6],[4,5],[-3,-28],[-6,-12],[-17,6]],[[6467,8276],[0,-7]],[[6467,8269],[1,-32]],[[6468,8237],[8,-4]],[[6476,8233],[5,15],[1,13],[4,10],[5,-6],[9,6],[4,-3],[-6,-11],[0,-15],[-3,-8]],[[6495,8234],[2,-16]],[[6497,8218],[2,-7],[12,-9]],[[6500,8171],[4,16],[-6,3],[-6,14]],[[6492,8204],[-6,-12],[0,-13]],[[6486,8179],[3,-8]],[[6489,8171],[11,0]],[[6838,8151],[-10,9],[-5,-1],[-4,17]],[[6819,8176],[-7,-3]],[[6812,8173],[-1,-15]],[[6811,8158],[2,-16]],[[6813,8142],[6,-12]],[[6819,8130],[6,4],[13,17]],[[6831,8070],[2,28],[0,24],[3,9]],[[6836,8131],[2,20]],[[6819,8130],[-10,-1],[-4,11],[8,2]],[[6811,8158],[-5,-7],[-6,0],[-7,-12]],[[6793,8139],[4,-17]],[[6797,8122],[2,-13]],[[6802,8095],[5,-8],[5,2],[15,-20],[4,1]],[[6984,8461],[-10,13],[-6,15],[2,12]],[[6970,8501],[-3,16]],[[6967,8517],[-6,-2],[-13,10],[-7,11]],[[6941,8536],[-10,-1],[-11,16],[2,12]],[[6922,8563],[-5,-2]],[[6917,8561],[-5,-3]],[[6907,8553],[-6,-1]],[[6901,8552],[3,-18],[4,-7],[5,-20],[0,-9]],[[6913,8498],[10,-11],[20,-36],[1,-22]],[[6944,8429],[0,-13]],[[6944,8416],[8,-7],[15,-4],[9,-8],[-4,-17],[6,-10]],[[7026,8367],[1,13],[-6,-2],[0,13],[-11,26],[-6,-2],[-10,5],[-2,13],[-11,3],[-2,18],[5,7]],[[6939,8480],[-3,6],[7,3],[5,12],[-8,-1],[-3,6],[10,2],[10,-6],[5,-9],[-22,-18],[-1,5]],[[7443,8966],[-8,-7],[0,7],[-11,6],[3,-11],[-12,4],[-1,14],[6,18],[5,-2],[10,12],[4,-14],[12,11]],[[7451,9004],[-5,4],[-2,28],[-3,4],[6,16],[9,8],[-7,13],[-22,14],[6,5],[-2,7],[4,16],[22,2],[4,6]],[[7461,9127],[-34,-2],[-19,4]],[[7408,9129],[-5,-13],[-19,3],[-23,1],[-14,-5]],[[7347,9115],[-2,-16]],[[7345,9099],[2,-20],[7,-2],[7,-13]],[[7361,9064],[11,6],[4,-7],[13,3],[6,-6],[2,-14],[-15,-10],[0,-9],[-4,-9],[-3,7],[-11,2],[0,18],[-9,0]],[[7355,9045],[-3,-17]],[[7435,8914],[13,2]],[[7448,8916],[-3,12],[1,15],[-3,23]],[[7103,8312],[-7,-12]],[[7096,8300],[8,-14],[7,-2],[2,-13]],[[7113,8271],[2,8],[-1,14],[-4,3],[1,12],[-8,4]],[[7099,8117],[15,3]],[[7114,8120],[7,2],[3,25]],[[7124,8147],[8,69]],[[7132,8216],[-17,54]],[[7115,8270],[-5,-7],[-9,2],[-1,-20],[-8,-1],[1,-7],[-7,-2],[-2,-8],[0,-23],[-5,-17],[-7,-9],[1,-33],[4,-5],[-3,-28]],[[7074,8112],[9,-7],[5,9],[8,-5],[3,8]],[[6823,8574],[-8,28]],[[6815,8602],[0,0]],[[6815,8602],[-3,-5],[-7,3]],[[6805,8600],[-3,-2]],[[6802,8598],[4,-10],[0,-22]],[[6806,8566],[10,12],[7,-4]],[[6706,8543],[-9,14],[-2,25]],[[6695,8582],[-9,5],[-9,19]],[[6676,8624],[-5,9],[1,19],[-2,8]],[[6670,8660],[-12,-11],[-8,-1]],[[6650,8648],[-3,-14],[8,-9],[-1,-8],[8,-23],[-4,-31]],[[6658,8563],[14,-16],[4,-23]],[[6676,8524],[11,-1],[3,-5]],[[6605,8280],[7,0]],[[6612,8280],[-3,19]],[[6609,8299],[-7,6]],[[6602,8305],[-10,-8]],[[6592,8297],[1,-18]],[[6593,8279],[12,1]],[[6784,8749],[4,-5]],[[6788,8744],[4,29],[9,5]],[[6801,8778],[0,0]],[[6801,8778],[-3,4],[-14,-1],[-7,5],[-6,-11],[-8,-4]],[[6763,8771],[2,-9]],[[6765,8762],[14,15],[-1,-20],[6,-8]],[[6839,8861],[10,1],[0,11],[-8,0]],[[6597,8573],[1,19]],[[6598,8592],[-7,-3],[-11,17],[-8,8]],[[6572,8614],[-1,9]],[[6571,8623],[-11,-24],[1,-17]],[[6561,8582],[19,-11],[0,-10]],[[6580,8561],[3,-1]],[[6583,8560],[6,2],[8,11]],[[6890,8749],[6,2]],[[6896,8751],[1,20],[6,11]],[[6903,8782],[2,2]],[[6905,8784],[-5,8]],[[6900,8792],[-7,3]],[[6893,8795],[-10,-34],[2,-10]],[[6885,8751],[5,-2]],[[7226,9073],[-5,-4],[-27,25],[-8,33],[7,21],[-1,12]],[[7192,9160],[-2,8]],[[7190,9168],[-20,8],[-7,-3],[-8,5]],[[7143,9058],[8,-22],[-6,-11]],[[7145,9025],[12,-27],[10,-28],[-23,-13],[2,-14]],[[7146,8943],[8,-24],[7,-1]],[[7161,8918],[-6,12],[17,8],[1,19],[12,4],[15,25],[14,13],[5,10],[0,48]],[[7219,9057],[7,16]],[[7328,8976],[-4,11],[1,7],[-6,2]],[[7319,8996],[-12,2],[-10,-15],[-14,-5]],[[7283,8978],[0,-11],[-4,-30]],[[7279,8937],[21,16],[20,5]],[[6676,8524],[-3,-15]],[[6673,8509],[0,-7]],[[6673,8502],[9,-8]],[[6406,8246],[10,6],[0,13]],[[6416,8265],[-5,0],[-2,10],[-4,-6],[-4,8],[7,11],[8,22]],[[6416,8310],[4,10]],[[6420,8320],[-3,16]],[[6417,8336],[-14,3],[-4,-7]],[[6401,8318],[1,-14],[-7,-7]],[[6395,8297],[-2,-25],[-7,-1],[-7,6],[-4,-4]],[[6375,8273],[-3,-24]],[[6372,8249],[12,-8],[1,-9]],[[6373,8931],[-3,15],[8,0]],[[6378,8946],[-4,25]],[[6374,8971],[-24,-2],[-1,-17],[-4,-6]],[[7329,8552],[5,12],[-6,0],[-1,50],[-16,6],[-5,5]],[[7306,8625],[-11,-1],[0,11],[-5,2],[-2,-31],[11,0],[-4,8],[20,0],[5,-10],[-5,-13],[8,1],[0,-7],[-13,6],[-13,-5],[3,-35],[6,2],[0,15],[17,1],[1,-17],[5,0]],[[7345,8488],[18,32],[30,21],[7,9],[8,-3],[11,5],[-7,22],[5,8],[-4,3],[-1,20],[-4,8]],[[7408,8613],[0,0]],[[7408,8613],[32,3]],[[7440,8616],[-1,6],[10,33],[12,0],[-2,10],[12,-7],[5,13],[-11,21],[-11,-1],[-1,7],[-7,-7],[-2,8],[-9,-4],[-13,-14],[-6,4],[2,7],[-6,2],[9,5],[0,12],[14,-4],[-2,14],[7,14],[16,8],[-1,18],[-6,-1],[-14,10],[-6,0],[-8,-8],[-3,8]],[[7368,8802],[-4,-1],[1,-14],[3,2],[0,-15],[5,-3],[13,-21],[13,3],[4,-15],[-3,-20],[-5,-1]],[[7395,8717],[9,-17],[-13,-3],[0,-10],[6,-8],[-2,-16],[7,-7],[-3,-17],[-8,-2],[1,12],[-7,10],[-9,-6],[-9,0],[1,11],[-5,3],[-1,-28],[-12,-12],[-2,-13],[-9,7],[-5,-5],[2,-9],[-4,-19],[6,-11],[-2,-25]],[[7336,8552],[5,-15],[-2,-6],[-15,-3],[7,18],[-11,3],[-5,-14]],[[7315,8535],[0,-20],[10,5],[1,-27],[19,-5]],[[7386,8581],[2,29],[2,-5],[14,-6],[-7,-13],[-11,-5]],[[6812,8173],[-7,8]],[[6788,8225],[-10,-6],[-5,4]],[[6773,8223],[-6,-11],[-4,-24],[-5,-13]],[[6758,8175],[-1,-19],[7,-14]],[[6764,8142],[15,3],[10,5],[4,-11]],[[6892,8987],[2,9],[-7,8],[13,-3],[-2,21]],[[6898,9022],[-6,26],[5,5],[1,15],[3,1],[3,-18]],[[6904,9051],[21,5]],[[6925,9056],[8,-1],[-2,15]],[[6931,9070],[-5,4],[-10,-20],[-7,14]],[[6909,9068],[-9,12],[8,4],[0,11],[6,11]],[[6914,9106],[-13,6],[-1,-6]],[[6900,9106],[-6,-19],[-14,4],[-12,18]],[[6868,9109],[-8,10]],[[6860,9119],[0,-5],[-11,-9]],[[6849,9105],[-2,4],[-19,9],[-2,-10],[-12,-5],[-9,-15]],[[6805,9088],[-11,-4]],[[6794,9084],[3,-13]],[[6797,9071],[2,-6],[13,-6],[8,13],[8,-10]],[[6828,9062],[6,22],[3,-7],[5,10]],[[6842,9087],[5,8],[8,-11]],[[6855,9084],[2,17],[8,-3],[7,-14],[-2,-19],[-3,0]],[[6867,9065],[10,-20],[-4,-8],[-4,-19],[-6,25]],[[6863,9043],[-8,5],[2,-9],[-8,-12]],[[6849,9027],[-2,-19],[7,8],[3,-17],[-3,-4],[-8,8],[-1,16],[-5,-4]],[[6840,9015],[3,-7],[-6,-18]],[[6837,8990],[-1,-3]],[[7025,8606],[0,-10]],[[7025,8596],[8,10],[8,-2],[7,3],[0,21]],[[7048,8628],[-3,16],[-5,8],[-22,-2]],[[7018,8650],[0,-1]],[[7018,8649],[0,-4]],[[6867,9065],[2,-13],[-6,-9]],[[6938,8558],[-7,2]],[[6931,8560],[5,-8],[2,6]],[[6810,8617],[1,2]],[[6811,8623],[-9,1]],[[6802,8624],[1,-7],[7,0]],[[7202,8785],[4,10],[-11,12],[11,7],[-1,22],[-11,15],[-3,14],[-5,-9],[-18,17],[6,4]],[[7174,8877],[4,9],[-7,18],[-1,14]],[[7170,8918],[-9,0]],[[7146,8943],[-9,-29],[-2,-13],[10,-12],[0,-15],[6,-3],[1,-8],[-5,-4],[14,-23],[-1,-10],[12,-9],[-2,-10],[7,7],[12,-9],[4,-10],[-12,-4],[8,-11],[3,6],[5,-6]],[[7197,8780],[5,5]],[[7083,8894],[-1,16],[9,15],[-4,20]],[[7087,8945],[-2,6],[-16,9],[5,19]],[[7074,8979],[0,15],[-11,2],[0,-11],[-13,-12],[-2,-9],[6,-23],[-1,-32],[-5,-5]],[[7048,8904],[10,3],[7,-11],[18,-2]],[[6446,8437],[-1,17],[5,19]],[[6450,8473],[-6,4]],[[6444,8477],[-4,-2],[-7,-24],[-8,19]],[[6425,8470],[-8,-3]],[[6417,8467],[-2,-6]],[[6415,8461],[1,-24],[7,2],[7,9],[-4,-25]],[[6426,8423],[10,10],[9,-5],[1,9]],[[7566,8939],[-10,26],[-5,25],[-5,10],[5,18]],[[7551,9018],[-9,-10],[-21,-2],[-24,4]],[[7497,9010],[-22,-5],[-6,15],[-11,7],[-1,-14],[-6,-9]],[[7451,9004],[13,-6],[6,-16]],[[7470,8982],[6,-39],[8,4],[1,-10],[6,-1],[1,-10],[12,-2],[-5,-16]],[[7499,8908],[46,16],[3,-20],[4,0],[1,23],[15,5],[-2,7]],[[6852,8667],[-3,5]],[[6849,8672],[-4,5],[1,11]],[[6846,8688],[-2,11]],[[6844,8699],[-3,-8],[-16,-1]],[[6825,8690],[1,-14],[4,-3]],[[6830,8673],[1,-15],[-4,-2]],[[6827,8656],[-4,-6]],[[6823,8650],[23,-18],[10,-3]],[[6856,8629],[-4,38]],[[6854,8799],[-3,7],[9,5],[1,-6]],[[6861,8805],[13,0]],[[6874,8805],[-6,15],[1,26]],[[6869,8846],[8,12],[-5,10]],[[6872,8868],[-5,-2]],[[6867,8866],[-6,-6],[3,-7]],[[6864,8853],[3,-8],[-10,-8],[-6,10]],[[6851,8847],[-7,-8]],[[6841,8845],[-1,1]],[[6840,8846],[-9,-5],[0,15]],[[6807,8865],[9,-13]],[[6816,8852],[2,-3]],[[6818,8849],[11,-16]],[[6829,8833],[8,-10],[10,10],[0,-12]],[[6847,8821],[9,-1],[1,-6],[-10,-9],[2,-7]],[[6849,8798],[6,-17]],[[6855,8781],[-1,18]],[[6820,8931],[0,2]],[[6441,9002],[10,4],[11,9]],[[6462,9015],[2,21]],[[6464,9036],[-11,7],[-3,8],[-7,1]],[[6443,9052],[-8,-17],[5,-12],[-7,-6]],[[6433,9017],[8,-15]],[[6936,9254],[3,1]],[[6939,9255],[8,6],[-3,9],[13,17]],[[6957,9287],[-7,18],[-5,-11],[-5,9],[-16,-7],[-10,0]],[[6921,9253],[15,1]],[[6851,8854],[2,12],[14,0]],[[6872,8868],[9,26]],[[6881,8894],[-2,5]],[[6845,8899],[-6,-15]],[[6839,8856],[4,-5]],[[6843,8851],[8,3]],[[6511,8839],[-8,3],[-9,-13],[4,-1],[-1,-15],[9,-4],[2,8],[15,-7]],[[6523,8810],[-12,29]],[[6494,8617],[5,17],[-1,15]],[[6498,8649],[-11,7],[-3,11],[2,6]],[[6486,8673],[3,28],[4,11],[2,20]],[[6495,8732],[3,3]],[[6498,8735],[-7,19],[-5,0]],[[6486,8754],[-8,-2],[5,16],[-15,3]],[[6468,8771],[-3,1]],[[6460,8689],[12,2],[5,-8],[0,-14],[-6,-21],[2,-1],[2,-28]],[[6475,8619],[0,-7],[10,-6],[2,11],[7,0]],[[7002,9091],[1,3]],[[7003,9094],[-11,0],[-5,-6],[-10,-2],[-2,-6]],[[6975,9080],[-3,-11]],[[6972,9069],[-1,-17]],[[6971,9052],[2,-4]],[[6973,9048],[7,11],[4,14],[10,1],[8,17]],[[7553,9020],[0,-7],[8,-4],[6,9],[-7,11],[9,24]],[[7569,9053],[-16,-1]],[[7553,9052],[1,-16],[-5,-11],[4,-5]],[[6500,8864],[-5,19],[7,11],[-8,14],[1,9],[5,7]],[[6500,8924],[-1,6],[-12,-3],[0,8],[-5,7]],[[6482,8942],[-3,-6],[-21,6]],[[6458,8942],[5,-25],[-7,-16]],[[6456,8901],[3,-9],[8,0],[4,-10],[0,-16],[9,-4],[9,2],[-3,-15]],[[6486,8849],[7,-6],[7,21]],[[6815,8602],[-2,17]],[[6810,8617],[-5,-17]],[[6877,8704],[-3,4]],[[6874,8708],[-3,13]],[[6871,8721],[-10,1]],[[6861,8722],[-2,-10]],[[6859,8712],[0,-2]],[[6859,8710],[6,1],[12,-7]],[[7332,9107],[-4,16],[12,-1]],[[7340,9122],[0,17]],[[7340,9139],[-5,2],[1,9],[-12,-1],[-3,5],[-11,0],[-4,14],[-9,3],[-1,6]],[[7296,9177],[-2,-8],[-1,-40],[5,1],[26,-31],[3,11],[5,-3]],[[6798,8981],[4,-1],[5,-15],[-10,-5],[-11,-14]],[[6455,8392],[-2,-2],[-3,19],[7,28],[-11,0]],[[6426,8423],[-2,-18],[3,-10],[-3,-9]],[[6424,8386],[7,-8],[8,3],[4,-3],[10,7],[2,7]],[[6537,8992],[-4,14]],[[6533,9006],[-4,-11],[-8,2],[-8,10],[-3,19],[-8,24]],[[6502,9050],[-11,-7],[-1,-9]],[[6490,9034],[1,-6],[-7,-13],[5,-7],[-7,-9]],[[6482,8999],[-7,-12],[4,-14],[-2,-5],[7,-20]],[[6484,8948],[3,9],[5,-3],[-2,15],[-4,2],[-2,15],[32,1],[1,-10],[7,13],[5,-7],[8,9]],[[6861,8722],[2,4]],[[6863,8726],[-2,1]],[[6861,8727],[-8,7]],[[6853,8734],[-8,-10]],[[6845,8724],[-3,-10]],[[6842,8714],[2,-9]],[[6844,8705],[15,7]],[[6860,8620],[-15,-3],[-17,12],[-4,-12]],[[6824,8617],[1,-10]],[[6825,8607],[9,-5],[12,-11]],[[6846,8591],[3,-5]],[[6849,8586],[4,4],[7,30]],[[6903,9230],[2,6]],[[6885,9304],[-6,3],[-10,-5],[-2,-13],[-20,31]],[[6847,9320],[0,-34]],[[6847,9286],[6,-31],[-1,-12],[-7,-20]],[[6845,9223],[12,-8],[6,-23]],[[6863,9192],[8,-4]],[[6871,9188],[15,6],[2,13],[10,5],[-3,7],[3,11],[5,0]],[[6598,8592],[4,14],[-1,23]],[[6601,8629],[-9,0],[-3,-6],[-7,1]],[[6582,8624],[-10,-10]],[[6860,8667],[-1,8]],[[6859,8675],[-7,4]],[[6852,8679],[0,0]],[[6852,8679],[-3,-7]],[[6852,8667],[8,0]],[[6486,8754],[0,12],[36,1],[10,-8],[14,-2]],[[6546,8757],[-4,20],[-19,33]],[[6511,8839],[-11,25]],[[6486,8849],[-5,-20],[-1,-24],[-5,-3],[3,-14],[-5,-1],[-5,-16]],[[6551,8364],[-11,7]],[[6540,8371],[-5,-8],[-9,9]],[[6526,8372],[-4,-10],[-9,5],[-3,-17]],[[6510,8350],[13,-7],[7,-12],[6,4],[0,-10]],[[6536,8325],[17,-3]],[[6553,8322],[3,24],[-5,18]],[[6464,9036],[18,3]],[[6482,9039],[-4,24],[3,20]],[[6481,9083],[-9,-3],[-9,-8],[-10,1]],[[6453,9073],[-7,-10],[-9,-4],[6,-7]],[[6856,8629],[5,-5]],[[6861,8624],[2,14]],[[6863,8638],[-2,28],[-1,1]],[[6812,8677],[-19,11],[0,11]],[[6793,8699],[-9,4]],[[6784,8703],[-3,-14],[11,-3],[1,-18],[7,8],[6,-12]],[[6806,8664],[1,4]],[[6807,8668],[5,9]],[[6579,8422],[0,-13],[-4,-18]],[[6575,8391],[11,-7],[5,1]],[[6591,8385],[3,7]],[[6594,8392],[2,16],[-3,14]],[[6593,8422],[-3,8],[-11,-8]],[[6709,8595],[4,-13],[16,-14]],[[6729,8568],[7,8],[7,17]],[[6743,8593],[11,13]],[[6754,8606],[4,15]],[[6758,8621],[-20,-15],[-8,-9],[-21,-2]],[[6914,9106],[4,10]],[[6918,9116],[-4,24]],[[6914,9140],[-8,-1],[-22,9]],[[6884,9148],[0,-10]],[[6884,9138],[14,-9],[-4,-18],[6,-5]],[[6660,8470],[3,-12],[-13,7]],[[6650,8465],[-4,-15],[9,-3],[5,6]],[[6660,8453],[12,10]],[[6671,8473],[-11,-3]],[[6992,8551],[8,8],[7,-7]],[[7007,8552],[0,10],[5,2]],[[7012,8564],[0,11]],[[7012,8575],[-1,4]],[[7011,8579],[-4,0],[-10,13]],[[6997,8592],[-1,-12],[-7,-2]],[[6989,8578],[-6,-17]],[[6983,8561],[9,-10]],[[6914,8190],[-9,30],[-12,-1],[-3,11],[4,24]],[[6894,8254],[-7,-8],[1,-8],[-14,0],[-2,11],[-6,2]],[[6866,8251],[-14,-5]],[[6852,8246],[-5,-5],[-2,-13]],[[6845,8228],[5,6],[10,-1],[-7,-14],[-6,-5],[3,-8],[28,5],[7,4],[8,-11],[1,-16],[10,0],[2,-9]],[[6906,8179],[7,2]],[[6913,8181],[1,9]],[[6322,8380],[-1,4]],[[6321,8384],[-9,-9],[-2,-25]],[[6310,8350],[6,6],[6,24]],[[7027,8543],[5,12],[9,5]],[[7041,8560],[-8,18]],[[7033,8578],[-2,-6],[-11,-1],[-8,4]],[[7012,8564],[9,-9],[0,-10],[6,-2]],[[6791,8912],[13,16]],[[6802,8624],[-3,9]],[[6799,8633],[-6,7]],[[6793,8640],[0,-20],[-5,1],[-3,8],[-18,1],[-2,5]],[[6765,8635],[-7,0]],[[6758,8635],[1,-13]],[[6759,8622],[22,-19],[15,4],[6,-9]],[[6847,8821],[-4,-8]],[[6843,8813],[3,-16]],[[6846,8797],[3,1]],[[6752,8787],[6,14],[11,9]],[[6769,8810],[-8,1],[-2,12]],[[6759,8823],[-6,10],[-4,-3],[-1,9]],[[6748,8839],[0,-2]],[[6748,8837],[-8,-35],[-8,-2],[-6,10],[-13,-8],[5,-10],[-8,1],[-2,9],[-5,-8]],[[6703,8794],[5,-4],[21,-6]],[[6729,8784],[2,-5]],[[6731,8779],[9,-1],[3,6],[9,3]],[[6521,8405],[2,9],[10,12]],[[6533,8426],[-1,44]],[[6532,8470],[0,6]],[[6532,8476],[-29,-18],[-4,-19]],[[6499,8439],[14,-26],[8,-8]],[[6597,8336],[-8,-11],[3,-7]],[[6592,8318],[10,-7]],[[6602,8311],[0,17],[3,3]],[[6605,8331],[-8,5]],[[6851,8696],[2,2]],[[6853,8698],[5,6]],[[6858,8704],[1,6]],[[6844,8705],[0,-6]],[[6846,8688],[1,3]],[[6847,8691],[4,5]],[[6731,8732],[0,15],[-5,3],[-2,11],[5,23]],[[6703,8794],[-3,0]],[[6700,8794],[-17,-10]],[[6683,8784],[4,-16],[0,-11]],[[6687,8757],[4,-30],[8,-2]],[[6699,8725],[8,-6]],[[6707,8719],[5,-2],[20,10],[-1,5]],[[6725,8111],[-9,6],[-3,9],[6,0],[-3,13],[-3,-11],[-15,6],[-4,-11],[-8,10]],[[6686,8133],[0,-30]],[[6686,8103],[8,-6],[-2,-9],[8,-4]],[[6700,8084],[2,8],[18,20],[5,-1]],[[6582,8624],[-3,16],[-5,9]],[[6574,8649],[-7,7]],[[6567,8656],[-5,-25]],[[6562,8631],[9,-1],[0,-7]],[[6446,8946],[-16,22],[-6,1]],[[6424,8969],[-4,6],[-8,-5],[-2,8],[-7,1]],[[6403,8979],[6,-10],[-4,-24]],[[6405,8945],[5,-6]],[[6410,8939],[2,3],[29,-2],[5,6]],[[6918,8888],[-4,-2],[-9,-18]],[[6905,8868],[1,-16]],[[6906,8852],[-1,-10],[-13,-36],[1,-11]],[[6900,8792],[11,17],[2,13],[12,15],[-4,3]],[[6921,8840],[-7,9],[0,13],[5,5],[4,24],[-5,-3]],[[6832,9241],[-9,14],[-16,3]],[[6807,9258],[0,-1]],[[6807,9257],[-5,-32]],[[6802,9225],[4,-3],[4,-16],[-5,-7],[1,-12],[13,-3],[2,-11],[7,-2]],[[6828,9171],[1,23],[-3,0],[-1,25],[5,3],[2,19]],[[6990,8593],[7,-1]],[[7011,8579],[-1,11]],[[7007,8614],[-14,-2]],[[6993,8612],[0,-15],[-3,-4]],[[6847,8766],[-1,4]],[[6846,8770],[-3,-6],[-9,-1]],[[6834,8763],[0,-11],[13,14]],[[6860,8753],[0,2]],[[6860,8755],[-20,-13],[-1,-7]],[[6839,8735],[14,-1]],[[6861,8727],[-1,26]],[[6867,8154],[3,10]],[[6870,8164],[-4,15],[-19,3],[-2,5]],[[6842,8182],[-2,-15],[3,-6],[12,4],[2,-19],[-13,-13]],[[6844,8133],[16,1],[7,20]],[[6847,9286],[-15,9],[-20,-3]],[[6812,9292],[-8,-14],[-2,-15],[5,-5]],[[6832,9241],[2,-8],[11,-5],[0,-5]],[[6918,8756],[0,13],[-7,18]],[[6911,8787],[-6,-3]],[[6903,8782],[5,-30],[10,4]],[[6622,8562],[-5,41],[0,17],[3,16]],[[6620,8636],[-5,9]],[[6615,8645],[-1,-11],[-5,-11],[-8,6]],[[6597,8573],[25,-11]],[[6990,8593],[-1,-2]],[[6989,8591],[0,-13]],[[6680,8378],[-7,8],[3,13]],[[6676,8399],[-9,14],[-4,-2],[4,-19],[-7,-11],[4,20],[-5,22]],[[6659,8423],[-9,-9],[-9,-2],[-12,5],[-2,14],[13,6],[-3,16],[-7,-2]],[[6630,8451],[-3,-14]],[[6627,8437],[-2,-6],[2,-17],[9,-2]],[[6636,8412],[13,-3],[2,-14]],[[6651,8395],[8,-4],[0,-20]],[[6659,8371],[1,6],[9,-4],[11,5]],[[7118,9008],[-1,26],[-3,3]],[[7114,9037],[-9,-11],[-9,-5],[-15,18],[-10,-22],[-7,-10],[8,2],[8,-19],[25,21],[7,-8],[6,5]],[[6752,8787],[5,-12],[6,-4]],[[6801,8778],[-3,14],[3,3]],[[6801,8795],[0,26]],[[6801,8821],[-11,-5],[-11,0],[-10,-6]],[[7355,9045],[6,19]],[[7345,9099],[-16,0]],[[7329,9099],[-3,-1],[-2,-18],[-12,-12],[5,-11],[9,3],[-6,-17],[6,-12],[-5,-15]],[[7321,9016],[7,-5],[8,-11],[10,7]],[[7145,9025],[-17,-6],[-10,-11]],[[7114,9037],[-13,49],[-5,5],[-10,-25],[6,-19],[-12,6],[-6,9],[7,12],[-9,10],[-5,18],[-4,-2]],[[7063,9100],[-5,-6],[9,-3],[3,-8],[-2,-14],[4,-16],[-2,-9],[-15,-11],[-5,12],[-7,1],[-6,13],[3,17],[-1,11],[-6,9],[0,23],[8,2],[1,-6],[13,-1],[5,6]],[[7060,9120],[11,12],[12,1],[5,-6],[0,-10],[13,-2],[6,10],[10,0],[-2,6],[13,10],[-8,4],[-6,12],[-11,1],[-5,12],[-10,3],[4,-8],[-10,-8],[5,21],[7,10],[7,2],[0,-19],[7,0],[3,26],[12,37]],[[7123,9234],[-9,25],[-17,-5],[-5,2],[-13,14]],[[7079,9270],[-9,-9],[-2,-37],[-3,11],[-7,-1],[-5,6],[-5,-23],[11,-5],[11,8],[-9,-17],[0,-6],[-8,-8],[-14,-3],[-8,-9]],[[7031,9177],[2,-13],[8,-8],[-6,-4]],[[7035,9152],[-8,-20],[-10,-4],[-5,-7],[2,-11],[-11,-16]],[[7002,9091],[5,-11],[-3,-29],[-7,11],[-11,-6],[-11,-23]],[[6975,9033],[13,4],[5,-3],[13,1],[4,-19],[-6,-6],[-7,-15],[-6,-21],[-7,-12],[3,-3]],[[6987,8959],[5,1],[-4,-13],[4,-16],[-6,-7]],[[6986,8924],[19,-12],[10,29],[14,-7],[18,-30]],[[7047,8904],[1,0]],[[7074,8979],[13,7],[5,-5],[2,12],[6,-3],[11,2],[7,9],[-5,-35]],[[7113,8966],[18,-28],[-6,-24],[-30,-34],[-2,-5]],[[7093,8875],[4,-28]],[[7097,8847],[1,5],[9,-6],[-1,-8],[7,-8],[5,1],[2,-12],[8,-17],[11,-28]],[[7139,8774],[10,-1]],[[7149,8773],[9,-1],[7,9],[11,-18]],[[7176,8763],[14,9],[7,8]],[[6939,9040],[-2,6],[13,18],[7,1]],[[6957,9065],[6,-10],[8,-3]],[[6972,9069],[-13,20],[1,30]],[[6960,9119],[-4,7]],[[6956,9126],[-7,-2],[-3,-17]],[[6946,9107],[-13,-21],[-2,-16]],[[6925,9056],[0,-17],[6,-6],[8,7]],[[6561,8582],[-1,-13],[9,-21]],[[6569,8548],[11,13]],[[7007,8535],[-5,-10],[5,1],[4,-8]],[[7011,8518],[8,8]],[[7019,8526],[1,11],[-4,7],[-9,-9]],[[6644,8314],[0,32],[-5,-1],[-12,11]],[[6627,8356],[-10,-17]],[[6617,8339],[9,-17]],[[6626,8322],[11,-11],[7,3]],[[7466,9129],[-5,-2]],[[7497,9010],[5,14]],[[7502,9024],[6,21],[-2,8],[-18,-6],[-21,71],[-1,11]],[[7006,8814],[-1,46]],[[7005,8860],[-9,11],[-7,-7],[-10,-18],[-9,0],[-12,21],[-8,6],[-10,0]],[[6940,8873],[-2,-21],[0,-35],[15,-8],[5,9],[8,-29]],[[6966,8789],[5,-8]],[[6971,8781],[22,14],[7,-11],[6,30]],[[6864,8853],[-12,-5]],[[6852,8848],[-1,-1]],[[6547,8650],[6,17],[-4,25]],[[6549,8692],[-15,11],[-11,2]],[[6523,8705],[-1,-14],[-6,-7],[3,-6]],[[6519,8678],[-1,-19],[4,-10]],[[6522,8649],[5,6],[12,-7]],[[6539,8648],[8,2]],[[6919,8130],[8,6]],[[6927,8136],[-4,9],[-1,19],[-9,4],[0,13]],[[6906,8179],[-7,-8],[-22,3],[-7,-10]],[[6867,8154],[5,-4],[6,3],[9,-6],[6,-17]],[[6893,8130],[0,-2],[26,2]],[[6807,8638],[-1,26]],[[6784,8703],[-7,8]],[[6777,8711],[-7,-29]],[[6770,8682],[6,-10],[-1,-13]],[[6775,8659],[3,-7],[15,-12]],[[6799,8633],[8,5]],[[6943,8217],[-12,44],[1,7],[-6,5],[1,13],[4,4],[-4,32],[-9,16],[-7,3],[-3,37]],[[6908,8378],[-10,-5],[-10,-10]],[[6888,8363],[-1,-11],[-11,-7],[2,-15]],[[6878,8330],[3,-18],[7,-8],[3,-14],[-4,-15]],[[6887,8275],[9,-16],[-2,-5]],[[6914,8190],[0,17],[8,2],[6,-6],[2,8],[8,10],[-1,-11],[6,7]],[[6677,8751],[10,6]],[[6687,8757],[-6,10],[-11,0],[-6,4],[-4,23],[-10,18],[-4,-2],[-5,9],[-9,-2],[-10,29],[-10,19],[-6,-20],[-12,-6],[-3,-11]],[[6591,8828],[8,-10],[12,-5],[22,-1],[4,-11],[-5,-15],[-8,-2]],[[6624,8784],[-6,-11]],[[6618,8773],[7,-14],[-10,-13]],[[6615,8746],[28,-1],[8,-4]],[[6651,8741],[7,-1],[19,11]],[[6981,8628],[-20,-8],[9,-13],[6,7],[12,-4]],[[6988,8610],[5,2]],[[7005,8622],[-7,8]],[[6998,8630],[-5,3]],[[6993,8633],[-3,-1]],[[6990,8632],[-2,-7],[-7,3]],[[6852,8246],[-7,12]],[[6819,8247],[6,-14],[-4,-16]],[[6821,8217],[3,-10]],[[6834,8207],[0,14],[-6,38],[10,-12],[-4,-9],[11,-10]],[[6662,8486],[-2,20]],[[6660,8506],[-5,7]],[[6655,8513],[-2,-2]],[[6653,8511],[-1,-11],[-13,-2]],[[6639,8498],[-1,-6]],[[6638,8492],[11,1],[1,-4]],[[6650,8489],[12,-3]],[[7569,9053],[-2,31],[2,4]],[[7569,9088],[0,27],[-7,-6],[-2,16],[7,10],[14,12],[13,3],[15,12],[13,-1],[9,5],[4,-9],[16,16],[15,-15],[1,5]],[[7699,9235],[-57,-44],[-42,-26],[-35,-17],[-44,-13],[-48,-8],[-7,2]],[[7502,9024],[14,-2],[5,12],[-2,11],[6,4],[12,-2],[2,12],[5,-5],[1,16],[-7,12],[-16,5],[12,3],[10,29],[9,0],[0,-11],[6,1],[5,-9],[-1,-9],[-9,-2],[4,-9],[0,-12],[-5,-16]],[[6778,8089],[-1,9]],[[6777,8098],[-5,0]],[[6772,8098],[-5,-3],[0,-11],[6,-9]],[[6773,8075],[0,0]],[[6773,8075],[4,-9],[1,23]],[[7551,9018],[2,2]],[[6658,8563],[-1,-25]],[[6657,8538],[5,-22],[11,-7]],[[6885,8706],[-4,5]],[[6881,8711],[-1,0]],[[6880,8711],[-6,-3]],[[6877,8704],[-1,-10]],[[6876,8694],[5,-4]],[[6881,8690],[4,5],[0,11]],[[6939,9040],[8,-22]],[[6947,9018],[10,14],[-3,20],[3,13]],[[6655,8513],[-2,23]],[[6653,8536],[-7,4]],[[6646,8540],[-6,-17]],[[6640,8523],[4,-11]],[[6644,8512],[9,-1]],[[6996,9186],[-4,-10],[11,-15],[3,15],[12,7],[-6,26],[-9,2],[-7,-6],[4,-12],[-4,-7]],[[6799,8996],[-18,-8],[-7,5],[0,-10],[-7,0],[-7,-16],[7,-14],[10,-7],[-4,-9]],[[6773,8937],[4,0]],[[6776,8479],[-1,19],[18,-18]],[[6793,8480],[9,33]],[[6802,8513],[-6,9],[-9,23],[-2,20],[-20,-1]],[[6765,8564],[0,-14],[-7,-18],[-5,-21]],[[6753,8511],[-4,-10],[-1,-16],[6,5],[-1,8],[8,3],[-4,-10],[10,-2],[0,-10],[9,0]],[[6566,8218],[0,-7]],[[6566,8211],[4,-8]],[[6586,8226],[1,7]],[[6587,8233],[-1,8],[5,14],[7,6],[7,13],[0,6]],[[6593,8279],[-21,-22],[-3,2]],[[6569,8259],[0,-8],[-10,-10]],[[6371,8451],[3,11],[-1,27]],[[6373,8489],[-29,-6],[-1,-6],[-10,-10]],[[6334,8435],[3,1]],[[6767,9221],[14,9],[4,12]],[[6785,9242],[-32,0],[0,-14],[-4,6],[-9,1],[-20,-5],[-8,-10],[-3,8]],[[6709,9228],[-4,0],[15,-42],[0,-13]],[[6720,9173],[1,-4],[13,-3]],[[6734,9166],[7,9],[5,24],[-3,3],[8,16],[16,8],[0,-5]],[[6946,9107],[-6,-7],[-4,8],[-4,-5],[-4,10],[-6,-2]],[[6922,9111],[-3,-19],[-6,-20],[-4,-4]],[[6773,8937],[-6,-1],[0,11],[-7,5],[-1,16],[-5,-1],[5,-23],[6,-15],[-8,-21],[14,0],[6,-4]],[[7019,8526],[5,0],[-1,-20]],[[7023,8506],[-5,-16]],[[7018,8490],[-4,-16],[9,1],[6,8]],[[7029,8483],[13,27]],[[7042,8510],[2,10]],[[7044,8520],[-2,10],[-13,1],[-2,12]],[[7007,8552],[0,-16]],[[7007,8536],[0,-1]],[[6830,8673],[-3,-17]],[[6653,8987],[-4,6],[-16,8]],[[6633,9001],[-4,-14],[2,-4],[-5,-13],[-1,-13],[8,-12]],[[6633,8945],[12,17],[8,25]],[[6805,9088],[0,10],[-5,11]],[[6800,9109],[-4,18],[0,14],[-11,29],[-4,18],[-5,8],[-9,25]],[[6734,9166],[-1,-35],[11,-4],[1,-11],[-12,-7],[-7,-11]],[[6726,9098],[-1,-14],[5,-10],[-3,-28]],[[6727,9046],[9,3],[2,7],[7,-3],[4,10],[9,7],[21,0],[2,9],[13,5]],[[6470,8305],[-4,-14]],[[6466,8291],[1,-15]],[[6753,8511],[-3,6],[-3,20],[-4,4],[0,52]],[[6729,8568],[-9,-17]],[[6747,8463],[2,-12],[12,-3],[6,-15]],[[6767,8433],[3,28],[6,18]],[[6880,8849],[13,3],[5,5],[8,-5]],[[6905,8868],[-4,1],[-3,22],[-10,-4],[-7,7]],[[6869,8846],[11,3]],[[6784,8098],[0,13]],[[6784,8111],[-8,1],[-13,11]],[[6763,8123],[0,-3]],[[6763,8120],[6,-9],[3,-13]],[[6777,8098],[7,0]],[[6417,8336],[5,0]],[[6422,8336],[-6,39]],[[6416,8375],[-5,2]],[[6411,8377],[-6,0],[-6,-22]],[[6399,8355],[-4,-21],[4,-2]],[[6439,8203],[8,1]],[[6447,8204],[11,6]],[[6458,8210],[-4,7],[4,12]],[[6458,8229],[-8,-13],[-7,12],[0,-8],[-7,-4],[3,-13]],[[7059,8247],[-4,15],[-3,-14],[-7,8],[2,20],[-13,8],[-11,-4],[-2,-29],[3,-2],[-6,-18],[-14,-3],[1,-35]],[[7005,8193],[2,-8],[5,7],[7,-7],[8,2],[1,9],[9,13],[0,17],[4,5],[6,-6],[13,17],[-1,5]],[[6922,9111],[-4,5]],[[6339,9053],[-1,-21]],[[6338,9032],[15,-5],[4,-4]],[[6357,9023],[11,2]],[[6368,9025],[7,10],[-1,7],[-11,17],[-19,-8],[-5,2]],[[6876,8044],[6,5],[-10,25]],[[6872,8074],[-13,-7],[-6,-15]],[[6853,8052],[-1,-13],[19,-7],[0,11],[5,1]],[[6975,9033],[-2,15]],[[6947,9018],[3,-9]],[[6950,9009],[12,-11],[10,5]],[[6972,9003],[-1,11],[5,12],[-1,7]],[[6872,8074],[2,6]],[[6874,8080],[-1,8],[12,13],[-5,2],[6,13],[-6,7],[5,9],[8,-2]],[[6844,8133],[-8,-2]],[[6831,8070],[13,-13],[3,-8],[6,3]],[[6586,8541],[0,-24]],[[6586,8517],[7,0],[20,15]],[[6613,8532],[-12,6],[-9,11],[-6,-8]],[[6913,8498],[-2,5]],[[6911,8503],[-8,-5],[-15,2]],[[6888,8500],[-1,-2]],[[6885,8472],[9,-5],[17,-4],[5,-4],[5,-15],[11,-1],[12,-14]],[[6845,8724],[-5,1]],[[6840,8725],[2,-11]],[[6846,8366],[5,0],[10,24],[9,12],[-9,5],[2,14]],[[6843,8451],[-1,3],[-17,11]],[[6825,8465],[-8,-7]],[[6817,8458],[-1,-5],[-12,-5],[-10,-11],[-2,-31]],[[6792,8406],[-1,-18],[3,-19],[5,-8]],[[6799,8361],[7,-1],[5,7],[4,-9],[10,2],[6,-8],[15,14]],[[6696,8361],[-16,17]],[[6659,8371],[-8,-13],[-6,1],[-13,13]],[[6632,8372],[0,-2]],[[6632,8370],[-5,-14]],[[6644,8314],[14,-3],[15,-25],[3,2]],[[6676,8288],[15,10],[1,5]],[[6692,8303],[8,26],[2,15]],[[6702,8344],[-6,17]],[[6773,8286],[-2,5],[4,12],[9,12],[9,4]],[[6793,8319],[-2,12],[2,19],[5,0],[1,11]],[[6792,8406],[-20,-6],[-2,-9],[-17,15],[-2,11],[6,6]],[[6757,8423],[-8,2],[-1,6],[6,9],[0,9],[-8,-4],[-6,-11]],[[6740,8434],[1,-8],[-1,-19]],[[6740,8407],[0,-30]],[[6740,8377],[9,-3],[10,-36],[4,-2]],[[6763,8336],[8,-7],[-2,-13],[-5,-2],[2,-11],[-9,-7],[-4,-14],[-9,12]],[[6744,8294],[0,4],[-13,2],[-11,-2],[-3,7]],[[6717,8305],[-7,-11]],[[6710,8294],[9,-5],[5,-14],[14,-14]],[[6738,8261],[11,-4],[-6,-12],[10,-15],[10,2],[2,-8],[8,-1]],[[6825,8607],[-4,5],[-6,-10]],[[6823,8574],[10,-8]],[[6833,8566],[6,18],[7,7]],[[6825,8465],[9,3],[-7,45]],[[6827,8513],[-16,-11],[-9,11]],[[6793,8480],[6,-15],[8,-7],[10,0]],[[6345,8992],[-8,8],[-12,-12]],[[6338,8940],[1,50],[6,2]],[[6553,8165],[12,14],[0,30],[1,2]],[[6539,8216],[1,-9],[-4,-8],[1,-25]],[[6537,8174],[0,-20],[5,2],[2,9],[9,0]],[[6887,8275],[-6,5],[-15,-29]],[[6342,8385],[10,6]],[[6352,8391],[-1,9]],[[6319,8397],[2,-13]],[[6322,8380],[20,-4],[0,9]],[[6332,8406],[-2,8],[10,-2],[-6,-14],[-2,8]],[[6976,8025],[7,6],[-4,16],[6,14],[-1,11],[10,16],[6,15],[4,-6],[11,-6]],[[7015,8091],[0,9],[-7,2],[0,9],[11,9],[11,-5],[3,-13],[9,1]],[[7042,8103],[1,8],[9,12],[3,-6],[10,0],[7,-8]],[[7072,8109],[2,3]],[[7115,8270],[-2,1]],[[7096,8300],[-9,-2]],[[7087,8298],[-9,-18],[-3,-14],[-4,0],[-12,-19]],[[7005,8193],[-2,7],[-13,-7],[3,11],[-4,0]],[[6989,8204],[-3,-23],[6,1],[-3,-22],[-9,8],[-10,-26],[14,-12],[-9,-18]],[[6975,8112],[1,-9],[5,-2],[0,-18],[7,1],[-4,-12],[0,-13],[-13,-20],[2,-17]],[[6973,8022],[3,3]],[[6395,8842],[8,8]],[[6403,8850],[-6,31],[-7,4],[2,17],[8,1],[17,14]],[[6417,8917],[-2,11],[-6,0],[1,11]],[[6405,8945],[-3,-13],[-10,0],[0,13],[-14,1]],[[6355,8228],[-3,7],[8,19],[12,-2],[0,-3]],[[6375,8273],[-1,3]],[[6374,8276],[-4,9],[-8,0],[-3,-12],[0,-16],[-9,-6],[-5,11],[6,6],[1,14]],[[6352,8282],[-9,-5]],[[6343,8277],[-6,2],[-11,-16],[7,-11]],[[6333,8252],[9,-5],[2,-12]],[[6344,8235],[5,-11],[6,4]],[[6824,8181],[-5,-5]],[[6482,8999],[-7,9],[-10,2],[-3,5]],[[6441,9002],[6,-15]],[[6447,8987],[18,-20],[-2,-15],[-8,-9]],[[6455,8943],[3,-1]],[[6482,8942],[2,6]],[[7100,8572],[-8,0],[-8,-10],[-6,2],[1,-8],[-7,-9]],[[7072,8547],[-6,-11],[-10,-1]],[[7056,8535],[-2,-10],[7,-2],[6,-8],[12,1],[4,4],[2,13],[12,7],[8,-1],[-5,33]],[[7304,8399],[15,33]],[[7319,8432],[26,56]],[[7315,8535],[-14,-1],[0,-11],[-5,0],[-6,9],[-10,-12],[-7,9],[-17,1],[-2,18],[7,25],[-6,5],[-10,-3],[-12,3],[-7,-2],[-13,14],[5,-19],[-6,-11],[-8,11],[4,9],[-1,16],[-13,9],[0,22],[-10,5],[-4,28],[-8,28],[-4,-4],[-2,17]],[[7166,8701],[-6,-3],[-12,0],[-12,-14],[2,-7]],[[7138,8677],[-14,-30],[7,-13],[-4,-10]],[[7127,8624],[1,-7],[-10,-10],[15,0],[4,-7],[-7,-8]],[[7130,8592],[10,-16],[8,-1],[2,-9],[8,6],[0,10],[10,10],[6,-20],[-1,-8],[21,-33],[0,-12],[8,-1],[5,-25],[8,1],[6,-12],[9,1],[3,-6],[11,3],[16,-8],[1,-9],[14,-12],[0,-8],[10,5],[-4,-8],[3,-8],[9,2],[7,-5],[0,-20],[4,-10]],[[6917,8561],[-3,11]],[[6914,8572],[-8,18]],[[6906,8590],[-2,-12],[3,-6],[-6,-6],[0,-14]],[[6854,8799],[7,6]],[[6827,8513],[13,13]],[[6840,8526],[-3,3],[5,13],[1,14],[-10,10]],[[6806,8566],[3,-34],[4,-19],[-11,0]],[[7016,8789],[-3,1],[-17,-11],[5,-12],[3,3],[7,-14]],[[7011,8756],[8,-8]],[[7019,8748],[21,20]],[[7040,8768],[-12,16],[-12,5]],[[6622,8562],[-2,-13]],[[6620,8549],[10,4]],[[6630,8553],[11,10],[-2,18],[-12,3],[-4,9],[1,-26],[-2,-5]],[[6911,8503],[-8,10],[-16,-4]],[[6887,8509],[1,-9]],[[6905,8730],[3,22],[-12,-1]],[[6890,8749],[-2,-19]],[[6888,8730],[-1,-5]],[[6887,8725],[18,5]],[[7395,8717],[-3,23],[-4,-4],[-10,11],[-7,-2],[3,9],[-9,10],[-8,2],[-15,-4]],[[7342,8762],[-10,-9],[-17,-4],[-7,-27]],[[7308,8722],[4,-5],[-10,-12],[6,-33],[-13,1],[-4,-5],[1,-17],[20,-3],[3,10],[18,2],[2,9],[5,-21],[-5,-11],[-7,5],[-21,-3],[-1,-14]],[[7329,8552],[7,0]],[[6352,8282],[-3,9],[1,17],[5,14],[-3,9],[0,15]],[[6352,8346],[-12,-7],[-4,-7]],[[6336,8332],[4,-14],[0,-32],[3,-9]],[[7107,8718],[3,3]],[[7110,8721],[-2,9],[2,20],[7,-4]],[[7117,8746],[0,19],[3,9],[19,0]],[[7097,8847],[1,-24],[-10,-9],[-10,-17],[-3,-10],[5,-8]],[[7080,8779],[-2,-11],[4,-13],[4,-38]],[[6970,8522],[11,4]],[[6981,8526],[0,10],[7,3],[3,9]],[[6991,8548],[1,3]],[[6983,8561],[-22,-4],[-4,5]],[[6957,8562],[-3,-11]],[[6954,8551],[6,-10],[8,-3],[2,-16]],[[6720,9173],[-7,-8],[-6,0]],[[6707,9165],[0,-18],[-8,3],[-3,-21],[-6,7]],[[6690,9136],[-5,-27]],[[6685,9109],[10,2],[13,-19]],[[6708,9092],[4,-5],[14,11]],[[6918,8928],[-8,23],[-1,17],[-13,-5],[-4,2]],[[6881,8914],[19,6],[7,-1],[11,9]],[[7087,8945],[7,-2],[19,23]],[[7101,8345],[8,1],[1,9],[18,20],[3,10],[6,-4],[3,6]],[[7140,8387],[0,10],[-10,-2],[-2,9],[12,1],[14,7],[8,31],[4,-8],[9,-1],[9,-8],[16,8],[3,-8]],[[7203,8426],[1,11],[-5,5],[-7,-2],[-2,6],[10,5],[-6,14],[-12,4],[-14,-4],[5,5],[-2,20],[-14,13],[-8,10],[5,13],[0,13],[-6,9],[-9,-8]],[[7139,8540],[-12,-7],[-3,-9],[-1,-21],[-6,-4],[-5,13],[-18,-13],[6,-14],[-18,-4],[-1,-8]],[[7081,8473],[-6,-19],[4,-3]],[[7079,8451],[4,6],[17,2],[0,-22],[-9,-4],[15,-16],[0,-8],[7,-14],[-3,-3],[0,-21],[-11,-21],[2,-5]],[[7152,8444],[-8,9],[-6,16],[10,2],[-1,-11],[5,-16]],[[6758,8175],[-18,25],[-6,-10],[-2,3],[-7,-8],[-8,-20]],[[6717,8165],[-1,-9],[8,-3]],[[6724,8153],[9,0],[30,-22]],[[6763,8131],[1,11]],[[7308,8722],[-13,-2],[-10,4],[-3,17]],[[7282,8741],[-3,-3],[-5,10],[3,4]],[[7248,8747],[-3,-5],[-2,12],[-15,-26],[-3,8],[-8,5]],[[7217,8741],[-12,-8],[1,-9],[-6,-4],[-7,6]],[[7193,8726],[-13,-2],[-1,10],[-6,2],[-7,-18]],[[7166,8718],[0,-17]],[[6513,8532],[-3,26]],[[6510,8558],[0,15],[-3,17],[-11,5]],[[6496,8595],[-7,-7],[2,-11],[-20,15]],[[6471,8592],[-11,-15],[-6,-26],[12,-9],[2,-10],[-10,7],[-8,-13]],[[6450,8526],[2,-18],[13,-10],[2,-12]],[[6467,8486],[8,8],[9,-16],[-1,-16],[3,-11]],[[6486,8451],[0,21],[3,15],[16,20],[8,25]],[[6975,9080],[0,18],[9,28]],[[6984,9126],[-3,7],[-14,3],[-7,-17]],[[6532,8476],[2,8],[13,19]],[[6547,8503],[1,13]],[[6548,8516],[-12,13],[-23,3]],[[6486,8451],[5,-12],[8,0]],[[7031,9177],[-5,10],[1,11],[-4,16],[-9,0],[2,5]],[[7016,9219],[-1,12],[-17,-7],[-14,-14],[1,-14],[-10,-3]],[[6975,9193],[-5,-4],[6,-18]],[[6976,9171],[5,-20],[9,-11]],[[6990,9140],[10,0],[3,11],[4,-3],[12,8],[12,3],[4,-7]],[[7081,8473],[-11,6],[-5,-6],[-10,8],[0,9],[-13,20]],[[7029,8483],[8,-12],[3,-17],[-2,-17],[5,-7],[3,-23]],[[7046,8407],[8,8],[6,-1],[3,11],[6,1],[1,14],[9,11]],[[6655,9035],[1,9],[-4,8],[0,11],[10,-6],[-2,14],[10,2],[7,-4],[-5,20],[-21,8]],[[6651,9097],[-1,-5],[-8,4],[-8,-21],[-12,4],[-4,-3],[0,12],[-4,3]],[[6614,9091],[1,-29],[-2,-2]],[[6613,9060],[5,-21],[11,-10],[4,-23]],[[6633,9006],[6,13],[13,1],[-2,10],[5,5]],[[6888,8363],[-18,18],[4,10],[8,-10],[14,0],[10,6],[-18,14]],[[6888,8401],[-4,14]],[[6884,8415],[-11,7]],[[6846,8366],[4,-23],[7,0],[4,7],[8,-11],[-13,-1],[-3,-11],[4,-26]],[[6857,8301],[7,15],[7,-5],[7,19]],[[6672,8479],[-10,7]],[[6650,8489],[0,-7]],[[6650,8482],[8,-4],[2,-8]],[[6991,8548],[7,-12],[9,0]],[[6699,8609],[14,21],[6,-7],[4,8],[9,7],[5,32]],[[6737,8670],[-2,11],[-5,-6],[-12,7],[-10,14],[-4,11],[3,12]],[[6699,8725],[1,-10],[-7,-9],[-2,-12],[-4,7],[0,11],[-7,-16]],[[6680,8696],[-7,-21]],[[6673,8675],[-3,-15]],[[6695,8582],[4,27]],[[6630,8655],[-4,42],[-6,4]],[[6620,8701],[-7,0],[-4,-21],[-6,-6]],[[6603,8674],[0,-14]],[[6603,8660],[11,-11]],[[6614,8649],[16,6]],[[6893,8795],[-7,3]],[[6886,8798],[-10,-22],[-6,-3],[0,-16]],[[6870,8757],[2,-10],[6,-2]],[[6878,8745],[7,6]],[[6793,8319],[13,-6],[5,8]],[[6811,8321],[9,7],[1,-7],[-4,-13],[8,-25],[8,-6],[10,3]],[[6843,8280],[6,19],[8,2]],[[6627,8437],[-12,3],[-8,-12]],[[6607,8428],[0,-27]],[[6607,8401],[13,-11],[4,-15],[8,-5]],[[6632,8372],[0,0]],[[6632,8372],[4,6],[0,17],[-3,7],[3,10]],[[6978,8500],[-8,1]],[[6984,8461],[6,6],[3,13]],[[6993,8480],[-6,6],[-4,12],[-5,2]],[[7000,8493],[7,-9],[11,6]],[[7023,8506],[-16,7]],[[7007,8513],[-4,-7],[-3,-13]],[[6660,8453],[-1,-8]],[[6659,8445],[10,-6],[-5,-11],[4,-9],[6,7],[-2,11]],[[6490,9034],[-8,5]],[[7016,8789],[3,5],[2,20]],[[7021,8814],[-15,0]],[[6971,8781],[-3,-1],[8,-31],[15,-17],[13,15],[0,7],[7,2]],[[6823,8650],[-3,7],[-13,11]],[[6807,8638],[9,-7]],[[6816,8630],[8,1],[-1,19]],[[6780,8064],[3,0]],[[6783,8064],[-3,22]],[[6780,8086],[-2,3]],[[6773,8075],[4,-12],[3,1]],[[6663,8978],[-1,-5],[9,0],[1,-10],[9,-5],[4,-22],[12,-11],[7,4]],[[6704,8929],[2,18],[5,2],[5,24],[-2,10],[-14,6]],[[6700,8989],[-7,1],[-14,-11],[-16,-1]],[[6411,8377],[-5,9],[0,15],[-3,15],[-10,2],[6,-28],[-10,-9],[3,-4],[-7,-11],[1,-8],[13,-3]],[[7193,8726],[0,4],[-12,14],[-2,-1],[-3,20]],[[7149,8773],[1,-16],[4,-11],[-2,-8],[5,-19],[9,-1]],[[6989,8204],[5,19],[2,18]],[[6996,8241],[-12,-15],[-6,1],[-17,-20],[0,-12],[-7,-3],[5,15],[-2,9],[4,5],[-10,0],[-8,-4]],[[6927,8136],[10,-11],[10,-19],[7,11],[12,-2],[-2,-12],[11,9]],[[6937,8755],[1,2]],[[6938,8757],[-4,4],[0,37],[-4,4],[-12,-14],[-7,-1]],[[6918,8756],[15,5],[4,-6]],[[6784,8111],[6,1]],[[6790,8112],[0,10],[7,0]],[[6763,8131],[0,-8]],[[6904,9051],[-6,-13],[0,-16]],[[6918,8928],[2,-1],[10,45],[7,24],[6,1],[7,12]],[[6953,9214],[-8,6],[-6,35]],[[6936,9254],[-5,-22],[6,-12]],[[6937,9220],[2,-13],[-4,-8],[-1,-13]],[[6934,9186],[9,0],[7,15],[4,4],[-1,9]],[[6510,8338],[-2,12]],[[6508,8350],[-4,-11],[-12,6],[-1,-9],[-5,17],[-7,-5]],[[6479,8348],[-17,0],[-7,-18],[-15,5],[-10,-3],[2,-7],[-7,0],[-3,11]],[[6420,8320],[3,-2],[13,9],[5,-7],[14,2],[-6,-19]],[[6449,8303],[17,-12]],[[6572,8490],[3,8]],[[6575,8498],[-3,14],[-9,7]],[[6563,8519],[-7,1]],[[6556,8520],[-8,-4]],[[6547,8503],[5,-5],[9,0],[11,-8]],[[6496,8595],[3,15],[-5,7]],[[6475,8619],[-6,1],[-5,-11],[7,-17]],[[6791,8912],[8,-5]],[[6373,8489],[0,8],[6,2],[9,16]],[[6388,8515],[-3,10],[0,42]],[[6385,8567],[-6,-3]],[[6846,8797],[-5,-14]],[[6841,8783],[8,-12],[-3,-1]],[[6847,8766],[5,8],[3,-16],[5,1]],[[6860,8759],[-5,22]],[[6724,8153],[-1,-17],[16,-11],[15,-16]],[[6754,8109],[9,11]],[[6423,8284],[4,7]],[[6427,8291],[-1,11],[-10,8]],[[6416,8265],[7,19]],[[7017,8645],[-11,-2],[-8,-13]],[[6941,8536],[13,15]],[[6954,8551],[-16,7]],[[6931,8560],[-7,4]],[[6924,8564],[-2,-1]],[[7408,9129],[-33,10],[-11,2],[-24,-2]],[[7340,9122],[7,-7]],[[6790,8112],[8,-3]],[[6673,8502],[-13,4]],[[6289,8359],[21,-9]],[[6615,8645],[-1,4]],[[6603,8660],[-4,-18],[-8,-3],[-5,6]],[[6586,8645],[-6,6],[-6,-2]],[[6976,9219],[3,7],[-8,4],[5,9],[5,0],[-1,14],[8,4]],[[6988,9257],[-2,6],[-10,6],[-1,7],[11,3]],[[6986,9279],[-7,7],[-13,-9],[-9,10]],[[6953,9214],[4,8],[9,2],[10,-5]],[[6914,9140],[13,5],[6,18],[7,-8]],[[6940,9155],[-2,21],[-6,2]],[[6932,9178],[-5,-8],[-5,8],[-6,-3],[-9,9],[4,10],[-2,12]],[[6909,9206],[-6,24]],[[6871,9188],[-2,-10]],[[6869,9178],[4,-1],[11,-21],[0,-8]],[[6646,8681],[6,13]],[[6652,8694],[-1,24],[3,13],[-3,10]],[[6615,8746],[5,-5],[2,-25],[-2,-15]],[[6630,8655],[3,10]],[[6633,8665],[5,19],[8,-3]],[[6627,8283],[-2,15],[-5,7]],[[6620,8305],[-11,-6]],[[6612,8280],[6,0]],[[6618,8280],[9,3]],[[7033,8578],[-8,18]],[[6583,8560],[3,0],[0,-19]],[[6613,8532],[0,0]],[[6613,8532],[7,17]],[[6352,8346],[-9,28],[-1,11]],[[6310,8350],[7,-6],[19,-12]],[[6865,8491],[-8,13]],[[6857,8504],[0,8],[-17,14]],[[6404,8199],[16,0]],[[6420,8199],[0,29],[8,-3],[15,4],[0,20],[24,20]],[[6449,8303],[-4,-12]],[[6445,8291],[4,-17],[-4,-18],[-12,0],[2,15],[-12,13]],[[6397,8201],[7,-2]],[[6924,8564],[6,5],[1,10]],[[6931,8579],[-5,-1],[1,39],[5,3],[1,17],[7,2]],[[6940,8639],[-19,20]],[[6921,8659],[-1,-17],[3,-11],[-3,-5],[0,-27],[-4,-10],[4,-17],[-6,0]],[[6863,9192],[-4,-7],[-22,-21]],[[6837,9164],[2,-26],[10,-33]],[[6860,9119],[5,13],[-2,11],[5,5],[-4,11],[5,19]],[[6691,8404],[-15,-5]],[[6696,8361],[3,-2],[3,14],[0,33]],[[7657,8989],[1,-17],[-17,0],[-5,-22],[-4,1],[-10,-12],[-8,10],[1,-18],[-14,7],[-1,-12],[-14,5],[-5,12],[-9,-7],[-6,3]],[[7499,8908],[0,-7],[-11,3],[-28,-8],[2,21],[-14,-1]],[[7444,8834],[44,24],[21,5],[51,0],[126,2],[-1,9]],[[7079,9270],[-13,19],[-2,16],[3,32]],[[7067,9337],[-13,10]],[[7054,9347],[-10,-19],[-13,-18],[2,-5],[-33,1],[-8,-2],[-1,-21],[3,-16],[-3,-6]],[[6991,9261],[6,-6],[4,9],[6,-11],[14,5],[4,-15],[7,-5],[-3,-12],[-13,-7]],[[6882,8547],[5,-16]],[[6887,8531],[8,13]],[[6895,8544],[-5,8],[-8,-5]],[[6834,8939],[-2,-6]],[[6567,8656],[8,21]],[[6575,8677],[0,1]],[[6553,8721],[-3,3],[-2,-14],[1,-18]],[[6547,8650],[6,-22],[9,3]],[[6717,8305],[2,33]],[[6719,8338],[-9,6],[-8,0]],[[6692,8303],[13,-10],[5,1]],[[6792,8826],[-12,14],[9,18]],[[6789,8858],[-19,1]],[[6770,8859],[-10,0]],[[6760,8859],[-12,-20]],[[6759,8823],[8,7],[8,-4],[17,0]],[[6651,9097],[0,20],[-11,-2],[-6,8],[-1,13],[-3,-17],[-7,-1],[-4,14],[9,7],[-3,4],[8,12],[-3,6]],[[6630,9161],[-5,2],[-11,-11],[-1,-19],[-7,1],[4,-28],[-1,-10]],[[6609,9096],[5,-5]],[[6776,8724],[3,14],[-12,13]],[[6767,8751],[-3,8]],[[6764,8759],[-16,1],[-7,-3],[-2,7],[-5,-5],[-3,20]],[[6731,8732],[22,-9],[10,5],[9,-7]],[[6772,8721],[4,3]],[[6677,8751],[2,-31],[-9,-4],[-4,5],[-2,-13],[17,4],[-1,-16]],[[7117,8746],[6,-8],[10,-2],[-12,-31]],[[7121,8705],[-6,-6],[2,-10],[14,-12],[7,0]],[[6816,8216],[5,1]],[[6700,8794],[0,12],[-6,14],[0,8],[6,12],[7,-1],[-10,18],[-10,5],[9,6],[6,10],[-7,14],[7,1],[5,-6],[3,8],[7,4],[6,13],[-1,13],[3,7]],[[6725,8932],[11,7]],[[6736,8939],[-9,8],[4,11],[9,10],[16,-18],[1,-18],[-4,-4]],[[6753,8928],[-1,-21],[2,-13],[-1,-10],[7,-12],[0,-13]],[[6770,8859],[7,45]],[[6801,8998],[-7,12]],[[6794,9010],[-3,12],[-1,23],[-3,0],[10,26]],[[6727,9046],[-1,10],[-6,-9],[-4,6],[-8,1]],[[6708,9054],[-14,0],[-14,-11]],[[6680,9043],[6,-12],[1,-13],[10,-2],[6,-18],[-3,-9]],[[6704,8929],[-14,-30],[2,-12],[-3,-15]],[[6689,8872],[-6,-8],[1,-13],[11,-12],[-12,5],[-11,-2],[-7,-13]],[[6665,8829],[11,-15],[-4,-15],[-6,-4],[17,-11]],[[6967,8001],[1,14],[5,7]],[[6919,8130],[2,-7],[-9,0],[1,-14],[-13,-20],[-6,-8],[1,-8],[-21,7]],[[6876,8044],[5,-15],[-10,-4],[-4,-12],[-4,2],[-5,-10]],[[6932,9178],[2,8]],[[6937,9220],[-10,1],[-6,-8],[-4,-13],[-8,6]],[[7007,8513],[4,5]],[[6981,8526],[3,-13]],[[6984,8513],[5,0],[11,-20]],[[6657,8538],[-4,-2]],[[7226,9073],[8,15],[-4,22],[-8,41],[-1,17],[-2,-9],[-15,-10],[-12,11]],[[6628,8282],[3,-2]],[[6631,8280],[21,-22],[24,-24]],[[6676,8234],[0,54]],[[6626,8322],[-4,-12]],[[6622,8310],[12,-5],[-6,-23]],[[6880,8849],[-3,-8],[9,-43]],[[6378,8990],[17,-10],[8,-1]],[[6403,8979],[1,9],[7,12],[16,13],[5,8]],[[6432,9021],[-5,8],[-9,3],[-15,-2],[-14,-17],[-1,-11],[-12,-1],[2,-11]],[[6444,8477],[2,16],[-7,16]],[[6439,8509],[-7,-3]],[[6432,8506],[-10,-25],[3,-11]],[[6602,8311],[0,-6]],[[6620,8305],[2,5]],[[6617,8339],[-12,-8]],[[6967,8517],[3,5]],[[6840,9015],[-9,16],[-8,-2]],[[6823,9029],[6,-24],[8,-15]],[[6392,8316],[4,-8],[-6,-1],[1,-7]],[[6391,8300],[4,-3]],[[6837,9164],[-9,7]],[[6802,9225],[-9,-7],[5,-1],[-1,-19],[-7,-3],[9,-10],[7,1],[8,-60],[-14,-17]],[[6793,8699],[4,0]],[[6804,8710],[2,10],[-8,15]],[[6798,8735],[-10,9]],[[6784,8749],[-17,2]],[[6776,8724],[1,-13]],[[6764,8759],[1,3]],[[6823,8650],[0,0]],[[6820,8621],[4,-4]],[[6860,8620],[1,4]],[[6806,8566],[-6,15],[-8,-7],[-14,2],[-14,9]],[[6764,8585],[1,-21]],[[6830,8805],[1,7]],[[6831,8812],[1,1]],[[6832,8813],[-4,7]],[[6828,8820],[-10,2],[-9,-8],[-5,5],[5,10]],[[6809,8829],[-5,-1]],[[6804,8828],[-3,-7]],[[6801,8795],[11,7],[0,-9],[18,12]],[[6884,8415],[3,11],[12,2],[15,-7],[13,5],[10,-1],[7,-9]],[[6615,8746],[-9,1]],[[6587,8705],[4,-26],[2,-1]],[[6593,8678],[10,-4]],[[6992,8674],[4,20],[7,14]],[[7003,8708],[7,22],[5,5]],[[7015,8735],[4,13]],[[6966,8789],[-7,-14],[-15,-8],[-6,-10]],[[6937,8755],[-2,-12],[5,-3]],[[6940,8740],[13,-23],[13,5],[-2,-24],[7,1],[5,-14],[16,-11]],[[7018,8649],[-10,5]],[[7008,8654],[-3,8],[-14,2]],[[6991,8664],[-1,-19],[3,-12]],[[6403,8850],[5,5],[9,-4],[12,22]],[[6429,8873],[1,16],[-5,7],[-2,14],[-6,7]],[[6840,8846],[3,5]],[[6447,8987],[-5,3],[-9,-13],[-9,-8]],[[6446,8946],[9,-3]],[[6983,8632],[-2,-4]],[[6990,8632],[-7,0]],[[6731,8409],[9,-2]],[[6740,8434],[-13,9],[3,16],[-18,8]],[[7321,9016],[-1,-1]],[[7320,9015],[-3,-5],[2,-14]],[[7215,9204],[-18,20],[-8,3],[-14,13],[-12,3],[-4,42]],[[7159,9285],[-18,6],[-2,13],[-11,1],[-19,8],[-4,5],[-25,9],[0,4],[-13,6]],[[7123,9234],[5,-3],[8,-14],[7,-23]],[[7190,9168],[10,-5],[3,15],[-2,9],[14,17]],[[7332,9107],[-3,-8]],[[6821,8688],[-7,4]],[[6812,8677],[4,-5],[5,16]],[[6727,8355],[13,-14],[9,-5]],[[6749,8336],[14,0]],[[6740,8377],[-5,-15],[-8,-7]],[[6433,9017],[-1,4]],[[6744,8294],[6,22]],[[6750,8316],[-18,12],[-5,14],[-6,8]],[[6721,8350],[-2,-12]],[[6708,9092],[0,-38]],[[6852,8848],[-1,6]],[[6972,9003],[5,5],[0,-16],[3,-35],[7,2]],[[6556,8453],[4,22],[6,3],[6,12]],[[6532,8470],[19,-19]],[[6551,8451],[5,2]],[[6785,9242],[1,11]],[[6786,9253],[-26,19],[-10,5],[-2,10],[-11,10],[-3,13]],[[6734,9310],[-8,0],[-22,-23],[-17,-10]],[[6687,9277],[10,-31]],[[6697,9246],[10,-7],[2,-11]],[[6990,9140],[-6,-14]],[[6589,8666],[-10,4],[-4,7]],[[6586,8645],[3,21]],[[6592,8297],[-3,5]],[[6589,8302],[-9,3],[-6,-4],[-2,7]],[[6572,8308],[-12,11],[-10,-7]],[[6550,8312],[-2,-10],[10,-20]],[[6558,8282],[11,-23]],[[6780,8086],[4,1]],[[7110,8721],[5,-1],[6,-15]],[[6986,9279],[-3,16],[3,13],[-27,1],[-8,-4],[11,34],[3,32],[-1,28]],[[6964,9399],[-10,2],[-14,-5],[-9,0],[-10,7],[-8,12],[-10,-2]],[[6903,9413],[6,-18],[0,-30],[-9,-29]],[[7074,8771],[6,8]],[[7093,8875],[-10,19]],[[7047,8904],[-2,0],[-8,-17],[-3,-12],[-10,-23]],[[7024,8852],[-3,-38]],[[7040,8768],[23,10],[11,-7]],[[6843,8280],[3,-6]],[[7569,9088],[13,-6],[3,-22],[7,-2],[9,4],[8,-10],[4,-13],[0,-11],[4,-16],[8,3],[10,-10],[1,-22],[20,13]],[[6920,8894],[-8,8],[8,17],[-2,9]],[[6918,8888],[2,6]],[[6652,8694],[4,7],[12,-6],[-1,-7],[6,-13]],[[6845,8228],[-6,-16]],[[6613,8532],[16,-8],[11,-1]],[[6646,8540],[-16,13]],[[6638,8492],[-7,-18]],[[6631,8474],[-1,-8]],[[6630,8466],[11,-9],[5,7]],[[6646,8464],[0,15],[4,3]],[[7005,8860],[19,-8]],[[6986,8924],[-5,2],[-16,-13],[-11,-13],[-16,-17]],[[6938,8883],[2,-8]],[[6940,8875],[0,-2]],[[6630,9161],[-3,4],[1,23],[-5,9],[-1,18],[3,19],[8,21],[7,-12],[12,-1],[0,-7],[8,-3],[2,-8],[8,3]],[[6670,9227],[22,11],[5,8]],[[6687,9277],[-20,-8],[-17,-4],[-13,4],[-31,-6],[-18,-10],[-14,3],[-18,-7],[-13,0],[-3,7],[-31,-7],[-5,-5]],[[6504,9244],[0,-17],[7,-3],[8,-14],[5,-20],[-3,-12],[-2,-28],[7,-11],[-1,-9],[13,-15],[6,-2],[7,17],[6,-4],[7,-16]],[[6564,9110],[2,3],[25,-5],[12,-14],[6,2]],[[6642,9269],[0,0]],[[6953,8363],[-5,-2],[-8,16],[8,9],[-11,17],[-9,4],[-5,-7],[-17,6],[-7,10],[-8,-7],[-3,-8]],[[6908,8378],[8,-12],[10,-6],[10,1],[12,-13],[8,2],[-3,13]],[[7053,8721],[-8,0],[-2,20],[-9,-2],[0,-16],[-3,-1],[-10,13],[-6,0]],[[7003,8708],[0,-14],[10,-14],[-1,-23],[-4,-3]],[[7018,8650],[-3,13],[4,8],[8,0],[4,10]],[[6630,8451],[0,15]],[[6631,8474],[-4,-2]],[[6627,8472],[-7,-10],[-14,5],[0,24]],[[6606,8491],[-7,-15],[-12,1]],[[6587,8477],[-2,-15],[-18,-19],[-11,10]],[[6551,8451],[-3,-17]],[[6548,8434],[13,-2],[6,7],[3,-16],[9,-1]],[[6593,8422],[5,4],[9,2]],[[6548,8095],[11,14]],[[6559,8109],[2,11],[12,14]],[[6573,8134],[1,6]],[[6574,8140],[-10,2],[-5,17],[-6,6]],[[6537,8174],[-4,4]],[[6533,8178],[-10,-8],[-4,-10],[-9,-6],[-10,17]],[[6489,8171],[1,-9],[7,-8],[-12,-9],[-3,-9]],[[6511,8119],[1,4],[9,0],[3,8],[5,-3],[9,-17],[5,11],[-7,9],[1,16],[8,-1],[13,7],[-1,-36],[-7,-1],[-7,-13],[5,-8]],[[6594,8392],[13,9]],[[6833,8729],[-5,5]],[[6828,8716],[6,0],[-1,13]],[[6881,8711],[5,3],[1,11]],[[6888,8730],[-7,-4],[-1,6]],[[6880,8732],[-17,-6]],[[6871,8721],[9,1],[0,-11]],[[6807,9257],[-21,-4]],[[6378,8990],[-3,-2]],[[6375,8988],[-4,-1],[3,-16]],[[6533,8426],[11,-8],[4,16]],[[6956,9126],[1,7],[-7,8],[0,8]],[[6950,9149],[-10,6]],[[6388,8515],[5,0]],[[6393,8515],[13,-7],[2,-11],[7,-16],[2,-14]],[[6432,8506],[0,25],[-3,9],[-6,3],[-11,19],[-2,20],[-7,16],[-5,-16],[-13,-15]],[[6880,8732],[-2,13]],[[6870,8757],[-10,-4]],[[6850,8686],[1,10]],[[6847,8691],[3,-5]],[[6859,8683],[-3,5],[2,16]],[[6853,8698],[-1,-14]],[[6852,8684],[0,-5]],[[6852,8679],[7,4]],[[6849,9027],[-6,16]],[[6843,9043],[-5,6],[-17,-6]],[[6821,9043],[-1,-14]],[[6820,9029],[3,0]],[[6445,8291],[-12,5],[-6,-5]],[[6828,9062],[-7,-19]],[[6843,9043],[9,24],[-1,9],[-9,11]],[[6783,8064],[11,-3]],[[6926,8723],[-14,-2]],[[6912,8721],[9,-33]],[[6921,8688],[9,12],[-4,23]],[[6810,8848],[6,4]],[[6802,8867],[-13,-9]],[[6792,8826],[1,10],[12,12],[5,0]],[[6887,8509],[-3,9]],[[6884,8518],[-8,4],[-12,-4],[-7,-14]],[[6843,8813],[-12,-1]],[[6830,8805],[-1,-16]],[[6829,8789],[12,-6]],[[6855,9084],[12,-19]],[[6899,8646],[-22,6],[-5,-13],[-4,5],[-5,-6]],[[6861,8624],[9,-15],[3,-23],[5,-10],[4,-29]],[[6895,8544],[6,8]],[[6906,8590],[-8,4],[6,25],[-5,27]],[[6685,9109],[0,3],[-19,5],[2,20],[5,8]],[[6673,9145],[4,11],[-6,4],[1,18],[2,3],[3,16],[5,13],[-12,17]],[[6655,9035],[8,-1],[9,10],[8,-1]],[[6921,8659],[-4,-4],[-8,6],[-5,-6]],[[6904,8655],[-5,-9]],[[6502,9050],[1,6],[-13,25],[-9,2]],[[6874,8805],[12,-7]],[[6829,8789],[2,-10]],[[6580,8511],[6,6]],[[6569,8548],[-2,-1]],[[6567,8547],[3,-10]],[[6570,8537],[9,-10],[-2,-15],[3,-1]],[[6589,8666],[4,12]],[[6553,8732],[-4,-8],[-4,4],[-9,-13],[-10,-4],[-1,4]],[[6525,8715],[-2,-10]],[[6574,8140],[3,24],[5,7],[2,-7],[9,10],[9,1]],[[6850,8686],[2,-2]],[[6378,8408],[-5,22]],[[6362,8406],[9,-5],[3,12],[4,-5]],[[6550,8757],[5,28],[4,10],[3,24],[10,17],[0,16],[7,6]],[[6579,8858],[-4,20],[3,6]],[[6578,8884],[-3,7],[-11,5],[-8,23]],[[6556,8919],[-25,-7],[-6,5],[-7,-5],[-15,0],[4,16],[-7,-4]],[[6546,8757],[4,0]],[[6804,8828],[0,8],[9,10],[-3,2]],[[6515,8625],[9,-13],[7,4],[8,32]],[[6522,8649],[0,-7],[-7,-6],[0,-11]],[[6391,8300],[-6,-11],[-9,0],[-2,-13]],[[6618,8773],[-11,-3]],[[6607,8770],[-13,-5]],[[6594,8765],[-2,-17]],[[6570,8537],[-1,-13],[-6,-5]],[[6575,8498],[5,-1]],[[6580,8497],[0,14]],[[6840,8725],[-3,8]],[[6837,8733],[-4,-4]],[[6821,8688],[4,2]],[[6625,8926],[5,9]],[[6630,8935],[3,10]],[[6633,9001],[0,5]],[[6613,9060],[-12,-12],[-22,2],[-12,-13],[-5,-2]],[[6562,9035],[-2,-12],[6,-4],[-8,-10]],[[6558,9009],[8,-11],[17,-11],[0,-13],[-7,-17],[-4,-19]],[[6572,8938],[8,-5],[25,2],[4,-12],[7,5],[9,-2]],[[6828,8820],[3,1]],[[6831,8821],[-2,12]],[[6818,8849],[-5,-18],[-4,-2]],[[6798,8735],[4,-2],[5,12]],[[6807,8745],[5,13]],[[6812,8758],[-11,20]],[[6832,8813],[-1,8]],[[6859,8675],[0,8]],[[6868,9109],[12,17],[4,12]],[[6552,8748],[-2,9]],[[6498,8735],[17,-6],[0,8],[7,-7],[-4,-4],[7,-11]],[[7106,8692],[3,2],[1,-19],[-4,-16],[-9,-9]],[[7097,8650],[11,-5],[6,3],[12,-9],[1,-15]],[[6712,8411],[5,-8],[-1,-25],[9,-19]],[[6725,8359],[2,-4]],[[6515,8625],[-13,8],[-4,16]],[[6510,8558],[3,2],[21,-8],[14,-9],[5,-10]],[[6553,8533],[6,18],[8,-4]],[[6558,8282],[-20,-5],[-4,-4],[0,-12],[-8,-12]],[[6812,9292],[-6,49],[-4,8],[1,22],[-3,3]],[[6800,9374],[-14,-15],[-19,-13],[-20,-8],[-8,-9],[-5,-19]],[[6345,8992],[3,6],[9,2],[0,23]],[[6338,9032],[-15,1],[-1,-17]],[[6839,8735],[-2,-2]],[[6659,8445],[-5,-11],[5,-11]],[[6521,8405],[-2,-16]],[[6519,8389],[7,8],[14,-6],[5,-16],[-5,-4]],[[6551,8364],[24,27]],[[6799,8061],[4,-15],[4,-5],[2,-22],[11,-8],[1,-14],[18,-17]],[[6839,7980],[-2,11],[12,-3],[0,9]],[[7440,8616],[25,2]],[[7465,8618],[42,4],[11,0],[154,14]],[[7672,8636],[69,7]],[[6553,8533],[3,-13]],[[6859,8710],[9,-23]],[[6868,8687],[8,7]],[[7060,9120],[3,-20]],[[7282,8741],[9,18],[6,24],[10,49],[3,26]],[[7310,8858],[-5,-1],[-4,14],[-13,2],[2,12],[-6,9],[1,9],[-7,6],[-5,-8],[-7,6],[-2,16]],[[7264,8923],[-24,-34]],[[7240,8889],[-9,-18],[3,-14],[-4,-16],[8,-8]],[[7054,9347],[-17,9],[0,7],[-10,2],[1,9],[-7,0],[-5,9],[-12,4],[-3,8],[-8,6],[-29,-2]],[[6988,9257],[3,4]],[[7018,9384],[0,0]],[[6997,9399],[0,0]],[[7042,9359],[0,0]],[[6998,9398],[0,0]],[[7031,9368],[0,0]],[[7031,9368],[0,0]],[[7032,9368],[0,0]],[[7039,9356],[0,0]],[[7032,9368],[0,0]],[[6481,9083],[4,15],[-9,38],[-4,37],[-5,31]],[[6467,9204],[-26,-27]],[[6441,9177],[-2,-8],[8,-21],[-1,-15],[4,-12],[-3,-12],[-12,-21],[5,-16],[6,9],[7,-8]],[[6429,8873],[15,10],[12,18]],[[6676,8234],[8,25],[12,-13],[1,-5],[16,-1],[5,8],[11,-6],[9,19]],[[7087,8298],[-7,5],[-3,-16],[-9,7],[-3,11],[-9,0],[-8,11],[-3,-2],[-4,11]],[[7016,8302],[-4,3],[-12,-5],[-4,-6],[0,-17],[6,-4],[-15,2],[0,-16],[-7,-8],[16,-10]],[[7264,8923],[11,0],[4,14]],[[7283,8978],[-5,29],[-4,8]],[[7274,9015],[-30,26],[-5,6],[-12,0],[-8,10]],[[7170,8918],[28,27],[15,-25]],[[7213,8920],[3,-10],[10,3],[14,-24]],[[6887,8531],[-3,-13]],[[6760,8859],[-30,3],[1,6]],[[6731,8868],[-5,2],[-4,-10],[2,-7],[14,-18],[10,2]],[[7320,9015],[-5,19],[-8,5],[1,8],[-6,8],[-7,-5],[-21,-35]],[[6651,8395],[-5,-7],[-14,-16]],[[6606,8491],[0,14],[7,22]],[[6613,8527],[0,5]],[[6580,8497],[3,-15],[4,-5]],[[6975,9193],[3,11],[-2,15]],[[6950,9149],[7,0],[10,10],[9,12]],[[6811,8321],[-5,-16],[1,-14],[5,-8]],[[6765,8635],[10,24]],[[6770,8682],[-11,6],[-6,-11],[-2,9],[-6,2],[0,19],[12,1],[10,15],[5,-2]],[[6737,8670],[6,-6],[1,-11],[6,0],[8,-18]],[[7341,8815],[1,-1],[-14,-40],[8,-1],[-1,-13],[7,2]],[[6736,8939],[10,-2],[-2,-16],[9,7]],[[6620,8636],[6,-4],[0,-10],[6,0],[-3,9],[8,-1],[1,14],[-5,21]],[[6676,8234],[16,-31],[0,-32]],[[6692,8171],[3,2],[13,-11],[9,3]],[[6707,9165],[-9,3],[-4,-9],[-12,-12]],[[6682,9147],[8,-11]],[[6754,8109],[-2,-25]],[[6752,8084],[13,-1],[7,-9]],[[6772,8074],[1,1]],[[7074,8771],[-18,-16],[1,-14],[4,4],[0,-12]],[[6725,8359],[-4,-9]],[[6750,8316],[-1,20]],[[7074,8616],[6,27]],[[7080,8643],[-6,4],[6,8],[-10,5]],[[7048,8628],[9,0],[8,11],[4,-15],[5,-8]],[[6847,9320],[8,15],[1,9],[17,3],[9,-5],[8,1]],[[6903,9413],[-8,-2]],[[6895,9411],[0,0]],[[6895,9411],[-4,1],[-18,-9],[-7,-7],[-19,-12],[-11,-4],[-36,-6]],[[7174,8877],[11,4],[6,8],[17,15],[0,13],[5,3]],[[6985,8596],[-17,-16],[-4,-9],[-6,1]],[[6958,8572],[-1,-10]],[[6989,8591],[-4,5]],[[6931,8579],[8,11],[15,4]],[[6954,8594],[-2,13],[0,23],[-3,3]],[[6949,8633],[-9,6]],[[6624,8784],[-14,-5],[-18,3],[1,-8],[12,0],[2,-4]],[[6509,8675],[4,17],[-2,15],[-5,-2],[-4,10],[2,12],[-9,5]],[[6486,8673],[10,2],[-2,-7],[10,1],[5,6]],[[6674,8902],[-7,14],[-7,5],[-11,-6],[-5,2],[-6,13],[-8,5]],[[6625,8926],[-6,-9],[-8,-28]],[[6611,8889],[5,-6]],[[6616,8883],[8,-4],[28,-2],[8,10],[-1,7],[8,-1],[7,9]],[[6920,8894],[15,-6],[3,-5]],[[6578,8884],[8,-7],[2,-17],[8,-1],[-4,9],[19,21]],[[6572,8938],[-5,-6],[-10,-1],[-1,-12]],[[7215,9204],[6,52]],[[7221,9256],[-17,3],[-4,6],[-8,2],[-4,8],[-12,7],[-17,3]],[[7202,9268],[0,0]],[[7080,8643],[12,0],[5,7]],[[6458,8229],[10,8]],[[6420,8199],[7,-6],[12,10]],[[6510,8350],[-2,0]],[[6525,8311],[11,14]],[[7000,8493],[-7,-13]],[[7032,8364],[0,7],[7,5],[1,10],[-12,2],[18,19]],[[6953,8363],[15,-14],[5,-13],[7,-3],[4,9]],[[6551,8091],[-3,4]],[[6487,8098],[-2,-9]],[[6485,8089],[-3,-1],[4,-13],[7,-3],[2,-19],[7,-14],[4,0]],[[6506,8039],[11,5],[9,0],[3,-5],[15,-3]],[[6544,8036],[6,6],[2,18],[-1,31]],[[7139,8540],[-5,1],[-4,20],[-10,18]],[[7120,8579],[-6,-1],[-8,-11],[-6,5]],[[7056,8535],[-12,-15]],[[6393,8515],[3,-20],[8,-16],[-1,-5],[8,-4],[4,-9]],[[6550,8312],[3,10]],[[6757,8423],[10,10]],[[6629,8262],[2,18]],[[6628,8282],[-1,1]],[[6618,8280],[-2,-26],[-11,-6],[-5,-10],[-13,-5]],[[7217,8741],[8,10]],[[7225,8751],[3,11],[-8,6]],[[7220,8768],[-9,-2],[-10,10],[1,9]],[[6558,9009],[-5,-15],[-9,-5],[-7,3]],[[6564,9102],[0,8]],[[6504,9244],[-25,-25],[-12,-15]],[[6533,9006],[-3,18],[2,18],[5,12],[-6,22],[-14,-15],[-8,-1],[-4,9],[7,27],[-1,9],[9,6],[25,-5],[7,-7],[12,3]],[[7103,8312],[-4,20],[10,1],[-8,12]],[[6439,8509],[4,1],[7,16]],[[7220,8768],[7,8],[11,-4],[4,-14],[-9,-8],[-2,6],[-6,-5]],[[6984,8513],[-6,-13]],[[7310,8858],[11,8]],[[7321,8866],[0,46],[5,11],[-1,26]],[[6985,8596],[3,14]],[[6983,8632],[-8,9],[-9,-1],[-10,11]],[[6956,8651],[-7,-18]],[[6954,8594],[4,-22]],[[6375,8988],[-4,4],[1,16],[-3,1],[-1,16]],[[6940,8875],[-3,2],[1,-21],[-17,-16]],[[6511,8202],[0,-17],[12,-3],[9,7],[1,-11]],[[6653,8987],[5,-10],[5,1]],[[6639,8498],[-2,3]],[[6637,8501],[-9,3]],[[6628,8504],[-3,-10],[2,-22]],[[6509,8675],[10,3]],[[6441,9177],[-21,-19],[-24,-21],[-17,-10],[-15,-15],[-30,-10]],[[6334,9102],[1,-26],[4,-23]],[[6759,8622],[-1,-1]],[[6754,8606],[9,-9],[1,-12]],[[6370,8308],[-13,-10],[-4,13],[10,4],[3,10],[8,3],[0,10],[5,-2],[0,22],[-4,19]],[[6375,8377],[-20,1],[-3,13]],[[6312,9039],[-6,42],[-4,13]],[[6302,9094],[-10,-4],[-29,-18]],[[6591,8385],[-3,-24],[0,-15]],[[6588,8346],[9,-10]],[[6562,9035],[-4,14],[2,11],[-5,5],[9,7],[-5,9],[5,21]],[[6752,8084],[-2,-3]],[[6750,8081],[3,-11],[8,-3],[11,7]],[[6689,8872],[-2,17],[-5,12],[-8,1]],[[6616,8883],[3,-9],[-8,-4],[13,-3],[-1,-17],[9,-23],[17,-4],[16,6]],[[6650,8648],[2,16],[-6,17]],[[6646,8464],[4,1]],[[6682,9147],[-9,-2]],[[7130,8592],[-10,-13]],[[7203,8426],[5,2],[9,-13]],[[7217,8415],[15,-16],[6,1],[10,-24],[8,1],[5,-11],[12,-7]],[[7273,8359],[6,2],[7,-18],[15,-5],[8,-11],[15,25],[0,19],[-7,7],[-10,3],[-10,14],[7,4]],[[6582,8753],[0,14],[8,10],[4,-12]],[[6591,8828],[-4,17],[-8,13]],[[6375,8377],[10,9],[-6,3],[-1,19]],[[7074,8616],[14,-24],[11,-1],[1,-19]],[[6849,8586],[1,-22],[5,-7],[19,-13],[8,3]],[[7470,8982],[-9,-8],[-10,-2],[-8,-6]],[[6992,8674],[-2,-9]],[[6990,8665],[1,-1]],[[6334,9102],[-24,-4],[-8,-4]],[[7321,8866],[12,0]],[[6699,8609],[10,-14]],[[7072,8547],[-11,2],[-18,-4],[-2,15]],[[7296,9177],[-2,7],[-17,7],[-7,8],[-5,12],[3,16],[-9,3],[-11,9],[-1,10],[-15,0],[-11,7]],[[6644,8512],[-7,-11]],[[6868,8687],[3,-11],[3,2],[4,-11],[21,-5]],[[6899,8662],[-3,9],[-13,13],[-2,6]],[[6479,8348],[-7,10],[-14,13],[2,19],[-5,2]],[[6424,8386],[-6,-2],[-2,-9]],[[6990,8665],[-1,-3],[-22,0],[-10,-3],[-1,-8]],[[6519,8389],[7,-17]],[[6450,8473],[14,2],[3,11]],[[6860,8759],[0,-4]],[[6794,9010],[17,10],[9,9]],[[6725,8932],[2,-41],[4,-23]],[[6628,8504],[-11,9],[-4,14]],[[6572,8308],[4,23],[4,10],[8,5]],[[6692,8171],[-6,-38]],[[6725,8111],[15,-5],[5,-17]],[[6745,8089],[5,-8]],[[6921,8659],[0,29]],[[6912,8721],[-5,-2]],[[6907,8719],[-6,-3],[-3,-36],[-6,26],[-7,0]],[[6899,8662],[5,-7]],[[6589,8302],[3,16]],[[6637,8137],[5,-12]],[[6642,8125],[5,-13],[10,-6],[12,0],[7,-8],[10,5]],[[6907,8719],[-2,11]],[[6926,8723],[-2,9],[6,0],[10,8]],[[6827,8761],[-15,-3]],[[6807,8745],[19,-2],[-1,8],[6,3],[-1,9]],[[6304,8260],[8,3],[5,-12],[7,1],[4,-6],[5,6]],[[6476,8233],[15,5],[4,-4]],[[6440,7558],[4,1]],[[6444,7559],[15,14],[5,-3]],[[6464,7570],[3,17],[16,3],[6,7]],[[6489,7597],[-10,10],[-3,8],[-14,19],[-7,21],[1,4]],[[6456,7659],[-11,-13]],[[6445,7646],[-9,-3],[-3,-15],[3,-3]],[[6436,7625],[10,-4],[6,5],[-3,-15],[-5,4],[-6,-5],[0,-16],[4,-2],[2,-12],[-4,-22]],[[6663,7028],[2,4],[37,16],[4,-3]],[[6706,7045],[-1,12],[9,0],[-5,8]],[[6709,7065],[-13,20],[0,10],[-9,12]],[[6687,7107],[-18,-8],[-3,11],[-10,11],[1,-30],[13,-10],[-7,-19],[0,-34]],[[6451,8016],[3,-2]],[[6454,8014],[5,7],[-9,10],[-4,22],[-9,4],[4,7],[-1,11],[6,-2]],[[6446,8073],[1,13],[-3,2],[-3,17],[4,7],[-7,8],[8,2]],[[6446,8122],[4,11],[-13,12]],[[6437,8145],[-4,3],[-10,-4],[4,-27],[-9,0]],[[6418,8117],[1,-6],[-11,-8],[-2,-6],[-14,1],[-6,-6]],[[6386,8092],[1,-22],[-2,-13],[4,-10],[-4,-14]],[[6385,8033],[7,-6],[1,-23]],[[6393,8004],[10,-7],[0,19],[3,-8],[9,0],[3,6],[11,-6],[1,13],[5,-5],[16,0]],[[6355,8228],[4,-7],[-10,-10]],[[6349,8211],[2,-8],[-6,-2],[-1,-33],[9,-3],[5,6],[11,2],[3,-6]],[[6372,8167],[6,4],[1,11],[-3,22],[6,-5],[7,8]],[[6496,7671],[1,-14],[-5,-3],[4,-8],[2,-31],[-3,-9]],[[6495,7606],[4,-5]],[[6499,7601],[14,25],[9,3],[15,-15]],[[6537,7614],[2,1]],[[6539,7615],[-3,19],[-2,-8],[-10,33],[0,8]],[[6524,7667],[-6,18]],[[6518,7685],[0,0]],[[6518,7685],[-12,3]],[[6506,7688],[-7,-3],[-3,-14]],[[6231,7814],[-3,13],[-4,-2]],[[6224,7825],[-6,-5],[0,-7]],[[6218,7813],[1,-18],[-10,-4],[6,-17],[1,-16]],[[6216,7758],[12,0],[4,6],[0,11]],[[6232,7775],[-1,39]],[[6467,7088],[5,-6]],[[6472,7082],[4,0]],[[6476,7082],[3,3],[8,-3]],[[6487,7082],[6,2]],[[6493,7084],[-4,1],[-3,22],[11,9]],[[6497,7116],[-6,8],[0,11]],[[6491,7135],[0,0]],[[6491,7135],[-5,9],[-17,5]],[[6469,7149],[-6,-11],[13,-31],[-8,-8],[-1,-11]],[[6323,7887],[8,-14]],[[6331,7873],[7,-6],[1,-22]],[[6339,7845],[9,-4],[5,10],[8,0],[1,14],[7,3]],[[6369,7868],[8,7],[-6,7],[1,10],[-12,25]],[[6360,7917],[-4,-2],[-4,9]],[[6352,7924],[-3,11]],[[6349,7935],[-5,-3]],[[6344,7932],[-2,-18],[-6,1],[0,-8],[-18,-4],[6,-10],[-1,-6]],[[6397,7073],[13,8]],[[6410,7081],[-4,6],[-1,22],[-15,14],[-1,-10],[-6,-1]],[[6386,8092],[-10,10]],[[6376,8102],[-1,-10],[-7,-4],[-7,-13]],[[6361,8075],[5,-3],[2,-14],[7,-13]],[[6375,8045],[3,-9],[7,-3]],[[6727,7945],[11,-14],[0,-5],[15,-17]],[[6753,7909],[0,1]],[[6753,7910],[1,13],[15,29],[7,-7]],[[6776,7945],[0,11],[-5,0],[-5,15],[-10,9],[-6,-6],[-13,11],[-4,17],[-24,-8],[-6,11]],[[6703,8005],[-3,6]],[[6700,8011],[-5,-14],[-9,7],[-7,-4],[-7,4]],[[6672,8004],[-4,-13],[-8,0],[-1,-11]],[[6659,7980],[-7,-10],[2,-10]],[[6654,7960],[11,-14],[7,-3]],[[6672,7943],[7,8],[11,-5],[4,14],[6,0],[4,-8],[10,-6],[5,14],[4,-1],[4,-14]],[[6253,8203],[1,-13],[-9,2],[-5,-14],[4,-4],[9,10],[1,-8],[9,-1],[0,-11]],[[6263,8164],[17,0]],[[6280,8164],[4,4],[2,22],[-2,3]],[[6601,7607],[9,5],[-3,6]],[[6607,7618],[-5,11]],[[6602,7629],[-4,0],[-13,-14],[-2,-6],[-9,-6]],[[6574,7603],[-1,-13],[6,-9]],[[6579,7581],[3,9],[12,8],[7,9]],[[6660,8025],[-9,-6]],[[6651,8019],[-1,-20]],[[6650,7999],[-4,-22],[6,6],[7,-3]],[[6672,8004],[-12,21]],[[6509,7087],[10,6]],[[6519,7093],[-1,6]],[[6518,7099],[-7,10]],[[6511,7109],[-5,7],[-9,0]],[[6493,7084],[7,7],[9,-4]],[[6445,7646],[-13,19],[-6,-5],[-31,5]],[[6395,7665],[5,-16],[-4,-6],[3,-11],[14,0],[1,-14],[8,-14],[-2,-6],[9,-14]],[[6429,7584],[2,0],[1,22],[4,1],[0,18]],[[6485,7270],[-10,2],[1,8],[-7,-3],[-13,3],[1,4],[-12,3],[-10,-11]],[[6435,7276],[-2,-9],[10,0],[-2,-22],[6,-32]],[[6447,7213],[8,-7],[0,12],[4,3],[7,-10]],[[6466,7211],[5,6],[-2,7],[3,11],[7,1],[7,16],[-1,18]],[[6620,7210],[8,6],[-9,15],[-5,28],[-8,4]],[[6606,7263],[1,-28],[-1,-15]],[[6606,7220],[0,-9],[14,-1]],[[6506,8039],[1,-15]],[[6507,8024],[0,-17],[3,-2],[-5,-31],[11,8],[3,-5],[-3,-31]],[[6516,7946],[16,-4],[8,3],[8,-4],[4,5],[7,-5]],[[6559,7941],[7,0],[-5,19],[-5,6],[5,10],[-1,7],[9,24],[-2,9]],[[6567,8016],[-7,6],[-18,2],[2,12]],[[6277,7744],[-5,-1],[0,-22],[-5,0]],[[6267,7721],[-6,-14],[2,-14],[-5,-5],[-7,-17],[6,-11]],[[6257,7660],[9,11],[19,5],[5,18],[13,0],[7,-7]],[[6310,7687],[5,0],[2,9],[6,3]],[[6323,7699],[1,16],[10,11],[-1,13]],[[6333,7739],[5,5]],[[6338,7744],[-5,3],[-2,14],[-12,3]],[[6319,7764],[0,-17],[-11,-11],[-14,10],[3,11],[-3,7],[-8,-20],[-9,0]],[[6460,7761],[3,-17],[6,-1]],[[6469,7743],[2,4]],[[6471,7747],[1,33],[-5,6]],[[6467,7786],[-3,0]],[[6464,7786],[-4,-25]],[[6261,7893],[9,-3],[3,14],[-7,0],[-1,8]],[[6265,7912],[-6,-3],[2,-16]],[[6226,7725],[1,11],[5,-12],[9,15],[-1,15],[17,-4],[9,-9],[-4,-15],[5,-5]],[[6277,7744],[-1,11],[-8,-3],[2,8],[-8,-2],[-6,6],[-2,36],[-9,-12]],[[6245,7788],[-13,-13]],[[6216,7758],[2,-15]],[[6668,7646],[-5,14],[9,13],[1,18]],[[6673,7691],[1,13]],[[6674,7704],[2,14],[-6,0],[-11,17]],[[6659,7735],[-2,-11],[-8,8],[-2,-11],[-6,3],[-1,-9]],[[6640,7715],[0,-41],[11,-3],[9,-11],[8,-14]],[[6329,8120],[-4,14],[-9,10]],[[6316,8144],[-10,-1],[-4,-18],[-6,-13],[3,-3],[-2,-14],[3,0],[-2,-15],[1,-6],[-5,-10]],[[6294,8064],[1,-11],[17,5],[-3,-11],[8,-3]],[[6317,8044],[6,-2],[2,11]],[[6325,8053],[3,3],[6,25]],[[6334,8081],[-9,16],[1,17],[3,6]],[[6636,7133],[-8,-3]],[[6628,7130],[-6,-23]],[[6622,7107],[-2,-8],[-8,-3],[-3,-17]],[[6609,7079],[0,-12]],[[6609,7067],[-3,-17]],[[6606,7050],[26,6]],[[6632,7056],[4,12],[-2,39],[4,13],[-2,13]],[[6312,7612],[0,9]],[[6312,7621],[-6,-6],[-1,13]],[[6305,7628],[-10,-10]],[[6295,7618],[-10,-6],[-8,0],[-21,-25]],[[6256,7587],[8,-1],[8,6],[22,5]],[[6294,7597],[14,3]],[[6308,7600],[4,12]],[[6551,8091],[12,7],[-4,11]],[[6623,8064],[10,3],[-1,22],[10,36]],[[6573,8134],[-1,-12],[7,-6],[8,0],[4,-21],[-11,-8],[-9,13],[-1,-13],[-12,2],[-3,-19],[10,2],[1,-22],[5,8],[7,0],[-6,6],[8,-1],[0,6],[10,-3],[-1,11],[10,6],[16,-8],[7,3],[1,-14]],[[6524,7121],[-4,3]],[[6520,7124],[-9,3],[0,-18]],[[6518,7099],[4,17]],[[6522,7116],[2,5]],[[6565,7079],[2,9]],[[6567,7088],[-1,15]],[[6566,7103],[-4,-4]],[[6562,7099],[-5,0],[-2,-10]],[[6555,7089],[10,-10]],[[6523,7085],[4,11]],[[6527,7096],[0,9],[-5,11]],[[6519,7093],[4,-8]],[[6369,7868],[8,-4],[5,-11]],[[6382,7853],[10,12]],[[6392,7865],[6,11],[12,5]],[[6410,7881],[1,9],[-10,14],[-5,-1],[-3,7],[-6,0],[-8,-6],[-8,0],[-2,16],[-9,-3]],[[6159,8102],[3,-13],[11,3],[-4,-8],[3,-34],[11,3]],[[6183,8053],[10,-3]],[[6193,8050],[8,0],[3,-11],[-8,-3]],[[6196,8036],[1,-17]],[[6197,8019],[9,6],[6,10],[-3,4],[3,14],[-7,10],[-7,1],[1,16],[6,4],[-3,16],[4,9],[10,0]],[[6216,8109],[5,6],[-3,10],[-6,5]],[[6212,8130],[-9,0],[-3,-5],[-8,7],[-9,-7],[-7,1],[-11,14]],[[6218,7813],[-4,3],[0,17],[-6,3]],[[6347,7569],[8,7]],[[6355,7576],[0,19],[-11,14]],[[6344,7609],[-5,-5]],[[6339,7604],[-3,-14]],[[6336,7590],[1,-14]],[[6337,7576],[9,0],[1,-7]],[[6700,8084],[0,-9],[-7,-12],[1,-8],[-7,-9],[0,-10]],[[6687,8036],[11,-12],[2,-13]],[[6703,8005],[3,9],[7,4],[20,-13],[3,11],[-4,12]],[[6732,8028],[-11,27],[12,12],[0,8],[15,3],[-3,11]],[[6732,8028],[7,14],[8,1],[12,-24],[6,6],[12,-18],[0,-11],[12,-8]],[[6789,7988],[7,17],[5,3],[-4,17],[1,8],[-12,-3],[-1,14],[-5,3],[5,11],[-5,6]],[[6510,7938],[6,8]],[[6507,8024],[-11,-20],[-2,-14],[-12,12]],[[6482,8002],[-11,-3],[2,-16],[7,-12],[-7,1],[6,-10]],[[6479,7962],[7,-4],[5,10],[-1,-11],[10,2],[5,-15],[5,-6]],[[6499,7704],[6,3],[0,9]],[[6505,7716],[-12,-5],[-6,2]],[[6487,7713],[-4,-5]],[[6483,7708],[4,-11],[-4,-3],[4,-13]],[[6487,7681],[6,9],[-6,3],[12,11]],[[6493,7172],[3,-12],[11,-8]],[[6507,7152],[6,-6],[0,12]],[[6513,7158],[-1,21],[4,6]],[[6516,7185],[-5,9],[-8,-1],[0,9],[-9,2],[-3,-8],[2,-24]],[[6414,7713],[-6,-5]],[[6408,7708],[-7,-9],[0,-8],[-6,-3],[0,-23]],[[6456,7659],[-4,-2],[-5,11]],[[6447,7668],[0,12],[5,-1],[-2,14],[-11,-3],[6,12],[-23,2],[2,8],[-10,1]],[[6355,7576],[6,2]],[[6361,7578],[5,9]],[[6366,7587],[0,0]],[[6366,7587],[-5,30],[-6,3]],[[6355,7620],[-12,-2],[1,-9]],[[6352,7924],[7,3],[-6,15],[9,0],[3,-13],[9,3],[5,-6],[6,6],[13,-4],[5,-7],[10,8]],[[6413,7929],[-7,0],[3,26],[-8,-10],[-2,15],[7,3],[-22,13],[5,0],[-2,25]],[[6387,8001],[-8,-4],[-5,-15],[-19,-2],[2,-8],[-7,4],[-4,-3],[6,-7],[-3,-31]],[[6582,7091],[3,-13],[7,1],[5,-4]],[[6597,7075],[10,1]],[[6607,7076],[2,3]],[[6622,7107],[-8,14],[3,11],[-8,9],[-10,-3],[-2,11],[-10,3]],[[6587,7152],[-5,-3],[-8,8]],[[6574,7157],[0,-23],[-4,-4]],[[6570,7130],[1,-10]],[[6571,7120],[8,-10],[3,-19]],[[6579,7412],[-7,-2],[4,-6],[-6,-5],[1,-8],[-11,-4],[-4,6]],[[6556,7393],[-1,-15],[3,-2],[-3,-16],[-6,2],[-2,-14],[-9,1],[-4,-7]],[[6534,7342],[0,-10]],[[6534,7332],[6,-17],[6,6],[9,0],[2,-18],[7,-8]],[[6564,7295],[0,28],[15,-23],[11,-5],[4,-6]],[[6594,7289],[2,23],[7,9]],[[6603,7321],[-7,24],[-2,40],[-10,-5],[-8,16],[3,16]],[[6669,7645],[0,1]],[[6669,7646],[-1,0]],[[6640,7715],[-8,3],[-1,-6],[-6,15],[-7,-9],[-5,6]],[[6613,7724],[-8,6],[-9,-4],[-4,-7],[-10,-39]],[[6582,7680],[-5,-7],[3,-11]],[[6580,7662],[9,8],[-2,-18],[6,-13],[11,-4],[-2,-6]],[[6607,7618],[8,11],[7,3],[15,-1],[7,8],[25,6]],[[6643,7812],[2,16]],[[6645,7828],[-18,17],[-3,11],[9,1],[6,15],[-12,13]],[[6627,7885],[-10,-4],[0,-12],[-11,7]],[[6606,7876],[0,-20]],[[6606,7856],[4,-14],[6,11],[6,-2],[-2,-10],[7,-7],[3,-22],[4,4],[9,-4]],[[6183,8053],[6,-11]],[[6189,8042],[4,8]],[[6259,7968],[4,11],[15,-2],[-12,13],[7,-2],[8,14],[5,0],[3,11],[11,1]],[[6300,8014],[5,8],[-5,21],[15,-4],[2,5]],[[6294,8064],[-6,10],[2,9],[-7,-2],[0,8],[-10,12],[-11,8]],[[6262,8109],[-13,5],[2,20],[-25,-11],[6,-23],[-8,6],[1,-14],[-9,17]],[[6197,8019],[-2,-11]],[[6195,8008],[7,-15],[8,20],[8,3],[-1,9],[15,-17],[-2,-14],[-11,-25],[-7,3],[0,-12],[-4,-2]],[[6215,7955],[1,-4],[14,-5],[-9,12],[15,5],[4,14],[14,-11],[5,2]],[[6286,7534],[12,4]],[[6298,7538],[1,18],[-9,6],[-7,10],[-10,3],[-19,1],[-2,-6]],[[6252,7570],[4,-6],[-1,-13]],[[6255,7551],[18,0],[13,-17]],[[6432,7088],[6,-6],[-2,-9],[-5,0],[10,-11],[1,-8]],[[6442,7054],[14,7],[3,-4],[0,14],[13,11]],[[6467,7088],[-4,7],[-12,4],[-15,17],[0,-9],[-5,-11],[1,-8]],[[6756,7510],[2,3]],[[6758,7513],[-6,11],[-1,15],[-7,6]],[[6744,7545],[-8,8],[4,15],[0,22]],[[6740,7590],[-4,0]],[[6736,7590],[-5,-14],[-10,-3],[-13,2]],[[6708,7575],[4,-30],[7,3],[-1,-7],[9,-10],[13,-8],[11,0],[5,-13]],[[6213,7881],[4,-16],[19,0],[9,8]],[[6245,7873],[8,12],[8,2]],[[6261,7887],[0,6]],[[6265,7912],[3,8],[1,24],[3,10],[-8,16],[-5,-2]],[[6436,7843],[-5,8]],[[6431,7851],[-11,-3],[-3,8],[-12,3],[-3,-5]],[[6402,7854],[15,-15],[16,-2],[3,6]],[[6425,7290],[-8,-15],[-1,12],[-7,8],[-3,11],[-5,-11],[-10,5],[-3,6],[-22,-2],[-8,-10],[-1,-14]],[[6385,7144],[4,0],[0,13],[8,-11],[15,9],[5,22],[13,6],[0,17],[16,8],[1,5]],[[6435,7276],[-10,14]],[[6628,7293],[-2,8],[-8,4],[-9,13],[-6,3]],[[6594,7289],[0,-10],[12,-16]],[[6620,7210],[0,-6]],[[6620,7204],[7,-7]],[[6627,7197],[-2,11],[11,5],[-3,12],[0,16],[-2,9]],[[6631,7250],[-4,12],[-2,28],[3,3]],[[6458,8210],[0,-20],[23,-14],[5,3]],[[6492,8204],[5,14]],[[6316,8144],[1,6]],[[6317,8150],[-5,6],[-17,-5],[-1,-8],[-8,1],[-2,12],[-3,-3]],[[6281,8153],[-1,-11],[4,-5],[-6,-14],[-13,-7],[-3,-7]],[[6378,6973],[1,11],[-4,-1],[2,9]],[[6685,7489],[18,-1],[3,4]],[[6706,7492],[0,0]],[[6706,7492],[-4,8],[5,11],[-9,25],[0,9],[-13,14]],[[6685,7559],[-11,9],[-8,-4]],[[6666,7564],[3,-2],[1,-34],[6,-18],[-4,0],[1,-27],[12,6]],[[6361,8075],[-9,9],[-1,11],[-9,-3],[-8,-11]],[[6325,8053],[9,4],[6,-8],[7,8],[2,-13],[6,11],[10,-10],[10,0]],[[6294,7597],[-8,-13],[17,-1],[5,17]],[[6753,7910],[16,-12],[8,9],[8,-6],[9,11]],[[6794,7912],[2,8],[7,9]],[[6803,7929],[-7,6]],[[6796,7935],[-3,6],[-10,-12],[-7,16]],[[6307,7845],[8,-8],[3,5]],[[6318,7842],[2,3]],[[6320,7845],[4,6]],[[6324,7851],[7,4],[-5,10],[5,8]],[[6323,7887],[-7,3],[-8,-20],[4,-16],[-5,-9]],[[6659,7735],[-8,14],[-1,12]],[[6650,7761],[0,0]],[[6650,7761],[-6,-3],[-11,3]],[[6633,7761],[-4,-25],[-16,-3],[0,-9]],[[6465,6771],[0,-10],[5,-7],[-7,-6],[2,-17],[6,-27]],[[6471,6704],[5,-19],[11,-3],[-1,9],[7,7],[3,-6],[8,2],[5,-6],[7,7]],[[6516,6695],[4,7],[7,1],[-3,31],[-8,5],[-3,23],[7,1],[0,15],[-3,8],[14,8]],[[6531,6794],[-2,13],[5,1],[-2,16]],[[6532,6824],[-10,-3],[-4,-12],[-12,10]],[[6506,6819],[-2,-11],[-19,-2],[-5,5],[-5,-14],[2,-8],[-4,-19],[-8,1]],[[6558,7657],[0,13],[-10,6],[-2,-10],[-16,7],[-6,-6]],[[6539,7615],[6,3]],[[6545,7618],[1,14],[10,-1],[3,11]],[[6559,7642],[-1,15]],[[6372,8167],[-1,-10],[4,-4],[-3,-14]],[[6372,8139],[11,-5],[1,-12],[16,4],[1,14],[4,-1]],[[6405,8139],[3,6],[-2,31],[-3,0],[1,23]],[[6639,7461],[7,-9],[18,3]],[[6664,7455],[2,9],[-21,-3],[7,6],[8,0],[-3,5],[7,11],[-5,5],[-8,-5],[-5,14],[8,9],[-2,13],[6,0],[6,9],[-4,10],[-8,-13],[-15,-3],[-4,15]],[[6633,7537],[-6,-17],[-7,4]],[[6620,7524],[-11,-5],[-4,-13],[0,-26]],[[6605,7480],[15,-22],[5,5],[14,-2]],[[6519,7051],[5,-11],[9,8],[0,14]],[[6533,7062],[-1,13],[-9,10]],[[6509,7087],[4,-6],[-1,-19],[7,-11]],[[6231,7814],[0,6],[13,-9],[-3,-13],[4,-10]],[[6319,7764],[-6,8]],[[6313,7772],[-5,-6],[-2,8],[-11,8],[-14,24]],[[6281,7806],[-9,5],[-13,-16],[-4,14],[6,4],[-8,10],[1,8]],[[6254,7831],[-12,14],[-2,-15],[-12,7],[-4,-12]],[[6451,7811],[3,12],[-9,8],[-4,16],[-5,-4]],[[6402,7854],[-10,11]],[[6382,7853],[2,-19]],[[6384,7834],[2,-9],[7,-6],[10,4],[12,-4],[0,-13],[-9,-6]],[[6406,7800],[7,-5]],[[6413,7795],[13,5],[3,5],[12,-2],[0,6],[9,0]],[[6450,7809],[1,2]],[[6420,6973],[5,-4]],[[6425,6969],[8,8],[-5,15],[3,12]],[[6431,7004],[-3,18],[18,-5],[5,-5]],[[6451,7012],[1,4]],[[6452,7016],[-6,7],[-4,31]],[[6432,7088],[-8,13],[-11,-2],[-3,-18]],[[6397,7036],[2,3],[7,-16],[-1,-17],[14,-17],[1,-16]],[[6566,7103],[0,3]],[[6566,7106],[0,7]],[[6566,7113],[-7,4]],[[6559,7117],[-2,-10]],[[6557,7107],[5,-8]],[[6562,7046],[1,21],[7,6],[-5,6]],[[6555,7089],[-2,0]],[[6553,7089],[-8,3],[1,-11]],[[6546,7081],[5,-10],[2,-15],[3,0],[1,-19]],[[6557,7037],[5,9]],[[6189,8042],[2,-9],[5,3]],[[6195,8008],[-4,-1],[0,-20],[-4,-4]],[[6187,7983],[0,-17],[11,-11],[2,-6]],[[6236,7573],[16,-3]],[[6298,7538],[12,1],[0,14],[11,-11]],[[6321,7542],[5,3],[7,11],[-3,6]],[[6330,7562],[-4,0],[-6,22]],[[6320,7584],[1,11],[-4,3]],[[6317,7598],[-5,14]],[[6256,7587],[-8,0],[-11,-7]],[[6639,7144],[0,33],[-2,6],[-8,2],[-2,12]],[[6620,7204],[-7,0]],[[6613,7204],[-3,-8],[5,-25],[8,-5],[2,-8]],[[6625,7158],[4,-4],[-1,-24]],[[6636,7133],[3,11]],[[6687,7107],[0,16],[-5,1],[-4,13],[-9,11],[3,18]],[[6672,7166],[-12,17],[-2,13]],[[6658,7196],[-4,3]],[[6654,7199],[-11,-3],[3,-22],[0,-22],[-3,-11],[-4,3]],[[6632,7056],[5,-6],[7,3],[6,-5],[4,-25]],[[6654,7023],[9,5]],[[6553,7089],[-8,21],[1,16]],[[6546,7126],[-22,-5]],[[6527,7096],[8,10],[5,-10],[0,-8],[6,-7]],[[6530,7132],[16,2]],[[6546,7134],[-1,10],[-9,11],[1,21],[-5,1],[-3,11],[-6,0]],[[6523,7188],[-7,-3]],[[6513,7158],[4,4],[7,-10],[0,-8],[6,-12]],[[6471,7747],[4,-3]],[[6475,7744],[1,5]],[[6476,7749],[-3,21],[10,5]],[[6483,7775],[9,0],[5,14],[-2,14]],[[6495,7803],[-6,5]],[[6489,7808],[-4,-11],[-7,5],[-11,-16]],[[6558,7133],[-6,2]],[[6552,7135],[-2,-6]],[[6550,7129],[3,-22],[4,0]],[[6559,7117],[-1,16]],[[6212,8130],[6,4],[0,17],[10,5],[1,11],[8,3],[1,-8],[8,6],[13,-7],[4,3]],[[6479,7962],[-9,-13],[6,-18],[-3,-16],[6,5],[7,-10]],[[6486,7910],[10,-3],[3,14],[9,-9],[-1,17],[3,9]],[[6502,7396],[-6,10],[-15,13]],[[6481,7419],[5,-9],[-3,-11],[-10,-4],[0,-10],[6,-11]],[[6479,7374],[-4,-17],[-9,-3],[-2,-8],[-11,3],[-1,-9]],[[6452,7340],[-5,-11],[-23,-7],[2,-5],[-1,-27]],[[6485,7270],[4,11],[13,11],[4,-8]],[[6506,7284],[6,13],[0,14],[9,4],[-2,7],[12,1],[3,9]],[[6534,7342],[-7,4],[-1,16],[-3,2],[3,13]],[[6526,7377],[-9,-3],[-11,4],[-4,18]],[[6550,7129],[-4,-3]],[[6261,7887],[18,-6],[0,-12],[6,-8],[0,-13],[5,-11]],[[6290,7837],[4,-9],[5,3],[8,14]],[[6344,7932],[-21,12],[-1,11],[-7,2],[0,6],[-9,11],[4,11],[-2,6],[-9,0],[1,23]],[[6522,6888],[-5,17]],[[6517,6905],[-11,-6],[-20,20],[-13,-3]],[[6473,6916],[4,-8],[-6,0],[-1,-11],[-13,0],[-17,8],[2,-14],[-9,-11]],[[6441,6866],[10,-11],[9,14],[16,2],[14,-12],[7,9]],[[6497,6868],[6,9],[10,-3],[9,14]],[[6141,7966],[7,11],[26,-15],[7,9],[-3,20],[9,-8]],[[6571,7120],[-5,-7]],[[6566,7106],[4,1],[3,-12],[9,-4]],[[6609,7067],[-6,-2],[4,11]],[[6597,7075],[1,-13],[6,-12]],[[6604,7050],[2,0]],[[6513,6981],[8,19]],[[6521,7000],[3,29],[9,4],[3,9],[9,-2]],[[6545,7040],[0,17],[-12,5]],[[6519,7051],[-7,0],[-2,-8],[-5,10]],[[6505,7053],[0,-13],[-9,-3],[0,-8],[-5,4]],[[6491,7033],[-10,-3],[-1,-24]],[[6480,7006],[4,-5],[-4,-9],[11,-5],[15,5],[7,-11]],[[6320,7584],[9,6],[7,0]],[[6339,7604],[-18,3],[-4,-9]],[[6431,7004],[8,-6],[12,10]],[[6451,7008],[0,4]],[[6486,7910],[-2,-23],[3,-12]],[[6487,7875],[8,7],[10,-17]],[[6505,7865],[4,-3],[4,9]],[[6513,7871],[7,8],[-3,7],[18,7],[5,-6],[8,14],[-1,16],[4,7]],[[6551,7924],[1,0]],[[6552,7924],[1,10],[6,7]],[[6664,7455],[5,3]],[[6669,7458],[18,13],[0,17],[-2,1]],[[6666,7564],[-11,-11],[-3,11],[-9,-3],[-10,-10],[6,-12],[-6,-2]],[[6544,7468],[-5,-11],[-8,-5]],[[6531,7452],[-7,-20],[-6,-2],[0,-7],[-16,-13],[0,-14]],[[6526,7377],[5,8],[5,-7],[13,6],[3,11],[4,-2]],[[6579,7412],[4,9],[-18,17],[-6,12]],[[6559,7450],[-11,-17],[-3,2],[-1,33]],[[6411,7788],[2,7]],[[6406,7800],[-2,9],[-8,-3],[9,-8],[-2,-12],[8,2]],[[6537,7614],[-8,-13],[7,-14],[-9,-5],[7,-6],[-4,-10],[-4,10],[-8,-14]],[[6518,7562],[7,-11],[1,5],[11,3]],[[6537,7559],[7,3],[1,8],[-6,11],[5,3],[2,12],[-3,11],[2,11]],[[6467,7704],[10,0],[1,7]],[[6478,7711],[-6,10]],[[6472,7721],[-6,-11],[1,-6]],[[6487,7875],[-7,-7],[-14,-4],[-4,4]],[[6462,7868],[0,-18],[6,-13],[0,-12],[-14,-17]],[[6454,7808],[10,-11],[0,-11]],[[6489,7808],[-4,15],[2,11],[-3,6],[12,-3],[3,10],[-5,8],[11,10]],[[6650,7761],[-8,10],[-1,9],[8,6]],[[6649,7786],[-4,5],[-2,21]],[[6606,7856],[-13,-16]],[[6593,7840],[6,-20],[-6,-8]],[[6593,7812],[-2,-21],[3,-14],[12,11],[4,-10],[-4,-4],[11,-11],[7,3],[0,-8],[9,3]],[[6415,6967],[5,6]],[[6391,7012],[9,-15],[5,-14],[0,-13],[10,-3]],[[6561,7138],[9,-8]],[[6574,7157],[-4,8],[-8,4]],[[6562,7169],[-3,-8],[5,-13],[-3,-10]],[[6305,7628],[3,4],[-4,11]],[[6304,7643],[-9,-5],[-9,-10]],[[6286,7628],[0,-7],[9,-3]],[[6645,7828],[7,9],[6,-3],[9,22]],[[6667,7856],[-2,19]],[[6665,7875],[-7,4],[-13,0]],[[6645,7879],[-5,-1],[-16,15],[3,-8]],[[6464,7570],[7,-6],[0,-9],[14,-13],[-5,-15]],[[6480,7527],[-1,-10]],[[6479,7517],[3,-8],[7,0]],[[6489,7509],[3,8]],[[6492,7517],[-1,7],[7,0]],[[6498,7524],[7,6],[-1,9]],[[6504,7539],[-4,3]],[[6500,7542],[18,20]],[[6518,7562],[-5,8],[0,13],[-3,-8],[-10,1],[-1,25]],[[6495,7606],[-6,-9]],[[6336,7657],[6,14],[7,3]],[[6349,7674],[1,33],[2,6],[-5,23]],[[6347,7736],[-14,3]],[[6323,7699],[-2,-22],[7,-4],[-2,-8]],[[6326,7665],[10,-8]],[[6545,7040],[3,3],[5,-10]],[[6553,7033],[4,3]],[[6557,7036],[0,1]],[[6549,7499],[7,-10],[-4,-7],[1,-10],[-9,-4]],[[6559,7450],[3,7],[5,-13],[9,-6],[3,20],[11,0],[7,10],[5,14]],[[6602,7482],[-10,9],[-15,5],[8,21],[6,-3],[-9,14],[2,11]],[[6584,7539],[-4,-5],[-9,8],[-7,-6],[-5,3],[-11,-11]],[[6548,7528],[8,-25],[-7,-4]],[[6402,6941],[4,8],[6,1],[3,17]],[[6593,7812],[-5,2],[0,-12],[-4,-7],[-7,3],[-12,-12]],[[6565,7786],[-2,-8],[-12,-6],[-1,-16],[-4,-4]],[[6546,7752],[4,-16],[-7,-4],[-1,-14]],[[6542,7718],[21,1],[4,6],[8,-20],[0,-20],[7,-5]],[[6442,6854],[2,-13],[18,-18],[5,-10],[4,-17],[-5,-11],[-1,-14]],[[6506,6819],[-1,14],[3,11],[-13,4],[-2,7],[4,13]],[[6447,8204],[0,-28],[-4,-15],[-7,-2],[1,-14]],[[6446,8122],[4,-8],[5,11],[2,-17],[6,1],[10,-3],[8,6]],[[6343,8211],[-6,-5],[-1,-9]],[[6336,8197],[-1,-27],[-6,6],[-7,-5],[18,-7],[3,-5],[15,-1],[6,-7],[-2,-12],[-19,-19],[-9,6],[-5,-6]],[[6376,8102],[-4,37]],[[6349,8211],[-6,0]],[[6408,7708],[-9,4],[-1,-5],[-8,4],[5,5],[-8,14],[3,14]],[[6390,7744],[-5,3],[-13,-3]],[[6372,7744],[-25,-8]],[[6349,7674],[2,-9],[6,0],[2,-8],[-3,-22],[-5,-6]],[[6351,7629],[4,-9]],[[6366,7587],[12,2]],[[6378,7589],[-3,5],[11,12],[5,-10],[10,-7],[5,-14]],[[6406,7575],[10,-11],[2,-8],[7,-6],[3,-11]],[[6428,7539],[3,11],[-5,9],[0,25],[3,0]],[[6558,7657],[8,-4],[0,10],[10,-11],[4,10]],[[6542,7718],[-2,-10],[-16,-11],[0,-9],[-6,-3]],[[6708,7575],[-14,0],[-2,-5]],[[6692,7570],[-7,-11]],[[6706,7492],[6,5],[11,3],[7,-6],[5,2]],[[6735,7496],[0,0]],[[6735,7496],[5,-3],[4,12],[8,-2],[4,7]],[[6504,7539],[-4,3]],[[6492,7517],[6,7]],[[6506,7688],[-7,16]],[[6487,7681],[0,-7],[-9,-11],[7,-8],[1,12],[10,4]],[[6336,7657],[-7,-14]],[[6329,7643],[-4,-4]],[[6325,7639],[14,-4],[11,-9],[1,3]],[[6654,7960],[-3,-3],[5,-11],[-4,-15],[3,-10],[-2,-11],[7,4],[8,-18]],[[6668,7896],[4,4],[1,13],[9,-6],[0,34],[-10,2]],[[6338,7744],[1,8],[11,-5],[7,3],[2,11],[-4,9],[-15,0],[3,14],[-4,4],[-1,28]],[[6338,7816],[-1,6],[-18,6],[-3,-3]],[[6316,7825],[1,-14],[-2,-23],[3,-2],[-5,-14]],[[6290,7523],[-4,11]],[[6255,7551],[-2,-9],[9,-4],[13,-13],[5,3],[10,-5]],[[6487,7082],[0,-7],[10,-2],[2,-11],[6,-9]],[[6618,7988],[8,-1],[1,7],[10,7],[13,-2]],[[6651,8019],[3,12],[-8,-3],[-8,4],[-5,20],[-10,12]],[[6623,8064],[-5,-17],[0,-18],[4,-10],[-3,-9],[1,-16],[-2,-6]],[[6326,7665],[-5,-2]],[[6321,7663],[8,-20]],[[6312,7621],[5,-3],[-1,14],[-6,2],[2,12],[13,-7]],[[6321,7663],[-9,-7],[-5,1],[3,9]],[[6310,7666],[-7,-1],[1,-22]],[[6446,8073],[5,2],[0,-9],[11,-14],[-5,-5],[0,-9],[9,1]],[[6466,8039],[4,4],[8,26],[1,14],[-3,4],[9,2]],[[6489,7509],[5,-9]],[[6494,7500],[6,2],[9,9],[8,-11],[6,6],[3,-6]],[[6526,7500],[10,10],[13,-11]],[[6548,7528],[-11,31]],[[6623,8064],[0,0]],[[6660,8025],[4,3],[9,-12],[5,16],[9,4]],[[6559,7642],[10,-11],[0,-14],[5,-14]],[[6411,7788],[1,-5]],[[6412,7783],[23,16],[11,1],[4,9]],[[6298,7488],[11,6]],[[6309,7494],[0,15],[9,18]],[[6318,7527],[3,15]],[[6290,7523],[-2,-17],[5,-17],[5,-1]],[[6320,7845],[8,-11],[4,8],[-8,9]],[[6284,7455],[10,23]],[[6294,7478],[-8,4],[-1,15],[-6,0]],[[6279,7497],[-13,-8],[5,-8],[-1,-17],[8,-1],[0,-11],[6,3]],[[6336,7572],[3,-11]],[[6339,7561],[1,0]],[[6340,7561],[7,8]],[[6337,7576],[-1,-4]],[[6620,7524],[-5,20],[0,12],[-10,14],[2,3],[-7,21],[1,13]],[[6579,7581],[-5,-8],[2,-14],[11,-8],[-3,-12]],[[6602,7482],[3,-2]],[[6286,7628],[-7,20],[-9,1],[-16,-9],[2,9]],[[6256,7649],[-10,-3],[-6,3]],[[6418,8117],[-7,9],[-1,13],[-5,0]],[[6240,7525],[4,-1],[2,10],[9,-3],[-2,-7],[19,-10],[6,-6],[1,-11]],[[6294,7478],[4,10]],[[6518,7685],[-2,17],[-9,19],[-2,-5]],[[6505,7716],[0,0]],[[6789,7988],[4,-15],[6,-2],[-3,-36]],[[6803,7929],[11,-12],[4,4],[-1,14],[4,9],[0,19],[6,9],[13,2],[-1,6]],[[6431,7851],[1,8],[-22,22]],[[6393,8004],[-6,-3]],[[6413,7929],[11,-2]],[[6424,7927],[4,7],[11,3],[2,15],[5,6],[3,16],[5,9],[-2,17],[-5,5],[4,11]],[[6310,7687],[-3,-3],[3,-18]],[[6599,7893],[-1,-17],[8,0]],[[6645,7879],[-4,20],[-12,5],[0,20],[-4,2],[-2,-11],[-5,3],[-1,11],[-6,0],[-1,-20],[-11,-16]],[[6384,7834],[-9,-3],[0,-8],[-6,-14],[9,-4],[-7,-10],[-9,-3],[7,-4],[5,-11],[-2,-33]],[[6390,7744],[0,19],[6,1],[6,-7],[0,21],[11,-9],[-1,14]],[[6482,7730],[-11,-4]],[[6471,7726],[1,-5]],[[6478,7711],[5,-3]],[[6487,7713],[-1,16],[-4,1]],[[6447,7668],[12,9],[0,22],[8,5]],[[6471,7726],[-5,4],[3,13]],[[6460,7761],[-5,0],[-9,-11],[-11,4],[-7,-7],[4,-18],[-13,-8],[-5,-8]],[[6546,7752],[-7,5],[-12,-1],[2,5],[-9,23]],[[6520,7784],[-7,-9],[-7,2]],[[6506,7777],[4,-13],[-11,-12],[1,-20],[5,-16]],[[6344,8235],[-4,0],[-1,-22],[4,-2]],[[6336,8197],[-15,-5],[3,-10],[-4,-3],[0,-11],[5,-4],[-8,-14]],[[6618,7988],[-1,-6],[6,-8],[-6,-5],[-12,0],[-7,4],[0,10],[-6,5],[-4,16],[-10,4],[-2,11],[-9,-3]],[[6552,7924],[14,-6],[4,-8],[10,-7],[10,11],[-10,6],[2,28],[9,8],[6,-4],[8,-23],[4,0],[-13,-17],[-3,-16],[6,-3]],[[6665,7875],[8,4],[5,-10],[9,4],[-5,3],[-4,14],[-9,0],[-1,6]],[[6599,7042],[7,-8],[0,-26],[7,-10],[11,7],[9,-8]],[[6633,6997],[0,14],[21,12]],[[6604,7050],[-5,-8]],[[6339,7845],[-1,-14],[6,-5],[-6,-10]],[[6551,7924],[-2,-20],[4,-12],[-1,-16],[9,3],[10,-4],[9,-14],[4,1],[9,-22]],[[6520,7132],[-5,6],[-3,-8],[-14,0],[-7,5]],[[6520,7124],[0,8]],[[6428,7539],[12,19]],[[6316,7825],[2,17]],[[6290,7837],[-4,0]],[[6286,7837],[-7,-20],[2,-11]],[[6483,7186],[-3,-12],[-16,-9],[0,-13],[5,-3]],[[6491,7135],[9,6],[7,11]],[[6493,7172],[-7,-3],[-3,17]],[[6254,7831],[5,17]],[[6259,7848],[0,14],[-3,-4],[-10,4],[-1,11]],[[6424,7927],[1,-23],[6,-18],[1,-13],[9,-1],[12,4],[9,-8]],[[6482,8002],[-5,6],[-10,2]],[[6467,8010],[-13,4]],[[6620,7329],[-2,6],[0,38],[5,4],[4,22],[14,0],[3,23],[-3,10],[-11,1],[-1,13],[7,1],[3,14]],[[6628,7293],[0,16],[-3,12],[-2,-7],[-5,8],[2,7]],[[6476,7749],[10,12],[-3,14]],[[6550,7180],[-10,23],[0,21],[-2,7]],[[6538,7231],[-17,10],[-2,18],[-6,-3],[2,14],[-3,14],[-6,0]],[[6466,7211],[13,-8],[4,-17]],[[6523,7188],[11,2],[5,7],[-1,-14],[2,-4],[10,1]],[[6606,7220],[-1,-15]],[[6605,7205],[8,-1]],[[6654,7199],[-2,3],[0,22],[-8,11],[-5,14],[-8,1]],[[6257,7660],[-1,-11]],[[6259,7848],[5,-5],[11,8],[1,-8],[9,1],[1,-7]],[[6529,7811],[11,6],[0,-11],[6,3],[11,-10],[4,-13],[4,0]],[[6513,7871],[7,-31],[4,1],[2,-22],[3,-8]],[[6406,6925],[6,3],[-1,7],[8,4],[11,-7],[3,-24],[-3,-6],[0,-11]],[[6473,6916],[-13,6],[-3,14],[-6,2],[-9,28],[-4,-10],[-14,2],[1,11]],[[6692,7570],[-5,6],[4,7],[-6,4],[-6,16],[-8,6],[-3,17],[1,19]],[[6232,7413],[6,-1]],[[6238,7412],[1,7],[12,4],[7,-10],[9,3]],[[6267,7416],[5,0],[5,19]],[[6277,7435],[7,19]],[[6284,7454],[0,1]],[[6330,7562],[6,10]],[[6482,7730],[-1,11],[-6,3]],[[6452,7016],[8,7],[9,-5],[1,-12],[6,-4],[4,4]],[[6491,7033],[-1,10],[-8,8],[0,9],[-10,7],[4,15]],[[6625,7158],[-1,-12],[-9,2],[-6,32],[-5,3],[1,22]],[[6564,7295],[13,-2],[-4,-4]],[[6573,7289],[4,-3],[0,-23],[3,-1],[0,-17],[-4,-1]],[[6576,7244],[0,-19],[8,-6],[3,-15],[-3,-13],[3,-23],[0,-16]],[[6506,7777],[-6,21],[-5,5]],[[6466,8039],[4,-6],[-3,-8],[0,-15]],[[6280,8164],[1,-11]],[[6567,7088],[9,-3],[1,-12],[20,-16],[-4,-6]],[[6593,7051],[6,-9]],[[6454,7808],[-3,3]],[[6532,6824],[14,15],[2,-10],[7,5],[6,-5],[8,6],[13,34]],[[6582,6869],[-11,-1],[-4,11],[-15,9],[0,20],[-3,3]],[[6549,6911],[-9,0],[-1,-8],[-6,-3],[-3,-12],[-8,0]],[[6667,7856],[6,3],[6,-9]],[[6679,7850],[3,3]],[[6682,7853],[3,6],[7,-1],[16,18]],[[6708,7876],[0,11]],[[6708,7887],[10,28]],[[6718,7915],[9,19],[0,11]],[[6517,6905],[-5,22]],[[6512,6927],[-12,14],[-5,12],[-6,-4],[0,12],[-6,0],[-5,14],[-1,13],[-6,12],[-9,6],[-11,2]],[[6658,7196],[-4,38],[0,39],[-7,8],[9,17],[-5,3],[-18,24]],[[6633,7325],[-7,9],[-6,-5]],[[6550,7180],[9,-5]],[[6559,7175],[-4,15],[4,13],[-6,30],[-3,6]],[[6550,7239],[-10,2],[-2,-10]],[[6546,7134],[6,1]],[[6558,7133],[3,5]],[[6562,7169],[-3,6]],[[6520,7784],[-4,16],[13,6],[0,5]],[[6576,7244],[-9,8],[0,27],[-1,0]],[[6566,7279],[-2,-9],[-6,-1],[1,-16],[-9,-14]],[[6530,7132],[-9,5],[-1,-5]],[[6573,7289],[-7,-10]],[[6512,6927],[5,3],[2,12],[14,18],[4,-14],[3,21]],[[6540,6967],[-10,3],[0,8],[-10,6],[-7,-3]],[[5710,6978],[14,-3],[5,-16],[9,1],[7,-5],[4,-16]],[[5749,6939],[2,10],[8,9],[12,5],[7,-2],[5,17],[-6,13],[11,10],[-3,8],[11,0],[2,11],[16,-17]],[[5952,6442],[6,14],[-3,5],[3,15],[4,4],[-1,14],[-6,12],[12,7],[2,14],[7,2],[2,10],[5,-5],[4,6]],[[5987,6540],[-3,19],[-14,9],[-2,11],[-5,-2],[-4,20],[-8,9],[-27,0],[-7,-2]],[[5917,6604],[-6,-10]],[[5911,6594],[4,-7],[-12,-3],[5,-27],[-4,-5],[1,-19],[-9,-35],[10,-9],[1,-13],[-4,-7]],[[5910,6436],[10,-4],[3,-13],[-3,-5],[13,-11],[5,7],[-5,8],[8,24],[11,0]],[[5899,6289],[15,1],[11,33],[5,7]],[[5930,6330],[5,4]],[[5935,6334],[1,5]],[[5936,6339],[5,6]],[[5941,6345],[1,2]],[[5942,6347],[0,0]],[[5942,6347],[7,8]],[[5949,6355],[0,10],[8,0],[6,6],[10,-10]],[[5973,6361],[11,27],[6,-1],[2,22],[-14,6],[0,8],[-13,-3],[8,13],[-8,-1],[0,7],[-13,3]],[[5877,6330],[7,-11],[1,-32],[14,2]],[[5890,6829],[-8,-4],[-2,-11],[5,-5],[-4,-20],[-9,0],[0,-11],[-11,-4],[-8,7],[-2,-27],[5,-3],[-7,-8],[0,-9],[7,-10],[-9,-2]],[[5847,6722],[4,-13],[7,0],[12,-11],[-1,-10],[-6,-7],[5,-13],[-12,-4],[-12,-17],[3,-11],[12,0],[13,4],[-4,-17],[4,-3]],[[5872,6620],[22,5],[17,-31]],[[5917,6604],[-11,9],[1,14],[4,0],[7,18],[20,2],[0,11],[10,-2],[2,-8],[8,0],[-2,-11],[5,-6],[11,1],[2,-7],[0,-26],[3,-13],[24,4]],[[5778,6632],[3,23],[8,-1],[9,10],[-1,9],[8,6],[-1,10],[19,6],[0,10],[-5,8],[-1,13]],[[5817,6726],[0,18],[8,3],[2,17],[-4,-7],[-2,21],[-11,4],[-1,9]],[[5809,6791],[-7,-1],[1,-7],[-16,0],[-5,4],[0,9],[5,3],[-1,22],[-3,1]],[[5783,6822],[-6,-1],[0,8],[-19,-2],[-11,3],[-2,-6]],[[5745,6824],[4,-23],[-4,-14],[11,-46],[-6,-2],[-4,-11],[4,-15],[-6,5],[-3,-13],[-1,-19],[-5,-18],[-14,5],[10,-30],[11,-11],[6,0]],[[5685,6851],[6,20],[-7,0],[0,36],[-4,6],[0,25]],[[5653,6813],[17,2],[3,16],[10,3],[2,17]],[[5861,6841],[-9,0],[-4,-14],[8,-3],[-11,-12],[-6,7],[1,-10],[-9,-16],[-5,7],[-4,-9],[-13,0]],[[5817,6726],[12,1],[11,-6],[-1,7],[8,-6]],[[5733,6846],[4,9],[-10,19],[2,11],[-17,5],[5,7],[2,21],[8,-1],[7,5],[-7,3],[0,14],[17,-1],[1,-3]],[[5745,6935],[4,4]],[[5685,6851],[9,-4],[-1,-11],[5,-1]],[[5698,6835],[7,28],[6,-11],[22,-6]],[[6063,6235],[5,19]],[[6068,6254],[1,2]],[[6069,6256],[-1,3],[14,19],[-4,25]],[[6078,6303],[0,0]],[[6078,6303],[0,9]],[[6078,6312],[0,3]],[[6078,6315],[3,11]],[[6081,6326],[0,0]],[[6081,6326],[0,8]],[[6081,6334],[3,18]],[[6084,6352],[-5,-5],[-7,17],[-11,-12],[-10,2],[2,31],[-8,14],[0,19],[-7,10],[-1,15],[-6,2],[-5,12],[2,15],[-9,9],[2,-10],[-4,-5],[-6,13],[5,14],[-11,-3],[8,14],[-5,4],[8,18]],[[5999,6541],[-4,-8],[-8,7]],[[5973,6361],[1,-5],[11,-2],[6,11],[4,0],[2,-19],[3,0],[4,-21]],[[6004,6325],[1,-1]],[[6005,6324],[-2,-22],[10,-3],[4,8],[8,2],[11,-17],[-4,-18],[10,-6],[6,-10]],[[6048,6258],[6,-13],[-1,-8],[10,-2]],[[6089,6437],[0,2]],[[6089,6439],[7,-3],[9,8]],[[6084,6352],[1,7]],[[6085,6359],[6,17],[2,24],[-12,1],[-2,18],[11,4],[-8,2],[7,12]],[[5745,6824],[6,26],[-7,4],[2,-8],[-13,0]],[[5698,6835],[5,-8],[-5,-5],[0,-48],[-14,-16],[0,-30],[1,-11],[-5,-4],[-1,-12],[6,-8],[5,-11],[7,-5],[5,-23]],[[5783,6822],[-3,21],[6,5]],[[5786,6848],[1,15],[5,10],[-7,0],[-2,7],[-6,-3],[1,14],[-13,3],[-3,14],[-5,0],[-12,27]],[[5872,6620],[-8,-37],[-5,11],[-9,-17],[-19,-12],[-4,6],[-1,-14],[-10,14],[-13,3]],[[5786,6848],[1,-7],[9,-2],[0,12],[9,-7],[3,11],[-1,11],[9,2],[6,28],[4,4],[8,-7],[0,-10],[16,2],[8,-11]],[[9915,6877],[5,-17],[7,-12],[4,-13],[13,-4],[5,13],[5,-6],[6,4],[5,-7],[9,-2],[21,-18],[-5,22],[-17,46],[-7,13],[-6,4],[-14,27],[-5,17],[-7,6],[-3,11],[-10,14],[-12,9],[-2,-14],[-4,0],[1,-14],[-3,-6],[-1,-22],[2,-18],[8,-16],[5,-17]],[[9869,6823],[-2,3]],[[9867,6826],[-4,-7],[-5,7],[-10,-8],[2,-7],[15,6],[4,6]],[[9796,6958],[-1,6]],[[9795,6964],[1,-6]],[[9951,6838],[0,0]],[[9434,7029],[-6,-1],[24,-25],[9,3],[2,-11]],[[9463,6995],[18,-3],[14,3],[11,-9],[3,-11],[10,0]],[[9519,6975],[0,2],[30,3],[23,-36]],[[9572,6944],[22,-36],[0,-4]],[[9594,6904],[1,4],[5,101],[1,10],[109,1],[0,37],[40,2],[0,174]],[[9750,7233],[-8,6],[-9,-3],[-8,5],[-10,32],[-10,21],[-7,40],[3,-34],[-13,0],[-15,9],[1,25],[-2,12],[6,10],[5,0],[3,14],[8,-8],[-1,16],[4,18],[6,-3],[8,-23],[18,-7],[9,1],[0,7],[8,-9],[2,-12],[17,-5],[-3,-5],[5,-8],[-3,-7],[9,7],[5,11],[-1,20],[-3,4],[-2,32],[-14,28],[-8,6],[-9,19],[-4,-2],[2,-17],[-22,17],[-9,11],[-4,13],[-5,50],[-8,12],[4,3],[-3,14],[4,8],[10,7],[5,-9],[10,-25],[8,-25],[9,-10],[6,0],[3,-8],[15,-2],[4,10],[-11,21],[-14,19],[-4,17],[0,25],[-3,11],[0,26],[-4,8]],[[9730,7626],[-143,-26],[-20,-5],[-41,-16],[-10,55],[-46,-22],[-11,-2],[7,-40],[5,-14],[-28,3],[-4,-6],[-22,2],[0,6],[-11,0],[-3,-16],[-37,0],[0,-6]],[[9366,7539],[1,-26],[25,-2],[0,-11],[-8,0],[0,-18],[-5,0],[2,-30],[-9,-5],[2,-31],[15,3],[7,5],[0,-46],[1,-33],[-4,-2],[-7,-15],[6,-8],[14,5],[5,-2],[8,-59],[7,2],[5,-24],[9,-54],[4,0],[0,-36],[19,0],[4,3],[2,-34],[-16,-3],[-1,9],[-13,-3],[3,-14],[-7,0],[0,-11],[19,3],[5,-54],[-8,-15],[-17,-4]],[[9752,7475],[-7,-3],[-1,-7],[8,10]],[[9748,7284],[0,0]],[[9703,7547],[0,0]],[[9683,7349],[0,0]],[[9752,7340],[0,0]],[[9693,7320],[0,0]],[[9684,7317],[0,0]],[[9729,7451],[0,0]],[[9757,7287],[0,0]],[[9733,7441],[0,0]],[[9744,7337],[0,0]],[[9709,7556],[0,0]],[[9761,7293],[0,0]],[[9705,7562],[0,0]],[[9761,7340],[0,0]],[[9761,7486],[0,0]],[[9760,7291],[0,0]],[[9700,7387],[0,0]],[[9745,7328],[0,0]],[[9761,7336],[0,0]],[[9687,7318],[0,0]],[[9700,7392],[0,0]],[[9763,7343],[0,0]],[[9753,7343],[0,0]],[[9752,7337],[0,0]],[[9761,7343],[0,0]],[[9750,7346],[0,0]],[[9709,7553],[0,0]],[[9706,7349],[0,0]],[[9717,7537],[0,0]],[[9756,7287],[0,0]],[[9726,7360],[0,0]],[[9703,7350],[0,0]],[[9729,7356],[0,0]],[[9730,7354],[0,0]],[[9699,7350],[0,0]],[[9732,7351],[0,0]],[[9876,6472],[0,-71],[-8,-1],[-1,-31],[-18,-1],[-11,2],[-1,-6]],[[9837,6364],[3,-7],[13,0],[4,-10],[8,2],[7,-6],[3,-41],[-8,-4],[8,-16],[6,-3],[3,8],[21,10],[4,13],[8,0],[-8,-10],[4,-2],[10,21],[0,16],[21,45],[3,31],[4,9],[-1,12],[5,28],[6,0],[0,-13],[4,-3],[-3,-9],[2,-10],[9,-11],[-1,-17],[-10,-25],[7,4],[5,11],[0,23],[-5,15],[-3,22],[4,23]],[[9970,6470],[0,0]],[[9970,6470],[0,12]],[[9970,6482],[-94,0],[0,-10]],[[9994,6481],[-5,-10],[0,-12],[5,22]],[[9871,6275],[6,-5],[5,5],[-9,1]],[[9873,6276],[-2,-1]],[[9897,6281],[12,9],[-7,-1],[-5,-8]],[[9976,6348],[-2,0],[-2,-28],[4,28]],[[9954,6361],[-7,8],[-4,-6],[11,-2]],[[9935,6345],[0,0]],[[9938,6350],[0,0]],[[9906,6291],[0,0]],[[9929,6345],[0,0]],[[9900,6287],[0,0]],[[9915,6308],[0,0]],[[9785,7991],[0,0]],[[9781,7988],[0,0]],[[9778,7983],[0,0]],[[9773,7976],[0,0]],[[9769,7968],[0,0]],[[9769,7963],[0,0]],[[9767,7938],[0,0]],[[9770,7896],[0,0]],[[9793,7987],[0,-5],[11,-33],[0,-18],[-3,-17],[5,10],[0,25],[-5,17],[-8,21]],[[9770,7882],[0,0]],[[9769,7873],[0,0]],[[9810,7871],[1,5],[-6,11],[5,-16]],[[9770,7861],[0,0]],[[9779,7833],[0,0]],[[9784,7809],[0,0]],[[9786,7803],[0,0]],[[9811,7798],[0,0]],[[9821,7799],[9,29],[0,20],[-5,14],[3,-28],[-5,-17],[-2,-18]],[[9819,7799],[0,0]],[[9788,7799],[0,0]],[[9808,7795],[0,0]],[[9813,7792],[0,0]],[[9807,7792],[0,0]],[[9816,7792],[0,0]],[[9807,7788],[0,0]],[[9804,7792],[0,0]],[[9795,7786],[0,0]],[[9794,7783],[0,0]],[[9808,7785],[0,0]],[[9799,7778],[0,0]],[[9730,7626],[-3,6],[-14,56],[-5,11],[0,17],[-3,5],[0,17],[-4,5],[-4,18],[0,25],[-8,17]],[[9689,7803],[-7,16]],[[9682,7819],[-3,15],[-1,25],[-4,23],[0,22],[-6,14],[-1,42],[-3,16],[-15,38],[-5,25],[0,21],[-4,32],[-6,-3],[-11,25],[-7,-9],[-33,0],[0,-134],[-70,0],[0,-31],[-12,-2],[-11,-7],[-14,1],[-3,5],[-7,-9],[-14,7],[-9,-6],[-15,17],[-4,30],[-6,15],[3,8],[-14,26],[-9,47],[-9,3],[-9,12],[-5,0],[3,19],[-8,11],[-4,17],[0,24],[-17,16],[1,8],[-5,7],[1,8],[-11,19],[-13,11],[-1,18],[-20,-13],[-2,-12],[-9,-8],[-11,3],[-3,-18],[-8,-9],[-8,1],[-2,6],[-7,-2],[-9,13],[-4,-3],[-9,18]],[[9230,7511],[38,6],[5,3],[0,10],[21,4],[-6,-6],[4,-14],[6,0],[3,-6],[-1,23],[35,0],[-1,8],[32,0]],[[9934,6697],[-51,0],[-7,2],[-6,10],[0,10],[8,0],[-14,22],[-18,-20]],[[9846,6721],[9,0],[0,-56],[-49,-1],[0,-68],[1,-55],[33,1],[2,-23],[5,0],[0,-25],[12,2],[0,-25],[17,1]],[[9970,6482],[-1,23],[6,13],[14,4],[-7,18],[-7,40],[-7,0],[-6,22],[-6,45],[-5,8],[-4,24],[-9,17],[-4,1]],[[9183,7368],[24,-29],[-1,-16],[11,2],[0,-5],[14,3],[-1,30],[12,0],[1,-16],[-8,-2],[3,-48],[15,6]],[[9253,7293],[0,5],[12,3],[2,-17],[11,3],[0,-11],[-17,3],[8,-30],[7,1],[1,-12],[5,0],[3,-11],[6,1]],[[9291,7228],[3,13],[5,1],[10,-25],[-1,-13],[7,0],[0,-10],[17,0],[-2,-11],[5,-3],[5,-36],[9,-21],[22,1],[3,-9],[2,-26],[-2,-7]],[[9374,7082],[16,-17],[7,3],[1,-9],[9,1],[3,-9],[22,3],[2,-25]],[[9673,6781],[21,-60],[31,-86]],[[9725,6635],[14,-39],[0,-265]],[[9739,6331],[15,4],[0,11],[8,4],[11,-6],[7,6],[15,5],[4,8],[8,-4],[15,4],[4,-3],[9,10],[2,-6]],[[9846,6721],[-34,10],[0,22],[-17,0],[2,-10],[-17,-1],[8,37],[-46,-2],[1,37],[-29,-4],[1,-29],[-42,0]],[[9873,6276],[-8,17],[-9,2],[-14,19],[-18,-1],[-8,8],[-1,-10],[-7,2],[-4,-13],[-14,16]],[[9790,6316],[-1,1]],[[9789,6317],[13,-26],[8,10],[9,4],[23,-3],[21,-15],[8,-12]],[[9934,6697],[-13,27],[-3,17],[-14,13],[-3,16],[-10,14],[-15,31],[-7,8]],[[9867,6826],[-14,20],[-19,22]],[[9834,6868],[-3,3]],[[9831,6871],[-15,29]],[[9816,6900],[-1,5]],[[9815,6905],[-3,6]],[[9812,6911],[-8,-1],[-9,-19],[-8,0],[-8,23],[14,13],[-5,12],[-22,-20],[-24,12],[-18,-37],[-2,-14],[-15,-25],[-42,0],[-24,39],[-37,-3]],[[9604,6891],[8,-12]],[[9612,6879],[61,-98]],[[9795,6964],[-5,14]],[[9790,6978],[-3,5]],[[9787,6983],[-10,19],[-13,41],[-7,41],[0,46],[4,3],[0,22],[3,10],[6,3],[2,15],[-2,20],[-5,16],[-6,3],[-2,14],[3,11],[-6,-3],[4,-26],[7,-1],[4,-14],[2,-27],[-10,-8],[0,18],[3,5],[-1,14],[-5,1],[-8,27]],[[9594,6904],[0,-13],[10,0]],[[9812,6911],[-4,8]],[[9808,6919],[-3,11]],[[9805,6930],[-1,2]],[[9804,6932],[0,0]],[[9804,6932],[-1,1]],[[9803,6933],[0,3]],[[9803,6936],[-7,22]],[[5444,5773],[21,18],[-1,9],[6,12],[8,1],[1,8],[7,2],[3,23]],[[5489,5846],[-18,-25],[-9,2],[-6,7],[-1,21],[-20,3],[-8,5],[0,12],[-5,14],[-28,-2],[1,17],[-10,0],[-10,20]],[[5375,5920],[-5,-6],[-10,-1],[8,-17],[-6,-4],[-8,-17],[1,-14],[16,3],[2,-32],[0,-22],[18,2],[0,-9],[10,-20],[-3,-11],[2,-12],[-1,-19],[-9,-18],[-5,-22],[-8,2],[-6,-12],[5,-8]],[[5376,5683],[14,2],[4,15],[5,-3],[10,9],[5,-1],[10,13],[-3,15],[9,10],[-3,25],[10,6],[1,-7],[6,6]],[[5958,5951],[9,37],[-2,29],[5,10],[-5,16],[11,0],[8,9],[7,35],[-6,-6],[-6,5]],[[5979,6086],[-9,-4],[-7,3]],[[5963,6085],[-2,-1],[-9,-28],[2,-8],[-12,3],[-7,-14],[-10,-4],[-13,-13],[-8,5],[-7,-24],[8,-7],[-3,-3],[-11,11],[0,14],[-9,2],[-4,-5],[-11,15]],[[5867,6028],[-6,2],[-3,-17],[-16,-33],[13,1],[10,-3]],[[5865,5978],[3,16],[14,-9],[7,12],[5,-3],[-9,-32],[2,-8],[9,-12],[10,1],[8,11],[9,-8],[5,9],[9,1],[8,-14],[7,10],[6,-1]],[[6134,6193],[-6,11]],[[6128,6204],[-11,21],[1,19],[6,10],[1,14],[-3,21]],[[6122,6289],[-10,17],[8,19]],[[6120,6325],[-14,12],[-7,-4],[-18,1]],[[6063,6235],[-5,-18],[5,-18],[8,-2],[-6,-32],[-13,-5],[-1,-11],[-7,-8],[-1,-18],[3,-10],[-3,-1],[-1,-19],[3,-8]],[[6045,6085],[7,-5],[0,-16],[10,-15],[12,6],[-4,20],[1,18],[7,47],[7,1],[0,21],[5,6],[9,-7],[6,6],[7,-10],[2,8],[8,-1],[-1,12],[7,1],[7,9],[-1,7]],[[5583,5952],[-6,-21],[1,-12],[-18,1]],[[5560,5920],[7,-9],[-16,5],[2,-7],[-12,-11],[8,-14],[6,-4],[0,-10],[5,9],[-4,-16],[12,-2]],[[5568,5861],[1,11],[7,-5],[7,7],[7,0],[10,-12],[5,8],[12,-7],[1,-9],[13,3],[4,-25],[7,-10],[11,1],[4,7],[3,20],[5,-4]],[[5665,5846],[-13,14],[4,23]],[[5656,5883],[-16,8],[1,11],[-11,3],[-10,11],[0,7],[9,16],[0,12],[-4,10],[6,12],[-7,14],[1,19]],[[5625,6006],[-13,0],[-4,-10],[-10,4],[2,11],[-7,-6],[-4,-20],[-5,-3],[5,-10],[-6,-20]],[[5963,6085],[-5,5],[-16,0],[-30,-5],[9,24],[-18,7],[-1,-13],[-11,5],[-10,-4],[2,13]],[[5883,6117],[-12,-7],[-1,-16],[8,7],[-2,-19],[11,-2],[-4,-9],[-1,-18],[-15,-25]],[[5415,5224],[-2,-15],[-9,5],[3,-38],[-17,-36],[-6,-60]],[[5384,5080],[4,-8],[20,-29],[22,-29]],[[5430,5014],[3,41],[14,27],[5,1],[36,-10],[8,-1],[1,-14],[7,6],[18,6],[0,13],[15,-2],[6,7]],[[5543,5088],[7,7],[1,28]],[[5551,5123],[0,14],[-9,48],[6,1]],[[5548,5186],[1,54],[-13,6]],[[5536,5246],[-14,-2],[-3,52],[-10,7],[-5,10],[-4,-2],[-29,-2],[2,-18],[-7,5],[5,-30],[-4,-12],[-10,3],[-1,17],[-19,-10],[0,-5],[15,-10],[-15,-36],[-6,-15],[-6,15],[3,10],[-13,1]],[[5640,5069],[-9,-6],[0,12],[13,7],[-15,7],[-1,4],[-14,-7],[-1,8],[5,8],[-1,11],[-31,-2],[-1,14]],[[5585,5125],[-10,-3],[-1,11],[-11,2],[1,-11],[-13,-1]],[[5543,5088],[10,-80],[-4,-14],[-4,-42],[12,4],[1,-11],[14,7],[0,-23],[15,3],[6,-57],[11,1],[0,-7],[9,5]],[[5706,5897],[-9,-8],[-10,20],[-6,17],[-5,-1],[4,-9],[-20,-19],[-4,-14]],[[5665,5846],[1,-16],[-8,-20],[-11,-43],[0,-7],[-7,-5],[-4,5],[-8,-7]],[[5628,5753],[9,-2],[10,8],[8,-5],[16,29],[5,3],[6,-13],[12,1],[10,14],[4,-8],[-8,-35],[5,-10],[7,8],[7,20],[8,6],[6,-13],[13,17],[12,-15],[11,28],[11,-39]],[[5780,5747],[4,10],[7,6],[7,-2],[9,14],[-8,15],[18,24],[-8,11]],[[5809,5825],[-8,-5],[-5,10],[-7,-7],[-11,13],[-22,-30],[2,14],[3,-6],[-4,48],[-21,3],[4,-7],[-17,-20],[-7,17],[-6,-11],[-7,10],[9,11],[-11,4],[5,28]],[[5529,5974],[-1,-8],[15,-9],[8,-9],[0,-12],[9,2],[5,-15],[-5,-3]],[[5583,5952],[-6,17],[-14,11]],[[5563,5980],[-12,-8],[-9,1],[0,5],[-13,-4]],[[5865,5978],[-9,-14],[3,-4],[-16,-22],[7,-21],[-5,-7],[-17,-6],[0,-19],[4,-13],[-8,0],[-9,-20]],[[5815,5852],[-6,-27]],[[5780,5747],[10,-21],[10,-62]],[[5800,5664],[20,-14],[24,1],[12,11],[-1,28],[10,10],[12,-4],[7,6],[10,-2],[13,-11],[38,21],[9,16],[6,-2]],[[5960,5724],[2,10],[-8,3],[13,7],[1,20],[6,23],[8,6],[12,42],[9,-7],[10,40],[-8,4],[5,34],[2,0],[10,32]],[[6022,5938],[-18,3],[-12,-10],[-23,21],[-11,-1]],[[5702,6129],[-5,6],[-8,-7],[0,-9],[-8,-9],[-1,-18],[-5,-11],[-11,5],[-15,-9]],[[5649,6077],[0,-5]],[[5649,6072],[3,-15],[5,-3],[-4,-8],[9,-7],[7,0],[4,-10],[-6,-4],[11,-8],[1,-6],[16,-7],[7,-15]],[[5702,5989],[0,9],[6,0],[1,11],[9,-7],[13,-5],[0,25],[23,14],[3,-14],[-12,-11],[3,-4],[13,2],[0,-9],[9,-2],[-10,30],[7,0],[11,12],[0,-20],[10,5],[2,-13],[7,4],[11,23],[7,-13],[8,12],[-9,30],[-9,16],[-7,31],[-13,-4],[-1,-14],[-9,3],[3,-25],[13,7],[-4,-11],[-11,3],[-19,-23],[-6,-13],[-7,5],[-13,-2],[-1,5],[-18,-8],[-1,-6],[-13,3],[-3,-11],[-16,25],[9,4],[-4,16],[3,5],[-4,29],[13,23],[6,3]],[[6148,6251],[-1,19],[12,12]],[[6159,6282],[-3,11]],[[6156,6293],[-17,6]],[[6139,6299],[-1,-9],[-12,-6],[-4,5]],[[6128,6204],[9,14],[7,29],[4,4]],[[6049,5834],[36,3]],[[6085,5837],[20,-4],[39,12],[4,11]],[[6148,5856],[1,20],[3,11],[3,34],[2,59],[1,0],[2,48],[-2,14],[1,15],[-4,19],[1,21],[-4,20],[3,5],[10,3],[14,15]],[[6179,6140],[-4,14],[-7,4],[2,8],[-18,15],[0,11],[-8,4],[-10,-3]],[[6045,6085],[-9,0],[-6,-13],[11,-18],[2,-10],[-4,-20],[-1,-19],[-6,-28]],[[6032,5977],[-3,-37],[-12,-58],[6,8],[-1,-9],[8,-3],[5,25],[17,-8],[5,4],[-3,-17],[3,-11],[-1,-12],[-7,-25]],[[6156,6293],[7,12],[7,2],[7,11],[-1,8]],[[6176,6326],[-11,1],[-1,-6],[-4,12],[-13,11],[-10,0]],[[6137,6344],[-5,-28],[7,-8],[0,-9]],[[5536,5246],[-9,4],[6,9],[-9,18],[9,7],[5,17],[-6,3],[-11,-3],[0,22],[6,-1],[-9,18],[6,8],[-4,23],[4,31],[-4,12],[1,12],[-3,8],[13,-6],[3,29],[9,0],[-6,19],[10,26],[0,9],[-6,-2]],[[5541,5509],[-13,-6],[0,-5],[-21,-8],[0,16],[6,0],[-2,15],[-16,-5],[0,-14],[-22,1],[-10,11],[-3,-27],[-8,12],[-6,3],[-13,-1],[-31,-20],[-14,-6],[-3,4],[1,20],[-11,12],[2,3],[-13,25]],[[5364,5539],[-2,-13],[-7,-5],[6,-3],[0,-12],[5,-5],[7,-20],[-14,-28],[-9,-36]],[[5350,5417],[19,-3],[3,-7],[4,-38],[11,9],[12,18],[8,6],[0,-11],[-17,-16],[8,-20],[10,-6],[5,-20],[-4,-10],[9,1],[0,-49],[-3,-47]],[[6259,6075],[5,-13],[-2,-12],[9,-2],[-2,-16],[10,2],[4,-18],[-5,2],[2,-14],[-3,-1],[1,-29],[-3,-16],[-7,1],[-40,-18],[2,-13],[-6,-4],[0,-44],[13,0],[0,-10],[-10,0],[-4,-14]],[[6223,5856],[31,0],[1,13],[14,6],[3,10],[14,10],[11,-3],[7,17],[8,-2],[-2,12],[12,0],[-2,11],[15,-4],[-9,13],[6,5],[0,12],[-6,4],[-23,25],[-3,12],[5,5],[-6,14],[1,13],[-3,4],[-4,27],[-7,8],[3,10],[-7,1],[-10,-11],[-7,10],[-6,-3]],[[5774,5389],[-2,18],[-3,-1],[0,26],[3,1],[-2,14],[15,2],[0,14]],[[5785,5463],[18,17],[-12,7],[-5,8],[1,14],[-5,7],[-7,-5],[3,21],[-6,-3],[0,32],[20,-1],[5,51],[-22,33],[2,7],[23,13]],[[5628,5753],[-4,-19],[-12,10],[3,-34],[-4,-1],[1,-11],[6,-8],[-1,-17],[6,1],[2,-22],[4,-5],[-9,-8],[-3,-12],[16,-1],[-3,-30],[6,0],[-5,-47]],[[5631,5549],[-1,-19],[23,-8],[1,-21],[-7,-40],[7,-2],[1,-50]],[[6138,6346],[-2,6],[-10,-2],[0,-11],[-6,-14]],[[6137,6344],[1,2]],[[5959,6207],[6,22],[0,20],[4,13],[-8,8],[4,27],[3,7],[-4,17],[-14,-12],[-2,6],[8,15],[-7,25]],[[5899,6289],[-12,-26],[-17,-10],[1,-10],[7,1],[-2,-16],[4,-10]],[[5880,6218],[8,1],[8,8],[7,-3],[6,8],[5,14],[4,-1],[0,-16],[9,-13],[3,-19],[7,-4],[6,11],[14,-5],[2,8]],[[5654,5399],[0,-5],[-18,-4],[-21,-1],[-1,-7],[-18,-3],[-5,-8],[14,-1],[-6,-13],[-9,3],[-8,-37],[9,6],[13,-18],[-6,0],[5,-47],[-13,-2],[-3,-29],[-10,-5],[-14,-17],[-3,-15],[0,-15]],[[5560,5181],[9,4],[-1,-13],[14,3],[5,-23],[10,-3],[-2,-21],[-10,-3]],[[5489,5846],[-2,8],[7,-2],[2,52],[-5,4],[3,12],[-3,12],[-17,29],[-6,13],[-18,4],[3,8],[-5,7],[2,8],[-4,17]],[[5446,6018],[-10,-6],[-9,-14],[1,-15],[-11,-8],[-33,0]],[[5384,5975],[-4,-13],[9,-18],[-12,-13],[-2,-11]],[[5376,5683],[1,-12],[-15,-19],[-26,4]],[[5336,5656],[-5,-1],[3,-19],[7,0],[2,-19],[10,4],[-4,-44],[24,-6]],[[5373,5571],[3,8],[21,3],[2,5],[11,1],[4,26],[3,5],[-6,13],[18,4],[0,-27],[8,0],[0,22],[7,0],[3,-17],[19,3],[0,-25],[15,1],[1,8],[-8,-5],[-3,16],[38,3],[-1,5],[23,2],[10,8]],[[5541,5630],[-1,13],[9,0],[-2,8],[-9,-1],[-12,15],[-10,-3],[-5,19],[2,19],[-4,3]],[[5509,5703],[-12,2],[-4,14],[-16,-10],[4,24],[-35,28],[4,10],[-6,2]],[[5880,6218],[-2,0]],[[5878,6218],[2,-21],[-13,1],[8,-26],[-3,-24],[13,-19],[-2,-12]],[[5979,6086],[13,20],[3,13],[-8,3],[4,22],[-6,8],[-3,-8],[-9,-1],[0,11],[-15,3],[6,36],[0,9]],[[5964,6202],[-5,5]],[[5878,6218],[-11,8],[0,-16],[-3,-7],[-6,3],[6,24],[-6,5],[-5,-13],[-6,15],[-10,-5],[-7,17],[-9,0],[-3,10],[-24,-25],[-3,3],[0,23],[-17,8],[11,14],[-2,14]],[[5750,6246],[-3,-4],[8,-7],[-7,-29],[3,-32],[-10,-30],[-13,-1],[-9,-26],[-8,-2],[-6,15],[-3,-1]],[[5702,5989],[-2,-10],[6,-3]],[[5706,5976],[3,7],[23,7],[2,-11],[4,-4],[8,7],[17,-12],[-3,-12],[3,-6],[-7,-26],[8,-5],[3,-30],[14,5],[3,-26],[7,-1],[13,-29],[11,12]],[[5364,5539],[-5,6],[14,26]],[[5336,5656],[-1,22],[-23,24],[-2,24],[-6,-7],[1,20],[-21,40]],[[5284,5779],[-3,5],[-9,-8],[-16,6],[3,15],[-11,-4],[-4,13],[-4,-3]],[[5240,5803],[-1,0]],[[5239,5803],[-12,-16],[6,-28],[-17,-6],[6,-51],[-27,6],[-2,-3]],[[5193,5705],[2,-7],[6,4],[7,-30],[12,-6],[16,-15],[1,-24],[-3,-10],[11,2],[1,-14],[6,-7],[13,0],[-1,9],[19,6],[6,-9],[16,13],[8,-16],[15,9],[19,6],[3,-7],[-4,-6],[1,-24],[-34,10],[11,-59],[-20,-1],[-10,-33],[1,-8]],[[5295,5488],[7,-38],[12,-1],[2,-30],[20,5],[14,-7]],[[6206,6252],[-1,6]],[[6205,6258],[-13,-2],[-7,-7],[-7,2],[0,9],[-7,7],[-2,16],[-5,5],[-5,-6]],[[6148,6251],[9,-2],[19,-10],[29,0],[1,13]],[[5509,5703],[4,-3],[11,3],[-2,10],[4,2],[-13,30],[-4,5],[11,18],[0,10]],[[5520,5778],[2,6],[-11,3],[6,26],[10,1],[6,-9],[10,-4],[10,1],[9,-5],[-1,8],[6,6]],[[5567,5811],[-17,14],[1,6],[-14,27],[-11,2],[6,16],[5,3],[-4,12],[-5,-4],[-9,26],[-4,18],[-10,12],[-4,22],[4,0],[0,11],[25,8],[-1,-10]],[[5563,5980],[0,6],[10,42],[-12,-3],[0,11],[-6,-3],[3,12],[-1,11],[-14,-2],[6,20],[-3,6]],[[5546,6080],[-10,-20],[-31,1],[-16,11],[-12,-1]],[[5477,6071],[-4,-8],[-16,-12],[-19,-10],[8,-23]],[[6236,6497],[6,-18],[-15,-5],[-3,-10],[-1,-22],[2,-12],[-6,-10],[-7,11],[-7,-3]],[[6205,6428],[-2,-12],[8,-5],[13,-24],[-3,-10],[7,-13],[0,-11],[-9,-5]],[[6219,6348],[0,-15],[7,-19]],[[6226,6314],[1,-5],[13,0],[8,-5]],[[6248,6304],[7,9],[7,2],[8,11],[-1,8],[4,10],[-1,34],[7,8]],[[5706,5897],[5,5],[4,26],[-12,11],[3,10],[-10,-2],[10,29]],[[5649,6072],[-5,-9],[-2,8],[-9,-11],[-2,-19],[8,-17],[-12,-11],[-2,-7]],[[5964,6202],[21,16],[5,6],[8,-1],[1,-6],[10,-14],[6,8],[10,2],[12,7],[8,21],[-2,11],[5,6]],[[5537,6233],[5,-34],[9,-16],[2,-11],[-2,-22],[6,-20],[0,-10]],[[5557,6120],[24,-2],[-6,-13],[7,2],[14,-13],[7,8],[30,3],[4,-15],[4,1],[8,-14]],[[5719,6226],[0,-11],[-10,-17],[-7,8],[0,-12],[-11,5],[-10,-13],[-5,9],[4,7],[-13,-4],[-5,6],[-12,-14],[-3,6],[-14,-14],[-3,18],[-13,7],[1,-13],[-14,-2],[4,34],[9,22],[-2,15],[6,4],[-4,40],[5,8]],[[5295,5488],[-33,-16],[-18,-3],[-3,-8],[-12,39],[-9,-5],[0,-19],[-3,-20],[-25,-18],[-2,12],[-16,-6],[-7,-13],[-6,3],[-20,1],[-17,-6],[-3,20],[-8,6],[-5,-11]],[[5108,5444],[-8,-21],[0,-22],[-15,-12],[1,-22],[13,-2],[4,-21],[-3,0],[-5,19],[-13,-22],[11,-16],[3,-9],[5,-44],[14,-1],[0,26],[8,1],[0,21],[14,4],[35,-11],[75,-41],[55,-77],[2,-1],[40,-56]],[[5344,5137],[40,-57]],[[6284,6145],[-2,14],[6,-2],[4,22],[-6,7],[0,12],[-9,6],[-8,16],[-2,-13],[-9,3],[4,16]],[[6262,6226],[-6,8],[-14,1]],[[6242,6235],[-9,1],[-5,-17]],[[6228,6219],[-9,-12],[-11,-3],[0,-15]],[[6208,6189],[6,1],[-1,-16],[4,-5],[0,-15],[4,-8],[-6,-9],[21,-32],[4,6],[9,-8],[-4,-9],[10,-15]],[[6255,6079],[7,14],[8,-9],[6,0],[4,15],[-13,-6],[-2,9],[11,0],[-4,11],[-6,2],[0,18],[5,-2],[5,22],[8,-8]],[[5567,5811],[1,6],[-9,21],[5,-2],[3,8],[-4,15],[5,2]],[[6022,5938],[-1,21],[2,19],[9,-1]],[[6139,6433],[20,1],[2,-7],[7,5],[0,11],[18,-3],[9,-7],[1,-12]],[[6196,6421],[9,7]],[[6196,6421],[1,-25],[-5,-4]],[[6192,6392],[-4,-10],[-7,-1],[-2,-15],[-3,-1],[3,-12],[7,-4],[2,-18]],[[6188,6331],[2,-8],[7,6],[5,12],[8,-5],[3,13],[6,-1]],[[6188,6331],[-9,4],[-3,-9]],[[6205,6258],[5,3],[-1,11],[5,11],[8,1],[0,26],[4,4]],[[6226,5838],[-3,18]],[[6259,6075],[-4,4]],[[6208,6189],[-9,-1],[-4,-15],[-4,4],[-7,-12],[7,-16],[-7,-11],[-5,2]],[[6148,5856],[3,0]],[[6151,5856],[4,8],[13,-6],[13,6],[20,-6],[1,-7],[23,-15],[1,2]],[[6228,6219],[-4,15],[-8,5],[-10,13]],[[6242,6235],[1,9],[-5,0],[-3,14],[7,0],[0,22],[4,7],[2,17]],[[5430,5014],[-5,-92]],[[5425,4922],[-2,-40],[14,-3],[33,-23],[10,-60],[7,-41],[8,-23]],[[5495,4732],[0,12],[-6,12],[0,29],[20,30],[29,-34],[35,-65]],[[5541,5509],[-3,26]],[[5538,5535],[-1,21],[26,2],[-8,42],[-14,-2],[2,19]],[[5543,5617],[-2,13]],[[5477,6071],[-7,12],[-17,13],[-2,-3],[-18,7],[-3,14],[-5,43],[-2,0]],[[5335,6160],[-3,-11],[5,-6],[2,-14],[5,-7],[18,-15],[-6,-12],[8,-11],[6,-17],[7,-7],[11,-1],[-6,-5],[-1,-12],[6,7],[0,-11],[-7,-4],[-4,13],[-4,-14],[8,0],[1,-26],[7,-28],[-4,-4]],[[5548,5186],[12,-5]],[[5631,5549],[-27,4],[-11,-10],[0,-13],[-9,-6],[-7,-12],[-12,-11],[-1,15],[6,2],[2,14],[-7,14],[-27,-11]],[[5193,5705],[-1,-1]],[[5192,5704],[-30,-39],[-26,-32],[-21,-44],[-1,-10]],[[5114,5579],[-5,-27],[-7,-50]],[[5102,5502],[-1,-13],[-7,1]],[[5094,5490],[7,-27],[7,-19]],[[5546,6080],[4,6],[-3,8],[7,1],[0,18],[3,7]],[[5520,5778],[9,-11],[-7,-13],[6,-9],[20,30],[10,9],[3,-14],[7,1],[-1,-31],[14,0],[2,-15],[6,-3],[9,5],[-1,-45],[-21,-23],[7,-14],[-10,-6],[-10,-18],[-9,-9],[-3,6],[-8,-1]],[[6192,6392],[-13,10],[-6,-10],[-9,6],[0,17]],[[6164,6415],[-13,-11],[-7,-17],[-2,-34],[-4,-7]],[[6164,6415],[-4,3],[-9,-5],[-8,3],[-4,12]],[[5960,5724],[5,-2],[-6,-24],[-7,-35]],[[5952,5663],[-1,-9],[14,-2],[7,4],[11,42],[7,1],[11,-5],[3,23],[14,-3],[8,25]],[[6026,5739],[10,39],[3,25],[10,31]],[[2984,3645],[5,7],[0,41],[-10,11],[-10,-4],[-10,11],[-4,16],[14,14],[-7,47],[10,7],[9,17],[-19,33],[10,16],[-7,35],[11,10],[-3,2],[1,30],[6,9],[2,-14],[10,1],[3,-11],[18,30],[24,-17],[5,11]],[[3042,3947],[2,11]],[[3044,3958],[-6,7],[-5,14],[-7,-1],[-5,10],[1,7],[-13,25],[0,36],[3,17],[6,20],[-4,-2],[-12,44],[2,1],[-7,35],[-38,2]],[[2959,4173],[-2,-9],[-15,-18],[0,-7],[-13,-22],[-14,-9],[-3,-17],[-15,-19],[-16,-9],[-14,-4],[-25,7],[2,-22],[-2,-2],[-4,-46],[-7,-24],[4,-25],[0,-24],[-6,-14],[-2,-24],[3,-18],[9,-36],[18,-43],[16,-49],[2,-28],[13,-21],[-2,-4]],[[2886,3686],[4,1],[10,-11],[7,-3],[8,20],[10,4],[13,-8],[6,-23],[22,-28]],[[2966,3638],[18,7]],[[3167,4331],[0,0]],[[3163,4327],[0,0]],[[3165,4323],[0,0]],[[3293,4328],[-5,3],[-3,15],[11,0],[6,10],[1,20],[9,8],[4,17]],[[3316,4401],[-6,35],[-3,-5],[-14,1],[-6,4],[-7,26],[-5,4],[0,12],[7,24],[-6,4],[-4,19],[-11,12]],[[3261,4537],[-6,-16],[-12,-10],[-1,-16],[-33,-91],[-16,-28],[-13,-13],[-2,-13],[-7,-23],[-9,-11]],[[3162,4316],[4,-19],[-4,-4],[4,-19],[5,-7],[-7,-11],[3,-34],[19,-10]],[[3186,4212],[5,8],[18,-6],[0,-5],[20,-21],[3,11],[6,-8],[1,-9],[12,-13],[5,9],[-4,7],[14,17],[8,4],[-4,12],[-1,16],[4,21],[10,24],[-12,8],[7,10],[9,-1],[6,32]],[[3552,4276],[-7,0],[-11,-10],[-22,0],[5,26],[8,42],[-27,-7],[2,-5],[-6,-22],[-12,2],[-5,8],[8,17],[4,1],[1,21],[5,14],[-9,1],[0,18],[-16,-10],[-20,-20],[-17,0]],[[3433,4352],[4,-8],[-14,-44],[-8,1],[-7,-8],[-16,10],[-9,-2],[-2,-15],[-7,-18],[-11,0],[0,-19],[-15,5],[15,-31],[13,-11],[5,-15],[5,-3],[-6,-12],[2,-11],[13,-2],[-6,-20],[7,-4],[0,-34],[14,-18],[4,-2],[0,-42],[4,-7],[-18,-2],[-7,-50],[2,-21]],[[3395,3969],[13,-16],[2,-28],[-2,-29],[22,-22],[8,1],[5,-11],[-7,-21],[-10,-5],[1,-6],[10,-13],[-4,0],[2,-14]],[[4003,5315],[-6,16],[-35,5],[2,12],[-24,-13],[-4,5],[-3,30],[4,15],[-7,3],[1,18],[6,12],[6,24],[0,8],[-7,1],[-10,18],[-5,-14],[-11,7],[-8,-10],[-2,6],[-9,-5],[-7,2],[-3,19],[-8,-13]],[[3873,5461],[11,-31],[-8,-2],[-8,-16],[-17,0],[5,-13],[8,0],[-5,-49],[-4,-13],[-11,-4],[-5,-18],[9,-2],[-4,-15],[5,-3],[-3,-16],[-6,-2],[0,-8],[8,-1],[3,-11],[0,-24],[5,-4],[-3,-14],[6,-8],[8,6],[1,-16],[13,3],[-2,-12],[5,1],[0,-12],[10,5],[-3,-18],[8,-3],[8,-15],[4,-22],[0,-18],[7,1],[3,-9],[6,4],[10,-2]],[[3754,4810],[14,10],[0,19],[-8,-1],[-8,8],[-12,1],[-17,-8],[0,12]],[[3723,4851],[-33,-10],[-2,10],[-9,-8],[-4,-17],[-6,-2],[-5,-12],[-17,10],[-13,-7],[-8,3]],[[3626,4818],[-11,-14],[2,-13],[-5,-18],[-11,-6],[-8,-14],[0,-10],[-5,-12],[-4,3],[-2,-30],[20,-11],[8,-2],[-3,-20],[-17,-6],[4,-8],[-2,-16],[-4,-6],[-2,-18],[7,-7],[-7,-16],[9,-19],[21,-15],[0,-11],[12,-2],[9,-16],[-2,-16]],[[3626,4818],[-4,24],[-3,5],[3,13],[-5,4],[0,20],[-4,-4],[-29,2],[3,17],[-4,6],[10,27],[-12,3],[-1,12],[-10,-15],[-18,-14],[12,17],[-2,14]],[[3562,4949],[-25,-33],[-1,-5],[-28,-31],[-39,-40],[0,-4],[-19,-26],[-60,-69],[-28,-29],[-16,-10],[-7,-20]],[[3339,4682],[7,-3],[28,31],[29,30],[26,-21],[-1,-34],[2,-30],[7,-15],[0,-15],[3,-25],[10,0],[6,-21],[-7,-2],[-1,-22],[-9,-10],[-11,1],[-5,-17],[-8,-1],[-1,-11],[-9,-5],[1,-14],[-12,-8],[-24,-25]],[[3370,4465],[11,-7],[9,1],[6,-17],[6,-9],[7,1],[7,-8],[-4,-8],[0,-21],[11,-17],[9,-5],[1,-23]],[[3283,3614],[-7,-1],[3,32],[-7,13],[1,17],[-7,14],[-14,1],[-4,7],[-14,-3],[0,10],[-11,-4],[-9,-10],[4,-7],[5,-27],[-23,-7],[-4,10]],[[3196,3659],[-8,-4],[-3,-38],[7,0],[9,-8],[-12,3],[-5,-20],[-4,-3],[-9,7],[-3,-7],[-3,9],[-6,-5],[-3,-12],[-5,-3],[-2,-11],[-13,-3],[8,-9],[3,-9],[-3,-9],[11,-7],[6,-12],[-5,-14],[-10,0],[-5,16],[-7,9],[-15,-4],[0,14],[-17,12],[-6,-1],[-2,-10],[-12,-17],[0,-11],[6,-10],[-14,-7]],[[3074,3495],[1,-5],[9,-5],[0,-19],[4,-9],[6,0],[2,-17],[5,-2],[1,-16],[7,4],[5,-11],[-7,-7],[8,-17],[5,-21],[16,-49],[12,-4],[-23,-6]],[[3723,4851],[-6,8],[-3,25],[-6,1],[-13,18],[5,2],[1,15],[7,10],[-1,15],[-7,7],[1,8],[-4,14],[-1,23],[7,16],[-6,15],[-15,22],[-2,23],[1,12],[-39,8]],[[3642,5093],[-6,-11],[-2,-22],[-34,-58],[-38,-53]],[[3990,5766],[-3,-17],[-14,-40],[-9,-19],[-26,-44],[-23,-29]],[[3915,5617],[8,-5],[10,-16],[1,6],[13,-5],[15,14],[9,-6],[-11,-27],[9,-5],[0,-9],[6,-14],[16,-13],[24,36],[7,6],[0,-10],[13,2],[5,-12],[2,15],[5,12],[9,-1],[6,11],[-1,12],[12,10]],[[3196,3659],[-3,14],[3,35],[-3,9],[3,8],[-14,14],[-13,3],[2,9],[-8,23],[-5,-2],[-6,11],[0,15],[-9,-3],[-1,-12],[-6,-6],[-4,14],[-8,-10],[2,17],[-6,11],[-31,-4],[5,11],[-10,29],[-5,33],[10,0],[0,27],[-13,5],[-2,13],[4,8],[-5,2],[-1,13],[-6,2],[-12,-1],[1,-6],[-13,6]],[[2984,3645],[4,0],[8,-17],[8,9],[8,-16],[-5,-7],[12,-14],[-6,-4],[-18,0],[7,-5],[6,-35],[21,-12],[9,2],[0,-6],[13,-8],[18,4],[0,-31],[5,-10]],[[3226,4079],[-10,12],[7,23],[-4,21],[4,14],[-20,0],[-8,12],[-3,38],[-6,2],[0,11]],[[3162,4316],[-16,-32],[-12,-15],[-25,-20],[-24,-17],[-39,-17],[-15,-1],[-15,-15],[-20,-14],[-37,-12]],[[3044,3958],[8,21],[9,4],[-1,24],[7,9],[-1,12],[40,0],[10,-19],[12,4],[14,-6],[3,-26],[6,2],[0,10],[17,2],[0,16],[8,-12],[15,22],[-2,11],[-4,0],[0,16],[15,8],[3,6],[19,6],[4,11]],[[3784,5421],[0,0]],[[3787,5417],[0,0]],[[3775,5414],[0,0]],[[3776,5414],[0,0]],[[3767,5394],[0,0]],[[3768,5390],[0,0]],[[3764,5375],[0,0]],[[3873,5461],[-6,7],[-9,-14],[-8,12],[-16,-3],[-1,15]],[[3833,5478],[-10,-12],[-16,-27],[-19,-25],[-9,4],[2,-22],[-11,-14],[-3,-17],[-10,-17],[6,-4],[-1,-9],[-12,-27],[-11,-21],[-20,-30]],[[3719,5257],[1,-18],[4,-27],[2,-33],[24,-4],[-3,-24],[3,-13],[13,1],[4,-5],[16,3],[9,9],[5,21],[6,0],[6,13],[7,6],[10,2],[10,-22],[12,-9],[2,-11],[8,8],[1,-25],[19,-11],[-14,-23],[27,-66],[38,39]],[[3370,4465],[-11,-17],[-12,-4],[-6,-28],[-8,-15],[-13,6],[-4,-6]],[[3293,4328],[9,9],[1,-31],[20,0],[0,-11],[-3,-9],[-5,1],[-8,-35],[9,-6],[-11,1],[-6,-15],[6,-4],[5,-15],[-11,-5],[1,-14],[-17,-6],[3,-8],[-5,-19],[2,-8],[-4,-13],[1,-11],[-4,-22],[7,-17],[-15,1]],[[3268,4091],[6,-32],[11,6],[14,-16],[-1,-14],[12,14],[19,-18],[-1,-8],[6,-4],[1,-8],[11,5],[2,-17],[13,4],[11,-6],[1,-7],[12,-5],[-7,-7],[17,-9]],[[3915,5617],[-14,-13],[-4,-12],[-38,-73],[-26,-41]],[[3226,4079],[3,5],[17,0],[0,10],[8,-4],[0,-6],[9,9],[5,-2]],[[3719,5257],[-3,-13],[-14,-21],[-10,-23],[-18,-18],[-17,-26],[6,-5],[0,-9],[-14,-28],[-1,-12],[-6,-9]],[[3339,4682],[-5,-16],[-20,-19],[-27,-30],[-11,-22],[2,-25],[-17,-33]],[[2631,1686],[9,35],[10,0],[-2,18]],[[2648,1739],[-7,-5],[-13,1],[-2,-12],[-8,-11],[-30,25],[-39,36]],[[2549,1773],[-1,-10]],[[2548,1763],[-9,-45],[-21,3],[-2,-2],[11,-7],[1,-13]],[[2528,1699],[7,-4],[-1,-5],[40,-9],[5,5],[2,-7]],[[2581,1679],[16,5],[3,-17],[20,-1],[0,19],[11,1]],[[2989,1091],[-38,-12],[0,52],[-4,0],[0,40],[-12,2],[0,-35],[-3,-2],[2,-10],[-7,-4],[-25,0],[-3,-6],[-7,5],[-10,17],[-4,22],[-6,8],[-3,13],[4,1]],[[2873,1182],[-9,1]],[[2864,1183],[2,-3],[-11,-31],[-2,-44],[-12,-9],[8,-91],[-7,-3],[-1,-8],[4,-29],[-4,-11],[-19,-18],[-11,15],[-4,32],[-9,-7],[-7,7],[0,-9],[-12,-1],[-12,2],[-6,-18],[-9,4]],[[2752,961],[-4,-23],[11,-9],[-2,-9],[-9,-68],[-9,11],[-7,-45]],[[2732,818],[209,0],[23,1],[81,0]],[[2966,3638],[3,-10],[-10,-2],[2,-9],[-16,-38],[-3,-14],[13,-7],[-15,-18],[-5,-11],[3,-23],[-3,-15]],[[2935,3491],[12,-36],[-3,-22],[-10,-4],[1,-11],[-16,-4],[-1,-10],[17,-20],[0,-8],[-14,6],[0,-12],[-6,0],[-10,-14],[-7,12],[0,-20],[-9,5],[3,-21],[-3,-16],[4,-9],[-1,-11],[-5,-15],[7,-5],[-6,-21],[6,-14],[-8,-18],[0,-21],[7,-10],[2,13],[20,0],[0,-20],[9,-3],[-9,-22],[-9,-13],[5,-8],[-9,-9]],[[2902,3130],[17,-18],[3,7],[2,-10],[10,-11],[5,0],[9,21],[6,4],[5,-7],[-5,-22],[6,-6],[7,-24],[-1,-12],[3,-9],[7,12],[1,-16],[5,0],[3,-11],[-4,-10],[1,-11],[5,-3],[-9,-18],[4,-13],[-9,-5],[7,-12],[1,-14],[5,-4],[-2,-36],[15,2],[-6,-26],[1,-11]],[[2130,710],[-1,45],[-6,0],[1,40],[-2,18],[2,4],[-7,37],[27,-5],[-2,14]],[[2142,863],[-2,11],[-17,-6],[-5,36],[-4,17],[9,-1],[8,9],[-3,10],[8,1],[3,21],[0,15]],[[2139,976],[-24,26],[-6,12],[2,26],[5,30],[0,9],[-29,12],[-3,30],[0,28],[11,3],[-6,12],[4,21],[-2,11],[7,6],[-2,9],[8,26],[2,14],[15,-1],[-3,22]],[[2118,1272],[-6,0],[-3,18],[-9,-7],[-15,0]],[[2085,1283],[-18,-18],[-5,0],[-11,-15],[-6,-14],[-8,-7],[11,-13],[0,-19],[-7,2],[1,-21],[-4,-18],[-13,2],[-4,-6],[-2,-13],[8,-10],[5,-14],[-29,-14],[0,-11],[-4,-19],[-14,-5]],[[1985,1070],[15,-42],[-3,-2],[2,-18],[-8,-15],[-22,-19],[10,-35],[-25,-19],[5,-24],[-9,-10],[-16,-6],[3,-26],[18,6],[-1,-15],[-9,-13],[-10,-8],[-6,1],[-1,-15],[17,-5],[-4,-15],[-3,-26],[7,-5],[-1,-13],[9,2],[2,-21],[6,32],[24,-35],[-21,-33],[5,-7],[-5,-12],[10,-8],[9,-1],[1,-39]],[[1984,624],[54,32],[32,17],[60,37]],[[2882,2245],[-1,-14],[-7,-26]],[[2874,2205],[50,-19],[1,5],[10,-5],[6,16],[24,-5],[-3,-12],[14,7],[3,9],[12,6],[11,-4],[4,-8],[9,14],[2,19],[-1,20],[-3,3],[1,18],[-9,18],[3,18],[-12,-1],[-11,-6],[-3,4],[-11,-2],[-2,6],[-14,3],[-1,8],[-7,-13],[-5,3],[0,-15],[-10,-31],[-20,9],[-17,4],[-6,5],[2,-9],[-9,-25]],[[2575,1178],[16,38],[23,45],[9,1],[1,15],[4,9],[9,4],[5,15],[2,-12],[19,5],[2,-3],[28,0],[2,31],[3,-3],[36,0]],[[2734,1323],[1,21],[-18,5],[0,62]],[[2717,1411],[-22,2],[-18,54],[-21,7],[-21,38]],[[2635,1512],[-6,-16],[-7,7],[-7,-12],[-11,5],[-11,16],[0,14],[-22,4],[-39,-6],[0,-12],[-4,-1],[-17,-25]],[[2511,1486],[13,-12],[-23,-7],[-3,-17]],[[2498,1450],[7,-11],[-6,-21],[23,-16],[-7,-22],[8,0],[-1,-14],[2,-19],[-7,3],[7,-31],[-3,-10],[-17,-23],[-4,0],[1,-10],[-3,-16],[16,-18],[-3,-15],[-8,-5]],[[2503,1222],[1,-35],[7,5],[3,-19],[8,0],[-10,-26]],[[2512,1147],[59,3],[18,0],[1,10],[-18,13],[3,5]],[[2182,1192],[-5,-23],[-16,2],[2,-9],[-12,-1],[-4,-6],[-9,-26],[-5,4],[3,-16],[0,-37],[13,-3],[-5,-42]],[[2144,1035],[12,2],[0,5],[10,16],[6,47],[25,0],[-9,10],[4,11],[-2,16],[7,12],[2,-6],[6,19],[-23,25]],[[3019,1620],[-7,-1],[-11,8],[0,13],[-7,15],[-6,2],[-19,19],[-1,31],[-9,2],[-5,10],[1,16],[-11,52],[-9,2],[-6,-8],[-3,6],[-7,0],[-8,-29],[0,40],[-2,5],[4,19],[2,-3],[7,14],[-1,20],[7,9],[0,7],[-8,6]],[[2920,1875],[-5,-11],[-11,-3],[-12,5]],[[2892,1866],[5,-16],[-5,-7],[0,-40],[3,-2]],[[2895,1801],[-1,-26],[-8,-36],[20,-11],[0,-3],[-12,-14],[0,-9]],[[2894,1702],[1,-14],[4,-5],[-9,-19],[8,-11],[6,4],[1,-11],[7,-20],[3,0],[-3,-14],[0,-23],[12,2],[-2,-9],[9,0],[-3,-12]],[[2928,1570],[7,-6],[20,6],[0,7],[20,3],[25,-5],[1,-9],[13,0],[0,38],[5,16]],[[2787,2178],[14,1],[7,-5],[-8,-9],[-6,-14],[4,-13],[9,-5],[8,3],[4,-4],[-6,-18],[9,0],[6,-5],[-1,-29],[11,10],[11,-1],[-2,-11],[35,-7]],[[2882,2071],[4,25],[-28,18],[12,41],[3,16],[-4,-1],[-2,26],[2,10],[5,-1]],[[2882,2245],[-13,25],[-1,12],[7,2],[7,28],[4,5],[-6,19],[10,13],[2,13],[5,8],[-2,8]],[[2895,2378],[-8,-1],[1,14],[-2,23],[4,3],[-16,8],[0,3]],[[2874,2428],[-13,3],[0,-19],[-6,-8],[7,-2],[-7,-28],[-6,-1],[3,-9],[0,-15],[5,-27],[-22,4],[-5,-16],[0,-11],[5,-18],[-29,-7],[2,-22],[-9,-7],[8,-6],[-6,-10],[-11,-8],[5,-7],[-9,-9],[1,-27]],[[3091,1570],[-22,2],[-7,-22],[-8,-5],[-2,-17],[1,-21],[-12,-23],[-12,-13],[0,-15],[-11,-1],[-1,-9],[-12,12],[-12,-6],[1,-7],[-9,-9],[-1,6],[-11,-3],[-1,7],[-27,-12],[2,-9],[-7,-14],[-2,-9],[-9,-7]],[[2929,1395],[-24,-24],[-1,7],[-9,-5],[7,-19]],[[2902,1354],[11,12],[1,-28]],[[2914,1338],[4,4],[11,-4],[12,11],[10,-6],[31,14],[3,-14],[6,1],[-2,12],[13,3],[3,-26],[10,-4],[34,-1],[17,10],[7,-15]],[[2575,1178],[17,-5],[5,-5],[3,-18],[11,-2],[0,-19],[31,-36],[17,-18]],[[2659,1075],[3,-3],[0,17],[20,14],[6,0],[7,16],[0,31],[8,10],[0,23],[8,11],[1,16],[7,17],[-14,5],[-8,-2],[-3,9],[29,19],[1,16],[4,7]],[[2728,1281],[6,42]],[[2624,3247],[-6,-6],[-34,-12]],[[2584,3229],[12,-6],[0,-24],[7,-1],[-1,-16],[6,0],[1,-15],[-7,-7],[-9,0],[3,-14],[0,-135],[-1,0]],[[2595,3011],[0,-18],[9,-6],[-20,-94],[-24,-99],[2,-54],[0,-23],[-9,-85],[4,-15],[46,41],[7,8]],[[2610,2666],[17,14],[-12,18],[3,6],[-3,10],[-7,4],[9,20],[7,9],[6,19],[5,2],[1,20],[-8,4],[1,11],[-4,6],[-6,35],[0,28],[-3,3],[0,17],[-6,11],[10,1],[2,6],[6,-12],[16,2],[4,19],[-3,19],[5,21],[-3,14],[1,38],[-26,0],[-3,11],[0,21],[3,0],[0,155],[2,49]],[[2635,1512],[10,5],[3,15],[0,18],[-26,-10],[-2,2],[4,36],[3,1],[4,19],[8,8],[-7,0],[2,18]],[[2634,1624],[-3,5],[-9,-7],[0,-9],[-11,-2],[-3,9],[-8,4],[-15,0],[-44,-20],[2,-10],[-8,-21],[-6,12],[-10,-7],[-3,4],[-12,5],[-4,16]],[[2500,1603],[-9,8],[-10,-27],[0,-7],[7,-16],[6,-2],[-6,-24],[-1,-23],[9,0],[10,-14],[-2,-5],[7,-7]],[[2648,1739],[10,-1],[-2,14],[4,7],[7,-3],[1,14],[-11,2],[2,31],[-7,17],[2,6],[-2,15],[-4,5],[6,18]],[[2654,1864],[-5,28],[7,5]],[[2656,1897],[-1,18],[-8,-4],[0,-18],[-6,2],[2,16],[-14,0],[-3,11]],[[2626,1922],[-1,-18],[-14,15],[0,-5],[-17,-31],[-6,-28],[-3,-7],[-14,4],[-2,-44],[-5,-14],[-5,-1],[-2,-16],[-7,2],[-1,-6]],[[2914,1338],[-4,4],[-5,-11],[0,-23],[10,-8],[-5,-14],[19,2],[0,-37],[-30,0],[-6,-15],[-8,-1],[4,-12],[-5,-2],[0,-11],[-5,-9],[3,-11],[-9,-8]],[[2353,1479],[13,14],[-3,35],[-30,-23],[-3,11],[-7,-9],[-4,5],[9,14],[-9,12],[-11,-20],[-11,26],[-8,10],[-18,-5],[-3,22],[2,1],[0,43],[13,0],[0,25],[-13,0],[0,6]],[[2270,1646],[-9,-3],[-6,5],[-16,21],[-15,-21],[8,-58],[-17,-13]],[[2215,1577],[-4,-4]],[[2211,1573],[5,-2],[-6,-22],[10,-9],[-7,-7],[11,-40],[-7,2],[6,-45],[-21,-25],[14,-9],[1,-32],[10,-2],[15,22],[-3,9],[10,-11],[-5,-20],[8,-4],[1,-26],[3,0]],[[2256,1352],[9,-8],[15,22],[5,16],[-16,0],[0,16],[9,1],[-1,7],[14,0],[11,-12],[11,0],[-5,17],[26,31],[11,-17],[7,7],[-8,19],[-5,2],[-1,14],[15,12]],[[1781,1559],[3,-36],[0,-30],[-4,-21],[-9,-20],[-11,-13],[-10,0],[4,-14],[0,-41],[-5,-29],[-11,-29],[-17,-28],[-10,-12],[-17,-42],[-14,-40],[-5,-26],[-4,-30],[-5,-24],[3,-10],[5,-33],[1,-39]],[[1675,1042],[11,3],[0,-8],[9,-2],[-1,-13],[12,5],[0,-6],[-8,-3],[0,-19],[8,2],[-2,10],[14,1],[16,-5],[-5,-13],[-10,8],[-16,-41],[43,-44],[12,-23],[7,12],[6,-10],[9,16],[15,-38],[9,-10],[21,-8],[7,-25],[-1,-18],[3,6],[23,-20],[4,6],[13,-13],[-14,-13],[-6,-15],[3,-12],[0,-15],[11,-5],[-3,-6],[0,-37],[10,1],[0,-19],[6,0],[-1,-19],[3,-3]],[[1883,649],[5,-5],[23,8],[1,-6],[10,5],[1,-11],[-9,-3],[-4,-13],[2,-12],[0,-30]],[[1912,582],[72,42]],[[1985,1070],[2,12],[-9,2],[-1,61],[-6,0],[0,11],[18,1],[3,19],[-5,2],[1,30],[-1,15],[-7,11],[-6,2],[4,36],[-1,23],[-3,-2],[0,38],[-12,-5],[0,31],[-13,5],[3,16],[-10,5],[-5,16],[5,32],[16,-4],[9,30],[-4,15],[-31,-1],[1,27],[-18,0],[0,12],[-7,0],[0,-10],[-21,-7],[-24,-3],[-20,-16],[-1,5],[-14,-10],[-7,45],[3,2],[-2,34],[-41,9]],[[2610,2666],[3,-36],[-9,-2],[8,-5],[-5,-26],[15,-7],[-1,-26]],[[2621,2564],[17,1],[18,14],[12,15],[0,20],[14,11],[-2,-5],[0,-30],[5,4],[3,-7],[14,-9],[18,-4],[3,21],[25,-9],[-2,-7],[-14,-6],[-4,-16],[4,-7],[-8,-40],[23,-1],[12,9]],[[2759,2518],[29,9]],[[2788,2527],[-7,5],[-7,15],[4,6],[0,21],[-3,17],[-7,11],[-8,-1],[1,17],[-4,14],[13,0],[4,9],[-4,10],[0,12],[-18,0],[-2,28],[5,6],[3,27],[6,15],[8,1],[9,-7],[7,3],[4,17],[-4,13],[5,5],[2,16],[4,5],[-6,16]],[[2793,2808],[-2,15],[-16,-1],[-5,5],[-11,3],[2,34],[-8,-16],[-2,-12],[-6,-2],[2,10],[-6,11],[-6,21],[-8,9],[1,4],[-6,9],[5,23],[5,-1],[3,34],[-11,2],[1,10],[-13,21],[2,6],[-3,18],[17,-1],[11,10],[-12,8],[1,25],[11,2],[-9,17],[5,8]],[[2735,3080],[7,12],[-2,3],[-15,-4],[-2,-17],[-1,31],[-14,0],[0,21],[6,0],[4,21],[-4,11],[-7,3],[4,6],[-3,10]],[[2708,3177],[-2,14],[-7,4],[-9,28],[-10,0],[0,-6],[-9,0],[0,12],[-4,9],[-6,0],[0,10],[-8,14],[15,21],[3,10]],[[2671,3293],[-8,-19],[-6,-6],[-19,-11],[-4,2],[-10,-12]],[[2695,990],[-18,22],[1,15],[-13,1],[-7,9],[-16,-5],[0,10],[7,-5],[1,33],[9,5]],[[2512,1147],[-9,-25],[-11,7],[-3,12],[-7,-1],[4,-27],[-2,-10],[8,-41],[-4,-4],[-6,-28],[10,-9]],[[2492,1021],[3,5],[-5,-33],[9,-20],[25,-9],[-5,-17],[6,-44],[10,-2],[5,-14],[4,-21]],[[2544,866],[15,0],[7,2],[6,17],[11,1],[7,8],[18,5],[13,-6],[1,35],[41,-8],[7,6],[0,29],[11,-5],[6,5],[8,35]],[[2270,1646],[9,4],[18,49],[11,-1],[2,-19],[39,-13],[13,-7],[10,3],[9,-9],[16,-12],[5,4],[4,21],[5,-4],[35,7]],[[2446,1669],[-9,5],[-4,10],[-5,0],[6,16],[-8,2],[0,16],[11,9],[-1,13],[-8,25],[-1,15],[-6,9]],[[2421,1789],[-12,12],[-4,-1],[7,-9],[-5,-9],[-20,5],[9,30],[-5,11],[-12,15],[18,10],[-3,19],[-12,-10],[-3,4],[-20,2],[2,19],[-23,10],[2,16],[-17,-6]],[[2323,1907],[2,-14],[-26,-7],[-1,8],[-14,-4],[4,-28],[-14,-5],[-1,-5],[-29,-4],[-6,-31],[-2,-2],[-5,26],[-13,-7],[-1,-38],[8,-7],[-16,-12]],[[2209,1777],[-3,-12],[1,-12],[7,1],[-4,-12],[1,-16],[-9,-8],[2,-6],[-8,-10],[12,-59],[4,-4],[-6,-21],[9,-8],[0,-33]],[[2532,2175],[2,12],[-18,11],[17,40],[25,-18],[0,-8],[19,-22],[5,-12],[-1,15],[6,3],[9,29],[-3,17],[9,13],[-1,15],[2,19],[-3,19],[18,-8],[4,-8],[-3,-15],[55,-15],[4,-17]],[[2678,2245],[14,14],[14,27],[2,-12],[10,-4]],[[2718,2270],[-4,22],[14,7],[-10,6]],[[2718,2305],[-23,15],[-5,10],[1,25],[4,4],[8,-9],[1,17],[-3,33],[-6,-2],[6,22],[-4,29],[-3,-1]],[[2694,2448],[-11,-3],[3,-25],[-5,8],[-22,2],[-2,34],[-16,5],[-2,9],[-5,-2]],[[2634,2476],[-6,-3],[-2,-10],[-2,-48],[-5,18],[-14,-6],[-9,6],[-14,-10],[-26,-1],[-1,-7],[-14,-4],[-4,15],[-8,-3],[-6,16],[-6,3],[2,-17],[-4,-2],[-3,19],[-5,6],[-16,-2],[-9,14],[-1,7],[5,10],[-15,5],[-7,-13],[-14,-8],[-1,-28],[-13,3],[0,-10],[-5,-1],[-7,11],[-8,-5],[-6,2],[-8,-7],[-2,-17],[-6,-20],[-9,-3],[-3,-5]],[[2382,2381],[-13,-23],[19,3],[6,-6],[-8,-13],[11,-18],[-6,-12],[-12,5],[-2,6],[-6,-15],[6,-2],[-3,-21],[4,-3],[0,-22],[-3,0],[-1,-41],[8,2],[15,-5],[9,-8],[-4,-8],[5,-6],[22,-8],[13,3],[10,8],[10,-1],[2,-15],[10,16],[4,1],[9,-10],[7,8],[13,-6],[-1,-14],[11,2],[10,-5],[5,2]],[[2498,1450],[-8,1],[-3,11],[-10,3],[4,13],[-8,3],[2,-16],[-12,-17],[-7,12],[-1,12],[-6,2],[3,10],[-22,2],[-24,5],[-2,-17],[-13,-3]],[[2391,1471],[1,-11],[-3,-16],[12,-19],[0,-5],[-9,-36],[-5,-41],[2,-5]],[[2389,1338],[5,-12],[-1,-21],[4,0],[2,-12],[20,-21],[-1,-14],[-5,0],[0,-33]],[[2413,1225],[7,-24],[10,3],[1,12],[0,45],[6,0],[-2,-10],[12,-2],[0,11],[21,-30],[13,2],[1,-4],[21,-1],[0,-5]],[[2799,1465],[-2,11],[7,21],[-20,3],[2,14],[6,0],[3,18]],[[2795,1532],[3,12],[-16,3],[-10,25],[5,13],[-5,23],[23,-9],[-7,21]],[[2788,1620],[-9,14],[3,19],[-20,0],[0,16],[-30,0],[-9,2],[-4,-9],[-17,5],[-5,12],[-5,2],[-1,10],[4,-3],[2,14],[-18,3],[-7,-6],[0,-14],[-5,0],[-16,-11]],[[2651,1674],[0,-26],[-14,-5],[-3,-19]],[[2717,1411],[20,-2],[1,32],[9,3],[8,-15],[0,-16],[5,2],[4,14],[4,-2],[-2,38],[33,0]],[[2892,1866],[-15,3],[-11,-12],[-11,12]],[[2855,1869],[-15,-26],[-3,5],[-12,-5],[-17,7],[-6,-28],[17,-29]],[[2819,1793],[-9,-40],[18,1],[12,9]],[[2840,1763],[12,4],[7,20],[9,4],[14,17],[13,-7]],[[2391,2766],[0,-2]],[[2391,2764],[-1,-7]],[[2390,2757],[9,-12],[9,-26],[-1,-21],[11,-11],[2,-24],[4,4],[2,-12],[28,4],[2,15],[32,35],[2,15],[-4,11],[-20,70]],[[2466,2805],[-13,1],[-6,-12],[-5,5],[12,10],[0,4],[-11,-12],[-6,1],[-13,-10],[-18,-7],[-12,0],[2,-8],[-5,-11]],[[2781,3390],[-13,0],[0,-10],[-21,-1],[0,-19],[-13,-2],[0,-5],[-41,0],[-5,5]],[[2688,3358],[-4,-19],[-16,-32],[3,-8]],[[2671,3299],[10,1],[-3,7],[6,0],[-2,14],[11,-3],[0,-18],[6,0],[0,-20],[13,0],[0,-21],[20,-1],[0,-10],[6,-4],[0,-53],[-19,0],[-7,-3],[-4,-11]],[[2708,3177],[36,2],[0,-11],[8,4],[14,31],[8,10],[10,0],[0,35],[11,20],[-1,27],[4,9],[-7,0],[3,16],[10,0],[6,5],[0,34],[-10,1],[0,22],[-19,-3],[0,11]],[[2864,1183],[-7,2],[-9,-4],[-9,-14],[-4,2],[-5,32],[-3,10],[-23,-5],[-13,44],[-14,33],[-11,8],[1,-8],[-34,-6],[-5,4]],[[2695,990],[8,-9],[0,-20],[49,0]],[[2840,1763],[2,-17],[-11,-6],[11,-24],[-2,-11],[9,-18]],[[2849,1687],[0,-20],[30,2],[6,5],[9,28]],[[2352,2815],[0,0]],[[2381,2809],[0,0]],[[2352,2810],[0,0]],[[2351,2805],[0,0]],[[2389,2796],[0,0]],[[2368,2797],[0,0]],[[2369,2796],[0,0]],[[2375,2790],[0,0]],[[2377,2790],[0,0]],[[2347,2792],[0,0]],[[2339,2782],[0,0]],[[2318,2780],[0,0]],[[2339,2777],[0,0]],[[2321,2777],[0,0]],[[2321,2774],[0,0]],[[2328,2767],[0,0]],[[2299,2766],[0,0]],[[2217,2754],[0,0]],[[2634,2476],[-2,8],[3,18],[-4,3],[-1,22],[-13,13],[4,24]],[[2595,3011],[-105,0],[-23,2]],[[2467,3013],[-12,-52],[0,-20],[6,-10],[1,-36],[-2,-3],[-2,-37],[6,-9],[3,-16],[21,0],[-11,-17],[-11,-8]],[[2390,2757],[-9,-7],[0,11],[10,3]],[[2391,2766],[-6,1],[-4,14],[-10,4],[-5,14],[12,-4],[0,21],[-5,10],[-6,-11],[-7,0],[-3,-9],[-4,7],[-6,-21],[7,-8],[-8,-3],[-2,-15],[-7,-5],[-9,0],[-7,7],[-4,13],[-2,-7],[-7,-1],[-3,-12],[-6,-9],[-18,-9],[-4,-17],[-7,-10],[-11,-9],[-10,-16],[-6,-28],[-10,-12],[-1,-20],[-8,-16],[-6,1],[-3,-22]],[[2215,2594],[28,17],[3,-1],[-9,-25],[16,-27],[21,5],[7,5],[8,-3],[-2,-29],[9,-1],[11,5],[-3,-15],[19,-5],[-1,-33],[1,-26],[14,11],[5,-31],[17,-10],[-5,-31],[28,-19]],[[2386,2766],[0,0]],[[1945,1988],[14,-9],[3,5],[32,0],[16,3],[3,-38],[5,-48],[12,-25],[15,-35],[0,-12],[-10,-19],[24,-35],[6,10],[10,-15],[14,26],[10,0],[15,29],[-17,25],[3,4],[19,-27],[4,11],[6,-2],[8,-14],[-4,-9],[-8,-5],[1,-7],[22,2],[3,-9],[15,-5],[9,-29],[26,10],[8,7]],[[2323,1907],[-6,30],[15,3],[11,-6],[2,19],[-31,1],[0,16],[9,-4],[7,16],[-1,11],[22,-2],[0,2],[22,0],[-1,-11],[11,-3],[2,-10],[8,-9],[16,8],[-7,21],[17,23],[3,-14],[14,-21],[-8,-23],[25,-3]],[[2453,1951],[17,40],[8,12],[-20,14],[9,11],[4,-1],[16,20],[-2,8],[7,-5],[-4,41],[-9,13],[-5,-3],[-5,38],[12,-6],[3,5],[-7,18],[15,9],[5,-24],[6,-4],[-1,-10],[26,27]],[[2528,2154],[4,21]],[[2215,2594],[-1,-8],[-6,-1],[-15,-23],[-1,-28],[-10,-14],[-13,-9],[-15,-6],[-20,-17],[-22,-9],[0,-18],[-8,-18],[-8,-40],[-5,-12],[-9,-12],[-16,-16],[-29,-53],[10,-7],[5,-11],[-18,-28],[-9,-9],[-14,-5],[0,-10],[-6,-6],[0,-8],[-11,-13],[-3,-15],[-6,-6],[-14,0],[-4,-7],[7,-8],[-5,-17],[-2,-33],[-4,0],[6,-24],[-6,-21],[-5,-2],[-1,-13],[-8,1],[6,-32],[0,-16],[-10,-32]],[[1929,2040],[10,19],[-4,4],[0,29],[13,25],[4,23],[3,3],[2,27],[-3,5],[-1,28],[-4,22],[-4,7],[0,12],[-5,7],[0,9],[-5,11],[0,24],[6,8],[-9,0],[-7,8],[-11,-8],[-6,4],[-7,-8],[-9,-15],[-16,-1],[-2,-9],[-9,-3],[-1,-7],[-26,-20],[4,-9],[6,-3],[14,-19],[6,-17],[-1,-17],[-5,-15],[1,-30],[3,-7],[1,-32],[4,-5],[0,-17],[9,-18],[11,9],[7,-7],[9,-14],[15,0],[7,-3]],[[1846,2324],[4,13],[-3,19],[-16,2],[-3,-32],[5,-3],[13,1]],[[1929,2325],[0,0]],[[2032,2279],[0,0]],[[3085,1622],[-16,-3],[-7,8],[-29,-12],[-14,5]],[[2928,1570],[-6,-6],[-10,-3]],[[2912,1561],[3,-25],[14,2],[6,-43],[-11,-11],[-9,-13],[3,-11],[-10,-30],[6,-5],[4,5],[11,-10],[-3,-12],[3,-13]],[[2849,1687],[-14,0],[-13,-13],[-8,-1],[-3,-11],[4,-9],[-13,-26],[-1,-14],[-4,-5],[-9,12]],[[2795,1532],[13,-11],[0,25],[7,-11],[7,7],[13,5],[-1,14],[14,-2],[5,14],[22,-7],[3,11],[20,2],[4,-11],[10,-7]],[[2781,3390],[14,0],[0,4],[26,0],[0,7],[24,0],[0,14],[12,-1],[3,8],[17,37],[5,10],[23,47],[24,-28],[6,3]],[[2886,3686],[2,-29],[0,-37],[-3,-28],[-7,-27],[-11,-22],[-13,-14],[-9,-24],[-15,-17],[-13,-3],[-5,3],[-22,-10],[-15,-4],[-16,4],[-1,10],[-11,-4],[-23,-16],[-21,-37],[-5,-14],[-5,-42],[-5,-17]],[[2651,1674],[-20,12]],[[2581,1679],[2,-7],[-3,-15],[-22,-17],[-44,8]],[[2514,1648],[-4,-9]],[[2510,1639],[-10,-36]],[[2309,1001],[5,3],[6,-7],[15,4],[7,-21],[5,10],[33,11],[-1,-18],[8,0],[20,-8],[8,18],[5,-14]],[[2420,979],[18,-24],[14,31],[6,6],[4,15],[14,-15],[16,29]],[[2413,1225],[-7,4],[-9,-4],[2,-14],[11,-9],[-4,-8],[-11,9],[0,-25],[8,-7],[-12,-2],[-5,20],[-52,-18],[-2,-16],[6,-17],[-15,-33],[9,-23],[1,-12],[-9,-2],[-1,-27],[-5,-6],[-9,-34]],[[2389,1338],[-3,-2],[-2,-19],[-9,-9],[-5,4],[-12,-11],[-2,-10],[-13,-22],[-15,-13],[-2,9],[-12,0],[7,-11],[-2,-10],[-13,9],[0,-14],[-4,-12],[9,-11],[-7,-12],[-7,3],[-4,8],[-7,-4],[2,-10],[-5,-11],[-12,-17],[-1,12],[-10,-14]],[[2260,1171],[-13,-33],[15,-17],[3,1],[13,-9],[0,-10],[5,2],[3,19],[15,-2],[-5,-27],[6,-4],[4,-21],[-3,-9],[-30,-31],[-13,10],[2,-55],[7,-7]],[[2269,978],[13,-9],[5,10],[11,-6],[2,14],[-5,20],[14,-6]],[[2528,2154],[4,-20],[20,-23],[22,18],[8,25],[4,1],[2,-31],[13,7],[0,-5],[10,5]],[[2611,2131],[21,25],[8,7],[-13,32],[3,26],[-10,5],[1,-16],[-6,3],[-1,29],[2,18],[62,-15]],[[2819,1793],[-53,55],[-6,-7],[-8,0],[2,9],[-6,2]],[[2748,1852],[-10,-4],[-7,9],[-3,-5],[-7,7],[1,7],[-12,3],[-11,-15],[-27,1],[-7,6],[8,8],[-5,3],[-14,-8]],[[2544,866],[-5,-8],[12,-12],[-6,-16],[0,-12]],[[2545,818],[187,0]],[[3053,2016],[-5,-6],[0,-19],[-10,9],[-5,0],[-13,-11],[-15,-31],[0,-5],[-12,-7],[-11,12],[-13,-3],[-7,6],[-5,-10],[-3,-14],[-6,2],[-10,-14],[-1,-11],[-9,2],[4,-9],[-7,-3],[-4,-11],[-1,-18]],[[2902,1354],[-4,-11],[-16,0],[-21,16],[-11,-1],[2,-13],[-14,-28],[-17,34],[-2,36],[-6,5],[-13,2],[0,14],[-14,2],[0,8],[14,0],[-1,47]],[[2735,3080],[9,-9],[4,7],[14,2],[0,5],[-12,8],[7,9],[25,14],[6,-4],[0,-15],[18,0],[2,25],[14,7],[4,-17],[8,-4],[-1,-17],[2,-5],[14,-3],[-3,-16],[9,-5],[10,19],[-4,13],[8,0],[3,13],[-1,21],[10,2],[10,-2],[8,9],[3,-7]],[[2431,818],[0,7],[16,62],[-42,25],[15,67]],[[2269,978],[-9,-21]],[[2260,957],[4,-9],[-11,-21],[3,-7],[-2,-19],[-17,7],[-6,-31],[-7,-28],[13,0],[1,-10],[6,-14],[3,5],[11,-6],[11,0],[0,-31]],[[2269,793],[44,26],[48,0],[17,-1],[53,0]],[[2853,2449],[-1,12],[6,4],[0,27],[3,14],[-9,13],[1,22]],[[2853,2541],[-29,5],[-5,-25],[-24,-12],[-8,9],[1,9]],[[2759,2518],[11,-68]],[[2770,2450],[5,-21],[16,-1],[15,-4],[11,0],[14,-10],[9,28],[13,7]],[[2510,1639],[-9,6],[-23,-12],[4,29],[-30,22],[-6,-15]],[[2353,1479],[0,-9],[5,2],[4,-7],[9,9],[3,12],[4,-14],[12,2],[1,-3]],[[2182,1192],[-8,40],[1,10]],[[2175,1242],[-3,26],[-16,0],[-6,16],[-14,7],[0,-19],[-18,0]],[[2139,976],[13,12],[1,25],[-9,22]],[[2085,1283],[1,6],[-15,-5],[-5,46],[-1,40],[-11,36],[0,19],[19,28],[0,12],[-5,6],[-1,29],[8,0],[9,17],[-2,46],[10,5],[-1,14],[12,-3],[2,3],[8,-9],[15,35],[9,5],[4,-7],[-7,-13],[24,8],[32,0],[-10,-21],[-2,-17],[19,0],[14,10]],[[1945,1988],[-10,-8],[-13,2],[-10,7],[-4,-5],[-11,-4],[-6,-10],[-3,-15],[13,-42],[1,-20],[-4,-12],[-7,-1],[-5,-8],[0,-19],[-18,-31],[-7,-9],[-5,-17],[0,-9],[-9,-19],[-9,-7],[-2,-17],[-4,-7],[-2,-16],[-14,-29],[0,-19],[-8,-22],[-12,-5],[-4,5],[-7,-8],[3,-10],[-1,-18],[3,-11],[-3,-31],[-6,-14]],[[1389,706],[4,-3],[0,-37],[-2,-71],[6,-23],[40,-142],[0,6],[16,176],[21,-7],[16,67],[-1,-105],[-17,-55],[8,-1],[22,-28],[11,-60],[3,0],[4,-13],[10,3],[4,-16],[-10,-5],[-10,-2],[10,-32]],[[1524,358],[44,25]],[[1568,383],[-24,87],[20,14],[6,-21],[19,69],[27,-1],[-2,27],[20,4],[-1,14],[32,-2],[6,5],[0,14],[4,14],[6,-3],[14,41],[-14,13],[8,21],[-8,41],[23,2],[0,33],[7,19],[22,-22],[-8,36],[1,3],[23,-32],[0,40],[11,3],[-2,21],[13,3],[3,-20],[24,0],[0,-15],[3,-5],[10,0],[0,-20],[-10,-27],[0,-9],[13,-15],[0,-30],[21,0],[3,-13],[14,0],[0,-9],[9,0],[4,7],[3,-7],[0,-11],[15,-3]],[[1675,1042],[0,-21],[-8,-31],[8,23],[9,-14],[3,-11],[0,-17],[-4,-18],[-3,-26],[-6,-24],[-24,-16],[-9,-14],[-17,0],[-27,-14],[-40,-13],[-24,-6],[-1,-12],[-12,-5],[-9,0],[-7,-9],[9,-2],[1,-13],[-4,-23],[-6,-14],[2,-25],[-12,-24],[-30,-22],[-3,-8],[-8,0],[-13,-12],[-3,-7],[-5,5],[-9,-11],[-11,3],[-15,-18],[2,32],[5,8],[-8,10],[-2,11],[-5,2]],[[2793,2808],[20,-4],[5,15],[1,15],[9,14],[10,6],[-6,6],[9,8],[4,32],[1,20],[3,-6],[16,-2],[12,8],[3,-27],[13,21],[13,-10],[3,-28],[3,-12],[-3,-13],[11,-15],[8,26],[-1,17],[2,10],[8,0],[1,-6],[14,-14],[6,20],[4,-3],[10,-35],[4,-3],[1,-14],[8,3],[0,-10],[8,3],[0,-17]],[[2514,1648],[14,51]],[[2548,1763],[-23,3],[-5,9],[-33,35],[-1,10],[-11,2],[1,12],[-8,0],[-2,9],[-7,-9],[0,11]],[[2459,1845],[-15,-38],[-7,-8],[-5,1],[-11,-11]],[[2853,2541],[15,11],[10,47],[11,-3],[-1,9],[7,-7],[3,8],[8,0],[4,-7],[7,11],[7,-8],[11,20],[-1,3],[13,10]],[[3109,2411],[-7,13],[-13,11],[-3,-2],[-4,19],[-13,2],[-8,6],[-2,-7],[-15,-5],[-9,-6],[-8,-13],[0,-15],[-13,-14],[-9,2],[0,12],[4,14],[-9,2],[-8,-24],[-14,14],[-9,-3],[-7,-16],[-17,2],[-3,-8],[-18,1],[0,-23],[-9,2],[-3,10],[-17,-7]],[[2882,2071],[-1,-21],[5,-2],[-6,-21],[-18,-43],[-8,-2],[-21,31],[-4,-6],[-14,7],[2,-27]],[[2817,1987],[0,-15],[12,3],[4,-27],[7,-8],[6,14],[2,-17],[9,-9],[-2,-12],[7,-7],[-3,-34],[-4,-6]],[[2763,2442],[1,14],[-16,21],[-2,-6],[-5,8],[-17,-23],[0,-8],[-12,4],[-2,6],[-8,-4],[-4,12],[-6,1],[2,-19]],[[2718,2305],[5,11],[8,6],[16,6],[8,22],[0,32],[13,26],[2,8],[-9,5],[-2,19],[4,2]],[[1177,570],[17,-1],[7,2],[1,12],[-6,3],[-19,-16]],[[1134,134],[18,9]],[[1152,143],[0,1]],[[1152,144],[28,14],[119,70],[61,34],[29,18],[17,9],[118,69]],[[1389,706],[-5,-5],[-1,23],[-40,0],[-15,-9],[-9,-11],[-13,-8],[-18,-24],[-3,-11],[-8,-4],[-10,-12],[-18,-13],[-6,-13],[-7,-1],[-20,-36],[-9,-11],[-11,-6],[-23,2],[-11,-9],[-11,-26],[-9,-2],[-6,4]],[[2459,1845],[4,28],[0,33],[10,-5],[-10,27],[-5,2],[-5,21]],[[2748,1852],[-13,20],[7,16],[2,23],[3,7],[6,-2],[5,7],[9,25],[4,21],[20,-11],[13,7],[-7,17],[11,-1],[9,6]],[[2787,2178],[-8,-11],[1,-7],[-12,6],[-3,-6],[-33,-17],[-6,-14],[-7,10],[0,-12],[-11,-16],[-9,-2],[-4,7]],[[2695,2116],[-1,-22],[-6,-67],[-2,-39],[-14,-27],[-9,-5],[-5,-8],[0,-16],[7,-9],[9,-5],[1,-7],[-13,-14],[-6,0]],[[2256,1352],[-1,-12],[12,-12],[-3,-6],[-13,-11],[-6,0],[-3,-9],[1,-12],[6,-21],[-8,-11],[-9,-4],[5,-17]],[[2237,1237],[11,-28],[4,-2],[4,-26],[4,-10]],[[2431,818],[19,1],[76,0],[19,-1]],[[2260,957],[-13,-25],[-6,7],[4,8],[-12,0],[-1,20],[22,5],[-3,18],[-19,-7],[0,49],[-21,0],[-7,-13],[2,-14],[-6,-5],[11,-24],[-7,-11],[-10,-31],[-10,2],[-1,15],[-11,-11],[12,-12],[-2,-8],[-8,7],[-9,-6],[6,-48],[-29,-10]],[[2130,710],[45,26],[94,57]],[[2874,2428],[1,17],[-9,4],[-13,0]],[[2770,2450],[-7,-8]],[[2718,2270],[-4,-15],[-7,6],[-5,-19],[8,-6],[-7,-15],[-3,-23],[0,-28],[-12,-12],[5,-10],[-3,-29],[5,-3]],[[2175,1242],[62,-5]],[[2626,1922],[-1,19],[15,3],[2,30],[5,8],[12,-19],[0,97],[7,0],[-9,11],[4,5],[-23,1],[-10,10],[-12,-7],[-5,51]],[[1568,383],[113,67],[68,37],[56,34],[47,25],[60,36]],[[2671,3299],[0,-6]],[[2584,3229],[-10,-2],[-18,-10],[-9,-11],[-25,-45],[-15,-15],[-13,-6],[-12,3],[-14,-10],[-6,-8],[-1,-20],[5,-48],[1,-44]],[[8650,8287],[0,146],[-1,18],[1,42]],[[8650,8493],[-14,0],[0,-23],[-8,-2],[0,-7],[-11,4],[-15,-1],[0,-13],[-12,-9],[1,-22],[-5,0],[-5,-9],[-1,8],[-10,4],[-4,9],[-2,-23],[-12,-1],[-8,6],[0,6],[-9,1],[-1,-22],[-11,-12],[-16,3],[-12,-12],[3,-12],[-14,4],[-8,19],[-5,1]],[[8471,8390],[-4,-6],[-1,-24],[3,-12],[-2,-7],[-1,-26],[-14,-2],[-13,5],[12,9],[-4,8],[-8,-8],[-8,16],[-9,-4],[-1,-37],[11,-30],[-2,-10],[4,-17]],[[7853,7987],[-5,21],[6,6],[8,14],[4,15],[-4,7],[5,16],[-4,12],[10,6],[3,8],[6,-3],[0,12],[4,7]],[[7886,8108],[2,15],[10,6],[5,13],[6,-3],[5,14],[-3,5],[5,10],[-5,8],[13,14],[2,9]],[[7921,8217],[-12,-3],[-10,12],[-1,-15],[-5,-12],[-13,5],[-27,-1],[-9,3],[0,9],[-15,-1],[0,-15],[-10,-3],[3,-6],[0,-25],[-23,0],[-1,-23],[-15,1],[0,17],[-4,-2],[2,-10],[-6,-4],[-13,-4],[-6,-6],[-10,6],[-10,0],[-7,-14],[-1,-18],[-15,8],[0,-7],[-11,7],[-9,10],[-1,-11],[10,-10],[-2,-16],[-5,-5],[-12,7],[-11,-13],[-5,11],[-8,-5]],[[7659,8084],[-1,-7]],[[7658,8077],[37,-18],[11,-7]],[[7706,8052],[0,0]],[[7706,8052],[37,-20],[5,0]],[[7748,8032],[1,-1]],[[7749,8031],[2,-3],[25,-14]],[[7776,8014],[1,-1]],[[7777,8013],[54,-31],[18,-8]],[[7849,7974],[4,13]],[[8226,7946],[5,17],[-12,19],[13,9],[1,8],[11,17],[-7,12],[23,8],[2,13],[-15,0],[-5,-4],[-4,8],[-8,0],[2,11],[-6,11],[6,3],[-4,13],[2,15],[10,9],[-2,5]],[[8238,8120],[-6,-4],[-11,9],[-8,-5],[-4,-15],[-9,1],[6,9],[1,8],[-16,16],[-8,-3],[1,-6],[-14,-18],[2,-11],[-11,2],[3,12],[-8,24],[-1,18],[-17,0],[0,-4]],[[8138,8153],[-4,-6],[1,-27],[-10,-14],[-6,6],[-3,-15],[-8,-2],[-8,-8],[11,-18],[-1,-14],[6,-22],[-13,-3],[-22,25],[-6,-23],[-8,-14],[-5,1],[-7,-8],[-5,10]],[[8050,8021],[-16,-16],[-3,25],[-22,-3],[0,-6]],[[8009,8021],[6,-45]],[[8015,7976],[-7,-10],[-15,0],[-10,-10]],[[7983,7956],[2,0]],[[7985,7956],[0,0]],[[7985,7956],[0,0]],[[7985,7956],[1,0]],[[7986,7956],[11,6],[22,0],[27,-5],[14,-8],[21,-17],[14,-22],[8,-17],[11,-31],[5,6],[14,-3],[20,-6],[30,-14]],[[8138,8153],[-4,7],[-6,-10],[-9,14],[7,9],[17,5],[3,7],[-3,19],[-7,-8],[-2,8],[-7,2],[-8,19],[-11,2],[-5,7]],[[8103,8234],[-6,1],[-5,16],[-15,-6],[-10,3],[-7,28],[-5,1],[-2,21],[-6,4],[-3,-8],[-8,3],[-1,7],[2,14]],[[8037,8318],[2,9],[-7,-7],[-16,7],[5,2],[-2,10],[-9,-8],[5,-9],[-11,-11]],[[7946,8213],[-10,-6],[17,-3],[9,-6],[1,-14],[15,22],[12,-11],[7,0],[0,-16],[11,-8]],[[8008,8171],[1,-7],[6,0],[4,7],[0,13],[14,-5],[0,-9],[7,5],[6,-11],[-4,-16],[7,0],[-1,-11],[4,-26],[6,-5],[-4,-8],[9,-14],[-2,-9],[8,-11],[-6,-6],[0,-16],[-13,-21]],[[7980,8045],[5,7],[-3,14],[-8,11],[-5,-7],[-9,0],[-7,10],[1,6],[-8,15]],[[7946,8101],[-5,7],[-6,-7],[-5,5],[-1,-12],[-7,-2],[-7,8],[0,-16],[-5,-12],[-21,37],[-3,-1]],[[7853,7987],[6,-14],[11,15],[8,-8],[1,-15],[19,3],[5,-5],[10,9],[13,22],[1,25],[-6,9],[9,0],[-1,-9],[14,2],[3,-5],[11,3],[8,9],[1,11],[6,7],[8,-1]],[[7946,8101],[13,8],[7,0],[11,10],[-1,7],[-8,13],[4,7],[17,-2],[11,9],[7,1]],[[8007,8154],[1,17]],[[8471,8390],[-3,13],[-7,14],[6,36],[-9,20],[0,12],[-8,3]],[[8389,8242],[14,-23]],[[7822,8550],[-10,-3],[3,-9],[-14,-15],[-5,-11],[6,-17],[7,0],[4,-8],[-1,-11],[4,-18],[-2,-11],[4,-2],[-1,-11]],[[7817,8434],[0,0]],[[7817,8434],[3,-8],[-11,-3],[-8,-10],[-7,-19],[-12,-14],[0,-21],[-9,2],[0,-8],[-12,0],[0,-8],[-6,2],[-1,-8],[-15,0],[1,-20],[-17,3],[-8,-11],[-5,-40],[-5,3],[-16,-3],[-1,-14],[-9,5],[-6,-4],[1,-16],[-3,-13],[0,-23]],[[7671,8206],[9,-9],[-1,-12],[-5,-1],[-1,-14],[2,-12],[-6,-13],[5,-5],[-5,-9],[-2,-33],[-8,3],[0,-17]],[[8114,8374],[-11,-2],[-13,14],[-8,-11],[-16,6],[-11,-3],[-1,-17],[-7,-8]],[[8047,8353],[-5,-28],[7,0],[1,-10],[-13,3]],[[8103,8234],[9,15],[3,16],[-2,9],[3,10],[-1,16],[4,-3],[-3,17],[-2,-1],[1,22],[-6,14],[5,15],[0,10]],[[8009,8021],[-4,1],[1,16],[-3,5],[2,16],[-9,11],[5,14],[4,-1],[2,12],[-2,17],[5,5],[-1,11],[4,4],[-6,22]],[[7980,8045],[5,-10],[3,-16],[-2,-12],[2,-13],[5,-6],[11,-3],[11,-9]],[[8286,8290],[-3,-19],[-9,-11],[2,-18],[-7,-4],[-8,13],[-24,-16],[2,-5],[-9,-3],[2,-20],[-2,-14],[3,-29],[-4,-7],[-7,-1],[12,-17],[4,-19]],[[8153,8428],[4,-11],[-7,-2],[-1,-12],[-12,-11],[-8,3],[1,-14],[-3,-9],[-13,2]],[[7977,7956],[1,0]],[[7978,7956],[1,0]],[[7979,7956],[0,0]],[[7979,7956],[1,0]],[[7980,7956],[1,0]],[[7981,7956],[1,0]],[[7982,7956],[1,0]],[[7983,7956],[0,0]],[[7983,7956],[0,0]],[[7983,7956],[0,0]],[[7849,7974],[39,-14],[33,-2],[32,0],[24,-2]],[[8067,8462],[3,-4],[-3,-18],[-8,-7],[-1,-26],[-4,-12],[-9,-6],[-2,-26],[4,-10]],[[8650,8493],[0,90],[-88,0]],[[8562,8583],[-4,0]],[[8558,8583],[-51,0]],[[6379,4715],[0,22],[23,3],[1,8],[29,-1],[1,22],[-17,22],[4,13],[11,-12]],[[6431,4792],[1,34],[5,15],[-11,0],[0,20],[-7,0],[-5,15],[23,26],[-15,0],[0,4],[-26,0],[-3,32],[-18,0],[3,8],[-1,18],[-12,7],[-1,17],[11,-5],[3,7],[-16,6],[0,10],[-9,4],[-67,59]],[[6286,5069],[-15,13],[-4,-15],[2,-5],[-2,-26],[17,-16],[-3,-18],[-9,-8]],[[6272,4994],[3,-11],[4,-51],[4,-12],[8,-4],[-2,-8],[8,-7],[1,-10],[6,-6],[14,-2],[0,-5],[8,1],[7,-18],[15,-75],[-1,-13],[3,-33]],[[6350,4740],[13,3],[0,-6],[16,-22]],[[6510,5367],[1,57],[2,41],[0,71],[-1,34],[-7,57],[-11,40],[-2,14],[-6,19],[-4,39],[0,21]],[[6482,5760],[-16,-16],[1,-7],[-4,-33],[-6,-2],[-7,6],[1,-10],[-8,7],[2,-8],[-8,3],[-2,13],[-8,-3],[-8,-56],[3,-30],[-12,-2],[-7,3],[-2,22],[-14,8],[-15,-3],[-3,38],[-11,4],[-3,-5],[2,-21],[-7,-6],[1,-15],[-5,-7]],[[6346,5640],[-3,-14],[-9,-6],[-2,5],[-1,-24],[5,-5],[-10,-2],[8,-17],[-5,-2],[5,-72],[-5,-13],[-7,-9],[11,-12],[0,-13]],[[6333,5456],[6,-9],[-8,-11],[3,-11],[8,11],[13,-49],[9,5],[1,-10],[6,-5],[0,-21]],[[6371,5356],[2,-17],[-2,-13],[8,-6],[18,5],[1,-11],[10,5],[7,10],[12,5],[9,-5],[6,22],[13,7],[4,-10],[14,-5],[-1,9],[9,1],[2,-17],[13,-5],[3,25],[4,10],[7,1]],[[6482,5760],[0,38],[4,44],[9,39]],[[6495,5881],[-12,2]],[[6483,5883],[-14,-2],[-16,2],[-7,-6]],[[6446,5877],[-16,-13],[-15,6],[-4,-12],[-6,1],[-2,-14],[-25,-18],[-3,-11],[1,-13],[-7,-1],[-4,6],[-4,-6],[-4,10],[-6,3],[-5,-11]],[[6346,5804],[-6,-8],[0,-15],[-6,-1],[2,-26],[-7,-1],[4,-50],[6,2],[3,-22],[0,-27],[4,-5],[0,-11]],[[6085,5837],[3,-12],[-5,-32],[-7,-29],[-5,-6],[-7,-25],[-1,-12],[-7,-2]],[[6056,5719],[6,-38],[-3,-9],[11,-1],[2,-15],[5,-3],[1,-11],[5,0]],[[6083,5642],[2,8],[10,3],[2,25],[5,39],[9,-4],[7,14],[-4,6],[18,52],[3,25],[7,1],[4,45],[5,0]],[[6302,4453],[5,13],[-4,9]],[[6303,4475],[-5,9],[-14,6],[0,15],[-13,-3],[-1,-7],[-9,3],[-4,12],[-7,-2],[1,10],[-10,7],[-25,35]],[[6216,4560],[-1,11],[-26,-13],[-17,4],[1,-15],[-27,-7],[0,6]],[[6146,4546],[-10,-4],[0,-42],[-14,-15],[1,19],[-25,-7],[-13,10],[-13,-3],[0,-4],[-14,-6]],[[6165,4349],[0,15],[7,0],[0,8],[6,-8],[0,10],[10,-4],[17,5],[-1,16],[-4,-4],[-2,17],[13,7],[12,-18],[28,8],[-2,33],[-3,7],[15,5],[3,-4],[-2,24],[4,0],[1,-12],[6,10],[8,0],[8,-7],[14,1],[-1,-5]],[[5923,5298],[-3,23],[-3,0],[0,43]],[[5917,5364],[-13,0],[-6,36],[-2,28],[-4,-9],[1,-11],[-8,-1],[0,15],[-16,-5],[1,-25],[-7,6],[-4,-5],[-10,4],[3,27],[5,6],[-4,9],[-4,-10],[-10,9],[-3,-22],[-13,-32],[-5,-1],[0,17],[-18,2],[1,13],[4,-1],[0,12],[5,-2],[-8,32],[-17,7]],[[5823,5244],[7,3],[6,-21],[11,-11],[-3,23],[11,7],[9,-16],[7,22],[9,1],[0,-15],[11,-5],[6,-10],[11,16],[6,16],[6,45],[3,-1]],[[6223,3725],[-11,19],[7,8],[-8,0],[-7,15],[5,35],[-12,9],[0,10],[7,5],[1,18]],[[6115,3805],[14,-62],[10,-43],[0,-43]],[[6139,3657],[7,-5],[7,6],[3,7],[9,-6],[7,5],[5,-7],[9,5],[3,18],[12,-1],[4,18],[12,11],[-5,6],[9,1],[2,10]],[[6111,5220],[-2,-12],[3,-9],[21,-26],[6,-12],[-2,-3],[4,-18]],[[6141,5140],[6,5],[10,0],[3,-6],[10,-4],[3,-8],[6,0],[7,-13],[19,-12],[0,-4]],[[6205,5098],[8,2],[5,-12],[-4,-8],[-8,-2],[4,-24],[8,19],[-4,-24],[0,-15],[4,-4],[-2,-16],[3,0],[0,-26],[6,4],[19,-7],[-1,-5]],[[6243,4980],[5,-8],[0,15],[3,10],[6,-5],[10,9],[1,-17],[4,10]],[[6286,5069],[8,24],[-2,29],[-11,-2],[-3,43],[6,6],[-8,15],[14,23],[6,3],[-4,7],[12,22],[-2,9],[5,8],[-8,17],[-2,17],[12,3],[1,-4],[12,3],[4,15],[-3,26],[20,29],[6,-8],[9,-1],[4,8],[9,-5]],[[6333,5456],[-8,-6],[-3,16],[-7,-4],[6,-35],[-11,-17],[-4,3]],[[6306,5413],[3,-10],[-18,-16],[-1,-27],[-15,-7],[3,-19],[-19,4],[-3,13],[-10,8],[0,-7],[-15,11],[-5,39],[-17,13],[0,-35],[-7,1],[0,-21],[6,0],[-2,-55],[-5,-5],[-30,1],[1,-20],[-7,-2],[3,-14],[6,2],[2,-27],[-13,-1],[1,-10],[-4,-16],[-9,5],[-8,-16],[-10,9],[-3,-9],[-8,13],[-4,-3],[-7,8]],[[6506,5916],[-9,5],[-8,12]],[[6489,5933],[-7,-10],[3,-36],[-2,-4]],[[6495,5881],[4,18],[7,17]],[[6350,4740],[-18,-5],[1,-11],[-5,-1],[-2,10],[-20,-5],[1,-10],[-31,-8],[-1,9],[-23,-6],[-19,1]],[[6233,4714],[-3,-21],[2,-35],[-13,-7],[0,-30],[10,-24],[1,-30],[-4,5],[-10,-12]],[[6303,4475],[6,15],[6,-4],[3,11],[5,-4],[-1,14],[4,3],[0,13],[7,-2],[6,34],[0,27],[5,-1],[2,15],[-10,25],[6,6],[-3,5],[8,13],[12,-5],[9,-14],[12,24],[4,-3],[6,12],[3,-5],[13,38],[-14,18],[-13,-4],[0,9]],[[6085,5603],[-8,-2],[4,-13],[-3,-25],[-6,-5],[-1,-15],[-14,4],[-26,-12],[-13,-8],[-9,-21],[0,-24]],[[6009,5482],[4,-45],[12,-2],[12,9],[1,-7]],[[6038,5437],[26,-4],[0,13],[12,0]],[[6076,5446],[1,12],[5,8],[1,13],[5,4],[0,10],[6,7],[7,0],[-2,9],[20,6],[5,7],[0,31],[-4,3],[-4,36],[1,14]],[[6117,5606],[-2,-5],[-16,5],[-7,-13],[-7,-1],[0,11]],[[6346,5804],[-9,1],[2,13],[-5,9],[4,3],[0,15],[-12,2],[-1,-10],[-10,10],[2,-14],[-4,-5],[-3,13],[-10,-7],[-2,-11],[-4,11],[-3,-8],[-8,0]],[[6283,5826],[2,-13],[-6,-4],[-4,7],[-7,-8],[-3,-29],[5,-6],[1,-11],[-9,-2],[1,-8],[7,-1],[-3,-8],[-35,-13],[-10,-11],[-1,14],[-24,-2],[-6,-4],[-10,14],[-6,1],[-6,-13],[-7,-2],[3,-47],[6,-7],[3,-26],[-5,1],[1,-18],[-7,-5],[1,7],[-8,2],[-4,-12]],[[6152,5622],[10,-5],[1,-17],[-6,-5],[-4,11],[3,-24],[5,-10],[9,0],[1,-13],[18,5],[8,-69],[-6,4],[1,-27],[5,-8]],[[6197,5464],[2,19],[9,2],[0,-5],[11,1],[0,13],[9,2],[-1,6],[13,2],[1,-14],[22,-1],[2,-25],[16,-2],[12,6],[14,-46],[-1,-9]],[[6076,4922],[10,2],[9,6],[-1,25],[4,3],[1,-20],[3,2],[0,21],[18,18],[8,4],[-2,10],[19,2],[14,34],[17,34],[-3,0],[14,27],[4,-6],[14,7],[0,7]],[[6141,5140],[-9,-8],[0,-8],[-25,-45],[-16,-27],[-11,-27],[-9,-9],[-5,-13],[3,-2],[-8,-20],[-15,2],[-3,10],[-6,-1],[-5,15],[-7,10],[5,2],[-7,6],[-18,2],[6,37]],[[6011,5064],[-8,-2],[0,8],[-12,-2],[-12,2],[-4,-29]],[[5969,4991],[13,9],[4,11],[4,-23],[16,-12],[8,-10],[20,-2],[2,-6],[19,0],[9,5],[2,-20],[-7,-1],[0,-11],[6,-14],[11,5]],[[5965,3151],[3,7],[8,-5],[7,10],[-1,18],[4,5],[2,17],[-5,42],[3,13],[-8,10],[4,25],[8,0],[13,27],[-5,5],[5,17],[13,4],[5,7],[-3,20],[4,7],[12,4],[6,24],[5,16],[1,23],[10,12],[0,17],[2,22],[8,18],[3,35]],[[6069,3551],[-23,3],[-3,-11],[-28,8],[0,7],[-19,-1]],[[5885,3142],[6,-3],[40,3],[4,7],[30,2]],[[6272,3741],[-5,11],[-4,48],[-4,8],[0,34],[-6,0],[0,12]],[[6223,3725],[4,7],[17,-10],[11,0],[0,12],[4,5],[7,-7],[6,9]],[[6084,4871],[-2,22],[-4,-1],[-2,15],[3,1],[-3,14]],[[5936,4752],[20,6],[13,1],[2,5],[17,-3],[3,3],[1,-17],[14,3],[22,-2],[17,-4]],[[6045,4744],[7,2],[7,12],[3,14],[12,13],[4,16],[7,6],[11,15],[-1,7],[13,23],[-26,-1],[-2,16],[4,4]],[[6011,5064],[15,3],[6,18],[-13,10],[7,24],[-1,24],[12,5],[-5,9],[0,12],[9,-6],[-1,18],[-8,-2],[2,45],[8,31],[2,24],[9,-1],[11,5],[8,16]],[[6072,5299],[-10,-1],[-3,14],[4,33],[14,25],[-13,-1],[0,23],[-5,11],[-5,2],[2,20],[-18,12]],[[6009,5482],[-17,0],[-3,-17],[-12,-3],[0,14],[-4,-3]],[[5973,5473],[0,-11],[-6,-11],[-3,-71],[-10,0],[0,-12],[11,5],[2,-5],[-8,-43],[5,-4],[0,-32],[8,-3],[-16,-4],[-5,-15],[-3,0],[0,17],[-10,0]],[[5938,5284],[-18,-95],[-10,-29],[-2,-13],[7,-1],[4,-12],[-8,-28],[3,-11]],[[6243,4980],[-5,-34],[-9,-14],[19,-25],[-17,7],[-12,-32]],[[6219,4882],[-10,-98],[0,-22],[2,-20],[13,3],[9,-31]],[[6197,5464],[0,-7],[-41,-11],[-10,-8],[-16,-7],[3,-10],[-8,-1],[-3,19],[-12,0],[0,12],[-15,-6],[-19,1]],[[6072,5299],[10,0],[-7,-7],[5,-20],[4,0],[1,-22],[8,1],[-1,-18],[10,-1],[9,-12]],[[5994,4565],[-12,65],[-6,12],[3,2],[-1,33],[-6,1],[-7,-13],[-13,6],[-11,-3],[1,8],[-9,12],[-3,-1],[-3,27]],[[6117,5606],[20,6],[1,9],[14,1]],[[6283,5826],[-5,-1],[-3,10],[-9,6],[-14,3],[-9,-7],[-17,1]],[[6083,5642],[0,-8],[9,3],[-7,-34]],[[6590,4396],[-10,-20],[-38,-81],[-16,-27],[0,6],[-28,-44],[1,-3],[-14,-11],[1,-4],[-10,-13],[-7,9],[-13,0]],[[6456,4208],[16,-30],[0,-10],[7,0],[6,-15],[-1,-10],[-5,-3]],[[6479,4140],[42,0],[0,-172],[-22,-44],[-6,0],[-11,-14],[-18,-9],[0,-17],[3,0],[0,-45],[2,-9]],[[6469,3830],[4,-4],[8,7],[8,2],[11,-4],[4,15],[9,-4],[-1,7],[9,-3],[8,4],[0,-6],[19,10],[2,-7],[3,17],[8,11],[2,13],[7,-3],[5,9],[-5,4],[10,1],[8,28],[6,-7],[2,11],[14,-2],[3,19],[10,5],[13,0],[4,-22],[-6,1],[4,-15],[-4,0],[12,-14],[5,7],[3,-8],[12,-3],[0,-8],[37,-6],[4,4],[0,54],[-7,67],[-7,45],[-9,32],[-5,11],[-28,87],[-4,6],[-16,56],[-3,6],[-13,43],[-24,93],[-1,7]],[[6390,4171],[29,0],[0,12]],[[6419,4183],[0,45],[-6,0],[0,23],[-10,-3],[0,30],[-20,-3],[-3,22],[-8,-1],[-4,16],[-9,7],[0,13],[-21,0],[-3,29],[-6,-1],[-1,14],[-11,4],[-5,29],[-6,2],[12,14],[-1,6],[-8,2],[1,8],[-6,3],[-2,11]],[[6300,4148],[0,-5],[19,5],[0,16],[15,0],[0,-5],[10,2],[0,-8],[11,-13],[7,16],[0,15],[28,0]],[[6069,3551],[0,13],[16,11],[8,21],[-3,21],[-5,4],[7,13]],[[6092,3634],[-6,7],[3,11],[-4,2],[1,26],[-1,14],[0,23],[-20,-2],[-6,5]],[[6092,3634],[3,8],[8,0],[7,-9],[8,12],[7,0],[4,-5],[8,4],[2,13]],[[5938,5284],[-11,-1],[-4,15]],[[5893,2921],[5,14],[5,-7],[12,10],[-4,7],[11,6],[2,-9],[11,2],[4,11],[-1,10],[14,-2],[4,17],[4,2],[-4,43],[14,2],[0,15],[-5,8],[3,17],[-1,24],[-5,13],[1,11],[-9,7],[1,11],[10,-1],[3,5],[-3,14]],[[6026,5739],[30,-20]],[[5952,5663],[-8,-11],[10,-11],[-2,-20],[13,-8],[-6,-10],[2,-29],[-6,-15],[5,-11],[13,-16],[-4,-17],[7,-3],[1,-10],[-9,-5],[-1,-14],[-5,0],[3,-14]],[[5965,5469],[8,4]],[[6084,4871],[26,16],[28,19],[1,-27],[-4,-9],[15,2],[0,-10],[38,11],[-1,-2],[32,11]],[[5965,5469],[-14,-16],[-17,1],[1,-18],[-2,-14],[-10,1],[-5,-28],[11,1],[-10,-16],[6,3],[-8,-19]],[[6389,3833],[-1,12],[5,2],[-5,30],[0,149],[2,11],[-1,54],[-6,0],[10,26],[-2,1],[-1,53]],[[6272,3741],[8,-2],[6,13],[0,-11],[13,0],[-1,12],[19,24],[16,-1],[-1,12],[8,19],[4,-10],[8,3],[0,9],[6,14],[10,-2],[7,12],[5,-2],[0,-9],[9,11]],[[6467,3832],[-2,1],[-1,49],[-5,17],[0,23],[-2,19],[6,0],[0,31],[-4,0],[-1,27],[-4,0],[0,20],[-4,1],[0,57],[7,0],[0,61],[22,2]],[[6456,4208],[-2,0],[0,-25],[-10,0],[0,-10],[-15,0],[0,10],[-10,0]],[[6389,3833],[7,-5],[18,-2],[4,12],[8,2],[1,-11],[6,3],[11,-6],[2,9],[8,-6],[5,6],[8,-3]],[[6146,4546],[6,0],[-3,29],[13,27],[-4,3],[12,26],[6,25],[3,40],[30,-13],[1,26],[6,-4],[11,8],[6,1]],[[6045,4744],[12,-32],[2,0],[2,-45],[6,-5],[-1,-14],[10,-8],[-17,-1],[3,-16],[3,-59],[-6,3],[-4,-22]],[[6590,4396],[-11,48],[-20,114],[-4,31],[-6,32],[-5,34],[-6,51]],[[6538,4706],[-19,1],[-2,15],[-7,6],[-1,8],[-9,6],[-7,0],[-7,-11],[-45,51],[-10,10]],[[6538,4706],[-4,35],[-1,24],[-3,25],[-3,51],[-3,59],[0,21],[-3,48],[0,121],[-1,45],[-3,45],[-4,84],[-2,22],[-1,36],[0,45]],[[6489,5933],[0,10],[-6,2],[-12,-8]],[[6471,5937],[-13,-17],[1,-10],[-8,-12],[-8,-4],[-5,3],[0,-10],[5,5],[3,-15]],[[6467,3832],[2,-2]],[[6379,7467],[7,-2]],[[6386,7465],[5,-1]],[[6391,7464],[-4,8],[2,10]],[[6389,7482],[-9,-2]],[[6380,7480],[-1,-13]],[[6369,7465],[-4,0]],[[6365,7465],[0,-8],[9,4]],[[6374,7461],[-5,4]],[[6380,7480],[-1,6]],[[6379,7486],[-3,3]],[[6376,7489],[-3,-20],[-4,-4]],[[6374,7461],[5,6]],[[6406,7385],[-5,10],[-10,-7],[-5,11],[-7,3]],[[6379,7402],[0,-8],[-5,1],[-13,-19]],[[6361,7376],[1,-14],[-3,-12],[9,-4],[14,4],[10,20],[4,-8],[4,15],[6,8]],[[6531,7452],[-2,14]],[[6529,7466],[-8,6],[5,8],[-3,8],[-8,-5],[0,-11],[-13,3],[-10,-17],[-7,-6],[-5,9]],[[6480,7461],[-3,-4],[-1,-33],[-3,-1]],[[6473,7423],[8,-4]],[[6398,7447],[-7,17]],[[6386,7465],[2,-7],[0,-32],[-8,4]],[[6380,7430],[0,-14]],[[6380,7416],[0,-6]],[[6380,7410],[11,9],[1,17],[7,-6],[4,8],[5,-8],[11,-1]],[[6419,7429],[-4,15],[-4,3]],[[6411,7447],[-13,0]],[[6283,7339],[5,17],[11,4],[0,16],[-3,-2]],[[6296,7374],[-15,2],[-3,-14],[-3,8],[-10,6],[-19,20],[-1,-8],[-5,6],[-4,14],[2,4]],[[6526,7500],[10,-14],[-7,0],[6,-15],[-6,-5]],[[6494,7500],[5,-22],[-5,-9],[-11,-2],[-3,-6]],[[6418,7471],[0,9],[-5,-5],[-4,14]],[[6409,7489],[-1,0]],[[6408,7489],[-8,-12],[-1,-8]],[[6399,7469],[19,2]],[[6371,7508],[-1,-19],[6,0]],[[6379,7486],[4,6],[18,11],[0,-6],[12,6],[0,-7]],[[6413,7496],[1,-3],[10,15]],[[6424,7508],[-8,3],[1,8],[-9,9],[-16,-6],[-5,-5]],[[6387,7517],[-8,-7],[-1,-7],[-7,5]],[[6369,7405],[-9,-17],[-13,-4],[0,6]],[[6347,7390],[-5,2],[1,-16]],[[6343,7376],[17,4],[1,-4]],[[6379,7402],[1,8]],[[6380,7416],[-11,-11]],[[6277,7435],[5,-2],[-4,-17],[4,-10],[-4,-7]],[[6278,7399],[1,-3]],[[6279,7396],[7,6],[12,2],[2,-8],[12,6]],[[6312,7402],[7,5],[-1,6],[10,11],[-6,13]],[[6322,7437],[-2,4],[-13,-1],[-2,12],[-6,0],[-9,6],[-6,-4]],[[6428,7539],[-1,0]],[[6427,7539],[1,-11],[-3,-18]],[[6425,7510],[7,-2],[0,-22],[-5,0],[0,-14]],[[6427,7472],[2,-8]],[[6429,7464],[4,4],[6,-10],[0,-8]],[[6439,7450],[2,-9],[5,0]],[[6446,7441],[17,-4],[7,-16],[3,2]],[[6479,7517],[-9,-11],[-28,27]],[[6442,7533],[-4,6],[6,8],[0,12]],[[6347,7390],[4,2],[-4,13]],[[6347,7405],[-4,32],[1,10]],[[6344,7447],[-5,8]],[[6339,7455],[-7,-3],[-2,9],[-8,-24]],[[6312,7402],[0,-8],[-7,-13],[8,-7],[3,-18]],[[6316,7356],[4,-2]],[[6320,7354],[16,6],[0,13],[7,3]],[[6339,7455],[4,22],[-6,17]],[[6337,7494],[-8,2],[3,15],[-4,6]],[[6328,7517],[-2,0]],[[6326,7517],[-3,-8],[-14,-15]],[[6480,7527],[-11,12],[-10,-5],[-17,-1]],[[6397,7548],[-5,14]],[[6392,7562],[-9,7],[-7,-2],[6,-12]],[[6382,7555],[15,-7]],[[6389,7482],[11,10],[8,-3]],[[6409,7489],[4,7]],[[6326,7517],[-1,11],[-7,-1]],[[6267,7416],[11,-17]],[[6308,7334],[0,6],[-12,-3],[-3,8],[9,9],[14,2]],[[6279,7396],[10,-8],[7,-14]],[[6370,7547],[1,-5]],[[6371,7542],[12,-3],[4,6],[12,-1],[-1,4]],[[6398,7548],[-1,0]],[[6382,7555],[0,-2]],[[6382,7553],[1,-5],[-13,-1]],[[6328,7517],[7,-4],[1,-7]],[[6336,7506],[8,5],[-2,11]],[[6342,7522],[-9,6],[10,17]],[[6343,7545],[-4,16]],[[6337,7502],[0,-8]],[[6344,7447],[8,-3],[7,13],[-1,15]],[[6358,7472],[-5,5],[3,17]],[[6356,7494],[-11,14]],[[6345,7508],[-2,-16],[-6,10]],[[6378,7589],[11,-17]],[[6389,7572],[3,-10]],[[6398,7548],[5,-1],[3,28]],[[6398,7447],[1,22]],[[6366,7587],[8,-6],[0,-8],[15,-1]],[[6371,7542],[1,-14]],[[6372,7528],[6,-3]],[[6378,7525],[1,0]],[[6379,7525],[23,5],[13,7],[12,2]],[[6370,7547],[-5,-3]],[[6365,7544],[-4,-5]],[[6361,7539],[-2,-11]],[[6359,7528],[-1,-5]],[[6358,7523],[7,-1],[3,-8]],[[6368,7514],[4,14]],[[6446,7441],[-6,-14],[-5,2]],[[6435,7429],[6,-10],[2,-12],[-16,-11],[4,-8]],[[6431,7388],[10,7],[5,-22],[8,1]],[[6454,7374],[8,8],[2,-8],[15,0]],[[6436,7374],[-5,14]],[[6435,7429],[-8,-5],[-8,5]],[[6406,7385],[5,-3],[4,8],[4,-30],[17,14]],[[6343,7545],[-1,-23]],[[6342,7522],[9,-8]],[[6351,7514],[5,8]],[[6356,7522],[-4,-2],[-2,17],[2,4]],[[6352,7541],[0,1]],[[6352,7542],[-1,6]],[[6351,7548],[-5,4],[1,10],[-7,-1]],[[6351,7514],[-6,-6]],[[6356,7494],[10,-8],[-3,-14]],[[6363,7472],[2,-7]],[[6371,7508],[-1,6]],[[6370,7514],[-2,0]],[[6358,7523],[-2,-1]],[[6452,7340],[-3,13],[-6,4]],[[6443,7357],[-7,17]],[[6320,7354],[-3,-17]],[[6426,7461],[-2,-7],[12,-10],[3,6]],[[6429,7464],[-3,-3]],[[6358,7472],[5,0]],[[6411,7447],[15,14]],[[6427,7472],[-9,-1]],[[6347,7405],[13,7],[9,-7]],[[6380,7430],[-4,14],[-4,-3],[-2,14],[4,6]],[[6361,7578],[5,-9]],[[6366,7569],[9,-7],[1,-9]],[[6376,7553],[6,0]],[[6355,7576],[10,-14]],[[6365,7562],[1,7]],[[6351,7548],[1,8],[9,-17]],[[6361,7539],[0,0]],[[6365,7544],[0,8]],[[6365,7552],[0,10]],[[6454,7374],[-2,-7],[-9,-10]],[[6387,7517],[-8,0],[0,8]],[[6378,7525],[-8,-11]],[[6336,7506],[1,-4]],[[6424,7508],[1,2]],[[6359,7528],[-7,13]],[[6361,7539],[-9,3]],[[6365,7552],[11,1]],[[6741,7329],[-1,6],[12,-1]],[[6752,7334],[1,20]],[[6753,7354],[0,9],[-6,5],[6,11],[-4,6]],[[6749,7385],[-5,8],[-13,-5],[-11,-8]],[[6720,7380],[1,-9]],[[6721,7371],[3,-1],[0,-19],[17,-22]],[[6799,7284],[6,-3]],[[6805,7281],[7,10]],[[6812,7291],[-6,13]],[[6806,7304],[-6,5],[-4,-14]],[[6796,7295],[3,-11]],[[7301,8125],[6,7],[6,-2],[0,7],[10,11],[11,0],[0,-6],[10,-20],[9,0],[4,-7],[11,8],[1,8],[9,-14],[8,-5],[1,10]],[[7387,8122],[0,12],[17,-19],[7,11],[10,7],[1,21],[6,8]],[[7428,8162],[-3,6],[6,25],[-9,3],[-5,-6],[-4,21],[6,4]],[[7419,8215],[-13,16]],[[7406,8231],[-11,1],[-7,6],[-1,-12],[-6,0]],[[7381,8226],[0,-19],[-15,3],[0,-7],[-13,1],[1,8],[-13,-6],[0,11],[-10,-4],[0,-14],[-9,-2]],[[7322,8197],[-12,-49],[3,-5],[-7,-6],[-5,-12]],[[6917,7429],[-4,9],[-7,3],[1,8],[-9,2]],[[6898,7451],[-8,-5],[-3,-8],[-9,0],[-15,-12],[-2,-7],[-9,0],[-8,-9],[2,-6],[-8,-17],[-14,-6],[-6,-10],[8,-9]],[[6826,7362],[4,-6]],[[6830,7356],[16,6],[8,15],[5,-1],[-6,-11],[1,-14],[12,-1],[5,4],[6,-6],[-5,-5],[5,-7],[16,-4],[5,-18],[5,-5],[1,-11],[7,0],[-1,-11],[12,-6],[2,-5],[16,11]],[[6940,7287],[5,14],[-2,16],[8,22],[-2,6],[1,19],[14,34]],[[6964,7398],[-16,14],[-3,7],[-11,-3],[-15,5],[-2,8]],[[7139,7943],[-7,0],[-17,-14],[7,-8],[1,-17],[-20,-33],[4,-13]],[[7107,7858],[4,-8],[13,-7],[7,5],[-3,17],[6,0],[2,17],[7,7],[2,7]],[[7145,7896],[0,11],[9,-4],[4,10]],[[7158,7913],[4,16],[-7,6],[-6,-3],[-3,9],[-7,2]],[[6649,7786],[1,-1]],[[6650,7785],[15,-4],[17,-9]],[[6682,7772],[5,6]],[[6687,7778],[-5,11],[5,6],[-4,5],[2,9],[-5,8],[3,11],[-6,9],[2,13]],[[6866,7635],[8,-3],[4,6],[10,-6],[13,6]],[[6901,7638],[15,1],[-3,26],[-9,0],[-3,8],[-9,1],[6,10]],[[6898,7684],[-19,-2],[-9,-8],[6,-6],[0,-15],[-18,-2],[8,-16]],[[6732,7601],[-1,8],[-15,17],[-18,0]],[[6698,7626],[-7,-5],[0,-14],[23,-18],[18,12]],[[6830,7356],[2,-14],[-3,-5]],[[6829,7337],[5,-17],[0,-16],[5,0],[4,-17],[-5,-7]],[[6838,7280],[6,-4],[8,3],[0,-9],[5,0],[1,11],[3,-11],[-6,-6]],[[6855,7264],[9,-3],[1,-11],[13,-5],[8,-6],[7,-17]],[[6893,7222],[5,-11],[-1,-14],[6,-18],[0,-10]],[[6903,7169],[11,24],[11,13],[2,18],[14,51],[-1,12]],[[6754,7245],[-2,5],[-7,-3]],[[6745,7247],[-13,6],[-3,11],[-11,5]],[[6718,7269],[-7,-11],[-7,12],[-13,31]],[[6691,7301],[-18,-6],[-2,3],[7,16],[0,9]],[[6678,7323],[-9,0]],[[6669,7323],[-4,-16],[3,-15],[-4,-15],[0,-13],[7,-22]],[[6671,7242],[9,8],[7,-5],[7,14],[1,-17],[7,-1],[8,-13],[6,-15],[13,-2],[14,-9],[7,4],[1,-12],[11,-1],[5,-7]],[[6767,7186],[2,16],[-12,17],[7,5],[-3,15],[-8,-3],[1,9]],[[7218,7812],[4,14],[-2,16],[-10,3]],[[7210,7845],[-6,-5],[-7,-17],[-17,-1],[-14,12],[-12,3],[1,28],[-8,8],[-2,23]],[[7107,7858],[-6,3]],[[7101,7861],[4,-33],[0,-19],[4,-3],[2,-14],[-6,-4],[-7,4],[-1,-14],[-10,-8],[-12,1]],[[7075,7771],[-5,-4],[-1,-14],[5,-3],[-1,-28],[-12,0],[-3,-7],[3,-22]],[[7061,7693],[-6,-24],[-9,0],[-1,-6],[-11,-6],[4,-20],[-6,-5]],[[7032,7632],[0,-17],[6,-8]],[[7038,7607],[-1,4],[8,13],[14,8],[15,-4],[4,4],[4,56],[5,11],[0,13],[4,10],[15,22],[13,12],[33,19],[2,6],[14,13],[19,11],[11,4],[20,3]],[[7197,8002],[-16,0]],[[7181,8002],[-4,-11],[-26,-22],[-6,-11],[-4,0]],[[7141,7958],[-2,-15]],[[7158,7913],[5,11],[5,4],[12,24],[0,10],[5,4],[-1,21],[7,0],[-2,7],[8,8]],[[6504,6417],[5,-16]],[[6509,6401],[8,14],[16,-4],[0,-8],[10,1],[4,8],[4,-3],[12,10],[0,-10],[4,-2]],[[6567,6407],[-1,28],[-6,8],[-13,-2],[-2,4]],[[6545,6445],[-3,-14],[-5,9],[3,12],[-14,-1],[0,8],[-8,-7],[-1,-10],[-8,-24],[-5,-1]],[[6807,7724],[-7,11],[9,9],[0,11],[-8,8],[3,12]],[[6804,7775],[-11,0],[-5,-8],[-5,8]],[[6783,7775],[-6,-5]],[[6777,7770],[-1,-4]],[[6776,7766],[0,-5],[-9,-7],[0,-7]],[[6767,7747],[3,-9],[16,-5],[4,-11],[-7,-6],[0,-8],[10,0],[-3,-20],[3,-4]],[[6793,7684],[6,-2]],[[6799,7682],[4,3],[4,23],[3,2],[-3,14]],[[7235,7871],[0,-27],[5,-2],[-6,-14],[12,-14]],[[7246,7814],[24,0],[23,-2]],[[7293,7812],[-2,5],[0,34],[3,21],[-6,1],[-6,14]],[[7282,7887],[3,6],[-5,22],[-16,9],[0,8],[-7,-4],[-13,4],[-10,10],[-9,-4]],[[7225,7938],[2,-32],[4,-10],[4,2],[4,-12],[-4,-15]],[[6999,7520],[-2,24],[-4,-2],[-12,-22],[-4,11],[-10,8],[-5,-6]],[[6962,7533],[3,-22],[-1,-11],[-5,-5],[-1,-15],[-11,-11]],[[6947,7469],[4,-8],[-1,-12]],[[6950,7449],[14,3],[3,-11]],[[6967,7441],[5,20],[-1,16],[5,16],[9,15],[14,12]],[[6836,7464],[7,8],[12,-12],[5,22],[8,-5],[23,3]],[[6891,7480],[-4,8],[-7,3]],[[6880,7491],[-6,-8],[-19,17],[-8,-4]],[[6847,7496],[-6,-3],[-5,-21],[0,-8]],[[6650,7761],[5,0],[5,14],[-10,10]],[[6738,7879],[0,3]],[[6738,7882],[-7,7],[-13,26]],[[6708,7887],[30,-8]],[[6731,7819],[5,8],[0,12],[-10,12]],[[6726,7851],[-7,-7],[-8,4]],[[6711,7848],[-2,-6]],[[6709,7842],[0,0]],[[6709,7842],[-6,-3]],[[6703,7839],[-7,2],[4,-14],[4,7],[6,-4],[1,-27]],[[6711,7803],[2,16],[6,-5],[12,5]],[[6812,7657],[8,13],[0,7],[7,19],[4,19],[6,9],[0,8],[7,9]],[[6844,7741],[-7,6],[-4,-4]],[[6833,7743],[-12,-16],[-14,-3]],[[6799,7682],[-5,-25],[4,-1]],[[6798,7656],[14,1]],[[6726,7725],[-6,-3]],[[6720,7722],[0,-14]],[[6720,7708],[5,-4],[-1,-10],[-10,-6],[-1,-14],[7,-7]],[[6720,7667],[4,3]],[[6724,7670],[7,4],[8,-8],[4,15]],[[6743,7681],[3,16]],[[6746,7697],[-12,-7],[-1,29],[-7,6]],[[6671,7242],[7,-14],[-4,-18],[-1,-22],[9,-9],[1,-8]],[[6683,7171],[12,-22],[4,-16],[7,-1],[-1,-9],[18,-6],[4,-14]],[[6727,7103],[13,1],[0,9],[-6,-4],[2,26],[14,8],[4,9],[3,-12]],[[6757,7140],[7,6],[3,17],[0,23]],[[6767,7186],[0,0]],[[6814,7545],[-7,-7],[0,-7]],[[6807,7531],[23,-15],[-4,-7],[-9,1],[-12,-7],[-6,6]],[[6799,7509],[-14,2],[-11,11],[-1,6],[-13,16],[4,14]],[[6764,7558],[-16,-5],[-4,-8]],[[6758,7513],[4,-5]],[[6762,7508],[15,-11],[9,-18]],[[6786,7479],[4,0],[12,-14]],[[6802,7465],[13,6]],[[6815,7471],[1,12],[9,3],[-1,14],[9,-5],[7,16],[0,9],[7,-1],[0,-23]],[[6880,7491],[-4,15],[-8,8],[-14,3],[-7,8],[-33,20]],[[6669,7458],[15,-1],[-7,-11],[-4,-13],[-6,-11],[4,-9],[13,-6],[22,-5]],[[6706,7402],[0,22]],[[6706,7424],[-2,-9],[-5,8],[1,24],[6,0],[7,14],[-7,31]],[[6744,7457],[9,1],[-5,13]],[[6748,7471],[-7,3]],[[6741,7474],[-3,-5],[1,-11],[5,-1]],[[6767,7360],[-10,-6]],[[6757,7354],[9,-4],[-3,-5]],[[6763,7345],[9,-8],[14,16]],[[6786,7353],[-8,1],[-11,6]],[[6397,6741],[-4,-8],[-10,6],[-4,-4]],[[6379,6735],[-5,-1],[1,-11],[-11,2],[-2,-18],[-3,0]],[[6366,6646],[8,10],[2,-6],[9,1],[7,8],[6,-8],[-1,9],[6,9]],[[6403,6669],[-4,20],[-4,9],[11,8],[-4,3],[8,6],[-2,11],[-5,-3],[0,18],[-6,0]],[[7031,7570],[8,10],[-5,13],[4,14]],[[7032,7632],[-9,-1],[4,-10],[-3,-10],[8,1],[1,-8],[-7,-6],[-5,5]],[[7021,7603],[6,-30],[4,-3]],[[6698,7626],[-6,6]],[[6692,7632],[-16,7],[-7,7]],[[6736,7590],[-4,11]],[[6700,7761],[12,8]],[[6712,7769],[-3,16]],[[6709,7785],[-7,1]],[[6702,7786],[0,-8],[-11,-7],[0,-10],[9,0]],[[6901,7733],[20,25],[1,17],[-3,3]],[[6919,7778],[-7,2],[-5,11],[-13,-3],[-15,0],[-12,-6],[-3,3],[-11,-7],[-2,-39]],[[6851,7739],[16,1],[-2,-13],[9,-6],[8,6],[8,-3],[11,9]],[[7416,7900],[-4,34],[1,18],[14,-1]],[[7427,7951],[-6,4],[-4,19],[8,9]],[[7425,7983],[-3,11],[-8,6],[-11,2],[-10,-5],[-5,11],[-7,-1],[-7,9],[4,5]],[[7378,8021],[-4,11],[3,7],[-6,8],[-7,-3],[-5,-20],[-6,6],[-5,-5],[-10,11],[-5,-7]],[[7333,8029],[4,-7],[-2,-42],[6,-14],[0,-20],[-5,-17],[21,2],[3,-10],[-5,-11],[-14,-3],[8,-8],[2,-9],[8,-4],[9,-13]],[[7368,7873],[0,9],[19,14],[20,5],[9,-1]],[[6625,6741],[19,-7],[10,-28],[15,-2],[3,11],[7,-1],[5,-9]],[[6684,6705],[5,11],[3,42],[4,14]],[[6696,6772],[-7,-1],[-2,10],[-6,-3],[-11,3],[-5,20],[-5,0],[-2,-23],[-16,6],[-9,-3]],[[6633,6781],[5,-15],[-13,-15],[0,-10]],[[6527,6486],[4,7]],[[6531,6493],[-1,20],[-6,0],[0,12],[-9,-4]],[[6515,6521],[-7,-2],[0,-11],[-9,-11],[-13,0],[6,-21]],[[6492,6476],[10,-9],[15,11],[0,5],[10,3]],[[6452,6380],[-1,-7],[8,-7]],[[6459,6366],[6,20],[7,6],[0,-15],[12,15],[-3,10],[1,23],[4,11]],[[6486,6436],[-5,7],[-3,20]],[[6478,6463],[-2,-1],[-5,-25],[-3,-2],[0,-40],[-9,-5],[-7,-10]],[[6780,7309],[-1,14]],[[6779,7323],[-16,-3]],[[6763,7320],[-3,-37],[6,-5]],[[6766,7278],[6,8],[3,18],[5,5]],[[6540,6967],[4,19],[-5,3]],[[6539,6989],[-8,20],[-10,-9]],[[6811,7452],[-4,9],[8,10]],[[6802,7465],[-1,-4],[-15,0]],[[6786,7461],[-14,-17],[-2,-6],[-17,-14],[0,-8],[-16,-10],[-2,-10],[-15,-11]],[[6720,7385],[0,-5]],[[6749,7385],[14,8],[7,-5]],[[6770,7388],[3,11],[10,0],[2,5]],[[6785,7404],[-1,12],[5,8],[21,9],[7,8],[-6,11]],[[7618,8153],[-10,-3],[-7,-13],[-3,13],[-5,4]],[[7593,8154],[-2,3]],[[7591,8157],[-9,-11],[-7,5],[-1,-9],[-8,-5]],[[7566,8137],[-4,3],[-10,-9],[-15,6],[0,-15],[-6,-6],[-8,1],[-8,9]],[[7515,8126],[-5,-6],[0,-11],[-10,-3],[-2,-12],[4,-16],[9,10]],[[7511,8088],[11,12],[14,8],[20,1],[15,-4],[11,0],[41,-14]],[[7623,8091],[6,28],[-7,7],[1,18],[-5,9]],[[6589,6933],[-17,9]],[[6572,6942],[-16,0],[-9,-17],[2,-14]],[[6582,6869],[7,-6],[8,2],[2,-6]],[[6599,6859],[14,10],[13,0]],[[6626,6869],[3,5],[-6,9],[-11,3],[-2,22],[-8,3],[5,4],[-3,7],[0,19],[-14,-12],[-1,4]],[[6783,7775],[-3,13]],[[6780,7788],[-7,3],[0,-14]],[[6773,7777],[4,-7]],[[6832,7148],[6,-11],[9,9],[13,-16],[5,5],[3,23],[-5,24]],[[6863,7182],[-7,15],[-9,-5]],[[6847,7192],[-4,-10],[-9,-3],[-3,10],[-6,-9]],[[6825,7180],[-7,-19],[10,-3],[4,-10]],[[6777,7559],[12,3],[8,6]],[[6797,7568],[12,8],[31,-3],[12,-14]],[[6852,7559],[12,-8],[8,2]],[[6872,7553],[11,17],[24,8],[4,4]],[[6911,7582],[2,7],[-26,1],[9,16],[-8,1],[2,10]],[[6890,7617],[-21,-3],[0,6],[-16,0]],[[6853,7620],[-30,-13],[-7,-7],[-7,-13],[-16,-5],[-4,-4]],[[6789,7578],[-9,-6],[-3,-13]],[[6767,7747],[-3,0],[-5,-21],[0,-13],[8,0],[-8,-17],[-7,-11],[4,-12]],[[6756,7673],[0,-6]],[[6756,7667],[8,-10]],[[6764,7657],[16,0],[5,9],[-2,15],[10,3]],[[7015,8091],[10,-7],[0,8],[19,-8],[3,-10],[-3,-7],[8,-10],[-6,-10],[5,-11],[-4,-12],[-4,5],[-3,-8],[7,-17],[10,-5],[1,-11],[6,-3]],[[7064,7985],[7,-9],[2,-11]],[[7073,7965],[18,4],[-1,-7],[9,3],[-1,12],[7,-1],[-4,14],[11,1],[20,-3],[6,-8]],[[7138,7980],[0,33],[3,11]],[[7141,8024],[-6,-14],[-5,12],[-9,-9],[-6,6],[2,17],[-11,9],[-11,2],[1,11]],[[7096,8058],[-2,2]],[[7094,8060],[-10,-3],[-3,10],[-6,-3],[-6,17],[4,10],[-7,1]],[[7066,8092],[0,-11],[-5,-6],[-5,2],[-1,18],[-13,8]],[[6748,7471],[16,1],[7,-6],[6,9],[9,4]],[[6762,7508],[-19,-20],[-2,-14]],[[6751,7634],[-8,1],[1,8]],[[6744,7643],[-11,6],[-1,10],[-8,11]],[[6720,7667],[-16,-8],[-12,-27]],[[6740,7590],[13,25]],[[6753,7615],[-6,6],[4,13]],[[7566,8137],[3,17],[-3,8]],[[7566,8162],[-8,-2],[-4,15]],[[7554,8175],[-12,1],[0,-12],[-5,-11],[-10,0],[-7,-13],[-4,6],[5,36],[10,-7],[-4,10],[-12,0],[-2,15],[8,10],[-1,17],[-5,16],[-13,-2],[0,8],[-7,9]],[[7495,8258],[-11,-6],[-1,-29],[5,-10]],[[7488,8213],[8,12],[6,5],[6,-6],[-2,-17],[-13,-3]],[[7493,8204],[1,-25]],[[7494,8179],[10,-9],[5,-12],[3,-19]],[[7512,8139],[3,-13]],[[6968,7673],[4,1]],[[6972,7674],[3,5],[-2,15],[7,-1],[0,11],[5,1]],[[6985,7705],[6,8],[10,-9],[0,15],[6,-6],[4,31]],[[7011,7744],[-17,8],[-9,8],[-2,14],[-5,3],[-17,-8],[-25,13],[4,13],[-5,-1],[-4,6]],[[6931,7800],[-12,0]],[[6919,7800],[1,-8],[-4,-8],[3,-6]],[[6901,7733],[5,-3],[-7,-17],[5,-3],[8,3],[-1,-14],[10,0],[0,-5]],[[6921,7694],[2,-4],[20,4],[9,-6],[6,-14],[8,5],[2,-6]],[[6591,7040],[-29,6]],[[6557,7036],[6,-10]],[[6563,7026],[11,-6],[-3,-5],[9,-17],[-8,2]],[[6572,7000],[-2,-12]],[[6570,6988],[13,-4],[18,8],[-1,6],[-10,3],[0,5],[-8,16],[7,7],[4,-9],[-2,20]],[[6572,6942],[-3,19],[-7,0],[7,19],[-6,0],[-1,9],[8,-1]],[[6572,7000],[-11,4],[-1,8]],[[6560,7012],[-8,6],[-2,-15],[-10,-3]],[[6540,7000],[-1,-11]],[[6839,7797],[-23,-3],[-6,-8],[-12,3],[-6,-8],[-9,-6]],[[6804,7775],[5,6],[14,3]],[[6823,7784],[16,13]],[[6844,7741],[7,-2]],[[6919,7800],[-9,0],[-7,6],[-16,-6]],[[6887,7800],[-16,-2],[-8,-4],[-24,3]],[[6823,7784],[4,-9],[-6,-4],[6,-7],[6,-21]],[[7114,8120],[-4,-11],[-1,-14],[9,-1],[0,-13],[-14,-23],[-8,0]],[[7141,8024],[-7,15],[4,8],[7,3],[4,17],[8,8]],[[7157,8075],[5,5],[-1,9],[-6,2],[-1,12],[-11,6],[-4,14],[0,14],[-15,10]],[[6316,6466],[0,0]],[[6316,6466],[15,13],[0,8],[8,3],[0,6]],[[6330,6504],[0,-5],[-10,-2],[3,12]],[[6304,6506],[-2,-27],[-6,-7],[4,-14]],[[6300,6458],[12,-6],[4,14]],[[6357,6472],[1,10],[10,4],[0,12],[4,15],[-6,2]],[[6344,6495],[2,-9],[11,-14]],[[6281,6420],[10,9],[1,12],[5,1],[3,16]],[[6805,7227],[4,12],[5,-6],[5,2],[-3,10],[15,-4],[3,-13]],[[6834,7228],[0,16],[8,5],[3,12],[5,-3],[5,6]],[[6838,7280],[-17,-4],[4,7],[-7,-2],[0,9],[-6,1]],[[6805,7281],[-1,-25],[-7,-7]],[[6797,7249],[7,0],[-3,-22],[4,0]],[[6378,6536],[4,0],[6,-15],[11,-4],[7,-11],[18,5]],[[6424,6511],[8,5],[10,-5],[7,-12]],[[6449,6499],[7,7],[-3,28],[3,7],[4,-3],[8,6],[3,12],[6,5]],[[6477,6561],[-5,9],[-7,-2],[-2,14],[8,22],[13,3],[-2,14],[-6,8],[0,24],[-7,-3],[-5,13]],[[6464,6663],[-2,14],[-11,8],[0,-8],[-10,-17],[-17,-8],[-11,17],[-5,-6],[-5,6]],[[7447,8146],[18,0],[1,-20]],[[7466,8126],[20,14],[26,-1]],[[7494,8179],[-13,6]],[[7481,8185],[-6,-6],[-18,-3]],[[7457,8176],[-8,0],[-6,-14]],[[7443,8162],[5,-9],[-1,-7]],[[6565,6374],[-1,7],[7,9],[5,-1]],[[6576,6389],[1,7],[-10,11]],[[6509,6401],[7,-14],[-3,-10]],[[6513,6377],[3,-4]],[[6516,6373],[6,1],[10,12],[5,0],[2,-11],[10,-1],[0,-6],[16,6]],[[7672,8636],[-1,-18],[28,0],[0,-8],[22,0],[0,-43],[2,-10],[-14,-3],[-3,-10],[-17,0],[-2,-8],[-28,-2],[-16,3],[-9,8]],[[7634,8545],[-1,-25],[8,-10],[0,-12],[-5,2],[-8,-20],[-1,-19],[4,-8],[3,6],[2,-9],[-9,-3],[-2,-10],[4,-11],[1,-17],[8,-1],[1,10],[5,-9],[12,4],[5,-7],[-12,-9],[0,-11],[5,-3],[-14,-10],[-4,-9],[7,-3],[-4,-11],[3,-9],[-11,-16],[-3,-10],[8,-13],[-6,-12],[6,-18],[-1,-9],[-12,9],[-10,-3],[-12,6],[14,-15],[0,-11]],[[7615,8249],[11,-16],[3,-13],[5,-5],[-3,-11],[5,-9]],[[7636,8195],[7,5],[8,-2],[11,9],[9,-1]],[[6744,7643],[9,14],[3,10]],[[6756,7673],[-7,-5],[-6,13]],[[6478,6463],[0,5]],[[6478,6468],[-10,11],[-3,10],[-12,1],[-3,6]],[[6450,6496],[0,-13],[9,3],[-2,-16],[-8,-3],[-3,-10],[-8,6],[-2,-8],[-1,-30],[-12,-12]],[[6423,6413],[2,-1],[0,-28],[-8,-25],[0,-11],[5,-15],[7,-2],[2,-24],[-3,-19],[9,-4],[5,-20],[-9,-10],[-5,-2],[-4,-15]],[[6424,6237],[17,5],[0,20],[4,1],[1,17],[-3,21],[1,24],[-3,19],[4,7],[2,26],[5,3]],[[6563,7026],[-3,-14]],[[6816,7356],[10,6]],[[6898,7451],[-1,16],[-6,2],[0,11]],[[6836,7464],[-5,-12],[-10,0],[2,11],[-12,-11]],[[6785,7404],[12,-12],[0,-7],[10,5],[2,-5],[-7,-8],[3,-13],[8,1],[3,-9]],[[6589,6933],[1,16],[27,9],[7,12],[1,11],[8,16]],[[6593,7051],[-3,0],[1,-11]],[[6540,7000],[-8,15],[6,15],[15,3]],[[6776,7766],[-5,0],[-9,-12]],[[6762,7754],[-4,-8],[-1,-13],[-5,-1],[-3,-13],[1,-14],[-4,-8]],[[6708,6930],[-10,-11],[-5,-28],[3,-8],[7,0],[3,-11],[-1,-12]],[[6705,6860],[8,-10],[10,1],[10,17],[-6,3],[9,9],[13,-3],[-6,13],[-3,21],[-10,2],[-3,11],[-7,-6],[0,9],[-12,3]],[[7563,8477],[-27,-5],[-4,2],[0,21],[14,10],[-2,6],[-32,-5],[-1,17],[-11,-7],[-2,30],[-5,-5]],[[7493,8541],[-2,-15],[5,-1],[-2,-10],[-8,2],[-8,-4],[-4,10],[-6,-4],[5,-11],[0,-16],[-11,-5],[2,-14],[-7,-3],[-8,13],[-6,6],[-12,-16],[0,-15],[8,-7],[9,13],[10,-11],[3,8],[10,-10],[4,-18],[-13,-17],[-3,-8]],[[7459,8408],[3,-8],[8,-3],[-8,-12],[0,-7],[12,-9],[-3,-3],[2,-13],[6,-7],[-3,-7]],[[7476,8339],[10,-7],[-3,-7],[5,-4],[0,-11],[8,-3],[-1,-20],[7,-2],[-2,-13]],[[7500,8272],[8,19],[13,-3],[-10,16],[-3,10],[5,27],[3,34],[8,-4],[13,6],[15,0],[0,6],[9,5],[0,20],[-12,22],[4,29],[7,4],[3,14]],[[6802,7620],[-14,-8]],[[6788,7612],[-25,5],[-5,-6],[-5,4]],[[6764,7558],[2,4]],[[6766,7562],[6,3],[5,13],[12,9],[0,-9]],[[6853,7620],[-19,1],[-35,-31],[-9,6],[3,11],[6,4],[3,9]],[[6302,6748],[13,11],[17,5]],[[6332,6764],[-6,9],[5,11],[-9,1],[-3,16],[-9,7],[2,18],[-3,12],[3,3]],[[6312,6841],[-8,3],[-2,14],[8,13],[-2,12],[-9,14],[-2,20],[14,-6],[5,4]],[[7378,8021],[7,-5],[-1,11],[6,40],[7,0],[-2,44],[-8,11]],[[7301,8125],[-6,5],[2,-8],[-11,1],[-4,-11],[-5,0],[-7,-14],[-9,-3]],[[7261,8095],[-5,-3],[1,-17],[7,-5]],[[7264,8070],[8,-1],[0,-6],[10,1],[1,10],[10,4],[-1,-17],[9,0],[10,8],[8,-12],[-12,-7],[3,-6],[9,9],[5,-9],[0,-9],[9,-6]],[[6722,7750],[0,5],[-10,14]],[[6700,7761],[5,-7]],[[6705,7754],[5,-7],[8,3]],[[6718,7750],[4,0]],[[7101,7861],[0,25],[-3,4],[-11,0],[-2,17],[-10,10]],[[7075,7917],[-10,-10],[2,-11],[-11,-12],[1,-8]],[[7057,7876],[2,-12],[-4,-16],[-5,-5],[7,-9],[-4,-8],[3,-9],[-2,-11],[7,-6],[-1,-14],[9,6],[1,-12],[5,-9]],[[6329,6704],[-11,8],[-6,0],[0,15],[-9,3]],[[7197,8002],[2,-3],[12,1],[2,11]],[[7213,8011],[3,8],[8,3],[0,19],[4,3],[-7,12],[5,5],[13,-4],[8,4]],[[7247,8061],[6,8],[11,1]],[[7261,8095],[-19,13],[-9,-20],[-11,21],[-1,20],[23,47],[4,3],[-4,22],[3,13],[-5,2],[-2,14],[-6,7],[-15,6]],[[7219,8243],[-14,-1],[3,7],[-8,0],[-16,-3],[-5,-9],[-2,9],[-13,6],[-1,-15],[-9,-5]],[[7154,8232],[10,-20],[-1,-13],[5,-9],[8,3],[4,-14],[0,-25],[6,-3],[-5,-11],[-6,0],[-1,-17],[5,2],[-1,-13],[3,-20],[-1,-11],[4,-8],[7,4],[2,-10],[8,-6],[0,-8],[6,-6],[0,-8],[-9,-3],[-5,-28],[4,-6]],[[6450,6496],[-1,3]],[[6424,6511],[4,-8],[-5,-13],[-8,-6],[4,-12],[-4,-6],[-12,0],[6,-18],[7,1],[0,-38],[7,2]],[[6706,7424],[5,13],[12,1],[12,14],[8,2]],[[6743,7454],[1,3]],[[6788,7612],[-2,16],[6,7],[-1,20],[7,1]],[[6764,7657],[-3,-14],[-3,6],[-6,-4],[-1,-11]],[[6703,7733],[-7,3]],[[6696,7736],[-7,-9],[-5,-19]],[[6684,7708],[9,0],[3,-9],[7,9],[10,5],[5,17]],[[6718,7730],[-15,3]],[[7588,8235],[-4,7],[-4,-7],[-18,2],[-4,-23],[7,-16],[-11,-23]],[[7566,8162],[3,9],[22,-14]],[[7593,8154],[6,8],[-5,9],[0,14],[-7,3],[-5,8],[3,7],[3,32]],[[6403,6801],[-6,-11],[3,-26],[-8,-4],[-1,-6],[6,-13]],[[6464,6663],[5,13],[-6,8],[-4,25],[12,-5]],[[7073,7965],[-4,-6],[0,-13],[4,-9],[-8,-6],[10,-14]],[[7141,7958],[-6,11],[3,11]],[[6746,7786],[-6,-14]],[[6740,7772],[-2,-4]],[[6738,7768],[-4,-14],[-8,-4]],[[6726,7750],[5,-9],[-5,-16]],[[6762,7754],[-1,14]],[[6761,7768],[-3,10],[-12,8]],[[6669,7323],[-5,11],[-8,3],[-1,-11],[-12,11],[-10,-12]],[[6672,7166],[5,-3],[6,8]],[[6786,7353],[7,-4],[8,2],[2,-8]],[[6803,7343],[13,13]],[[6770,7388],[-1,-8],[-6,-1],[4,-19]],[[7476,8339],[0,-10],[-10,-4],[-5,-5],[-1,-12],[-6,-3],[4,-16],[-2,-5],[10,-7],[8,-11],[-1,-12],[-15,-5],[-2,-14],[3,-12],[-6,4],[-4,-27]],[[7449,8200],[4,-10],[6,0],[-2,-14]],[[7481,8185],[-1,24],[6,0]],[[7486,8209],[2,4]],[[7495,8258],[5,14]],[[6972,7674],[-2,-12],[5,-2],[-5,-14],[6,-6],[3,-11],[6,-1]],[[6985,7628],[11,12],[17,-5],[-5,27],[-8,8],[-4,15],[-8,6],[-3,14]],[[7446,8409],[5,3],[8,-4]],[[7493,8541],[-13,-2],[-1,21],[-9,0],[-8,6],[4,11],[-5,15],[0,13],[4,13]],[[7319,8432],[9,-3],[7,-9],[14,1],[8,-7],[8,1]],[[7365,8415],[12,4],[7,-8],[19,0],[3,5],[25,-10],[15,3]],[[6706,7402],[6,-15],[8,-2]],[[6786,7461],[-13,-9],[-20,-3],[-10,5]],[[6779,7323],[12,8],[12,12]],[[6763,7345],[-6,-13]],[[6757,7332],[6,-12]],[[7322,8197],[-7,7],[-6,-5],[0,25],[-3,9],[3,22],[-9,-3],[-6,6],[2,33],[-9,8],[1,-9],[-14,-4],[0,10],[-23,9],[-4,15]],[[7247,8320],[-2,-10],[-10,-2],[-1,-22],[-4,-30],[-8,-1],[-3,-12]],[[6863,7182],[9,21],[21,19]],[[6834,7228],[0,-6],[7,-8],[-2,-10],[8,-12]],[[6799,7284],[0,-9],[-6,-9],[0,-13]],[[6793,7253],[4,-4]],[[7235,7871],[-3,-3],[-20,1],[-2,-7]],[[7210,7862],[-3,-12],[3,-5]],[[7218,7812],[28,2]],[[6732,7788],[-1,-10]],[[6731,7778],[9,-6]],[[6746,7786],[-8,9],[-6,-7]],[[6674,7704],[10,4]],[[6684,7708],[-4,5],[6,12],[-5,11],[1,36]],[[6968,7673],[-1,-13],[-6,-7],[-9,-2],[-13,-11],[11,-15],[-2,-13],[-5,0],[0,-23],[-6,-7],[3,-12],[-13,0],[0,-8]],[[6927,7562],[12,3],[25,-9]],[[6964,7556],[8,3],[-2,19],[6,1],[9,11]],[[6985,7590],[3,25],[-3,13]],[[6673,7691],[4,-3],[3,-17],[7,8],[13,4],[9,11],[1,8],[8,-3],[2,9]],[[6720,7722],[-2,8]],[[6684,7708],[0,0]],[[6720,6994],[4,-10],[9,7],[6,-2],[0,-8],[11,2]],[[6750,6983],[3,15],[-6,14],[2,21],[9,10],[1,10],[11,-2],[1,6]],[[6771,7057],[-10,5],[-1,14],[-6,12],[4,3],[1,35],[8,1],[0,7],[-10,6]],[[6727,7103],[-13,-21],[5,-3],[-3,-12],[-7,-2]],[[6706,7045],[7,-47],[7,-4]],[[7435,8019],[11,16],[0,17],[5,-8],[6,2],[-4,18],[0,23],[4,2],[3,-14],[-1,-11],[11,-3]],[[7470,8061],[5,12],[-2,10],[-9,3],[0,9],[-6,22],[8,9]],[[7447,8146],[-17,-3],[7,-20],[11,0],[-2,-17],[-13,0],[1,-19],[-3,2],[-3,-19],[3,-18],[12,-2],[-8,-21],[0,-10]],[[7416,7900],[18,1],[10,6],[7,14]],[[7451,7921],[-7,11],[-10,6],[-7,13]],[[7061,7693],[-4,8],[-6,-13],[-5,0],[-5,16],[-4,1],[1,13],[-8,-2],[-3,20],[-6,10],[-10,-2]],[[6985,7590],[7,-6],[11,20],[10,2],[8,-3]],[[6792,7252],[1,1]],[[6796,7295],[-8,-1],[-7,-8]],[[6781,7286],[7,-27],[4,-7]],[[6718,7269],[3,6],[-14,22],[2,10],[-4,11]],[[6705,7318],[-14,-17]],[[7634,8545],[-3,4],[-12,-45],[-30,2],[-5,-14],[5,-6],[-2,-8],[-24,13],[0,-14]],[[7588,8235],[4,5],[12,-3],[11,12]],[[6792,7252],[-6,1]],[[6786,7253],[-1,-29],[-5,-2],[0,-11],[-10,-25],[-3,0]],[[6771,7057],[7,-6],[10,-1],[2,7]],[[6790,7057],[-7,8],[-3,13],[5,0],[6,18],[3,2],[2,17],[11,6],[3,8],[17,-5],[1,-4]],[[6828,7120],[0,10],[-4,8],[8,10]],[[6825,7180],[-8,6],[-3,14],[-7,11],[-2,16]],[[6761,7898],[-13,-6],[-8,-11]],[[6740,7881],[7,-2],[2,-14],[7,0],[5,-7]],[[6761,7858],[-1,-7],[9,-3],[0,10],[5,11],[-2,27],[-5,-4],[-6,6]],[[7618,8153],[-7,7],[11,2],[9,6],[-1,22],[6,5]],[[6780,7309],[7,-1],[-6,-22]],[[6806,7304],[11,14],[1,13],[-5,5],[4,10],[12,-9]],[[6773,7777],[-8,6]],[[6765,7783],[-4,-15]],[[6820,7001],[0,-1]],[[6820,7000],[5,11],[11,15],[10,21]],[[6846,7047],[-3,3],[6,23],[-4,6],[9,6],[-20,34],[-6,1]],[[6790,7057],[2,-9],[8,-8],[0,-8],[6,4],[6,-19],[7,6],[5,-14],[-4,-8]],[[6702,7786],[-11,2],[-4,-10]],[[6696,7736],[3,14],[6,4]],[[7419,8215],[10,-2]],[[7429,8213],[3,10],[-2,33],[-4,6],[-9,1],[1,12]],[[7418,8275],[-2,-7],[-9,-8],[-1,-13],[-5,-6],[5,-10]],[[6853,7850],[-8,-7],[-5,-13],[-6,-7],[-9,0],[-12,-23],[-11,-8],[-13,5]],[[6789,7797],[-9,-9]],[[6887,7800],[-4,0],[7,16],[-10,3],[2,12],[-8,0],[0,16],[-4,9]],[[6726,7750],[-4,0]],[[6718,7750],[-15,-17]],[[7066,8092],[6,17]],[[7493,8204],[-7,5]],[[6631,6307],[-32,-17],[0,-4],[-13,-3]],[[6586,6283],[-36,-24],[-7,11],[-10,-6],[-8,6],[2,19],[-3,14],[-8,8]],[[6516,6311],[-14,3],[2,11],[-14,19],[-4,20],[-9,-6],[-10,0],[-8,8]],[[6424,6237],[-5,-2],[-11,2],[-2,11]],[[6406,6248],[-9,-7],[-6,-10],[-4,-18]],[[6387,6213],[6,-8],[-1,-26],[6,-3],[1,-35],[11,-5],[-4,-21],[-7,-14],[0,-10],[9,-9],[-6,-11],[13,-11]],[[6415,6060],[8,14],[-1,12],[41,6],[-3,9],[17,6],[7,-15],[10,-1],[1,8],[18,-4],[0,5],[11,2],[2,6],[14,-8],[8,35],[4,6],[0,13],[5,12],[0,10],[6,5],[4,15],[10,8],[6,20],[10,13],[4,15],[10,23],[15,17],[9,15]],[[7470,8061],[-4,-36],[12,-9],[6,-11]],[[7484,8005],[5,6],[5,18],[8,7],[0,19],[9,33]],[[6471,5937],[-15,9],[-14,-4],[-9,14],[0,9],[5,7],[-11,15],[-7,-10],[-3,9],[8,5],[-1,12],[-15,-5],[5,9],[11,2],[4,14],[7,-3]],[[6436,6020],[-5,19],[-8,8],[-10,2],[2,11]],[[6387,6213],[-14,-3],[-7,7],[-14,2],[-13,6]],[[6339,6225],[-3,-10],[4,-63],[-27,3],[-3,-11],[-1,-20],[-10,-6],[-10,19],[-5,-1],[0,9]],[[6696,6772],[4,17],[12,21]],[[6712,6810],[-9,2],[-6,13],[-5,3],[2,12],[-9,8],[11,3],[2,9],[7,0]],[[6708,6930],[1,16],[-6,10],[8,14],[8,-1],[1,25]],[[6626,6869],[1,-10],[-4,-32],[-8,-12]],[[6615,6815],[1,-7],[17,-27]],[[6898,7684],[15,10],[8,0]],[[6812,7657],[3,-11]],[[6815,7646],[25,5],[6,-2],[9,-14],[4,5],[7,-5]],[[6927,7562],[-13,5],[-3,15]],[[6872,7553],[9,-15],[16,-8],[11,-19],[5,-1],[8,-14],[14,-14],[0,-7],[11,0],[1,-6]],[[6962,7533],[3,11],[-1,12]],[[6678,7323],[6,2],[5,11],[11,-10],[0,9]],[[6700,7335],[13,11],[0,11],[8,14]],[[6290,6392],[5,0],[-1,-11],[15,8],[1,-12],[9,-1]],[[6319,6376],[-7,16],[11,11],[0,13],[-7,9],[7,13],[6,-4],[7,8],[11,-4],[0,6],[10,4],[2,8],[-2,16]],[[7247,8320],[5,15],[2,15],[19,9]],[[7217,8415],[-9,2],[-3,-16],[17,-16],[-4,-9],[-7,5],[0,-8],[-10,1],[-4,7],[-3,-25],[-8,0],[-8,-7],[-2,-18],[-5,2],[-3,-12],[-14,17],[-7,1],[0,10],[-6,4],[-1,34]],[[7132,8216],[1,11],[21,5]],[[6599,6859],[2,-16],[11,-12],[3,-16]],[[6700,7335],[5,-3],[0,-14]],[[6705,7318],[20,-6],[7,-14]],[[6732,7298],[5,9],[-4,5],[13,2],[-5,15]],[[6505,5968],[-7,7],[-16,2],[-12,13],[1,17],[-5,1],[-3,11],[-10,-3],[5,-15],[0,-9],[-12,-2],[-3,10],[2,14],[-9,6]],[[6506,5916],[-3,2],[0,31],[2,19]],[[6852,7559],[-11,2],[8,-6],[-10,-2],[-8,3],[-13,-3],[-8,0]],[[6810,7553],[4,-8]],[[6917,7429],[5,22],[10,0],[4,-7],[14,5]],[[6718,7772],[-4,10],[4,7]],[[6718,7789],[-6,-4]],[[6712,7785],[-3,0]],[[6738,7768],[-6,4],[-8,-11],[-6,11]],[[6757,7354],[-4,0]],[[6752,7334],[5,-2]],[[6727,7858],[-1,-7]],[[6731,7819],[13,-3],[5,3]],[[6749,7819],[2,9],[-5,3],[1,14]],[[6747,7845],[-10,3],[-10,10]],[[7225,7938],[-9,-6]],[[7216,7932],[-3,-5],[2,-12],[-5,-12],[-6,-5],[1,-16],[-4,-3],[2,-14],[7,-3]],[[6732,7788],[-11,7],[-3,-6]],[[6718,7772],[12,0],[1,6]],[[7293,7812],[8,5],[22,0],[9,11],[10,6],[2,10],[15,7],[9,22]],[[7247,8061],[1,-8],[11,2],[8,-6],[10,-16],[-2,-14],[6,-23],[-2,-10],[7,-7],[9,-3],[3,-5],[0,-20],[3,-5],[-2,-12],[12,-11],[-1,-6],[-9,-3],[-6,-8],[-2,-17],[-11,-2]],[[7381,8226],[-7,23],[1,33],[-7,2],[0,7],[-8,14],[12,8],[5,-6],[-4,14],[20,18],[11,6],[-4,14],[14,-6],[-3,31],[9,4],[2,10],[-5,5],[-5,-14],[-15,-8],[-3,-10],[-13,-7],[-1,-12],[-4,0],[-1,-13],[-9,-3],[-2,7],[4,13],[0,10],[13,7],[0,8],[-14,-8],[-4,3],[-3,36],[5,3]],[[7213,8011],[5,2],[3,-19],[-1,-45],[-5,-3],[1,-14]],[[7418,8275],[0,21],[6,11],[10,-2],[1,9],[-13,0],[0,8],[15,5],[1,21],[6,7],[3,36],[-1,18]],[[7428,8162],[13,-5],[2,5]],[[7449,8200],[-20,13]],[[6766,7562],[1,-7],[10,4]],[[6703,7839],[-16,15],[-5,-1]],[[6712,7785],[-1,18]],[[6901,7638],[-3,-7],[-11,-3],[3,-11]],[[7425,7983],[12,-7],[3,18],[-5,11],[0,14]],[[6586,6283],[5,63],[-4,21],[2,11],[-11,4],[-2,7]],[[6565,6374],[5,4],[5,-19],[-1,-13],[-13,-15],[-2,11],[-6,-11],[-4,12],[-24,2],[-5,9],[-7,-4],[7,-16],[-5,2],[-5,-7],[9,-5],[-3,-13]],[[6504,6417],[-6,7]],[[6498,6424],[-4,-3],[0,-13],[8,-9],[7,2]],[[6513,6377],[-13,-7],[8,-11],[9,-1],[-1,15]],[[6631,6307],[14,-12],[4,0]],[[6649,6295],[0,25],[-6,30],[-11,40],[-9,25],[-3,24],[0,31],[4,25],[14,48]],[[6638,6543],[-10,-19],[-5,11],[-6,-1],[-6,-12],[-10,-1],[-8,8],[-11,1],[-4,9]],[[6578,6539],[-6,-1],[-6,-17],[-11,-9],[-2,-14],[-22,-5]],[[6527,6486],[8,-9],[-4,-6],[2,-11],[10,-3],[2,-12]],[[6681,6339],[0,0]],[[6505,5968],[12,62],[22,68],[7,15],[15,40],[17,34],[15,25],[9,9],[8,16],[28,35],[11,18],[0,5]],[[6492,6476],[-9,0],[-5,-8]],[[6486,6436],[12,-12]],[[6319,6376],[7,9],[7,-24],[-4,-6],[2,-10],[13,-6],[8,-14],[0,25],[11,-14],[-5,-11],[3,-26],[12,-15],[5,-1],[10,7],[3,-12],[12,-2],[1,-17],[8,-4],[-6,-7]],[[6745,7247],[-2,34],[-11,17]],[[6516,6695],[17,4],[4,-7],[11,5],[10,-12],[3,9],[6,2]],[[6567,6696],[5,9],[-5,22],[-4,13],[1,14],[-3,17],[-8,8],[-9,0],[-1,9],[-12,2],[0,4]],[[6712,6810],[5,11],[26,42],[14,20],[10,25],[35,62],[18,30]],[[6820,7001],[-10,2],[-11,-22],[-11,5],[-9,-14],[-7,0],[-2,8],[-9,4],[-8,-12],[-3,11]],[[6738,7882],[2,-1]],[[6761,7898],[-8,11]],[[6477,6561],[7,-2],[-1,-10],[11,-9],[-4,-12],[7,2],[13,18],[7,-4],[-4,-12],[2,-11]],[[6578,6539],[11,-2],[4,19],[-11,1],[-4,-7],[-1,16],[5,0],[-11,18],[-5,-3],[0,14],[-2,2],[3,16],[6,9],[14,-2],[2,11],[5,0],[-1,44]],[[6593,6675],[-7,-3],[3,12],[-7,9],[-15,3]],[[6262,6226],[2,-2],[4,24],[15,-6],[3,-7],[12,-3],[8,10],[28,-7],[5,-10]],[[6807,7531],[-10,11],[-8,5],[-10,-8],[6,-11],[7,-5],[7,-14]],[[6786,7253],[-12,8]],[[6774,7261],[-12,-8],[1,-8],[-9,0]],[[6802,7620],[13,26]],[[6765,7783],[2,9],[-10,14],[-4,14],[-4,-1]],[[7157,8075],[11,-18],[10,-5],[3,-23],[-6,-2],[3,-22],[3,-3]],[[7197,8002],[0,0]],[[6371,6766],[3,5],[-2,20],[-6,0],[-1,13]],[[6365,6804],[-21,19],[0,-7],[-8,2],[0,14],[-6,5],[-13,-5],[-5,9]],[[6332,6764],[12,-10],[-1,12],[4,6],[9,-6],[1,7],[6,-7],[8,0]],[[6747,7845],[1,10],[13,3]],[[6738,7879],[-6,-8],[-5,-13]],[[6794,7912],[10,-19],[-1,-14],[-7,-20],[-5,2],[0,-10],[5,-6],[-2,-14],[-4,-8],[-1,-26]],[[6931,7800],[1,27],[25,-4],[9,14],[12,4],[2,-4],[11,6],[0,5],[14,0],[11,-3],[10,25],[16,-5],[4,7],[11,4]],[[7064,7985],[-5,-9],[-5,3],[-4,-9],[-4,4],[-8,-6],[-10,-2],[-7,7],[-4,12],[-11,-5],[-10,3],[-11,-9],[-5,17],[-4,0],[0,34]],[[6593,6675],[4,6],[1,-14],[7,2],[4,17],[-7,-5],[-6,11],[6,0],[0,13],[5,11],[0,8],[18,17]],[[7094,8060],[2,13],[7,0],[4,11],[-10,7],[2,26]],[[6774,7261],[-10,3],[2,14]],[[6797,7568],[-3,-10],[16,-5]],[[6353,6868],[-6,-8],[0,-8],[10,-6],[5,-13],[0,-18],[3,-11]],[[6371,6766],[8,-16],[0,-15]],[[6708,7876],[1,-14],[4,-8],[-2,-6]],[[6638,6543],[12,50],[22,73],[10,23],[2,16]],[[6964,7398],[6,8],[1,10],[-4,10],[0,15]],[[6846,7047],[40,80],[5,21],[12,21]],[[6999,7520],[13,8],[2,14],[4,5],[10,-2],[-3,8],[5,5],[1,12]],[[7040,7568],[0,0]],[[7623,8091],[35,-14]],[[7451,7921],[4,31],[10,14],[0,10],[5,12],[14,17]],[[9039,6806],[3,-11]],[[9042,6795],[-5,-3],[0,-10],[5,-12],[-8,-9],[-1,-15],[10,8],[6,0],[2,-8]],[[9051,6746],[8,-3],[-1,-12]],[[9058,6731],[12,19],[-4,7],[9,-1],[-3,-7],[2,-11],[11,10],[7,-7]],[[9092,6741],[8,10],[-1,16],[3,0],[-4,22],[8,4],[3,8]],[[9109,6801],[0,11],[-4,8]],[[9105,6820],[-9,-2],[-1,-7],[-8,3],[-17,-9],[13,17],[-11,3],[-6,-11],[-16,-9],[-11,1]],[[9133,6642],[7,13],[7,-3],[-2,28],[-5,-3],[-1,17],[6,5],[5,-6],[-1,13],[-5,1],[0,13],[5,1],[1,-11],[9,9]],[[9159,6719],[-3,15],[-5,-1],[4,11]],[[9155,6744],[-6,-1],[-1,-11],[-8,-4],[-4,-8],[-17,-5]],[[9119,6715],[6,-2],[-1,-17],[-8,-10],[5,-10],[-4,-16]],[[9117,6660],[7,-4],[1,-15]],[[9125,6641],[8,1]],[[9165,6956],[6,10],[9,0],[2,7],[-6,8],[7,0],[0,8],[-11,17],[-7,6],[-5,13]],[[9160,7025],[-7,-2],[6,-42],[-4,-4],[7,-4],[1,-17]],[[9163,6956],[2,0]],[[9169,6534],[-3,13],[-8,7],[4,10]],[[9162,6564],[-11,13]],[[9151,6577],[4,-18],[-9,-2],[-5,-10]],[[9141,6547],[-2,-25],[2,-25],[-4,-11]],[[9137,6486],[2,-16]],[[9139,6470],[9,5],[0,23],[15,11],[-2,13],[2,9],[6,3]],[[9227,6566],[-1,6],[9,9],[-2,14],[-4,0],[-1,17],[3,1]],[[9231,6613],[-7,18],[-8,-6]],[[9216,6625],[-3,-3]],[[9213,6622],[6,-10],[-8,-5],[3,-15],[-7,0],[4,-15]],[[9211,6577],[4,-11],[5,-1]],[[9220,6565],[7,1]],[[9442,6428],[-2,33],[4,1]],[[9444,6462],[-3,33]],[[9441,6495],[-4,14],[-5,-6]],[[9432,6503],[-12,-6],[-5,8],[-9,-1],[0,7],[-9,2],[-2,17],[-4,-1],[-1,13],[-5,8],[-16,2]],[[9369,6552],[2,-17],[-18,-4],[1,-13],[-13,3],[0,-8],[-6,-5],[11,1],[1,-11],[-12,-1],[-1,-17],[-5,4],[1,-12],[-6,-10],[14,0],[1,-23]],[[9339,6439],[8,-2],[20,1],[25,-6],[-1,-7],[6,-7],[-13,-6],[13,0],[1,11],[10,-1],[19,3],[1,-3],[14,6]],[[9213,6622],[-4,13],[-9,-3]],[[9200,6632],[-12,-5],[-6,8],[-1,-9]],[[9181,6626],[-4,-13],[10,2],[4,-9],[-15,-7],[-2,-7]],[[9174,6592],[14,-7],[0,-8],[8,2]],[[9196,6579],[5,7],[10,-9]],[[9589,6590],[3,14],[-15,-9],[0,26],[-4,15],[-9,-2],[-3,10],[2,-25],[-3,8],[-8,-1],[0,-11],[-12,-3],[-1,5],[-10,-2]],[[9529,6615],[1,-6],[-14,4],[-1,-33],[5,-8],[4,-18]],[[9524,6554],[11,1],[-1,-6],[17,5],[-1,6],[15,-4],[4,6],[8,-2],[-1,14],[11,-1],[4,-7],[0,-10],[7,0],[-1,12],[-5,3],[2,9],[-5,1],[0,9]],[[9251,6479],[15,12],[11,-2]],[[9277,6489],[-2,17],[-5,3],[9,10]],[[9279,6519],[-8,4],[0,15],[-5,-1]],[[9266,6537],[-3,-10],[-10,1],[4,5],[-13,2],[-3,-8]],[[9241,6527],[-8,3],[2,-13]],[[9235,6517],[4,-4],[-2,-11],[-8,3],[3,-20]],[[9232,6485],[9,-6],[10,0]],[[9284,6866],[4,2],[2,14],[-8,17],[10,6],[-2,45],[5,6]],[[9295,6956],[0,5],[-11,-2],[-2,16]],[[9282,6975],[-6,0]],[[9276,6975],[0,-23],[-11,0],[-12,-13]],[[9253,6939],[-6,-6],[7,-4],[-11,-14]],[[9243,6915],[-1,-4],[-16,2],[1,-8],[-6,-3],[-2,-14]],[[9219,6888],[2,-8],[12,-1],[2,-13],[-4,-8],[2,-16],[5,4]],[[9238,6846],[4,8],[3,-6],[9,15],[5,-15],[6,0],[-4,18],[9,2],[7,-8],[0,8],[7,-2]],[[8260,6645],[0,0]],[[8267,6636],[0,0]],[[8268,6635],[0,0]],[[8266,6636],[0,0]],[[8235,6601],[0,0]],[[8886,6633],[7,1],[-4,11],[6,2]],[[8895,6647],[-2,34],[18,0]],[[8911,6681],[11,34],[-18,-6],[-8,23],[-7,-10],[-10,16],[-6,-9],[-32,1]],[[8834,6678],[13,-67],[9,-22],[42,-43]],[[8898,6546],[10,-9],[0,32],[-22,28],[-11,33],[11,3]],[[9432,6503],[-2,12],[6,18],[-1,22],[6,3],[3,12],[-5,7],[1,22],[5,0],[2,18],[-5,1],[-4,13]],[[9438,6631],[-9,-1],[-5,18],[-8,0],[-7,-9],[-2,10],[-4,-3],[0,14]],[[9403,6660],[-6,-7],[1,-10],[-5,3],[-9,-4]],[[9384,6642],[-2,-13],[2,-24],[-14,-3],[0,-24],[-3,-4]],[[9367,6574],[1,-17]],[[9368,6557],[1,-5]],[[9120,6530],[3,14],[14,1],[1,5]],[[9138,6550],[-10,9],[-4,-8],[-5,11],[1,13]],[[9120,6575],[-13,-6],[-7,-7],[3,-28],[4,-3]],[[9107,6531],[13,-1]],[[9497,6766],[2,14],[4,1],[0,12],[4,3]],[[9507,6796],[-6,15],[-13,0],[-4,11],[-5,2],[-1,15],[-10,7],[-9,0]],[[9459,6846],[-3,-4]],[[9456,6842],[5,-5],[2,-15],[18,-11],[2,-10],[-12,-3],[5,-11],[-9,-7],[5,-9]],[[9472,6771],[0,-21],[6,3],[-3,10],[17,-3],[5,6]],[[9181,6722],[-1,30],[4,9],[-6,-1],[1,16],[-9,1]],[[9170,6777],[-4,-2],[-4,9],[2,-16],[-8,-1],[4,-11],[-8,5],[3,-17]],[[9159,6719],[5,8],[2,-11],[10,-1],[5,7]],[[9287,7040],[-9,-1],[1,25]],[[9279,7064],[-12,-3],[-18,-10],[0,-5]],[[9249,7046],[3,1],[3,-14],[10,-29],[7,-2],[-1,-14],[4,0],[1,-13]],[[9282,6975],[-2,14],[7,6],[-6,6],[3,13],[-4,8],[7,4],[0,14]],[[9436,6798],[0,10],[15,-2],[-3,20],[-15,5],[1,12],[-14,1],[5,8],[8,-4],[23,-6]],[[9459,6846],[-11,5],[2,17],[-7,-2],[-14,14],[-4,34]],[[9425,6914],[-18,-3],[-3,50]],[[9404,6961],[-5,0],[-1,20],[-13,-7],[3,-32],[-2,0],[1,-29],[-2,-25],[7,0],[1,-16],[6,-1],[0,-37],[-3,0],[-2,-20],[-9,-18]],[[9385,6796],[14,3],[0,-14],[12,5],[14,-1],[11,9]],[[9105,6822],[7,1],[6,9],[16,4],[0,-3]],[[9134,6833],[4,15],[5,0],[-3,17],[8,4],[-1,18]],[[9147,6887],[-1,7],[-7,8],[-18,-2]],[[9121,6900],[-3,-6],[1,-14],[-8,-8]],[[9111,6872],[-18,-7],[1,-13],[13,-8],[-2,-22]],[[9612,6879],[-4,0],[2,-24],[-22,-3],[-1,-7],[12,3],[-2,-8],[1,-29],[-5,-1],[-3,-17],[-8,1],[0,-8],[6,-13],[-6,-3],[3,-17],[-7,-4],[4,-10],[13,1],[-2,-8],[-6,-1],[4,-24],[17,-10],[-2,-20]],[[9606,6677],[7,4],[2,-17],[11,3],[0,-9],[9,-10],[10,0],[0,-14],[4,-9],[-2,-20]],[[9647,6605],[18,12],[6,0],[-1,-8],[20,2],[7,7],[1,-19],[12,1],[1,7],[13,2],[1,26]],[[9115,6503],[5,2],[2,18],[5,-1]],[[9127,6522],[-7,8]],[[9107,6531],[-7,-4],[2,-17],[-4,-2],[0,-12]],[[9098,6496],[14,3],[3,4]],[[9519,6975],[-1,-37],[-5,0],[-5,-33],[5,-28],[8,9],[1,-35],[-7,-3],[-3,-17]],[[9512,6831],[6,-18],[-3,-3],[0,-15]],[[9515,6795],[4,-11],[15,-2],[8,39],[-4,21],[4,17],[13,0],[-2,20],[-3,1],[1,28],[4,9],[14,2],[3,25]],[[9450,6915],[-3,32],[9,0],[8,20],[-1,28]],[[9374,7082],[5,-8],[0,-12],[10,3],[1,-33],[8,2],[1,-9]],[[9399,7025],[3,-5],[0,-23],[7,0],[-1,-13],[3,-20],[-7,-3]],[[9425,6914],[4,-6],[21,7]],[[9042,6795],[-15,-3]],[[9027,6792],[-9,-19],[-17,-13],[-15,-2],[0,3]],[[8986,6761],[-9,-2],[4,-14],[-26,-8]],[[8955,6737],[3,-16],[5,0]],[[8963,6721],[16,2],[7,-18],[3,1],[-1,21],[6,2],[2,-28],[5,0],[1,-11]],[[9002,6690],[6,0],[1,13],[8,7],[4,9],[4,-4],[3,8],[12,-11],[4,6],[-3,12],[7,6],[-2,9],[5,1]],[[9204,6860],[-4,28]],[[9200,6888],[-3,11],[-8,-5],[-6,16],[-6,-3]],[[9177,6907],[-6,-16]],[[9171,6891],[9,-20]],[[9180,6871],[2,-17],[4,-7],[12,7],[8,0],[-2,6]],[[9157,6891],[2,6],[-4,20],[-16,-10],[-3,12],[5,23]],[[9141,6942],[-3,3]],[[9138,6945],[-5,-6],[-3,11],[-5,-5],[-5,-18],[3,-8],[-7,-1],[5,-18]],[[9147,6887],[10,4]],[[9193,6448],[-7,17],[6,3],[-1,13],[-5,3],[-1,19]],[[9185,6503],[-11,2],[-5,-18],[-14,-4],[-5,7],[1,-19],[9,-16],[-8,-1],[-4,-8],[2,-16],[-4,-1]],[[9146,6429],[0,-7],[-12,1]],[[9134,6423],[16,-5],[25,-4]],[[9175,6414],[-1,25],[2,7],[17,2]],[[9293,6403],[-5,15],[-5,6],[1,15],[-7,-2],[-2,12],[7,4],[2,27],[6,-2]],[[9290,6478],[-1,12],[-12,-1]],[[9251,6479],[0,-22],[3,-19],[-2,-10],[-5,0],[2,-16],[5,-1],[1,-13]],[[9255,6398],[31,-8]],[[9286,6390],[5,0],[2,13]],[[9434,6304],[0,16],[10,9],[7,-14],[11,2],[0,16],[-8,-2],[0,7],[-11,-3],[0,7]],[[9443,6342],[-4,-1],[0,19],[-5,8],[-6,-1],[3,-11],[-8,2],[2,9]],[[9425,6367],[-13,4],[-6,-3],[-13,2],[0,7],[-7,0],[1,26],[-13,11],[4,-9],[-1,-24],[-21,-1],[-1,14],[-4,8],[15,2],[0,8],[-23,-4],[-1,6],[-8,-8],[-22,7],[-19,-1],[0,-9]],[[9286,6390],[16,-2],[11,-5],[17,-3],[11,-10],[13,-3],[19,-14],[2,-6],[15,-18],[3,-9],[8,-7],[33,-9]],[[9425,6367],[2,16],[7,-9],[6,1],[3,14],[-6,-1],[4,15],[1,25]],[[9339,6439],[-22,1],[-4,36],[-7,-10],[-7,2],[-2,10],[-7,0]],[[9462,6655],[1,16]],[[9463,6671],[-8,3],[2,19],[-8,-7],[-3,-13],[-4,-1],[-5,28],[2,9],[-9,5],[-1,11],[5,8],[-12,1],[-11,7],[-1,-10],[-15,1],[1,-17],[-5,-1],[-2,16],[-8,2]],[[9381,6732],[-7,-4]],[[9374,6728],[1,-6]],[[9375,6722],[7,2],[2,-12],[4,5],[3,-18],[5,3],[0,-11],[9,6],[8,-15],[1,-10],[-12,-3],[1,-9]],[[9438,6631],[8,6],[8,-6],[-2,9],[7,2],[-1,13],[4,0]],[[9358,6556],[-2,10],[-17,3],[-1,10],[-23,-2],[-2,-5],[-9,6],[2,-14],[10,-3],[4,10],[1,-17],[-10,0]],[[9311,6554],[0,-11],[-10,-9],[7,-17],[12,2],[9,14],[8,2],[0,7],[15,-2],[1,15],[5,1]],[[9508,6518],[9,1],[3,11],[-3,19],[4,10],[3,-5]],[[9529,6615],[4,18],[-9,4],[-6,-17],[-3,16],[-5,0],[-2,26],[-5,0],[-5,13],[6,5]],[[9504,6680],[-5,5],[-9,-11]],[[9490,6674],[-5,-1],[-4,-25],[-7,-11],[-4,14],[-8,4]],[[9441,6495],[7,1],[1,18],[31,7],[8,-3],[1,10],[15,3],[4,-13]],[[8841,6731],[14,0],[0,65],[5,0],[-1,-45],[31,32],[3,15],[10,-2],[-4,9],[1,10],[9,5],[10,-7],[8,6],[-1,13],[18,2],[-4,21],[9,7],[2,-18],[10,8],[-1,17]],[[9201,6672],[7,12]],[[9208,6684],[7,8],[-2,14],[9,-3],[1,7],[6,-5],[1,12]],[[9230,6717],[-6,5]],[[9224,6722],[-16,-13],[-13,8]],[[9195,6717],[-11,6]],[[9184,6723],[3,-12],[-6,-11],[-7,-3],[1,-7],[8,1],[5,-10]],[[9188,6681],[-1,-9],[10,5],[4,-5]],[[9216,6625],[4,7],[-1,21],[3,-5],[8,4],[2,8],[6,-8],[19,12],[4,7],[-1,19]],[[9260,6690],[-7,0]],[[9253,6690],[-5,-14],[-7,5],[-7,-4],[-18,-1],[-8,8]],[[9201,6672],[7,-23],[-7,-5],[-1,-12]],[[9217,6729],[-7,17],[3,7],[-2,15],[7,-4],[7,11],[-2,9],[5,1],[-2,11]],[[9226,6796],[-11,-13],[0,9],[20,28],[-4,15]],[[9231,6835],[-1,-1]],[[9230,6834],[1,-11],[-4,-16],[-15,2],[-2,-20],[-8,-5],[-17,-1],[0,9],[-5,8],[-6,-3],[1,8],[-10,-4]],[[9165,6801],[-1,-6],[6,-18]],[[9181,6722],[3,1]],[[9195,6717],[11,2],[-3,19],[10,-3],[4,-6]],[[9254,6734],[-1,19],[5,1]],[[9258,6754],[-5,12],[5,12],[-6,12],[-4,0],[-3,11],[-6,0],[-5,10],[-8,-15]],[[9217,6729],[7,-7]],[[9230,6717],[22,8],[2,9]],[[9013,6508],[5,10],[-1,14],[4,5],[0,25],[4,12],[-2,6],[0,22],[2,6]],[[9025,6608],[-6,13],[3,3],[-3,15]],[[9019,6639],[-1,7],[-6,-3],[-7,4],[-4,-21],[-6,-1]],[[8995,6625],[5,-10],[0,-11],[-5,-7],[-5,7],[-8,-1],[1,-11],[-21,-12],[-10,1],[-3,16],[-12,1],[0,-7],[-9,-1],[-3,13],[-20,-1],[0,8],[-8,-2],[-11,25]],[[8898,6546],[11,-13],[21,-20],[33,-12],[22,-23],[19,-13]],[[9004,6465],[0,37],[9,6]],[[9146,6429],[-6,-1],[-1,17],[3,0],[-3,25]],[[9137,6486],[-3,2],[-7,34]],[[9115,6503],[-1,-37],[5,-21],[0,-17],[4,-3]],[[9123,6425],[11,-2]],[[9337,6617],[-5,8],[-7,-3],[-2,24],[7,3],[3,14],[-7,16]],[[9326,6679],[-3,-8],[-12,20],[-3,-15],[4,-7],[-14,-17],[-8,-2],[-15,9],[3,-8],[-9,8],[-7,-4],[-1,13],[20,7],[-1,8],[11,8]],[[9291,6691],[-1,19],[2,13],[-8,-1],[-1,-13],[-5,-12],[-6,3],[-12,-10]],[[9231,6613],[14,-8],[0,11],[13,-10],[10,6],[-1,-14]],[[9267,6598],[11,5]],[[9278,6603],[5,0]],[[9283,6603],[17,-5],[0,-5],[16,3],[0,14],[12,0],[9,7]],[[9108,6606],[-2,11],[11,-4],[5,15],[6,2],[-3,11]],[[9117,6660],[-5,-2],[-7,18]],[[9105,6676],[-5,-11],[5,-6],[-5,-7],[-1,8],[-6,-2],[-5,-10],[1,-15],[11,-15],[2,-12],[6,0]],[[9313,6744],[-2,-6],[-12,-6],[2,18],[-18,3],[-5,10],[2,-18],[-10,-1],[-4,9],[11,7],[-4,5],[-15,-11]],[[9254,6734],[9,2],[-1,-11],[-7,-21],[-5,-5],[3,-9]],[[9291,6691],[3,-6],[12,19],[4,-5],[11,6],[-9,8],[-1,16],[2,15]],[[9436,6798],[1,-18],[3,5],[10,-1],[7,4],[0,-7]],[[9457,6781],[7,-12],[8,2]],[[8990,6636],[-3,13],[3,2],[-4,17],[4,1],[-6,11],[0,-10],[-12,5],[1,-6],[-8,-1],[-2,-8],[-2,19],[7,3],[0,11],[-5,28]],[[8955,6737],[-19,-5],[-1,-23],[-10,5],[1,-14],[-2,-17],[-13,-2]],[[8895,6647],[38,6],[0,-10],[11,0],[10,-5],[-2,20],[3,-7],[6,1],[8,-7],[-5,-18],[7,-5],[21,9],[-2,5]],[[9027,6792],[-7,-1],[2,9],[-7,12],[-20,0],[-11,-15],[-1,15],[-9,-1]],[[8974,6811],[-6,-10],[1,-9],[-6,-1],[-3,-9],[-7,-2],[1,-11],[12,3],[3,11],[16,-7],[1,-15]],[[9152,6825],[1,14],[6,5],[-1,8],[9,0],[3,-5],[2,22],[8,2]],[[9171,6891],[-4,-3],[-10,3]],[[9134,6833],[5,-6],[2,8],[7,0],[-2,-11],[6,1]],[[9177,6907],[0,15],[4,0],[-3,19],[-6,-2],[2,13]],[[9174,6952],[-9,4]],[[9163,6956],[-7,-3],[-5,8],[-3,-8],[0,-14],[-7,3]],[[8974,6811],[-1,15],[12,7],[-7,19],[12,5],[-1,9],[9,2],[-1,12],[19,3]],[[9016,6883],[-1,19],[-8,26],[-5,0],[0,14]],[[9002,6942],[-10,-6]],[[9231,6835],[7,4],[0,7]],[[9219,6888],[-5,16],[-7,-3],[-7,-13]],[[9204,6860],[9,-1],[7,-11],[-1,-8],[4,-9],[7,3]],[[9120,6575],[12,2],[-2,6]],[[9130,6583],[-8,6]],[[9122,6589],[-3,4],[0,17],[15,6],[-9,7],[-7,-18],[-10,1]],[[9105,6676],[2,7],[-10,-2],[-5,12],[10,6],[-8,24],[-2,18]],[[9058,6731],[0,-17],[-5,3],[0,-16],[6,9],[1,-18],[-4,7],[-4,-8],[12,-3],[5,-17],[-5,0],[0,-12],[-8,-4],[7,-8],[-4,-14],[-11,13],[-1,-21],[-7,-4],[0,-10]],[[9040,6611],[3,-19],[10,-16],[-1,-10],[-8,3],[0,-11],[-4,-10],[-6,-1],[-5,-26],[-5,-5]],[[9024,6516],[5,-14],[8,2],[1,-8],[11,-1],[4,17],[2,-8],[7,2],[0,9],[7,4],[4,-23],[12,4],[0,-7],[13,3]],[[9141,6547],[-3,3]],[[9185,6503],[11,3],[9,-7],[-3,9],[6,1],[0,-12]],[[9208,6497],[1,-12],[5,1],[5,11],[8,-11],[0,-19],[3,-1]],[[9230,6466],[2,19]],[[9235,6517],[-3,-10],[-15,6],[1,16],[-6,-1],[-3,12],[11,3],[2,13],[-2,9]],[[9196,6579],[-1,-6],[-11,-1],[1,-10],[-10,-7],[-2,-18],[-4,-3]],[[9083,6901],[-5,2],[1,13],[-16,-8],[-5,17],[-9,-6],[-2,25]],[[9047,6944],[-6,5],[0,-10],[-9,-6],[-4,17],[-26,-8]],[[9016,6883],[1,-6],[10,0],[2,-32],[7,0],[2,-31]],[[9038,6814],[17,17],[-1,11],[7,8],[0,-18],[16,-1],[0,29],[-3,6],[1,28],[8,7]],[[9174,6592],[-8,5],[0,-20],[-6,-1],[5,-7],[-3,-5]],[[9039,6806],[-1,8]],[[9160,7025],[-1,9],[-9,-1],[-6,12],[2,6],[15,6],[1,14],[-11,2],[0,-9],[-6,-8],[-2,29],[9,4],[0,7],[8,3],[0,16],[-42,-5],[-8,14],[-16,39],[-2,9]],[[9041,7034],[16,-4],[0,-7],[11,-3],[7,6],[-7,14],[11,8],[3,-19],[11,-13],[2,-12],[-6,-7],[-2,-13]],[[9087,6984],[19,5],[0,8],[11,1],[0,-7],[8,1],[3,-17],[-15,-11],[-2,-17],[14,13],[4,9],[13,-19],[-4,-5]],[[9561,6375],[-8,2],[-1,18],[6,-2],[-6,12],[-2,17],[-7,2],[-2,13],[-5,-7],[-4,8],[-5,-2],[-2,26],[-14,7],[3,11],[-8,-1],[-3,8]],[[9503,6487],[-1,-11],[-10,-2],[5,-13],[-11,-3],[-1,-12],[9,-1],[-6,-8],[-15,-3],[-16,1],[-5,16],[-6,-2],[-2,13]],[[9443,6342],[1,20],[11,-4],[0,7],[9,-1],[1,-7],[16,5],[24,4],[6,20],[14,2],[4,-19],[11,-7],[0,-10]],[[9540,6352],[0,-12],[11,0],[0,15],[-4,12],[6,1],[5,-18],[3,25]],[[9291,7228],[-13,-3],[3,-39],[9,3],[-2,14],[12,1],[3,-11],[2,-32],[-2,-10],[-9,-4],[0,-10],[-7,-2],[-10,-22],[7,-3],[3,-17],[-6,-14],[-2,-15]],[[9287,7040],[19,3],[2,-20],[22,3],[5,-11],[-4,-9],[10,-1],[0,-17]],[[9341,6988],[0,-11],[14,-11],[-2,9],[19,13],[-1,7],[11,2],[-1,21],[18,7]],[[9024,6516],[-7,-28],[-4,20]],[[9004,6465],[51,-21],[11,-1],[57,-18]],[[8305,6145],[0,0]],[[8524,5998],[0,0]],[[8526,5994],[0,0]],[[8517,5994],[0,0]],[[8518,5993],[0,0]],[[8523,5991],[0,0]],[[9066,5855],[0,0]],[[9068,5855],[0,0]],[[9067,5851],[0,0]],[[9058,5847],[0,0]],[[9060,5847],[0,0]],[[9061,5843],[0,0]],[[9061,5841],[0,0]],[[9042,5818],[0,0]],[[9038,5814],[0,0]],[[9038,5810],[0,0]],[[9042,5810],[0,0]],[[9035,5806],[0,0]],[[9032,5805],[0,0]],[[9035,5803],[0,0]],[[9036,5801],[0,0]],[[9037,5801],[0,0]],[[9032,5793],[-3,6],[-1,-20],[4,14]],[[9038,5779],[0,0]],[[9039,5776],[0,0]],[[9035,5780],[0,0]],[[9044,5779],[0,0]],[[9047,5772],[0,0]],[[9037,5762],[0,0]],[[9031,5765],[0,0]],[[9045,5764],[0,0]],[[9043,5769],[0,0]],[[9035,5759],[0,0]],[[9042,5757],[0,0]],[[9043,5754],[0,0]],[[9036,5754],[0,0]],[[9042,5751],[0,0]],[[9042,5746],[0,0]],[[9030,5777],[0,0]],[[9032,5745],[0,0]],[[9033,5744],[0,0]],[[9025,5744],[0,0]],[[9026,5739],[0,0]],[[9027,5737],[0,0]],[[9032,5740],[0,0]],[[9031,5731],[0,0]],[[9030,5729],[0,0]],[[9047,5727],[10,2],[8,6],[15,22],[14,31],[0,19],[-3,21],[-8,19],[-7,9],[-7,1],[4,-7],[-9,-1],[4,-5],[-12,-9],[-1,11],[-3,-16],[-10,-10],[12,0],[-12,-12],[-8,-18],[0,-9],[9,4],[7,-12],[0,-8],[-11,-16],[-4,-19],[10,2],[2,-5]],[[9375,6722],[5,-16],[-3,-16],[6,-2],[0,-13],[-5,-5],[5,-13],[1,-15]],[[9636,6288],[-23,5],[-19,-4],[-2,20],[-22,-1],[-4,5],[3,62],[-8,0]],[[9540,6352],[-14,-1],[1,-15],[7,2],[1,-13],[-3,-19],[1,-35]],[[9533,6271],[13,-11],[9,0],[21,7],[30,1],[30,20]],[[9105,6820],[0,2]],[[9111,6872],[-5,4],[0,10],[-12,-1],[-2,15],[9,8],[-2,8],[-7,-12],[-9,-3]],[[9019,6639],[3,5],[-5,7],[1,8],[-19,-1],[3,10],[-5,2],[0,15],[5,5]],[[8990,6636],[5,-11]],[[9434,6304],[31,-12],[15,1],[9,6],[17,-2],[11,-6],[0,-7],[16,-13]],[[9047,6944],[6,-5],[11,7],[-2,-15],[8,1],[7,10],[3,-9],[8,6],[-1,17],[-5,11],[0,10],[6,0],[-1,7]],[[9168,6651],[-3,22],[9,-1],[6,-9],[-1,11],[9,7]],[[9133,6642],[3,-10],[4,2]],[[9140,6634],[8,4],[11,11],[-3,-8],[0,-15],[8,14],[-2,9],[6,2]],[[9208,6497],[-8,-18],[-1,-14],[9,-10],[-9,-8]],[[9199,6447],[-6,-3],[0,-10],[11,3],[2,-9],[-1,-19]],[[9205,6409],[22,-4]],[[9227,6405],[-1,13],[-5,-1],[0,10],[8,9],[-5,0],[-1,17],[5,1],[2,12]],[[9313,6744],[-1,9],[6,6]],[[9318,6759],[-5,7],[-3,14],[6,-3],[11,4],[0,20],[5,8],[-9,0],[-5,18],[-4,-2],[-1,23],[-7,-11],[-6,-2],[2,11],[-7,1],[-1,18],[-10,1]],[[9503,6487],[3,11],[9,-2],[-1,16],[-6,6]],[[9326,6679],[-3,7],[-1,18],[9,2],[0,-10],[12,1],[0,16],[12,1],[0,10]],[[9355,6724],[-9,-4],[2,14],[-16,1],[0,14],[-8,3],[4,8],[-2,13],[-8,-14]],[[9241,6527],[-1,8],[8,5],[2,8],[-10,0],[-1,9],[5,9]],[[9244,6566],[-17,0]],[[9295,6956],[10,0],[9,7],[-1,7],[14,2],[8,5],[-3,10],[9,1]],[[9168,6651],[6,1],[1,-30],[6,4]],[[9243,6915],[-13,46],[-17,0],[-6,-12],[-2,7],[-11,0],[-10,-6],[-10,2]],[[9165,6801],[-13,24]],[[9109,6801],[4,-33],[6,-9],[-7,-1],[-5,-9],[-5,3],[1,-15],[-6,0],[2,-10],[-4,-5],[6,-5],[-1,11],[18,-6],[1,-7]],[[9367,6574],[-1,9],[-15,3],[-1,8],[7,0],[-9,19],[-10,-2],[-1,6]],[[9283,6603],[1,-16],[-4,-7],[9,-12]],[[9289,6568],[1,-15],[12,10],[3,-11],[6,2]],[[9358,6556],[10,1]],[[9244,6566],[0,7],[9,6],[2,9],[8,12],[4,-2]],[[9232,7054],[-6,17],[6,5],[-3,8],[8,1],[-1,19],[-4,16],[9,3],[-4,7],[-2,18],[5,1],[4,20],[-6,42],[-7,-1],[3,11],[-3,26],[15,14],[-2,11],[7,1],[2,20]],[[9253,6939],[-2,13],[-5,7],[5,2],[-1,34],[-4,0],[2,-17],[-12,-3],[-6,9],[-6,27],[-7,12],[8,8],[5,-11],[3,14],[-1,20]],[[9512,6831],[-7,1],[-3,-8],[-4,5],[-10,0],[4,17],[-6,19],[-11,4],[1,16],[-4,-2],[0,28],[-7,20],[-8,-12],[-7,-4]],[[9507,6796],[8,-1]],[[9193,6448],[6,-1]],[[9175,6414],[30,-5]],[[9289,6568],[-5,-3],[-1,-12],[13,-11],[-3,-12],[-11,-11],[0,13],[-5,-3],[2,-10]],[[9606,6677],[2,-8],[-9,-1],[2,-8],[-11,0],[-3,6],[-1,20],[-12,7],[-7,-11],[-2,11],[-5,0],[-1,20],[-19,-4],[-3,3],[-14,-3],[-7,3],[-7,-10],[-5,-22]],[[9589,6590],[17,2],[8,7],[7,-2],[5,-8],[9,12],[12,4]],[[9278,6603],[-6,-15],[-9,0],[-4,-18],[0,-14],[5,-3],[2,-16]],[[9463,6671],[4,16],[2,22],[6,-6],[1,-18],[7,-2],[1,9],[9,4],[-4,8],[0,12],[-6,9],[-12,-1],[0,17],[-3,13],[-7,-6],[-8,4],[0,21],[4,8]],[[9385,6796],[-1,-14],[-4,2],[1,-24],[-8,-2],[8,-26]],[[9140,6634],[10,2],[2,-7],[-11,-9],[2,-24],[-10,-4],[-6,4],[-5,-7]],[[9130,6583],[6,-9],[15,3]],[[9249,7046],[-5,-4],[-1,14],[-11,-2]],[[9636,6288],[16,11],[23,12],[19,5],[40,15],[5,0]],[[9374,6728],[-6,0],[-7,-10],[-6,6]],[[9490,6674],[2,12],[7,4],[-2,15],[-5,8],[3,15],[7,4],[-1,14],[-7,0],[3,20]],[[9040,6611],[-15,-3]],[[9227,6405],[18,-2],[10,-5]],[[4877,6336],[3,14],[-4,6],[-1,17],[4,8],[-7,-1],[-5,21]],[[4867,6401],[-5,-5],[1,-13],[-19,-17],[-10,1],[-14,-16],[-13,4],[-4,-7],[-1,10],[-11,-6]],[[4791,6352],[13,-59]],[[4804,6293],[7,2],[3,10],[11,5],[0,-5],[9,3],[8,10],[6,-5],[4,13],[6,-6],[19,16]],[[4946,6388],[-2,-7],[14,-8],[-8,-24],[-9,3],[-5,-13],[0,-14],[8,-14],[-5,-10],[6,-13],[5,0]],[[4726,6204],[-18,17],[-1,9],[-8,11],[-3,13],[-9,-8]],[[4728,6113],[5,13],[4,-3],[25,14],[0,17],[-16,1],[-1,17],[-7,-3],[-5,8],[1,17],[-7,3],[-1,7]],[[4685,6286],[11,-2],[3,14],[3,-1]],[[4702,6297],[5,25]],[[4707,6322],[0,14],[5,10],[-4,3],[-1,15],[-5,16],[-4,3]],[[4983,5477],[3,8],[-2,10],[-9,0],[4,9],[-2,43],[-7,4]],[[4970,5551],[-3,11],[-8,0],[0,9],[-7,1],[-1,10],[-21,-1],[-4,10],[-1,14]],[[4925,5605],[-15,-2]],[[4910,5603],[-6,-3],[1,-26],[-12,-7]],[[4893,5567],[-4,-18],[5,-22]],[[4894,5527],[2,-4],[22,2],[0,7],[10,1],[4,6],[25,-14],[4,-19],[-5,-17],[-5,-5]],[[4951,5484],[5,-2],[5,-22],[5,-11],[16,20],[1,8]],[[4955,5148],[7,5],[10,-4],[3,13],[-4,8],[6,0],[8,29],[4,0],[12,20],[-4,15]],[[4997,5234],[-10,-8],[0,21],[-14,-24],[-4,8],[-8,3],[-21,-12],[-6,5],[-4,27],[-7,-1],[-3,6],[-9,3],[-5,-8],[-5,2],[-2,-12],[3,-6],[1,-19],[-4,-9]],[[4899,5210],[11,-8],[5,-16],[5,-31],[4,0],[2,-14],[13,6],[16,1]],[[5466,4644],[22,65],[7,23]],[[5425,4922],[-17,-10],[-20,-16],[-9,-15],[-6,-15],[-9,-9],[-9,-26],[13,-58],[3,-43],[2,-12],[1,-31],[-16,-3],[-2,-18],[4,-8],[-9,-15],[-7,-3],[-2,-15],[6,-1],[2,-10],[10,-11],[-7,-13],[5,-10],[-8,-21]],[[5089,5780],[-10,6],[3,23]],[[5027,5876],[-6,-4],[0,-13],[-15,-4],[4,-14],[10,-20],[4,-1],[2,-17],[11,12],[-1,7],[14,-4],[-4,-15],[9,-6],[-9,-21],[11,-4],[0,-10],[5,-6],[-6,-10],[5,-6]],[[5061,5740],[14,17],[16,-4],[-2,27]],[[4631,5353],[-16,1],[-6,8],[-1,-23],[-9,5],[-6,-3],[-6,8],[-7,-1],[0,13],[-7,4],[-12,-1],[-6,-6],[-6,-14],[-13,4],[-5,-3],[-8,7],[-1,-6],[-13,-3]],[[4583,5182],[7,1],[14,16],[2,13],[8,6],[-4,19],[2,14],[-5,5],[0,27],[19,-7],[3,20],[4,49],[-2,8]],[[4997,5234],[10,7],[0,16],[15,8],[0,10],[-10,27],[-13,17],[0,13],[17,14],[2,12],[-6,13],[1,10],[-7,5],[-2,10],[18,21],[-10,6],[-1,9],[-7,13],[-2,20],[-8,7]],[[4994,5472],[-11,5]],[[4951,5484],[-7,-4],[-6,4],[-4,-8],[-14,0],[-13,5],[4,7],[-11,1],[-1,15],[-8,-1],[0,23],[3,1]],[[4893,5567],[-10,-9],[-8,10],[-10,2],[-5,-12],[-8,0],[-8,10],[-12,-8],[-6,5],[-5,21],[-10,9],[-4,-13],[-11,-5]],[[4796,5577],[-8,-9],[-5,0],[4,-9],[3,-19],[-8,-7],[2,-23],[-6,1],[-10,-16],[-3,3],[-14,-11],[-16,-5],[-9,-16],[-1,-15],[-7,3],[-10,-6],[-9,-1],[1,-15],[-3,-5]],[[4697,5427],[3,-15],[6,-3],[-2,-20],[5,-18],[3,-25],[-11,-10],[-5,-14],[3,-1],[-2,-14],[7,-2],[3,-14]],[[4707,5291],[26,-2],[19,5],[6,-8],[5,-14],[7,4],[11,-4],[7,9],[-1,9],[12,3],[6,-9],[8,8],[6,-11],[14,-9],[13,-4],[0,-8],[21,-5],[6,5],[0,-69]],[[4873,5191],[8,1],[12,17],[6,1]],[[4730,6446],[3,20],[-3,20],[-5,13],[-10,7],[-3,13]],[[4663,6492],[9,-5],[6,2],[-1,-23],[10,-6],[-1,-8],[10,-3],[0,-10],[13,-6],[6,-9],[10,-5],[5,27]],[[4969,5723],[3,8],[15,-5],[9,6],[6,-3],[-4,26],[12,8],[10,-1],[-3,-7],[1,-13],[8,2],[1,-24],[14,12]],[[5041,5732],[13,2],[7,6]],[[4983,5900],[3,-10],[-2,-13],[-12,-11],[-2,-18],[-10,-19],[-4,0],[1,-12],[9,-21],[0,-12],[-4,-7],[-11,0],[0,-6],[-10,-9],[6,-16],[4,-25],[6,0]],[[4957,5721],[12,2]],[[4945,5080],[-1,-30],[-7,-9],[-21,-11],[-3,3],[-44,-1],[-2,10],[-10,-5],[-7,-14],[-21,5],[-14,-8],[-10,-20],[-26,-66]],[[4779,4934],[6,0],[0,-49],[-2,-9],[5,-6],[-5,-16],[15,-4],[-10,-31],[-4,-26],[17,4],[8,-5],[5,-11],[-22,-9],[9,-16],[-5,-2],[1,-16]],[[4983,4749],[13,7],[2,21],[5,-1],[2,11],[8,-7],[14,29],[8,8],[7,14],[1,15],[20,9],[1,32],[9,0],[3,8],[10,3],[-1,46],[3,20]],[[5088,4964],[-10,17],[-27,-8],[-24,-9],[-5,19],[-22,-22],[-2,17],[-6,9],[-8,-3],[8,15],[13,0],[-1,20],[5,4],[-2,21],[-7,13],[-13,15],[-12,10],[-30,-2]],[[4884,6026],[-14,3],[-15,46],[3,0],[-1,17],[-10,10],[9,6],[0,13],[-15,1],[-8,8]],[[4833,6130],[-9,-7],[0,-5],[-11,-4],[0,-12]],[[4813,6102],[3,-18],[-1,-11],[-9,-14]],[[4827,6032],[16,2],[3,-37],[6,3],[1,-9],[7,-8],[7,-1],[9,6],[-2,10],[3,12],[7,-2],[0,18]],[[5192,5704],[-16,-4],[-11,25],[0,6],[-10,9],[-7,17]],[[5148,5757],[2,17],[-15,-4],[1,-21],[-6,2],[1,-9],[-6,-2],[-5,-25],[-6,-9],[7,-13],[-1,-21],[6,0],[-12,-18],[-10,1],[-6,5]],[[5098,5660],[0,-7],[9,-48]],[[5107,5605],[7,-26]],[[5107,5605],[-9,4],[-41,13],[-8,22],[3,22],[7,13],[3,12]],[[5062,5691],[-13,9],[-2,16],[-6,-3],[0,19]],[[4969,5723],[2,-6],[11,-2],[6,-20],[7,0],[0,-12],[5,-7],[-2,-14],[6,-12],[2,-13]],[[5006,5637],[10,-5],[7,-9],[10,0],[7,-18],[5,0],[6,-18],[1,-15],[-7,-3],[1,-29]],[[5046,5540],[22,-1],[0,-9],[5,-7],[20,-2],[0,-10],[9,-9]],[[4922,6235],[-13,-19],[0,-8],[-8,-12],[-5,9],[-12,11],[-13,-9],[-11,4],[-8,-18],[-10,-15],[-8,0]],[[4834,6178],[0,-24],[3,-5],[-4,-19]],[[4833,6130],[23,6],[4,8],[10,0],[2,9],[15,1],[10,-6],[0,-10],[5,-5]],[[4923,6237],[-6,4],[2,20],[-13,-4],[0,6],[-9,37],[-10,15],[-9,8],[-1,13]],[[4804,6293],[3,-11],[-9,-1]],[[4798,6281],[-3,-9],[11,-8],[-2,-7],[6,-2]],[[4810,6255],[10,-1],[1,-21],[9,-10],[-2,-14],[7,0],[2,-20],[-3,-11]],[[4910,5603],[-1,16],[12,2],[15,13],[0,8],[-7,2],[1,18],[5,3],[-6,13],[-2,14]],[[4927,5692],[1,23],[3,15],[-10,5],[-4,8],[2,20],[-7,-4],[-13,7],[-8,-11],[-8,8],[4,16],[-13,10]],[[4874,5789],[-16,-18],[-1,6],[-9,-5],[-6,11],[-1,-24],[-15,-6],[0,-5]],[[4826,5748],[9,-16],[-2,-21],[-9,-7],[-5,5],[-8,-17],[2,-8],[-12,4],[-9,-7]],[[4792,5681],[-7,-10],[-1,-52],[5,-2],[2,-13],[7,-1],[2,-14],[-4,0],[0,-12]],[[4631,5353],[-2,21],[13,4],[1,19],[12,-8],[-3,8],[1,14],[-14,0],[-12,18],[-10,0],[-5,15],[2,9],[-6,2],[-1,9],[-6,-3],[-11,6],[-7,15]],[[4583,5482],[-2,14],[-10,0],[4,-14],[-9,5],[-3,-5],[-13,-2],[-16,7],[-11,16],[-10,-4],[-8,4],[3,17],[-4,7],[-10,2]],[[4779,4934],[-1,-1]],[[4778,4933],[-9,-23],[-27,-63],[-6,-17],[-12,-58]],[[4867,6401],[-13,15],[-4,20]],[[4850,6436],[-25,-3],[0,-8],[-8,-6],[-11,1],[-13,-7],[-7,7]],[[4786,6420],[-7,-7]],[[4779,6413],[0,-31],[12,-12],[-4,-6]],[[4787,6364],[4,-12]],[[5140,5852],[9,10],[21,0],[0,7],[11,-4],[17,4],[10,11],[11,2],[4,16],[18,-3]],[[5241,5895],[-1,20],[2,8],[-8,4],[-2,7],[1,20],[12,7],[-1,7]],[[5244,5968],[-7,-4],[-17,3],[-12,-21],[1,-10],[-15,1],[-9,-4],[-9,6]],[[5125,5869],[9,-17],[6,0]],[[5141,5849],[-1,3]],[[5089,5780],[8,2],[7,-5],[8,8],[3,9],[-6,20],[-2,19],[23,3],[10,4],[1,9]],[[5033,4392],[10,8],[13,-3],[13,19],[9,20],[1,14],[8,2],[8,-6],[6,8],[8,-1],[11,13],[7,16],[5,2],[4,17],[6,7],[2,11],[41,26],[24,22],[35,24],[11,-14],[8,-2],[15,6],[1,15],[14,1],[14,-23],[-4,-19]],[[5344,5137],[-8,-16],[-10,-8],[-3,-9],[6,-6],[-1,-32],[-8,6],[-12,2],[-13,-12],[-13,1],[-4,-5],[-26,14],[-20,-11],[-22,-1],[-9,-5],[-6,10],[-8,-4],[-14,11],[-9,-27],[-5,-2],[-11,8],[-1,-29],[-2,-7],[-13,8],[-7,-19],[0,-11],[-11,0],[-23,-20],[-3,-9]],[[4786,6420],[2,16],[-9,2],[0,13],[8,11],[-3,10],[2,9],[-7,7],[-12,0],[4,14],[-1,21],[13,8],[-4,20]],[[4730,6446],[1,-9],[7,10],[9,-16],[4,-1],[4,-20],[24,3]],[[4778,4933],[-12,47],[-3,-3]],[[4763,4977],[-10,-13],[-12,21],[-11,1],[-1,-11],[-6,2],[-1,-8],[-11,3],[-14,-4],[-5,-7],[-12,3],[1,13],[-9,-4],[-5,6],[-20,-7],[-9,-11],[0,-6],[-13,-10],[-3,-18],[3,-7]],[[4813,6102],[-17,6],[-16,-6],[-18,14],[-11,0],[-13,-4]],[[4765,5711],[-1,9],[7,1],[3,8],[10,4],[-3,12],[3,5]],[[4784,5750],[-3,12],[-6,9],[-3,21],[-6,12],[1,29],[-3,13]],[[4668,5755],[13,-6],[3,5],[7,-5],[1,6],[10,6],[11,-10],[1,-22],[6,-4],[1,-11],[7,7],[1,-13],[8,-10],[9,14],[6,-6],[13,5]],[[4996,5596],[-5,7],[0,15]],[[4991,5618],[-2,9],[-10,2],[-1,-13],[-18,-1],[-20,6],[1,-16],[-16,0]],[[4970,5551],[-1,15],[5,1],[8,15],[4,-9],[10,23]],[[4850,6436],[-1,14],[-4,4]],[[5240,5803],[-8,38],[8,5],[-2,10],[-10,-2],[-4,13],[28,0],[-6,28]],[[5246,5895],[-5,0]],[[5141,5849],[14,-12],[7,-11]],[[5162,5826],[7,-6],[4,-12],[8,-1],[0,-7],[25,4],[5,4],[7,-6],[6,-16],[9,14],[6,3]],[[5148,5757],[15,11],[-1,19],[-6,0],[-4,10],[5,6],[5,23]],[[5062,5691],[15,-7],[18,0],[3,-7],[0,-17]],[[5046,5540],[-4,-6],[1,17],[-9,2],[5,8],[2,13],[-10,3],[-3,7],[-15,1],[-10,13],[-2,-10],[-5,8]],[[4994,5472],[16,6],[0,-14],[43,0],[0,-8],[26,7],[-13,14],[-3,16],[31,-3]],[[5238,6042],[7,-2],[3,-19],[-9,-20],[3,-5],[2,-28]],[[5246,5895],[7,3],[16,-3],[8,-19],[20,7],[-5,-10],[-2,-23],[5,-16],[4,4],[7,-13],[-8,-9],[-6,3],[-1,-9],[7,-12],[-7,0],[-7,-8],[0,-11]],[[4945,5080],[0,25],[12,11],[5,28],[-7,4]],[[4873,5191],[-21,4],[-1,-20],[-5,-5],[-8,4],[-14,-4],[0,-24],[5,-8],[-22,-2],[-5,10],[-10,-3],[4,-11],[0,-11],[-9,-11],[4,-8],[0,-13],[-23,6],[-11,9],[-10,4]],[[4747,5108],[2,-14],[-2,-16],[-6,-14],[-4,4],[0,-11],[6,1],[5,-18],[3,-1],[4,-27],[12,-4],[-1,-10],[-9,-6],[6,-15]],[[4707,5291],[2,-21],[5,-11],[7,0],[-9,-35],[-7,-9],[9,-31],[7,5],[14,-6],[9,-15],[-8,-8],[1,-13],[-5,-15],[11,2],[-1,-20],[5,-6]],[[4697,5427],[-14,7],[-4,-7],[-15,11],[-3,16],[-11,8],[-5,-9],[-10,1],[-16,9],[0,8],[-13,3],[-8,8],[-3,-3],[-12,3]],[[4826,5748],[-8,-11],[-10,0],[-8,-8],[-2,20],[-14,1]],[[4765,5711],[0,-10],[9,-11],[16,0],[2,-9]],[[4884,6026],[2,19],[16,-8],[3,19],[9,-3],[8,6]],[[4798,6281],[-10,14],[-4,30],[-4,-6],[-23,-4],[2,-12],[-17,-15],[-17,-2],[-26,-9],[3,20]],[[4726,6204],[10,3],[0,9],[6,-6],[7,2],[3,9],[17,-3],[0,8],[8,2],[5,9],[9,-2],[8,11],[9,1],[2,8]],[[4874,5789],[-3,13],[5,8],[-7,5],[-13,-4],[-4,28],[-6,13],[-9,4],[6,12],[-3,12],[6,17],[-1,11],[8,1],[-4,12],[-7,8]],[[4707,6322],[5,1],[14,12],[34,3],[11,4],[16,22]],[[5006,5637],[-6,-19],[-9,0]],[[4927,5692],[9,5],[3,-4],[8,12],[7,0],[-1,10],[4,6]],[[1062,289],[6,9]],[[1110,927],[0,1]],[[414,182],[0,-1]],[[414,180],[0,-2]],[[407,151],[0,0]],[[2556,4867],[0,2]],[[8745,7331],[-3,-13]],[[5456,3713],[1,2]],[[5457,3715],[0,2]],[[5551,4348],[0,1]],[[8195,9901],[0,0]],[[7896,8310],[0,0]],[[7954,8213],[0,0]],[[7965,8223],[0,0]],[[3735,553],[2,0]],[[3752,563],[1,1]],[[3753,564],[0,1]],[[3753,567],[0,0]],[[3757,572],[2,0]],[[3759,574],[1,0]],[[3760,574],[0,1]],[[3760,575],[1,0]],[[3766,571],[0,-2]],[[3767,567],[2,-2]],[[3771,564],[0,0]],[[3772,564],[3,5]],[[3776,570],[1,1]],[[3777,571],[0,0]],[[3783,572],[1,2]],[[3786,576],[3,2]],[[3795,585],[0,3]],[[3804,611],[3,8]],[[3807,619],[2,6]],[[3810,629],[1,2]],[[3811,631],[2,4]],[[3814,638],[2,5]],[[3816,643],[1,1]],[[3817,644],[0,2]],[[3819,650],[0,4]],[[3819,656],[2,8]],[[6083,7385],[0,0]],[[6137,7547],[0,1]],[[6067,7380],[0,-1]],[[4428,5829],[-8,6]],[[4420,5835],[-8,5]],[[5877,6367],[0,3]],[[5876,6371],[0,0]],[[5876,6372],[0,0]],[[5876,6373],[0,0]],[[5876,6373],[0,1]],[[5876,6428],[0,0]],[[5890,6428],[1,-1]],[[5891,6427],[2,0]],[[5847,6505],[-2,0]],[[5835,6495],[-3,-1]],[[5831,6493],[-1,0]],[[5823,6482],[-9,-2]],[[5814,6480],[-3,-2]],[[5807,6500],[-2,2]],[[5802,6525],[0,1]],[[5802,6526],[0,1]],[[5802,6528],[0,0]],[[5802,6528],[0,0]],[[5799,6537],[0,1]],[[5783,6607],[-1,3]],[[5711,6635],[-1,1]],[[5631,6724],[0,0]],[[5650,6801],[0,0]],[[5660,6924],[1,0]],[[5667,6924],[1,0]],[[5668,6924],[0,0]],[[5668,6924],[2,1]],[[5674,6928],[0,0]],[[5678,6933],[0,0]],[[5678,6933],[0,0]],[[5678,6933],[1,0]],[[5679,6936],[0,0]],[[5681,6941],[0,0]],[[5682,6942],[1,2]],[[5968,7816],[1,3]],[[5969,7820],[0,0]],[[5970,7823],[0,0]],[[5978,7858],[0,3]],[[5978,7862],[0,3]],[[5982,7865],[0,0]],[[6065,7957],[0,-5]],[[6065,7952],[1,0]],[[6290,6393],[0,0]],[[6290,6393],[0,1]],[[6290,6394],[0,0]],[[6290,6394],[0,0]],[[6290,6394],[0,0]],[[6291,6394],[0,0]],[[6291,6394],[0,0]],[[6291,6394],[0,1]],[[6291,6395],[0,0]],[[6291,6395],[0,0]],[[6291,6395],[0,0]],[[6291,6395],[0,1]],[[6291,6396],[-1,-1]],[[6290,6395],[0,0]],[[6290,6396],[0,0]],[[6290,6396],[0,0]],[[6266,6453],[0,1]],[[6266,6454],[1,0]],[[6275,6464],[0,0]],[[6275,6464],[0,0]],[[6302,6503],[0,0]],[[6302,6505],[0,0]],[[6305,6509],[0,0]],[[6305,6509],[0,0]],[[6305,6509],[0,0]],[[6305,6509],[0,0]],[[6305,6509],[0,0]],[[6318,6512],[1,0]],[[6358,6525],[0,0]],[[6359,6525],[0,1]],[[6378,6584],[0,1]],[[6378,6585],[0,0]],[[6378,6585],[0,1]],[[6377,6586],[-1,0]],[[6376,6586],[0,0]],[[6376,6587],[0,-1]],[[6376,6587],[0,0]],[[6358,6706],[0,0]],[[6358,6706],[-1,0]],[[6258,6858],[0,0]],[[6250,6868],[0,0]],[[6433,6848],[0,0]],[[6432,6848],[0,0]],[[6353,6981],[0,0]],[[6353,6983],[0,0]],[[6401,7065],[0,0]],[[6400,7065],[0,0]],[[6399,7065],[0,-1]],[[6398,7064],[0,0]],[[6398,7065],[0,0]],[[6398,7065],[0,0]],[[6398,7065],[0,0]],[[6398,7067],[0,0]],[[6398,7067],[0,0]],[[6398,7067],[0,0]],[[6398,7067],[0,0]],[[6397,7068],[0,0]],[[6397,7068],[0,0]],[[6397,7068],[0,2]],[[6397,7070],[0,0]],[[6397,7071],[0,0]],[[6397,7071],[0,0]],[[6397,7071],[0,0]],[[6397,7071],[0,0]],[[6397,7071],[1,0]],[[6398,7071],[0,0]],[[6398,7071],[-1,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[0,0]],[[6397,7073],[-1,0]],[[6396,7073],[0,0]],[[6396,7073],[0,0]],[[6396,7074],[0,0]],[[6396,7074],[-1,0]],[[6393,7074],[0,0]],[[6387,7088],[0,1]],[[6386,7090],[0,0]],[[6382,7102],[0,0]],[[6382,7102],[0,0]],[[6382,7103],[0,0]],[[6380,7109],[0,0]],[[6158,7183],[0,0]],[[6158,7183],[0,0]],[[6157,7185],[0,0]],[[6148,7200],[3,2]],[[6151,7202],[1,0]],[[6152,7203],[0,0]],[[6152,7203],[0,1]],[[6152,7204],[-1,1]],[[6151,7205],[0,0]],[[6151,7205],[0,1]],[[6151,7206],[0,0]],[[6119,7110],[0,0]],[[6119,7110],[0,0]],[[6112,7141],[0,0]],[[6104,7137],[0,0]],[[6104,7137],[0,0]],[[6104,7138],[0,0]],[[6104,7138],[0,0]],[[6104,7140],[0,0]],[[6104,7141],[0,0]],[[6104,7141],[0,0]],[[6104,7141],[0,2]],[[6104,7143],[0,0]],[[6103,7144],[0,0]],[[6102,7141],[0,0]],[[6102,7140],[-1,-2]],[[6101,7138],[0,-6]],[[6055,7149],[0,0]],[[6055,7152],[0,0]],[[6052,7183],[2,5]],[[6053,7191],[0,1]],[[6052,7194],[-1,0]],[[6050,7197],[0,0]],[[6049,7196],[0,0]],[[6048,7197],[0,0]],[[6013,7239],[0,0]],[[6013,7239],[0,0]],[[6013,7241],[0,0]],[[6013,7241],[1,0]],[[6014,7242],[0,0]],[[6013,7242],[0,0]],[[6013,7242],[0,0]],[[6013,7245],[0,0]],[[6014,7245],[0,0]],[[6014,7245],[0,0]],[[6014,7247],[0,0]],[[6014,7247],[0,0]],[[6014,7247],[0,1]],[[5972,7158],[1,-3]],[[5973,7155],[-1,-1]],[[5979,7148],[0,-2]],[[5978,7141],[0,0]],[[5978,7140],[0,0]],[[5979,7140],[0,0]],[[5981,7140],[0,0]],[[5981,7140],[0,0]],[[5981,7138],[0,0]],[[5982,7138],[0,0]],[[5955,7043],[0,0]],[[5954,7043],[0,0]],[[5954,7043],[0,0]],[[5950,7043],[0,0]],[[5901,7037],[-2,0]],[[5899,7037],[0,2]],[[5898,7040],[0,0]],[[5898,7040],[0,2]],[[5898,7042],[0,0]],[[5872,7008],[2,0]],[[5874,7008],[0,0]],[[5872,7004],[0,0]],[[5872,7003],[-1,-2]],[[5853,6958],[3,-42]],[[5884,6830],[0,0]],[[5887,6832],[0,0]],[[5889,6831],[0,0]],[[5890,6829],[0,0]],[[5890,6829],[0,0]],[[5931,6806],[0,0]],[[6196,6498],[0,0]],[[6196,6497],[0,-1]],[[6197,6496],[0,0]],[[6197,6496],[0,0]],[[6209,6497],[0,0]],[[6210,6496],[0,0]],[[6211,6495],[0,1]],[[6211,6496],[0,0]],[[6211,6496],[0,1]],[[6219,6499],[0,0]],[[6219,6498],[0,0]],[[6219,6498],[0,0]],[[6219,6498],[0,0]],[[6219,6498],[0,0]],[[6259,6394],[0,0]],[[6261,6393],[0,0]],[[6261,6393],[1,-1]],[[6262,6392],[0,0]],[[6262,6392],[1,0]],[[4730,5947],[0,-1]],[[4452,6718],[0,0]],[[6186,7694],[0,-1]],[[6166,7677],[0,0]],[[6024,7685],[0,3]],[[5989,7726],[0,0]],[[5988,7726],[0,0]],[[5988,7726],[0,0]],[[5987,7726],[0,1]],[[5987,7727],[0,2]],[[5988,7736],[-1,0]],[[5987,7736],[-1,0]],[[5977,7783],[0,1]],[[5977,7784],[-1,0]],[[5976,7784],[0,1]],[[5976,7785],[0,1]],[[5976,7786],[0,2]],[[5975,7789],[0,3]],[[5974,7792],[0,3]],[[5808,7089],[1,0]],[[5827,7016],[0,0]],[[5827,7016],[1,0]],[[5828,6997],[1,0]],[[5829,6987],[0,0]],[[5698,6972],[2,0]],[[5754,7090],[0,0]],[[5755,7089],[0,0]],[[4139,6770],[0,-1]],[[4133,6747],[0,-1]],[[4068,6718],[0,0]],[[4066,6718],[0,0]],[[4077,6700],[0,0]],[[4089,6664],[0,0]],[[4093,6660],[1,0]],[[4098,6649],[0,-1]],[[4115,6620],[1,0]],[[4117,6617],[1,-1]],[[4142,6581],[0,1]],[[4155,6561],[0,-1]],[[4159,6508],[0,0]],[[4158,6507],[0,0]],[[4166,6361],[0,0]],[[4168,6361],[0,0]],[[4166,6338],[0,0]],[[4167,6334],[0,-1]],[[4024,5938],[0,-1]],[[4014,5859],[0,-1]],[[4011,5850],[0,-1]],[[5887,2909],[0,1]],[[5888,2912],[1,1]],[[6070,4393],[0,0]],[[5658,5208],[0,0]],[[7408,8613],[0,0]],[[6895,9411],[0,0]],[[6735,7496],[0,0]],[[6068,6254],[1,2]],[[6078,6303],[0,0]],[[6078,6312],[0,3]],[[6081,6326],[0,0]],[[6084,6352],[1,7]],[[6089,6437],[0,2]],[[5930,6330],[5,4]],[[5935,6334],[1,5]],[[5936,6339],[5,6]],[[5942,6347],[0,0]],[[6004,6325],[1,-1]],[[9689,7803],[-7,16]],[[9970,6470],[0,0]],[[9834,6868],[-3,3]],[[9816,6900],[-1,5]],[[9812,6911],[-4,8]],[[9805,6930],[-1,2]],[[9804,6932],[-1,1]],[[9803,6933],[0,3]],[[9790,6978],[-3,5]],[[9790,6316],[-1,1]],[[1152,143],[0,1]],[[8562,8583],[-4,0]],[[7817,8434],[0,0]],[[7706,8052],[0,0]],[[7748,8032],[1,-1]],[[7776,8014],[1,-1]],[[7977,7956],[1,0]],[[7979,7956],[0,0]],[[7979,7956],[1,0]],[[7980,7956],[1,0]],[[7982,7956],[1,0]],[[7983,7956],[0,0]],[[7983,7956],[0,0]],[[7985,7956],[0,0]],[[7985,7956],[1,0]]],"transform":{"scale":[0.09600960096009599,0.06047833313565289],"translate":[0,97.63857348830322]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment