Skip to content

Instantly share code, notes, and snippets.

@martgnz
Last active January 3, 2018 00:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martgnz/18583329ac05726c45c367f3b448d5d7 to your computer and use it in GitHub Desktop.
Save martgnz/18583329ac05726c45c367f3b448d5d7 to your computer and use it in GitHub Desktop.
Demers Cartogram
border: no
height: 500
license: gpl-3.0

Updated version of the cartogram that runs on the Spanish Socialist's primaries results story. Each province is scaled according to its population.

While the published piece uses ISO codes to label the provinces, this approach mixing full names and province abbreviatures seems to be easier to parse.

We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 4 columns, instead of 5. in line 1.
id,name,abbr,pop
02,Albacete,Alb.,390032,
03,Alicante/Alacant,Alicante,1825332,
04,Almería,Almería,706672,
01,Araba/Álava,Álava,326574,
33,Asturias,Asturias,1034960,
05,Ávila,Áv.,160700,
06,Badajoz,Badajoz,679884,
07,"Balears, Illes",Baleares,1115999,
08,Barcelona,Barcelona,5576037,
48,Bizkaia,Vizcaya,1148302,
09,Burgos,Bur.,358171,
10,Cáceres,Các.,400036,
11,Cádiz,Cádiz,1239435,
39,Cantabria,Cant.,580295,
12,Castellón/Castelló,Cast.,575470,
13,Ciudad Real,C. Real,502578,
14,Córdoba,Córdoba,788219,
15,"Coruña, A",A Coruña,1120294,
16,Cuenca,Cue.,198718,
20,Gipuzkoa,Gui.,719282,
17,Girona,Girona,755716,
18,Granada,Granada,912938,
19,Guadalajara,Gua.,253310,
21,Huelva,Huelva,518930,
22,Huesca,Hue.,219702,
23,Jaén,Jaén,643484,
24,León,León,468316,
25,Lleida,Lleida,432384,
27,Lugo,Lugo,333634,
28,Madrid,Madrid,6507184,
29,Málaga,Málaga,1630615,
30,Murcia,Murcia,1470273,
31,Navarra,Navarra,643234,
32,Ourense,Our.,311680,
34,Palencia,Pal.,163390,
35,"Palmas, Las",Las Pal.,1100480,
36,Pontevedra,Pont.,942731,
26,"Rioja, La",Rio.,315381,
37,Salamanca,Sal.,333603,
38,Santa Cruz de Tenerife,Tenerife,1007641,
40,Segovia,Seg.,154184,
41,Sevilla,Sevilla,1939527,
42,Soria,Sor.,88903,
43,Tarragona,Tarr.,791693,
44,Teruel,Ter.,135562,
45,Toledo,Toledo,686841,
46,Valencia/València,Valencia,2540707,
47,Valladolid,Vall.,521130,
49,Zamora,Za.,177404,
50,Zaragoza,Zaragoza,953486,
51,Ceuta,Ceu.,84959,
52,Melilla,Mel.,86120
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/topojson.v3.min.js"></script>
<script src="https://unpkg.com/d3-composite-projections@1.2.0"></script>
<script>
const padding = 2;
const margin = { top: 10, right: 10, bottom: 10, left: 10 };
const width = 700 - margin.left - margin.right;
const height = 500 - margin.top - margin.bottom;
const svg = d3
.select('body')
.append('svg')
.attr('width', width + margin.left + margin.right)
.attr('height', height + margin.top + margin.bottom)
.append('g')
.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')');
const pop = d3.map();
const name = d3.map();
const size = d3.scaleSqrt().range([5, 120]);
const font = d3.scaleLinear().range([6, 24]);
d3
.queue()
.defer(d3.json, 'provinces.json')
.defer(d3.csv, 'data.csv', d => {
d.pop = +d.pop;
pop.set(d.id, d.pop);
name.set(d.id, d.abbr);
return d;
})
.await(ready);
function ready(error, es, data) {
if (error) throw error;
size.domain(d3.extent(data, d => d.pop));
font.domain(d3.extent(data, d => d.pop));
const provinces = topojson.feature(es, es.objects.provinces);
const features = provinces.features;
const projection = d3
.geoConicConformalSpain()
.fitSize([width, height], provinces);
const path = d3.geoPath().projection(projection);
features.forEach(function(d) {
d.pos = projection(d3.geoCentroid(d));
d.area = size(pop.get(d.id));
[d.x, d.y] = d.pos;
});
const simulation = d3
.forceSimulation(features)
.force('x', d3.forceX(d => d.x).strength(0.1))
.force('y', d3.forceY(d => d.y).strength(0.1))
.force('collide', collide);
for (let i = 0; i < 120; ++i) simulation.tick();
const rect = svg
.selectAll('g')
.data(features)
.enter()
.append('g')
.attr('transform', d => `translate(${d.x}, ${d.y})`);
rect
.append('rect')
.attr('width', d => d.area)
.attr('height', d => d.area)
.attr('x', d => -d.area / 2)
.attr('y', d => -d.area / 2)
.attr('fill', '#ccc')
.attr('stroke', 'white')
.attr('rx', 2);
rect
.append('text')
.filter(d => d.id !== '51' && d.id !== '52') // Excluding Ceuta & Melilla
.style('font-family', 'sans-serif')
.style('font-size', d => `${font(pop.get(d.id))}px`)
.attr('text-anchor', 'middle')
.attr('dy', 2)
.text(d => name.get(d.id));
svg
.append('path')
.attr('fill', 'none')
.attr('stroke', 'black')
.attr('d', projection.getCompositionBorders());
// From https://bl.ocks.org/mbostock/4055889
function collide() {
for (var k = 0, iterations = 4, strength = 0.5; k < iterations; ++k) {
for (var i = 0, n = features.length; i < n; ++i) {
for (var a = features[i], j = i + 1; j < n; ++j) {
var b = features[j],
x = a.x + a.vx - b.x - b.vx,
y = a.y + a.vy - b.y - b.vy,
lx = Math.abs(x),
ly = Math.abs(y),
r = a.area / 2 + b.area / 2 + padding;
if (lx < r && ly < r) {
if (lx > ly) {
lx = (lx - r) * (x < 0 ? -strength : strength);
(a.vx -= lx), (b.vx += lx);
} else {
ly = (ly - r) * (y < 0 ? -strength : strength);
(a.vy -= ly), (b.vy += ly);
}
}
}
}
}
}
}
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"provinces":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":"34","arcs":[[[0]],[[1]],[[2,3]],[[4]],[[5]],[[6,7,8,9],[10]]]},{"type":"Polygon","id":"33","arcs":[[11,12,13,14]]},{"type":"Polygon","id":"32","arcs":[[15,16,17,18,19]]},{"type":"MultiPolygon","id":"31","arcs":[[[20]],[[21]],[[22,23,24,25,26,27]]]},{"type":"Polygon","id":"30","arcs":[[28,29,30,31,32]]},{"type":"Polygon","id":"29","arcs":[[33,34,35,36,37,38,39]]},{"type":"MultiPolygon","id":"28","arcs":[[[40,41]],[[42,43,44,45,46],[47]]]},{"type":"Polygon","id":"27","arcs":[[-18,48,49,50,-14,51]]},{"type":"Polygon","id":"26","arcs":[[52,53,-28,54,55],[56],[57]]},{"type":"MultiPolygon","id":"25","arcs":[[[58]],[[59,60,61,62,63,64],[65]]]},{"type":"Polygon","id":"24","arcs":[[66,67,68,69,-19,-52,-13,70,-8],[71]]},{"type":"Polygon","id":"23","arcs":[[72,73,74,75]]},{"type":"Polygon","id":"22","arcs":[[76,-26,77,-61]]},{"type":"Polygon","id":"21","arcs":[[78,79,80,81]]},{"type":"Polygon","id":"20","arcs":[[82,83,-24,84]]},{"type":"MultiPolygon","id":"19","arcs":[[[-48]],[[85,-45,86,87,88,89]]]},{"type":"Polygon","id":"18","arcs":[[-39,90,-76,91,-29,92,93]]},{"type":"MultiPolygon","id":"17","arcs":[[[94]],[[95]],[[-63,96,97]]]},{"type":"Polygon","id":"16","arcs":[[98,99,-46,-86,100,101,102,103,104]]},{"type":"MultiPolygon","id":"15","arcs":[[[105]],[[-50,106,107]]]},{"type":"MultiPolygon","id":"14","arcs":[[[108]],[[109,110,-73,-91,-38,111]]]},{"type":"MultiPolygon","id":"13","arcs":[[[112,113]],[[-74,-111,114,115,-99,116]]]},{"type":"Polygon","id":"12","arcs":[[117,118,119,120]]},{"type":"Polygon","id":"11","arcs":[[-81,121,-36,-35,-34,122]]},{"type":"Polygon","id":"10","arcs":[[123,124,125,126,127]]},{"type":"MultiPolygon","id":"09","arcs":[[[128]],[[-11]],[[-58]],[[-57]],[[129,-10,130,-4,131,132,133,134,135,-53,136,137],[-1],[-2]]]},{"type":"MultiPolygon","id":"08","arcs":[[[-66]],[[138,-64,-98,139],[140],[-59],[-95]]]},{"type":"MultiPolygon","id":"07","arcs":[[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]]]},{"type":"Polygon","id":"06","arcs":[[148,-128,149,-114,150,-115,-110,151,-79]]},{"type":"Polygon","id":"05","arcs":[[152,-126,153,154,155,-42,156,-43]]},{"type":"Polygon","id":"04","arcs":[[-93,-33,157]]},{"type":"Polygon","id":"03","arcs":[[-31,158,159,160]]},{"type":"Polygon","id":"02","arcs":[[-117,-105,161,-159,-30,-92,-75]]},{"type":"Polygon","id":"01","arcs":[[162,-134,163,-85,-23,-54,-136],[-129]]},{"type":"Polygon","id":"52","arcs":[[164]]},{"type":"Polygon","id":"51","arcs":[[165]]},{"type":"Polygon","id":"50","arcs":[[166,-89,167,-55,-27,-77,-60,168],[-22],[-21]]},{"type":"Polygon","id":"49","arcs":[[169,-20,-70,170,-68,171,172]]},{"type":"MultiPolygon","id":"48","arcs":[[[-163,-135]],[[173,-83,-164,-133,174],[175]]]},{"type":"MultiPolygon","id":"47","arcs":[[[-69,-171]],[[-72]],[[-155,176,-172,-67,-7,-130,177]]]},{"type":"MultiPolygon","id":"46","arcs":[[[178,-102]],[[-162,-104,179,-121,180,-160]]]},{"type":"Polygon","id":"45","arcs":[[-153,-47,-100,-116,-151,-113,-150,-127]]},{"type":"Polygon","id":"44","arcs":[[-180,-103,-179,-101,-90,-167,181,-118]]},{"type":"MultiPolygon","id":"43","arcs":[[[140]],[[-119,-182,-169,-65,-139,182]]]},{"type":"Polygon","id":"42","arcs":[[-88,183,-137,-56,-168]]},{"type":"Polygon","id":"41","arcs":[[-80,-152,-112,-37,-122],[-109]]},{"type":"Polygon","id":"40","arcs":[[-157,-41,-156,-178,-138,-184,-87,-44]]},{"type":"MultiPolygon","id":"39","arcs":[[[-176]],[[-132,-3,-131,-9,-71,-12,184,-175],[-6],[-5]]]},{"type":"Polygon","id":"37","arcs":[[-125,185,-173,-177,-154]]},{"type":"MultiPolygon","id":"36","arcs":[[[186]],[[187]],[[188]],[[189]],[[-107,-49,-17,190]]]},{"type":"MultiPolygon","id":"35","arcs":[[[191]],[[192]],[[193]],[[194]],[[195]],[[196]]]},{"type":"MultiPolygon","id":"38","arcs":[[[197]],[[198]],[[199]],[[200]]]}]},"autonomous_regions":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","id":"07","arcs":[[[130,2,131,132,133,134,135,-53,-56,-168,-88,-87,-44,-43,152,-126,-125,185,169,-20,-19,-52,-13,70,8],[-41,-42]],[[4]],[[5]],[[128]],[[-58]],[[-57]]]},{"type":"Polygon","id":"03","arcs":[[11,12,13,14]]},{"type":"MultiPolygon","id":"12","arcs":[[[107,50,-14,51,18,19,15,190]],[[105]],[[186]],[[187]],[[188]],[[189]]]},{"type":"MultiPolygon","id":"15","arcs":[[[20]],[[21]],[[22,23,24,25,26,27]]]},{"type":"Polygon","id":"14","arcs":[[28,29,30,31,32]]},{"type":"Polygon","id":"01","arcs":[[81,78,-152,109,110,73,74,91,-29,-33,157,93,39,122],[34,-35,201]]},{"type":"MultiPolygon","id":"13","arcs":[[[40,41]],[[42,43,44,45,46],[47]]]},{"type":"Polygon","id":"17","arcs":[[52,53,-28,54,55],[56],[57]]},{"type":"MultiPolygon","id":"09","arcs":[[[-119,-182,-169,59,60,61,96,139,182]],[[95]]]},{"type":"Polygon","id":"02","arcs":[[-180,-103,-179,-101,-90,-89,167,-55,-27,-26,77,-61,-60,168,181,-118],[-21],[-22]]},{"type":"Polygon","id":"16","arcs":[[173,83,-24,-23,-54,-136,-135,-134,-133,174],[-129],[175]]},{"type":"MultiPolygon","id":"08","arcs":[[[-48]],[[-151,113,-150,-127,-153,-47,-46,-45,86,87,88,89,100,101,102,103,161,-159,-30,-92,-75,-74,-111,114]]]},{"type":"MultiPolygon","id":"10","arcs":[[[-31,158,-162,-104,179,117,118,119,180,160]],[[178,-102]]]},{"type":"Polygon","id":"11","arcs":[[148,123,124,125,126,149,-114,150,-115,-110,151,-79]]},{"type":"MultiPolygon","id":"04","arcs":[[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]]]},{"type":"Polygon","id":"19","arcs":[[164]]},{"type":"Polygon","id":"18","arcs":[[165]]},{"type":"MultiPolygon","id":"06","arcs":[[[-176]],[[-132,-3,-131,-9,-71,-12,184,-175],[-6],[-5]]]},{"type":"MultiPolygon","id":"05","arcs":[[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]]]}]},"nation":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[173,83,24,77,61,96,139,182,119,180,160,31,157,93,39,122,81,148,123,185,169,15,190,107,50,14,184],[34,-35,201]],[[105]],[[186]],[[187]],[[188]],[[189]],[[95]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[164]],[[165]],[[191]],[[192]],[[193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]]]}]}},"arcs":[[[6251,8975],[-4,4],[0,9],[7,0],[8,6],[5,-4],[-4,-4],[7,-12],[-13,4],[-6,-3]],[[6280,8954],[2,2],[4,-16],[-6,14]],[[6276,9365],[-2,8],[3,5],[7,1],[-2,7],[8,3],[-3,8],[8,8],[3,-28],[-1,-11]],[[6297,9366],[-2,-3],[-19,2]],[[6251,9382],[-5,14],[3,6],[8,-5],[0,-12],[-6,-3]],[[6221,9392],[-6,6],[9,0],[-3,-6]],[[6278,8747],[-9,4],[-4,-3],[-8,6],[-5,-4],[-5,13],[-5,8],[-13,-6],[-19,4],[-9,-3],[-10,7],[-5,-5],[-5,1],[-9,-10],[-3,-8],[-9,0],[-5,-7],[-7,5],[-9,1],[-15,9],[-7,-3],[-8,-9],[-10,-7],[-18,7],[-7,2],[3,5],[3,25],[11,1],[-7,4],[3,7],[-17,-5],[-5,-5],[-13,4],[-2,-9],[-5,-2],[-8,7],[-3,8],[-6,1],[-13,15],[-2,16],[-14,7],[-14,-8],[-12,-11],[0,-9],[-9,-9],[-5,-9],[-14,-5],[-10,28],[-9,11],[-2,11],[-11,12],[-3,9],[-9,0],[-10,-10],[-7,-1],[-2,8],[-8,4],[-16,-13],[0,5],[-8,11],[4,15],[8,7],[1,12],[4,8],[13,7],[-6,21],[10,14],[10,3],[-6,7],[-5,17],[1,20],[-17,1],[0,2],[-10,-7],[-9,3],[-3,5],[-5,-2],[-2,13],[8,10],[-5,18],[6,5],[1,9],[-5,7],[4,8],[4,14]],[[5851,9069],[7,3],[6,-3],[8,4],[5,20],[0,12],[-16,-6],[-2,3],[5,20],[12,1],[5,5],[10,-2],[-1,21],[4,6],[-2,6],[-6,1],[10,9],[5,31],[1,22],[-12,5],[-1,10],[6,10],[-1,16],[5,13],[-2,8],[1,14],[-1,9],[3,12],[9,9],[-9,10],[-11,-2],[-1,9],[-8,6],[1,5],[6,3],[5,14],[6,3],[-3,15],[6,20],[-5,5],[1,8],[8,2],[7,-3],[4,19],[8,2],[0,7],[11,11],[5,16],[-3,11],[6,4],[0,7],[6,8],[6,2],[5,9],[9,3]],[[5969,9522],[7,-2],[9,6],[28,-7],[14,12],[7,-6],[7,1],[7,-5],[17,17],[11,-5],[9,0],[6,14],[6,-2],[8,-8],[14,-6],[11,-23],[11,-16],[22,-4],[4,2],[13,-2],[10,-6],[1,-24],[6,-4],[-3,-5],[3,-14],[-1,-13],[7,-9],[5,0],[8,9],[4,-1],[10,8],[5,-7],[5,-2],[-6,-17],[-7,6],[-4,-6],[-6,-1],[-3,-6],[16,-17],[12,3],[11,-2],[2,-11],[5,-8]],[[6260,9361],[-12,-17],[-7,2],[0,9],[-8,1],[-9,-3],[-5,-7],[-5,0],[-7,-12],[-6,-2],[-2,-6],[-12,-4],[-5,-6],[-5,4],[1,7],[-12,-9],[1,-7],[7,-4],[1,-11],[-2,-8],[4,-7],[-2,-9],[-9,-7],[4,-15],[6,0],[-15,-7],[2,-11],[10,-5],[2,-15],[-5,-6],[9,1],[8,-12],[-2,-8],[4,-15],[-13,-1],[-16,1],[-5,2],[-8,-17],[2,-10],[7,-3],[-6,-2],[-1,-10],[4,-7],[13,5],[9,-1],[-3,-14],[7,-7],[-3,-5],[4,-11],[0,-10],[4,0],[5,-25],[-1,-6],[5,-2],[1,-9],[-3,-3],[5,-6],[-3,-12],[8,-1],[4,-9],[6,-7],[1,-10],[-7,-7],[2,-2],[-2,-10],[8,-5],[15,4],[5,-8],[10,5],[7,-11],[8,-4],[13,-1],[-1,-6],[-8,-6],[-11,3],[-1,-16],[11,-15],[5,4],[9,-3],[1,8],[16,0],[6,-4],[7,4],[4,-11],[-6,-6],[-4,-12],[-9,-4],[-7,-13],[-1,-14],[19,3],[15,13],[2,-1],[18,11],[9,0],[-1,-24],[-19,-1],[-7,-13],[-13,-3],[-2,-8],[2,-10],[-17,-14],[-8,-4],[-11,3],[-12,-4],[4,-14],[-4,-2],[-1,-9],[14,-16],[5,-1],[4,-8],[-1,-13]],[[6185,9340],[2,6],[-6,1],[-2,-5],[6,-2]],[[6069,9753],[0,-8],[-5,-7],[-5,-1],[1,-6],[-2,-10],[6,-3],[-2,-6],[3,-8],[1,-13],[-2,-9],[-6,-6],[-7,1],[0,8],[-9,5],[-16,2],[-13,-13],[2,-4],[-12,-2],[-8,2],[-13,-1],[-11,-9],[5,-14],[-4,-4],[-3,-8],[1,-12],[-6,-4],[-14,5],[-3,-3],[-15,-5],[-10,1]],[[5922,9621],[1,6],[-10,9],[1,8],[-15,13],[-8,-1],[-3,-6],[-12,-2],[-8,-7],[-14,-17],[-1,-8],[-11,8],[-24,-3],[-1,-12],[-7,-11],[1,-9],[-4,-17],[-18,1],[-3,7],[-9,-7],[-9,-2],[-14,-10],[-9,3],[-13,-1],[-6,-6],[-13,4],[-4,-3],[-9,3],[-1,6],[-11,1],[-7,-5],[-3,-23],[-26,3],[-8,-3],[-6,2],[0,-8],[-6,-12],[-5,5],[-10,-2],[-6,-5],[-13,3],[-2,6],[-13,2],[-10,-1],[-10,7],[-20,7],[-15,-9],[-3,-12],[-6,-3],[-1,-7],[-7,-13],[0,-10],[-11,-1],[-6,-3],[-9,3],[-8,-2],[-9,11],[-12,-2],[1,9],[-8,-2],[-12,13],[-11,5],[-6,14],[-1,14],[-7,2],[-3,-5],[-11,-3],[-14,8],[-7,-1],[-6,6],[-5,-5],[-1,-12],[2,-4],[-3,-7],[-18,-6],[-6,8],[-5,0],[-2,5],[-10,4],[-3,-3],[-9,2],[-6,-15],[1,-8],[-5,3],[-11,1],[-9,11],[-5,-4],[-15,3],[-1,7],[-12,8],[-7,-9],[-10,-2],[2,-8],[-1,-6],[-7,1],[1,-11],[-7,-7],[-6,3],[-4,-7],[-14,6],[-1,-7],[5,-9],[15,-1],[-3,-10],[4,-5],[-20,-4],[-6,-8],[-9,5],[-11,-4],[-3,-6],[-16,4],[-13,-2],[-2,5],[-7,-3],[-5,4],[-23,-2],[-10,-4],[-4,1],[-12,-14],[-3,-7],[-8,-1],[1,10],[-13,7],[-10,4]],[[5041,9457],[-5,0],[-3,8],[3,8],[-1,10],[-15,19],[-4,2],[-13,-2],[-14,14],[-3,13],[-4,3],[-4,-6],[4,-19],[-3,-3],[-9,8],[-1,6],[-5,3],[7,14],[4,-7],[4,13],[-1,6],[7,5],[-1,4],[13,4],[3,-5],[10,11],[10,0],[2,6],[17,13],[3,13],[-7,8],[-1,6],[-7,4],[-3,6],[-10,-9],[-1,-7],[-7,-1],[-8,-9],[-4,2],[-4,-7],[-9,3],[-7,8],[-3,10],[7,15],[-3,9],[-6,-2],[-7,3],[-4,10],[-4,-6],[-7,9],[-5,2],[-7,8],[-4,15],[3,21],[-17,1],[-6,14],[-7,3],[-1,10],[3,16],[-5,6],[-9,-5],[-8,5],[-1,9],[4,7],[-3,4],[2,10],[13,0],[7,-4],[11,1],[1,9],[10,15],[13,8],[2,24],[6,11],[-1,6]],[[4948,9846],[5,5],[-4,3],[15,-2],[15,4],[6,7],[16,1],[3,-4],[8,2],[27,-2],[8,-8],[3,3],[8,-2],[1,6],[7,2],[4,-4],[11,2],[6,-6],[4,5],[12,-3],[8,4],[17,2],[17,-9],[4,2],[18,-2],[1,-5],[6,3],[23,1],[1,12],[18,-12],[15,5],[21,-5],[7,6],[12,1],[17,10],[5,-1],[6,7],[7,-1],[5,-5],[3,3],[2,-7],[7,4],[-1,-8],[10,2],[16,-7],[9,-2],[9,2],[5,5],[6,-1],[13,8],[1,4],[8,2],[9,-6],[11,2],[5,-2],[21,19],[0,9],[6,3],[6,-3],[9,5],[4,5],[0,10],[7,1],[7,-11],[2,3],[7,-6],[10,-2],[-3,-10],[9,-4],[2,-9],[14,-13],[15,-3],[3,-14],[7,-3],[6,3],[6,-3],[13,10],[11,-6],[23,1],[8,-2],[4,4],[10,-5],[12,4],[25,3],[6,-2],[6,-11],[15,-2],[2,2],[17,-1],[4,2],[15,-11],[-1,-6],[19,-14],[5,-7],[27,3],[11,3],[6,-5],[13,0],[7,-7],[26,-4],[17,2],[17,-2],[3,2],[9,-6],[11,-2],[6,-5],[13,2],[8,-5],[26,-4],[10,-7],[28,-6],[12,-5],[20,-2],[13,1],[5,-4],[10,5],[15,-4]],[[4969,8872],[-6,-5],[-3,-8],[-22,-1],[-10,2],[-4,14],[-15,8],[-9,2],[-8,-9],[-8,3],[-5,-7],[2,-22],[4,-9],[-3,-3],[-2,-10],[-5,-11],[-5,0],[-11,-8],[-5,1],[-12,-6],[-5,-4],[-8,-1],[-5,-4],[-13,0],[-7,-3],[-3,8],[-12,-9],[-8,-13],[-8,-6],[0,16],[-8,4],[-4,16],[-14,-3],[-3,6],[-10,-5],[4,-8],[-15,-8],[-16,-4],[-11,2],[-6,-3],[0,11],[5,12],[8,6],[-1,4],[-10,-2],[-20,2],[-7,7],[-4,0],[-12,9],[-13,-8],[-13,3],[-7,-8],[-6,-2],[-17,-2],[-6,1],[1,-8],[-10,-6],[-5,-6],[-7,7],[3,13],[-1,28],[-8,0],[-6,-28],[-11,-6],[-12,2],[-8,-5],[-3,-9],[-3,-2],[-5,-13],[-12,1],[-8,-9],[-16,-4],[-5,2],[-11,-2],[-16,6],[2,26],[-4,11],[-13,-3],[-2,12],[-5,3],[-1,9],[9,17],[10,9],[5,17],[10,4],[5,9],[14,4],[6,5],[0,18],[-5,16],[-12,7],[-6,-5],[-5,2],[-10,-7],[-5,-1],[-2,19],[-3,19],[2,5],[-5,12]],[[4429,8986],[8,2],[9,14],[-6,2],[0,12],[-7,6],[11,4],[-3,7],[3,9],[-17,-1],[-3,-5],[-10,-1],[-4,7],[-10,5],[-3,16],[2,5],[2,17],[-10,2],[-12,16],[-6,1],[4,7],[-3,8],[4,7],[-7,24],[-4,8],[2,9],[-3,11],[-11,14],[6,-4],[5,7],[13,2],[4,-3],[8,9],[5,2],[1,7],[15,11],[9,-2],[13,17],[7,6],[5,-9],[7,-5],[4,3],[20,2],[14,-5],[5,4],[14,-8],[11,18],[14,-3],[14,7]],[[4549,9248],[8,-14],[10,-3],[0,-8],[-6,-5],[-9,-3],[10,-2],[-6,-8],[8,-2],[9,3],[0,-5],[6,1],[15,-7],[13,-8],[12,9],[9,-4],[2,-5],[-15,-5],[2,-7],[11,-6],[6,4],[12,-3],[5,-12],[8,-6],[9,0],[2,-5],[11,-5],[7,-14],[18,13],[12,-11],[6,-3],[16,4],[17,12],[7,-1],[4,5],[22,11],[8,-7],[11,5],[12,-2],[5,2],[7,-9],[10,0],[9,-16],[12,-1],[-4,-7],[0,-11],[6,-13],[6,-7],[4,11],[-1,5],[5,12],[6,5],[3,15],[8,11],[0,10],[15,12],[6,1],[10,31]],[[4928,9205],[11,0],[9,-3],[2,-4],[11,4],[13,-6],[6,14],[16,2],[4,-6],[18,-7],[12,-8],[5,6],[13,-16],[-6,-10],[0,-14],[2,-3],[-6,-11],[-6,-2],[10,-12],[8,0],[13,-4],[3,-9],[4,2],[11,-6],[-3,-18],[2,-11],[-2,-8],[-11,-16],[-1,-10],[-8,-2]],[[5058,9047],[-4,-3],[-4,-8],[7,-12],[-4,-5],[-3,6],[-18,6],[-12,-2],[-10,-11],[2,-3],[-6,-8],[-6,0],[-12,-10],[-1,-19],[-5,-8],[-13,-3],[-2,-10],[-6,-7],[0,-8],[-7,0],[-6,-6],[1,-7],[10,-7],[15,2],[0,-10],[6,-7],[-14,-26],[3,-9]],[[7549,9152],[17,12],[-6,-20],[-12,-6],[1,14]],[[7573,9167],[12,23],[7,-1],[-1,-5],[8,-5],[2,-8],[7,-7],[-3,-5],[-23,4],[-9,4]],[[6999,9193],[-1,14],[13,3],[-3,17],[4,3],[-3,31],[-12,3],[-9,-18],[-4,-5],[-4,13],[-13,0],[-4,18],[8,-3],[8,9],[7,13],[15,9],[12,-2],[7,-10],[-4,-5],[6,1],[10,-1],[6,7],[19,6],[-2,14],[-7,-4],[-1,23],[-5,10],[3,9],[4,-3],[15,4],[3,7],[-6,20],[5,6],[1,12],[14,13],[1,5],[-3,12],[-1,15],[-4,6]],[[7074,9445],[6,0],[0,15],[2,7],[6,1],[4,10],[9,-1],[4,-8],[11,4],[12,-1],[10,5],[5,15],[19,2],[7,3],[4,11],[-6,19],[5,2],[6,13],[-3,7],[5,5],[15,6],[2,6],[12,3],[4,7],[7,5],[3,8],[6,4],[-1,5],[-7,4],[2,9],[-3,9],[5,16],[-1,10],[5,-6],[6,2],[6,-3],[-2,12],[6,1],[0,-8],[18,6],[3,7],[11,5],[0,18],[5,7],[8,0],[16,5]],[[7306,9692],[7,3],[9,7],[11,2],[11,-5],[8,0],[2,-4],[-4,-9],[6,-17],[18,-5],[9,18],[-4,6],[13,4],[13,-1],[6,-8],[5,1],[9,-7],[15,-3],[6,5],[13,-13],[3,-14],[-4,-22],[2,-5],[-8,-5],[-1,-15],[-6,-4],[3,-3],[-2,-10],[-12,-12],[-13,-10],[-1,-6],[14,-22],[39,-11],[5,16],[-2,22],[7,11],[5,3],[22,3],[-8,-8],[-7,-13],[-2,-9],[17,-9],[3,-7],[7,0],[8,8],[8,-3],[14,-12],[3,3],[13,-8],[1,-10],[9,5],[3,5],[10,-8],[3,-5],[12,-4],[23,-4],[3,-8],[11,-9],[14,-6],[8,1],[5,6],[8,-5],[14,-3],[13,1],[13,-1],[8,8],[10,3],[7,-1],[3,-10],[6,-4],[-1,-10],[4,-5]],[[7753,9460],[-8,-1],[-5,3],[-13,-1],[-8,-9],[-8,-4],[2,-15],[-2,-5],[-8,-5],[-2,-5],[-7,-4],[2,-24],[-4,-3],[6,-10],[-8,-14],[-5,-3],[-10,1],[-1,-11]],[[7674,9350],[-9,1],[-6,-6],[-6,-15],[-9,-4],[-14,-3],[-12,0],[-5,-5],[3,-10],[-3,-7],[0,-10],[-14,-4],[-10,3],[-12,-1],[-14,2],[-3,-23],[-5,4],[-5,-6],[10,-5],[-5,-1],[-15,-12],[0,-18],[-7,0],[-3,-4],[-17,9],[-13,-29],[3,-7],[5,-2],[1,-9],[-8,-15],[-11,-5],[-12,-16],[0,-9],[-8,-19],[4,-5],[7,2],[3,-11],[-10,-10],[-14,-22],[-7,-8],[4,-8],[-4,-13],[-1,-7],[-7,-15],[1,-12],[9,-7],[1,-6],[-3,-15],[3,-4],[-3,-15],[14,-12],[1,-8],[6,-13],[18,0],[3,-18],[-16,-16],[-12,-22],[-3,-12],[-5,-3],[1,-9],[-9,-5],[-3,-10],[-5,-4],[-14,2],[-9,5],[-13,0],[-2,-5],[-7,-4],[-16,3],[-17,8],[-8,14],[-18,10],[-4,-4],[-4,4],[-6,-8],[-13,2],[-11,8],[-12,16],[-11,-3],[-8,5],[-10,-2],[-6,8]],[[7254,8895],[-4,-3],[-4,7],[-3,-1],[-7,9],[-7,1],[-3,19],[8,16],[23,26],[1,9],[7,7],[10,-7],[9,-3],[6,8],[11,0],[9,-10],[18,11],[-6,4],[-3,9],[9,10],[-2,3],[-9,-1],[-2,11],[-7,3],[-7,-2],[-11,6],[-2,-4],[-5,6],[-9,-1],[-8,6],[0,9],[-4,-2],[-11,9],[-1,-5],[-9,5],[4,11],[-2,8],[-10,1],[-9,7],[3,3],[-5,6],[0,6],[-6,-2],[-4,7],[-11,0],[-3,12],[-10,6],[-5,-1],[-4,5],[-14,-7],[-10,-10],[-9,3],[5,12],[-7,6],[3,5],[-13,10],[5,10],[-3,2],[-12,0],[-9,-6],[-7,-2],[-5,7],[-10,-2],[-6,7],[-9,2],[1,7],[-10,5],[-5,-2],[-10,14],[-1,-7],[-12,7],[-5,-2],[2,-5],[-7,-3],[-2,8],[-5,-2],[-6,7],[-10,-1],[-7,12],[-2,-1]],[[7093,6362],[-13,8],[-7,6],[-2,7],[-10,8],[-8,16],[0,8],[-19,15]],[[7034,6430],[-1,2],[6,22],[8,9],[7,4],[15,17],[5,9],[0,7],[9,15],[8,24],[12,8],[5,5],[27,9],[14,17],[3,11],[5,9],[7,5],[12,-3],[10,-10],[7,-2],[9,4],[25,6],[17,12],[11,11],[10,1],[5,9],[12,3],[-6,9],[11,-3],[0,8],[8,-3],[5,5],[11,-9],[7,5],[9,-10],[-1,-7],[-4,-1],[4,-12],[5,-3],[1,-6],[18,-2],[13,3],[5,-2],[14,9],[7,11],[16,10],[13,11],[1,20],[-1,24],[-2,26],[-3,15],[-4,11],[4,20],[16,11],[4,34],[-2,8],[12,17],[8,8],[16,9],[10,-17],[7,3],[7,8],[13,8],[9,14],[16,9],[14,3],[6,3],[28,-11],[2,-16],[32,-31],[7,-3]],[[7618,6820],[2,-10],[3,-3],[2,-18],[5,-21],[-7,-22],[-4,-9],[5,-16],[-9,-13],[-21,-21],[-6,-2],[4,-6],[-1,-38],[2,-13],[11,0],[14,-5],[17,-11],[8,-19],[1,-21],[-4,-11],[-5,-24],[-7,-17],[-14,-21],[3,-13],[0,-12],[3,-13],[7,-13],[4,-2],[14,-24],[4,-10],[11,-17],[5,-16],[10,-13],[19,-23],[12,-13],[11,-3],[7,-7],[12,-1]],[[7736,6319],[4,-36],[-10,19],[-9,-6],[-3,-7],[1,-10],[-12,-17],[-6,-2],[-3,-6],[-5,-15],[22,-34],[10,-7],[16,-6],[5,-6],[6,2],[2,9],[-3,7],[-5,-2],[3,10],[-5,23],[2,20],[-8,23],[6,-1],[0,-14],[7,-5],[-4,-7],[-2,-16],[6,-25],[8,-18],[5,-5],[-14,-20],[-23,-4],[-18,-12],[-10,4],[-15,-4],[0,-3],[-11,-5],[-7,-5],[-6,3],[-8,-1],[-3,10],[-7,2],[0,12],[-7,1],[2,-8],[-11,0],[-2,-7],[-27,6],[-9,-9],[-6,0],[-8,-10],[9,-11],[-27,4],[-3,6],[2,4],[-5,5],[-10,5],[-10,0],[-6,2],[-8,-6],[0,-6],[-28,3],[-9,-3],[-11,-9],[-3,-7],[-8,-4],[-5,-11],[-6,0],[-12,-6],[-8,-7],[-10,-21],[-1,-11],[3,-4],[-6,-4],[-5,6],[-7,0],[-13,-12],[-8,-5],[-11,-1],[-18,-17]],[[7350,6027],[-16,16],[-17,12],[-14,14],[-34,5],[2,-11],[-17,13],[-6,15],[-5,7],[-27,46],[-10,15],[0,8],[-5,2],[-6,11],[-4,14],[-2,-1],[-9,18],[0,17],[2,12],[6,5],[-6,29],[5,28],[1,14],[9,16],[-9,8],[-4,0],[-8,-8],[-13,7],[-22,-1],[-10,14],[-13,-2],[-9,-5],[-6,9],[-10,8]],[[5740,5368],[-12,16],[-6,0],[-13,-7],[0,13],[-6,15],[0,15],[-6,15],[-4,3],[1,6],[-9,13],[-9,10],[-4,15],[-2,1],[-2,15],[-7,8],[-14,2],[-14,0],[-14,-24],[-5,3],[-11,0],[-6,6],[-11,-3],[-5,3],[-1,20],[5,4],[12,-2],[13,-6],[3,-7],[6,2],[10,11],[5,14],[6,2],[6,9],[3,19],[8,-3],[15,8],[9,2],[27,27],[-3,5],[5,4],[-4,7],[1,15],[6,7],[2,10],[7,12]],[[5722,5653],[0,0]],[[5722,5653],[0,3],[-12,7],[-3,11],[-7,9],[4,12],[14,19],[14,9],[1,-5],[11,-9],[5,0],[4,-12],[9,-2],[7,-7],[7,-3],[16,10],[10,22],[3,15],[8,4],[-10,34],[6,5],[-7,5],[-1,8],[-13,9]],[[5788,5797],[9,15],[5,-5],[13,7],[13,1],[9,10],[20,10],[15,17],[11,5],[9,9],[3,14],[-18,12],[2,11],[6,-3],[9,3],[3,-12],[8,5],[2,-3],[8,9],[-1,11],[3,5],[12,1],[3,-5],[-4,-4],[10,-9],[3,0],[1,-11],[5,2],[11,12],[12,5],[11,8],[-1,6],[-7,2],[-2,10],[6,8],[-8,3],[7,9],[3,-4],[6,3],[4,-3],[7,4],[2,-4],[8,2]],[[6006,5953],[3,-5],[7,4],[7,1],[0,-8],[5,-3],[3,-10],[-2,-8],[14,1],[4,6],[10,-5],[13,6],[8,10],[6,5],[-3,4],[10,1],[8,15],[5,-3],[7,6],[5,-6],[10,2],[2,-4],[1,-18],[-4,-2],[6,-14],[12,-1],[10,-6],[-4,-8],[2,-4]],[[6151,5909],[18,-40],[0,-13],[3,-29],[4,-16],[-1,-7],[9,5],[13,-7],[4,-12],[11,-9],[10,-13],[25,-4],[5,1],[3,-12],[17,-11],[3,-7],[6,1],[13,-8],[15,0],[19,-6],[5,-9],[12,0],[7,-9],[6,-1],[8,4],[7,-2],[6,-8],[8,-7],[0,-6],[12,-12],[1,-8],[-7,-15],[2,-17]],[[6395,5632],[-6,6],[-19,4],[-14,-2],[-6,-5],[-18,-1],[-16,-9],[-17,8],[-14,3],[-3,-1],[-19,4],[-12,-12],[-5,-3],[-61,-9],[-14,3],[-26,-1],[-5,3],[-19,3],[-9,-6],[-2,2],[-8,-12],[-8,-20],[-12,-16],[-12,-24],[-14,-13],[-8,1],[-14,-5],[-9,-10],[-12,-30],[-17,-3],[-7,-7],[-23,-5],[-30,9],[-28,6],[-18,-1],[-9,-4],[-9,-9],[-10,-5],[-12,-11],[-13,1],[-8,-5],[-16,-3],[-9,-9],[-12,-3],[-12,-10],[-9,-1],[-17,-22],[-12,-40],[-2,0]],[[6154,8053],[-2,6],[4,6],[14,9],[4,-3]],[[6174,8071],[10,-9],[-1,-7],[-15,1],[-14,-3]],[[6039,7786],[6,1],[3,10],[-4,3],[-1,12],[6,4],[1,7],[11,10],[-8,30],[9,2],[6,-14],[4,-4],[6,3],[16,0],[1,8],[-4,4],[10,7],[-1,23],[12,13],[7,1],[15,-2],[3,3],[13,-2],[2,9],[-3,0],[-4,9],[8,7],[2,11],[-2,5],[0,16],[-2,5],[3,14],[-4,1],[2,10],[16,9],[4,25],[-4,1],[0,13],[8,1],[4,-14],[10,-2],[11,2],[17,6],[7,5],[-5,5],[2,13],[-3,9],[1,8],[5,6]],[[6225,8079],[7,4],[4,13],[11,16],[6,3],[0,10],[7,8],[5,10],[11,-2],[2,-4],[9,-1],[8,4],[10,-2],[0,9],[8,15],[-1,7],[8,17],[2,16],[-4,3],[6,14],[0,7],[7,2],[7,15],[12,13],[4,-3],[5,5],[13,5],[9,0],[13,8],[11,17],[7,16],[12,12],[10,7],[5,0],[13,15],[2,8],[5,3],[0,5],[15,13],[8,4],[6,-1],[13,3]],[[6501,8373],[-1,-9],[7,-7],[7,-1],[10,-21],[0,-5],[5,0],[13,-9],[10,1],[0,-11],[-6,-14],[18,-22],[2,-4],[-11,-8],[1,-7],[-9,-18],[-1,-9],[-5,-6],[-4,-15],[9,-4],[-3,-9],[-12,-8],[3,-4],[-5,-5],[0,-15],[-6,-11],[-1,-5],[-5,-7],[20,-4],[6,-13],[-2,-17],[7,-1],[-1,-6],[-14,-20],[5,-1],[4,-7],[9,-3],[1,6],[9,-8],[1,11],[4,4],[8,-8],[6,-16],[-2,-4],[18,-5],[4,8],[-3,-14],[-6,-2],[7,-9],[-4,-9],[6,-9],[13,-7],[2,-13],[-6,-8],[6,-2],[14,5],[23,-18],[-1,-11],[3,-11],[-2,-9],[1,-13],[19,-2],[6,-17],[5,-4],[-2,-10],[-4,-1],[3,-8],[-7,-4],[5,-11],[-6,-5],[2,-5],[-13,-13],[-2,-27],[-4,-14],[9,-8],[1,6],[8,12],[18,14],[7,-11],[-1,-4],[6,-10],[3,-23],[-3,-14],[3,-12],[5,-5]],[[6711,7750],[-10,3],[-3,-13],[8,-4],[11,-18],[-3,-10],[-12,-12],[-14,-6],[-19,2]],[[6669,7692],[-2,16],[-9,-5],[-7,-10],[-18,-8],[-9,2],[-9,-3],[-8,1],[-5,9],[-7,7],[-8,1],[-14,-4],[0,-15],[-7,-3],[0,-6],[-14,7],[-2,-5],[-8,0],[0,7],[-10,-6],[-1,3],[-15,2],[-4,-3],[-2,-14],[-31,-5],[-2,-7],[-20,-8],[4,-12],[-21,-5],[-9,-9],[-6,5],[-15,-9],[-7,-13],[-8,-5],[-13,-15],[-3,-1],[-9,9],[-11,2],[-7,5],[3,4],[-3,6],[10,7],[6,2],[4,-5],[2,8],[7,4],[10,-5],[0,5],[11,9],[2,-6],[-4,-7],[7,5],[-3,9],[10,-5],[-5,11],[9,6],[3,-3],[-1,11],[10,11],[9,-2],[7,13],[5,-3],[6,11],[7,2],[3,10],[-5,4],[8,4],[3,7],[-6,2],[4,7],[-22,11],[-5,11],[-7,-7],[-9,3],[-7,6],[-12,-9],[-11,4],[-3,11],[-10,12],[-8,-3],[-7,-6],[-8,5],[0,5],[-6,6],[-22,2],[-7,8],[-9,-8],[-1,14],[-17,-2],[-15,16],[1,8],[-13,2],[-12,9],[-3,-7],[-8,-8],[-12,4],[-9,0],[3,10],[-10,5],[-5,13],[-5,2],[-6,-6],[0,-12],[-13,5],[-6,-1],[-6,-10],[-5,-14],[-11,-11],[-5,2],[-2,8],[-5,-5],[-9,9],[-6,18],[0,24],[-10,4],[-4,-9],[1,-6],[-10,-11],[-12,-9],[0,-9],[-6,-6],[-11,-2],[-19,-10],[-2,-8],[-7,-2],[-17,5],[-2,6]],[[6571,8042],[4,-2],[4,7],[-8,-5]],[[4549,9248],[8,8],[4,16],[5,8],[2,19],[-2,11],[8,7],[0,6],[5,4],[-5,9],[-13,8],[-10,1],[-12,12],[-13,21],[1,14],[4,11],[6,7],[-5,6],[-7,-4],[-7,4]],[[4518,9416],[10,17],[6,2],[13,14],[-4,9],[12,9],[4,12],[1,21],[-17,51],[10,9],[1,6],[-8,12],[-6,33],[0,8],[-5,8],[13,32],[5,17],[-12,10],[7,10],[10,8],[10,14],[2,10],[-1,13],[-6,9],[7,11],[6,1],[10,-5],[10,0],[8,16],[0,7],[12,7],[4,15],[1,9],[5,7],[-1,6],[5,0],[2,11],[-6,13],[6,14],[-2,5],[13,3],[-2,16],[-4,5],[7,14],[11,9],[-12,21],[7,-1],[-2,14],[6,4],[-3,12]],[[4651,9964],[8,-3],[4,10],[10,-1],[6,5],[1,-8],[5,-13],[7,0],[-3,-10],[5,-1],[-4,-6],[0,-10],[7,0],[3,7],[6,4],[-4,10],[12,2],[4,7],[-3,4],[10,-1],[4,5],[5,-8],[9,3],[12,-3],[-5,-7],[4,-6],[13,-5],[14,-3],[2,-4],[21,-7],[0,-8],[11,-20],[4,0],[11,-14],[2,-7],[21,-11],[-7,-11],[8,-3],[4,10],[5,-2],[20,-2],[5,-5],[18,2],[5,3],[12,-5],[9,0],[2,3],[9,-2],[5,-7]],[[5041,9457],[-11,-1],[7,-10],[6,-19],[-10,7],[-13,-3],[5,-16],[8,-15],[-11,-12],[-1,-11],[-10,-6],[-5,-10],[-15,-12],[-5,0],[-4,9],[-7,-11],[1,-5],[-6,-7],[-3,5],[-11,-3],[-14,-17],[6,-12],[8,-7],[-1,-12],[-13,-7],[0,-18],[-2,-3],[8,-9],[-11,-13],[-6,-15],[5,-6],[-8,-13]],[[6779,8904],[0,10],[-9,31],[-12,-3],[-13,2],[-6,-2],[-8,3],[-5,-2],[-8,21],[-6,9],[-9,0],[-2,16],[-3,6],[-8,6],[0,6],[-6,7],[11,8],[0,12],[7,8],[-4,11],[3,6],[-7,25],[4,8],[-6,8],[0,8],[19,2],[2,5],[-10,14],[-9,0],[4,12],[-2,7],[5,4],[5,-5],[-2,-11],[8,-14],[5,-1],[-4,19],[2,8],[-2,5],[8,13],[-13,19],[-7,1],[-1,8],[6,5],[3,18],[-8,6],[-8,-6],[-8,3],[-4,6],[13,7],[10,12],[-1,5],[8,5],[3,8],[-4,12],[-7,4],[1,8],[19,-1],[10,-5],[6,8],[11,-6],[4,4],[16,-4],[5,-8],[9,-1],[-1,4],[10,-4],[3,7],[8,4]],[[6804,9285],[7,-5],[-2,-8],[2,-5],[10,3],[-2,-16],[-7,-4],[1,-6],[8,-10],[3,9],[4,-3],[3,5],[8,4],[3,11],[0,6],[4,10],[6,0],[9,-4],[10,-10],[12,-4],[-2,-4],[-3,-29],[-6,-15],[13,5],[-1,-7],[10,-6],[4,-13],[8,8],[7,0],[4,4],[5,-6],[-4,-8],[6,-4],[-1,6],[6,0],[4,7],[6,-6],[11,-1],[-3,8],[8,8],[3,7],[3,-4],[-6,-11],[2,-4],[16,-2],[3,4],[10,3],[5,-5],[8,0]],[[7254,8895],[-2,-6],[3,-7],[-9,-6],[3,-7]],[[7249,8869],[-9,-8],[-13,-5],[-4,-8],[-11,-4],[-6,1],[-3,-4],[-9,-1],[-21,21],[-4,-7],[-3,5],[-8,3],[-17,0],[-7,5],[-4,20],[8,5],[-4,11],[-6,3],[-11,13],[-3,12],[15,9],[0,10],[-4,3],[-16,2],[-16,0],[-7,-4],[-6,2],[-9,-9],[-5,1],[-6,13],[0,14],[-16,8],[-31,-2],[-22,-3],[-9,-14],[-12,-5],[-5,4],[-8,1],[-4,-20],[4,-8],[-17,-15],[-6,-19],[-6,-11],[-21,6],[-15,-1],[-6,-4],[-6,2],[-8,8],[-10,0],[-8,-4],[-5,15],[8,11],[2,6],[12,16],[0,12],[-12,12],[-7,-4],[-11,4],[-7,-10],[-1,-11],[-4,-4],[2,-7],[0,-16],[-8,-6],[-3,2],[-15,-7],[-1,-4],[-11,-8],[-4,5],[-10,3]],[[6741,9262],[6,4],[-4,5],[-2,-9]],[[6765,9264],[3,-6],[7,4],[-5,8],[-5,-6]],[[8834,8822],[8,2],[-3,-7],[-5,5]],[[8246,8444],[-9,15],[3,7],[-10,7],[5,10],[6,5],[-7,13],[-17,14],[7,8]],[[8224,8523],[5,13],[4,15],[-5,6],[-1,14],[2,2],[11,-2],[12,4],[9,16],[13,16],[-8,14],[3,12],[-4,11],[-11,-6],[-24,4],[-1,14],[5,6],[-4,3],[-7,14],[-3,2],[1,12],[6,9],[12,11],[7,16],[5,-5],[2,15],[31,6],[2,13],[4,9],[7,4],[5,8],[14,0],[5,9],[2,12],[10,-2],[0,8],[11,4],[1,5],[-7,3],[5,24],[-18,6],[2,9],[11,14],[6,-5],[8,19],[14,5],[4,8],[-5,9],[5,8],[2,13],[8,19],[4,4],[3,15],[-2,4],[-1,14],[8,7],[-6,6],[1,11],[5,12],[0,7],[9,16],[5,24],[0,9],[9,14],[-9,2],[-2,7],[6,6],[8,2],[-3,4],[-8,0],[-11,5],[11,12],[-9,13],[4,5],[-4,8],[-7,5],[-1,15],[-8,18],[4,5],[6,-5],[9,10],[-6,6],[1,7],[9,11],[8,19],[0,12],[3,10],[-12,2],[-14,5],[-4,5],[1,8],[-3,11],[-6,4],[-10,16]],[[8368,9318],[8,0],[2,11],[-4,6],[3,3],[-4,4],[-4,14],[-8,1],[3,7],[7,6],[-9,5],[11,11],[-2,9],[2,5],[-5,9],[8,6],[0,5],[14,3],[12,-4],[0,-4],[20,-7],[9,2],[14,-7],[11,-2],[6,-6],[6,-2],[10,-10],[11,-5],[7,8],[6,3],[10,-12],[10,3],[17,-4],[0,-2],[13,1],[16,-7],[11,-13],[0,-14],[14,-12],[23,7],[5,5],[11,-9],[10,3],[1,-3],[8,3],[9,0],[9,3],[1,-3],[8,1],[-2,-11],[6,-5],[5,0],[6,-6],[-1,-10],[4,0],[7,-8],[3,-19],[9,-19],[-6,-7],[8,-7],[-1,-5],[-7,-3],[-6,-15],[12,5],[6,-3],[1,-7],[6,-10],[-11,-9],[-8,-2],[-3,-6],[10,-5],[1,-21],[4,-2],[20,-3],[8,-3],[16,3],[2,13],[5,3],[6,-5],[2,6],[6,4],[14,-2],[2,3],[10,0],[2,4],[0,12],[3,6],[3,-4],[12,-5],[10,9],[2,-7]],[[8844,9195],[-2,-4],[3,-8],[-3,-7],[3,-13],[6,-5],[11,-3],[11,2],[7,-12],[-2,-2],[1,-11],[-4,-8],[5,-5],[9,7],[9,-5],[-3,-11],[-4,0],[2,-10],[-3,-7],[4,-13]],[[8894,9080],[-11,-4],[-6,1],[-3,-4],[-10,-3],[-5,2],[-10,-2],[-3,-4],[-8,2],[-18,-1],[-2,-3],[8,-2],[3,-9],[-5,-2],[3,-8],[6,-5],[-9,-11],[-2,-9],[12,-10],[6,3],[8,-4],[-2,-18],[-9,-4],[-7,-12],[6,-9],[-3,-8],[8,-4],[-3,-10],[-11,2],[-2,-11],[-6,-6],[-1,-9],[9,1],[3,-10],[-6,-3],[-7,-7],[-3,6],[-5,-6],[0,-14],[5,7],[2,-8],[8,3],[6,-6],[-3,13],[3,5],[9,-9],[0,-10],[-16,-10],[-5,0],[2,9],[-7,0],[-7,-8],[3,-15],[-4,-3],[5,-7],[-5,0],[-12,-14],[-7,-1],[-6,-10],[-4,2],[-4,-7],[7,-4],[8,6],[7,-3],[6,-12],[0,-9],[-9,-5],[0,-12],[-8,-3],[-2,-5],[5,-10],[-3,-6],[-8,2],[-12,-7],[-1,-8],[-16,10],[-2,9],[-10,2],[3,-8],[-9,-5],[2,7],[-1,12],[-9,-2],[-11,2],[-3,-6],[-7,-28],[9,-8],[-19,-17],[9,-1],[-2,-5],[3,-6],[9,-2],[-4,-5],[4,-4],[4,-11],[8,-3],[-1,-6],[-8,-2],[-17,1],[-3,-6],[-12,-7],[15,-9],[6,1],[1,-6],[-7,-10]],[[8694,8627],[5,-10],[-8,-2],[-6,6],[-26,2],[-9,-1],[-9,3],[-6,-3],[-18,2],[-4,-14],[-13,-3],[-7,-21],[5,-4],[2,-9],[-22,-7],[-10,-6],[-2,5],[-6,1],[-12,7],[-11,8],[4,-8],[-5,-5],[9,-8],[8,-4],[-12,-14],[-9,-18],[-10,-2],[-6,-10],[-4,1],[-5,-11],[-4,-4],[1,-7],[-9,-3],[-15,-1],[-21,-7],[-8,15],[-6,-2],[-6,-18],[-26,3],[-4,-10],[-12,-3],[-13,0],[-7,-3],[-29,-11],[-8,2],[-10,15],[-9,5],[-12,-22],[-10,-1],[-3,9],[-8,12],[-8,7],[-11,-8],[-1,-28],[-5,-1],[-17,3]],[[8806,8960],[7,-4],[13,-1],[1,5],[-21,0]],[[5851,9069],[-16,5],[-2,-18],[-6,-7],[-6,3],[3,10],[-6,4],[-8,16],[-11,-1],[-11,-17],[-9,-6],[-6,0],[-9,-7],[-10,11],[-4,-9],[-1,8],[-6,-8],[-4,-15],[12,-8],[-7,-7],[-10,-2],[-10,11],[-6,-4],[-3,-14],[-11,5],[-13,10],[-12,-2],[0,-10],[4,-4],[-3,-6],[-1,-10],[4,-6],[0,-10],[4,-10],[-4,-11],[1,-8],[-6,-6],[6,-9],[3,-15],[-3,-6]],[[5684,8916],[-20,-7]],[[5664,8909],[-7,1],[-19,12],[2,3],[-10,17],[-10,8]],[[5620,8950],[-3,5],[-7,-3],[-3,-18],[-5,-9],[-6,5],[-5,-8],[-1,16],[-22,5],[6,4],[2,9],[-13,17],[-7,4],[-10,-2],[5,-10],[-10,0],[-8,-4],[-12,-1],[-4,5],[-1,10],[-15,-2],[-1,-4],[-9,-1],[-12,-4],[-3,-5],[-11,7],[-7,10],[2,4],[-7,7],[-7,-10],[-16,1],[-2,-11],[-9,4],[-9,9],[-16,8],[-21,1],[-13,1],[-8,-2],[-6,4],[-3,-4],[-7,5],[-5,-5],[-18,-6],[-6,8],[-12,7],[-11,4],[-7,-1],[-8,18],[-8,-4],[-31,0],[-5,-3],[-8,4],[-6,-5],[-8,2],[-9,-9],[-13,2],[-3,8],[-19,5],[-13,1],[-12,-3],[-11,9],[-7,-3],[-15,1],[-7,-3],[-8,3],[-5,6],[-1,7],[-10,2],[-12,9]],[[5922,9621],[-4,-5],[7,-9],[-4,-7],[1,-8],[-4,-5],[7,-6],[0,-6],[8,-9],[9,-2],[14,-9],[0,-11],[10,0],[4,-6],[-4,-11],[3,-5]],[[5716,9058],[-7,-3],[-3,5],[-8,-4],[2,-22],[11,5],[0,6],[6,1],[-1,12]],[[6296,6044],[-7,9],[-6,15],[-8,16],[-11,4],[-6,8],[12,12],[-18,5],[0,10],[-4,2],[-3,9],[-20,17],[-1,14],[-7,9],[-10,2],[-3,-3],[-6,7],[-3,11],[6,4],[12,15],[10,7],[-8,15],[-25,8],[0,4],[5,19],[9,8],[1,6],[-9,5],[-15,1],[-12,5],[4,37],[-1,12],[3,21],[5,3],[2,14],[-2,16],[-4,15],[-6,10],[1,12],[10,0],[-4,11],[8,-1],[5,5],[-6,2],[3,12],[5,-3],[1,11],[8,7],[-1,11],[5,-3],[6,13],[10,5],[3,15],[-2,13],[-15,20],[3,11],[-4,9],[-6,0],[4,13],[-3,1],[2,20],[-8,1],[-5,11],[1,13],[-8,-1],[-6,5]],[[6177,6629],[-4,26],[9,7],[15,-2],[30,-10],[5,3],[7,-4],[8,1],[11,-3],[8,2],[18,-3],[10,-4],[4,1],[15,-3],[6,2],[17,0],[16,5],[9,-1],[11,11],[0,12],[10,6],[19,1],[11,-6],[4,6],[14,-7],[23,-5],[12,-6],[10,2],[6,5],[-1,17],[2,11],[7,1],[11,-4],[4,-7],[-1,-7],[3,-9],[10,-1],[15,-6],[21,6],[9,10],[13,10],[-2,4],[2,18],[22,4],[9,-1],[12,-12],[27,-5],[17,-2],[13,-6],[9,-1],[6,7],[23,18],[27,-39],[1,-4],[4,12],[-1,10],[8,6],[6,11],[11,2],[15,-3],[11,-11],[1,7],[8,4],[23,19],[17,12],[4,8]],[[6847,6744],[10,-7],[3,-5],[13,-8],[14,-3],[13,7],[19,3],[9,-5],[6,-9],[-5,-9],[4,-9],[0,-12],[-4,-4],[3,-13],[9,-7],[7,2],[23,-5],[-4,-16],[6,-14],[-3,-30],[5,-5],[15,-5],[2,-12],[-4,-9],[1,-12],[-5,-8],[3,-7],[0,-14],[-7,-7],[-16,-26],[-4,-1],[-6,-14],[-13,-14]],[[6941,6466],[-7,-1],[-9,-6],[-6,-9],[1,-33],[-10,-11],[-10,-4],[-6,-9],[-7,-3],[-10,8],[-13,-7],[0,-5],[-9,-13],[-10,-9],[-3,4],[-5,-6],[-10,-22],[-6,-3],[0,-14],[-12,-24],[-4,-2],[-8,-13],[-3,-19],[-4,1],[-6,-8],[-2,-13],[4,-26],[7,-2],[-8,-10],[-8,-4],[-25,-17],[0,-7],[-4,-4],[0,-8],[-9,4],[-21,6],[-3,-7],[-14,-6],[-4,6],[-12,3],[-20,20],[-20,1],[-5,-4],[-16,0],[1,-3],[-12,-18],[-4,-10],[-27,-7],[-4,-6],[-15,-2],[-16,6],[-11,15],[-8,2],[-12,10],[-14,-15],[1,-7],[-9,-5],[-16,-16],[-4,0],[-12,-11],[-14,-6],[-11,-2],[-12,-9],[-8,-9],[-6,-1],[-15,-6],[-3,9],[-4,-8],[0,-8],[-7,-4],[2,-4],[-10,-24],[1,-5],[-8,-12],[-14,1],[-13,-3],[-5,-3],[-17,0],[-13,6],[-9,9]],[[8224,8523],[-8,6],[-34,7],[-10,-15],[-9,-1],[-7,-5],[-8,8],[-3,-6],[-13,-6],[-4,-15],[-6,-8],[-28,3],[-15,3],[-5,17],[-9,6],[-3,-12],[9,-19],[-27,16],[-2,12],[-4,14],[-1,10],[-9,34],[-13,22],[-10,8],[0,21],[-5,8],[5,5],[-22,8],[-16,-19],[-9,10],[-9,5],[-9,7],[-2,8],[-13,6],[-8,1],[-5,17],[-1,14],[-19,12],[-16,4],[-9,9],[-10,6],[-12,-2],[6,11],[-3,37],[-3,5],[0,14],[-4,10],[-8,3],[-5,8],[-13,3],[-8,5],[3,9],[-15,9],[-13,28],[-17,-1],[-14,2],[-4,-4],[-18,3],[-8,3],[-8,7],[-14,6],[-8,9],[-10,3],[14,12],[3,12],[-4,3],[13,22],[10,9],[0,-14],[8,-14],[10,9],[2,9],[-5,4],[7,2],[-3,8],[4,17],[-2,10],[4,5],[-5,9],[4,20],[-3,1],[-2,16],[1,21],[4,0],[1,9],[9,11],[-7,28],[4,8],[-4,5],[3,5],[-18,13],[-1,-9],[4,-8],[0,-10],[-5,-19],[-10,-28],[-4,-4],[-13,11],[-7,-5],[-8,4],[-6,-11],[2,-12],[-14,7],[6,13],[7,7],[-2,6],[6,14],[10,12],[6,17],[1,12],[9,-1],[2,7],[-11,2],[-1,5],[-15,7],[-13,11],[4,5],[-4,3],[4,7],[7,-2],[1,8],[-8,7],[2,18],[-9,-4],[-9,1],[2,11],[5,9],[9,1],[-1,13],[-9,-3],[-1,10],[-5,1],[4,9],[7,0],[2,15],[-3,12],[-8,15],[12,1],[6,6],[4,17],[-10,5],[-9,-1],[8,8],[-1,8],[4,5],[-2,5]],[[7753,9460],[-5,-5],[1,-9],[7,-8],[8,-4],[9,4],[13,-18],[6,-2],[7,-9],[7,-3],[3,-11],[-1,-8],[11,3],[5,-6],[-3,-9],[9,-4],[3,10],[6,-1],[3,5],[-1,6],[7,10],[15,-10],[10,-3],[5,-5],[15,7],[6,-5],[14,10],[8,14],[10,-2],[5,9],[3,-5],[13,-4],[0,-4],[9,-6],[8,0],[0,-6],[26,-15],[9,8],[2,-3],[2,-15],[5,-1],[13,-20],[2,-9],[16,-1],[3,-15],[6,0],[15,-6],[7,0],[11,11],[10,-4],[10,5],[4,7],[5,1],[7,-4],[11,2],[3,5],[11,1],[6,8],[14,-4],[9,-8],[15,-1],[4,-15],[11,-11],[13,8],[0,12],[10,3],[6,8],[11,-8],[4,2],[1,-9],[12,-6],[15,2],[11,4],[8,-5],[8,0],[6,7],[26,-5],[3,7],[4,-4],[24,-5]],[[4993,6543],[4,-5],[9,1],[20,-14],[15,-4],[13,3],[0,-11],[-2,-10],[-8,-15],[3,-5],[18,0],[0,-8],[10,-5],[8,6],[10,-3],[9,1],[12,-3],[3,3],[14,0],[18,-28],[-3,-16],[7,-4],[3,4],[8,1],[8,-3],[15,-2],[1,-6],[12,0],[-4,9],[4,7],[10,7],[-4,5],[17,2],[11,-6],[10,0],[5,-24],[12,-7],[11,-13],[23,-4],[8,-8],[9,2],[8,-3],[0,-5],[7,-5]],[[5327,6377],[-2,-8],[8,-12],[1,6],[9,1],[2,-6],[6,-3],[-7,-12],[-8,-8],[-1,-10],[8,0],[4,-13],[2,-2],[3,-17],[-4,-9],[-12,0],[-8,5],[-3,7],[-8,-3],[-6,-8],[5,-16],[-7,-7],[2,-6],[-7,-4],[-6,1],[-3,14],[-12,-3],[-14,4],[-35,-10],[-15,-9],[-12,-9],[-11,4],[-4,-3],[5,-7],[-7,-7],[-6,-18],[-11,-3],[-4,-8],[2,-9],[-3,-6],[4,-7],[6,6],[9,-5],[23,4],[13,-3],[9,-9],[-3,-18],[3,-11],[9,-8],[8,-30],[4,-2],[6,-18],[10,-12],[2,-8],[-3,-8],[-19,-4],[-3,-7],[4,-2],[-4,-14],[7,-6],[-17,-17],[18,-16],[5,-8],[-7,-21],[-1,-10],[-4,-8],[7,-11],[-4,-12],[1,-11],[7,-7],[-11,-20],[8,-6],[-1,-5],[-7,-2],[2,-3],[-12,-13],[-2,-10],[3,-16],[10,-29],[2,-10],[-3,-9],[-2,-16],[-6,-7],[21,-22]],[[5260,5732],[-7,-7],[-2,-16],[0,-22],[3,-8],[0,-9]],[[5254,5670],[-12,-2],[-12,8],[-18,51],[-10,21],[-17,21],[-10,12],[-27,23],[-59,42],[-34,22],[-17,6],[-4,6],[-16,7],[-18,17],[0,-8],[12,-11],[16,-10],[-36,21],[-6,2],[-31,20],[-19,7],[-6,-3],[-32,1],[-56,-3],[-14,-4],[-13,-6],[-9,-6],[-9,-3],[-15,6],[-6,35],[-6,5],[0,7],[4,12],[-5,8],[-3,14],[1,11],[-2,11],[3,12],[-1,14],[-10,11],[7,7],[-5,7],[0,14],[-5,12],[1,11],[-7,4],[-6,17],[-6,0],[-6,18],[7,3],[-3,8],[6,5],[2,9],[-3,7],[6,0],[4,13],[4,-1],[2,16],[5,-3],[0,10],[5,2],[-4,8],[4,7],[4,19],[7,15],[-1,7],[5,7],[5,-1],[22,23],[13,11],[8,12],[2,11],[8,12],[0,14],[11,15],[-1,6],[4,13],[-1,8],[-5,7],[8,9],[9,-1],[10,8],[6,0],[6,-6],[8,0],[5,5],[10,1],[-3,4],[0,12],[14,9],[11,-7],[4,-8],[9,-3],[9,6],[9,-1],[0,13],[6,7],[1,30],[6,0],[4,19],[3,2],[0,8],[-5,6],[4,10],[11,15],[2,5]],[[6943,9564],[9,4],[5,-3],[4,4],[4,17],[-3,10],[1,7],[-3,9],[10,3],[-3,6],[2,13],[-5,5],[1,9],[15,-1],[11,13],[-1,5],[10,10],[-3,7],[-7,5],[1,8],[11,13]],[[7002,9708],[6,1],[9,-7],[10,-5],[17,-4],[16,-1],[10,5],[5,-1],[10,6],[8,-4],[14,-10],[12,3],[9,-2],[8,6],[18,7],[8,1],[20,7],[8,-5],[1,7],[7,1],[4,5],[8,-2],[13,2],[16,11],[4,9],[10,6],[25,9],[-2,-7],[8,-11],[-5,-7],[8,-7],[6,1],[3,-6],[6,-3],[-1,-7],[5,-14]],[[7074,9445],[-17,4],[-7,15],[-12,4],[-14,8],[-14,3],[-5,5],[-7,-2],[-13,0],[-12,6],[-10,-4],[-15,9],[-4,-15],[-3,5],[-14,4],[-9,11],[4,3],[-4,9],[2,5],[7,-1],[8,7],[10,4],[0,4],[7,8],[-10,19],[1,8]],[[7272,7898],[-12,14],[-5,-1],[-6,6],[-3,17],[2,3],[-6,8],[-2,11],[-4,9],[2,7],[-8,11],[-7,23],[0,7],[-5,7],[-12,4],[-6,5],[1,-10],[-9,-5],[-20,9],[-12,12],[0,3],[-12,7],[-3,7],[-19,6],[-10,2],[-5,-17],[-10,-1],[-10,-7],[-18,8],[-9,8],[-3,-7],[-6,-5],[3,-23],[-5,-9],[-15,-4],[-12,8],[2,8],[-8,9],[-12,4],[-6,-7],[-1,-14],[14,-16],[2,-7],[-14,-11],[-7,10],[-10,-10],[-6,-1],[-15,-9],[-8,4],[-6,18],[-8,-16],[8,-12],[-6,-15],[8,-5],[8,-11],[-4,-15],[-12,0],[-2,6],[-9,2],[-11,8],[-5,-4],[-17,3],[-11,-8],[-3,7],[-6,-3],[3,-5],[-3,-4],[-7,1],[-1,-5],[10,-12],[-4,-4],[-7,13],[-5,-6],[-4,3],[1,-9],[-6,2],[-15,13],[5,12],[-8,3],[-4,-12],[-9,-12],[-5,-37],[4,-13],[0,-9],[3,-30],[-2,-13],[-9,-25],[-16,-1],[-5,-15],[-6,-7],[-11,-5],[-15,8],[-6,8],[-10,7],[-7,9],[-10,-9],[4,-12],[-1,-12],[-8,1],[-14,7],[-2,-6]],[[6501,8373],[12,-1],[5,10],[9,1],[9,6],[8,15],[18,-1],[-2,13],[4,6],[-1,7],[14,3],[14,-4],[5,5],[16,-2],[6,10],[1,-9],[9,-1],[7,13],[0,5],[5,7],[9,3]],[[6649,8459],[8,0],[11,-5],[25,-5],[20,-9],[20,10],[5,-3],[28,8],[1,10],[14,5],[2,4],[13,-4],[4,-5],[-3,-9],[4,-4],[-1,-11],[21,-11],[16,-2],[4,-2],[2,9],[4,6],[14,-2],[6,3],[3,-15],[18,-9],[10,2],[5,-5],[3,-11],[18,6],[-1,-13],[-5,-5],[-8,0],[0,-8],[8,4],[11,-7],[-8,-17],[9,-7],[16,9],[1,6],[9,-9],[3,-18],[12,-2],[6,-16],[0,-8],[12,0],[6,-3],[4,-9],[8,2],[8,8],[13,8],[2,-6],[9,-7],[3,-6],[13,9],[4,-4],[9,2],[14,18],[26,-8],[3,7],[11,4],[6,10],[5,-9],[19,-13],[2,-6],[7,-2],[3,6],[-8,10],[2,11],[5,8],[0,13]],[[7163,8362],[1,3],[18,3],[22,10],[5,-4],[7,-17],[4,-3],[14,0],[10,-16],[29,-12],[4,-6],[10,-8],[6,-7],[0,-4],[19,-22],[18,-18],[6,-3],[12,-16],[8,-6]],[[7356,8236],[4,-10],[-3,-12],[-5,-6],[2,-11],[14,-22],[9,-9],[5,0],[6,-9],[3,-14],[-2,-15],[1,-5],[-10,-13],[2,-13],[10,-20],[-2,-3],[1,-15],[-5,-6],[-7,-21],[9,-12],[-5,-5],[-19,-15],[-16,11],[-14,1],[-4,7],[-8,-9],[2,-7],[-6,-16],[4,-34],[-19,-9],[-6,-6],[-12,-20],[-4,-10],[-7,0],[-2,-10]],[[6151,5909],[1,3],[13,6],[14,18],[4,1],[-4,19],[7,5],[5,18],[-1,19],[13,15],[17,-3],[6,-3],[6,12],[8,10],[11,7],[2,6],[5,3],[14,-1],[11,2],[13,-2]],[[6941,6466],[13,-9],[7,-1],[11,-9],[4,2],[18,-8],[3,-6],[14,-2],[9,-5],[14,2]],[[7093,6362],[-19,-12],[-6,-10],[-11,3],[-3,-16],[3,-18],[-6,-13],[5,-13],[7,-8],[-5,-15],[-3,-2],[-13,-33],[-1,-12],[2,-17],[5,-8],[-3,-8],[-11,1],[-2,3],[-8,-5],[-12,7],[1,-9],[5,-3],[4,-13],[0,-18],[-3,-3],[8,-7],[-1,-15],[-10,0],[-10,-4],[-3,6],[-2,-6],[-8,-4],[-10,0],[-1,-11],[-7,-5],[-13,0],[-12,-11],[-17,-12],[-4,-11],[-9,-5],[-20,-20],[3,-14],[-1,-14],[-7,-1],[1,-20],[-6,-15],[1,-11],[-2,-11],[4,-13],[-1,-10],[-4,3],[-16,4],[-6,6],[-6,3],[-3,-6],[-9,-1],[-8,14],[-1,8],[-7,1],[-10,5],[-1,4],[-11,1],[-5,-7],[-1,-11],[-7,-12],[1,-7],[-3,-17],[-7,-16],[-15,-6],[-3,-14],[-3,-2],[-3,-22],[-16,-2],[-9,3],[-5,10],[-6,0],[3,-9],[-1,-9],[4,-20],[7,-25],[8,-4],[2,-11],[0,-8],[-6,-10],[-14,-3],[-4,-7],[0,-11],[-11,-8],[-6,3],[0,-9],[6,-10],[6,-4],[5,-11],[1,-11],[-6,-7],[-14,-5],[-8,-9],[-21,-14],[2,-4],[-1,-9],[4,-10]],[[6684,5640],[-7,-4],[-5,2],[-21,2],[-3,-3],[-16,6],[-6,-1],[-21,-9],[-5,2],[-10,-2],[-11,-15],[-11,-2],[-11,-6],[-2,-5],[-29,2],[-13,15],[-7,2],[-11,-6],[-12,5],[-9,13],[-9,-2],[-18,3],[-6,-9],[-20,1],[-7,-8],[0,5],[-8,7],[-6,-6],[-5,5]],[[8972,8958],[-4,-2],[-3,12],[13,0],[-6,-10]],[[8951,9188],[4,8],[6,-6],[-3,-8],[3,-6],[8,-4],[1,-4],[-13,-2],[-12,7],[2,13],[4,2]],[[8844,9195],[7,2],[7,-5],[14,-1],[5,3],[9,-3],[9,-6],[1,-5],[16,-6],[0,-5],[15,-3],[7,6],[5,-6],[0,-11],[7,-3],[-2,-7],[3,-13],[5,-10],[6,-8],[12,-6],[20,4],[7,4],[5,-2],[2,7],[12,6],[5,18],[18,8],[5,-4],[12,-1],[8,6],[10,2],[4,6],[19,-10],[4,4],[10,-9],[6,1],[1,-5],[7,-4],[11,-1],[13,-5],[7,1],[1,-10],[9,-5],[13,-19],[8,3],[11,-7],[7,1],[9,14],[11,0],[10,-6],[20,-4],[9,1],[0,10],[-6,5],[-3,14],[8,-1],[3,12],[6,0],[11,9],[17,3],[7,-9],[13,4],[2,7],[6,7],[4,-1],[5,12],[10,-2],[4,8],[5,-5],[17,-3],[5,12],[7,5],[9,-11],[10,6],[11,-5],[12,4],[3,-10],[17,-19],[6,-1],[10,8],[10,-3],[13,1],[-6,-4],[5,-7],[-7,-6],[4,-4],[-5,-4],[6,-3],[-5,-6],[5,-7],[-2,-5],[10,-6],[5,-10],[3,8],[11,3],[10,-14],[5,7],[7,-5],[13,-4],[7,-4],[-5,-1],[-6,-9],[-4,2],[4,-11],[-3,-4],[-5,4],[-1,-6],[4,-5],[-3,-11],[-11,0],[-3,-7],[-2,4],[-6,2],[-1,-9],[-4,-3],[-11,9],[-6,-1],[0,7],[-5,5],[-8,-3],[-7,-7],[-7,-14],[-4,-12],[1,-25],[2,-15],[4,-9],[5,-1],[1,-7],[5,3],[11,-5],[10,-21],[5,-5],[0,-10],[-5,-2],[-2,-14],[4,-24],[4,-8],[8,-4],[2,-12],[-7,-4],[-1,-15],[-6,-17],[-8,-2],[-3,-13],[-20,-13],[-11,0],[-7,-9],[-9,-8],[-3,-11],[-10,-14],[-16,-5],[-16,-11],[-7,-13],[-9,-10],[-13,-3],[-8,-6],[-15,-1],[-15,-6],[-12,-10],[-7,-14]],[[9310,8674],[-9,18],[6,5],[2,8],[-4,14],[5,7],[-15,0],[-9,6],[-20,-3],[-7,5],[-11,-3],[-1,-6],[-30,-4],[-9,-5],[-8,7],[0,5],[-7,6],[1,9],[-12,2],[-9,7],[1,8],[-7,-4],[-6,4],[-3,8],[-12,-1],[-12,5],[-5,-3],[-7,2],[-4,6],[0,12],[-9,12],[3,5],[-4,5],[6,10],[11,-3],[9,-7],[9,8],[2,6],[8,1],[8,-6],[2,5],[10,6],[4,9],[0,7],[-8,8],[-8,-1],[-3,4],[2,9],[-6,4],[5,3],[6,-5],[10,2],[6,10],[-8,5],[13,5],[2,5],[-4,7],[5,7],[-6,3],[-4,9],[6,5],[-9,10],[-8,2],[-14,-11],[-8,6],[-6,10],[2,10],[-9,0],[-6,10],[-8,1],[-13,-3],[-10,-8],[3,6],[-1,13],[-4,-3],[-8,8],[-14,-3],[-2,4],[-10,-1],[-5,-10],[-7,-1],[-1,6],[-10,1],[-9,-3],[-8,-11],[-11,7],[0,10],[-4,2],[-9,-1],[-5,-4],[-4,5],[-6,-1],[-5,7],[-10,-2],[-6,13],[0,7],[-11,-2],[-1,12],[16,-4],[3,-6],[-5,-6],[4,-6],[11,2],[4,8],[9,-3],[1,13],[-4,0],[-1,13],[-4,3],[-4,-3],[-6,10],[3,0],[2,12],[6,11],[12,11],[-14,11],[-9,3],[-15,-7],[-16,10],[-12,1],[-8,4],[-11,-6],[-12,-2],[-4,-2]],[[6856,7230],[-7,12],[-2,13],[-5,7],[-1,15],[-8,2],[-5,-10],[-12,-16],[-13,-4],[-2,5],[-8,-4],[-6,10],[5,11],[7,4],[-7,9],[-2,10],[-6,3],[-5,13],[-8,3],[1,12]],[[6772,7325],[-2,6],[3,42],[3,6],[0,14],[-2,12],[5,8],[-1,6],[4,11],[-5,3],[-13,19],[-3,6],[-7,2],[-3,8],[-10,12],[-7,26],[-11,14],[1,2],[-6,14],[-4,15],[-7,12],[-9,8],[-14,3],[9,18],[1,8],[4,11],[-1,12],[1,21],[-20,-1],[-4,16],[-7,10],[-2,13],[4,10]],[[7272,7898],[12,-3],[17,-27],[9,-5],[10,-15],[-10,1],[-4,-9],[4,-17],[5,3],[-1,7],[5,9],[5,1],[10,-9],[3,-7],[23,-25],[7,-4],[9,-14],[14,-14],[13,8],[16,-12],[16,8],[-1,-25],[-3,-7]],[[7431,7742],[-4,-6],[6,-11],[16,-10],[-6,-5],[17,-34],[3,-14],[5,-3],[13,3],[22,-5],[18,-8],[21,5],[3,-1],[12,5]],[[7557,7658],[1,-6],[7,-7],[2,-11]],[[7567,7634],[-5,-4],[-22,-9],[-3,-14],[6,-9],[-2,-12],[0,-21],[-4,-13],[-2,-18],[-9,-17],[-7,-6],[-11,-21],[2,-15],[4,-9],[-8,-13],[-15,-5],[-25,12],[-22,-22],[-8,-16],[-11,-32],[-7,-5],[-12,-3],[0,-7],[-6,-1],[8,-10],[-3,-17],[3,-5],[-5,-11],[-1,-14],[-7,-2],[2,-7],[9,-10],[0,-6]],[[7406,7292],[-23,-10],[-26,-22],[-14,-8],[-22,-10],[-9,-8],[-10,-2],[-11,-13],[-3,-12],[-19,3],[-15,0],[-11,5],[-7,7],[-22,-1],[-24,-6],[-2,9],[-11,11],[-4,7],[3,9],[-10,4],[-10,-2],[-13,2],[4,-12],[6,-13],[-1,-9],[7,-12],[4,-11],[-10,-1],[-21,6],[-14,1],[-7,3],[-6,-7],[-17,-5],[-11,-11],[-20,-11],[-6,16],[0,7],[-8,13],[-4,1],[-9,-4],[-5,-15],[0,-6],[-6,-8],[-6,8],[-14,12],[-15,16],[-6,10],[-7,5],[-13,17],[-8,-9],[-7,-3],[-10,2],[-8,7],[-15,1],[-6,-8],[-13,-3],[-19,0],[-16,-2]],[[4069,9177],[-4,6],[1,8],[8,-11],[-5,-3]],[[4518,9416],[-11,-2],[-9,-9],[-8,3],[-4,10],[-8,1],[-12,-8],[-2,6],[-8,-5],[-20,10],[-8,-9],[-8,0],[6,-7],[-2,-6],[-12,5],[-3,-3],[-4,6],[-10,-9],[1,-6],[-11,4],[2,7],[-7,0],[-3,10],[-4,-9],[-2,6],[-7,-6],[6,-1],[0,-21],[-7,-5],[-3,-6],[-16,7],[-11,-16],[4,-5],[-7,-1],[-4,-5],[-6,1],[-12,-2],[-10,7],[-10,-3],[-6,3],[-13,0],[2,-5],[-7,-4],[-13,1],[-3,-11],[1,-5],[-8,-1],[-12,7],[-12,-6],[-1,-3],[-17,-4],[-4,-11]],[[4195,9316],[0,-7],[-13,-18],[-7,3],[-3,-7],[-7,-3],[-13,6],[4,9],[-7,4],[-6,10],[1,-13],[-5,2],[-1,-16],[7,-3],[-7,-3],[-3,-15],[-11,6],[5,11],[-3,3],[-9,1],[0,-4],[-16,-16],[7,-13],[-15,-1],[-4,-10],[-11,-2],[1,-17],[-14,-12],[-10,-1],[0,12],[5,10],[-7,12],[-7,4],[-12,-5],[4,17],[5,0],[3,12],[7,7],[4,13],[-2,13],[4,2],[3,21],[5,1],[2,11],[6,1],[2,7],[11,2],[6,4],[5,15],[9,10],[10,4],[-3,13],[-1,-13],[-15,3],[-5,-12],[-5,-2],[-6,8],[-2,-8],[-9,0],[-6,4],[2,8],[-7,1],[-6,-7],[-11,-2],[8,-9],[-5,-8],[-7,0],[-3,-12],[-9,11],[-5,-2],[-10,23],[-7,6],[16,7],[4,8],[-3,12],[-7,0],[-6,8],[-3,11],[5,10],[-3,3],[8,6],[-3,4],[-12,0],[-6,20],[-6,6],[-3,-5],[4,-10],[1,-8],[-12,0],[1,8],[-5,8],[-7,0],[1,-8],[-12,-4],[-2,-4],[2,-8],[-5,-14],[-5,8],[3,8],[-4,9],[-6,1],[6,20],[7,6],[5,24],[-4,5],[-4,-1],[-6,22],[12,2],[5,13],[-3,13],[6,-3],[8,5],[3,13],[1,-6],[8,-1],[2,-7],[5,7],[6,1],[5,15],[-4,2],[-1,9],[-6,-14],[-10,3],[0,9],[-4,5],[1,5],[6,-3],[8,8],[3,15],[3,-6],[7,7],[16,0],[2,-5],[6,3],[7,-6],[10,3],[10,10],[2,9],[5,-1],[7,10],[2,-8],[4,-1],[5,8],[18,-1],[-6,20],[-11,2],[-6,7],[3,5],[10,3],[2,4],[9,-3],[14,4],[-2,16],[10,0],[6,-5],[0,6],[7,-4],[4,5],[1,8],[7,4],[3,-10],[8,-1],[2,-8],[14,-9],[3,2],[7,-5],[9,1],[7,-3],[12,5],[23,6],[12,9],[17,-7],[16,3],[10,7],[11,21],[-1,-5],[14,4],[-1,6],[7,7],[9,-2],[5,-6],[3,4],[-2,8],[9,-11],[-7,-4],[9,-6],[1,-8],[15,3],[1,12],[3,2],[0,8],[-7,0],[5,10],[7,4],[10,0],[4,-11],[13,-1],[7,-11],[0,-8],[5,-7],[4,0],[9,-9],[-1,7],[4,-1],[-4,9],[2,7],[-4,2],[-1,11],[6,15],[13,2],[1,6],[-10,3],[-8,-5],[-2,5],[-8,1],[-3,-6],[-6,1],[-9,10],[-8,0],[-9,6],[6,0],[-4,5],[15,3],[5,-2],[6,6],[8,-2],[2,-4],[13,3],[13,10],[10,24],[-7,-2],[-4,-11],[-10,-5],[3,-3],[-14,-3],[-4,3],[-8,-3],[3,9],[-7,-1],[-4,-13],[-14,-4],[-10,4],[-9,-6],[-1,8],[7,6],[3,13],[-4,3],[3,11],[9,1],[3,6],[-4,7],[-9,7],[5,6],[7,-7],[7,2],[5,-3],[6,2],[19,15],[0,6],[10,6],[-2,6],[7,6],[0,-4],[7,-2],[7,4],[4,8],[6,2],[14,11],[1,9],[6,-12],[12,1],[-1,7],[-9,0],[2,8],[-2,6],[6,14],[10,5],[10,-1],[5,-4],[19,10],[7,7],[-1,5],[9,-1],[12,18],[6,-3],[9,6],[4,-6],[-4,-21],[8,-7],[-1,-7],[-11,9],[4,-9],[-5,-4],[1,-9],[-4,-3],[7,-1],[0,-5],[-8,4],[-7,-4],[9,-6],[19,6],[-8,7],[-3,10],[5,3],[12,-2],[2,9],[4,5],[9,1],[-1,6],[7,-1],[25,10],[3,9],[14,8],[-1,9],[12,-9],[-6,-4],[0,-5],[-6,-4],[1,-8],[-6,-5]],[[5844,6161],[-6,12],[-8,-2],[4,11],[-20,11],[0,3],[14,-4],[3,-6],[7,6],[-1,-11],[4,-18],[3,-2]],[[5592,6495],[-1,6],[6,6],[6,-1],[4,7],[7,5],[-3,5],[1,15],[8,4],[-1,10],[-1,25],[-7,9],[-6,24],[-9,8],[7,23],[-3,6],[-8,6],[0,9],[7,20],[10,10],[15,9],[4,-4],[6,6],[2,-2],[2,12],[5,1],[11,12],[15,10],[-2,6],[5,4],[-1,4],[10,0],[-3,12],[7,4],[1,9],[7,1],[9,-4],[13,0],[-1,10],[8,10],[17,9],[8,10],[11,7],[1,9],[5,-6],[1,6],[5,-5],[0,10],[7,1],[-7,26],[6,-4],[23,2],[8,-5],[24,13]],[[5831,6865],[10,-2],[10,-11],[0,-8],[26,-8],[11,3],[18,0],[4,-4],[1,-29],[3,-12],[11,-4],[6,-7],[14,0],[10,-6],[22,-10],[4,1],[2,-10],[5,-4],[12,-1],[15,-14],[4,-1],[7,-18],[9,-5],[2,4],[8,-1],[4,-9],[5,3],[4,-7],[10,-4],[6,-12],[13,-11],[8,-16],[8,1],[9,-6],[4,-6],[5,2],[33,-15],[15,-12],[8,3]],[[6006,5953],[0,10],[-4,7],[-8,4],[2,8],[7,2],[-8,2],[-2,9],[6,-3],[-5,10],[-16,14],[-6,-13],[-7,-3],[-9,4],[-7,-6],[-8,10],[-10,8],[-1,7],[4,5],[-5,1],[-10,20],[5,8],[-1,7],[-6,3],[-14,-1],[4,8],[-12,10],[-3,8],[3,4],[-6,3],[5,5],[-9,0],[-4,13],[-6,0],[7,16],[1,18],[-2,7],[1,19],[-4,2],[-11,-6],[3,7],[2,19],[-8,12],[-5,4],[-7,17],[-21,7],[-12,-6],[-7,-8],[-1,-9],[9,-12],[-5,0],[-7,6],[2,3],[-6,15],[-10,-1],[7,-6],[3,-16],[-13,3],[-6,-4],[-12,12],[-25,-18],[-8,-9],[-11,-8],[-11,-1],[-10,-5],[-9,-12],[-6,-6],[-1,13],[-10,3],[-13,19],[8,9],[-7,2],[-2,9],[4,12],[6,3],[3,-10],[4,-2],[6,12],[11,5],[5,-9],[3,6],[3,-2],[3,14],[-3,20],[-3,2],[4,11],[-9,3],[0,4],[-9,6],[5,24],[-5,6],[-14,5],[-10,7],[-7,19],[3,3],[-2,14],[-3,4],[5,9],[-17,15],[-8,3],[-3,7],[-8,10],[2,19],[-3,8],[-19,25],[0,7],[-8,9],[-11,4],[-1,10]],[[5878,7277],[-1,3],[7,22],[7,27],[2,9],[12,28],[8,11],[6,-2],[17,-14],[11,-3],[10,-7],[9,-16],[-3,-12],[4,-8],[-11,-13],[0,-7],[5,1],[0,-6]],[[5961,7290],[-6,-8],[-17,-3],[-12,-5],[-4,-5],[-9,-2],[-4,-6],[-17,6],[-14,10]],[[5831,6865],[14,4],[5,-1],[6,4],[8,13],[5,18],[3,25],[5,15],[13,20],[21,0],[8,-4],[5,31],[3,3],[-9,7],[-12,1],[-13,9],[-5,-4],[-7,12],[-1,13],[-4,8],[-8,30],[13,-1],[22,-14],[11,-1],[5,8],[7,0],[3,12],[-15,8],[-6,11],[2,11],[5,6],[2,18],[10,9],[-1,5],[5,4],[5,11],[16,-6],[14,3],[13,-4],[17,-11],[12,-3],[-7,13],[-8,4],[-2,7],[-10,4],[-2,21],[-8,7],[-10,35],[-3,5],[12,4],[12,1],[-1,11],[2,11],[5,6],[3,13],[7,12],[1,7],[-8,10],[0,6]],[[5991,7312],[12,2],[9,-3],[10,3],[1,19],[11,9],[10,-1],[6,8],[-3,14],[8,7],[4,-5],[1,12],[5,0],[17,-11],[-9,-2],[-4,-8],[5,-2],[8,-19],[9,-6],[4,24],[4,4],[6,-3],[4,-7],[20,-7],[5,0],[20,-8],[10,1],[11,-3],[14,-1],[16,6],[6,6],[11,43],[4,6],[15,-8],[19,3],[18,4],[5,-33],[-13,0],[-4,-12],[0,-10],[4,-9],[-4,-9],[-5,-3],[-14,5],[-3,-2],[-4,-30],[-9,-29],[8,2],[11,-15],[8,5],[6,10],[31,-8],[14,0],[1,-18],[5,-8],[-4,-7],[17,-9],[12,-3],[12,-11],[15,-1],[14,17],[8,3],[12,0],[19,-14],[11,6],[10,10],[39,7],[14,-5],[10,3],[1,3],[24,21],[3,18],[10,9],[17,11],[31,2],[14,-5],[-4,18],[2,7],[7,13],[1,6],[7,0],[29,3],[13,-1],[0,9],[12,5],[6,0],[15,-12],[4,-1],[14,-15],[9,0],[12,4],[3,-8],[7,-2],[2,6],[8,-4],[9,2],[1,4],[11,11]],[[6856,7230],[3,-16],[6,-15],[-4,-8],[-13,-16],[-10,-20],[-11,-12],[-9,-18],[-7,-9],[9,-26],[3,1],[5,-10],[-2,-15],[0,-18],[-10,-1],[-6,-24],[-15,-18],[-2,-10],[3,-8],[8,1],[10,-13],[16,1],[4,-10],[13,-7],[2,-8],[3,-22],[0,-16],[7,-6],[1,-9],[9,2],[7,-1],[15,-19],[9,-4],[2,-7],[-4,-12],[-1,-14],[-9,-27],[-6,-3],[-9,-12],[-6,0],[-4,-5],[-17,6],[6,-7],[-4,-22],[-3,-4],[4,-12],[5,-5],[-7,-8]],[[7720,7578],[-3,7],[-11,9],[-5,11],[0,11],[-2,4],[4,9],[1,10],[8,2],[7,6],[5,-1],[10,12],[2,19],[4,4],[3,-6],[12,1],[7,5],[9,-2],[9,5],[8,10],[14,1],[-7,20],[10,16],[9,2],[7,15],[0,16],[6,12],[0,8],[6,24],[8,-9],[14,-5],[11,7],[8,-3],[11,5],[19,13],[1,7],[-8,12],[5,7],[8,2],[13,11],[12,19],[11,6],[3,-2],[-1,13],[-7,7],[-3,7],[-11,10],[-5,11],[3,9],[12,5],[7,1],[10,7],[-3,3],[2,8],[-6,8],[-4,-2],[-2,7],[5,17],[-4,20],[2,3],[0,19],[-8,-1],[-4,-5],[-17,8],[-5,-1],[-4,6],[4,17],[-5,6],[12,10],[12,2],[5,-10],[4,-1],[6,7],[20,11],[6,0],[1,11],[-3,5],[3,5],[4,18],[14,17],[21,2],[-1,-6],[10,-14],[27,-16],[15,-3],[6,6],[15,-2],[6,-10],[-1,-11],[7,-2],[13,14],[18,8],[14,-5],[8,2],[4,7]],[[8151,8106],[9,-1],[3,-5],[12,6],[1,-11],[4,-9],[15,1],[10,-9],[-11,-18],[-1,-8],[6,-10],[16,-10],[20,-5],[13,0],[18,-16],[6,-1],[-4,-8],[1,-10],[11,-7],[24,-9]],[[8304,7976],[-1,-5],[-16,-31],[-5,-3],[-11,-20],[-2,-7],[-8,-10],[-8,-26],[-7,-12],[-9,-9],[-6,-15],[-5,-4],[-4,-9],[-12,-12],[-11,-10],[-7,-22],[-13,-6],[-14,-11],[-8,-12],[-8,-17],[-7,-21],[-1,-11],[-5,0],[-7,-13],[-7,-3],[-9,0],[-15,-12],[-7,-17],[-6,-24],[-6,-3],[-7,-31],[-23,-27],[-13,-10],[-6,-14],[-9,-12],[-7,-15],[-20,-34],[-3,-8]],[[7991,7480],[-37,18],[-2,12],[-14,16],[-9,3],[-22,-1],[-5,-7],[1,-12],[-10,-15],[-4,1],[-9,-8],[-3,-10],[-7,-1],[-6,10],[-11,10],[-7,19],[-7,11],[-8,-1],[-13,-13],[-5,-20],[-19,3],[-9,5],[3,23],[-5,27],[-15,11],[-7,-11],[-3,-11],[-4,-3],[-7,5],[0,6],[-7,8],[-9,16],[-11,7]],[[5260,5732],[23,7],[9,-9],[12,2],[19,-3],[14,-5],[16,-14],[7,-4],[25,-2],[7,-3],[27,-3],[5,5],[16,1],[16,-7],[-2,6],[8,27],[7,3],[7,9],[7,1],[10,5],[20,1],[11,-5],[9,1],[9,10],[1,13],[13,12],[7,-14],[10,1],[4,-9],[5,6],[9,-2],[1,-20],[22,-13],[-7,18],[11,9],[6,13],[4,0],[6,9],[4,0],[5,12],[-11,12],[-7,14],[4,3],[18,2],[12,6],[3,-5],[3,-19],[-7,-14],[-7,-5],[-1,-13],[3,-3],[4,-13],[11,3],[1,10],[8,10],[21,15],[4,9],[15,16],[0,-11],[13,-18],[8,-17],[9,-14],[5,1],[8,12],[7,3],[12,9],[9,14]],[[5740,5368],[-8,-7],[-12,-33],[-9,-10],[-8,-33],[-2,-14],[-6,-1],[-2,6],[-11,4],[-1,7],[-12,1],[-8,-5],[-7,-11],[-1,-11],[5,1],[2,-7],[-5,-7],[5,-7],[-5,-10],[7,-4],[-1,-7],[-16,-13],[-10,2],[-13,-10],[-10,-4],[-16,-10],[-13,-3],[-1,-4],[-8,16],[-11,14],[-20,9],[-8,-5],[-17,7],[-10,10],[-3,1],[-7,-6],[-13,16],[-11,19],[-11,14],[-18,17],[-13,1],[-19,-6],[-11,5],[-10,-2],[-8,12],[-12,27],[-4,13],[-11,17],[-13,2],[-4,6],[-7,24],[-7,15],[-16,15],[0,6],[-8,23],[-6,5],[-4,15],[-12,27],[-9,13],[10,4],[-4,-6],[6,-3],[4,-12],[5,-6],[-3,-7],[5,-12],[12,-4],[7,5],[-1,7],[9,3],[0,6],[9,8],[0,7],[-10,4],[-6,-11],[-10,-4],[-6,4],[1,5],[-6,2],[0,5],[12,-2],[-1,6],[4,17],[-4,14],[-15,-3],[-5,11],[-10,12],[-4,-1],[-9,5],[-9,0],[-4,-5],[-16,11],[0,8],[-20,45],[-2,11],[6,7],[7,2],[2,6],[9,3],[16,14],[4,6]],[[4860,7205],[-16,14],[-1,5],[-19,20],[2,6],[-2,11],[-5,11],[9,19],[-3,9],[2,9],[5,6],[-14,12],[-8,2],[-2,6],[-7,-4],[-8,6],[-4,7],[-1,17],[-15,2],[-9,10],[-7,14],[-17,11],[-4,18],[-8,9],[-1,15],[-7,4],[4,2],[19,0],[18,-3],[11,-6],[13,-4],[11,3],[19,-6],[5,5],[12,4],[3,3],[17,4],[15,-4],[4,1],[25,-6],[10,7],[17,-1],[8,-3],[8,2],[17,6],[7,27],[5,8],[-2,3],[2,17],[5,8],[-6,14],[4,16],[15,5],[6,7],[0,6],[9,6],[4,7],[1,26],[-3,4],[3,7],[7,6],[0,23],[10,22],[-5,2],[-2,15],[-8,7],[2,5],[-11,4],[-1,10],[-10,13],[0,6],[-16,3],[-6,0],[-9,5],[0,16],[-3,11],[2,5],[-6,5],[4,7],[3,18],[7,6],[15,2],[5,12],[12,0],[6,-2],[18,4],[2,5]],[[5022,7819],[13,-13],[16,-4],[-1,4],[10,0],[11,-6],[0,4],[17,15],[6,-12],[6,-5],[6,5],[2,8],[14,3],[3,-2],[21,4],[14,12],[0,8],[-4,7],[2,9],[11,11],[32,16],[12,0],[-1,5],[9,11],[5,2],[14,-1],[6,4],[-1,9],[14,16],[17,3],[11,5],[3,7],[4,-1],[6,10],[18,-2],[6,-10],[13,-6],[5,-13],[12,4],[1,-5],[-5,-9],[11,-3],[13,-7],[-3,-10],[4,-1],[-7,-6],[2,-8],[-10,-4],[24,-10],[16,0],[-2,-11],[7,-11],[30,-15],[7,0],[8,9],[4,14],[20,12],[1,-6],[14,14],[9,0],[6,-24],[-9,-9],[4,-7],[13,-3],[12,8]],[[5524,7834],[20,-1],[16,-14],[-2,-7],[5,-6],[11,-1],[5,-9],[-2,-6],[4,-5],[6,1],[21,-12],[8,-2],[9,5],[5,-2],[12,6],[2,10],[12,6],[5,11],[8,2],[7,-3],[7,5],[16,3],[-7,-19],[-5,-9],[3,-22],[-2,-13],[14,-23],[0,-5]],[[5702,7724],[-10,-5],[-4,-5],[0,-8],[-2,-17],[3,-14],[2,-15],[-2,-19],[-13,-40],[-3,-20],[-2,-5],[16,7],[20,2],[7,-7],[7,-4],[5,-10],[-11,-13],[-2,-9],[-2,-15],[2,-7],[-2,-9],[3,-7],[6,0],[13,-5],[6,0],[4,8],[17,20],[17,0],[1,-11],[3,-13],[-7,-5],[13,-15],[3,-8],[-6,-11],[-2,-14],[4,-4],[-6,-7],[0,-8],[-5,-5],[-5,-11],[-10,-11],[2,-5],[25,-26],[10,-17],[9,-8],[9,-12],[11,0],[22,-34],[25,-25]],[[5873,7277],[-9,0],[1,-7],[-10,-8],[-7,5],[-5,-6],[-16,-3],[-15,17],[-11,-2],[2,-12],[-4,-16],[-14,-13],[-30,-8],[-13,-4],[-16,11],[-9,0],[-9,7],[-7,1],[-6,-29],[-1,-15],[3,-14],[-2,-9],[-7,-7],[-3,-17],[-4,-7],[-13,-11],[-6,3],[-17,-1],[-6,11],[-7,3],[-8,10],[-1,7],[-6,-12],[-10,15],[-3,-4],[-14,-5],[-11,-8],[3,-7],[13,-16],[-1,-5],[-10,-9],[8,-6],[-9,-11],[-18,1],[-12,-13],[-8,1],[-20,22],[-15,12],[-19,4],[-4,-9],[1,-6],[-7,-6],[-17,-4],[-23,-13],[-6,1],[5,6],[0,7],[-7,2],[-8,-8],[-10,-16],[-10,-8],[-3,4],[-2,24],[1,17],[-11,-7],[-18,-15],[-12,-18],[-16,-21],[-4,13],[-8,4],[-15,-1],[-13,20],[-28,6],[-7,8],[0,27],[-5,10],[1,8],[-10,0],[-11,-11],[-5,-2],[-16,1],[-11,7],[-14,-2],[-9,-3],[-22,8],[1,-16],[-16,2],[-5,8],[3,5],[-24,11],[-6,-2],[-6,3],[-10,-13],[-31,10],[-7,-4],[-8,9],[-6,11],[-1,12],[7,8],[3,8],[8,7],[6,24],[-1,7],[-10,1],[-11,10],[2,14],[-5,14],[-24,-1],[-7,-3],[-16,4],[-14,5],[-18,10],[-6,7],[-24,7],[-8,-14],[12,-11],[13,-5],[-5,-10],[-5,-3],[1,-10],[-8,-11],[-1,-7],[-12,-7],[-3,8],[1,7],[-9,7],[2,8],[8,-5],[7,13],[-4,6],[-9,-1],[-5,4],[-9,-3],[-16,-12],[-8,-19],[5,-7],[3,6],[4,-5],[-8,-10],[-1,-5],[-8,-8],[-6,-12],[-12,8]],[[6800,9348],[6,5],[0,12],[6,8],[2,10],[4,-7],[4,3],[11,2],[22,-1],[5,2],[10,-7],[13,-2],[6,-5],[14,-4],[5,3],[10,0],[6,-12],[13,7],[-6,-23],[-9,-9],[-3,3],[-4,-12],[6,-4],[8,-10],[-1,-3],[14,0],[4,11],[8,-1],[-1,-12],[3,-12],[-15,-5],[-3,7],[-4,-3],[-8,4],[-13,-3],[-10,1],[-7,8],[-1,6],[-20,3],[-7,-3],[-2,-5],[-22,2],[-7,21],[-5,-1],[-13,7],[-2,6],[-12,6],[4,1],[-9,6]],[[6305,8632],[-5,16],[-7,1],[2,4],[-7,2],[-4,-4],[-1,10],[3,26],[-1,13],[-7,11],[-12,10],[-4,-1],[4,10],[6,0],[2,17],[4,0]],[[6260,9361],[16,4]],[[6297,9366],[8,0],[1,-7],[14,3],[-1,3],[8,5],[9,-4],[1,11],[3,1],[3,10],[14,-11],[18,8],[3,7],[0,16],[-8,10],[4,10],[-5,6],[-12,7],[-5,-9],[3,-12],[-5,-3],[-16,9],[8,9],[-12,6],[6,1],[8,-3],[-3,11],[15,-3],[6,12],[6,-2],[4,7],[-4,8],[-13,9],[-9,-4],[-1,-14],[-7,0],[-8,-6],[-1,-7],[-21,5],[-8,11],[9,28],[7,14],[5,5],[16,6],[9,16],[17,0],[0,4],[8,10],[-8,8],[1,4],[11,-2],[6,4],[9,-6],[10,2],[4,3],[1,9],[12,3],[11,8],[9,11],[3,12],[10,10],[2,6],[17,-7],[4,-12],[8,3],[18,-4],[17,-8],[8,-1],[8,2],[11,-3],[12,1]],[[6555,9592],[13,4],[8,7],[9,2],[4,7],[14,4],[14,13],[13,2],[12,-15],[6,4],[10,-6],[8,6],[9,-3],[3,-8]],[[6678,9609],[-5,-1],[-6,-8],[2,-2],[-9,-14],[6,-7],[7,-3],[5,4],[3,-9],[-10,-14],[7,-3],[-1,-12],[0,-14],[-12,1],[-3,-4],[15,-10],[9,1],[15,-4]],[[6701,9510],[6,4],[18,-16]],[[6725,9498],[-2,-8],[9,-5],[1,-5],[10,0],[6,-9],[-14,-12],[-2,-7],[-32,-5],[-7,6],[-9,-3],[-3,6],[-8,3],[3,10],[-16,6],[-13,0],[-7,3],[-5,-4],[0,-6],[-5,-13],[-13,-7],[0,-9],[-4,-1],[1,-6],[21,-23],[9,-7],[5,0],[-8,7],[6,4],[8,15],[8,-7],[10,2],[11,19],[9,-7],[-3,-12],[-9,-15],[-3,0],[-4,-14],[-5,-6],[13,-9],[1,-3],[-4,-12],[-5,-6],[15,2],[7,5],[6,-6],[1,5],[9,-3],[6,3],[0,-11],[4,-6],[10,2],[5,-11],[8,-3],[4,-9],[10,4],[12,-2],[0,-5],[12,-4],[4,-8],[-3,-8],[2,-8],[12,-9],[5,-1]],[[6779,8904],[-8,-3],[-6,-11],[-9,-21],[3,-9],[-5,-14],[-12,2],[-6,-10],[-2,-18],[-10,-1],[-9,4],[-2,-5],[-13,-5],[-4,1],[2,-8],[-5,-6],[-13,-23],[1,-1],[-16,-14],[-8,5],[-4,10],[2,7],[-14,7],[-4,0],[-6,10],[2,5],[-6,4],[-6,-1],[0,6],[-6,3],[-3,-4],[5,-6],[-4,-15],[0,-9],[3,-4],[-2,-13],[5,-4],[-5,-4],[5,-12],[-6,-5],[-9,0],[-1,-6],[-6,-6],[-14,-3],[-2,-9],[1,-18],[-16,-1],[-6,-10],[-5,-12],[1,-5],[-6,-1],[-5,-10],[2,-5],[-10,-20],[-10,5],[-12,-1],[-9,10],[-5,-2],[0,-7],[-5,-1],[7,-6],[-3,-5]],[[6500,8629],[-11,1],[-3,-9],[-12,3],[-4,-3],[-3,7],[-4,-4],[-9,1],[-12,-7],[-8,-16],[-17,-11],[2,-6],[-4,-23],[2,-8],[-5,-4],[-2,6],[-11,0],[-1,38],[2,10],[-6,-3],[-11,-12],[4,-7],[-1,-6],[5,-4],[-16,-3],[-5,11],[-3,1],[-10,17],[-10,3],[-3,12],[-14,9],[-8,1],[-8,6],[-2,5],[-7,-2]],[[8807,8392],[-2,10],[5,-3],[-5,18],[-8,-8],[-10,7],[-9,2],[-5,14],[11,-1],[5,-5],[5,1],[5,11],[-4,5],[4,3],[0,7],[-7,-5],[-11,5],[3,10],[-10,4],[1,5],[-7,12],[7,7],[-3,9],[-7,-1],[-7,11],[-13,5],[-10,-7],[-5,0],[7,12],[-9,26],[8,13],[-6,13],[-10,0],[-6,7],[-15,6],[-2,13],[4,4],[8,-2],[4,5],[6,-2],[-1,10],[-7,2],[11,8],[-16,9],[-4,-5],[-8,0]],[[9310,8674],[-14,-5],[-12,-9],[-76,-32],[-24,-15],[-11,-4],[-40,-31],[-13,-6],[-19,-6],[-18,-11],[-7,-7],[-12,-25],[-12,-13],[-5,-12],[0,8],[-4,-4],[-3,-13],[-9,-4],[-1,-10],[5,8],[-4,-13],[-7,-11],[-8,-8],[-19,-9],[-25,-7],[-37,-2],[-28,-12],[-8,-5],[-17,1],[-12,-7],[-27,-6],[-13,-4],[-11,-6],[-12,-2]],[[8801,8465],[0,0]],[[8692,6810],[-2,5],[2,12],[-3,16],[3,0],[-1,12],[-2,4],[7,7],[9,-5],[0,6],[5,4],[3,13],[6,-17],[10,-8],[4,-10],[6,-8],[16,-11],[14,12],[4,0],[5,-9],[2,-9],[-6,-7],[-21,1],[-4,5],[-17,13],[-16,1],[-6,-11],[-9,-10],[-9,-6]],[[8712,6893],[-7,7],[2,7],[5,-14]],[[9385,7110],[-9,4],[-5,8],[4,8],[5,0],[6,-5],[-1,9],[13,-3],[-3,-7],[-5,1],[0,-13],[-5,-2]],[[8702,6965],[-3,-10],[1,-10],[-2,-5],[2,-11],[-10,6],[-5,-7],[-5,18],[-8,7],[-10,-4],[-7,1],[-3,7],[-14,0],[-9,-13],[-5,10],[-5,-1],[1,10],[-5,6],[4,10],[-1,6],[6,8],[-9,13],[8,8],[14,-1],[9,4],[6,-4],[4,3],[-10,16],[5,6],[-2,10],[10,12],[14,10],[7,9],[6,-8],[5,10],[14,0],[4,9],[6,-7],[6,10],[13,2],[2,6],[4,-7],[6,3],[3,8],[12,0],[-3,-6],[9,-8],[5,2],[11,0],[7,-12],[-7,-2],[-2,-7],[3,-7],[11,-9],[-2,-8],[-4,3],[-10,-9],[-2,-16],[-12,2],[-3,-6],[-6,-2],[-1,-21],[-9,1],[-2,-9],[-7,-3],[-6,-9],[-7,3],[-3,-5],[-6,4],[0,-8],[-8,0],[-5,-8]],[[9100,7387],[1,6],[13,10],[-8,-13],[-6,-3]],[[9976,7581],[8,-2],[6,-11],[1,-10],[-5,-5],[-1,-11],[-10,-8],[-15,4],[-25,14],[-17,14],[-21,11],[-9,11],[-26,16],[-3,-2],[-24,12],[-16,-4],[-6,-5],[-24,-2],[-8,3],[-7,-2],[2,18],[4,5],[-2,21],[-16,4],[-1,12],[8,6],[5,13],[14,3],[12,-2],[8,5],[5,-7],[7,0],[-2,5],[8,3],[9,0],[5,-5],[23,4],[5,3],[7,-8],[5,5],[7,0],[6,5],[1,13],[3,-7],[-2,-9],[4,-12],[3,7],[7,0],[4,5],[-5,-16],[2,-7],[5,4],[2,14],[-3,7],[9,1],[4,-6],[-3,-10],[4,-8],[6,-5],[3,8],[7,-9],[-1,-9],[4,3],[4,-8],[12,3],[5,-4],[1,-14],[-2,-6],[12,-11],[-3,-8],[4,-5],[1,-8],[8,-9],[2,-10],[8,-3],[-8,-4],[0,5],[-16,10],[-8,1],[9,-6]],[[9422,7212],[-5,4],[1,5],[-7,8],[-8,-1],[2,13],[-11,14],[-16,3],[-10,-4],[-12,6],[-3,-3],[-13,2],[-7,-6],[-11,7],[-6,-3],[-9,14],[-8,6],[-6,14],[3,15],[-11,21],[13,18],[-11,17],[-5,1],[-12,12],[-14,7],[-11,3],[-3,-14],[-11,3],[-5,-11],[-13,-1],[-10,-9],[4,-4],[-6,-4],[2,-10],[-6,-10],[0,-9],[-10,2],[-11,14],[1,5],[-10,8],[5,9],[-7,11],[-14,-8],[1,8],[-7,0],[-1,-6],[-7,-4],[0,8],[-5,3],[5,6],[-7,-2],[-3,7],[-9,5],[4,8],[-5,6],[5,12],[7,5],[6,0],[16,10],[1,4],[12,8],[6,2],[16,20],[7,3],[7,7],[11,-1],[14,10],[6,10],[10,10],[6,11],[4,-2],[9,8],[2,10],[9,3],[5,9],[18,14],[3,-4],[12,8],[-1,7],[8,3],[6,-2],[0,6],[5,-4],[10,6],[3,-3],[4,8],[9,2],[6,8],[8,5],[6,-1],[7,5],[7,9],[8,-6],[8,0],[7,9],[11,7],[7,-4],[8,2],[-3,-6],[8,0],[10,8],[0,-4],[11,1],[12,14],[8,4],[6,-1],[1,-4],[15,7],[-5,-12],[-9,-2],[-13,-11],[-10,3],[-1,-6],[-9,-7],[-8,3],[-5,-6],[0,-8],[5,-14],[9,-5],[10,7],[5,-3],[12,7],[10,11],[4,-3],[-8,-11],[4,-9],[-7,-10],[-16,-4],[-7,2],[-4,-10],[1,-10],[7,-14],[8,-9],[40,-23],[5,-1],[32,18],[4,8],[0,8],[6,4],[13,-15],[11,-1],[13,-12],[11,0],[2,-4],[-4,-10],[10,-1],[-8,-9],[0,-13],[-1,-19],[-7,0],[-2,-13],[-11,3],[-4,-4],[-7,-22],[0,-5],[8,-3],[-1,-4],[-10,-1],[-4,-15],[-13,-6],[-19,-26],[-2,-9],[-5,-10],[-3,-33],[-3,8],[-4,-8],[4,0],[-6,-9],[-2,-8],[-7,-14],[-5,-5],[-5,5],[-11,-19],[-7,-5],[-11,2],[-2,-6],[-10,-4],[-21,-28],[-10,-1],[-9,14]],[[4993,6543],[-2,7],[-5,-5],[-4,3],[-7,-9],[-4,6],[-6,-5],[-7,0],[-6,-11],[-9,1],[-3,-5],[-7,4],[0,-4],[-8,-6],[-2,5],[-8,6],[-3,12],[-7,13],[-6,8],[0,13],[-6,10],[-6,1],[-13,25],[-1,4],[-19,24],[-13,20],[-6,16],[-19,13],[6,3],[1,7],[6,4],[0,10],[-6,-5],[-4,1],[4,24],[5,7],[0,11],[4,6],[3,12],[6,2],[4,7],[4,16],[4,8],[-9,2],[-1,5],[2,40],[5,9],[-1,5],[6,6],[7,1],[10,8],[5,12],[13,6],[4,9],[11,13],[18,3],[7,18],[6,6],[9,4],[3,8],[-3,10],[-6,8],[12,11],[2,10],[17,25],[8,19],[6,8],[-7,10],[4,9],[-10,20],[-7,7],[-16,12],[-9,0],[-21,-8],[-3,-4],[-16,6],[-3,9],[5,12],[2,18],[-7,1],[-8,5],[-18,4],[-15,13],[-2,11],[2,10],[-3,7],[8,15]],[[5873,7277],[5,0]],[[5961,7290],[18,13],[12,9]],[[5592,6495],[-22,4],[-15,-18],[-1,-4],[-11,-11],[-7,-2],[-10,4],[-1,17],[-3,7],[5,7],[7,-2],[9,11],[-5,7],[5,5],[4,-6],[-1,12],[-8,2],[-10,8],[-9,-4],[-3,-6],[-12,3],[-4,-5],[-15,-5],[-6,3],[-8,-4],[0,-4],[-9,-4],[-2,-14],[-14,-6],[-6,-11],[-1,-11],[8,-6],[1,-6],[-5,-11],[-7,-2],[1,-9],[-9,-23],[-4,3],[-14,0],[-6,-6],[-11,4],[-9,0],[-2,-4],[-17,-6],[-11,0],[-14,-14],[-6,-2],[-7,-9]],[[6039,7786],[-17,-10],[-10,-2],[-8,1],[-2,4],[-11,3],[0,24],[-7,5],[3,10],[-1,6],[-15,-7],[-5,2],[-8,-9],[-19,9],[-6,-12],[4,-12],[-6,-4],[0,-4],[-8,-8],[-10,-3],[-23,-20],[-5,-2],[3,-9],[-3,-12],[-15,-3],[2,-6],[-26,-6],[3,11],[-5,10],[0,8],[-11,-5],[-12,-1],[-7,-8],[-1,-7],[-6,2],[-2,-6],[-16,-16],[-6,0],[-8,-5],[-5,2],[-7,-3],[-5,6],[-2,10],[-20,0],[-3,2],[-24,-2],[-7,5]],[[5524,7834],[4,10],[9,12],[16,12],[-6,4],[-1,13],[4,7],[-3,5],[-3,16],[8,3],[14,12],[4,9],[11,5],[9,-1],[6,6],[6,0],[1,-8],[-6,-6],[-1,-6],[6,-3],[8,-10],[13,0],[2,11],[-4,4],[4,7],[13,-1],[9,10],[-1,11],[5,2],[2,16],[6,8],[4,15],[-3,6],[-16,-4],[-20,-8],[-6,-4],[-1,8],[4,6],[1,12],[7,9],[1,-10],[23,-1],[0,4],[10,7],[1,5],[8,2],[9,7],[3,15],[5,3],[-9,9],[3,8],[21,11],[2,7],[7,-2],[9,5],[12,11],[7,9],[15,9],[-2,9],[18,13],[1,7],[7,6],[2,6],[-5,10],[2,17],[6,6],[5,10],[10,7],[2,6],[-2,10],[-5,11],[10,7],[7,23],[-1,6],[-7,14],[-17,9],[-3,12],[2,18],[8,8],[2,17]],[[5796,8353],[7,3],[4,6],[11,-5],[7,0],[17,9],[4,7],[10,-2],[3,-6],[7,0],[2,-7],[6,0],[12,-10],[9,-4],[17,-15],[3,4],[13,-1],[4,6],[3,13],[12,9],[8,-1],[8,5],[12,-1]],[[5975,8363],[-1,-16],[8,-21],[-4,-11],[6,-12],[10,0],[12,-11],[6,-2],[5,-9],[10,-28],[18,-9],[-1,-7],[4,-3],[0,-17],[3,-3],[-3,-14],[10,-8],[2,-9],[-8,-3],[-4,-8],[5,-9],[10,0],[12,5],[11,-21],[-3,-3],[2,-11],[9,-14],[11,-7],[2,-8],[-4,-9],[7,-38],[0,-13],[11,0],[16,3],[11,-1],[6,7]],[[6174,8071],[10,8],[6,-1],[23,5],[12,-4]],[[7350,6027],[-5,-1],[-4,-11],[-9,1],[-8,-11],[-8,-20],[-11,-14],[-12,-13],[-8,-15],[-9,-5],[-4,-11],[-8,-27],[0,-11],[-4,-20],[-5,-7],[-3,-12],[0,-13],[-5,-14],[-6,-7],[-1,-12],[-5,-5],[-1,-7],[-4,-5],[2,-24],[-8,-9],[-9,3],[-9,-10],[-6,-15],[-7,1],[-8,-10],[-1,-16],[4,-5],[-2,-6],[-10,-3],[-9,-10],[-6,-4],[-3,-6],[-1,-17],[-12,-8],[-6,0],[-1,-7],[-6,-3],[-2,-9],[-12,-1],[-7,-5],[-11,-1],[-26,40],[-19,22],[-11,8],[-19,5],[-18,-9],[-11,-10],[-15,12],[-7,4],[-12,-8],[-9,0],[-4,-3],[-13,-2],[-10,-14],[-7,-12],[-5,-21],[-4,-8],[-13,-17],[-12,-4],[-11,-7],[-6,2],[-25,-2],[-12,11],[-10,4],[-11,-7],[-6,2],[-17,24],[-10,8],[-9,1],[-17,-8],[-8,4],[-6,-2],[-6,3],[-22,-1],[-25,3]],[[7618,6820],[8,1],[8,-2],[13,1],[14,15],[7,10],[-6,6],[-12,32],[-3,10],[15,6]],[[7662,6899],[6,-1],[1,-8],[23,1],[14,-24],[5,4],[12,1],[2,4],[11,2],[7,5],[11,-3],[8,-12],[7,5],[5,-8],[15,-1],[0,-14],[6,-11],[5,0],[15,13],[14,6],[8,10],[12,6],[0,7],[-6,1],[-4,7],[-16,-8],[-8,8],[-5,17],[27,9],[27,-4],[15,13],[16,6],[1,4],[9,-4],[12,10],[0,5],[14,3],[6,12],[5,0],[4,-6],[14,-8],[7,1],[5,-5],[16,4],[-1,4],[16,13],[6,-18],[35,17],[2,-6],[10,-11],[7,2],[1,7],[-6,9]],[[8058,6963],[11,-10],[20,-6],[10,1],[15,-5],[10,-6],[7,-7],[13,-4],[3,-5],[16,-11],[-6,-2],[0,-8],[11,-15],[6,-1],[4,-17],[-16,-2],[-18,-19],[0,-7],[-12,0],[-6,-8],[-7,-1],[-9,-12],[-4,-9],[-11,1],[-7,-9],[-9,4],[-7,-1],[-11,-9],[-14,-21],[-1,-6],[7,-5],[-12,-16],[-9,-9],[-5,5],[-19,2],[-10,-12],[-8,0],[-16,-6],[-3,-3],[-15,-4],[-16,-8],[-24,-20],[-8,-4],[-5,-7],[-2,-9],[-4,-4],[-3,-15],[-1,-17],[3,-4],[-14,2],[-4,5],[-14,-10],[-4,-6],[-10,-3],[-5,-14],[-1,-12],[3,-35],[2,-10],[-3,-13],[-10,-6],[-13,2],[-14,-3],[-6,-5],[-10,-20],[-2,-8],[-3,-26],[-2,-22],[-1,-29],[2,-3],[-3,-11],[-11,-8],[-8,-2],[-4,-18],[-5,-2],[-1,-16],[-10,-1],[-4,-8],[-5,-31]],[[7406,7292],[7,2],[-1,-10],[7,2],[4,-4],[-5,-5],[5,-2],[2,5],[4,-1],[0,-8],[3,-14],[3,7],[8,-4],[-2,8],[5,0],[3,-9],[11,0],[-1,-7],[8,1],[7,-10],[7,-3],[8,5],[16,-9],[15,0],[11,-7],[7,6],[2,-5],[11,-2],[7,-6],[-5,-16],[-1,-31],[-2,-11],[-5,-11],[-1,-8],[-7,-12],[-8,-6],[-6,-24],[-6,-4],[0,-14],[-5,-5],[1,-19],[17,-13],[29,-43],[6,-16],[18,0],[41,6],[7,7],[9,-5],[8,2],[2,-16],[7,-12],[7,-5],[-3,-8],[-2,-14],[2,-17],[3,-3],[-4,-8],[2,-17]],[[6725,9498],[14,1],[2,4],[7,-1],[12,4],[-4,4],[-9,-6],[-2,5],[2,8],[-19,4],[-2,3],[7,8],[-5,0],[0,6],[-9,0],[-6,-7],[-1,-8],[-11,-8],[0,-5]],[[6678,9609],[8,-4],[5,-7],[8,5],[9,-3],[4,5],[17,4],[4,13],[-2,11],[3,2],[-11,5],[3,3],[7,-3],[5,-10],[12,4],[3,-10],[12,-9],[-4,-7],[8,-11],[0,-4],[-17,-22],[19,-16],[6,-9],[11,-8],[14,3],[18,-10],[18,-1],[5,-4],[10,0],[4,4],[5,-6],[11,4],[7,-6],[9,7],[15,-8],[0,16],[-12,13],[-1,5],[13,8],[18,-4],[21,5]],[[6762,4755],[11,-18],[-4,-6],[4,-5],[-10,-5],[-8,10],[1,14],[6,10]],[[5682,5121],[7,3],[8,-5],[6,-9],[4,4],[5,-7],[5,2],[7,9],[4,-6],[-13,-8],[-5,2],[-11,-10],[-12,6],[-5,19]],[[8173,8315],[-11,-2],[-13,2],[-9,-5],[-12,8],[-18,3],[-10,-4],[-2,-12],[-6,-5],[-6,11],[-11,16],[-5,18],[-12,6],[-18,13],[-11,0],[-13,7],[-8,8],[-14,8],[-10,3],[-8,-2],[-11,14],[-10,2],[-4,7],[-15,18],[-5,-6],[-6,-3],[-15,13],[-16,7],[-10,13],[2,12],[-8,0],[-12,3],[-4,17],[-11,5],[-8,-3],[-13,-2],[-4,5],[-10,-4],[2,-20],[6,-7],[5,0],[12,-10],[9,-23],[-2,-8],[-9,-6],[-4,7],[-4,18],[-21,29],[-4,4],[-11,-6],[2,-39],[-8,-6],[-12,-1],[13,-12],[5,-8],[9,-8],[-13,-12],[-12,-17],[-3,-10],[-10,-11],[-9,8],[-6,12],[-11,14],[-4,2],[-1,-7],[-5,-4],[-4,-10],[-2,-17],[-17,-7],[-14,7],[-11,14],[0,11],[-3,-2],[0,-12],[-5,-9],[-6,-4],[1,-7],[-11,-6],[-3,-5],[-17,10],[-7,2],[-1,12],[9,19],[-9,-7],[-11,2],[-6,-2],[-9,10],[-12,9],[-9,1],[-5,-7],[2,-8],[-4,-4],[-23,-7],[-8,2],[-8,7],[-8,-5],[-12,-5],[-7,-13],[8,-15],[-8,-14],[-8,-4],[-4,2],[-16,0],[-9,4],[-3,8],[4,7],[-4,3],[-8,-9],[-12,-4],[0,-10],[-5,-4],[2,-5],[-4,-5],[-8,-1],[-17,-7],[8,-5],[5,-10],[1,-9],[-11,-11],[-1,-6],[-14,10],[-3,-5],[-21,-10],[-14,-2],[-12,4]],[[7163,8362],[-12,10],[-1,5],[-29,8],[-2,21],[-6,40],[-5,3],[3,15],[-1,4],[6,12],[-3,11],[6,0],[11,9],[2,6],[2,28],[7,13],[24,-7],[5,-5],[0,-14],[-3,-9],[6,-3],[8,1],[4,5],[14,4],[7,5],[7,-1],[1,8],[-8,3],[2,3],[-2,20],[-6,10],[-6,5],[3,18],[-2,7],[5,12],[-3,7],[-9,12],[1,15],[15,2],[16,-4],[4,11],[7,10],[9,6],[2,-2],[6,15],[21,-1],[3,2],[-1,13],[3,8],[6,1],[1,11],[5,5],[-6,5],[-10,2],[3,9],[-8,9],[-2,8],[-12,6],[4,11],[8,8],[3,7],[-1,22],[-5,-2],[-3,8],[0,8],[-8,13],[1,17],[-1,18]],[[8246,8444],[-5,-19],[3,-8],[-7,2],[0,-8],[-11,3],[-8,-4],[-7,-24],[-1,-13],[-14,-10],[-9,1],[-1,-12],[-16,4],[2,-4],[-8,-3],[4,-6],[-4,-8],[0,-12],[9,-1],[0,-7]],[[5194,8453],[4,4],[10,-1],[4,4],[3,10],[6,4],[-4,3],[5,9],[10,2],[7,6],[-7,7],[2,9],[10,5],[4,-9],[7,0],[12,6],[-2,7],[-5,3],[2,7],[8,2],[6,9],[-5,9],[9,12],[1,7],[7,5],[0,4],[8,4],[-3,8],[6,2],[11,16],[0,5],[7,11],[6,4],[-3,9],[-6,6],[-11,5],[-9,16],[-15,14],[-6,4],[-25,9],[-8,-2],[-13,5],[-9,-2],[-6,4],[-6,-2],[-2,-9],[-14,-6],[-11,2],[-7,9],[-9,6],[-2,10],[3,-1],[-4,13],[0,11],[-6,3],[6,9],[5,16],[-1,7],[3,4],[4,20],[4,13],[2,13],[-24,5],[5,8],[5,17],[0,13],[-18,14],[-4,-12],[-8,-4],[-8,0],[-29,-5],[-23,6],[-7,19],[-1,6],[-19,5],[1,-13],[-5,-15],[-10,-3],[-12,4],[-7,-5],[-21,4],[-5,-1],[-6,15],[-12,1]],[[5620,8950],[1,-8],[8,-11],[-3,-5],[9,-12],[-2,-3],[9,-13],[0,-4],[-7,-7],[1,-7],[21,-10],[3,22],[-7,6],[11,11]],[[5684,8916],[13,-12],[10,-1],[11,-18],[9,-8],[-11,-16],[-13,-8],[11,-5],[7,-8],[-7,-16],[1,-22],[-10,-16],[10,-4],[9,1],[5,-3],[-2,-5],[-16,-14],[-11,-1],[-4,-6],[-7,-1],[-11,-11],[0,-5],[7,-15],[6,0],[2,-7],[0,-11],[7,0],[1,-8],[5,-4],[2,-11],[-1,-12],[3,-4],[-4,-13],[3,-3],[13,-1],[9,-5],[2,-7],[-12,-9],[10,-10],[0,-5],[11,-3],[8,-11],[-15,-15],[-6,1],[-11,-4],[-9,-11],[-6,-4],[-5,3],[3,-10],[6,-5],[-3,-3],[-3,-16],[14,-7],[-11,-18],[0,-16],[5,-20],[7,-5],[1,-11],[3,-5],[0,-13],[-2,-5],[2,-21],[-7,-5],[-1,-6],[-12,-11],[7,-10],[11,5],[5,-2]],[[5723,8384],[-4,-14],[3,-3],[-3,-18],[-14,-5],[-5,3],[-7,11],[-12,-4],[-8,8],[2,10],[-4,14],[-16,0],[-15,-5],[3,-12],[-7,-8],[-1,21],[-4,-1],[-27,23],[-7,1],[-7,-9],[-10,7],[-8,1],[-2,9],[-10,10],[-6,-1],[-4,-7],[-10,1],[-22,-5],[-6,-6],[-12,0],[-8,5],[-12,-3],[-13,5],[-6,6],[-8,1],[-7,-5],[-4,-8],[3,-24],[-8,-8],[0,-9],[-8,-7],[-6,3],[-4,17],[-5,0],[-8,-12],[-9,1],[-2,13],[8,15],[-17,5],[-6,8],[-6,-6],[-15,1],[-12,-14],[-13,10],[-5,1],[-22,12],[-4,6],[-8,3],[-7,8],[-14,1],[-8,9],[-13,1],[-11,8],[-9,-4],[-10,-2],[-14,5],[-4,5],[-5,-4],[-6,5]],[[6673,9728],[11,1],[7,-2],[1,6],[7,1],[21,-12],[7,2],[0,-10],[5,-3],[4,7],[-4,13],[-8,9],[3,3],[11,4],[14,13],[2,5],[10,-1],[-3,7],[4,8],[12,2],[17,-1],[6,-4],[9,1],[17,-1],[10,8],[11,4],[4,4],[7,-18],[8,-1],[-1,-5],[9,-2],[2,-5],[8,3],[8,-2],[6,5],[5,-9],[9,-7],[6,2],[10,-5],[7,3],[9,-11],[15,3],[10,-9],[12,-17],[11,-1],[10,-8]],[[6555,9592],[-2,11],[-5,17],[0,17],[-7,18],[6,0],[8,3],[5,6],[4,-3],[7,16],[10,1],[9,3],[-2,10],[5,5],[4,-6],[13,5],[2,-6],[11,3],[4,-2],[21,-5],[7,9],[16,2],[3,11],[-1,21]],[[6606,9669],[5,-10],[-2,-22],[5,-6],[9,6],[-2,16],[8,8],[1,9],[-9,4],[-15,-5]],[[5796,8353],[-9,9],[-15,13],[-5,-4],[-8,3],[-4,-4],[-5,18],[-11,7],[-16,-3],[0,-8]],[[6305,8632],[0,-5],[-6,-12],[0,-20],[-3,-5],[-12,2],[-9,-7],[-4,-6],[-10,-1],[-13,-8],[-12,-4],[-3,-4],[-7,7],[-5,-3],[-12,-3],[-16,-10],[-7,4],[-6,-7],[-6,4],[-11,0],[-9,-2],[-5,-6],[-14,4],[-1,-9],[-20,3],[-7,-5],[-27,-15],[-13,1],[0,-10],[14,-17],[-5,-2],[-3,-13],[4,-10],[5,0],[5,-6],[0,-16],[-13,7],[-2,6],[-9,5],[-4,0],[-10,-11],[-9,4],[-9,7],[-4,-4],[2,-7],[11,-11],[1,-7],[-11,-5],[-2,-7],[-9,-12],[-12,-8],[0,-13],[6,-6],[4,-12],[-7,-2],[-16,11],[-10,-7],[-8,-11],[-1,-5]],[[7431,7742],[7,-4],[5,2],[13,-5],[6,4],[7,-1],[4,-6],[8,8],[7,3],[1,11],[-2,12],[5,12],[8,2],[-2,-5],[6,-17],[14,-17],[3,2],[-2,-15],[6,-6],[6,2],[7,-4],[26,3],[7,-11],[10,-3],[10,-10],[7,-10],[0,-5],[-5,-10],[-23,-13],[-13,-3]],[[7567,7634],[7,-5],[10,7],[5,-4],[3,5],[13,3],[14,-4],[10,5],[16,-5],[16,-11],[5,5],[7,-15],[0,-9],[-4,-5],[6,-16],[-4,-4],[-1,-11],[10,-10],[9,-3],[18,15],[13,6]],[[7991,7480],[-5,-18],[-2,-13],[-4,-15],[-11,-8],[-10,-14],[-7,-24],[-18,-31],[-3,-15],[1,-22],[4,-8],[-5,2],[-4,-12],[0,-11],[3,-19],[9,-31],[10,-28],[18,-43],[10,-21],[0,-5],[-7,0],[-2,-8],[2,-19],[12,-36],[13,-30],[20,-37],[12,-17],[15,-17],[16,-17]],[[8173,8315],[-1,-5],[5,-5],[-4,-8],[6,2],[-1,-6],[6,4],[8,-10],[7,-4],[-9,-2],[7,-7],[-3,-2],[6,-9],[0,-7],[5,-4],[-4,-3],[-4,-17],[-9,-11],[-4,-20],[-3,-1],[7,-7],[-2,-11],[4,-11],[9,-11],[-6,-5],[-3,-8],[-11,-8],[-2,-12],[-8,0],[-10,-11],[-6,3],[0,-8],[-7,6],[5,-11]],[[8807,8392],[-15,-3],[-32,-5],[-34,-11],[-26,-15],[-3,-4],[-7,0],[-18,-6],[-9,3],[-13,-2],[-12,-9],[-4,1],[-6,-7],[0,5],[-7,-6],[-6,3],[-10,-10],[-9,-21],[-13,11],[-10,1],[-17,-7],[-16,0],[-19,-12],[-5,-1],[-11,-8],[-13,-16],[-2,-7],[-8,-3],[-7,-7],[-11,-15],[-6,-3],[-2,-7],[-9,-10],[-4,-10],[-14,-17],[-2,-6],[-10,-5],[-3,-7],[-8,-5],[-1,-9],[-16,-9],[-3,-4],[3,-9],[13,-13],[12,-3],[8,7],[-9,4],[-7,1],[-6,5],[7,2],[13,-4],[21,-31],[7,-4],[9,3],[9,-5],[0,-6],[-3,-11],[-8,-10],[-10,-7],[-31,-18],[-7,-6],[-16,-28],[-9,-10],[-13,-9],[-11,-3],[-9,1],[-8,8],[-2,7],[10,-1],[0,5],[14,-7],[4,3],[2,8],[13,-1],[9,2],[15,27],[-5,2],[-20,-3],[-11,-5],[-17,-3],[-9,1],[-7,-8],[-13,-16],[-10,-11],[-6,-14],[-4,-13]],[[6649,8459],[-13,9],[0,7],[-5,0],[-10,7],[-1,7],[-25,15],[-8,13],[2,12],[-2,8],[3,13],[4,6],[-9,-2],[-6,7],[-9,-2],[-18,11],[-1,9],[3,9],[-17,15],[-9,-10],[-10,5],[-15,13],[-4,14],[1,4]],[[6069,9753],[9,2],[8,-4],[13,4],[21,0],[11,-3],[14,8],[1,-5],[6,-4],[20,-2],[3,4],[18,4],[7,-3],[15,5],[3,-2],[8,5],[21,6],[14,12],[1,-4],[24,6],[4,4],[7,-5],[9,4],[9,6],[6,8],[31,8],[5,-3],[10,5],[2,-3],[5,7],[6,3],[12,-2],[-1,-7],[7,-8],[-17,-7],[-2,-12],[-7,-2],[12,-5],[-8,-9],[3,-3],[15,11],[-5,4],[10,11],[6,0],[-3,-9],[4,1],[4,8],[-14,6],[19,1],[5,8],[7,4],[11,-1],[16,13],[15,0],[7,9],[8,-4],[13,1],[4,-9],[10,0],[2,-10],[18,-7],[10,0],[8,-3],[3,-11],[-6,-4],[-10,1],[-10,-5],[9,0],[-1,-16],[4,6],[3,13],[7,-11],[5,-3],[23,2],[6,-3],[14,3],[0,-6],[7,2],[15,-5],[9,1],[16,-6],[4,-12],[7,-2],[15,-13],[4,2]],[[5022,7819],[1,16],[11,12],[10,7],[7,-1],[5,6],[-2,13],[6,6],[-13,12],[-11,15],[-7,27],[7,14],[8,9],[1,7],[9,7],[-4,12],[1,12],[-20,9],[4,18],[4,5],[9,17],[6,20],[-5,3],[1,6],[-4,20],[1,5],[-7,8],[-2,14],[1,15],[5,19],[-3,12],[0,11],[5,-2],[5,4],[-3,21],[-5,-1],[-9,6],[-5,8],[1,13],[-6,16],[-11,13],[-2,6],[-12,13],[-6,10],[1,8],[6,5],[17,-7],[18,0],[13,5],[0,6],[8,8],[7,10],[2,8],[7,10],[-7,13],[1,7],[7,3],[10,14],[9,6],[7,13],[0,9],[13,14],[5,3],[4,8],[6,-4],[9,5],[5,-4],[3,7],[3,-8],[6,-2],[9,4],[2,8],[13,10],[3,-7],[6,1],[8,7],[-6,6],[6,5]],[[4121,9008],[-6,1],[-1,9],[7,-10]],[[4112,9021],[4,20],[4,-10],[-2,-7],[-6,-3]],[[4130,9215],[-3,10],[4,9],[-8,7],[5,5],[1,-6],[5,1],[2,-5],[-4,-10],[2,-10],[-4,-1]],[[4100,9110],[-4,4],[4,3],[-2,8],[8,6],[-6,-21]],[[4429,8986],[-3,-9],[-11,-4],[-10,2],[-2,-10],[-7,1],[-13,-11],[-9,-2],[-4,-11],[-9,4],[-7,-1],[-10,-8],[-6,3],[-11,-5],[-6,6],[-19,0],[-17,-2],[-1,-9],[-14,-8],[-16,2],[-16,-3],[-13,-12],[-1,-17],[-9,-8],[-15,-6],[-14,-10],[-1,-14],[-3,-4],[-14,-11],[-16,-8],[-7,-11],[-14,-12],[-5,10],[3,10],[-5,11],[-1,12],[2,10],[-2,15],[3,16],[-3,8],[2,15],[-6,22],[2,4],[-4,19],[9,-2],[8,7],[6,0],[7,-5],[5,2],[0,17],[-12,4],[0,4],[9,-2],[5,5],[3,12],[-2,4],[16,10],[1,10],[7,7],[10,-3],[6,11],[6,-2],[4,12],[6,-2],[6,5],[4,9],[9,7],[8,-4],[7,8],[-4,8],[5,11],[0,11],[-7,3],[-7,-9],[3,-6],[-9,-4],[-3,-6],[5,-8],[-3,-3],[-9,-1],[-5,-7],[-10,-1],[-3,7],[-5,-1],[-3,-8],[-13,-9],[-8,2],[-2,-9],[-7,1],[-5,6],[-4,-5],[-14,6],[-3,-9],[-4,2],[4,12],[2,22],[2,2],[3,-8],[4,-3],[3,-8],[4,-2],[0,14],[2,7],[-9,19],[17,-1],[4,-6],[9,3],[8,7],[6,18],[15,16],[4,-3],[18,20],[-11,-3],[-4,10],[-6,-2],[-4,-7],[-13,-6],[-13,-15],[-7,5],[-13,2],[-3,-6],[-7,-4],[-5,8],[-3,0],[-4,9],[-7,2],[5,12],[-6,13],[-7,3],[-9,-1],[-3,-5],[-7,8],[4,9],[9,-2],[10,5],[-1,6],[5,4],[10,-3],[1,-13],[-7,-8],[2,-8],[9,6],[7,1],[5,-4],[-1,10],[-4,9],[3,7],[7,-1],[2,5],[-6,1],[2,16],[-7,-6],[1,14],[-4,7],[3,14],[9,1],[12,12],[5,-2],[1,9],[-4,4],[11,17],[5,4],[1,8],[5,3],[1,14]],[[1237,181],[-3,-17],[-4,-8],[4,-10],[0,-11],[-6,-1],[-9,-10],[-2,-20],[-7,-5],[-25,-6],[-9,-5],[-8,-7],[-13,-6],[-5,-15],[-11,-1],[-9,9],[-6,-2],[-12,7],[-6,-5],[-7,13],[-6,4],[-18,15],[-5,8],[-6,2],[-9,11],[-13,36],[-7,10],[2,25],[-2,15],[7,19],[-2,5],[16,5],[11,15],[10,6],[2,6],[6,4],[6,11],[1,19],[3,10],[-3,4],[4,6],[-6,8],[5,-1],[7,4],[1,-5],[6,-2],[12,8],[5,-2],[6,-12],[15,-3],[17,2],[6,5],[6,-6],[9,0],[12,-12],[10,3],[6,9],[0,8],[-4,3],[9,11],[8,-4],[-3,-14],[-8,-3],[0,-11],[7,-16],[-1,-17],[-2,-9],[6,-15],[8,-5],[1,-7],[8,-15],[-5,-6],[-2,-10],[1,-10],[10,-11],[-9,-1]],[[1931,679],[-5,4],[-1,8],[8,5],[1,-5],[-3,-12]],[[1916,484],[-1,-18],[-4,-3],[-3,-15],[-4,-5],[-1,-11],[-6,-8],[-4,-17],[3,-7],[-8,-13],[-1,-8],[-8,-11],[-6,-4],[-13,1],[-16,-13],[-1,2],[-12,-6],[-13,0],[-17,-8],[-3,2],[-18,-10],[-20,-2],[-9,-6],[-13,-28],[-22,-27],[-10,-15],[-6,-3],[-15,6],[-3,-2],[-14,4],[-11,7],[-19,5],[-12,-4],[5,8],[-3,10],[4,7],[4,-7],[4,3],[10,-3],[26,7],[28,16],[37,36],[13,19],[3,21],[-2,18],[5,25],[11,11],[3,9],[4,4],[0,15],[3,1],[-1,12],[3,11],[10,16],[12,11],[13,34],[2,13],[15,27],[-2,11],[3,12],[6,12],[4,17],[-3,6],[-1,14],[3,0],[16,15],[16,3],[6,7],[5,-3],[12,6],[9,-6],[1,-8],[9,-3],[4,-10],[2,-16],[-1,-7],[5,-51],[-3,-6],[0,-15],[2,-4],[-5,-6],[1,-11],[-4,-13],[-9,-6],[-2,-9],[5,-11],[0,-11],[-3,-5],[5,-9]],[[2063,1079],[-5,8],[4,10],[8,3],[7,-8],[-8,-12],[-6,-1]],[[1983,791],[-17,-7],[-6,-19],[-10,-17],[-5,-6],[-7,13],[-12,2],[-5,-4],[-3,3],[-13,-1],[1,11],[-3,6],[9,5],[2,6],[12,16],[-2,6],[0,31],[2,11],[6,16],[7,5],[10,13],[7,3],[2,6],[16,5],[6,-3],[3,7],[8,2],[2,6],[10,4],[-3,6],[8,2],[6,-4],[12,11],[9,-2],[11,-10],[9,5],[7,11],[1,17],[3,6],[3,13],[5,11],[10,9],[12,-5],[12,-13],[0,-12],[-4,-18],[-8,-5],[-8,-11],[0,-8],[7,-9],[1,-8],[-7,-20],[-3,-14],[3,-6],[-6,-11],[-27,-23],[-4,-6],[-13,-3],[-10,-4],[-5,-8],[-10,-4],[-6,-6],[-14,2],[-11,-3]],[[2057,976],[-4,2],[-1,8],[9,6],[1,16],[7,14],[6,-7],[5,0],[5,-8],[-8,-8],[0,-6],[-7,-12],[-4,1],[-9,-6]],[[89,33],[-5,-13],[0,-15],[-3,-5],[-8,1],[-6,5],[-8,15],[0,3],[-10,9],[-25,5],[-8,3],[-10,-1],[-6,8],[3,8],[1,19],[9,7],[11,-9],[16,-3],[15,6],[10,12],[7,6],[5,12],[-2,7],[9,3],[4,7],[7,1],[6,6],[14,-4],[8,-19],[0,-6],[-11,-18],[0,-5],[-7,-11],[-3,-12],[-8,0],[-3,-5],[-2,-17]],[[431,241],[-3,-3],[-13,2],[-7,-5],[-3,4],[-9,0],[-1,6],[-7,2],[-1,5],[-13,9],[-2,12],[-7,3],[-4,8],[3,20],[-2,11],[5,10],[-1,6],[7,11],[1,8],[6,-1],[20,9],[7,-10],[4,1],[12,-3],[6,1],[5,-12],[7,0],[2,-5],[17,-13],[3,1],[7,-15],[0,-16],[2,-5],[-6,-9],[-13,-10],[-11,-17],[-6,1],[-5,-6]],[[695,240],[-12,-5],[-9,-10],[-9,3],[-6,-6],[-7,1],[-6,7],[2,10],[-3,12],[-12,5],[2,11],[-3,10],[-13,13],[-11,19],[-6,14],[1,5],[-7,7],[-6,12],[-5,23],[3,10],[-5,11],[-4,1],[-1,8],[-9,10],[-10,22],[-8,2],[2,11],[9,2],[12,5],[10,11],[8,3],[9,-11],[24,-1],[7,4],[26,6],[2,6],[10,-3],[23,-1],[18,11],[3,4],[15,0],[8,4],[3,9],[9,1],[1,8],[8,4],[1,7],[11,11],[3,18],[20,18],[5,-1],[10,7],[4,0],[2,12],[5,1],[9,-6],[11,6],[8,-5],[5,1],[8,-4],[15,4],[9,8],[7,3],[10,-5],[6,-18],[-10,-19],[-6,1],[-13,-9],[-4,-7],[-3,1],[-8,-6],[-7,-2],[-8,-22],[-6,-1],[-12,-17],[-12,-13],[-3,1],[-12,-12],[-7,-17],[5,-22],[-1,-8],[-10,-14],[-1,-12],[-7,-13],[-10,-26],[2,-2],[-4,-16],[2,-3],[-4,-7],[4,-4],[-7,-5],[-4,-8],[-6,-6],[-13,-23],[-5,-4],[-8,-13],[-9,-8],[-2,-10],[-6,4],[-17,-3]],[[162,544],[-9,-15],[-7,-23],[-4,-3],[-7,5],[-5,8],[-3,11],[0,19],[-2,11],[-6,11],[-3,9],[-11,15],[1,8],[-10,26],[-9,11],[1,4],[-9,34],[-11,17],[2,16],[7,8],[5,10],[12,14],[1,4],[9,3],[3,7],[7,-2],[1,-5],[20,-8],[9,1],[13,5],[13,-2],[2,-9],[7,-13],[0,-10],[7,-16],[4,-4],[4,-11],[-4,-11],[-6,-5],[-6,-10],[-4,-13],[5,-15],[4,-19],[-3,-5],[0,-11],[-2,-15],[-12,-16],[-4,-16]],[[5722,5653],[0,0]]],"bbox":[-18.16093394,27.639534480000002,4.32739117,43.791341700000004],"transform":{"scale":[0.0022490574167416738,0.0016153422562256228],"translate":[-18.16093394,27.639534480000002]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment