Skip to content

Instantly share code, notes, and snippets.

@tlfrd
Last active July 24, 2017 13:16
Show Gist options
  • Save tlfrd/c1cc28bcf86d65c6320dbb31d601d9ff to your computer and use it in GitHub Desktop.
Save tlfrd/c1cc28bcf86d65c6320dbb31d601d9ff to your computer and use it in GitHub Desktop.
Arithmopleth Map
license: mit
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/topojson.v2.min.js"></script>
<style>
html {
font-family: monospace;
}
.constituency {
fill: none;
stroke-width: 0.25;
stroke: #c9c9c9;
}
text {
opacity: 0.8;
cursor: default;
}
</style>
</head>
<body>
<script>
var svgWidth = 960,
svgHeight = 500;
var margin = {top: 20, right: 10, bottom: 20, left: 10};
var width = svgWidth - margin.left - margin.right,
height = svgHeight - margin.top - margin.bottom;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var dataUrl = "https://raw.githubusercontent.com/ft-interactive/ge2017-dataset/master/financialTimes_ge2017_dataset.csv"
d3.queue()
.defer(d3.csv, dataUrl)
.defer(d3.json, "topo_wpc.json")
.await(ready);
function ready(error, data, uk) {
if (error) throw error;
var dataObject = {};
data.forEach(function(d, i) {
dataObject[d.PCON15CD] = d;
});
var constituencies = topojson.feature(uk, uk.objects.wpc).features;
var projection = d3.geoAlbers()
.fitSize([width, height], topojson.feature(uk, uk.objects.wpc));
var path = d3.geoPath()
.projection(projection);
var centroids = [];
constituencies.map(function(d) {
var centroid = path.centroid(d);
var info = dataObject[d.id];
var attr = "econ_unemploymentRate_2015";
if (info) {
if (info[attr] != "NA") {
var datum = {
x: centroid[0],
y: centroid[1],
value: +info[attr]
}
centroids.push(datum);
}
}
});
var range = d3.extent(centroids, function(d) { return Math.round(d.value)} );
var colour = d3.scaleSequential(d3.interpolateMagma)
.domain(range);
svg.selectAll("path")
.data(constituencies)
.enter().append("path")
.attr("class", "constituency")
.attr("d", path);
var numbers = svg.selectAll("text")
.data(centroids)
.enter().append("text")
.attr("class", "values")
.attr("x", function(d) { return d.x })
.attr("y", -25)
.style("text-anchor", "middle")
.style("font-size", "8px")
.style("fill", function(d) { return colour(Math.round(d.value)); })
.text(function(d) { return Math.round(d.value) })
.on("mouseover", function() {
d3.select(this)
.transition()
.style("font-size", "16px");
})
.on("mouseout", function() {
d3.select(this)
.transition()
.style("font-size", "8px");
})
numbers
.transition()
.duration(1000)
.delay(function(d, i) { return i * 5 })
.attr("x", function(d) { return d.x })
.attr("y", function(d) { return d.y })
}
</script>
</body>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"wpc":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"PCON13CD":"E14000530","PCON13CDO":"A01","PCON13NM":"Aldershot"},"id":"E14000530","arcs":[[0,1,2,3]]},{"type":"Polygon","properties":{"PCON13CD":"E14000531","PCON13CDO":"A02","PCON13NM":"Aldridge-Brownhills"},"id":"E14000531","arcs":[[4,5,6,7,8,9,10,11]]},{"type":"Polygon","properties":{"PCON13CD":"E14000532","PCON13CDO":"A03","PCON13NM":"Altrincham and Sale West"},"id":"E14000532","arcs":[[12,13,14,15,16]]},{"type":"Polygon","properties":{"PCON13CD":"E14000533","PCON13CDO":"A04","PCON13NM":"Amber Valley"},"id":"E14000533","arcs":[[17,18,19,20,21,22]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000534","PCON13CDO":"A05","PCON13NM":"Arundel and South Downs"},"id":"E14000534","arcs":[[[23]],[[24,25,26,27,28,29,30,31,32,33,34,35,36]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000535","PCON13CDO":"A06","PCON13NM":"Ashfield"},"id":"E14000535","arcs":[[37,38,39,-23,40]]},{"type":"Polygon","properties":{"PCON13CD":"E14000536","PCON13CDO":"A07","PCON13NM":"Ashford"},"id":"E14000536","arcs":[[41,42,43,44,45,46,47]]},{"type":"Polygon","properties":{"PCON13CD":"E14000537","PCON13CDO":"A08","PCON13NM":"Ashton-under-Lyne"},"id":"E14000537","arcs":[[48,49,50,51,52]]},{"type":"Polygon","properties":{"PCON13CD":"E14000538","PCON13CDO":"A09","PCON13NM":"Aylesbury"},"id":"E14000538","arcs":[[53,54,55,56,57]]},{"type":"Polygon","properties":{"PCON13CD":"E14000539","PCON13CDO":"A10","PCON13NM":"Banbury"},"id":"E14000539","arcs":[[58,59,60,61,62,63]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000540","PCON13CDO":"A11","PCON13NM":"Barking"},"id":"E14000540","arcs":[[[64,65,66]],[[67,68,69]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000541","PCON13CDO":"A12","PCON13NM":"Barnsley Central"},"id":"E14000541","arcs":[[70,71,72,73]]},{"type":"Polygon","properties":{"PCON13CD":"E14000542","PCON13CDO":"A13","PCON13NM":"Barnsley East"},"id":"E14000542","arcs":[[74,75,76,-74,77]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000543","PCON13CDO":"A14","PCON13NM":"Barrow and Furness"},"id":"E14000543","arcs":[[[78]],[[79,80,81,82,83]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000544","PCON13CDO":"A15","PCON13NM":"Basildon and Billericay"},"id":"E14000544","arcs":[[84,85,86,87]]},{"type":"Polygon","properties":{"PCON13CD":"E14000545","PCON13CDO":"A16","PCON13NM":"Basingstoke"},"id":"E14000545","arcs":[[88,89]]},{"type":"Polygon","properties":{"PCON13CD":"E14000546","PCON13CDO":"A17","PCON13NM":"Bassetlaw"},"id":"E14000546","arcs":[[90,91,92,93,94,95,96,97]]},{"type":"Polygon","properties":{"PCON13CD":"E14000547","PCON13CDO":"A18","PCON13NM":"Bath"},"id":"E14000547","arcs":[[98]]},{"type":"Polygon","properties":{"PCON13CD":"E14000548","PCON13CDO":"A19","PCON13NM":"Batley and Spen"},"id":"E14000548","arcs":[[99,100,101,102,103,104]]},{"type":"Polygon","properties":{"PCON13CD":"E14000549","PCON13CDO":"A20","PCON13NM":"Battersea"},"id":"E14000549","arcs":[[105,106,107,108,109]]},{"type":"Polygon","properties":{"PCON13CD":"E14000550","PCON13CDO":"A21","PCON13NM":"Beaconsfield"},"id":"E14000550","arcs":[[110,111,112,113,114,115,116,117,118,119]]},{"type":"Polygon","properties":{"PCON13CD":"E14000551","PCON13CDO":"A22","PCON13NM":"Beckenham"},"id":"E14000551","arcs":[[120,121,122,123]]},{"type":"Polygon","properties":{"PCON13CD":"E14000552","PCON13CDO":"A23","PCON13NM":"Bedford"},"id":"E14000552","arcs":[[124,125]]},{"type":"Polygon","properties":{"PCON13CD":"E14000553","PCON13CDO":"A24","PCON13NM":"Bermondsey and Old Southwark"},"id":"E14000553","arcs":[[126,127,128,129]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000554","PCON13CDO":"A25","PCON13NM":"Berwick-upon-Tweed"},"id":"E14000554","arcs":[[[130]],[[131]],[[132,133]],[[134,135,136,137]],[[138,139]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000555","PCON13CDO":"A26","PCON13NM":"Bethnal Green and Bow"},"id":"E14000555","arcs":[[140,141,142,143]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000556","PCON13CDO":"A27","PCON13NM":"Beverley and Holderness"},"id":"E14000556","arcs":[[[144,145]],[[146,147,148]],[[149,150,151,152,153]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000557","PCON13CDO":"A28","PCON13NM":"Bexhill and Battle"},"id":"E14000557","arcs":[[154,155,-46,156,157,158,159]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000558","PCON13CDO":"A29","PCON13NM":"Bexleyheath and Crayford"},"id":"E14000558","arcs":[[[160,161,162,163]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000559","PCON13CDO":"A30","PCON13NM":"Birkenhead"},"id":"E14000559","arcs":[[164,165,166,167]]},{"type":"Polygon","properties":{"PCON13CD":"E14000560","PCON13CDO":"A31","PCON13NM":"Birmingham, Edgbaston"},"id":"E14000560","arcs":[[168,169,170,171,172,173,174]]},{"type":"Polygon","properties":{"PCON13CD":"E14000561","PCON13CDO":"A32","PCON13NM":"Birmingham, Erdington"},"id":"E14000561","arcs":[[175,176,177,178,179]]},{"type":"Polygon","properties":{"PCON13CD":"E14000562","PCON13CDO":"A33","PCON13NM":"Birmingham, Hall Green"},"id":"E14000562","arcs":[[180,181,182,183,-172]]},{"type":"Polygon","properties":{"PCON13CD":"E14000563","PCON13CDO":"A34","PCON13NM":"Birmingham, Hodge Hill"},"id":"E14000563","arcs":[[184,185,186,-179]]},{"type":"Polygon","properties":{"PCON13CD":"E14000564","PCON13CDO":"A35","PCON13NM":"Birmingham, Ladywood"},"id":"E14000564","arcs":[[-171,187,188,189,-180,-187,190,-181]]},{"type":"Polygon","properties":{"PCON13CD":"E14000565","PCON13CDO":"A36","PCON13NM":"Birmingham, Northfield"},"id":"E14000565","arcs":[[-174,191,192]]},{"type":"Polygon","properties":{"PCON13CD":"E14000566","PCON13CDO":"A37","PCON13NM":"Birmingham, Perry Barr"},"id":"E14000566","arcs":[[193,-10,194,-176,-190,195]]},{"type":"Polygon","properties":{"PCON13CD":"E14000567","PCON13CDO":"A38","PCON13NM":"Birmingham, Selly Oak"},"id":"E14000567","arcs":[[-173,-184,196,197,-192]]},{"type":"Polygon","properties":{"PCON13CD":"E14000568","PCON13CDO":"A39","PCON13NM":"Birmingham, Yardley"},"id":"E14000568","arcs":[[-191,-186,198,199,-182]]},{"type":"Polygon","properties":{"PCON13CD":"E14000569","PCON13CDO":"A40","PCON13NM":"Bishop Auckland"},"id":"E14000569","arcs":[[200,201,202,203,204]]},{"type":"Polygon","properties":{"PCON13CD":"E14000570","PCON13CDO":"A41","PCON13NM":"Blackburn"},"id":"E14000570","arcs":[[205,206,207,208]]},{"type":"Polygon","properties":{"PCON13CD":"E14000571","PCON13CDO":"A42","PCON13NM":"Blackley and Broughton"},"id":"E14000571","arcs":[[209,210,211,212,213]]},{"type":"Polygon","properties":{"PCON13CD":"E14000572","PCON13CDO":"A43","PCON13NM":"Blackpool North and Cleveleys"},"id":"E14000572","arcs":[[214,215,216,217,218,219]]},{"type":"Polygon","properties":{"PCON13CD":"E14000573","PCON13CDO":"A44","PCON13NM":"Blackpool South"},"id":"E14000573","arcs":[[220,-218,221]]},{"type":"Polygon","properties":{"PCON13CD":"E14000574","PCON13CDO":"A45","PCON13NM":"Blaydon"},"id":"E14000574","arcs":[[222,223,224,225,226,227]]},{"type":"Polygon","properties":{"PCON13CD":"E14000575","PCON13CDO":"A46","PCON13NM":"Blyth Valley"},"id":"E14000575","arcs":[[228,229,230,231,232]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000576","PCON13CDO":"A47","PCON13NM":"Bognor Regis and Littlehampton"},"id":"E14000576","arcs":[[[233,234,235,-36,236]],[[-34,237,238]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000577","PCON13CDO":"A48","PCON13NM":"Bolsover"},"id":"E14000577","arcs":[[239,-91,240,-41,-22,241,242,243,244]]},{"type":"Polygon","properties":{"PCON13CD":"E14000578","PCON13CDO":"A49","PCON13NM":"Bolton North East"},"id":"E14000578","arcs":[[245,246,247,248,249]]},{"type":"Polygon","properties":{"PCON13CD":"E14000579","PCON13CDO":"A50","PCON13NM":"Bolton South East"},"id":"E14000579","arcs":[[250,251,-249,252,253]]},{"type":"Polygon","properties":{"PCON13CD":"E14000580","PCON13CDO":"A51","PCON13NM":"Bolton West"},"id":"E14000580","arcs":[[254,255,-250,-252,256,257,258,259]]},{"type":"Polygon","properties":{"PCON13CD":"E14000581","PCON13CDO":"A52","PCON13NM":"Bootle"},"id":"E14000581","arcs":[[260,261,262,263]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000582","PCON13CDO":"A53","PCON13NM":"Boston and Skegness"},"id":"E14000582","arcs":[[[264,265]],[[266,267,268,269]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000583","PCON13CDO":"A54","PCON13NM":"Bosworth"},"id":"E14000583","arcs":[[270,271,272,273,274,275]]},{"type":"Polygon","properties":{"PCON13CD":"E14000584","PCON13CDO":"A55","PCON13NM":"Bournemouth East"},"id":"E14000584","arcs":[[276,277,278,279,280,281,282]]},{"type":"Polygon","properties":{"PCON13CD":"E14000585","PCON13CDO":"A56","PCON13NM":"Bournemouth West"},"id":"E14000585","arcs":[[283,284,285,-281,286]]},{"type":"Polygon","properties":{"PCON13CD":"E14000586","PCON13CDO":"A57","PCON13NM":"Bracknell"},"id":"E14000586","arcs":[[287,288,-2,289,290]]},{"type":"Polygon","properties":{"PCON13CD":"E14000587","PCON13CDO":"A58","PCON13NM":"Bradford East"},"id":"E14000587","arcs":[[291,292,293,294]]},{"type":"Polygon","properties":{"PCON13CD":"E14000588","PCON13CDO":"A59","PCON13NM":"Bradford South"},"id":"E14000588","arcs":[[-295,295,296,297,-101,298,299,300]]},{"type":"Polygon","properties":{"PCON13CD":"E14000589","PCON13CDO":"A60","PCON13NM":"Bradford West"},"id":"E14000589","arcs":[[-292,-301,301,302]]},{"type":"Polygon","properties":{"PCON13CD":"E14000590","PCON13CDO":"A61","PCON13NM":"Braintree"},"id":"E14000590","arcs":[[303,304,305,306,307,308]]},{"type":"Polygon","properties":{"PCON13CD":"E14000591","PCON13CDO":"A62","PCON13NM":"Brent Central"},"id":"E14000591","arcs":[[309,310,311,312,313,314,315]]},{"type":"Polygon","properties":{"PCON13CD":"E14000592","PCON13CDO":"A63","PCON13NM":"Brent North"},"id":"E14000592","arcs":[[316,317,-313,318,319,320]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000593","PCON13CDO":"A64","PCON13NM":"Brentford and Isleworth"},"id":"E14000593","arcs":[[[321,322,323,324,325,326]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000594","PCON13CDO":"A65","PCON13NM":"Brentwood and Ongar"},"id":"E14000594","arcs":[[327,-88,328,329,330,331,332,333,334]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000595","PCON13CDO":"A66","PCON13NM":"Bridgwater and West Somerset"},"id":"E14000595","arcs":[[[335,336,337,338]],[[339,340,341,342,343,344]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000596","PCON13CDO":"A67","PCON13NM":"Brigg and Goole"},"id":"E14000596","arcs":[[[345]],[[346,347]],[[348,349,350,351,352,-94]],[[353,354,355,356]],[[357,358,359]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000597","PCON13CDO":"A68","PCON13NM":"Brighton, Kemptown"},"id":"E14000597","arcs":[[360,361,362]]},{"type":"Polygon","properties":{"PCON13CD":"E14000598","PCON13CDO":"A69","PCON13NM":"Brighton, Pavilion"},"id":"E14000598","arcs":[[-28,363,-362,364,365]]},{"type":"Polygon","properties":{"PCON13CD":"E14000599","PCON13CDO":"A70","PCON13NM":"Bristol East"},"id":"E14000599","arcs":[[366,367,368,369,370,371,372]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000600","PCON13CDO":"A71","PCON13NM":"Bristol North West"},"id":"E14000600","arcs":[[[373,374,375]],[[-373,376,377,378]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000601","PCON13CDO":"A72","PCON13NM":"Bristol South"},"id":"E14000601","arcs":[[379,-370,380,381,382]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000602","PCON13CDO":"A73","PCON13NM":"Bristol West"},"id":"E14000602","arcs":[[[-372,383,-377]],[[384,-375,385,-383]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000603","PCON13CDO":"A74","PCON13NM":"Broadland"},"id":"E14000603","arcs":[[386,387,388,389,390,391,392,393,394,395,396,397]]},{"type":"Polygon","properties":{"PCON13CD":"E14000604","PCON13CDO":"A75","PCON13NM":"Bromley and Chislehurst"},"id":"E14000604","arcs":[[-123,398,399,400,401]]},{"type":"Polygon","properties":{"PCON13CD":"E14000605","PCON13CDO":"A76","PCON13NM":"Bromsgrove"},"id":"E14000605","arcs":[[402,-175,-193,-198,403,404,405,406,407,408,409,410]]},{"type":"Polygon","properties":{"PCON13CD":"E14000606","PCON13CDO":"A77","PCON13NM":"Broxbourne"},"id":"E14000606","arcs":[[411,412,413,414,415,416]]},{"type":"Polygon","properties":{"PCON13CD":"E14000607","PCON13CDO":"A78","PCON13NM":"Broxtowe"},"id":"E14000607","arcs":[[417,-18,-40,418,419,420,421]]},{"type":"Polygon","properties":{"PCON13CD":"E14000608","PCON13CDO":"A79","PCON13NM":"Buckingham"},"id":"E14000608","arcs":[[422,423,424,425,426,-58,427,-62,428]]},{"type":"Polygon","properties":{"PCON13CD":"E14000609","PCON13CDO":"A80","PCON13NM":"Burnley"},"id":"E14000609","arcs":[[429,430,431,432,433]]},{"type":"Polygon","properties":{"PCON13CD":"E14000610","PCON13CDO":"A81","PCON13NM":"Burton"},"id":"E14000610","arcs":[[434,435,436,437,438]]},{"type":"Polygon","properties":{"PCON13CD":"E14000611","PCON13CDO":"A82","PCON13NM":"Bury North"},"id":"E14000611","arcs":[[439,440,-247,441]]},{"type":"Polygon","properties":{"PCON13CD":"E14000612","PCON13CDO":"A83","PCON13NM":"Bury South"},"id":"E14000612","arcs":[[-253,-248,-441,442,-214,443]]},{"type":"Polygon","properties":{"PCON13CD":"E14000613","PCON13CDO":"A84","PCON13NM":"Bury St Edmunds"},"id":"E14000613","arcs":[[444,445,446,447,448]]},{"type":"Polygon","properties":{"PCON13CD":"E14000614","PCON13CDO":"A85","PCON13NM":"Calder Valley"},"id":"E14000614","arcs":[[449,-299,-100,450,451,452,453,454,-433,455,456]]},{"type":"Polygon","properties":{"PCON13CD":"E14000615","PCON13CDO":"A86","PCON13NM":"Camberwell and Peckham"},"id":"E14000615","arcs":[[457,-130,458,459,460]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000616","PCON13CDO":"A87","PCON13NM":"Camborne and Redruth"},"id":"E14000616","arcs":[[[461,462,463,464]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000617","PCON13CDO":"A88","PCON13NM":"Cambridge"},"id":"E14000617","arcs":[[465,466]]},{"type":"Polygon","properties":{"PCON13CD":"E14000618","PCON13CDO":"A89","PCON13NM":"Cannock Chase"},"id":"E14000618","arcs":[[467,468,469,-6]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000619","PCON13CDO":"A90","PCON13NM":"Canterbury"},"id":"E14000619","arcs":[[[470,471,472,473,474,-43,475,476]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000620","PCON13CDO":"A91","PCON13NM":"Carlisle"},"id":"E14000620","arcs":[[[477,478]],[[479,480,481]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000621","PCON13CDO":"A92","PCON13NM":"Carshalton and Wallington"},"id":"E14000621","arcs":[[482,483,484,485,486]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000622","PCON13CDO":"A93","PCON13NM":"Castle Point"},"id":"E14000622","arcs":[[[487,488]],[[489]],[[490,491,492,493]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000623","PCON13CDO":"A94","PCON13NM":"Central Devon"},"id":"E14000623","arcs":[[494,495,496,497,498,499,500,501,502]]},{"type":"Polygon","properties":{"PCON13CD":"E14000624","PCON13CDO":"A95","PCON13NM":"Central Suffolk and North Ipswich"},"id":"E14000624","arcs":[[503,-448,504,505,506,507]]},{"type":"Polygon","properties":{"PCON13CD":"E14000625","PCON13CDO":"A96","PCON13NM":"Charnwood"},"id":"E14000625","arcs":[[508,509,510,-275,511,512,513]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000626","PCON13CDO":"A97","PCON13NM":"Chatham and Aylesford"},"id":"E14000626","arcs":[[[514,515,516,517,518]],[[519,520,521,522]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000627","PCON13CDO":"A98","PCON13NM":"Cheadle"},"id":"E14000627","arcs":[[523,524,525,526,527,528]]},{"type":"Polygon","properties":{"PCON13CD":"E14000628","PCON13CDO":"A99","PCON13NM":"Chelmsford"},"id":"E14000628","arcs":[[529,530]]},{"type":"Polygon","properties":{"PCON13CD":"E14000629","PCON13CDO":"B01","PCON13NM":"Chelsea and Fulham"},"id":"E14000629","arcs":[[531,532,533,534]]},{"type":"Polygon","properties":{"PCON13CD":"E14000630","PCON13CDO":"B02","PCON13NM":"Cheltenham"},"id":"E14000630","arcs":[[535,536]]},{"type":"Polygon","properties":{"PCON13CD":"E14000631","PCON13CDO":"B03","PCON13NM":"Chesham and Amersham"},"id":"E14000631","arcs":[[537,-120,538,-55]]},{"type":"Polygon","properties":{"PCON13CD":"E14000632","PCON13CDO":"B04","PCON13NM":"Chesterfield"},"id":"E14000632","arcs":[[-244,539]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000633","PCON13CDO":"B05","PCON13NM":"Chichester"},"id":"E14000633","arcs":[[[540,-234]],[[541]],[[542,543,544,545,546,-37,-236,547,548]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000634","PCON13CDO":"B06","PCON13NM":"Chingford and Woodford Green"},"id":"E14000634","arcs":[[549,550,551,552,553]]},{"type":"Polygon","properties":{"PCON13CD":"E14000635","PCON13CDO":"B07","PCON13NM":"Chippenham"},"id":"E14000635","arcs":[[554,555,556,557,558]]},{"type":"Polygon","properties":{"PCON13CD":"E14000636","PCON13CDO":"B08","PCON13NM":"Chipping Barnet"},"id":"E14000636","arcs":[[559,560,561,562,563]]},{"type":"Polygon","properties":{"PCON13CD":"E14000637","PCON13CDO":"B09","PCON13NM":"Chorley"},"id":"E14000637","arcs":[[564,565,566,-209,567,-255,568]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000638","PCON13CDO":"B10","PCON13NM":"Christchurch"},"id":"E14000638","arcs":[[[569,-279]],[[-277,570]],[[571,572,573,574,-282,-286]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000639","PCON13CDO":"B11","PCON13NM":"Cities of London and Westminster"},"id":"E14000639","arcs":[[-534,575,576,577,578,579,-141,580,581]]},{"type":"Polygon","properties":{"PCON13CD":"E14000640","PCON13CDO":"B12","PCON13NM":"City of Chester"},"id":"E14000640","arcs":[[582,583,584,585,586,587]]},{"type":"Polygon","properties":{"PCON13CD":"E14000641","PCON13CDO":"B13","PCON13NM":"City of Durham"},"id":"E14000641","arcs":[[-203,588,589,590,591,592]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000642","PCON13CDO":"B14","PCON13NM":"Clacton"},"id":"E14000642","arcs":[[[593]],[[594]],[[595]],[[596,597]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000643","PCON13CDO":"B15","PCON13NM":"Cleethorpes"},"id":"E14000643","arcs":[[598,599,600,601,-357,602]]},{"type":"Polygon","properties":{"PCON13CD":"E14000644","PCON13CDO":"B16","PCON13NM":"Colchester"},"id":"E14000644","arcs":[[603,604,605,606]]},{"type":"Polygon","properties":{"PCON13CD":"E14000645","PCON13CDO":"B17","PCON13NM":"Colne Valley"},"id":"E14000645","arcs":[[607,608,609,610,-452,611]]},{"type":"Polygon","properties":{"PCON13CD":"E14000646","PCON13CDO":"B18","PCON13NM":"Congleton"},"id":"E14000646","arcs":[[612,613,614,615,616,617,618]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000647","PCON13CDO":"B19","PCON13NM":"Copeland"},"id":"E14000647","arcs":[[[619,620,621,-84,622]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000648","PCON13CDO":"B20","PCON13NM":"Corby"},"id":"E14000648","arcs":[[623,624,625,626,627,628,629]]},{"type":"Polygon","properties":{"PCON13CD":"E14000649","PCON13CDO":"B21","PCON13NM":"Coventry North East"},"id":"E14000649","arcs":[[630,631,632,633]]},{"type":"Polygon","properties":{"PCON13CD":"E14000650","PCON13CDO":"B22","PCON13NM":"Coventry North West"},"id":"E14000650","arcs":[[-634,634,635,636]]},{"type":"Polygon","properties":{"PCON13CD":"E14000651","PCON13CDO":"B23","PCON13NM":"Coventry South"},"id":"E14000651","arcs":[[637,-635,-633,638,639]]},{"type":"Polygon","properties":{"PCON13CD":"E14000652","PCON13CDO":"B24","PCON13NM":"Crawley"},"id":"E14000652","arcs":[[640,641,642]]},{"type":"Polygon","properties":{"PCON13CD":"E14000653","PCON13CDO":"B25","PCON13NM":"Crewe and Nantwich"},"id":"E14000653","arcs":[[-619,643,644,645,646]]},{"type":"Polygon","properties":{"PCON13CD":"E14000654","PCON13CDO":"B26","PCON13NM":"Croydon Central"},"id":"E14000654","arcs":[[647,-121,648,649,650,651]]},{"type":"Polygon","properties":{"PCON13CD":"E14000655","PCON13CDO":"B27","PCON13NM":"Croydon North"},"id":"E14000655","arcs":[[652,653,-652,654,-485,655,656]]},{"type":"Polygon","properties":{"PCON13CD":"E14000656","PCON13CDO":"B28","PCON13NM":"Croydon South"},"id":"E14000656","arcs":[[-486,-655,-651,657,658]]},{"type":"Polygon","properties":{"PCON13CD":"E14000657","PCON13CDO":"B29","PCON13NM":"Dagenham and Rainham"},"id":"E14000657","arcs":[[-68,659,660,661,662,663,664]]},{"type":"Polygon","properties":{"PCON13CD":"E14000658","PCON13CDO":"B30","PCON13NM":"Darlington"},"id":"E14000658","arcs":[[665,666]]},{"type":"Polygon","properties":{"PCON13CD":"E14000659","PCON13CDO":"B31","PCON13NM":"Dartford"},"id":"E14000659","arcs":[[667,668,-164,669,670,671]]},{"type":"Polygon","properties":{"PCON13CD":"E14000660","PCON13CDO":"B32","PCON13NM":"Daventry"},"id":"E14000660","arcs":[[672,673,674,675,676,677,678,679,680,681,682]]},{"type":"Polygon","properties":{"PCON13CD":"E14000661","PCON13CDO":"B33","PCON13NM":"Denton and Reddish"},"id":"E14000661","arcs":[[683,684,-51,685,686,687]]},{"type":"Polygon","properties":{"PCON13CD":"E14000662","PCON13CDO":"B34","PCON13NM":"Derby North"},"id":"E14000662","arcs":[[688,689,690,691]]},{"type":"Polygon","properties":{"PCON13CD":"E14000663","PCON13CDO":"B35","PCON13NM":"Derby South"},"id":"E14000663","arcs":[[692,693,-690]]},{"type":"Polygon","properties":{"PCON13CD":"E14000664","PCON13CDO":"B36","PCON13NM":"Derbyshire Dales"},"id":"E14000664","arcs":[[-438,694,695,696,697,-242,-21,698,-692,699]]},{"type":"Polygon","properties":{"PCON13CD":"E14000665","PCON13CDO":"B37","PCON13NM":"Devizes"},"id":"E14000665","arcs":[[700,701,702,703,704,705,706,-558]]},{"type":"Polygon","properties":{"PCON13CD":"E14000666","PCON13CDO":"B38","PCON13NM":"Dewsbury"},"id":"E14000666","arcs":[[707,-104,708,709,-608]]},{"type":"Polygon","properties":{"PCON13CD":"E14000667","PCON13CDO":"B39","PCON13NM":"Don Valley"},"id":"E14000667","arcs":[[710,711,712,713,714,-349,-93]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000668","PCON13CDO":"B40","PCON13NM":"Doncaster Central"},"id":"E14000668","arcs":[[[715,716]],[[717,718]],[[719,720,721,722,723,724,725,-714]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000669","PCON13CDO":"B41","PCON13NM":"Doncaster North"},"id":"E14000669","arcs":[[[726,-724]],[[-75,727,728,-360,729,-718,730,-717,731,-720,-713,732]],[[733,-722]],[[734,-350,-715,-726]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000670","PCON13CDO":"B42","PCON13NM":"Dover"},"id":"E14000670","arcs":[[-474,735,736,737]]},{"type":"Polygon","properties":{"PCON13CD":"E14000671","PCON13CDO":"B43","PCON13NM":"Dudley North"},"id":"E14000671","arcs":[[738,739,740,741,742]]},{"type":"Polygon","properties":{"PCON13CD":"E14000672","PCON13CDO":"B44","PCON13NM":"Dudley South"},"id":"E14000672","arcs":[[743,744,745,-739]]},{"type":"Polygon","properties":{"PCON13CD":"E14000673","PCON13CDO":"B45","PCON13NM":"Dulwich and West Norwood"},"id":"E14000673","arcs":[[-461,746,-653,747,748]]},{"type":"Polygon","properties":{"PCON13CD":"E14000674","PCON13CDO":"B46","PCON13NM":"Ealing Central and Acton"},"id":"E14000674","arcs":[[749,750,-319,-312,751,-323]]},{"type":"Polygon","properties":{"PCON13CD":"E14000675","PCON13CDO":"B47","PCON13NM":"Ealing North"},"id":"E14000675","arcs":[[752,753,754,-320,-751,755]]},{"type":"Polygon","properties":{"PCON13CD":"E14000676","PCON13CDO":"B48","PCON13NM":"Ealing, Southall"},"id":"E14000676","arcs":[[756,-756,-750,-322,757]]},{"type":"Polygon","properties":{"PCON13CD":"E14000677","PCON13CDO":"B49","PCON13NM":"Easington"},"id":"E14000677","arcs":[[758,-592,759,760,761,762,763,764]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000678","PCON13CDO":"B50","PCON13NM":"East Devon"},"id":"E14000678","arcs":[[[765,-500,766]],[[767,768,769,-498]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000679","PCON13CDO":"B51","PCON13NM":"East Ham"},"id":"E14000679","arcs":[[770,-67,771,772,773]]},{"type":"Polygon","properties":{"PCON13CD":"E14000680","PCON13CDO":"B52","PCON13NM":"East Hampshire"},"id":"E14000680","arcs":[[774,775,-544,776,777]]},{"type":"Polygon","properties":{"PCON13CD":"E14000681","PCON13CDO":"B53","PCON13NM":"East Surrey"},"id":"E14000681","arcs":[[-650,778,779,780,781,782,783,-641,784,785,-658]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000682","PCON13CDO":"B54","PCON13NM":"East Worthing and Shoreham"},"id":"E14000682","arcs":[[[786,-32,787]],[[-30,788,789]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000683","PCON13CDO":"B55","PCON13NM":"East Yorkshire"},"id":"E14000683","arcs":[[790,-154,791,-149,792,793,794,795]]},{"type":"Polygon","properties":{"PCON13CD":"E14000684","PCON13CDO":"B56","PCON13NM":"Eastbourne"},"id":"E14000684","arcs":[[796,-159,797]]},{"type":"Polygon","properties":{"PCON13CD":"E14000685","PCON13CDO":"B57","PCON13NM":"Eastleigh"},"id":"E14000685","arcs":[[798,799,800,801,802]]},{"type":"Polygon","properties":{"PCON13CD":"E14000686","PCON13CDO":"B58","PCON13NM":"Eddisbury"},"id":"E14000686","arcs":[[803,-587,804,805,806,-613,-647,807,808]]},{"type":"Polygon","properties":{"PCON13CD":"E14000687","PCON13CDO":"B59","PCON13NM":"Edmonton"},"id":"E14000687","arcs":[[809,810,811,812,-550,813]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000688","PCON13CDO":"B60","PCON13NM":"Ellesmere Port and Neston"},"id":"E14000688","arcs":[[[814,815]],[[816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,-805,-586,831,832,833]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000689","PCON13CDO":"B61","PCON13NM":"Elmet and Rothwell"},"id":"E14000689","arcs":[[834,835,836,837,838,839,840]]},{"type":"Polygon","properties":{"PCON13CD":"E14000690","PCON13CDO":"B62","PCON13NM":"Eltham"},"id":"E14000690","arcs":[[841,842,843,844,-400]]},{"type":"Polygon","properties":{"PCON13CD":"E14000691","PCON13CDO":"B63","PCON13NM":"Enfield North"},"id":"E14000691","arcs":[[845,846,-416,847,-812]]},{"type":"Polygon","properties":{"PCON13CD":"E14000692","PCON13CDO":"B64","PCON13NM":"Enfield, Southgate"},"id":"E14000692","arcs":[[848,-846,-811,849,850,-560]]},{"type":"Polygon","properties":{"PCON13CD":"E14000693","PCON13CDO":"B65","PCON13NM":"Epping Forest"},"id":"E14000693","arcs":[[-415,851,-333,852,-551,-813,-848]]},{"type":"Polygon","properties":{"PCON13CD":"E14000694","PCON13CDO":"B66","PCON13NM":"Epsom and Ewell"},"id":"E14000694","arcs":[[853,854,855,856]]},{"type":"Polygon","properties":{"PCON13CD":"E14000695","PCON13CDO":"B67","PCON13NM":"Erewash"},"id":"E14000695","arcs":[[857,-19,-418,858,859,860]]},{"type":"Polygon","properties":{"PCON13CD":"E14000696","PCON13CDO":"B68","PCON13NM":"Erith and Thamesmead"},"id":"E14000696","arcs":[[861,-162,862,-844,863]]},{"type":"Polygon","properties":{"PCON13CD":"E14000697","PCON13CDO":"B69","PCON13NM":"Esher and Walton"},"id":"E14000697","arcs":[[864,865,866,867,868]]},{"type":"Polygon","properties":{"PCON13CD":"E14000698","PCON13CDO":"B70","PCON13NM":"Exeter"},"id":"E14000698","arcs":[[-770,869,-767,-499]]},{"type":"Polygon","properties":{"PCON13CD":"E14000699","PCON13CDO":"B71","PCON13NM":"Fareham"},"id":"E14000699","arcs":[[870,871,872,873,874]]},{"type":"Polygon","properties":{"PCON13CD":"E14000700","PCON13CDO":"B72","PCON13NM":"Faversham and Mid Kent"},"id":"E14000700","arcs":[[875,-522,876,877,878,-476,-42,879]]},{"type":"Polygon","properties":{"PCON13CD":"E14000701","PCON13CDO":"B73","PCON13NM":"Feltham and Heston"},"id":"E14000701","arcs":[[-327,880,881,882,-758]]},{"type":"Polygon","properties":{"PCON13CD":"E14000702","PCON13CDO":"B74","PCON13NM":"Filton and Bradley Stoke"},"id":"E14000702","arcs":[[-379,883,884,885,-367]]},{"type":"Polygon","properties":{"PCON13CD":"E14000703","PCON13CDO":"B75","PCON13NM":"Finchley and Golders Green"},"id":"E14000703","arcs":[[-315,886,-562,887,888,889]]},{"type":"Polygon","properties":{"PCON13CD":"E14000704","PCON13CDO":"B76","PCON13NM":"Folkestone and Hythe"},"id":"E14000704","arcs":[[890,-44,-475,-738,891]]},{"type":"Polygon","properties":{"PCON13CD":"E14000705","PCON13CDO":"B77","PCON13NM":"Forest of Dean"},"id":"E14000705","arcs":[[892,893,894,895,896,897,898]]},{"type":"Polygon","properties":{"PCON13CD":"E14000706","PCON13CDO":"B78","PCON13NM":"Fylde"},"id":"E14000706","arcs":[[-222,-217,899,900,901,902,903]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000707","PCON13CDO":"B79","PCON13NM":"Gainsborough"},"id":"E14000707","arcs":[[[904,905,906,-354,-602,907,908,909,910,911,912]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000708","PCON13CDO":"B80","PCON13NM":"Garston and Halewood"},"id":"E14000708","arcs":[[913,914,915,916,917,918]]},{"type":"Polygon","properties":{"PCON13CD":"E14000709","PCON13CDO":"B81","PCON13NM":"Gateshead"},"id":"E14000709","arcs":[[919,920,921,-225]]},{"type":"Polygon","properties":{"PCON13CD":"E14000710","PCON13CDO":"B82","PCON13NM":"Gedling"},"id":"E14000710","arcs":[[922,923,924,925,926]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000711","PCON13CDO":"B83","PCON13NM":"Gillingham and Rainham"},"id":"E14000711","arcs":[[[927]],[[-521,928,929,930,-877]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000712","PCON13CDO":"B84","PCON13NM":"Gloucester"},"id":"E14000712","arcs":[[931,-897,932,933]]},{"type":"Polygon","properties":{"PCON13CD":"E14000713","PCON13CDO":"B85","PCON13NM":"Gosport"},"id":"E14000713","arcs":[[-871,934]]},{"type":"Polygon","properties":{"PCON13CD":"E14000714","PCON13CDO":"B86","PCON13NM":"Grantham and Stamford"},"id":"E14000714","arcs":[[935,936,937,938,-624]]},{"type":"Polygon","properties":{"PCON13CD":"E14000715","PCON13CDO":"B87","PCON13NM":"Gravesham"},"id":"E14000715","arcs":[[939,-519,940,-671,941]]},{"type":"Polygon","properties":{"PCON13CD":"E14000716","PCON13CDO":"B88","PCON13NM":"Great Grimsby"},"id":"E14000716","arcs":[[942,-599]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000717","PCON13CDO":"B89","PCON13NM":"Great Yarmouth"},"id":"E14000717","arcs":[[[943,944]],[[945,-391]],[[-393,946]],[[947,948]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000718","PCON13CDO":"B90","PCON13NM":"Greenwich and Woolwich"},"id":"E14000718","arcs":[[[949,950]],[[951,952,-864,-843,953]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000719","PCON13CDO":"B91","PCON13NM":"Guildford"},"id":"E14000719","arcs":[[954,955,-546,956,957,958]]},{"type":"Polygon","properties":{"PCON13CD":"E14000720","PCON13CDO":"B92","PCON13NM":"Hackney North and Stoke Newington"},"id":"E14000720","arcs":[[959,960,961,962]]},{"type":"Polygon","properties":{"PCON13CD":"E14000721","PCON13CDO":"B93","PCON13NM":"Hackney South and Shoreditch"},"id":"E14000721","arcs":[[963,-962,964,965,966,-142,-580,967]]},{"type":"Polygon","properties":{"PCON13CD":"E14000722","PCON13CDO":"B94","PCON13NM":"Halesowen and Rowley Regis"},"id":"E14000722","arcs":[[968,-744,-743,969,970,-169,-403]]},{"type":"Polygon","properties":{"PCON13CD":"E14000723","PCON13CDO":"B95","PCON13NM":"Halifax"},"id":"E14000723","arcs":[[971,-302,-300,-450,972]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000724","PCON13CDO":"B96","PCON13NM":"Haltemprice and Howden"},"id":"E14000724","arcs":[[[973,-352]],[[-348,974,975,-793,-148,976,977,978,979]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000725","PCON13CDO":"B97","PCON13NM":"Halton"},"id":"E14000725","arcs":[[[-918,980,981,982]],[[983,984,985]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000726","PCON13CDO":"B98","PCON13NM":"Hammersmith"},"id":"E14000726","arcs":[[-324,-752,-311,986,-532,987]]},{"type":"Polygon","properties":{"PCON13CD":"E14000727","PCON13CDO":"B99","PCON13NM":"Hampstead and Kilburn"},"id":"E14000727","arcs":[[-316,-890,988,989,990]]},{"type":"Polygon","properties":{"PCON13CD":"E14000728","PCON13CDO":"C01","PCON13NM":"Harborough"},"id":"E14000728","arcs":[[991,992,993,994,995,-673]]},{"type":"Polygon","properties":{"PCON13CD":"E14000729","PCON13CDO":"C02","PCON13NM":"Harlow"},"id":"E14000729","arcs":[[996,-334,-852,-414,997]]},{"type":"Polygon","properties":{"PCON13CD":"E14000730","PCON13CDO":"C03","PCON13NM":"Harrogate and Knaresborough"},"id":"E14000730","arcs":[[998,999,1000]]},{"type":"Polygon","properties":{"PCON13CD":"E14000731","PCON13CDO":"C04","PCON13NM":"Harrow East"},"id":"E14000731","arcs":[[1001,1002,1003,-317,1004,1005]]},{"type":"Polygon","properties":{"PCON13CD":"E14000732","PCON13CDO":"C05","PCON13NM":"Harrow West"},"id":"E14000732","arcs":[[-1005,-321,-755,1006,1007]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000733","PCON13CDO":"C06","PCON13NM":"Hartlepool"},"id":"E14000733","arcs":[[[-763,1008]],[[1009,1010,1011,-765]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000734","PCON13CDO":"C07","PCON13NM":"Harwich and North Essex"},"id":"E14000734","arcs":[[[1012]],[[1013,-607,1014]],[[1015]],[[-605,1016,-308,1017,1018,-597,1019]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000735","PCON13CDO":"C08","PCON13NM":"Hastings and Rye"},"id":"E14000735","arcs":[[-891,1020,-157,-45]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000736","PCON13CDO":"C09","PCON13NM":"Havant"},"id":"E14000736","arcs":[[[1021]],[[1022,1023]],[[1024,-549,1025,1026]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000737","PCON13CDO":"C10","PCON13NM":"Hayes and Harlington"},"id":"E14000737","arcs":[[1027,1028,-114,1029,-753,-757,-883]]},{"type":"Polygon","properties":{"PCON13CD":"E14000738","PCON13CDO":"C11","PCON13NM":"Hazel Grove"},"id":"E14000738","arcs":[[1030,-687,1031,1032,1033,-528]]},{"type":"Polygon","properties":{"PCON13CD":"E14000739","PCON13CDO":"C12","PCON13NM":"Hemel Hempstead"},"id":"E14000739","arcs":[[1034,1035,1036,1037,1038,-426,1039]]},{"type":"Polygon","properties":{"PCON13CD":"E14000740","PCON13CDO":"C13","PCON13NM":"Hemsworth"},"id":"E14000740","arcs":[[-78,-73,1040,1041,1042,-728]]},{"type":"Polygon","properties":{"PCON13CD":"E14000741","PCON13CDO":"C14","PCON13NM":"Hendon"},"id":"E14000741","arcs":[[-563,-887,-314,-318,-1004,1043]]},{"type":"Polygon","properties":{"PCON13CD":"E14000742","PCON13CDO":"C15","PCON13NM":"Henley"},"id":"E14000742","arcs":[[1044,1045,1046,1047,1048,1049,1050,-63,-428,-57,1051,1052,1053]]},{"type":"Polygon","properties":{"PCON13CD":"E14000743","PCON13CDO":"C16","PCON13NM":"Hereford and South Herefordshire"},"id":"E14000743","arcs":[[-893,1054,1055,1056]]},{"type":"Polygon","properties":{"PCON13CD":"E14000744","PCON13CDO":"C17","PCON13NM":"Hertford and Stortford"},"id":"E14000744","arcs":[[1057,1058,1059,-998,-413]]},{"type":"Polygon","properties":{"PCON13CD":"E14000745","PCON13CDO":"C18","PCON13NM":"Hertsmere"},"id":"E14000745","arcs":[[1060,-417,-847,-849,-564,-1044,-1003,1061,1062]]},{"type":"Polygon","properties":{"PCON13CD":"E14000746","PCON13CDO":"C19","PCON13NM":"Hexham"},"id":"E14000746","arcs":[[-137,1063,-229,1064,1065,1066,-223,1067,1068,1069]]},{"type":"Polygon","properties":{"PCON13CD":"E14000747","PCON13CDO":"C20","PCON13NM":"Heywood and Middleton"},"id":"E14000747","arcs":[[1070,1071,1072,-210,-443,-440]]},{"type":"Polygon","properties":{"PCON13CD":"E14000748","PCON13CDO":"C21","PCON13NM":"High Peak"},"id":"E14000748","arcs":[[-1033,1073,1074,-610,1075,1076,-696,1077,1078]]},{"type":"Polygon","properties":{"PCON13CD":"E14000749","PCON13CDO":"C22","PCON13NM":"Hitchin and Harpenden"},"id":"E14000749","arcs":[[1079,1080,1081,1082,1083,1084,-1036,1085]]},{"type":"Polygon","properties":{"PCON13CD":"E14000750","PCON13CDO":"C23","PCON13NM":"Holborn and St Pancras"},"id":"E14000750","arcs":[[1086,1087,1088,-578,1089,-989,-889]]},{"type":"Polygon","properties":{"PCON13CD":"E14000751","PCON13CDO":"C24","PCON13NM":"Hornchurch and Upminster"},"id":"E14000751","arcs":[[-330,1090,1091,-663,1092]]},{"type":"Polygon","properties":{"PCON13CD":"E14000752","PCON13CDO":"C25","PCON13NM":"Hornsey and Wood Green"},"id":"E14000752","arcs":[[-888,-561,-851,1093,1094,-1087]]},{"type":"Polygon","properties":{"PCON13CD":"E14000753","PCON13CDO":"C26","PCON13NM":"Horsham"},"id":"E14000753","arcs":[[1095,-642,-784,1096,-25,-547,-956]]},{"type":"Polygon","properties":{"PCON13CD":"E14000754","PCON13CDO":"C27","PCON13NM":"Houghton and Sunderland South"},"id":"E14000754","arcs":[[1097,1098,1099,1100,1101,-760,-591]]},{"type":"Polygon","properties":{"PCON13CD":"E14000755","PCON13CDO":"C28","PCON13NM":"Hove"},"id":"E14000755","arcs":[[-29,-366,1102,-789]]},{"type":"Polygon","properties":{"PCON13CD":"E14000756","PCON13CDO":"C29","PCON13NM":"Huddersfield"},"id":"E14000756","arcs":[[-105,-708,-612,-451]]},{"type":"Polygon","properties":{"PCON13CD":"E14000757","PCON13CDO":"C30","PCON13NM":"Huntingdon"},"id":"E14000757","arcs":[[1103,-626,1104,1105]]},{"type":"Polygon","properties":{"PCON13CD":"E14000758","PCON13CDO":"C31","PCON13NM":"Hyndburn"},"id":"E14000758","arcs":[[-207,1106,-430,1107]]},{"type":"Polygon","properties":{"PCON13CD":"E14000759","PCON13CDO":"C32","PCON13NM":"Ilford North"},"id":"E14000759","arcs":[[1108,-661,1109,1110,-552,-853,-332]]},{"type":"Polygon","properties":{"PCON13CD":"E14000760","PCON13CDO":"C33","PCON13NM":"Ilford South"},"id":"E14000760","arcs":[[-660,-70,1111,-65,-771,1112,-1110]]},{"type":"Polygon","properties":{"PCON13CD":"E14000761","PCON13CDO":"C34","PCON13NM":"Ipswich"},"id":"E14000761","arcs":[[1113,1114,1115,-508,1116,1117]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000762","PCON13CDO":"C35","PCON13NM":"Isle of Wight"},"id":"E14000762","arcs":[[[1118]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000763","PCON13CDO":"C36","PCON13NM":"Islington North"},"id":"E14000763","arcs":[[-963,-964,1119,-1088,-1095,1120]]},{"type":"Polygon","properties":{"PCON13CD":"E14000764","PCON13CDO":"C37","PCON13NM":"Islington South and Finsbury"},"id":"E14000764","arcs":[[-1120,-968,-579,-1089]]},{"type":"Polygon","properties":{"PCON13CD":"E14000765","PCON13CDO":"C38","PCON13NM":"Jarrow"},"id":"E14000765","arcs":[[1121,1122,1123,-921,1124]]},{"type":"Polygon","properties":{"PCON13CD":"E14000766","PCON13CDO":"C39","PCON13NM":"Keighley"},"id":"E14000766","arcs":[[1125,-973,-457,1126,1127]]},{"type":"Polygon","properties":{"PCON13CD":"E14000767","PCON13CDO":"C40","PCON13NM":"Kenilworth and Southam"},"id":"E14000767","arcs":[[1128,1129,-640,1130,-681,1131,-60,1132,1133]]},{"type":"Polygon","properties":{"PCON13CD":"E14000768","PCON13CDO":"C41","PCON13NM":"Kensington"},"id":"E14000768","arcs":[[-991,1134,-576,-533,-987,-310]]},{"type":"Polygon","properties":{"PCON13CD":"E14000769","PCON13CDO":"C42","PCON13NM":"Kettering"},"id":"E14000769","arcs":[[-629,1135,-674,-996,1136]]},{"type":"Polygon","properties":{"PCON13CD":"E14000770","PCON13CDO":"C43","PCON13NM":"Kingston and Surbiton"},"id":"E14000770","arcs":[[1137,1138,1139,-857,1140,-868,1141]]},{"type":"Polygon","properties":{"PCON13CD":"E14000771","PCON13CDO":"C44","PCON13NM":"Kingston upon Hull East"},"id":"E14000771","arcs":[[1142,1143,-151,1144,-145]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000772","PCON13CDO":"C45","PCON13NM":"Kingston upon Hull North"},"id":"E14000772","arcs":[[[1145,-152,-1144]],[[1146,1147,-978]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000773","PCON13CDO":"C46","PCON13NM":"Kingston upon Hull West and Hessle"},"id":"E14000773","arcs":[[-979,-1148,1148]]},{"type":"Polygon","properties":{"PCON13CD":"E14000774","PCON13CDO":"C47","PCON13NM":"Kingswood"},"id":"E14000774","arcs":[[-368,-886,1149,1150]]},{"type":"Polygon","properties":{"PCON13CD":"E14000775","PCON13CDO":"C48","PCON13NM":"Knowsley"},"id":"E14000775","arcs":[[1151,1152,1153,-916,1154,1155,1156,1157]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000776","PCON13CDO":"C49","PCON13NM":"Lancaster and Fleetwood"},"id":"E14000776","arcs":[[[1158,1159]],[[1160,-220]],[[1161,1162,1163,1164,1165]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000777","PCON13CDO":"C50","PCON13NM":"Leeds Central"},"id":"E14000777","arcs":[[1166,1167,1168,1169,-838,1170]]},{"type":"Polygon","properties":{"PCON13CD":"E14000778","PCON13CDO":"C51","PCON13NM":"Leeds East"},"id":"E14000778","arcs":[[-1170,1171,-839]]},{"type":"Polygon","properties":{"PCON13CD":"E14000779","PCON13CDO":"C52","PCON13NM":"Leeds North East"},"id":"E14000779","arcs":[[-840,-1172,-1169,1172]]},{"type":"Polygon","properties":{"PCON13CD":"E14000780","PCON13CDO":"C53","PCON13NM":"Leeds North West"},"id":"E14000780","arcs":[[1173,1174,1175,1176,-841,-1173,-1168,1177]]},{"type":"Polygon","properties":{"PCON13CD":"E14000781","PCON13CDO":"C54","PCON13NM":"Leeds West"},"id":"E14000781","arcs":[[-297,1178,-1178,-1167,1179]]},{"type":"Polygon","properties":{"PCON13CD":"E14000782","PCON13CDO":"C55","PCON13NM":"Leicester East"},"id":"E14000782","arcs":[[1180,-509,1181,-994,1182]]},{"type":"Polygon","properties":{"PCON13CD":"E14000783","PCON13CDO":"C56","PCON13NM":"Leicester South"},"id":"E14000783","arcs":[[-1183,-993,1183,1184]]},{"type":"Polygon","properties":{"PCON13CD":"E14000784","PCON13CDO":"C57","PCON13NM":"Leicester West"},"id":"E14000784","arcs":[[-510,-1181,-1185,1185]]},{"type":"Polygon","properties":{"PCON13CD":"E14000785","PCON13CDO":"C58","PCON13NM":"Leigh"},"id":"E14000785","arcs":[[1186,-258,1187,1188,1189]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000786","PCON13CDO":"C59","PCON13NM":"Lewes"},"id":"E14000786","arcs":[[[1190]],[[-27,1191,1192,-160,-797,1193,-363,-364]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000787","PCON13CDO":"C60","PCON13NM":"Lewisham East"},"id":"E14000787","arcs":[[-954,-842,-399,1194,1195]]},{"type":"Polygon","properties":{"PCON13CD":"E14000788","PCON13CDO":"C61","PCON13NM":"Lewisham West and Penge"},"id":"E14000788","arcs":[[-747,-460,1196,-1195,-122,-648,-654]]},{"type":"Polygon","properties":{"PCON13CD":"E14000789","PCON13CDO":"C62","PCON13NM":"Lewisham, Deptford"},"id":"E14000789","arcs":[[1197,-952,-1196,-1197,-459,-129,1198,-951]]},{"type":"Polygon","properties":{"PCON13CD":"E14000790","PCON13CDO":"C63","PCON13NM":"Leyton and Wanstead"},"id":"E14000790","arcs":[[-1113,-774,1199,-966,1200,-553,-1111]]},{"type":"Polygon","properties":{"PCON13CD":"E14000791","PCON13CDO":"C64","PCON13NM":"Lichfield"},"id":"E14000791","arcs":[[-7,-470,1201,1202,-435,1203,1204]]},{"type":"Polygon","properties":{"PCON13CD":"E14000792","PCON13CDO":"C65","PCON13NM":"Lincoln"},"id":"E14000792","arcs":[[-910,1205]]},{"type":"Polygon","properties":{"PCON13CD":"E14000793","PCON13CDO":"C66","PCON13NM":"Liverpool, Riverside"},"id":"E14000793","arcs":[[1206,-264,1207,1208,-914]]},{"type":"Polygon","properties":{"PCON13CD":"E14000794","PCON13CDO":"C67","PCON13NM":"Liverpool, Walton"},"id":"E14000794","arcs":[[-1157,1209,1210,-1208,-263,1211]]},{"type":"Polygon","properties":{"PCON13CD":"E14000795","PCON13CDO":"C68","PCON13NM":"Liverpool, Wavertree"},"id":"E14000795","arcs":[[-1209,-1211,1212,-1155,-915]]},{"type":"Polygon","properties":{"PCON13CD":"E14000796","PCON13CDO":"C69","PCON13NM":"Liverpool, West Derby"},"id":"E14000796","arcs":[[-1156,-1213,-1210]]},{"type":"Polygon","properties":{"PCON13CD":"E14000797","PCON13CDO":"C70","PCON13NM":"Loughborough"},"id":"E14000797","arcs":[[1213,1214,1215,-513]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000798","PCON13CDO":"C71","PCON13NM":"Louth and Horncastle"},"id":"E14000798","arcs":[[[-601,1216,-267,1217,-908]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000799","PCON13CDO":"C72","PCON13NM":"Ludlow"},"id":"E14000799","arcs":[[1218,1219,1220,1221,1222,1223,1224,1225,1226]]},{"type":"Polygon","properties":{"PCON13CD":"E14000800","PCON13CDO":"C73","PCON13NM":"Luton North"},"id":"E14000800","arcs":[[1227,1228,1229]]},{"type":"Polygon","properties":{"PCON13CD":"E14000801","PCON13CDO":"C74","PCON13NM":"Luton South"},"id":"E14000801","arcs":[[-1230,1230,-1086,-1035,1231]]},{"type":"Polygon","properties":{"PCON13CD":"E14000802","PCON13CDO":"C75","PCON13NM":"Macclesfield"},"id":"E14000802","arcs":[[-1034,-1079,1232,-615,1233,-529]]},{"type":"Polygon","properties":{"PCON13CD":"E14000803","PCON13CDO":"C76","PCON13NM":"Maidenhead"},"id":"E14000803","arcs":[[-1053,1234,-118,1235,1236,1237]]},{"type":"Polygon","properties":{"PCON13CD":"E14000804","PCON13CDO":"C77","PCON13NM":"Maidstone and The Weald"},"id":"E14000804","arcs":[[1238,-517,1239,-880,-48,1240]]},{"type":"Polygon","properties":{"PCON13CD":"E14000805","PCON13CDO":"C78","PCON13NM":"Makerfield"},"id":"E14000805","arcs":[[1241,1242,-259,-1187,1243]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000806","PCON13CDO":"C79","PCON13NM":"Maldon"},"id":"E14000806","arcs":[[[1244,1245]],[[1246]],[[1247]],[[1248]],[[1249,1250]],[[1251,1252,1253,1254,-85,-328,1255,-531,1256,1257,1258]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000807","PCON13CDO":"C80","PCON13NM":"Manchester Central"},"id":"E14000807","arcs":[[-212,1259,-52,-685,1260,1261,1262]]},{"type":"Polygon","properties":{"PCON13CD":"E14000808","PCON13CDO":"C81","PCON13NM":"Manchester, Gorton"},"id":"E14000808","arcs":[[1263,1264,-1261,-684,1265]]},{"type":"Polygon","properties":{"PCON13CD":"E14000809","PCON13CDO":"C82","PCON13NM":"Manchester, Withington"},"id":"E14000809","arcs":[[1266,-526,1267,1268,-1264]]},{"type":"Polygon","properties":{"PCON13CD":"E14000810","PCON13CDO":"C83","PCON13NM":"Mansfield"},"id":"E14000810","arcs":[[-38,-241,-98,1269]]},{"type":"Polygon","properties":{"PCON13CD":"E14000811","PCON13CDO":"C84","PCON13NM":"Meon Valley"},"id":"E14000811","arcs":[[-802,1270,-777,-543,-1025,1271,-873,1272]]},{"type":"Polygon","properties":{"PCON13CD":"E14000812","PCON13CDO":"C85","PCON13NM":"Meriden"},"id":"E14000812","arcs":[[1273,-199,-185,-178,1274,1275,-636,-638,-1130,1276,-405]]},{"type":"Polygon","properties":{"PCON13CD":"E14000813","PCON13CDO":"C86","PCON13NM":"Mid Bedfordshire"},"id":"E14000813","arcs":[[-1080,-1231,-1229,1277,-424,1278,1279,1280,-126,1281]]},{"type":"Polygon","properties":{"PCON13CD":"E14000814","PCON13CDO":"C87","PCON13NM":"Mid Derbyshire"},"id":"E14000814","arcs":[[-20,-858,1282,-693,-689,-699]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000815","PCON13CDO":"C88","PCON13NM":"Mid Dorset and North Poole"},"id":"E14000815","arcs":[[[1283,1284,1285,-572,-285,1286]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000816","PCON13CDO":"C89","PCON13NM":"Mid Norfolk"},"id":"E14000816","arcs":[[1287,-397,1288,1289]]},{"type":"Polygon","properties":{"PCON13CD":"E14000817","PCON13CDO":"C90","PCON13NM":"Mid Sussex"},"id":"E14000817","arcs":[[1290,-1192,-26,-1097,-783]]},{"type":"Polygon","properties":{"PCON13CD":"E14000818","PCON13CDO":"C91","PCON13NM":"Mid Worcestershire"},"id":"E14000818","arcs":[[1291,1292,1293,1294,-408,1295,1296,1297,1298]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000819","PCON13CDO":"C92","PCON13NM":"Middlesbrough"},"id":"E14000819","arcs":[[[1299,1300]],[[1301,1302,1303,1304,1305,1306]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000820","PCON13CDO":"C93","PCON13NM":"Middlesbrough South and East Cleveland"},"id":"E14000820","arcs":[[-1306,1307,1308,1309,1310,1311]]},{"type":"Polygon","properties":{"PCON13CD":"E14000821","PCON13CDO":"C94","PCON13NM":"Milton Keynes North"},"id":"E14000821","arcs":[[1312,1313,-1280,1314,1315]]},{"type":"Polygon","properties":{"PCON13CD":"E14000822","PCON13CDO":"C95","PCON13NM":"Milton Keynes South"},"id":"E14000822","arcs":[[1316,-1315,-1279,-423]]},{"type":"Polygon","properties":{"PCON13CD":"E14000823","PCON13CDO":"C96","PCON13NM":"Mitcham and Morden"},"id":"E14000823","arcs":[[1317,1318,-656,-484,1319,1320]]},{"type":"Polygon","properties":{"PCON13CD":"E14000824","PCON13CDO":"C97","PCON13NM":"Mole Valley"},"id":"E14000824","arcs":[[1321,1322,-869,-1141,-856,1323,-785,-643,-1096,-955]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000825","PCON13CDO":"C98","PCON13NM":"Morecambe and Lunesdale"},"id":"E14000825","arcs":[[[-1162,1324,1325,1326]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000826","PCON13CDO":"C99","PCON13NM":"Morley and Outwood"},"id":"E14000826","arcs":[[-1180,-1171,-837,1327,1328,-102,-298]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000827","PCON13CDO":"D01","PCON13NM":"New Forest East"},"id":"E14000827","arcs":[[[1329,1330]],[[1331,1332,1333,1334,1335,1336]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000828","PCON13CDO":"D02","PCON13NM":"New Forest West"},"id":"E14000828","arcs":[[-574,1337,1338,-1334,1339]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000829","PCON13CDO":"D03","PCON13NM":"Newark"},"id":"E14000829","arcs":[[[1340,-926,1341,-96,1342,-912,1343,1344]],[[1345,-905]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000830","PCON13CDO":"D04","PCON13NM":"Newbury"},"id":"E14000830","arcs":[[-704,1346,-1046,1347,1348,1349,1350]]},{"type":"Polygon","properties":{"PCON13CD":"E14000831","PCON13CDO":"D05","PCON13NM":"Newcastle upon Tyne Central"},"id":"E14000831","arcs":[[1351,1352,1353]]},{"type":"Polygon","properties":{"PCON13CD":"E14000832","PCON13CDO":"D06","PCON13NM":"Newcastle upon Tyne East"},"id":"E14000832","arcs":[[1354,1355,1356,-1353]]},{"type":"Polygon","properties":{"PCON13CD":"E14000833","PCON13CDO":"D07","PCON13NM":"Newcastle upon Tyne North"},"id":"E14000833","arcs":[[-1352,1357,-1066,1358,-1355]]},{"type":"Polygon","properties":{"PCON13CD":"E14000834","PCON13CDO":"D08","PCON13NM":"Newcastle-under-Lyme"},"id":"E14000834","arcs":[[1359,1360,1361,1362,-644,-618]]},{"type":"Polygon","properties":{"PCON13CD":"E14000835","PCON13CDO":"D09","PCON13NM":"Newton Abbot"},"id":"E14000835","arcs":[[1363,1364,1365,-502]]},{"type":"Polygon","properties":{"PCON13CD":"E14000836","PCON13CDO":"D10","PCON13NM":"Normanton, Pontefract and Castleford"},"id":"E14000836","arcs":[[-836,1366,-1042,1367,-1328]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000837","PCON13CDO":"D11","PCON13NM":"North Cornwall"},"id":"E14000837","arcs":[[[1368,1369,1370,1371]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000838","PCON13CDO":"D12","PCON13NM":"North Devon"},"id":"E14000838","arcs":[[-344,1372,-496,1373,1374]]},{"type":"Polygon","properties":{"PCON13CD":"E14000839","PCON13CDO":"D13","PCON13NM":"North Dorset"},"id":"E14000839","arcs":[[1375,1376,-1338,-573,-1286,1377,1378,1379]]},{"type":"Polygon","properties":{"PCON13CD":"E14000840","PCON13CDO":"D14","PCON13NM":"North Durham"},"id":"E14000840","arcs":[[1380,1381,1382,-1098,-590,1383,-227]]},{"type":"Polygon","properties":{"PCON13CD":"E14000841","PCON13CDO":"D15","PCON13NM":"North East Bedfordshire"},"id":"E14000841","arcs":[[-1104,1384,1385,-1081,-1282,-125,-1281,-1314,1386,-627]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000842","PCON13CDO":"D16","PCON13NM":"North East Cambridgeshire"},"id":"E14000842","arcs":[[[1387,1388]],[[1389,1390,1391]],[[1392,1393,1394,1395,1396]],[[1397,1398,1399,1400]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000843","PCON13CDO":"D17","PCON13NM":"North East Derbyshire"},"id":"E14000843","arcs":[[1401,-245,-540,-243,-698,1402,1403,1404]]},{"type":"Polygon","properties":{"PCON13CD":"E14000844","PCON13CDO":"D18","PCON13NM":"North East Hampshire"},"id":"E14000844","arcs":[[-89,1405,-1350,1406,-290,-1,1407,-775,1408,1409]]},{"type":"Polygon","properties":{"PCON13CD":"E14000845","PCON13CDO":"D19","PCON13NM":"North East Hertfordshire"},"id":"E14000845","arcs":[[1410,-1059,1411,1412,-1082,-1386,1413]]},{"type":"Polygon","properties":{"PCON13CD":"E14000846","PCON13CDO":"D20","PCON13NM":"North East Somerset"},"id":"E14000846","arcs":[[1414,1415,1416,-381,-369,-1151,1417,1418,-556,1419],[-99]]},{"type":"Polygon","properties":{"PCON13CD":"E14000847","PCON13CDO":"D21","PCON13NM":"North Herefordshire"},"id":"E14000847","arcs":[[-1223,1420,-894,-1057,1421]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000848","PCON13CDO":"D22","PCON13NM":"North Norfolk"},"id":"E14000848","arcs":[[[-389,1422]],[[1423]],[[1424]],[[1425]],[[1426]],[[1427]],[[-948,1428,-387,1429,1430]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000849","PCON13CDO":"D23","PCON13NM":"North Shropshire"},"id":"E14000849","arcs":[[-808,-646,1431,1432,1433,1434,1435]]},{"type":"Polygon","properties":{"PCON13CD":"E14000850","PCON13CDO":"D24","PCON13NM":"North Somerset"},"id":"E14000850","arcs":[[-376,-385,-382,-1417,1436,1437]]},{"type":"Polygon","properties":{"PCON13CD":"E14000851","PCON13CDO":"D25","PCON13NM":"North Swindon"},"id":"E14000851","arcs":[[1438,1439,1440,1441]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000852","PCON13CDO":"D26","PCON13NM":"North Thanet"},"id":"E14000852","arcs":[[[1442,1443]],[[1444,1445,-471,1446]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000853","PCON13CDO":"D27","PCON13NM":"North Tyneside"},"id":"E14000853","arcs":[[1447,-1356,-1359,-1065,-233,1448]]},{"type":"Polygon","properties":{"PCON13CD":"E14000854","PCON13CDO":"D28","PCON13NM":"North Warwickshire"},"id":"E14000854","arcs":[[1449,-273,1450,1451,-631,-637,-1276,1452,1453]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000855","PCON13CDO":"D29","PCON13NM":"North West Cambridgeshire"},"id":"E14000855","arcs":[[[1454,1455,-1105,-625,-939,1456,1457,-1393,1458]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000856","PCON13CDO":"D30","PCON13NM":"North West Durham"},"id":"E14000856","arcs":[[-228,-1384,-589,-202,1459,-1068]]},{"type":"Polygon","properties":{"PCON13CD":"E14000857","PCON13CDO":"D31","PCON13NM":"North West Hampshire"},"id":"E14000857","arcs":[[-1351,-1406,-90,-1410,1460,1461,1462,-705]]},{"type":"Polygon","properties":{"PCON13CD":"E14000858","PCON13CDO":"D32","PCON13NM":"North West Leicestershire"},"id":"E14000858","arcs":[[1463,1464,-860,1465,-1214,-512,-274,-1450]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000859","PCON13CDO":"D33","PCON13NM":"North West Norfolk"},"id":"E14000859","arcs":[[[1466,1467,1468,1469]],[[1470]],[[1471,-1430,-398,-1288,1472]],[[1473]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000860","PCON13CDO":"D34","PCON13NM":"North Wiltshire"},"id":"E14000860","arcs":[[-557,-1419,1474,1475,-1442,1476,-701]]},{"type":"Polygon","properties":{"PCON13CD":"E14000861","PCON13CDO":"D35","PCON13NM":"Northampton North"},"id":"E14000861","arcs":[[-678,1477]]},{"type":"Polygon","properties":{"PCON13CD":"E14000862","PCON13CDO":"D36","PCON13NM":"Northampton South"},"id":"E14000862","arcs":[[-677,1478,-679,-1478]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000863","PCON13CDO":"D37","PCON13NM":"Norwich North"},"id":"E14000863","arcs":[[[1479,1480,-395,1481]],[[1482,1483]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000864","PCON13CDO":"D38","PCON13NM":"Norwich South"},"id":"E14000864","arcs":[[[1484,1485]],[[1486,1487]],[[1488,-1480,1489,1490,1491]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000865","PCON13CDO":"D39","PCON13NM":"Nottingham East"},"id":"E14000865","arcs":[[1492,1493,-923,1494]]},{"type":"Polygon","properties":{"PCON13CD":"E14000866","PCON13CDO":"D40","PCON13NM":"Nottingham North"},"id":"E14000866","arcs":[[-420,1495,-924,-1494,1496]]},{"type":"Polygon","properties":{"PCON13CD":"E14000867","PCON13CDO":"D41","PCON13NM":"Nottingham South"},"id":"E14000867","arcs":[[-1493,1497,-421,-1497]]},{"type":"Polygon","properties":{"PCON13CD":"E14000868","PCON13CDO":"D42","PCON13NM":"Nuneaton"},"id":"E14000868","arcs":[[1498,-1451,-272]]},{"type":"Polygon","properties":{"PCON13CD":"E14000869","PCON13CDO":"D43","PCON13NM":"Old Bexley and Sidcup"},"id":"E14000869","arcs":[[-845,-863,-161,-669,1499,1500,-401]]},{"type":"Polygon","properties":{"PCON13CD":"E14000870","PCON13CDO":"D44","PCON13NM":"Oldham East and Saddleworth"},"id":"E14000870","arcs":[[1501,1502,-453,-611,-1075,1503,-49]]},{"type":"Polygon","properties":{"PCON13CD":"E14000871","PCON13CDO":"D45","PCON13NM":"Oldham West and Royton"},"id":"E14000871","arcs":[[1504,-1502,-53,-1260,-211,-1073]]},{"type":"Polygon","properties":{"PCON13CD":"E14000872","PCON13CDO":"D46","PCON13NM":"Orpington"},"id":"E14000872","arcs":[[-649,-124,-402,-1501,1505,-779]]},{"type":"Polygon","properties":{"PCON13CD":"E14000873","PCON13CDO":"D47","PCON13NM":"Oxford East"},"id":"E14000873","arcs":[[1506,-1049]]},{"type":"Polygon","properties":{"PCON13CD":"E14000874","PCON13CDO":"D48","PCON13NM":"Oxford West and Abingdon"},"id":"E14000874","arcs":[[1507,-1050,-1507,-1048,1508]]},{"type":"Polygon","properties":{"PCON13CD":"E14000875","PCON13CDO":"D49","PCON13NM":"Pendle"},"id":"E14000875","arcs":[[1509,1510,-1127,-456,-432]]},{"type":"Polygon","properties":{"PCON13CD":"E14000876","PCON13CDO":"D50","PCON13NM":"Penistone and Stocksbridge"},"id":"E14000876","arcs":[[-609,-710,1511,-71,-77,1512,1513,1514,1515,-1076]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000877","PCON13CDO":"D51","PCON13NM":"Penrith and The Border"},"id":"E14000877","arcs":[[[-479,1516]],[[1517,-1069,-1460,-201,1518,1519,-621,1520,-481,1521,1522]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000878","PCON13CDO":"D52","PCON13NM":"Peterborough"},"id":"E14000878","arcs":[[-1392,1523,-1388,1524,-1394,-1458,1525]]},{"type":"Polygon","properties":{"PCON13CD":"E14000879","PCON13CDO":"D53","PCON13NM":"Plymouth, Moor View"},"id":"E14000879","arcs":[[1526,1527,1528,1529]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000880","PCON13CDO":"D54","PCON13NM":"Plymouth, Sutton and Devonport"},"id":"E14000880","arcs":[[[-1530,1530]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000881","PCON13CDO":"D55","PCON13NM":"Poole"},"id":"E14000881","arcs":[[[-1287,-284,1531]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000882","PCON13CDO":"D56","PCON13NM":"Poplar and Limehouse"},"id":"E14000882","arcs":[[1532,1533,-581,-144]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000883","PCON13CDO":"D57","PCON13NM":"Portsmouth North"},"id":"E14000883","arcs":[[[1534]],[[1535,1536]],[[1537,-874,-1272,-1027,1538,-1023]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000884","PCON13CDO":"D58","PCON13NM":"Portsmouth South"},"id":"E14000884","arcs":[[[-1537,1539]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000885","PCON13CDO":"D59","PCON13NM":"Preston"},"id":"E14000885","arcs":[[[-1541,-1542]],[[-903,1542,1543,1544]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000886","PCON13CDO":"D60","PCON13NM":"Pudsey"},"id":"E14000886","arcs":[[1545,-1174,-1179,-296,-294]]},{"type":"Polygon","properties":{"PCON13CD":"E14000887","PCON13CDO":"D61","PCON13NM":"Putney"},"id":"E14000887","arcs":[[1546,1547,-109,1548,1549]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000888","PCON13CDO":"D62","PCON13NM":"Rayleigh and Wickford"},"id":"E14000888","arcs":[[[-1254,1550]],[[-1252,1551]],[[1552,-1245,1553,1554,1555,-491,1556,-86,-1255]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000889","PCON13CDO":"D63","PCON13NM":"Reading East"},"id":"E14000889","arcs":[[-1054,-1238,1557,1558]]},{"type":"Polygon","properties":{"PCON13CD":"E14000890","PCON13CDO":"D64","PCON13NM":"Reading West"},"id":"E14000890","arcs":[[-1348,-1045,-1559,1559]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000891","PCON13CDO":"D65","PCON13NM":"Redcar"},"id":"E14000891","arcs":[[[-1305,1560,-1301,1561,-1308]],[[-1303,1562]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000892","PCON13CDO":"D66","PCON13NM":"Redditch"},"id":"E14000892","arcs":[[-407,1563,-1296]]},{"type":"Polygon","properties":{"PCON13CD":"E14000893","PCON13CDO":"D67","PCON13NM":"Reigate"},"id":"E14000893","arcs":[[-487,-659,-786,-1324,-855,1564]]},{"type":"Polygon","properties":{"PCON13CD":"E14000894","PCON13CDO":"D68","PCON13NM":"Ribble Valley"},"id":"E14000894","arcs":[[-1164,1565,-1510,-431,-1107,-206,-567,1566,1567,-1544,1568]]},{"type":"Polygon","properties":{"PCON13CD":"E14000895","PCON13CDO":"D69","PCON13NM":"Richmond (Yorks)"},"id":"E14000895","arcs":[[1569,1570,1571,1572,-1311,1573,1574,1575,1576,-1519,-205,1577,-666]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000896","PCON13CDO":"D70","PCON13NM":"Richmond Park"},"id":"E14000896","arcs":[[[1578,-1138,1579,1580,-1547]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000897","PCON13CDO":"D71","PCON13NM":"Rochdale"},"id":"E14000897","arcs":[[-1503,-1505,-1072,1581,-454]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000898","PCON13CDO":"D72","PCON13NM":"Rochester and Strood"},"id":"E14000898","arcs":[[[1582]],[[1583,-929,-520]],[[-515,-940,1584]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000899","PCON13CDO":"D73","PCON13NM":"Rochford and Southend East"},"id":"E14000899","arcs":[[[1585]],[[1586]],[[1587]],[[1588,-1555,1589]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000900","PCON13CDO":"D74","PCON13NM":"Romford"},"id":"E14000900","arcs":[[-1109,-331,-1093,-662]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000901","PCON13CDO":"D75","PCON13NM":"Romsey and Southampton North"},"id":"E14000901","arcs":[[[-1332,1590]],[[1591,-1462,1592,-800,1593,1594,1595,1596,-1330,1597,-1336]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000902","PCON13CDO":"D76","PCON13NM":"Rossendale and Darwen"},"id":"E14000902","arcs":[[-442,-246,-256,-568,-208,-1108,-434,-455,-1582,-1071]]},{"type":"Polygon","properties":{"PCON13CD":"E14000903","PCON13CDO":"D77","PCON13NM":"Rother Valley"},"id":"E14000903","arcs":[[-1402,1598,1599,1600,-711,-92,-240]]},{"type":"Polygon","properties":{"PCON13CD":"E14000904","PCON13CDO":"D78","PCON13NM":"Rotherham"},"id":"E14000904","arcs":[[1601,1602,-1514,1603,-1600]]},{"type":"Polygon","properties":{"PCON13CD":"E14000905","PCON13CDO":"D79","PCON13NM":"Rugby"},"id":"E14000905","arcs":[[-1131,-639,-632,-1452,-1499,-271,1604,-682]]},{"type":"Polygon","properties":{"PCON13CD":"E14000906","PCON13CDO":"D80","PCON13NM":"Ruislip, Northwood and Pinner"},"id":"E14000906","arcs":[[-112,1605,1606,-1006,-1008,1607]]},{"type":"Polygon","properties":{"PCON13CD":"E14000907","PCON13CDO":"D81","PCON13NM":"Runnymede and Weybridge"},"id":"E14000907","arcs":[[-1323,1608,1609,1610,1611,-865]]},{"type":"Polygon","properties":{"PCON13CD":"E14000908","PCON13CDO":"D82","PCON13NM":"Rushcliffe"},"id":"E14000908","arcs":[[-422,-1498,-1495,-927,-1341,1612,-1215,-1466,-859]]},{"type":"Polygon","properties":{"PCON13CD":"E14000909","PCON13CDO":"D83","PCON13NM":"Rutland and Melton"},"id":"E14000909","arcs":[[-995,-1182,-514,-1216,-1613,-1345,1613,-936,-630,-1137]]},{"type":"Polygon","properties":{"PCON13CD":"E14000910","PCON13CDO":"D84","PCON13NM":"Saffron Walden"},"id":"E14000910","arcs":[[-1060,-1411,1614,1615,-304,1616,-1257,-530,-1256,-335,-997]]},{"type":"Polygon","properties":{"PCON13CD":"E14000911","PCON13CDO":"D85","PCON13NM":"Salford and Eccles"},"id":"E14000911","arcs":[[-254,-444,-213,-1263,1617,1618]]},{"type":"Polygon","properties":{"PCON13CD":"E14000912","PCON13CDO":"D86","PCON13NM":"Salisbury"},"id":"E14000912","arcs":[[-1377,1619,-706,-1463,-1592,-1335,-1339]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000913","PCON13CDO":"D87","PCON13NM":"Scarborough and Whitby"},"id":"E14000913","arcs":[[[1620,1621,-1574,-1310]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000914","PCON13CDO":"D88","PCON13NM":"Scunthorpe"},"id":"E14000914","arcs":[[1622,-355,-907]]},{"type":"Polygon","properties":{"PCON13CD":"E14000915","PCON13CDO":"D89","PCON13NM":"Sedgefield"},"id":"E14000915","arcs":[[-593,-759,-1012,1623,1624,-1570,-667,-1578,-204]]},{"type":"Polygon","properties":{"PCON13CD":"E14000916","PCON13CDO":"D90","PCON13NM":"Sefton Central"},"id":"E14000916","arcs":[[-1158,-1212,-262,1625,1626,1627]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000917","PCON13CDO":"D91","PCON13NM":"Selby and Ainsty"},"id":"E14000917","arcs":[[[-1043,-1367,-835,-1177,1628,-1001,1629,1630,1631,-358,-729]],[[1632,1633,-794,-976]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000918","PCON13CDO":"D92","PCON13NM":"Sevenoaks"},"id":"E14000918","arcs":[[-1506,-1500,-668,1634,-780]]},{"type":"Polygon","properties":{"PCON13CD":"E14000919","PCON13CDO":"D93","PCON13NM":"Sheffield Central"},"id":"E14000919","arcs":[[1635,1636,1637,1638]]},{"type":"Polygon","properties":{"PCON13CD":"E14000920","PCON13CDO":"D94","PCON13NM":"Sheffield South East"},"id":"E14000920","arcs":[[1639,-1602,-1599,-1405,1640,-1637]]},{"type":"Polygon","properties":{"PCON13CD":"E14000921","PCON13CDO":"D95","PCON13NM":"Sheffield, Brightside and Hillsborough"},"id":"E14000921","arcs":[[1641,-1515,-1603,-1640,-1636]]},{"type":"Polygon","properties":{"PCON13CD":"E14000922","PCON13CDO":"D96","PCON13NM":"Sheffield, Hallam"},"id":"E14000922","arcs":[[-1077,-1516,-1642,-1639,1642,-1403,-697]]},{"type":"Polygon","properties":{"PCON13CD":"E14000923","PCON13CDO":"D97","PCON13NM":"Sheffield, Heeley"},"id":"E14000923","arcs":[[-1638,-1641,-1404,-1643]]},{"type":"Polygon","properties":{"PCON13CD":"E14000924","PCON13CDO":"D98","PCON13NM":"Sherwood"},"id":"E14000924","arcs":[[-39,-1270,-97,-1342,-925,-1496,-419]]},{"type":"Polygon","properties":{"PCON13CD":"E14000925","PCON13CDO":"D99","PCON13NM":"Shipley"},"id":"E14000925","arcs":[[-293,-303,-972,-1126,1643,-1175,-1546]]},{"type":"Polygon","properties":{"PCON13CD":"E14000926","PCON13CDO":"E01","PCON13NM":"Shrewsbury and Atcham"},"id":"E14000926","arcs":[[-1434,1644,1645,-1226,1646]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000927","PCON13CDO":"E02","PCON13NM":"Sittingbourne and Sheppey"},"id":"E14000927","arcs":[[[1647]],[[1648]],[[1649]],[[-931,1650,-878]],[[1651]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000928","PCON13CDO":"E03","PCON13NM":"Skipton and Ripon"},"id":"E14000928","arcs":[[-1327,1652,-1576,1653,-999,-1629,-1176,-1644,-1128,-1511,-1566,-1163]]},{"type":"Polygon","properties":{"PCON13CD":"E14000929","PCON13CDO":"E04","PCON13NM":"Sleaford and North Hykeham"},"id":"E14000929","arcs":[[-1206,-909,-1218,-270,1654,-937,-1614,-1344,-911]]},{"type":"Polygon","properties":{"PCON13CD":"E14000930","PCON13CDO":"E05","PCON13NM":"Slough"},"id":"E14000930","arcs":[[-116,1655]]},{"type":"Polygon","properties":{"PCON13CD":"E14000931","PCON13CDO":"E06","PCON13NM":"Solihull"},"id":"E14000931","arcs":[[-404,-197,-183,-200,-1274]]},{"type":"Polygon","properties":{"PCON13CD":"E14000932","PCON13CDO":"E07","PCON13NM":"Somerton and Frome"},"id":"E14000932","arcs":[[1656,-1380,1657,1658,1659,1660,1661,-339,1662,-1420,-555]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000933","PCON13CDO":"E08","PCON13NM":"South Basildon and East Thurrock"},"id":"E14000933","arcs":[[[-1557,-494,1663,1664,-1091,-329,-87]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000934","PCON13CDO":"E09","PCON13NM":"South Cambridgeshire"},"id":"E14000934","arcs":[[1665,-467,1666,-1615,-1414,-1385,-1106,-1456]]},{"type":"Polygon","properties":{"PCON13CD":"E14000935","PCON13CDO":"E10","PCON13NM":"South Derbyshire"},"id":"E14000935","arcs":[[-1204,-439,-700,-691,-694,-1283,-861,-1465,1667]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000936","PCON13CDO":"E11","PCON13NM":"South Dorset"},"id":"E14000936","arcs":[[[1668,1669]],[[1670]],[[1671]],[[1672,-1378,-1285,1673]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000937","PCON13CDO":"E12","PCON13NM":"South East Cambridgeshire"},"id":"E14000937","arcs":[[-466,-1666,-1455,1674,-1401,1675,-305,-1616,-1667]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000938","PCON13CDO":"E13","PCON13NM":"South East Cornwall"},"id":"E14000938","arcs":[[[1676,-1370,1677,1678]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000939","PCON13CDO":"E14","PCON13NM":"South Holland and The Deepings"},"id":"E14000939","arcs":[[[-938,-1655,-269,1679,-266,1680,-1390,-1526,-1457]],[[1681,-1467]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000940","PCON13CDO":"E15","PCON13NM":"South Leicestershire"},"id":"E14000940","arcs":[[-276,-511,-1186,-1184,-992,-683,-1605]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000941","PCON13CDO":"E16","PCON13NM":"South Norfolk"},"id":"E14000941","arcs":[[[1682]],[[-1491,1683]],[[1684,-505,-447,1685,-1289,-396,-1481,-1489,-1486,1686,-1488,1687,-1484,1688]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000942","PCON13CDO":"E17","PCON13NM":"South Northamptonshire"},"id":"E14000942","arcs":[[1689,-1316,-1317,-429,-61,-1132,-680,-1479,-676]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000943","PCON13CDO":"E18","PCON13NM":"South Ribble"},"id":"E14000943","arcs":[[[1690,1691,1692,1693,1694,1695,1696,1697,1698]],[[-1542,1699,-1567,-566,1700,1701]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000944","PCON13CDO":"E19","PCON13NM":"South Shields"},"id":"E14000944","arcs":[[1702,1703,-1122]]},{"type":"Polygon","properties":{"PCON13CD":"E14000945","PCON13CDO":"E20","PCON13NM":"South Staffordshire"},"id":"E14000945","arcs":[[-1220,1704,1705,-468,-5,1706,1707,1708,1709,-740,-746,1710,-410,1711]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000946","PCON13CDO":"E21","PCON13NM":"South Suffolk"},"id":"E14000946","arcs":[[[-1114,1712]],[[-449,-504,-1116,1713,-1018,-307,1714]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000947","PCON13CDO":"E22","PCON13NM":"South Swindon"},"id":"E14000947","arcs":[[-1441,1715,-702,-1477]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000948","PCON13CDO":"E23","PCON13NM":"South Thanet"},"id":"E14000948","arcs":[[[1716]],[[-736,-473,1717,-1444,1718]],[[-1445,1719]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000949","PCON13CDO":"E24","PCON13NM":"South West Bedfordshire"},"id":"E14000949","arcs":[[-1232,-1040,-425,-1278,-1228]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000950","PCON13CDO":"E25","PCON13NM":"South West Devon"},"id":"E14000950","arcs":[[[1720,1721]],[[-1528,1722,1723,1724,1725]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000951","PCON13CDO":"E26","PCON13NM":"South West Hertfordshire"},"id":"E14000951","arcs":[[-427,-1039,1726,-1606,-111,-538,-54]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000952","PCON13CDO":"E27","PCON13NM":"South West Norfolk"},"id":"E14000952","arcs":[[[-1396,1727,-1469,1728]],[[1729,-1399,1730,-1473,-1290,-1686,-446]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000953","PCON13CDO":"E28","PCON13NM":"South West Surrey"},"id":"E14000953","arcs":[[-776,-1408,-4,1731,-957,-545]]},{"type":"Polygon","properties":{"PCON13CD":"E14000954","PCON13CDO":"E29","PCON13NM":"South West Wiltshire"},"id":"E14000954","arcs":[[-1657,-559,-707,-1620,-1376]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000955","PCON13CDO":"E30","PCON13NM":"Southampton, Itchen"},"id":"E14000955","arcs":[[[1732,1733]],[[-1594,-799,1734]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000956","PCON13CDO":"E31","PCON13NM":"Southampton, Test"},"id":"E14000956","arcs":[[-1596,1735,-1733,1736]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000957","PCON13CDO":"E32","PCON13NM":"Southend West"},"id":"E14000957","arcs":[[[-488,1737]],[[1738,-492,-1556,-1589]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000958","PCON13CDO":"E33","PCON13NM":"Southport"},"id":"E14000958","arcs":[[[-1694,1739]],[[-1696,1740]],[[-1698,1741]],[[-1692,1742,-1627,1743]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000959","PCON13CDO":"E34","PCON13NM":"Spelthorne"},"id":"E14000959","arcs":[[1744,-1028,-882,1745,-866,-1612]]},{"type":"Polygon","properties":{"PCON13CD":"E14000960","PCON13CDO":"E35","PCON13NM":"St Albans"},"id":"E14000960","arcs":[[1746,-1037,-1085,1747,-1063]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000961","PCON13CDO":"E36","PCON13NM":"St Austell and Newquay"},"id":"E14000961","arcs":[[[1748,1749]],[[-1677,1750,1751,1752,-1371]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000962","PCON13CDO":"E37","PCON13NM":"St Helens North"},"id":"E14000962","arcs":[[1753,-1153,1754,-1244,-1190,1755]]},{"type":"Polygon","properties":{"PCON13CD":"E14000963","PCON13CDO":"E38","PCON13NM":"St Helens South and Whiston"},"id":"E14000963","arcs":[[-1154,-1754,1756,1757,-981,-917]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000964","PCON13CDO":"E39","PCON13NM":"St Ives"},"id":"E14000964","arcs":[[[1758]],[[1759]],[[1760]],[[1761]],[[1762]],[[1763]],[[-465,1764]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000965","PCON13CDO":"E40","PCON13NM":"Stafford"},"id":"E14000965","arcs":[[1765,-1202,-469,-1706,1766]]},{"type":"Polygon","properties":{"PCON13CD":"E14000966","PCON13CDO":"E41","PCON13NM":"Staffordshire Moorlands"},"id":"E14000966","arcs":[[1767,1768,1769,-616,-1233,-1078,-695,-437,1770]]},{"type":"Polygon","properties":{"PCON13CD":"E14000967","PCON13CDO":"E42","PCON13NM":"Stalybridge and Hyde"},"id":"E14000967","arcs":[[-686,-50,-1504,-1074,-1032]]},{"type":"Polygon","properties":{"PCON13CD":"E14000968","PCON13CDO":"E43","PCON13NM":"Stevenage"},"id":"E14000968","arcs":[[1771,-1083,-1413]]},{"type":"Polygon","properties":{"PCON13CD":"E14000969","PCON13CDO":"E44","PCON13NM":"Stockport"},"id":"E14000969","arcs":[[-1266,-688,-1031,-527,-1267]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000970","PCON13CDO":"E45","PCON13NM":"Stockton North"},"id":"E14000970","arcs":[[[1772,-1624,-1011,1773]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000971","PCON13CDO":"E46","PCON13NM":"Stockton South"},"id":"E14000971","arcs":[[[1774,-1307,-1312,-1573]],[[-1625,-1773,1775,-1571]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000972","PCON13CDO":"E47","PCON13NM":"Stoke-on-Trent Central"},"id":"E14000972","arcs":[[-1361,1776,-1769,1777]]},{"type":"Polygon","properties":{"PCON13CD":"E14000973","PCON13CDO":"E48","PCON13NM":"Stoke-on-Trent North"},"id":"E14000973","arcs":[[-1360,-617,-1770,-1777]]},{"type":"Polygon","properties":{"PCON13CD":"E14000974","PCON13CDO":"E49","PCON13NM":"Stoke-on-Trent South"},"id":"E14000974","arcs":[[-1768,1778,-1362,-1778]]},{"type":"Polygon","properties":{"PCON13CD":"E14000975","PCON13CDO":"E50","PCON13NM":"Stone"},"id":"E14000975","arcs":[[-645,-1363,-1779,-1771,-436,-1203,-1766,1779,-1432]]},{"type":"Polygon","properties":{"PCON13CD":"E14000976","PCON13CDO":"E51","PCON13NM":"Stourbridge"},"id":"E14000976","arcs":[[-745,-969,-411,-1711]]},{"type":"Polygon","properties":{"PCON13CD":"E14000977","PCON13CDO":"E52","PCON13NM":"Stratford-on-Avon"},"id":"E14000977","arcs":[[-1297,-1564,-406,-1277,-1129,1780,-1133,-59,1781,1782]]},{"type":"Polygon","properties":{"PCON13CD":"E14000978","PCON13CDO":"E53","PCON13NM":"Streatham"},"id":"E14000978","arcs":[[1783,-748,-657,-1319,1784,-107]]},{"type":"Polygon","properties":{"PCON13CD":"E14000979","PCON13CDO":"E54","PCON13NM":"Stretford and Urmston"},"id":"E14000979","arcs":[[1785,-16,1786,1787,-1618,-1262,-1265,-1269]]},{"type":"Polygon","properties":{"PCON13CD":"E14000980","PCON13CDO":"E55","PCON13NM":"Stroud"},"id":"E14000980","arcs":[[1788,-934,1789,1790,1791]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000981","PCON13CDO":"E56","PCON13NM":"Suffolk Coastal"},"id":"E14000981","arcs":[[[1792]],[[-1117,-507,1793,1794]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000982","PCON13CDO":"E57","PCON13NM":"Sunderland Central"},"id":"E14000982","arcs":[[[1795,-761,-1102,1796]],[[1797,-1123,-1704,1798]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000983","PCON13CDO":"E58","PCON13NM":"Surrey Heath"},"id":"E14000983","arcs":[[-289,1799,-1610,1800,-958,-1732,-3]]},{"type":"Polygon","properties":{"PCON13CD":"E14000984","PCON13CDO":"E59","PCON13NM":"Sutton and Cheam"},"id":"E14000984","arcs":[[1801,-1320,-483,-1565,-854,-1140]]},{"type":"Polygon","properties":{"PCON13CD":"E14000985","PCON13CDO":"E60","PCON13NM":"Sutton Coldfield"},"id":"E14000985","arcs":[[-9,1802,-1453,-1275,-177,-195]]},{"type":"Polygon","properties":{"PCON13CD":"E14000986","PCON13CDO":"E61","PCON13NM":"Tamworth"},"id":"E14000986","arcs":[[-1205,-1668,-1464,-1454,-1803,-8]]},{"type":"Polygon","properties":{"PCON13CD":"E14000987","PCON13CDO":"E62","PCON13NM":"Tatton"},"id":"E14000987","arcs":[[1803,1804,-13,1805,-524,-1234,-614,-807]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14000988","PCON13CDO":"E63","PCON13NM":"Taunton Deane"},"id":"E14000988","arcs":[[[-340,1806]],[[-1662,1807,-336]],[[-1660,1808,1809,-342,1810]]]},{"type":"Polygon","properties":{"PCON13CD":"E14000989","PCON13CDO":"E64","PCON13NM":"Telford"},"id":"E14000989","arcs":[[1811,-1227,-1646]]},{"type":"Polygon","properties":{"PCON13CD":"E14000990","PCON13CDO":"E65","PCON13NM":"Tewkesbury"},"id":"E14000990","arcs":[[-896,1812,-1299,1813,-536,1814,-1790,-933]]},{"type":"Polygon","properties":{"PCON13CD":"E14000991","PCON13CDO":"E66","PCON13NM":"The Cotswolds"},"id":"E14000991","arcs":[[-537,-1814,-1298,-1783,1815,1816,-1439,-1476,1817,-1791,-1815]]},{"type":"Polygon","properties":{"PCON13CD":"E14000992","PCON13CDO":"E67","PCON13NM":"The Wrekin"},"id":"E14000992","arcs":[[-1812,-1645,-1433,-1780,-1767,-1705,-1219]]},{"type":"Polygon","properties":{"PCON13CD":"E14000993","PCON13CDO":"E68","PCON13NM":"Thirsk and Malton"},"id":"E14000993","arcs":[[-1654,-1575,-1622,1818,-796,1819,-1630,-1000]]},{"type":"Polygon","properties":{"PCON13CD":"E14000994","PCON13CDO":"E69","PCON13NM":"Thornbury and Yate"},"id":"E14000994","arcs":[[-1792,-1818,-1475,-1418,-1150,-885,1820]]},{"type":"Polygon","properties":{"PCON13CD":"E14000995","PCON13CDO":"E70","PCON13NM":"Thurrock"},"id":"E14000995","arcs":[[1821,-664,-1092,-1665]]},{"type":"Polygon","properties":{"PCON13CD":"E14000996","PCON13CDO":"E71","PCON13NM":"Tiverton and Honiton"},"id":"E14000996","arcs":[[-1373,-343,-1810,1822,1823,1824,-768,-497]]},{"type":"Polygon","properties":{"PCON13CD":"E14000997","PCON13CDO":"E72","PCON13NM":"Tonbridge and Malling"},"id":"E14000997","arcs":[[-1635,-672,-941,-518,-1239,1825,1826,-781]]},{"type":"Polygon","properties":{"PCON13CD":"E14000998","PCON13CDO":"E73","PCON13NM":"Tooting"},"id":"E14000998","arcs":[[1827,-1549,-108,-1785,-1318]]},{"type":"Polygon","properties":{"PCON13CD":"E14000999","PCON13CDO":"E74","PCON13NM":"Torbay"},"id":"E14000999","arcs":[[1828,1829,-1365]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001000","PCON13CDO":"E75","PCON13NM":"Torridge and West Devon"},"id":"E14001000","arcs":[[[-1369,1830,-1374,-495,1831,-1724,1832,-1678]],[[1833]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001001","PCON13CDO":"E76","PCON13NM":"Totnes"},"id":"E14001001","arcs":[[[-503,-1366,-1830,1834,-1722,1835,-1725,-1832]]]},{"type":"Polygon","properties":{"PCON13CD":"E14001002","PCON13CDO":"E77","PCON13NM":"Tottenham"},"id":"E14001002","arcs":[[-960,-1121,-1094,-850,-810,1836]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001003","PCON13CDO":"E78","PCON13NM":"Truro and Falmouth"},"id":"E14001003","arcs":[[[1837,-1750,1838,-1752,1839,-463]]]},{"type":"Polygon","properties":{"PCON13CD":"E14001004","PCON13CDO":"E79","PCON13NM":"Tunbridge Wells"},"id":"E14001004","arcs":[[1840,-1826,-1241,-47,-156]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001005","PCON13CDO":"E80","PCON13NM":"Twickenham"},"id":"E14001005","arcs":[[[-1746,-881,-326,1841,-1580,-1142,-867]]]},{"type":"Polygon","properties":{"PCON13CD":"E14001006","PCON13CDO":"E81","PCON13NM":"Tynemouth"},"id":"E14001006","arcs":[[1842,-1449,-232]]},{"type":"Polygon","properties":{"PCON13CD":"E14001007","PCON13CDO":"E82","PCON13NM":"Uxbridge and South Ruislip"},"id":"E14001007","arcs":[[-113,-1608,-1007,-754,-1030]]},{"type":"Polygon","properties":{"PCON13CD":"E14001008","PCON13CDO":"E83","PCON13NM":"Vauxhall"},"id":"E14001008","arcs":[[-106,1843,-127,-458,-749,-1784]]},{"type":"Polygon","properties":{"PCON13CD":"E14001009","PCON13CDO":"E84","PCON13NM":"Wakefield"},"id":"E14001009","arcs":[[-1329,-1368,-1041,-72,-1512,-709,-103]]},{"type":"Polygon","properties":{"PCON13CD":"E14001010","PCON13CDO":"E85","PCON13NM":"Wallasey"},"id":"E14001010","arcs":[[1844,-168,1845]]},{"type":"Polygon","properties":{"PCON13CD":"E14001011","PCON13CDO":"E86","PCON13NM":"Walsall North"},"id":"E14001011","arcs":[[1846,-1707,-12,1847,1848]]},{"type":"Polygon","properties":{"PCON13CD":"E14001012","PCON13CDO":"E87","PCON13NM":"Walsall South"},"id":"E14001012","arcs":[[1849,1850,1851,-1848,-11,-194]]},{"type":"Polygon","properties":{"PCON13CD":"E14001013","PCON13CDO":"E88","PCON13NM":"Walthamstow"},"id":"E14001013","arcs":[[-1837,-814,-554,-1201,-965,-961]]},{"type":"Polygon","properties":{"PCON13CD":"E14001014","PCON13CDO":"E89","PCON13NM":"Wansbeck"},"id":"E14001014","arcs":[[1852,-230,-1064,-136]]},{"type":"Polygon","properties":{"PCON13CD":"E14001015","PCON13CDO":"E90","PCON13NM":"Wantage"},"id":"E14001015","arcs":[[1853,-1509,-1047,-1347,-703,-1716,-1440,-1817]]},{"type":"Polygon","properties":{"PCON13CD":"E14001016","PCON13CDO":"E91","PCON13NM":"Warley"},"id":"E14001016","arcs":[[-188,-170,-971,1854,1855]]},{"type":"Polygon","properties":{"PCON13CD":"E14001017","PCON13CDO":"E92","PCON13NM":"Warrington North"},"id":"E14001017","arcs":[[1856,1857,-1757,-1756,-1189,1858,-1787,-15,1859]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001018","PCON13CDO":"E93","PCON13NM":"Warrington South"},"id":"E14001018","arcs":[[[-985,1860,-1860,-14,-1805,1861]],[[-1758,-1858,1862,-982]]]},{"type":"Polygon","properties":{"PCON13CD":"E14001019","PCON13CDO":"E94","PCON13NM":"Warwick and Leamington"},"id":"E14001019","arcs":[[-1134,-1781]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001020","PCON13CDO":"E95","PCON13NM":"Washington and Sunderland West"},"id":"E14001020","arcs":[[[1863,-1797,-1101]],[[-1383,1864,-1099]],[[-1798,1865,-1381,-226,-922,-1124]]]},{"type":"Polygon","properties":{"PCON13CD":"E14001021","PCON13CDO":"E96","PCON13NM":"Watford"},"id":"E14001021","arcs":[[-1727,-1038,-1747,-1062,-1002,-1607]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001022","PCON13CDO":"E97","PCON13NM":"Waveney"},"id":"E14001022","arcs":[[[-506,-1685,1866,-1794]],[[-945,1867]]]},{"type":"Polygon","properties":{"PCON13CD":"E14001023","PCON13CDO":"E98","PCON13NM":"Wealden"},"id":"E14001023","arcs":[[-155,-1193,-1291,-782,-1827,-1841]]},{"type":"Polygon","properties":{"PCON13CD":"E14001024","PCON13CDO":"E99","PCON13NM":"Weaver Vale"},"id":"E14001024","arcs":[[-1862,-1804,-806,-831,1868,-986]]},{"type":"Polygon","properties":{"PCON13CD":"E14001025","PCON13CDO":"F01","PCON13NM":"Wellingborough"},"id":"E14001025","arcs":[[-628,-1387,-1313,-1690,-675,-1136]]},{"type":"Polygon","properties":{"PCON13CD":"E14001026","PCON13CDO":"F02","PCON13NM":"Wells"},"id":"E14001026","arcs":[[1869,1870,-1415,-1663,-338]]},{"type":"Polygon","properties":{"PCON13CD":"E14001027","PCON13CDO":"F03","PCON13NM":"Welwyn Hatfield"},"id":"E14001027","arcs":[[-1748,-1084,-1772,-1412,-1058,-412,-1061]]},{"type":"Polygon","properties":{"PCON13CD":"E14001028","PCON13CDO":"F04","PCON13NM":"Wentworth and Dearne"},"id":"E14001028","arcs":[[-712,-1601,-1604,-1513,-76,-733]]},{"type":"Polygon","properties":{"PCON13CD":"E14001029","PCON13CDO":"F05","PCON13NM":"West Bromwich East"},"id":"E14001029","arcs":[[1871,-1850,-196,-189,-1856]]},{"type":"Polygon","properties":{"PCON13CD":"E14001030","PCON13CDO":"F06","PCON13NM":"West Bromwich West"},"id":"E14001030","arcs":[[-742,1872,-1851,-1872,-1855,-970]]},{"type":"Polygon","properties":{"PCON13CD":"E14001031","PCON13CDO":"F07","PCON13NM":"West Dorset"},"id":"E14001031","arcs":[[1873,-1669,1874,-1824,1875,-1658,-1379,-1673]]},{"type":"Polygon","properties":{"PCON13CD":"E14001032","PCON13CDO":"F08","PCON13NM":"West Ham"},"id":"E14001032","arcs":[[-143,-967,-1200,-773,1876,-1533]]},{"type":"Polygon","properties":{"PCON13CD":"E14001033","PCON13CDO":"F09","PCON13NM":"West Lancashire"},"id":"E14001033","arcs":[[-1701,-565,1877,-1242,-1755,-1152,-1628,-1743,-1691,1878]]},{"type":"Polygon","properties":{"PCON13CD":"E14001034","PCON13CDO":"F10","PCON13NM":"West Suffolk"},"id":"E14001034","arcs":[[-445,-1715,-306,-1676,-1400,-1730]]},{"type":"Polygon","properties":{"PCON13CD":"E14001035","PCON13CDO":"F11","PCON13NM":"West Worcestershire"},"id":"E14001035","arcs":[[-1292,-1813,-895,-1421,-1222,1879,-1294,1880]]},{"type":"Polygon","properties":{"PCON13CD":"E14001036","PCON13CDO":"F12","PCON13NM":"Westminster North"},"id":"E14001036","arcs":[[-990,-1090,-577,-1135]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001037","PCON13CDO":"F13","PCON13NM":"Westmorland and Lonsdale"},"id":"E14001037","arcs":[[[1881]],[[-82,1882]],[[-80,-622,-1520,-1577,-1653,-1326,1883]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001038","PCON13CDO":"F14","PCON13NM":"Weston-Super-Mare"},"id":"E14001038","arcs":[[[1884,-1437,-1416,-1871]]]},{"type":"Polygon","properties":{"PCON13CD":"E14001039","PCON13CDO":"F15","PCON13NM":"Wigan"},"id":"E14001039","arcs":[[-569,-260,-1243,-1878]]},{"type":"Polygon","properties":{"PCON13CD":"E14001040","PCON13CDO":"F16","PCON13NM":"Wimbledon"},"id":"E14001040","arcs":[[-1579,-1550,-1828,-1321,-1802,-1139]]},{"type":"Polygon","properties":{"PCON13CD":"E14001041","PCON13CDO":"F17","PCON13NM":"Winchester"},"id":"E14001041","arcs":[[-1593,-1461,-1409,-778,-1271,-801]]},{"type":"Polygon","properties":{"PCON13CD":"E14001042","PCON13CDO":"F18","PCON13NM":"Windsor"},"id":"E14001042","arcs":[[1885,-1236,-117,-1656,-115,-1029,-1745,-1611,-1800,-288]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001043","PCON13CDO":"F19","PCON13NM":"Wirral South"},"id":"E14001043","arcs":[[[1886,1887,-166,1888,-829]],[[-827,1889,-815,1890]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001044","PCON13CDO":"F20","PCON13NM":"Wirral West"},"id":"E14001044","arcs":[[[1891,-1846,-167,-1888]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001045","PCON13CDO":"F21","PCON13NM":"Witham"},"id":"E14001045","arcs":[[[-1617,-309,-1017,-604,-1014,1892,-1250,1893,-1258]]]},{"type":"Polygon","properties":{"PCON13CD":"E14001046","PCON13CDO":"F22","PCON13NM":"Witney"},"id":"E14001046","arcs":[[-1508,-1854,-1816,-1782,-64,-1051]]},{"type":"Polygon","properties":{"PCON13CD":"E14001047","PCON13CDO":"F23","PCON13NM":"Woking"},"id":"E14001047","arcs":[[-1609,-1322,-959,-1801]]},{"type":"Polygon","properties":{"PCON13CD":"E14001048","PCON13CDO":"F24","PCON13NM":"Wokingham"},"id":"E14001048","arcs":[[-1349,-1560,-1558,-1237,-1886,-291,-1407]]},{"type":"Polygon","properties":{"PCON13CD":"E14001049","PCON13CDO":"F25","PCON13NM":"Wolverhampton North East"},"id":"E14001049","arcs":[[-1847,1894,1895,-1708]]},{"type":"Polygon","properties":{"PCON13CD":"E14001050","PCON13CDO":"F26","PCON13NM":"Wolverhampton South East"},"id":"E14001050","arcs":[[-1710,1896,-1895,-1849,-1852,-1873,-741]]},{"type":"Polygon","properties":{"PCON13CD":"E14001051","PCON13CDO":"F27","PCON13NM":"Wolverhampton South West"},"id":"E14001051","arcs":[[-1897,-1709,-1896]]},{"type":"Polygon","properties":{"PCON13CD":"E14001052","PCON13CDO":"F28","PCON13NM":"Worcester"},"id":"E14001052","arcs":[[-1293,-1881]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001053","PCON13CDO":"F29","PCON13NM":"Workington"},"id":"E14001053","arcs":[[[-482,-1521,-620,1897]]]},{"type":"Polygon","properties":{"PCON13CD":"E14001054","PCON13CDO":"F30","PCON13NM":"Worsley and Eccles South"},"id":"E14001054","arcs":[[-251,-1619,-1788,-1859,-1188,-257]]},{"type":"Polygon","properties":{"PCON13CD":"E14001055","PCON13CDO":"F31","PCON13NM":"Worthing West"},"id":"E14001055","arcs":[[-33,-787,1898,-238]]},{"type":"Polygon","properties":{"PCON13CD":"E14001056","PCON13CDO":"F32","PCON13NM":"Wycombe"},"id":"E14001056","arcs":[[-1052,-56,-539,-119,-1235]]},{"type":"MultiPolygon","properties":{"PCON13CD":"E14001057","PCON13CDO":"F33","PCON13NM":"Wyre and Preston North"},"id":"E14001057","arcs":[[[-900,-216,1899]],[[-1569,-1543,-902,1900,-1160,1901,-1165]]]},{"type":"Polygon","properties":{"PCON13CD":"E14001058","PCON13CDO":"F34","PCON13NM":"Wyre Forest"},"id":"E14001058","arcs":[[-1712,-409,-1295,-1880,-1221]]},{"type":"Polygon","properties":{"PCON13CD":"E14001059","PCON13CDO":"F35","PCON13NM":"Wythenshawe and Sale East"},"id":"E14001059","arcs":[[-17,-1786,-1268,-525,-1806]]},{"type":"Polygon","properties":{"PCON13CD":"E14001060","PCON13CDO":"F36","PCON13NM":"Yeovil"},"id":"E14001060","arcs":[[-1823,-1809,-1659,-1876]]},{"type":"Polygon","properties":{"PCON13CD":"E14001061","PCON13CDO":"F37","PCON13NM":"York Central"},"id":"E14001061","arcs":[[1902]]},{"type":"Polygon","properties":{"PCON13CD":"E14001062","PCON13CDO":"F38","PCON13NM":"York Outer"},"id":"E14001062","arcs":[[1903,-1631,-1820,-795,-1634],[-1903]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000001","PCON13CDO":"801","PCON13NM":"Aberdeen North"},"id":"S14000001","arcs":[[[1904,1905,1906,1907]],[[1908,1909]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000002","PCON13CDO":"802","PCON13NM":"Aberdeen South"},"id":"S14000002","arcs":[[[1910,1911,-1905]]]},{"type":"Polygon","properties":{"PCON13CD":"S14000003","PCON13CDO":"803","PCON13NM":"Airdrie and Shotts"},"id":"S14000003","arcs":[[1912,1913,1914,1915,1916,1917]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000004","PCON13CDO":"804","PCON13NM":"Angus"},"id":"S14000004","arcs":[[[1918,1919,1920,1921,1922]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000005","PCON13CDO":"805","PCON13NM":"Argyll and Bute"},"id":"S14000005","arcs":[[[1923]],[[1924]],[[1925]],[[1926]],[[1927]],[[1928]],[[1929]],[[1930]],[[1931]],[[1932]],[[1933]],[[1934]],[[1935]],[[1936]],[[1937]],[[1938]],[[1939]],[[1940]],[[1941]],[[1942]],[[1943]],[[1944]],[[1945]],[[1946]],[[1947]],[[1948]],[[1949]],[[1950]],[[1951]],[[1952]],[[1953]],[[1954]],[[1955]],[[1956]],[[1957]],[[1958]],[[1959]],[[1960]],[[1961]],[[1962]],[[1963]],[[1964]],[[1965]],[[1966]],[[1967,1968,1969,1970,1971]],[[1972]],[[1973]],[[1974,1975]],[[1976]],[[1977]],[[1978]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000006","PCON13CDO":"806","PCON13NM":"Ayr, Carrick and Cumnock"},"id":"S14000006","arcs":[[[1979]],[[1980,1981,1982,1983,1984]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000007","PCON13CDO":"807","PCON13NM":"Banff and Buchan"},"id":"S14000007","arcs":[[[1985,1986,1987]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000008","PCON13CDO":"808","PCON13NM":"Berwickshire, Roxburgh and Selkirk"},"id":"S14000008","arcs":[[[-139,1988,-133,1989,-138,-1070,-1518,1990,1991,1992,1993]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000009","PCON13CDO":"809","PCON13NM":"Caithness, Sutherland and Easter Ross"},"id":"S14000009","arcs":[[[1994]],[[1995]],[[1996]],[[1997]],[[1998]],[[1999]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2007]],[[2008]],[[2009,2010]],[[2011]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000010","PCON13CDO":"810","PCON13NM":"Central Ayrshire"},"id":"S14000010","arcs":[[[2012,-1985,2013,2014]]]},{"type":"Polygon","properties":{"PCON13CD":"S14000011","PCON13CDO":"811","PCON13NM":"Coatbridge, Chryston and Bellshill"},"id":"S14000011","arcs":[[2015,-1913,2016,2017,2018,2019,2020]]},{"type":"Polygon","properties":{"PCON13CD":"S14000012","PCON13CDO":"812","PCON13NM":"Cumbernauld, Kilsyth and Kirkintilloch East"},"id":"S14000012","arcs":[[2021,2022,2023,2024,-1914,-2016]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000013","PCON13CDO":"813","PCON13NM":"Dumfries and Galloway"},"id":"S14000013","arcs":[[[-1983,2025,2026]]]},{"type":"Polygon","properties":{"PCON13CD":"S14000014","PCON13CDO":"814","PCON13NM":"Dumfriesshire, Clydesdale and Tweeddale"},"id":"S14000014","arcs":[[-1991,-1523,2027,-2026,-1982,2028,2029,2030,2031,2032,2033]]},{"type":"Polygon","properties":{"PCON13CD":"S14000015","PCON13CDO":"815","PCON13NM":"Dundee East"},"id":"S14000015","arcs":[[-1919,2034,2035]]},{"type":"Polygon","properties":{"PCON13CD":"S14000016","PCON13CDO":"816","PCON13NM":"Dundee West"},"id":"S14000016","arcs":[[-1920,-2036,2036,2037]]},{"type":"Polygon","properties":{"PCON13CD":"S14000017","PCON13CDO":"817","PCON13NM":"Dunfermline and West Fife"},"id":"S14000017","arcs":[[2038,2039,2040]]},{"type":"Polygon","properties":{"PCON13CD":"S14000018","PCON13CDO":"818","PCON13NM":"East Dunbartonshire"},"id":"S14000018","arcs":[[-2022,-2021,2041,2042,2043,2044,2045]]},{"type":"Polygon","properties":{"PCON13CD":"S14000019","PCON13CDO":"819","PCON13NM":"East Kilbride, Strathaven and Lesmahagow"},"id":"S14000019","arcs":[[2046,2047,2048,-2030,2049,2050]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000020","PCON13CDO":"820","PCON13NM":"East Lothian"},"id":"S14000020","arcs":[[[-1993,2051,2052,2053]]]},{"type":"Polygon","properties":{"PCON13CD":"S14000021","PCON13CDO":"821","PCON13NM":"East Renfrewshire"},"id":"S14000021","arcs":[[2054,-2051,2055,2056,2057,2058]]},{"type":"Polygon","properties":{"PCON13CD":"S14000022","PCON13CDO":"822","PCON13NM":"Edinburgh East"},"id":"S14000022","arcs":[[2059,-2053,2060,2061,2062,2063]]},{"type":"Polygon","properties":{"PCON13CD":"S14000023","PCON13CDO":"823","PCON13NM":"Edinburgh North and Leith"},"id":"S14000023","arcs":[[2064,-2064,2065,2066]]},{"type":"Polygon","properties":{"PCON13CD":"S14000024","PCON13CDO":"824","PCON13NM":"Edinburgh South"},"id":"S14000024","arcs":[[2067,-2062,2068]]},{"type":"Polygon","properties":{"PCON13CD":"S14000025","PCON13CDO":"825","PCON13NM":"Edinburgh South West"},"id":"S14000025","arcs":[[2069,2070,-2066,-2063,-2068,2071,-2033]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000026","PCON13CDO":"826","PCON13NM":"Edinburgh West"},"id":"S14000026","arcs":[[[2072,2073,2074,-2067,-2071]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000027","PCON13CDO":"847","PCON13NM":"Na h-Eileanan an Iar"},"id":"S14000027","arcs":[[[2075]],[[2076]],[[2077]],[[2078]],[[2079]],[[2080]],[[2081]],[[2082]],[[2083]],[[2084]],[[2085]],[[2086]],[[2087]],[[2088]],[[2089]],[[2090]],[[2091]],[[2092]],[[2093]],[[2094]],[[2095]],[[2096]],[[2097]],[[2098]],[[2099]],[[2100]],[[2101]],[[2102]],[[2103]],[[2104]],[[2105]],[[2106]],[[2107]],[[2108]],[[2109]],[[2110]],[[2111]],[[2112]],[[2113]],[[2114]],[[2115]],[[2116]],[[2117]],[[2118]],[[2119]],[[2120]],[[2121]],[[2122]],[[2123]],[[2124]],[[2125]],[[2126]],[[2127]],[[2128]],[[2129]],[[2130]],[[2131]],[[2132]],[[2133]],[[2134]],[[2135]],[[2136]],[[2137]],[[2138]],[[2139]],[[2140]],[[2141]],[[2142]],[[2143]],[[2144]],[[2145]],[[2146]],[[2147]],[[2148]],[[2149]]]},{"type":"Polygon","properties":{"PCON13CD":"S14000028","PCON13CDO":"827","PCON13NM":"Falkirk"},"id":"S14000028","arcs":[[2150,2151,-2024,2152]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000029","PCON13CDO":"828","PCON13NM":"Glasgow Central"},"id":"S14000029","arcs":[[[2153,2154,2155,2156]],[[2157,2158]],[[2159,2160,2161,2162]]]},{"type":"Polygon","properties":{"PCON13CD":"S14000030","PCON13CDO":"829","PCON13NM":"Glasgow East"},"id":"S14000030","arcs":[[-2162,2163,-2019,2164,2165,2166]]},{"type":"Polygon","properties":{"PCON13CD":"S14000031","PCON13CDO":"830","PCON13NM":"Glasgow North"},"id":"S14000031","arcs":[[2167,2168,-2043,2169,-2160]]},{"type":"Polygon","properties":{"PCON13CD":"S14000032","PCON13CDO":"831","PCON13NM":"Glasgow North East"},"id":"S14000032","arcs":[[-2042,-2020,-2164,-2161,-2170]]},{"type":"Polygon","properties":{"PCON13CD":"S14000033","PCON13CDO":"832","PCON13NM":"Glasgow North West"},"id":"S14000033","arcs":[[-2044,-2169,2170,2171]]},{"type":"Polygon","properties":{"PCON13CD":"S14000034","PCON13CDO":"833","PCON13NM":"Glasgow South"},"id":"S14000034","arcs":[[2172,-2156,2173,-2047,-2055]]},{"type":"Polygon","properties":{"PCON13CD":"S14000035","PCON13CDO":"834","PCON13NM":"Glasgow South West"},"id":"S14000035","arcs":[[-2157,-2173,-2059,2174,2175,2176,-2158,2177]]},{"type":"Polygon","properties":{"PCON13CD":"S14000036","PCON13CDO":"835","PCON13NM":"Glenrothes"},"id":"S14000036","arcs":[[2178,2179,2180,2181]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000037","PCON13CDO":"836","PCON13NM":"Gordon"},"id":"S14000037","arcs":[[[2182,2183,-1986,2184,-1909,2185,-1907]]]},{"type":"Polygon","properties":{"PCON13CD":"S14000038","PCON13CDO":"837","PCON13NM":"Inverclyde"},"id":"S14000038","arcs":[[2186,2187,2188,2189]]},{"type":"Polygon","properties":{"PCON13CD":"S14000039","PCON13CDO":"838","PCON13NM":"Inverness, Nairn, Badenoch and Strathspey"},"id":"S14000039","arcs":[[2190,2191,2192,2193,2194]]},{"type":"Polygon","properties":{"PCON13CD":"S14000040","PCON13CDO":"839","PCON13NM":"Kilmarnock and Loudoun"},"id":"S14000040","arcs":[[-2050,-2029,-1981,-2013,2195,-2056]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000041","PCON13CDO":"840","PCON13NM":"Kirkcaldy and Cowdenbeath"},"id":"S14000041","arcs":[[[2196]],[[-2039,2197,-2182,2198]]]},{"type":"Polygon","properties":{"PCON13CD":"S14000042","PCON13CDO":"841","PCON13NM":"Lanark and Hamilton East"},"id":"S14000042","arcs":[[2199,-2031,-2049,2200,-2165,-2018,2201,-1917]]},{"type":"Polygon","properties":{"PCON13CD":"S14000043","PCON13CDO":"842","PCON13NM":"Linlithgow and East Falkirk"},"id":"S14000043","arcs":[[-2025,-2152,2202,-2074,2203,-1915]]},{"type":"Polygon","properties":{"PCON13CD":"S14000044","PCON13CDO":"843","PCON13NM":"Livingston"},"id":"S14000044","arcs":[[-1916,-2204,-2073,-2070,-2032,-2200]]},{"type":"Polygon","properties":{"PCON13CD":"S14000045","PCON13CDO":"844","PCON13NM":"Midlothian"},"id":"S14000045","arcs":[[-2069,-2061,-2052,-1992,-2034,-2072]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000046","PCON13CDO":"845","PCON13NM":"Moray"},"id":"S14000046","arcs":[[[-1987,-2184,2204,-2193,2205]]]},{"type":"Polygon","properties":{"PCON13CD":"S14000047","PCON13CDO":"846","PCON13NM":"Motherwell and Wishaw"},"id":"S14000047","arcs":[[-1918,-2202,-2017]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000048","PCON13CDO":"848","PCON13NM":"North Ayrshire and Arran"},"id":"S14000048","arcs":[[[2206]],[[2207]],[[2208]],[[2209]],[[-2015,2210,-2187,2211,-2057,-2196]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000049","PCON13CDO":"849","PCON13NM":"North East Fife"},"id":"S14000049","arcs":[[[2212]],[[-2180,2213,2214]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000050","PCON13CDO":"850","PCON13NM":"Ochil and South Perthshire"},"id":"S14000050","arcs":[[[2215]],[[2216,-2214,-2179,-2198,-2041,2217,2218,2219]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000051","PCON13CDO":"851","PCON13NM":"Orkney and Shetland"},"id":"S14000051","arcs":[[[2220]],[[2221]],[[2222]],[[2223]],[[2224]],[[2225]],[[2226]],[[2227]],[[2228]],[[2229]],[[2230]],[[2231]],[[2232]],[[2233]],[[2234]],[[2235]],[[2236]],[[2237]],[[2238]],[[2239]],[[2240]],[[2241]],[[2242]],[[2243]],[[2244]],[[2245]],[[2246]],[[2247]],[[2248]],[[2249]],[[2250]],[[2251]],[[2252]],[[2253]],[[2254]],[[2255]],[[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]],[[2287]],[[2288]],[[2289]]]},{"type":"Polygon","properties":{"PCON13CD":"S14000052","PCON13CDO":"852","PCON13NM":"Paisley and Renfrewshire North"},"id":"S14000052","arcs":[[-2176,2290,-2189,2291]]},{"type":"Polygon","properties":{"PCON13CD":"S14000053","PCON13CDO":"853","PCON13NM":"Paisley and Renfrewshire South"},"id":"S14000053","arcs":[[-2190,-2291,-2175,-2058,-2212]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000054","PCON13CDO":"854","PCON13NM":"Perth and North Perthshire"},"id":"S14000054","arcs":[[[-2220,2292,-1969,2293,-2195,2294,-1921,-2038,2295]],[[2296]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000055","PCON13CDO":"855","PCON13NM":"Ross, Skye and Lochaber"},"id":"S14000055","arcs":[[[2297]],[[2298]],[[2299]],[[2300]],[[2301]],[[2302]],[[2303]],[[2304]],[[2305]],[[2306]],[[2307]],[[2308]],[[2309]],[[2310]],[[2311]],[[2312]],[[2313]],[[2314]],[[2315]],[[2316]],[[2317]],[[2318]],[[2319]],[[2320]],[[2321]],[[2322]],[[2323]],[[2324]],[[2325]],[[2326]],[[2327]],[[2328]],[[2329]],[[2330]],[[2331]],[[2332]],[[2333]],[[2334]],[[2335]],[[2336]],[[2337]],[[2338]],[[2339]],[[2340]],[[-2191,-2294,-1968,2341,-1975,2342,-2010,2343]]]},{"type":"Polygon","properties":{"PCON13CD":"S14000056","PCON13CDO":"856","PCON13NM":"Rutherglen and Hamilton West"},"id":"S14000056","arcs":[[-2174,-2155,2344,-2166,-2201,-2048]]},{"type":"Polygon","properties":{"PCON13CD":"S14000057","PCON13CDO":"857","PCON13NM":"Stirling"},"id":"S14000057","arcs":[[2345,-1970,-2293,-2219,2346,-2153,-2023,-2046]]},{"type":"MultiPolygon","properties":{"PCON13CD":"S14000058","PCON13CDO":"858","PCON13NM":"West Aberdeenshire and Kincardine"},"id":"S14000058","arcs":[[[-2183,-1906,-1912,2347,-1922,-2295,-2194,-2205]]]},{"type":"Polygon","properties":{"PCON13CD":"S14000059","PCON13CDO":"859","PCON13NM":"West Dunbartonshire"},"id":"S14000059","arcs":[[-1971,-2346,-2045,-2172,2348]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000041","PCON13CDO":"W01","PCON13NM":"Ynys Mon"},"id":"W07000041","arcs":[[[2349]],[[2350]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000042","PCON13CDO":"W02","PCON13NM":"Delyn"},"id":"W07000042","arcs":[[[2351,2352]],[[-817,2353]],[[2354,-833,2355]],[[2356,-819]],[[-821,2357]],[[-823,2358]],[[-825,2359]],[[2360,2361,2362,2363]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000043","PCON13CDO":"W03","PCON13NM":"Alyn and Deeside"},"id":"W07000043","arcs":[[[-2364,2364,-583,2365,2366,2367]],[[2368,-2356,-832,-585,2369,-2353]]]},{"type":"Polygon","properties":{"PCON13CD":"W07000044","PCON13CDO":"W04","PCON13NM":"Wrexham"},"id":"W07000044","arcs":[[-588,-804,2370,-2366]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000045","PCON13CDO":"W05","PCON13NM":"Llanelli"},"id":"W07000045","arcs":[[[2371]],[[2372,2373,2374]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000046","PCON13CDO":"W06","PCON13NM":"Gower"},"id":"W07000046","arcs":[[[-2374,2375,2376,2377,2378,2379]]]},{"type":"Polygon","properties":{"PCON13CD":"W07000047","PCON13CDO":"W07","PCON13NM":"Swansea West"},"id":"W07000047","arcs":[[2380,2381,-2379]]},{"type":"Polygon","properties":{"PCON13CD":"W07000048","PCON13CDO":"W08","PCON13NM":"Swansea East"},"id":"W07000048","arcs":[[-2378,2382,2383,2384,-2381]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000049","PCON13CDO":"W09","PCON13NM":"Aberavon"},"id":"W07000049","arcs":[[[2385,2386,2387,2388,2389]],[[2390,2391,-2384]],[[2392,2393]]]},{"type":"Polygon","properties":{"PCON13CD":"W07000050","PCON13CDO":"W10","PCON13NM":"Cardiff Central"},"id":"W07000050","arcs":[[2394,2395,2396,2397,2398,2399]]},{"type":"Polygon","properties":{"PCON13CD":"W07000051","PCON13CDO":"W11","PCON13NM":"Cardiff North"},"id":"W07000051","arcs":[[2400,2401,2402,2403,2404,-2395]]},{"type":"Polygon","properties":{"PCON13CD":"W07000052","PCON13CDO":"W12","PCON13NM":"Rhondda"},"id":"W07000052","arcs":[[2405,-2387,2406,2407]]},{"type":"Polygon","properties":{"PCON13CD":"W07000053","PCON13CDO":"W13","PCON13NM":"Torfaen"},"id":"W07000053","arcs":[[2408,2409,2410,2411]]},{"type":"Polygon","properties":{"PCON13CD":"W07000054","PCON13CDO":"W14","PCON13NM":"Monmouth"},"id":"W07000054","arcs":[[2412,2413,-1055,-899,2414,2415,2416,2417,-2409]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000055","PCON13CDO":"W15","PCON13NM":"Newport East"},"id":"W07000055","arcs":[[[2418,2419,-2416,2420]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000056","PCON13CDO":"W16","PCON13NM":"Newport West"},"id":"W07000056","arcs":[[[2421,-2410,-2418,2422,2423,-2404,2424]],[[2425,-2419]]]},{"type":"Polygon","properties":{"PCON13CD":"W07000057","PCON13CDO":"W17","PCON13NM":"Arfon"},"id":"W07000057","arcs":[[2426,2427,2428]]},{"type":"Polygon","properties":{"PCON13CD":"W07000058","PCON13CDO":"W18","PCON13NM":"Aberconwy"},"id":"W07000058","arcs":[[-2428,2429,2430,2431]]},{"type":"Polygon","properties":{"PCON13CD":"W07000059","PCON13CDO":"W19","PCON13NM":"Clwyd West"},"id":"W07000059","arcs":[[-2361,-2368,2432,2433,-2431,2434,2435]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000060","PCON13CDO":"W20","PCON13NM":"Vale of Clwyd"},"id":"W07000060","arcs":[[[2436,-2362,-2436]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000061","PCON13CDO":"W21","PCON13NM":"Dwyfor Meirionnydd"},"id":"W07000061","arcs":[[[2437]],[[-2432,-2434,2438,2439,2440,-2429]]]},{"type":"Polygon","properties":{"PCON13CD":"W07000062","PCON13CDO":"W22","PCON13NM":"Clwyd South"},"id":"W07000062","arcs":[[-2439,-2433,-2367,-2371,-809,-1436,2441]]},{"type":"Polygon","properties":{"PCON13CD":"W07000063","PCON13CDO":"W23","PCON13NM":"Montgomeryshire"},"id":"W07000063","arcs":[[-2442,-1435,-1647,-1225,2442,2443,2444,-2440]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000064","PCON13CDO":"W24","PCON13NM":"Ceredigion"},"id":"W07000064","arcs":[[[2445,2446]],[[2447,2448]],[[-2444,2449,2450,2451,2452]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000065","PCON13CDO":"W25","PCON13NM":"Preseli Pembrokeshire"},"id":"W07000065","arcs":[[[2453]],[[2454]],[[2455]],[[-2448,2456,-2446,2457,-2452,2458,2459,2460]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000066","PCON13CDO":"W26","PCON13NM":"Carmarthen West and South Pembrokeshire"},"id":"W07000066","arcs":[[[2461]],[[-2460,2462,2463,2464,2465,2466,2467]]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000067","PCON13CDO":"W27","PCON13NM":"Carmarthen East and Dinefwr"},"id":"W07000067","arcs":[[[2468,-2467]],[[-2465,2469]],[[2470,2471,-2376,-2373,2472,-2463,-2459,-2451]]]},{"type":"Polygon","properties":{"PCON13CD":"W07000068","PCON13CDO":"W28","PCON13NM":"Brecon and Radnorshire"},"id":"W07000068","arcs":[[-1422,-1056,-2414,2473,2474,2475,2476,-2471,-2450,-2443,-1224]]},{"type":"Polygon","properties":{"PCON13CD":"W07000069","PCON13CDO":"W29","PCON13NM":"Neath"},"id":"W07000069","arcs":[[-2391,-2383,-2377,-2472,-2477,2477,-2386,2478]]},{"type":"Polygon","properties":{"PCON13CD":"W07000070","PCON13CDO":"W30","PCON13NM":"Cynon Valley"},"id":"W07000070","arcs":[[-2476,2479,2480,2481,-2407,-2478]]},{"type":"Polygon","properties":{"PCON13CD":"W07000071","PCON13CDO":"W31","PCON13NM":"Merthyr Tydfil and Rhymney"},"id":"W07000071","arcs":[[2482,2483,2484,-2480,-2475]]},{"type":"Polygon","properties":{"PCON13CD":"W07000072","PCON13CDO":"W32","PCON13NM":"Blaenau Gwent"},"id":"W07000072","arcs":[[-2474,-2413,-2412,2485,-2483]]},{"type":"Polygon","properties":{"PCON13CD":"W07000073","PCON13CDO":"W33","PCON13NM":"Bridgend"},"id":"W07000073","arcs":[[-2393,2486,-2389,2487,2488,2489]]},{"type":"Polygon","properties":{"PCON13CD":"W07000074","PCON13CDO":"W34","PCON13NM":"Ogmore"},"id":"W07000074","arcs":[[-2488,-2388,-2406,2490,2491]]},{"type":"Polygon","properties":{"PCON13CD":"W07000075","PCON13CDO":"W35","PCON13NM":"Pontypridd"},"id":"W07000075","arcs":[[-2491,-2408,-2482,2492,-2402,2493,2494]]},{"type":"Polygon","properties":{"PCON13CD":"W07000076","PCON13CDO":"W36","PCON13NM":"Caerphilly"},"id":"W07000076","arcs":[[-2493,-2481,-2485,2495,-2425,-2403]]},{"type":"Polygon","properties":{"PCON13CD":"W07000077","PCON13CDO":"W37","PCON13NM":"Islwyn"},"id":"W07000077","arcs":[[-2496,-2484,-2486,-2411,-2422]]},{"type":"Polygon","properties":{"PCON13CD":"W07000078","PCON13CDO":"W38","PCON13NM":"Vale of Glamorgan"},"id":"W07000078","arcs":[[-2489,-2492,-2495,2496,2497,2498,2499]]},{"type":"Polygon","properties":{"PCON13CD":"W07000079","PCON13CDO":"W39","PCON13NM":"Cardiff West"},"id":"W07000079","arcs":[[-2400,2500,2501,2502,-2497,-2494,-2401]]},{"type":"MultiPolygon","properties":{"PCON13CD":"W07000080","PCON13CDO":"W40","PCON13NM":"Cardiff South and Penarth"},"id":"W07000080","arcs":[[[2503,-2499]],[[2504,-2502]],[[2505,-2398]],[[-2405,-2424,2506,-2396]]]},{"type":"MultiPolygon","id":"N06000013","properties":{"PC_NAME":"NORTH DOWN","Area_sqkm":115.44065937,"PC_ID":"N06000013","OBJECTID":1},"arcs":[[[2507,2508,2509,2510]],[[2511]]]},{"type":"Polygon","id":"N06000017","properties":{"PC_NAME":"UPPER BANN","Area_sqkm":479.69241981,"PC_ID":"N06000017","OBJECTID":2},"arcs":[[2512,2513,2514,2515,2516,2517]]},{"type":"MultiPolygon","id":"N06000005","properties":{"PC_NAME":"EAST ANTRIM","Area_sqkm":593.040484022,"PC_ID":"N06000005","OBJECTID":3},"arcs":[[[2518,2519,2520,2521]]]},{"type":"MultiPolygon","id":"N06000012","properties":{"PC_NAME":"NORTH ANTRIM","Area_sqkm":1386.23579148,"PC_ID":"N06000012","OBJECTID":4},"arcs":[[[-2522,2522,2523,2524,2525,2526,2527]],[[2528]]]},{"type":"MultiPolygon","id":"N06000015","properties":{"PC_NAME":"SOUTH DOWN","Area_sqkm":1249.82080829,"PC_ID":"N06000015","OBJECTID":5},"arcs":[[[2529]],[[2530,2531,-2513,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543],[2544]]]},{"type":"Polygon","id":"N06000010","properties":{"PC_NAME":"MID ULSTER","Area_sqkm":1348.63795321,"PC_ID":"N06000010","OBJECTID":6},"arcs":[[2545,-2516,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,-2524]]},{"type":"Polygon","id":"N06000011","properties":{"PC_NAME":"NEWRY AND ARMAGH","Area_sqkm":1081.5208172,"PC_ID":"N06000011","OBJECTID":7},"arcs":[[-2514,-2532,2559,2560]]},{"type":"Polygon","id":"N06000018","properties":{"PC_NAME":"WEST TYRONE","Area_sqkm":1992.09359947,"PC_ID":"N06000018","OBJECTID":8},"arcs":[[2561,2562,2563,-2548,2564,2565,2566]]},{"type":"Polygon","id":"N06000001","properties":{"PC_NAME":"BELFAST EAST","Area_sqkm":55.2978073781,"PC_ID":"N06000001","OBJECTID":9},"arcs":[[-2510,2567,2568,2569,2570]]},{"type":"Polygon","id":"N06000003","properties":{"PC_NAME":"BELFAST SOUTH","Area_sqkm":44.8302814819,"PC_ID":"N06000003","OBJECTID":10},"arcs":[[-2569,2571,2572,2573,2574]]},{"type":"Polygon","id":"N06000016","properties":{"PC_NAME":"STRANGFORD","Area_sqkm":655.231442132,"PC_ID":"N06000016","OBJECTID":11},"arcs":[[2575,-2544,2576,-2542,2577,-2540,2578,-2572,-2568,-2509]]},{"type":"Polygon","id":"N06000004","properties":{"PC_NAME":"BELFAST WEST","Area_sqkm":45.1479512489,"PC_ID":"N06000004","OBJECTID":12},"arcs":[[-2574,2579,2580,2581]]},{"type":"Polygon","id":"N06000009","properties":{"PC_NAME":"LAGAN VALLEY","Area_sqkm":467.841192005,"PC_ID":"N06000009","OBJECTID":13},"arcs":[[-2573,-2579,-2539,2582,-2537,2583,-2535,2584,-2533,-2518,2585,-2580]]},{"type":"Polygon","id":"N06000014","properties":{"PC_NAME":"SOUTH ANTRIM","Area_sqkm":785.0293353,"PC_ID":"N06000014","OBJECTID":14},"arcs":[[-2521,2586,-2581,-2586,-2517,-2546,-2523]]},{"type":"Polygon","id":"N06000002","properties":{"PC_NAME":"BELFAST NORTH","Area_sqkm":50.3185613822,"PC_ID":"N06000002","OBJECTID":15},"arcs":[[2587,-2570,-2575,-2582,-2587,-2520]]},{"type":"MultiPolygon","id":"N06000006","properties":{"PC_NAME":"EAST LONDONDERRY","Area_sqkm":1275.26908819,"PC_ID":"N06000006","OBJECTID":16},"arcs":[[[2588,-2525,-2559,2589,-2557,2590,-2555,-2554,-2553,-2552,-2551,2591,-2549,-2564,2592,-2562,2593,2594,-2527]]]},{"type":"Polygon","id":"N06000007","properties":{"PC_NAME":"FERMANAGH AND SOUTH TYRONE","Area_sqkm":2506.0113818,"PC_ID":"N06000007","OBJECTID":17},"arcs":[[-2547,-2515,-2561,2595,-2565]]},{"type":"Polygon","id":"N06000008","properties":{"PC_NAME":"FOYLE","Area_sqkm":183.642632361,"PC_ID":"N06000008","OBJECTID":18},"arcs":[[-2594,-2567,2596]]}]}},"arcs":[[[7533,1254],[1,16],[-3,12],[16,6],[-7,2],[-4,10],[5,6],[-35,-2],[-5,8],[3,4],[-3,8],[27,4],[-1,4],[7,10]],[[7534,1342],[7,0],[13,-4],[8,-4]],[[7562,1334],[8,-6],[4,-8],[18,-8],[4,-12],[8,-12],[1,-8],[-3,-12],[4,-4],[-9,-14],[3,-2],[-10,-6]],[[7590,1242],[-23,4],[-8,6],[-12,0],[-11,-2],[-3,4]],[[6394,2520],[5,4]],[[6399,2524],[21,0],[4,4],[-1,8],[6,0],[-5,8],[5,0]],[[6429,2544],[9,-6],[11,4],[8,-4],[12,2],[4,-4],[-9,-4],[8,-6],[5,0]],[[6477,2526],[-11,-8],[11,-6],[12,-6],[7,-10],[-7,-10],[19,-12]],[[6508,2474],[-6,-14],[-12,-7]],[[6490,2453],[-2,-2]],[[6488,2451],[-13,8],[-6,11],[-6,-2],[-19,3],[-3,9],[-10,6],[-17,0]],[[6414,2486],[3,12],[-11,10],[-6,2],[-6,10]],[[6084,3175],[-14,4],[-8,6],[-15,0],[-12,-4],[-10,2],[-15,6],[-9,2],[-7,7],[-18,4]],[[5976,3202],[-21,8],[-23,-2],[-6,2]],[[5926,3210],[12,4],[12,12]],[[5950,3226],[20,-4],[25,2],[0,4],[33,0],[10,2],[2,6],[6,0],[10,12],[8,0],[11,-4],[7,2]],[[6082,3246],[-28,-24],[4,-2],[20,4],[20,-16],[0,-8],[12,-7],[-11,-14],[-15,-4]],[[7050,2853],[1,0]],[[7051,2853],[-7,-2],[-8,-10],[-8,-2],[3,-6],[-5,-2]],[[7026,2831],[-24,0],[-11,-2],[-1,-4],[-22,8],[-15,-4],[-1,3],[-16,1],[-17,-1],[-18,3],[-1,8],[-7,4],[3,8],[5,-2],[2,12],[12,8],[5,10],[-7,4],[-30,6]],[[6883,2893],[2,2],[-4,14],[7,4],[-3,4],[10,2],[4,6],[7,2],[-13,14],[6,11]],[[6899,2952],[9,-1],[8,-6],[43,3],[8,-3],[13,5],[8,-2],[7,-13],[12,-6],[13,-2],[7,-2]],[[7027,2925],[-4,-8],[-6,-2],[-2,-6],[11,-14],[0,-14],[8,-6],[6,-10],[-1,-6],[11,-6]],[[7798,909],[-10,0],[3,8],[10,-4],[-3,-4]],[[7844,1076],[-1,-10],[7,0],[-3,-16],[-6,-2],[0,-6],[-14,0],[-17,-10],[0,-4],[15,0],[6,4],[10,-4],[23,0],[12,-2],[5,-6],[8,6],[3,8],[10,4],[7,-4],[-5,-10],[11,-2],[-5,-14],[5,2],[5,-4],[-3,-6],[13,0],[-3,-12],[6,-2],[6,-9],[13,7],[-4,4],[4,4],[-10,6],[3,6],[10,2],[3,4],[18,-2],[3,16],[5,14],[7,0],[0,-4],[10,0],[3,-4],[9,2],[0,4],[12,0],[9,6],[16,0],[5,-6],[7,0],[7,8]],[[8069,1044],[14,-2],[-5,-16],[-4,-6],[12,0],[-9,-10],[-3,-8],[1,-14],[15,-4],[-6,-17],[5,-12],[7,-4],[13,6],[6,6],[6,-2],[-3,6],[0,10],[-4,0],[-2,9],[-19,-7],[4,8],[-6,1],[0,4],[9,0],[18,8],[8,-2],[-2,4],[8,2],[8,10],[12,0],[-1,-6],[4,0],[-3,-12],[3,-6],[8,-6],[8,0],[-2,-5],[22,0]],[[8191,979],[0,-8],[-8,-12],[-3,-18],[-4,-12]],[[8176,929],[-18,-2],[0,-4],[-13,0],[1,10],[-15,-2],[1,-8],[-8,-6],[2,-4]],[[8126,913],[-11,0],[-3,6],[-3,-6],[-9,2],[0,4],[-13,2],[-9,-6],[-7,-8]],[[8071,907],[-5,8],[-9,0],[3,-8],[-42,2]],[[8018,909],[1,2]],[[8019,911],[-12,-2],[-9,0],[-18,-2],[-10,2],[-15,8],[-6,-2],[5,-10],[-15,2],[-21,-6],[-1,-2]],[[7917,899],[-4,-2],[-14,8],[2,-18],[-23,0],[2,-4],[-16,0],[4,-8],[-3,-11],[-6,-3],[-4,6],[-19,-2],[-26,6]],[[7810,871],[2,2],[-24,6],[-20,-4],[-6,2]],[[7762,877],[-3,6],[5,0],[-1,6],[7,8],[15,0],[3,6],[-6,2],[2,6],[13,-2],[5,2],[-8,6],[-3,-6],[-9,0],[-1,-6],[7,-2],[-1,-4],[-6,-2],[-5,2],[-9,-2],[-4,-6],[1,-8],[-5,-4]],[[7759,879],[-37,0],[-8,2],[-6,-8],[-9,-2],[-11,-8],[-10,-3],[-1,-4],[-10,2],[-3,5],[-17,6]],[[7647,869],[-6,14],[3,14],[8,10],[30,4],[-4,12],[4,4],[-8,2],[1,14],[8,2],[-2,10],[-9,8],[-11,6],[-9,0],[-10,6],[-14,2],[5,11],[-1,10],[5,12],[0,6],[7,0],[14,2],[4,-2],[1,-10],[-4,-4],[13,-2],[6,2],[-5,8],[2,2],[-11,4],[-7,8],[5,2],[0,6],[11,2],[-3,6],[6,8],[12,2],[8,-2],[2,4],[-13,12],[14,2],[6,6],[9,-2],[6,6],[0,4],[28,2],[9,-2],[11,2],[2,-4],[11,0],[6,-6],[10,0],[1,-6],[12,0],[32,12],[2,-2]],[[7096,3000],[3,-8],[16,-2],[2,-12],[17,-10],[18,-6],[13,-2],[2,-4],[8,-1]],[[7175,2955],[13,-10],[-21,-4],[-9,-4],[-7,-8],[-15,-2],[-7,-2],[-5,-18],[3,-8],[-29,-12],[7,-2]],[[7105,2885],[-11,-2],[-20,-6],[3,-2],[-5,-8],[-5,0],[3,-6],[-10,-4],[-8,2],[-2,-6]],[[7027,2925],[9,2],[19,4],[-6,8],[8,4],[-8,5],[-5,16],[-6,4],[5,6],[-6,6],[-4,12],[2,6],[14,0],[13,8],[13,-4],[13,2],[8,-4]],[[8920,1161],[10,4],[-3,2],[12,14],[7,4],[-2,2],[13,2],[1,6],[6,0],[-3,8],[10,6],[4,0],[6,6],[7,-2],[0,4],[7,6],[8,-2],[16,0],[1,4],[11,5],[5,6],[9,2],[8,4],[4,8],[13,-2],[-4,-6],[4,-2],[16,0],[10,-4],[18,12],[4,-4],[14,-2],[3,8],[17,2],[11,6],[10,-4],[2,6],[14,0],[4,8],[14,-6],[11,2],[5,14],[3,-2],[15,0]],[[9241,1276],[5,-6],[14,-6],[4,-6],[-7,-2],[-4,-10],[5,-4],[-1,-6],[7,-2],[3,-9],[5,-4],[-3,-10],[-5,-4],[-8,-2],[8,-8],[6,-2]],[[9270,1195],[-3,-6],[-7,2],[2,6],[-9,0],[-1,-2],[-12,2],[-4,-4],[7,-4],[6,0],[-1,-8],[4,-4],[-7,-4],[-4,4],[-13,4],[1,4],[-17,-2],[-5,-8],[3,-4],[-6,-4],[11,-4],[-4,-2],[7,-8],[-9,-10],[-1,-8],[-8,-4],[4,-6],[-9,-2],[-3,-6],[-22,2],[-4,-2],[-1,6],[-12,0],[-24,0],[-13,-2],[-3,-4],[12,-6],[9,-6],[5,-11],[-4,-8],[10,-6],[-4,-8],[-13,0],[0,-10],[-15,-2],[0,8],[-9,2],[6,4],[-6,2],[-50,-54]],[[9054,1022],[-6,4],[-15,2],[-16,4],[-28,-2],[-4,-4]],[[8985,1026],[-7,4],[-22,4],[-11,12],[-17,2],[-11,-6],[-8,6],[-16,-6],[-6,0]],[[8887,1042],[1,8],[-8,0],[-2,4],[7,2],[-9,4],[0,10]],[[8876,1070],[6,4],[10,14],[16,4],[12,8],[7,7],[-17,6],[-31,0],[-1,18],[-5,2],[18,6],[1,4],[-7,8],[18,2],[6,6],[8,-2],[3,4]],[[6297,3324],[17,0],[12,1]],[[6326,3325],[0,-7],[5,0],[1,-8],[-12,-8],[0,-4],[-6,-10]],[[6314,3288],[-1,2],[-24,-2],[-7,-8],[3,-4],[-9,0],[-3,6],[-11,0],[9,4],[3,8],[-6,-4],[-5,2],[-22,-12]],[[6241,3280],[-14,4],[-4,10],[6,4],[1,6],[-15,6],[6,8],[10,-2],[5,4]],[[6236,3320],[9,5],[8,-4],[5,-7],[10,-4],[18,4],[11,10]],[[7596,1790],[10,-10],[10,-6],[9,4],[8,-6],[18,-16],[-8,-4],[9,-4],[7,-18]],[[7659,1730],[-18,-8],[3,-5],[-5,-4],[-24,2],[6,-26],[-16,-4],[-4,2],[-5,-8],[-10,-8],[-4,4],[-8,-4],[8,-12],[6,-4],[11,-2],[6,-8],[10,0],[14,-8],[-2,-2]],[[7627,1635],[-12,-2],[-6,-2],[-1,-8],[-10,0],[-7,-4],[-12,0],[-7,10],[-9,0],[-10,6],[-9,0],[-11,-4],[-3,-4],[-9,2],[-3,-4],[-10,4],[-8,-6],[-6,2],[-6,-4],[6,-8],[-6,-6],[-18,-2],[-11,6],[-10,-2],[-6,8],[-14,-6],[-5,4],[2,-12],[-3,-4],[-15,10]],[[7408,1609],[-2,6],[-7,4],[-2,8],[15,-2],[8,4],[-9,8],[7,0],[6,6],[11,2],[12,-6],[16,0],[-3,4],[-16,4],[15,8],[-12,6],[8,12],[-1,12],[-8,4],[-8,8]],[[7438,1697],[13,8],[13,-4],[14,-12],[24,-12],[14,4],[0,6],[11,2],[1,4],[18,-6],[6,0],[7,6],[10,-2],[5,4],[-3,4],[15,2],[-13,12],[2,9],[-5,4],[-2,8],[-5,4],[-11,-6],[-13,10],[-7,0],[-13,6],[3,4],[-9,6],[-7,10],[-16,10],[-13,4],[1,8],[-7,6],[2,6],[-12,10],[11,0],[1,4],[12,-4],[1,-6],[9,-2],[7,6],[8,-6],[2,-16],[12,-2],[-2,8],[11,2],[10,-12],[16,-10],[10,-2],[26,12],[1,6]],[[6844,1939],[1,8],[10,14],[4,14],[9,21],[-5,8],[12,8],[-4,4],[9,4],[-3,6],[8,0],[3,8]],[[6888,2034],[9,-4],[19,0],[-1,10],[-5,4],[5,2],[28,2],[15,-6],[1,-4],[12,-6],[5,-6],[10,6],[16,2],[-12,14],[-21,0],[7,10],[20,8],[14,-2],[0,6],[8,2],[-2,8],[9,7],[2,8]],[[7027,2095],[8,-6],[14,-17],[27,-20],[4,-4],[16,-8],[12,-12],[-24,2],[-8,-4],[-26,0],[-12,-6],[2,-6],[18,0],[1,-4],[-8,-4],[7,-2],[-8,-4],[1,-6],[-6,-6],[13,-6],[8,-11],[-3,-4],[9,-2],[1,-6],[6,-4],[-6,-4],[7,-4],[-7,-8],[2,-4],[-5,-6],[6,-4],[19,-2],[12,6],[18,-4],[32,-4],[6,4],[14,0],[12,10],[11,0],[11,4],[6,0],[3,6],[6,2],[7,8]],[[7233,1955],[17,-2],[5,2],[9,-8],[25,2],[6,-6],[-24,-20],[-7,-10],[-9,-10],[13,-6],[2,-8],[19,6],[3,-6],[-6,-6],[-15,-4],[-8,-10],[7,-4],[-7,-10],[-1,-7],[-6,-3],[16,-5],[6,0],[1,-6],[-7,-4],[12,-8],[-2,-4],[5,-14],[-1,-4],[13,-6],[-13,-6],[-9,2],[-6,-4],[-8,2],[-17,8],[-8,0],[-9,4],[-3,-2]],[[7226,1798],[-4,0],[-9,12],[4,10],[-5,4],[-12,2],[-7,6],[-12,-8],[1,-6],[-7,-4],[-3,-10],[-14,8],[-6,6],[3,10],[-10,8],[-34,-2],[1,7],[6,7],[-40,7],[-12,-2],[-10,-4]],[[7056,1849],[-2,4],[5,10],[-8,6],[-17,2],[-5,10],[-10,0],[8,8],[-13,-2],[1,4],[-17,4],[2,4],[-2,12],[-3,0],[-11,12],[-34,-2],[-14,4],[2,4],[-12,2],[-16,-8],[-32,-4],[-8,0],[-8,8],[-14,4],[-4,8]],[[8372,1526],[1,0]],[[8373,1526],[3,-12]],[[8376,1514],[-6,8],[2,4]],[[8430,1546],[8,2],[-1,-6],[11,0],[-6,-10],[11,2],[8,-8],[-20,-2],[8,-8],[-5,-16]],[[8444,1500],[-17,4],[-16,-4],[-13,2],[-3,8],[-16,4],[-6,12]],[[8373,1526],[8,0],[14,4],[1,-2],[18,6],[7,10],[9,2]],[[6867,3335],[-8,6],[9,4],[0,8],[-9,0],[-3,8],[-7,2],[-8,-2],[-2,4],[-13,-2],[-1,8],[-14,2],[-2,6],[-15,6],[-1,10],[13,8],[4,-2]],[[6810,3401],[11,-4],[10,-6],[17,4],[11,-2],[5,2]],[[6864,3395],[18,-4],[4,4],[22,8],[9,4],[7,-4],[14,-2]],[[6938,3401],[-8,-8],[4,-10],[-2,-4],[-15,-12],[13,-2],[12,2],[13,-8],[-3,-4],[-12,2],[-15,-6],[-9,4],[-15,-10],[-1,-4],[-8,2],[-3,-4],[-18,2],[-4,-6]],[[7011,3381],[1,-4],[15,-14]],[[7027,3363],[1,-6],[-6,-6],[8,-4],[-2,-10],[2,-4],[-6,-4],[-13,0],[-7,-4],[12,-6],[-16,-3],[-8,4],[-10,-1],[-17,-9],[-8,0],[-6,-8],[-16,-10],[-12,6],[-11,-6],[1,-8],[-4,-4]],[[6909,3280],[-12,12],[-4,8],[-18,14],[1,7],[7,4],[-2,6],[-11,1],[-3,3]],[[6938,3401],[24,-6],[20,8],[16,-6],[6,-6],[4,-12],[3,2]],[[5183,3897],[-12,-2],[-1,-4],[15,-16],[0,-10],[7,-14],[-2,-4],[5,-8],[10,2],[-3,-6],[9,-2],[-3,-5],[3,-7],[13,-2],[2,-10],[11,-5],[11,2],[6,5],[8,-2],[-3,-7],[-21,-2],[-16,4],[-11,12],[-23,19],[-21,24],[1,4],[-7,16],[-1,12],[4,4],[18,4],[1,-2]],[[5315,4137],[-11,-12],[5,-10],[-3,-12],[-12,-4],[0,-8],[-11,-12],[15,-22],[-3,-7],[12,-8],[1,-6],[-6,-8],[-9,-6],[-5,-10],[12,-14],[-5,-12],[28,4],[3,8],[-12,4],[4,4],[16,6],[9,0],[2,-10],[21,-16],[0,-6],[9,-6]],[[5375,3974],[1,-2]],[[5376,3972],[0,0]],[[5376,3972],[-2,-12],[8,0],[12,-6],[-11,-12],[-9,-2],[0,-9],[-9,-8],[4,-6],[-2,-10],[-12,-4],[-10,-10],[-4,-10],[-12,-6],[-8,-10],[-12,-4],[-10,-10],[-10,-4],[-22,-14],[-8,0],[-14,8],[3,2],[-9,10],[-32,-10],[-12,10],[-5,12],[0,14],[8,20],[-8,2],[-2,-2],[-9,6],[0,6],[10,4],[17,-2],[11,6],[-1,8],[7,19],[7,10],[3,0],[10,12],[-7,-2],[-3,8],[-10,8],[-3,10],[-13,2],[3,4],[0,10],[-3,2]],[[5207,4012],[-6,6],[-4,10],[7,18],[-11,8],[11,8],[12,4],[0,8],[9,5],[12,4],[8,14],[7,4],[-1,8],[9,4],[1,10],[11,8],[14,0],[29,6]],[[8692,1623],[31,0],[12,-8],[-4,-4],[4,-9],[14,-3],[16,2],[16,-2]],[[8781,1599],[6,-5],[-1,-16],[-11,-4],[0,-4],[11,0]],[[8786,1570],[-5,-16],[-8,0],[-1,-6],[-12,2],[-47,-2],[-20,2],[-19,-4]],[[8674,1546],[-2,18],[5,0],[-7,16],[-2,12],[7,4],[3,6],[-2,5],[16,16]],[[7217,1284],[3,10],[5,-4],[10,2],[6,-2],[13,2],[1,4],[24,-2],[1,10],[12,2],[2,4],[10,-2],[-1,-10],[15,2],[16,-4],[8,6],[4,-8],[17,-2],[-1,-6],[5,-4],[-3,-12],[-12,-16],[-11,4],[-18,-2],[-19,0],[-17,4],[-10,0],[1,4],[-60,-26]],[[7218,1238],[-12,-4],[3,8],[-8,4],[10,16],[-11,0],[0,10],[15,2],[11,10],[-9,0]],[[7145,3048],[0,6],[7,10],[-8,6],[-3,5],[11,12],[14,4],[12,0],[-6,6],[12,6],[-11,8],[8,8],[-7,10],[-8,-2],[-12,6]],[[7154,3133],[7,8],[17,2],[1,4],[10,2],[17,12],[7,0],[-2,4],[-12,-2],[-9,8],[0,4],[10,-2],[13,2],[-2,6],[-6,0],[5,6],[11,4],[-3,7],[0,10],[10,4],[7,0],[0,8]],[[7235,3220],[7,0],[9,12],[11,6],[19,2],[11,-2],[24,4],[1,-4],[15,0],[2,6],[16,4],[-2,6],[12,16],[-1,10],[32,10],[17,18]],[[7408,3308],[33,-26],[-19,-10],[4,-2],[41,0],[2,4],[51,-6],[20,-4]],[[7540,3264],[-7,-6],[-15,-6],[4,-8],[-1,-6],[13,-8],[9,-4],[6,-8],[9,-4],[1,-9],[-12,-4],[14,-6],[-10,-4],[-5,-6],[1,-4],[7,-2],[9,2],[13,-8],[-5,-8],[8,-6],[-9,-8],[6,-6],[10,0],[-4,-4]],[[7582,3141],[-49,2],[0,4],[-29,0],[-10,-2],[-26,0],[1,-2],[-30,-4],[-6,-10],[5,-6],[-10,0],[-12,4],[-20,-2],[1,-2],[-23,-2],[2,-16],[20,-4],[-4,-6],[-12,2],[-21,-6],[-7,0],[-4,6],[-14,-6],[-15,-4]],[[7319,3087],[-23,-8],[-20,-9],[-29,-6]],[[7247,3064],[-8,-4],[-8,2],[-4,-8],[-22,2],[-22,-6],[-18,0],[-13,-4],[-7,2]],[[6026,1405],[9,-8],[37,2],[-14,-10],[6,-4],[-3,-8],[14,2],[6,-6],[-2,-12],[-11,0],[-13,-6],[-28,0],[-1,-4],[-7,2],[-8,10],[-3,-2],[-15,6],[2,4],[-7,4],[8,10],[-3,6],[8,-2],[3,4],[-6,6],[2,4],[9,-4],[17,6]],[[6648,3472],[-8,6],[2,4],[-6,4],[3,14],[-18,6],[1,4],[-16,0]],[[6606,3510],[10,8],[14,0],[-2,12],[13,0],[14,12],[14,4],[22,-8]],[[6691,3538],[23,-10],[19,2],[6,-16],[10,-10],[11,2],[24,-4],[6,-6],[7,-4]],[[6797,3492],[-12,-2]],[[6785,3490],[-3,4],[-10,2],[-10,-4],[-9,0],[-10,-6],[-14,2],[-11,-2],[-3,4],[-10,-4],[1,-4],[-27,0],[-4,2],[-7,-4],[-20,-6],[2,-2]],[[6650,3472],[-2,0]],[[8183,1473],[0,-2],[-10,-10],[-12,-4],[0,-6]],[[8161,1451],[4,-8],[5,-2],[-2,-8]],[[8168,1433],[-10,2],[-3,6],[-7,-2],[-8,10],[-12,-2],[-7,-4]],[[8121,1443],[0,4],[-10,0],[-2,4],[9,0]],[[8118,1451],[13,6],[9,12],[23,2],[11,0],[9,2]],[[7804,1582],[5,-4],[16,0]],[[7825,1578],[0,-8],[16,-16],[3,-12],[3,-2]],[[7847,1540],[0,-4],[-6,-2],[-11,-12],[7,-10],[-4,-10],[7,-6]],[[7840,1496],[1,-6],[-5,-8]],[[7836,1482],[-42,-2]],[[7794,1480],[5,6],[1,10],[-27,-2],[-13,2],[1,10],[-7,8],[7,2],[-8,2],[-5,-10],[-13,0],[-1,4],[-10,2],[-23,8],[-11,-2],[-10,-6],[-8,-2],[1,-6],[6,-6],[-2,-8],[2,-6],[10,2]],[[7689,1488],[-3,-4],[11,-4],[-12,-2],[-4,-4],[-11,2]],[[7670,1476],[-15,6],[-8,12],[-16,2],[1,12],[5,14],[4,4],[1,12],[-5,8],[-13,-2],[-5,12],[-12,0],[-28,-10],[-18,0],[-6,-8],[-8,-4]],[[7547,1534],[-13,10],[3,6],[6,4],[6,0],[7,10],[2,-4],[9,4],[3,8],[-5,14],[3,2],[19,2],[20,-4],[9,2],[20,-8],[8,4],[13,0]],[[7657,1584],[14,4],[7,6],[11,0],[2,15],[5,0],[12,-6],[2,6],[10,-6],[-1,-7],[-5,-6],[6,-2],[-3,-4],[5,-8],[10,-2],[10,-4],[11,-2],[14,4],[23,0],[0,4],[14,6]],[[8303,1346],[-2,7],[-13,8],[-8,16],[-9,-2],[0,10],[-6,0],[-10,6],[3,2]],[[8258,1393],[9,2],[11,10],[-6,4],[2,8],[12,-2],[-1,-4],[14,-2]],[[8299,1409],[4,-6],[18,-8],[-5,-2],[7,-4],[12,0],[7,4],[5,-8],[22,2]],[[8369,1387],[-8,-14],[-8,-4],[6,-6],[-5,-2],[-4,-8],[-9,-5],[-18,5],[-3,-3],[-8,2],[-9,-6]],[[7821,2048],[4,4],[-3,6],[3,8],[10,2],[-2,8],[6,2],[2,8],[6,-2],[15,3],[-3,4],[11,3],[3,-3],[20,-4],[5,-5],[9,0],[11,-4],[-10,-10],[6,-10],[-28,-8],[3,-2],[-13,-2]],[[7876,2046],[-17,0],[-6,4],[-13,-10],[1,-12],[-8,-8],[-12,8],[-17,6],[6,4],[-10,8],[6,4],[15,-2]],[[8205,1467],[-3,7],[5,5],[-7,3],[4,6],[-2,6]],[[8202,1494],[12,0],[31,-6],[7,0],[15,6],[7,-2],[1,-12]],[[8275,1480],[-16,-2]],[[8259,1478],[-5,1],[-11,-6],[-15,-4],[0,7],[-14,0],[0,-5],[-9,-4]],[[6586,5268],[7,-10],[-6,0],[-1,10]],[[6580,5295],[18,-2],[-3,-8],[3,-9],[-15,2],[-8,-2],[-3,9],[-12,6],[-12,0],[-9,-4],[-11,2],[-2,6],[13,0],[13,-3],[28,3]],[[6272,5343],[-1,2]],[[6271,5345],[1,-2]],[[6254,5343],[17,-4],[5,10],[7,0],[-2,8],[3,4],[15,2],[33,-6],[18,4],[7,8],[15,2],[10,-10],[8,0],[23,-18],[8,-2],[2,-6],[14,-6],[8,-6],[18,-6],[1,-4],[33,-12],[4,-8],[6,-2],[-1,-6],[6,-9],[15,-12],[7,-2],[2,-8],[11,-4],[18,-4],[11,2],[11,10],[25,-20],[-7,-8],[-11,-2],[18,-10],[8,8],[13,6],[19,-2],[6,-4],[23,-6],[18,-10],[7,-6],[26,-10],[-6,-2],[5,-8],[17,-14],[-11,-1],[-3,-8],[4,-6],[22,-12],[-8,-6],[5,-4],[-3,-8],[6,-6],[18,-2],[-1,-20],[4,-8],[-5,-4],[7,-10],[-7,-6],[2,-2],[15,-6],[-6,-14],[2,-8],[-13,-4],[-3,-7],[-13,-8],[-13,4],[8,-10],[7,4],[6,-20],[19,-22],[14,-2],[17,-12],[0,-10],[-6,-2],[-13,-14],[-2,-14],[5,-13],[7,-10],[14,-12],[18,-12],[-3,-4],[10,-14]],[[6848,4857],[-10,0],[-24,0],[-10,0],[-5,-4],[-20,4],[3,6],[-13,-2],[-14,2],[-35,0],[-9,-4],[-6,6],[-12,2],[-3,2],[-12,2],[-23,-6],[-6,-4],[-29,-6],[9,-24],[5,-6],[-6,-8],[-16,-1],[1,-16],[-7,-3]],[[6606,4797],[-8,2],[-17,0],[-3,-2],[-16,0],[-12,-2],[-1,-6],[11,-13],[6,0],[0,-10],[-15,-2],[5,-8],[16,-2],[3,-4],[-7,-8],[-32,-2],[1,-10],[-8,-4],[-18,4],[-18,6],[-11,0],[-8,2],[-1,8],[-18,-4],[-7,6],[-19,0],[-14,-4],[-19,0],[-8,4],[-1,6],[13,6],[0,10],[16,2],[6,12],[8,2],[-5,7],[-3,12],[-14,2],[-11,14],[-6,2],[8,4],[-11,8],[-8,12],[-25,-4],[-19,-6],[-1,-6],[-16,-2],[-10,4],[-11,0],[-10,6],[6,8],[-8,0],[-28,0],[-10,-2],[2,-6],[-7,-2],[-18,0],[8,20],[4,0],[5,8],[11,8],[16,6],[5,4],[-4,10],[-8,2],[-6,4],[-15,2],[-8,4],[8,9],[2,17],[-15,4],[-1,11],[-6,6],[-21,0],[-17,0],[-9,8],[-23,-2],[-5,14],[-25,0],[-12,4],[-1,6],[-10,10],[-8,2],[-20,10],[-8,0]],[[6062,5004],[-9,4],[16,8],[-5,2],[-1,8],[-9,6],[11,3],[-2,6],[22,-2],[17,8],[1,4],[20,6],[12,6],[18,0],[12,-2],[23,6],[11,6],[10,18],[17,4],[-7,4],[-27,2],[-4,4],[3,10],[-16,14],[-9,4],[4,12],[-8,6],[1,14],[-20,15],[-17,8],[-9,6],[-9,2],[-3,6],[6,10],[-9,10],[-11,2],[-9,10],[7,2],[0,4],[-18,0],[-7,4],[10,10],[16,4],[17,-4],[17,0],[12,2],[14,-6],[13,6],[-15,4],[13,8],[3,4],[10,0],[2,12],[18,11],[15,13],[17,4],[-11,9],[10,6],[12,-2],[7,6],[-2,8],[12,4]],[[6303,5363],[0,28],[7,0],[13,8],[12,0],[18,8]],[[6353,5407],[20,-18],[12,-6],[9,-16],[-9,-2],[-13,8],[-19,-2],[-6,-10],[-14,-2],[-11,2],[-19,2]],[[8236,1496],[-5,10]],[[8231,1506],[3,8],[32,6],[8,8],[4,-4],[12,2]],[[8290,1526],[-4,-6],[7,-6]],[[8293,1514],[-22,-6],[3,-6],[-3,-4],[-24,2],[0,-4],[-11,0]],[[8066,3518],[5,2]],[[8071,3520],[-5,-2]],[[7936,3677],[3,-6],[-13,-6],[-2,-10],[-9,0],[8,-6],[-2,-10],[8,-12],[-8,-10],[15,-4],[3,-10],[13,-2],[5,-6],[9,-4],[-3,-8],[-8,-2]],[[7955,3581],[-4,6],[-10,-8],[-26,4],[-16,0],[-3,-2],[-3,10],[-6,0],[3,6],[-12,0],[-25,-4],[-13,-6],[-24,-2],[-10,-4],[-4,2],[-14,-4],[0,6],[-9,6],[-15,-6],[-23,-6],[-30,-2],[-3,4],[-7,0],[0,6],[-19,6]],[[7682,3593],[-1,2],[13,12],[-3,4],[36,2],[6,4],[23,6],[-6,4],[-9,22],[-14,18],[0,2],[-11,6],[-11,2],[-13,5],[-4,8],[17,4],[-3,7],[26,1],[23,4],[50,0],[14,0],[10,-5],[12,4],[5,-3],[25,-1],[20,-7],[8,2],[10,-6],[6,2],[16,-7],[9,-8]],[[8124,3724],[16,-26],[9,-12],[8,-15],[8,-10],[24,-24],[25,-20],[57,-50],[22,-15],[22,-18],[19,-14],[17,-16],[11,-6],[11,-10],[26,-18],[23,-20],[6,-9],[19,-36],[0,-10],[-35,-24],[4,4],[29,20],[0,10],[-19,12],[-4,0],[-15,8],[-32,10],[-36,6],[-12,-2],[-4,-2],[-25,-4],[-25,-6],[-15,-2],[-4,-2],[-32,2],[-15,4],[-27,12],[-15,10],[-25,17],[-28,14],[-15,10],[-10,2],[-7,12],[-2,6],[-6,2],[-3,10]],[[8069,3524],[5,12],[-12,8],[1,16],[-13,2],[-1,3],[-11,-3],[-15,9]],[[8023,3571],[-10,6],[-10,12],[-17,0],[-19,-4]],[[7967,3585],[-1,6],[-9,4],[-6,6],[-12,2],[0,8],[-16,6],[6,10],[-8,12],[2,10],[-8,6],[9,0],[2,10],[13,6],[-1,6],[7,4],[8,0]],[[7953,3681],[2,-4],[12,-2],[6,4],[13,-2],[4,-6],[19,-4],[4,6],[13,-2],[2,-6],[15,2],[-3,14],[4,2],[0,15],[-3,8],[19,0],[3,4],[-6,16],[12,4],[20,0],[5,4],[9,-14],[21,4]],[[8562,883],[6,6],[17,-4],[9,4],[-7,4],[1,8],[9,0],[1,8],[-13,8],[-1,6],[4,4],[-6,4],[-4,10],[-3,16],[-6,10],[1,12],[-17,2],[-8,6],[-4,-3],[-15,2],[-2,8],[-7,0],[-10,10],[-25,-2],[-5,10],[21,2],[1,-2],[17,0],[0,8],[-8,10],[4,4],[-3,4],[6,4],[-8,2],[4,10],[9,2],[4,-6],[1,-10],[6,0],[9,-6],[-3,-4],[13,-10],[11,-2],[2,6],[12,2],[-2,4],[5,6],[29,2],[5,-10],[11,8],[1,8],[22,4],[-6,8],[8,4],[-1,10],[3,2],[-1,12],[4,8],[13,6],[20,2],[1,7]],[[8687,1107],[10,-2],[-6,-7],[21,-10],[3,2],[14,-6],[22,-2],[8,-6],[-5,-6],[1,-8],[9,-4],[16,2],[11,-2],[3,-4],[28,-2],[5,-10],[20,-4],[8,-4],[15,6],[10,0],[7,2]],[[8985,1026],[-7,-2],[-6,-6],[4,-6],[-4,-4],[26,0],[5,2],[5,-4],[1,-12],[-22,-2],[-12,-4],[-20,-4],[-17,2],[-17,-2],[-15,4],[-11,8],[-14,2],[-28,-4],[0,-4],[-7,-2],[-8,2],[9,-9],[-1,-10],[-14,-8],[-1,-4],[-13,-4],[1,-6],[10,-6],[2,-10],[-9,4],[-8,-6],[-4,-8],[-5,-2],[1,-10],[-3,-6],[3,-8],[-8,-2],[-4,2],[-5,-8]],[[8789,889],[-27,-6],[-54,-4],[-56,-15],[-11,-6],[-9,-8]],[[8632,850],[-23,8],[-15,0],[0,3],[-15,0],[-2,-1],[-18,5]],[[8559,865],[10,4],[-12,4],[9,6],[-4,4]],[[8470,1433],[-18,6],[-21,0],[-25,4],[7,20]],[[8413,1463],[7,4],[17,-6],[21,-2],[9,2],[-2,4],[9,2],[2,-4],[9,6]],[[8485,1469],[13,-2],[11,4],[5,-2],[-8,-10],[2,-6],[-7,-4]],[[8501,1449],[0,-4],[-10,-2],[-1,-4],[-11,-4],[-9,-2]],[[5413,3216],[5,-7],[1,-11],[11,-13]],[[5430,3185],[-10,-4],[2,-4],[-13,6],[-12,0],[-16,-4],[-17,-2]],[[5364,3177],[-6,6],[-3,10],[-12,9],[-2,10]],[[5341,3212],[-1,6],[11,8],[10,2],[13,-4],[8,-6],[14,0],[7,-2],[10,0]],[[6369,2335],[0,10],[6,10],[-2,6]],[[6373,2361],[8,0],[26,4],[12,8],[-4,2],[10,6]],[[6425,2381],[8,-6],[15,0],[3,-4],[18,0],[15,-6]],[[6484,2365],[-7,-8],[3,-2],[-7,-4]],[[6473,2351],[-10,-3],[-14,1],[-25,-4]],[[6424,2345],[-11,0],[-5,-5],[2,-16],[-11,-4]],[[6399,2320],[-5,-2],[-10,6],[-3,6],[-5,-2],[-7,7]],[[6518,2405],[-11,8],[-7,14],[5,2],[-9,4],[3,16]],[[6499,2449],[22,-12],[3,2],[8,-6],[13,-6],[3,2],[19,-4],[10,-4],[16,0],[12,-8],[-15,-8]],[[6590,2405],[-4,0]],[[6586,2405],[-9,0],[-29,-4]],[[6548,2401],[-15,0],[-15,4]],[[6484,2365],[11,-2],[10,6],[16,-6]],[[6521,2363],[-4,-8],[17,-2],[-1,-4],[12,-4],[-8,-4],[7,-1],[-4,-4],[13,-4]],[[6553,2332],[-8,-10],[-9,-8],[-6,0]],[[6530,2314],[-8,10],[0,9],[-6,-1],[-12,1],[-10,-3],[-6,5],[-11,-5],[2,7],[-8,3],[2,11]],[[6586,2405],[-6,-6],[17,-2],[9,0],[14,-2],[-7,-12],[4,-2],[0,-14]],[[6617,2367],[-27,12],[-9,2],[2,6],[-16,0],[-17,-20],[-11,-4],[-16,4]],[[6523,2367],[8,8],[-1,6],[-17,-2],[3,12],[7,4],[25,6]],[[6425,2381],[8,0],[12,14],[-24,6],[1,4]],[[6422,2405],[2,0]],[[6424,2405],[35,-8],[8,-4],[11,4],[2,14],[16,-4],[6,-6],[16,4]],[[6523,2367],[-2,-4]],[[6424,2345],[14,-8],[-11,-11],[2,-6],[-5,-6],[34,6],[7,4],[-2,-8],[6,-4]],[[6469,2312],[-5,-8],[-16,-10],[-18,4],[-5,-4],[-7,2],[-17,-2],[-5,-6],[-9,0],[-14,6],[-8,12],[-12,2],[13,4],[3,-2],[8,4],[10,0],[12,6]],[[6464,2439],[6,4],[12,2],[6,6]],[[6490,2453],[9,-4]],[[6424,2405],[-2,6],[4,2],[-4,8],[10,2],[4,4],[17,-2],[0,10],[-3,2],[14,2]],[[6530,2314],[-8,-2],[-8,2],[-2,-4]],[[6512,2310],[-14,-6],[-3,6],[-10,-2],[-13,0],[-3,4]],[[6617,2367],[-4,-4],[8,-6],[-6,-6]],[[6615,2351],[-19,0],[-19,6],[-4,-2],[-8,-15],[-6,-7],[-6,-1]],[[6222,4177],[8,5],[3,8],[-7,16],[4,12],[-6,14],[-6,2],[2,10],[-9,4],[-15,-4],[-12,10],[1,8],[-36,12],[-15,8],[-8,8],[-33,11],[-4,16],[-15,18],[13,4],[5,6],[17,6],[-5,12],[-9,6],[-13,-2],[-19,6],[-7,8],[-6,0],[-6,14],[11,2],[3,4],[-1,10],[4,0],[12,9]],[[6073,4420],[7,-3],[12,3],[18,-3],[8,-4],[12,0],[7,-10],[13,6],[16,2],[7,-4],[18,-6],[8,0],[2,-10],[6,2],[33,-2],[10,0],[19,-6],[13,2],[22,4],[19,-2],[3,-4],[14,-2],[12,0],[28,-4],[16,4],[12,-12],[7,2],[21,-4],[3,8],[18,0],[9,6],[30,6],[14,8],[17,4],[29,4],[14,-14],[3,-6],[15,-6],[-4,-6],[10,-4],[15,2],[4,4],[10,-2],[11,2],[0,-4],[12,0],[0,-2],[22,4],[22,-2],[-2,6],[8,12],[-16,0],[2,8],[7,4],[6,-2],[31,6],[2,4],[10,2]],[[6738,4411],[30,13],[4,-4],[17,-7],[4,2],[10,-14]],[[6803,4401],[3,-8],[-20,0],[1,-12],[7,-2],[6,-8],[-10,-8],[8,-6],[-22,0],[-15,2],[-2,-14],[6,0],[-7,-4],[-7,-14],[1,-4],[-18,-2],[-4,3],[-15,-4],[-24,1],[3,-29],[-15,2],[-5,-2],[-9,-10],[-1,-8],[7,-6],[6,0],[-8,-12],[6,-2],[2,-6]],[[6677,4248],[-26,4],[-3,-10],[-6,-2],[-10,2],[-17,-2],[-8,4],[-10,0],[3,-6],[1,-18],[-8,0],[-9,-19],[-28,9],[-5,8],[-11,4],[-9,-4],[-9,0],[-1,-20],[-8,0],[-10,-4],[-15,-9],[-33,-11],[-41,-3],[-7,7],[-8,2],[-10,5],[-17,4],[-29,3],[1,8],[-15,-2],[-26,-12],[-35,-6],[-4,1],[-22,-3],[-9,-4],[-11,3]],[[5846,3530],[8,2],[4,8],[25,2],[15,8],[9,0],[17,4],[4,6],[10,0]],[[5938,3560],[19,-12],[-5,-4],[3,-6],[9,-8],[-3,-2],[4,-12]],[[5965,3516],[-14,-12],[-12,-4],[-1,4],[-26,10],[-12,-10],[3,-4],[-24,-2],[-11,2]],[[5868,3500],[-7,10],[-8,0],[-2,8],[-7,4],[2,8]],[[6158,3341],[23,2],[12,-10],[14,-1]],[[6207,3332],[13,-3],[2,-2]],[[6222,3327],[-3,-6],[-22,2],[3,-15],[-23,-8],[-28,-6]],[[6149,3294],[-4,2],[-13,0],[-2,-6],[-5,16],[6,6],[-6,2],[-4,-8],[-14,4],[-1,6]],[[6106,3316],[19,5],[14,0],[10,11],[-17,-4],[-3,13],[8,4],[11,0],[10,-4]],[[5422,3663],[20,-12]],[[5442,3651],[-6,0],[-17,-6],[-12,2],[0,-6],[9,-4],[-11,-4],[7,-10],[-4,-2],[1,-6],[7,-4],[-1,-10]],[[5415,3601],[16,-6]],[[5431,3595],[-21,-2],[-10,2],[-8,6],[-10,0],[-11,-6]],[[5371,3595],[2,28],[6,16],[1,22]],[[5380,3661],[15,4],[3,2],[24,-4]],[[5371,3556],[-2,17],[3,10],[-1,12]],[[5431,3595],[-1,-4],[11,-18],[-15,0],[-6,-6],[9,-13],[-31,0],[-4,6],[-23,-4]],[[6558,4583],[-6,4],[-21,4],[-4,4],[11,10],[14,0],[2,10],[-5,2],[-3,10],[10,2],[-2,6],[12,8],[-1,4],[27,8]],[[6592,4655],[11,-4],[22,2],[21,-6],[5,-8],[13,0],[7,4],[23,-8]],[[6694,4635],[18,-4],[-2,-4],[15,-2],[7,-4],[-6,-12],[6,2],[15,-6],[13,4],[5,-12],[16,-4],[7,8],[12,0]],[[6800,4601],[11,-14],[-2,-25]],[[6809,4562],[-20,-4],[-4,13],[-10,10],[-12,-4],[-16,-10],[-21,-8],[-4,14],[-10,-3],[-17,9],[3,8],[-14,-2],[-1,-4],[-7,2]],[[6676,4583],[-1,4],[-22,-2],[-15,10],[-13,-2],[-10,-8],[-7,0],[-13,4],[-9,-2],[-3,-6],[-11,4],[-14,-2]],[[6738,4730],[3,0],[-1,16],[-4,0],[-2,14],[-9,4],[24,8]],[[6749,4772],[8,-2],[7,4],[4,-4],[14,2],[3,4],[-2,10],[17,3]],[[6800,4789],[2,2],[21,0],[15,2],[12,-1],[16,-6],[3,-4],[-2,-12],[9,-14],[11,-8],[8,-2],[0,-4],[8,-6]],[[6903,4736],[-6,2],[-12,-8],[-12,0],[5,-12],[-5,0],[-16,-6],[-1,8],[-21,-2],[-7,8],[-3,-4],[-17,-4]],[[6808,4718],[-16,2],[-2,6],[-6,0],[-14,2],[-12,0],[-20,2]],[[7582,812],[0,2]],[[7582,814],[4,4],[-7,2],[2,4],[-8,2]],[[7573,826],[4,2],[4,14],[16,0],[-1,6],[5,4],[0,6],[15,-2],[8,2],[9,5],[11,-2],[3,8]],[[7759,879],[3,-2],[-9,-4],[4,-8],[10,2],[4,-7],[7,0],[7,-10],[-16,0],[-21,-4],[-6,0],[-16,-4],[-12,0],[-13,-4],[-23,0],[-3,-2],[-24,-4],[-19,-2],[-34,-10],[-16,-8]],[[7810,871],[-2,-15],[-4,-4]],[[7804,852],[-19,0],[-3,6],[-13,3],[-1,6],[-11,-2],[-4,10],[9,2]],[[7075,3131],[8,2],[19,-8],[12,0],[10,6],[11,-4],[16,0],[3,6]],[[7145,3048],[-2,-2],[8,-6],[1,-8],[7,-10],[-4,-6],[-43,-4],[-10,-12],[-6,0]],[[6899,2952],[-4,8]],[[6895,2960],[4,16],[6,0],[5,10],[-2,10],[18,-4],[7,0],[6,-4],[13,4],[9,-4],[4,12],[11,8],[7,0],[7,6],[-5,8],[8,2],[-1,6],[10,2],[-14,12],[-7,-2],[-6,6],[-9,4]],[[6966,3052],[-5,12],[7,0],[13,9],[8,-3],[18,5],[6,-7],[14,2],[0,-4],[9,4],[-1,11],[-7,4]],[[7028,3085],[14,4],[13,0],[0,6],[-13,12],[-7,12],[13,2],[-11,10],[16,4],[13,-4],[9,0]],[[5931,3411],[22,10],[3,8],[-3,4],[11,4],[12,-10],[0,-6],[5,-4],[19,2],[4,6],[18,0]],[[6022,3425],[4,-14],[6,0],[5,-6],[-5,-12]],[[6032,3393],[-8,-2],[3,-20]],[[6027,3371],[-21,-2],[-4,4],[-15,-4],[-7,8],[-8,0],[0,-4],[-10,2],[-14,-2]],[[5948,3373],[4,0],[-3,12],[2,6],[6,4],[-12,10],[-14,6]],[[6045,3329],[-29,4],[-8,6],[-16,0],[-11,4],[-15,0],[-4,-6],[-10,-5]],[[5952,3332],[-37,5],[3,4],[1,14],[24,12],[-3,6],[8,0]],[[6027,3371],[12,-4],[5,-6],[-3,-8],[-7,0],[23,-8],[4,-10]],[[6061,3335],[-10,4],[-5,-2],[-1,-8]],[[5785,3391],[5,0],[5,8],[21,6],[12,-6],[7,-8],[14,4],[6,8],[15,4],[2,2],[23,12]],[[5895,3421],[31,-10],[5,0]],[[5952,3332],[-2,-3]],[[5950,3329],[-17,3],[-1,-9],[-15,-3],[1,5],[-21,2],[-4,6],[-12,-4],[-6,-4]],[[5875,3325],[-6,7],[-16,7],[-6,0],[3,6],[-11,4]],[[5839,3349],[9,6],[0,6],[-8,2],[0,8],[-16,12],[-26,4],[-15,0],[2,4]],[[5417,3250],[-14,16],[-5,-2],[-12,10],[3,2],[-5,8]],[[5384,3284],[9,4],[10,12],[9,0],[7,-8],[9,8],[8,-2],[8,4],[17,-2],[10,-2],[-7,-22]],[[5464,3276],[-13,-4],[2,-10],[-4,-8]],[[5449,3254],[-32,-4]],[[8240,2726],[7,4],[24,4]],[[8271,2734],[-4,-4],[-24,-4],[-3,0]],[[8118,2913],[6,-6],[24,-10],[26,-20],[-1,14],[7,4],[12,0],[11,-8],[7,4],[-14,22],[11,0],[3,8],[5,4],[18,0],[-1,4],[9,0],[-2,16],[10,9],[18,-2],[-9,12],[13,0],[2,-6],[12,1],[1,-4],[20,3],[11,12],[16,-4],[7,-4],[7,2],[32,-1],[-1,-3],[15,0],[-1,6],[14,0],[1,-6],[35,8],[-9,12],[0,12],[-5,2],[4,4],[15,4],[16,8],[24,-10],[12,2],[13,0],[3,-4],[4,6],[-13,8],[19,0],[33,-4],[31,4],[-2,4],[8,2],[-4,6],[-24,-6],[4,8],[18,2],[10,6],[3,8],[14,2],[8,-4],[9,4],[7,-4]],[[8640,3040],[8,-20],[-4,-14],[-3,-20],[1,-10],[-3,-12],[3,-12],[-11,-9],[-2,-12],[-16,2],[-21,-8],[-21,-12],[-17,-12],[-13,-6],[-14,-4],[-8,-6],[-21,-4],[-7,-6],[-35,-16],[-19,-14],[-28,-23],[-7,-4],[-18,-16],[-3,-12],[-24,-2],[-26,8],[-14,10],[11,-10],[16,-6],[17,-4],[13,2],[-1,-4],[-16,-8],[0,-2],[-16,-12],[-25,-8],[-37,-16],[-40,-10]],[[8239,2728],[-24,2],[-8,8],[-19,6],[-3,-2],[-8,4],[-8,0],[-2,6],[-6,2],[4,4],[-10,12],[-10,0],[-5,6],[-12,-4],[-28,10],[-25,2],[-6,2]],[[8069,2786],[22,24],[8,4],[13,15],[3,8],[9,10],[-10,6],[-14,16],[-10,8],[7,12],[-2,6],[8,20],[15,-2]],[[7034,2397],[-13,4],[-66,24],[-10,2]],[[6945,2427],[-1,4],[-44,14],[-37,10]],[[6863,2455],[-19,5],[-4,12],[-10,6],[-7,0],[-16,6],[4,4],[3,12],[-13,8],[3,8],[-6,2],[23,8],[4,10],[-9,12]],[[6816,2548],[14,-2],[28,8],[6,4],[8,-8],[16,8],[3,-6],[16,-6],[11,-2],[8,6],[-1,6],[14,8],[5,-6],[9,-4],[10,-2],[24,4],[24,8],[6,4],[-8,4],[27,6],[14,5],[14,3],[10,5]],[[7074,2591],[-3,-8],[4,-5],[7,-2],[-6,-6],[15,-4],[6,-4],[5,-12],[-4,-4],[-8,8],[-3,-6],[9,-10],[9,8],[11,-2],[1,-6],[14,-6],[-5,0],[4,-6],[-9,-2],[-9,0],[-15,-4],[18,-2],[-21,-6],[5,-10],[-7,-2]],[[7092,2500],[-12,-2],[-3,-4],[5,-6],[-16,-8],[-7,-6],[2,-6],[15,-4],[11,0],[-3,-8],[-16,-1],[-12,-4],[-10,2],[-11,5],[-11,-7],[-4,-8],[7,-12],[-3,-6],[12,-12],[4,-8],[-6,-8]],[[6574,796],[3,-2]],[[6577,794],[4,0],[8,-8],[12,0],[7,-2],[7,-8],[17,0],[1,2]],[[6633,778],[1,0]],[[6634,778],[-7,-8],[-20,4],[-35,4],[-25,0],[-32,-4]],[[6515,774],[4,8],[-12,6],[8,4],[4,8],[-16,4],[-5,4],[9,8]],[[6507,816],[9,2],[13,8],[8,-12],[9,-2],[14,0],[3,-14],[9,-2]],[[6572,796],[2,0]],[[6481,768],[-7,6],[2,6],[-15,4],[7,2],[0,6],[-13,0],[-22,14]],[[6433,806],[3,4],[11,0],[9,8],[2,6],[5,2]],[[6463,826],[5,0],[17,6],[11,-8],[7,-2],[4,-6]],[[6515,774],[-20,-2],[-14,-4]],[[7536,1403],[1,-4],[9,2],[8,4],[7,-2],[5,8],[-8,4],[20,6],[17,-2],[-3,-4],[22,-2],[2,-8],[-9,-16],[-6,-2],[7,-6],[-8,-18]],[[7600,1363],[-6,-6],[-15,-13],[-1,-2],[-16,-8]],[[7534,1342],[-10,0],[1,4],[-12,7],[-24,0],[-27,0],[-13,3],[-24,7]],[[7425,1363],[13,14],[15,-4],[5,8],[12,-4],[6,4],[2,8],[17,-6],[12,2],[-4,10],[10,4],[23,4]],[[6596,3560],[10,4],[12,-2],[14,11],[-8,8],[-4,-2],[-12,16]],[[6608,3595],[13,-2],[19,8],[-12,6],[1,8],[-6,2],[23,12],[15,-4],[3,10]],[[6664,3635],[14,-4],[2,-4],[-10,-10],[-1,-18],[-3,-6],[1,-12],[3,-2],[-7,-8]],[[6663,3571],[0,-5],[-8,-8],[-15,-8],[-14,0],[0,2],[-14,0],[-14,6],[-2,2]],[[6663,3571],[4,-4],[-5,-5],[11,0],[18,4],[9,-6],[31,0]],[[6731,3560],[-1,-6],[-10,-6]],[[6720,3548],[-11,0],[-18,-10]],[[6606,3510],[-9,4],[1,6],[-6,6],[-7,2]],[[6585,3528],[-2,8],[-6,0],[-8,10],[-18,-2],[-12,-6],[-14,-4],[-10,0],[-7,12],[-1,12]],[[6507,3558],[10,7],[12,0],[8,-5],[-10,-4],[6,-4],[5,4],[14,-2],[6,4],[7,-4],[14,10],[-5,0],[5,9],[14,1],[-3,-7],[6,-7]],[[6507,3558],[-21,2]],[[6486,3560],[0,4],[28,11],[-10,4],[-5,8],[26,4],[4,-2],[4,6],[23,2],[21,6],[22,-4],[4,4],[5,-8]],[[8810,1804],[-13,6],[2,8],[-12,0],[-10,6],[-22,6],[2,2],[-13,10],[-7,10],[-8,5],[-7,16],[-11,2],[-2,12],[10,12],[-11,4],[-5,14],[10,0],[0,10],[3,2],[-6,6],[2,4],[-8,12],[6,4],[16,-2],[-7,6],[3,12],[-2,5],[-17,0],[-18,-5],[-5,4]],[[8680,1975],[-1,5],[-8,6],[10,10],[14,4]],[[8695,2000],[13,0],[27,6],[5,-4],[10,4],[-4,4],[16,0],[15,-8],[0,-6],[14,-6],[10,6],[7,-4],[7,4],[12,-2],[9,10],[11,2]],[[8847,2006],[8,-2],[7,4],[20,2],[6,4],[13,-4],[12,6],[2,4],[17,-4],[13,4],[13,-2],[5,2],[6,-6],[12,0],[10,-8],[-9,-4],[7,-12],[5,-4],[-15,-2],[-4,-4],[2,-5],[13,-3],[-5,-4],[7,-3],[22,6],[5,-4],[0,-10],[-4,-6],[11,-4],[0,-6],[7,0],[6,-8],[-1,-6],[10,-4],[0,-10],[9,-2]],[[9057,1911],[-4,-6],[-7,2],[-4,-6],[-16,-2],[-9,-12],[0,-8],[-16,-22],[-1,-4],[-22,0],[0,-4]],[[8978,1849],[-8,2],[-14,8],[-30,-2],[-2,2],[-8,-10],[-10,-5],[3,-3],[-7,-9],[-5,2],[-7,-4],[2,-16],[-2,-8],[13,-6],[5,-8],[-2,-2],[-14,-2],[-1,6],[-6,4],[-12,-2],[-16,8],[-8,14],[-6,-2],[-18,4],[-15,-16]],[[8091,1514],[-4,0]],[[8087,1514],[-18,2]],[[8069,1516],[-10,2],[-12,-4],[-15,-2],[-4,4],[10,0],[-3,6]],[[8035,1522],[5,2],[-9,4],[0,8],[-7,0],[4,6],[10,2],[12,-4],[5,4],[-8,4],[8,10],[8,-2]],[[8063,1556],[3,-8],[6,4],[11,0]],[[8083,1552],[17,-16]],[[8100,1536],[11,-6],[-15,0],[-13,-2],[4,-4],[4,-10]],[[8001,1562],[11,4],[23,-2],[-3,6],[-5,2],[23,6]],[[8050,1578],[18,-14],[-5,-8]],[[8035,1522],[-20,-6]],[[8015,1516],[-5,0],[0,12],[-4,4],[-22,6]],[[7984,1538],[6,10],[7,2],[-5,8],[9,4]],[[7954,1480],[7,4],[9,2],[8,-4],[7,2],[22,-4],[13,2],[-3,4]],[[8017,1486],[20,4],[7,-8],[17,0],[2,6]],[[8063,1488],[8,-2],[0,-10]],[[8071,1476],[-5,-2],[-4,-11],[-12,-2],[-10,10],[-14,5],[-16,-11],[-13,-6],[0,-4]],[[7997,1455],[-11,-10],[-6,4],[-32,-2],[-10,-6],[-5,0]],[[7933,1441],[-12,6],[3,2],[12,4],[19,4],[2,10],[10,-2],[0,4],[-14,4],[1,7]],[[8668,1667],[5,-4],[10,-2],[19,-20],[-12,-6],[3,-4],[-5,-4],[4,-4]],[[8674,1546],[-38,2],[-29,-2]],[[8607,1546],[-22,-2],[-8,14],[-10,10],[-2,10],[-15,0],[10,6],[-6,6],[-33,17],[-11,-5],[-15,-1]],[[8495,1601],[-15,0],[-12,-5],[-12,3],[-17,0]],[[8439,1599],[-9,-3]],[[8430,1596],[-15,13],[1,4],[-9,6],[4,6],[10,0],[8,6],[-6,2],[-7,12],[-1,6],[11,-2],[10,8],[-3,2],[3,16],[10,2],[-4,12],[11,-2],[4,10]],[[8457,1697],[16,4],[-12,18],[19,13],[30,2],[10,4],[6,-2],[8,4]],[[8534,1740],[19,2],[10,6],[29,2],[0,-10],[5,-2],[-3,-4],[13,-4],[22,0],[8,-2],[-3,-13],[4,-8],[1,-12],[-13,-10],[7,-16],[6,-6],[13,-4],[16,8]],[[5533,1094],[-16,6],[-7,10],[-9,-3],[-4,3],[-9,-3]],[[5488,1107],[-10,8],[-12,2],[-12,10],[-8,10],[-15,2],[-9,14],[11,8],[-6,2],[0,8],[8,0],[-1,10],[-10,-2],[0,4],[-7,8],[-11,2],[-11,-2],[1,-6],[-4,-4],[-8,2],[-12,10],[4,8],[18,2],[10,8],[11,19],[10,4],[15,-1]],[[5440,1233],[-1,-3],[17,-3],[16,2],[2,1],[24,-5],[12,-6],[11,-10],[16,2],[20,2],[25,-8],[-6,-16],[55,-18],[-3,-10],[2,-6],[-9,-4],[7,-6],[-1,-10],[-13,0],[-20,6],[4,-12]],[[5598,1129],[-24,-4],[-4,0],[-8,-23],[-19,4],[-10,-12]],[[5489,1106],[-2,-4],[-10,-2],[0,-6],[19,-6]],[[5496,1088],[-7,-4]],[[5489,1084],[-10,0],[-11,-6],[-2,-4],[-10,0],[-13,-6],[-5,6],[-7,0],[-3,6],[-24,0],[-5,-4],[-3,8],[6,0],[-18,4],[-2,4],[-19,0],[-12,4],[-12,0],[0,-4],[-10,2],[-2,4],[-18,-2],[-16,2],[-15,11],[3,4],[-9,2],[8,2],[0,4],[9,0],[0,10],[-11,0],[-14,-4],[0,4],[-13,0],[-11,2],[-4,6],[-14,-8],[-9,-2],[-14,-12],[-13,4],[-5,-2],[-3,-8],[-10,-2],[-15,8],[-11,-8],[10,-9],[7,-2],[0,-4],[9,-6],[-19,0],[1,4],[-18,6],[-16,0],[-8,-4],[-27,-2],[-1,-6],[8,-4],[-1,-10],[-7,2],[-16,-4],[-15,6],[-5,-6],[-18,-12]],[[5026,1058],[-8,2],[-12,0],[-9,-4],[-17,-2],[-19,8],[-21,-2],[-13,-6],[0,-8],[-8,-10],[-49,0],[-24,2]],[[4846,1038],[-11,6],[4,10],[8,6],[4,6],[-2,12],[6,4],[-18,0],[-11,6],[-13,-4],[-14,2],[2,4],[-13,2],[-2,4],[-13,2],[-12,8],[-25,-1],[-4,2],[-16,6],[-12,6],[-15,10],[-13,0],[-32,12],[-20,16],[2,12],[-3,2],[-4,22],[15,-2],[6,4],[11,-2],[13,-4],[10,0],[24,4],[11,-2],[13,2],[8,4],[-8,8],[6,8],[-7,21],[12,10]],[[4733,1244],[20,-2],[6,-2],[37,-4],[23,0],[11,-7],[32,7],[7,6],[35,2],[39,-10],[6,2],[21,-9],[4,-6],[20,0],[8,-2],[8,-10],[17,-8],[14,-4],[34,2],[12,-2],[15,2],[16,-2],[8,-2],[11,2],[14,0],[9,-2],[19,8],[6,0],[33,6],[13,6],[12,2],[9,-4],[16,4],[7,4],[30,2],[11,-2],[13,0],[23,-6],[18,2],[26,13],[8,2],[-7,-21],[-6,-4],[-7,2],[-13,-8],[-3,-6],[3,-6],[11,-8],[7,-2],[7,2],[3,10],[16,-2],[7,-6],[0,-4],[13,0],[-2,-8],[-5,0],[-2,-8],[6,-2],[-10,-8],[10,-16],[13,0],[13,-14],[7,-6],[13,-2],[11,-9]],[[7773,3478],[31,-4],[-8,-4],[-12,2],[-13,4],[2,2]],[[7479,3490],[7,0]],[[7486,3490],[-7,0]],[[7408,3308],[3,6],[-17,4],[6,15],[34,2],[10,0],[5,4],[-7,6],[0,10],[5,10],[-6,2],[3,14],[10,16]],[[7454,3397],[0,8],[21,26],[-78,19],[-41,0]],[[7356,3450],[-1,14],[43,4],[57,14],[20,2],[7,-8]],[[7482,3476],[10,-2]],[[7492,3474],[27,16],[20,0],[17,-8],[14,2],[20,6],[25,0],[19,-4],[-1,-8],[11,-16],[-7,-14],[-17,-13],[0,-14],[4,-6],[9,-4],[-8,-8],[-15,2],[-13,-10],[-1,-6],[7,-6],[-1,-4],[-12,-6],[-3,-10],[3,-8],[6,-6],[-4,-12],[5,-8],[-6,-15],[-8,-8],[-15,-2],[-7,-10],[4,-8],[-12,-2],[0,-12],[-13,-8]],[[7970,3359],[0,-4],[-12,4],[-37,2],[-19,2],[-9,10],[-9,-4],[-12,-10],[-14,-4],[0,-6],[-9,-2],[-14,0]],[[7835,3347],[-10,-4],[-1,8],[-11,0],[-19,-2],[-12,-4],[-16,0],[2,6],[-9,2],[-6,8],[-15,4],[1,4],[-8,0],[3,10],[-4,10],[6,4],[-14,4],[-23,12],[-25,4],[-11,0],[1,-6],[-11,0],[1,-8],[-8,-10],[2,-12],[-1,-20],[-54,-2]],[[7593,3355],[-3,6],[2,10],[13,8],[-1,6],[-6,4],[11,14],[11,-2],[12,2],[4,8],[-9,6],[-4,6],[0,10],[3,4],[8,4],[9,9],[6,16],[-10,14],[1,4],[34,6],[18,6],[28,4],[14,-12],[20,-10],[9,-2],[10,-6],[9,-2],[27,0],[13,2],[15,8]],[[7837,3478],[10,-18],[3,-8],[9,-10],[15,-7],[13,-12],[14,-4],[17,-12],[15,-4],[30,-22],[3,-6],[0,-10],[4,-6]],[[7299,3448],[-35,4],[-6,6],[-12,2],[16,12],[11,12],[1,6],[6,0]],[[7280,3490],[6,4],[8,-6],[2,-4],[7,2],[4,-4],[18,4],[14,-4],[4,4],[22,-2],[-3,6],[16,2],[-4,-2],[8,-2],[5,4],[-4,2],[3,6],[13,-2],[20,6],[20,0],[-2,8],[20,-2],[5,-2],[13,-2],[8,4],[-1,4],[9,-2],[5,-14],[-15,-6],[-10,-8],[-21,-2],[-52,-14],[-44,-4],[1,-12]],[[7355,3452],[-46,-6],[-10,2]],[[8335,834],[-29,6],[-39,10],[-15,2],[-34,9],[-15,0],[-29,6]],[[8174,867],[5,8],[17,0],[2,4],[9,4],[-21,2],[20,18],[20,4]],[[8226,907],[4,-8],[7,-6],[-1,-6],[10,0],[18,4],[7,-4],[-2,-12],[-7,-4],[14,-6],[11,4],[5,-2],[11,0],[7,-6],[10,-1],[-5,-8],[13,-2],[7,-4],[0,-12]],[[8176,929],[0,-8],[7,0],[6,-4],[16,-2],[7,6],[13,-4],[1,-10]],[[8174,867],[-19,2]],[[8155,869],[3,8],[7,2],[-11,10],[-5,6],[-7,6],[-12,6],[-4,6]],[[5873,1484],[17,-4],[5,-4],[-6,-3],[6,-12]],[[5895,1461],[-2,-10],[-5,-2],[-4,-8],[-9,-4],[5,-2],[0,-6],[15,-8]],[[5895,1421],[-11,4],[-1,-6],[-6,0],[-4,-10],[-8,-6],[-16,2]],[[5849,1405],[-5,16],[6,2],[-6,12],[-9,0]],[[5835,1435],[12,2],[7,4]],[[5854,1441],[-1,10],[5,8],[-6,-2],[-7,4]],[[5845,1461],[3,10],[25,13]],[[5697,1486],[16,-6],[19,-11],[7,0],[12,6],[8,-6],[1,-6],[17,-6],[3,-10]],[[5780,1447],[-1,0]],[[5779,1447],[-2,10],[-12,2],[-5,8],[-10,8],[-11,-6],[-7,0],[-19,11],[-16,6]],[[5845,1461],[-5,-2],[-6,4],[-5,12],[-13,0],[-11,-6],[-15,-14],[-8,-4],[-1,-4]],[[5781,1447],[-3,10],[-11,2],[-6,10],[-10,7],[-15,-7],[-9,4],[-11,9],[-11,2],[-7,8],[17,12],[24,22]],[[5739,1526],[9,-6],[-1,-6],[13,-8],[-3,-8],[16,0],[16,2],[13,-2],[26,4],[-10,-6],[3,-8],[18,-2],[4,-4],[10,2],[-1,-4],[13,0],[8,4]],[[5784,1441],[8,-4],[12,0],[18,0],[6,2],[7,-4]],[[5849,1405],[-11,-10],[-11,2],[-8,-4]],[[5819,1393],[-7,2],[-34,4],[4,12],[-8,6],[3,2],[0,10],[3,2],[-9,2],[13,8]],[[5784,1441],[0,0]],[[5854,1441],[-7,-4],[-10,-2],[-9,4],[-7,-2],[-16,2],[-19,0],[-5,8]],[[5784,1441],[-5,6]],[[5780,1447],[4,-6]],[[9063,2766],[26,6],[-4,6],[12,4],[8,0],[16,10],[11,-4],[19,0],[14,-4],[12,-2],[-3,-6],[7,-4],[-5,-6],[10,-12],[-6,-8],[5,-4],[40,-6],[9,4],[3,6],[-3,4],[3,8],[21,0],[9,2],[10,-18],[-7,-4],[6,-4],[15,4],[7,-6],[9,0],[-7,-4],[12,-4],[-15,-10],[15,-8],[-3,-4],[10,3],[1,-6],[9,0],[7,7],[17,-2],[3,-7],[6,0],[28,-16],[20,-2],[-4,12],[11,-2],[17,8],[6,-4],[0,-6],[9,0],[3,-4],[9,0],[5,12],[10,0],[19,-8],[12,0],[2,-6],[9,0],[8,6],[6,-2],[12,-12],[17,2],[1,-4],[7,-2],[-6,-6],[6,0],[-1,-8],[12,-16],[11,2],[1,-6],[9,-10],[8,0],[0,-6],[33,-6],[6,-8],[12,-4],[-7,-10],[6,-5],[15,-7]],[[9674,2579],[-9,-7],[4,-2],[14,-2],[9,6],[-2,5],[19,4],[6,-11],[7,-4],[14,4],[6,-6],[17,2]],[[9759,2568],[-1,-2]],[[9758,2566],[1,-6],[6,6],[11,-6],[6,2],[12,-2],[12,-14],[-5,-12],[12,-4],[-2,-8],[7,0],[9,-2],[5,2],[10,-12],[7,-2],[11,4]],[[9860,2512],[2,-4],[9,4],[4,4]],[[9875,2516],[10,-2]],[[9885,2514],[-3,-2],[10,-4],[8,2],[9,-8],[8,-4],[-9,-2],[-17,-8],[-8,2],[-7,-10],[10,-2]],[[9886,2478],[-7,-6],[-11,-4],[-6,-5],[-13,1],[1,-5],[-6,-1],[-9,-9],[-14,-2],[-4,2],[-13,0],[-5,2],[-13,-4],[-5,6],[-7,-4],[-6,4],[1,10],[-8,3],[-17,-6],[-12,16],[-15,-2],[-6,8],[-8,0],[-3,8],[-7,0],[-10,8],[4,4],[-9,2],[-6,4],[-8,-2],[-10,-6],[-5,-6],[-10,-4],[-6,2],[-5,12],[-9,4]],[[9619,2508],[6,10],[-1,8],[-16,6],[9,4],[-13,16],[8,2],[-6,4],[-18,-8],[-18,4],[-1,-2],[-13,2],[-9,10],[-9,-6],[-19,0],[2,-4],[-13,-2],[2,-2],[-19,-8]],[[9491,2542],[1,6],[-13,6],[-8,-10],[-9,-2],[-2,12],[-11,4],[-16,-12],[-21,2],[-4,4],[-2,-12],[-7,2],[2,-6],[-5,-10],[-36,6]],[[9360,2532],[3,14],[-1,6],[8,10],[-7,6],[-13,6],[-3,5],[19,11],[-15,9],[-5,6],[-2,10],[-24,4],[-5,4],[4,6],[-1,6],[-9,6],[-10,0],[-22,-6],[-10,2],[2,10],[-10,4],[-2,4],[6,6],[-3,6],[-12,2],[-7,6],[-7,-4],[-15,2],[-13,-8],[1,-8],[-7,2],[-8,12],[-4,0],[-26,-10],[-19,6],[-6,8],[-22,2],[-3,2],[-9,-6],[2,-6],[-13,-4],[1,-8],[-8,2],[-2,-6],[-6,0],[-1,-10],[-21,0],[-10,8],[-16,-2],[-1,2],[-33,4],[-9,6]],[[8986,2659],[27,8],[-5,4],[18,12],[6,0],[-9,6],[-2,6],[-19,13],[0,6],[7,8],[10,-2],[22,0],[25,4],[0,4],[6,0],[-3,14],[3,4],[9,-6],[14,16],[-4,4],[-26,0],[-2,6]],[[8299,1409],[13,4],[8,6],[11,2],[10,-6],[3,2],[-2,8],[-11,4],[3,4]],[[8334,1433],[4,2],[9,-4],[15,-14],[5,0],[12,8]],[[8379,1425],[7,-2],[11,-10],[8,-4],[15,-2]],[[8420,1407],[-6,-16],[-6,0],[-4,-8],[-11,-2],[-3,10],[-12,2],[-16,6],[8,-6],[-1,-6]],[[6296,2347],[7,-12],[23,0],[3,-3],[0,9],[9,0],[11,2],[-2,-3],[3,-10],[7,0],[5,7],[7,-2]],[[6512,2310],[22,-6]],[[6534,2304],[-3,-4],[-12,-10],[-2,-6],[-8,-8]],[[6509,2276],[-4,-4],[-13,-2],[4,-8],[9,-6],[8,-14],[1,-12],[-4,-4],[-10,-2]],[[6500,2224],[-11,10],[-16,-2],[-3,2],[-28,2],[-2,-4],[-11,2],[-5,-6],[-9,0],[-4,-6],[-8,0],[5,-4],[-6,-5],[-2,-8],[-16,-2],[4,-4],[-7,-4],[-18,0],[-19,8],[-12,-2]],[[6332,2201],[-20,4],[-14,-2],[6,9],[-5,6],[4,10],[-15,-2],[-21,2],[8,6],[-3,10],[5,4],[-4,4],[-7,-2],[-2,6],[-10,4]],[[6254,2260],[8,8],[7,0],[-2,12],[-7,12],[1,2],[-8,6],[12,6],[-8,8],[-23,0],[-9,12]],[[6225,2326],[2,7]],[[6227,2333],[20,-5],[8,0],[8,7],[13,2],[9,8],[11,2]],[[8140,1671],[8,6],[7,16],[22,0],[9,-4],[11,-2],[11,8],[3,6]],[[8211,1701],[17,-2],[22,0],[6,8],[4,23],[8,4],[14,0],[7,8],[22,0],[0,-10],[9,-6]],[[8320,1726],[-1,-5],[-9,-2],[-2,-8],[-15,-4],[0,-18]],[[8293,1689],[-6,-18],[4,-12],[5,-4],[-1,-4]],[[8295,1651],[-18,2],[-35,0],[-16,6],[-28,2],[-9,-4],[-13,2],[-9,-4],[-18,2]],[[8149,1657],[0,12],[-9,2]],[[7116,2752],[-7,6],[0,4],[-9,0],[-18,2],[-7,4],[0,12],[-3,4],[7,6],[-4,16],[-9,4],[3,4],[-2,10],[-16,29]],[[7105,2885],[12,-4],[-3,-2],[12,-8],[-3,-10],[7,-4]],[[7130,2857],[10,-8],[-4,-6],[15,-3],[-20,-7],[-15,2],[-6,2],[3,-6],[10,-9],[-7,-4],[-7,-10],[2,-2]],[[7111,2806],[10,-8],[15,-2],[3,-6],[17,-4],[15,-10],[-15,-8],[-10,4],[-6,-8]],[[7140,2764],[-6,-8],[-18,-4]],[[7469,1978],[5,0],[9,-10],[29,-13],[7,-2],[0,-6],[7,0],[6,-10],[2,-10],[5,2],[22,2],[5,-6],[8,4],[18,-10],[3,-6],[26,8],[-4,4],[4,6],[9,0],[8,-6],[24,-4],[17,-8]],[[7679,1913],[2,0]],[[7681,1913],[-4,-8],[-7,-4],[-9,0],[1,-12],[-11,0],[-1,-6],[-9,-14],[-9,-10],[7,-8],[21,1],[13,-7],[0,-4],[20,-7],[9,0],[9,4],[9,-10],[22,-4],[9,-4],[9,-8],[-3,-2],[9,-10],[5,0],[8,-8],[11,-4],[-6,-6],[-9,2]],[[7775,1784],[-4,4],[-5,-8],[-12,-6],[-7,-8]],[[7747,1766],[-9,0],[-3,6],[-11,-2],[-19,4],[-7,4],[-15,-6],[-2,2],[-16,0],[-10,8],[-5,10],[-12,4],[9,8],[-6,8],[-7,0],[-7,-4],[-3,4],[-9,-2],[-2,-4],[-11,-4],[-3,-4],[-9,0],[6,-8]],[[7438,1697],[-8,6],[-6,0],[-5,8],[-4,0],[-8,6],[-24,5],[-19,2],[0,-7],[-16,0],[-9,2],[-16,0],[-8,2],[1,-12],[-14,2],[-20,6],[-6,5],[-8,-3],[-2,7],[4,6],[-1,6],[-5,4],[-20,0],[-16,6],[-1,6],[6,4],[-7,8],[7,4],[3,6],[-15,12],[-10,2],[15,8]],[[7233,1955],[-17,4],[4,12],[11,13],[20,2],[4,2],[11,0],[4,6],[16,4],[9,-2],[14,6],[12,-2],[-3,4],[-13,4],[20,2],[9,-4],[18,2],[11,-4],[16,6],[13,6],[11,-6],[-4,-6],[5,-2],[9,-16],[0,-6],[5,-5],[10,-7],[8,-7],[16,9],[6,-3],[6,1],[5,10]],[[6095,3532],[-11,-2],[0,4],[-11,6],[-5,10],[1,10],[-6,2],[-6,12]],[[6057,3574],[6,0],[1,5],[11,8],[10,2]],[[6085,3589],[9,6],[8,-10],[12,0],[14,6],[7,-6],[10,4],[25,4],[1,2],[15,-6],[13,8],[41,2],[16,-6],[6,2],[16,-12]],[[6278,3583],[-14,-5],[-2,-8],[4,-3],[-11,-7],[5,-6],[0,-20],[-10,-6],[-2,-8],[-5,-2],[-15,-2],[-9,-8]],[[6219,3508],[-11,8],[-18,0],[-8,4],[-20,2],[-7,8],[-11,8],[-5,-6],[-10,-2],[0,-4],[-19,2],[-8,6],[-7,-2]],[[6702,2645],[-14,4],[-1,4],[6,6],[-20,10],[2,6],[-5,4],[-13,0],[-18,4],[-36,2],[-6,2],[2,23],[-25,8],[-23,-10],[-11,5],[-2,5],[-15,0],[-15,6],[-17,0],[-13,10],[-15,2],[-6,4],[-10,-2],[-8,8],[-18,-2],[-7,2]],[[6414,2746],[-11,8],[-17,-2],[-3,4],[-14,6],[4,4],[-26,8],[14,8],[8,0],[13,2],[10,6],[16,2],[8,4],[6,-4],[17,-4],[10,0],[7,10],[16,-2],[6,6],[-13,4],[0,6],[-10,2],[5,4]],[[6460,2818],[7,2],[5,-4],[11,9],[10,-3],[26,6],[1,3],[-8,6],[-1,6],[-11,2],[5,10],[-9,8],[1,6],[12,0],[15,12],[8,-2],[13,2],[12,-4],[8,0],[11,-6],[6,-8],[1,6],[9,4],[-8,6],[-1,8],[12,6],[3,-2]],[[6598,2891],[11,0],[7,-6],[3,-6],[-6,-10],[1,-4],[-4,-10],[4,-4],[-8,-4],[-7,0],[-12,-4],[-6,-6],[-8,0],[-1,-4],[-15,-2],[-7,-3],[0,-16],[-5,-2],[5,-6],[-4,-8],[-6,2],[-13,-10],[-3,-10],[8,0],[0,-6],[6,-8],[8,-2],[3,-6],[-5,-4],[11,-8],[11,0],[9,2],[14,-4],[11,2],[2,-4],[10,0],[12,-4],[0,-4],[6,0]],[[6630,2732],[-3,-2],[17,-4],[5,-4],[9,6],[12,2],[4,-4],[28,-2],[11,-4],[18,0],[4,-3],[9,1],[1,-4],[8,-4],[10,-1],[18,-14],[-14,-2],[-7,-10],[9,-2],[10,-6],[1,-6],[-14,-4],[1,-4],[-11,-4],[2,-6],[-7,4],[-7,-4],[-11,6],[-11,-8],[-14,6],[-6,-4],[0,-6]],[[6125,3409],[12,-8],[8,2],[5,-8],[-10,-2],[-3,-4],[-17,0],[-5,-8]],[[6115,3381],[-8,-8],[0,-6],[-10,-6],[-4,6],[9,2],[-8,2],[0,4],[-9,0],[-7,4],[-13,2],[-12,10],[-5,2],[-16,0]],[[6022,3425],[10,2],[-4,8],[5,2],[4,10],[-8,11],[15,-3],[2,-5],[20,-3],[17,0],[14,11],[5,-3],[-2,-11],[2,-11],[8,-8],[4,-10],[11,-6]],[[6115,3381],[4,-4],[9,2],[3,4],[10,-2],[11,-10],[-4,-8],[11,-4],[-5,-2],[7,-12],[-3,-4]],[[6106,3316],[-11,5],[0,4],[-10,6],[-11,-2],[-13,6]],[[8994,2103],[14,0],[6,12],[-11,4],[4,4],[-6,8],[-15,6],[-22,-2],[-4,-8],[-28,2],[-8,0],[-6,4],[6,10],[0,6],[8,8],[0,4],[9,-2],[16,4],[7,12],[-19,0],[8,16],[10,10],[4,6],[26,0],[9,3],[-2,12],[7,12],[8,24],[42,-8],[7,-8],[15,-8],[-9,-8],[-8,-12],[20,0],[14,-4],[19,-3],[0,-6],[13,0],[-1,6],[14,0],[-3,5],[7,2],[6,-7],[7,0],[-4,7],[17,-1],[2,5],[9,-2],[-3,4],[9,5],[12,1],[-5,6],[0,6],[7,8],[19,2],[4,2],[1,10],[-5,4],[14,10],[0,4]],[[9235,2278],[29,0],[9,4],[22,4]],[[9295,2286],[25,-2],[12,2],[12,-6]],[[9344,2280],[-4,-4],[3,-12],[7,-8],[-7,-4],[11,-4],[0,-12],[7,-4],[3,-10],[-4,-12],[-5,0],[-5,-7],[-16,0],[-7,2],[-6,-2],[-3,7],[-6,-5],[-1,-6],[-10,-6],[-11,-2],[-6,-14],[5,-8],[-5,0],[-2,-10],[24,0],[3,-4],[18,-12],[-1,-8],[-11,-16],[-3,-8],[1,-8],[7,-5],[-8,-8],[5,-8],[10,-4],[-2,-4],[-14,-2],[-6,8],[2,4],[-18,2],[-3,-4],[6,-6],[-6,-8],[-11,-2],[-7,-6],[3,-8],[-6,-2],[2,-4],[-19,-4],[-3,-4],[-9,6],[-16,0]],[[9220,2044],[2,6],[-9,8],[4,8],[-4,12],[-6,6],[-10,-4],[-6,2],[-28,-4],[1,6],[-11,-2],[-13,9],[-23,-4],[-18,2],[-11,8],[-27,6],[-9,-4],[-11,0],[-4,-15],[-18,3],[-4,8],[-8,-4],[-9,3],[-4,9]],[[6433,3566],[4,-8],[18,-8],[3,-6],[-2,-10],[6,-8],[-1,-12],[-11,-2],[5,-6],[7,-2],[0,-6],[-8,-2],[16,-8],[9,6],[6,0],[18,-6],[0,-2],[18,-2],[5,-4],[9,2],[-1,4],[28,2],[-3,6],[5,2],[-1,6],[-6,6],[-19,0],[6,4],[8,0],[9,6],[4,6],[20,4]],[[6648,3472],[-5,-2],[-7,4],[-2,6],[-6,2],[-12,-2],[-2,-2],[-16,-6],[-31,-4],[-7,-6]],[[6560,3462],[-16,-4],[-15,4],[7,-6],[-16,-2],[-21,-8],[-12,-9],[-10,0],[-28,4],[-8,-8],[-20,-8],[-16,-8],[-24,0],[-4,-6]],[[6377,3411],[-13,0],[-4,8]],[[6360,3419],[-2,8],[-12,6],[4,19],[-11,6],[-6,8],[6,4],[-3,2],[-10,0],[-11,-6],[-9,2],[-3,-8],[-11,2],[-20,-2],[-8,4],[-1,6],[-6,4],[-8,-8],[-4,4]],[[6245,3470],[1,10],[-15,4],[-1,10],[-11,14]],[[6278,3583],[26,12],[23,6]],[[6327,3601],[23,-10],[5,-4],[21,-2],[22,-10],[6,-9],[20,-2],[9,2]],[[8211,1461],[-6,6]],[[8259,1478],[-5,-2],[3,-19],[6,-4],[3,-8],[-4,-4]],[[8262,1441],[-11,0],[-5,-2]],[[8246,1439],[-8,8],[0,4],[-9,0],[-8,-6],[-1,10],[-9,6]],[[3086,282],[6,4],[1,8],[-6,2],[5,6],[17,10],[18,16],[2,4],[-5,10],[12,-2],[6,4],[4,-6],[17,4],[10,-4],[10,2],[21,10],[4,8],[9,4],[3,-2],[11,4],[-3,2],[10,5],[13,2],[12,6],[9,6],[3,6]],[[3275,391],[13,-4],[32,2],[8,-4],[12,4],[11,2],[-5,-6],[3,-6],[-4,-4],[-21,-13],[-8,-8],[12,-6],[-3,-4],[9,-4],[-3,-6],[6,0],[0,-6],[-9,-2],[0,-12],[-14,-8],[11,-4],[2,4],[10,-2],[22,6],[5,-6],[12,-2],[10,2],[2,-4],[8,0],[14,-8],[13,2],[-6,-6],[-12,-2],[-15,-4],[3,-2],[-8,-8],[2,-4],[15,4],[12,-2],[-6,-4],[9,-16],[-6,-11],[6,-4]],[[3417,235],[0,-8],[7,-4],[-7,-6],[-12,-4],[-7,4],[-12,-4],[-13,2],[-6,4],[0,-6],[-19,-2],[4,-2],[-24,-6],[-19,2],[-4,-2]],[[3305,203],[-3,-2],[-25,-2],[-8,18],[0,6],[6,0],[-9,8],[-6,-2],[-14,2],[16,15],[-16,10],[4,2],[-1,10],[8,2],[5,12],[-3,4],[1,8],[-19,-8],[-10,0],[-5,6],[-25,8],[-9,-10],[3,-6],[-9,0],[3,-6],[-22,-8],[-24,0],[-5,-4],[-1,6],[-11,2],[-2,6],[-38,2]],[[8403,2147],[7,4],[9,-2],[1,2],[11,4],[17,-4],[7,6],[11,-2],[-11,-8],[10,-8],[10,0],[-8,-12],[8,0],[7,-6],[-2,-10],[0,-16]],[[8480,2095],[-17,3],[1,11],[-22,4],[-9,-2],[0,-16],[-28,-11],[-2,3],[7,8],[-9,2],[3,4],[-4,4],[7,8],[-8,2],[1,6],[-18,6],[-10,10],[12,2],[19,8]],[[6399,2524],[2,2],[-9,2],[0,6],[-7,8],[-3,8],[-12,2],[-18,0],[-6,4],[-9,0],[1,8],[-5,4],[9,8],[14,7],[0,7],[5,11],[0,8]],[[6361,2609],[7,6],[3,12],[-3,4],[14,2],[7,2],[22,-2],[28,12]],[[6439,2645],[14,-6],[3,-4],[15,-4],[-6,-4],[6,-4],[-1,-6],[-13,-8],[-8,-6],[1,-6],[-4,-6],[9,0],[11,-4],[-13,-4],[-6,-9],[-13,0],[0,-6],[-9,-4],[1,-8],[-3,-8],[6,-4]],[[9345,1367],[-3,-10],[4,-4],[-6,-3],[10,-4],[-5,-4],[7,-6],[0,-4],[27,4],[13,0],[8,-6],[3,-8],[8,-8],[-19,-6],[-3,-6]],[[9389,1302],[23,2],[12,4],[7,8],[17,2],[10,6],[11,2],[9,0]],[[9478,1326],[8,-6],[-9,-8],[-14,-6],[0,-6],[-5,-4],[12,-8],[-17,-12],[2,-8],[15,-6],[-5,-6]],[[9465,1256],[-9,-8],[-11,-18],[12,2],[10,-7],[13,-4],[-26,-22],[-11,6],[-13,-6],[-7,0],[-5,6],[-8,-4],[-2,-8]],[[9408,1193],[-9,6],[-21,4],[2,8],[-9,-10],[-23,4],[-14,8],[-12,6],[-3,-16],[-12,-2],[-2,-4],[-18,-2],[-17,0]],[[9241,1276],[12,8],[19,6],[-2,4],[7,14],[-4,6],[10,2],[-9,6],[-7,0],[-26,16],[-15,2],[-7,6]],[[9219,1346],[8,0],[20,2],[18,0],[11,3],[14,12],[35,2],[8,2],[12,0]],[[5424,4609],[0,2]],[[5424,4611],[0,-2]],[[5311,4601],[17,2],[4,4],[23,4],[10,8],[12,2],[20,-2],[19,2],[7,-8],[-4,-6]],[[5419,4607],[-7,-6],[4,-6],[26,0],[9,-4],[-11,-2],[4,-8],[17,-4],[-2,12],[8,14],[13,2],[5,-12],[21,-4],[-1,-8],[20,-2],[0,8],[7,6],[4,-6],[7,4],[-4,8],[18,2],[15,-10],[17,0],[10,-4],[-13,-4],[8,-6],[-5,-2],[-1,-8],[3,-8],[-4,-4],[13,-8],[13,-2],[7,-9],[12,-6],[9,-10],[19,2],[-1,-14],[-16,-2],[-9,2],[-16,-4],[-18,8],[-11,-2],[-8,8],[-17,0],[-7,4],[-14,-12],[-11,-4],[-15,0],[0,-6],[-16,-4],[2,-4],[-9,-4],[-6,-8],[-10,-8],[-16,-4],[-22,-2],[-5,4],[7,4],[-5,6],[-16,-2],[-5,4],[8,6],[-10,2],[-9,-4],[-4,6],[-7,22],[-14,4]],[[5380,4518],[18,6],[7,6],[-7,4],[-35,4],[-5,5],[15,4],[-2,4],[-15,6],[8,4],[2,8],[-9,0],[-2,8],[-5,6],[-20,-2],[-6,6],[-9,-6],[-11,2],[8,4],[-4,12],[3,2]],[[8129,1340],[11,17],[-5,2],[-4,16],[-5,4],[-9,0],[-3,2]],[[8114,1381],[10,2],[13,6],[9,-4],[31,2]],[[8177,1387],[6,-4],[0,-10],[5,-4]],[[8188,1369],[6,-23],[-24,-2],[-6,-4],[4,-8],[-5,-2],[3,-4],[-11,-2]],[[8155,1324],[-7,4],[1,4],[-9,0],[-11,8]],[[8906,1520],[2,-4]],[[8908,1516],[-17,2],[15,2]],[[8836,1528],[13,-4],[30,-6],[5,0],[8,-6],[10,2],[16,-6],[-9,-2],[-10,-6],[-27,-4],[-5,2],[-10,-4],[-20,2],[-12,10],[-13,-2],[-8,10],[5,2],[11,-2],[7,4],[3,12],[6,-2]],[[8850,1566],[4,0],[16,-8],[25,-2],[18,-6]],[[8913,1550],[3,-8],[-9,-6],[-3,-12],[4,-2]],[[8908,1522],[-13,-4],[-46,6],[-8,4],[-12,0]],[[8829,1528],[-6,8],[5,16],[4,4],[16,6],[2,4]],[[4585,615],[-2,10],[7,18],[-7,2],[-5,20],[10,14],[-7,4],[-2,20],[-9,6],[-9,2],[3,8],[-10,-2],[-22,2],[-7,4],[-6,10],[1,11],[7,4],[-12,4],[-18,12],[-7,-4],[-13,-2],[-19,-17],[-11,-6],[-26,19],[-15,-6],[12,14],[-7,6],[2,8],[10,10],[-7,2],[-29,-4],[-13,2],[-11,-2],[-19,0],[-13,4],[-15,10],[-42,18],[-6,12],[8,4],[19,6],[10,0],[-2,4],[-21,-2],[3,4],[18,4],[-7,4],[-1,4],[18,9],[0,6],[-4,4],[6,4],[17,2],[-1,4],[11,6],[9,-6],[15,-2],[0,12],[17,8],[-4,8],[20,6],[2,-4],[8,2],[6,-8],[12,6],[3,-10],[12,2],[1,6],[12,-4],[16,6],[-3,-14],[9,-4],[11,6],[17,-2],[-3,-4],[18,-12],[4,-10],[13,2],[7,2],[12,0],[18,12],[0,4],[-16,0],[-1,8],[-5,4],[-9,2],[-7,6],[18,4],[9,4],[-4,8],[-5,-2],[-7,10],[-5,2],[5,4],[10,2]],[[4557,945],[8,2],[17,0],[11,2],[38,-2],[6,6],[9,-2],[-6,-6],[19,-4],[5,4],[11,-2],[-1,-4],[8,-8],[7,0],[7,-8],[-1,-4],[10,2],[0,2],[10,6],[-5,4],[11,0],[-3,8],[2,4],[9,4],[26,4],[31,6],[22,2],[2,-4],[16,4]],[[4826,961],[1,-8],[24,0],[9,-8],[9,0],[9,-6],[19,-4],[11,-12],[-1,-4],[15,-6],[0,-4],[12,-8],[18,12],[15,2],[3,-6],[14,-4],[-9,-14],[-1,-8],[6,-4],[10,-2],[13,2],[6,-2],[5,4],[16,2],[4,-6],[-6,-4],[7,-2],[-10,-7],[-8,-3]],[[5017,861],[-6,0],[-8,-9],[-11,-2],[-9,4],[-7,-8],[-4,2],[-15,-8],[18,-6],[-10,-6],[2,-6],[-12,-6],[-7,-8]],[[4948,808],[-10,6],[-6,0],[-27,-8],[-10,-6],[-15,0],[1,-8],[6,-6],[-9,-2],[4,-4],[-1,-8],[4,-6],[12,-2],[11,-12],[15,0],[16,-2],[12,2],[1,-4],[8,0]],[[4960,748],[7,-4],[7,-2]],[[4974,742],[4,-19],[8,-2],[6,-10],[-1,-4]],[[4991,707],[-17,0],[-7,6],[-31,6],[-10,-10],[1,-8],[-21,-6],[-10,-8],[-3,-8],[4,-12],[-14,-4],[-8,-6],[-20,-2],[-7,6],[-13,0],[-11,-6],[0,-10],[-7,4],[-7,-2],[-16,-14],[-4,-6],[-3,-15],[2,-2],[-15,-8],[-6,-6],[-12,4],[-16,2],[-15,-8],[-13,-6],[1,-4]],[[4713,584],[-14,2],[-10,-4],[1,-12],[-3,-6],[11,-10],[-1,-8],[-9,2],[-5,-4],[-24,24],[7,6],[11,-2],[-1,4],[-8,0],[4,18],[-14,2],[0,14],[-15,-6],[-7,-12],[-5,0],[-9,6],[1,4],[-15,8],[-7,-4],[-13,2],[-3,7]],[[9384,1998],[-16,8],[-14,-6],[-32,2],[-11,10],[-5,-8],[-15,2],[3,4],[-8,10],[-13,6],[-3,4],[-30,-2],[1,10],[-14,-2],[-7,8]],[[9344,2280],[29,0],[12,-6],[19,0],[12,-4],[25,-2],[8,2],[24,-6],[15,4],[2,4],[15,2],[5,4],[6,0],[12,10],[13,8],[20,0],[5,-2],[10,0],[8,6],[5,6],[11,2]],[[9600,2308],[13,0],[3,-4],[10,-4],[1,-4],[12,-10],[10,-4],[11,-10]],[[9660,2272],[-12,-8],[-9,0],[-10,-6],[-8,-2],[-11,-8],[3,-4],[-3,-10],[15,-8],[10,-4],[-3,-4],[3,-9],[30,-14],[-1,-6],[8,-4],[-2,-4],[11,-8],[7,2],[17,-8],[3,-14],[4,-2],[-4,-8],[-6,-6],[-8,2],[-1,-8],[4,-2],[-7,-6],[-11,2],[-12,-8],[16,-10],[13,0],[6,-6],[-5,-4],[-9,0],[-17,-6],[-22,3],[1,-3],[-10,-7],[-14,-4],[9,-2],[-3,-4],[-9,2],[-34,0],[0,-6],[-8,-2],[-3,-6],[5,-6],[-9,2],[4,-6],[-4,-8],[-8,2],[-6,-4],[4,-2],[-14,-8],[-3,-4],[-7,0],[0,-12],[-11,0],[-12,-10],[4,-6],[-11,-12],[-29,-2],[4,-4],[-10,0],[-11,-4]],[[9464,1978],[3,8],[-4,12],[-8,10],[-9,4],[3,2],[-18,2],[-19,-4],[3,-6],[-17,-4],[-4,4],[-10,-8]],[[7299,2536],[-10,2],[2,6],[-5,0],[-12,6],[-15,0],[-24,4],[-13,-8]],[[7222,2546],[-8,10],[1,4],[-11,10],[-13,0],[-15,-12],[0,-12],[-8,-4],[1,-10],[-6,-8],[-16,2],[-7,-10],[13,-4]],[[7153,2512],[-3,-10],[-16,2],[-21,-4],[-3,-6],[-8,4],[-10,2]],[[7074,2591],[20,8],[-4,4],[19,8]],[[7109,2611],[4,-2],[12,2],[1,2],[25,6],[15,-8],[6,-12],[24,4],[21,0],[2,4],[10,-6],[2,-6],[17,2],[14,8],[16,12],[-9,4],[-7,-4],[-3,8],[-8,4],[-10,-2],[-11,8],[13,4],[15,4],[25,2],[18,6]],[[7301,2651],[8,-6],[-7,-8],[7,-2],[9,-16],[9,-10],[-7,0],[9,-10],[16,0],[-2,-5],[-12,-7],[10,-5],[-1,-6],[34,-6],[9,-6],[14,-2],[-2,-4],[-13,-4],[-16,8],[-9,-10],[-7,-2],[-4,-6],[-13,-8],[-25,4],[2,-4],[-11,0]],[[8691,1353],[-3,-7],[9,2],[19,0],[11,-4],[15,-2]],[[8742,1342],[3,-6],[-6,-4],[9,-6],[-3,-10],[7,-8],[5,-2],[10,2],[12,-2],[6,-4]],[[8785,1302],[-18,-18],[-2,-4],[-24,0]],[[8741,1280],[2,6],[-7,10],[-1,8],[-15,-2],[-1,14],[3,4],[-7,8],[-15,4],[-3,4],[8,4],[-18,-2],[-6,4]],[[8681,1342],[1,6],[9,5]],[[8745,1367],[36,-14],[8,2],[2,-11],[6,-2],[3,6],[9,4],[-5,11],[2,8],[-6,0],[-3,6],[6,2],[18,-4]],[[8821,1375],[16,-4],[2,-10],[7,-2],[5,-11],[-4,-8]],[[8847,1340],[-8,-6],[-10,-4],[-11,8],[-11,-6],[5,-4],[-12,-10],[-3,-8],[-18,-2],[6,-6]],[[8785,1302],[-18,6],[-16,0],[-6,14],[4,6],[-11,20],[8,5],[-8,10],[7,4]],[[6208,3153],[-9,6],[13,4],[-7,4],[3,4],[-28,4],[-6,2],[-20,0]],[[6154,3177],[2,10],[-7,17],[0,6],[8,4]],[[6157,3214],[18,2],[6,4]],[[6181,3220],[8,-6],[18,-2],[-2,-8],[16,0],[9,-4],[9,1],[0,7],[9,-2],[9,4]],[[6257,3210],[3,-2],[0,-10],[9,-5],[-6,-10]],[[6263,3183],[-11,2],[1,-10],[-13,-8],[7,-4],[-7,-12],[-11,-2],[-7,2],[-14,2]],[[8736,1681],[-3,20],[-9,12],[6,6],[9,0],[11,3],[15,-5],[7,5],[-5,0],[7,6],[13,-2],[-1,8],[10,0],[-2,-10],[6,-7],[10,-2],[8,-6]],[[8818,1709],[-10,-2],[2,-8],[-7,-6],[-4,-14],[12,-14],[-9,-10],[-23,6],[-25,-8],[-13,10],[-12,-4],[4,4],[-3,6],[8,4],[-2,8]],[[8091,1471],[6,-2],[21,6]],[[8118,1475],[12,4],[4,-4],[15,9],[6,0]],[[8155,1484],[0,-6],[6,-4]],[[8161,1474],[-26,-5],[-5,-12],[-7,-2],[-11,0],[-13,4],[-6,4],[-2,8]],[[6318,1818],[-6,8],[-15,-2],[-13,6],[-22,4],[2,4],[-15,-2],[0,4],[17,27],[25,-4],[10,-6],[4,8],[19,-2],[9,-4],[21,-6],[22,0]],[[6376,1853],[-3,-4],[-2,-15],[-7,-6],[-3,-10],[-10,0],[-11,-6],[-14,6],[-8,0]],[[7659,1730],[14,-4],[15,-9],[14,2],[15,-4],[0,-4],[12,4],[13,0],[3,-4],[11,-10],[9,4],[0,-4],[13,-4],[0,-8],[-6,0],[-7,-10],[14,-8],[6,-8],[-6,-6],[3,-6],[21,2],[12,-2],[6,-8],[-9,-6],[-6,2],[-3,-8],[-9,4],[-3,-10],[5,-2],[-8,-10],[5,-2],[4,-17],[7,-12]],[[7657,1584],[2,6],[-5,6],[-9,-2],[0,11],[-8,16],[5,6],[-15,8]],[[6966,3052],[-6,-8],[-9,2],[-9,-2],[-9,2],[-10,-2],[-1,8],[-25,-2],[-12,2],[-4,10],[12,0],[0,6],[-6,0],[-4,7],[11,12],[-8,2],[12,4],[1,10],[21,4],[4,-2],[16,2],[0,-8],[12,-6],[21,4],[0,-4],[22,-2],[10,4],[2,-6],[16,0],[5,-4]],[[7582,812],[0,2]],[[7420,877],[10,-2],[4,-8],[-3,-15],[-9,4],[-10,7],[-11,1],[4,3],[-3,8],[3,4],[15,-2]],[[7405,917],[-16,16],[5,6],[0,6],[9,12],[16,6],[-11,16],[-7,0]],[[7401,979],[12,5],[1,10],[13,12],[-2,6],[10,12],[2,6],[11,4],[-5,14],[3,6],[11,2],[17,10],[13,6],[3,14],[11,8],[8,0],[0,-4],[10,-4],[5,6],[3,-2],[15,0],[7,8],[11,7],[12,5],[11,1]],[[7583,1111],[15,-1],[12,-8],[18,2],[9,-8],[9,4],[18,2],[4,5],[15,0],[27,6],[16,-8],[9,0],[16,6],[14,-4],[7,2]],[[7772,1109],[19,-2],[0,10],[9,-4],[22,0],[12,4]],[[7834,1117],[5,-21],[7,-2],[-5,-6],[2,-6],[6,2],[-5,-8]],[[7573,826],[0,-6],[-17,2],[-4,-8],[12,2],[12,-10],[-3,-8],[-12,-12],[-10,-6],[-8,0],[-28,18],[-32,16],[-47,12],[-10,6],[11,2],[1,4],[11,6],[1,4],[9,8],[13,2],[8,-6],[16,-2],[9,4],[9,0],[0,6],[10,4],[5,13],[-8,-2],[-2,-10],[-20,-9],[-9,-2],[-8,6],[-9,1],[-2,6],[11,4],[5,6],[-8,0],[3,10],[-11,0],[-4,-8],[8,-4],[-9,-10],[-1,-4],[-16,6],[1,4],[-5,4],[3,10],[-14,0],[-8,-2],[4,-8],[-6,0],[-2,6],[-11,-4],[-6,2],[8,8],[-2,4]],[[7411,891],[-1,8],[7,10],[-11,4],[-1,4]],[[8273,1586],[-1,4],[10,8],[10,11],[2,10]],[[8294,1619],[13,-4],[21,0],[3,-6],[-4,-6],[18,-11]],[[8345,1592],[-12,-18],[-1,-6]],[[8332,1568],[-14,4]],[[8318,1572],[-13,-2],[-1,12],[-5,0],[-9,-4],[-17,8]],[[6122,1328],[-14,0]],[[6108,1328],[-1,4],[-10,2],[6,4],[-2,6],[-12,-4],[-14,8],[-15,-2],[-5,0],[7,6],[26,5],[2,6],[11,0],[6,8],[-7,10],[1,10],[14,2]],[[6115,1393],[7,0],[68,2],[-8,6],[-4,6],[-1,8],[14,4],[-9,12],[8,12],[13,-2],[5,4],[15,-4],[11,-4],[8,2],[-2,16],[19,12],[14,-6],[6,2],[8,-4],[1,-6],[6,0],[-8,-8],[9,-2],[11,-8],[-6,0],[-12,-14],[5,-6],[32,-8]],[[6325,1407],[-19,0],[-4,-4],[7,-2],[-3,-6],[-7,-2],[1,-6],[6,2],[3,-10],[9,-8],[-10,-6],[-9,0],[0,-6],[-8,0],[-8,-4],[-16,-3],[-2,-4],[8,0],[2,-8]],[[6275,1340],[-17,-4],[-20,0],[-6,-8],[-5,0],[-17,-4],[-15,12],[-6,2],[-8,-6],[-11,-2],[-7,4],[-4,-4],[-9,0],[-8,2],[-6,-2],[-14,-2]],[[8131,1639],[-3,-4],[30,-8],[2,-8],[22,-14],[-6,-7],[-9,-6],[6,-6]],[[8173,1586],[-3,-6],[-9,-4],[-6,6]],[[8155,1582],[-3,2],[-4,10],[-14,4],[-1,-6],[-9,0],[-6,-4]],[[8118,1588],[-4,2],[1,8],[-4,3],[-17,-2],[-13,2],[-3,10],[-6,0],[-23,4]],[[8049,1615],[4,4],[6,-4],[6,6],[1,8],[21,2],[2,-2],[17,8],[12,2],[5,-4],[8,4]],[[5724,3399],[-7,2],[-2,8],[6,2],[-3,6],[-9,-4],[-16,0],[-14,4]],[[5679,3417],[-4,10],[4,4],[13,2],[11,-4],[9,2],[1,10],[6,5],[-18,1],[-7,8],[6,3],[7,12],[11,-2],[35,2],[1,8],[-19,4],[1,10]],[[5736,3492],[7,6],[10,6],[7,-6],[4,4],[17,0],[7,6],[-2,6],[28,12],[11,2],[10,6],[11,-4]],[[5868,3500],[-4,-4],[3,-8],[8,-4],[14,-2],[-1,-16],[-6,-2],[-8,-8],[11,-19],[-3,-4],[4,-10],[9,-2]],[[5785,3391],[-6,4],[-3,8],[-12,0],[-17,-4],[-3,2],[-20,-2]],[[6633,778],[1,0]],[[6574,796],[3,-2]],[[6463,826],[0,10],[-13,-4],[-6,6],[4,6],[-6,4],[-11,-6],[-3,10],[22,2],[5,2],[-5,5],[0,8]],[[6450,869],[13,4],[15,0],[4,8],[-1,6],[26,4],[7,0],[3,-8],[11,12],[1,8]],[[6529,903],[20,-2],[14,2],[7,6],[8,-16],[-4,-2],[5,-6],[7,-2],[-4,-6],[-8,0],[1,-14],[-9,-5],[8,-4],[-2,-12],[17,-12],[-2,-6],[5,-6],[16,4],[11,8],[8,2],[9,-14],[-5,-10],[2,-4],[23,2],[27,0],[8,0],[-2,-6],[-8,-8]],[[6681,792],[-14,0],[-17,-2],[-17,-10],[1,4],[-14,0],[-10,-2],[-3,4],[-22,2],[0,4],[-13,4]],[[8155,1484],[-1,4],[-9,-4],[-11,0],[-8,12]],[[8126,1496],[11,2],[-8,6],[19,2],[17,4]],[[8165,1510],[15,-8],[3,-4],[14,6],[8,0]],[[8205,1504],[7,4],[12,-4]],[[8224,1504],[7,2]],[[8236,1496],[-6,-2]],[[8230,1494],[-20,2],[-19,-2],[-5,-6],[0,-9],[-7,-5],[-18,0]],[[5460,2972],[-15,16],[-5,-4],[-10,6],[11,4],[8,0],[28,8],[2,-2],[21,10],[2,6]],[[5502,3016],[0,0]],[[5502,3016],[-2,6],[-12,6],[-14,14],[-16,8],[-25,12],[-32,15]],[[5401,3077],[15,8],[12,12],[15,4],[21,0],[14,-8],[7,0],[10,-14],[15,4],[13,0],[11,-9],[10,-4],[0,-4],[12,-8],[5,-10],[-9,-4],[13,-8],[20,8],[25,4]],[[5610,3048],[-1,-8],[-4,-2],[10,-2],[5,-6],[-14,-8],[7,-6],[-11,-2],[7,-4],[-8,-2],[-15,6],[-18,-4],[7,-8],[-12,0],[6,-8],[-4,-8],[12,-6],[-1,-4],[14,0],[-1,-10],[3,-2],[-14,-12],[-28,0],[-16,-7]],[[5534,2945],[-6,0],[2,6],[7,1],[3,8],[-11,-1],[-11,-7],[-13,3],[-4,4],[-23,3],[-2,4],[-16,6]],[[6738,4411],[-5,-2],[-4,6],[-21,17],[-11,0],[-30,-4],[-15,0],[-4,-4],[-8,0],[-5,12],[7,2],[5,12],[-16,0],[-11,8],[43,6],[7,-2],[33,8],[2,4],[19,-2],[0,2],[-12,8],[-6,6],[14,2],[-5,6],[2,6],[-9,8]],[[6708,4510],[11,2],[14,-6],[-3,-6],[17,-2],[16,6],[11,-2],[11,6],[11,-2],[9,6],[11,-2],[13,0],[4,4],[19,0],[-2,4],[12,4]],[[6862,4522],[0,-6],[6,-8],[7,-2],[-4,-4],[12,-6],[-12,-8],[4,-2],[46,4],[5,-2]],[[6926,4488],[1,-4],[-12,-6],[-19,0],[1,-10],[17,-10],[13,4],[29,-4],[3,-8],[-8,-2],[1,-4]],[[6952,4444],[-26,4],[-21,-10],[-3,-10],[31,-2],[1,-11],[-6,-2],[-4,-6],[-14,-2],[5,-10],[-21,0],[-23,8],[-27,2],[2,4],[-13,0],[-1,-4],[-29,-4]],[[9511,1826],[12,-4],[-5,-4],[-10,4],[3,4]],[[9513,1836],[2,-8],[-5,2],[-13,-8],[-14,6],[4,6],[17,0],[9,2]],[[9522,1836],[18,-6],[-13,-2],[-5,8]],[[9331,1778],[19,18],[6,0],[8,4],[-7,6],[4,8],[5,0],[2,6],[7,-4],[12,2],[10,8],[5,0],[2,8],[-6,4],[14,6],[10,-4],[16,-2],[1,7],[6,4],[11,-5],[14,4]],[[9470,1848],[9,0],[9,-4],[-5,-4],[-13,1],[1,-3],[-12,-2],[2,-6],[-10,-6],[15,0],[10,8],[6,0],[-4,-8],[8,2],[-3,-8],[16,-4],[10,4],[5,-2],[12,2],[-5,-10],[5,0],[3,8],[-6,10],[1,4],[22,-4],[-1,-10],[-46,-36],[-16,-8],[-20,-10],[-29,-8],[-40,-16],[-17,-4],[-20,0],[-26,-2],[-22,0],[-11,8],[-2,6],[7,2],[-7,8],[-13,4],[9,0],[21,2],[15,8],[3,8]],[[8199,3387],[-11,-6],[-8,-6],[-6,0],[-13,-8],[15,-10],[-5,-2],[5,-6],[10,0],[0,-4],[11,0],[-1,-4],[12,-12],[21,2],[-4,6],[11,2],[-5,2],[12,6],[2,-4],[8,2],[0,8],[14,6],[-6,4],[-8,-2],[-3,8],[6,6]],[[8256,3375],[19,-10],[6,-6],[26,-18],[9,-4],[7,-8]],[[8323,3329],[-12,-6],[-22,-4],[-2,2],[-12,0],[-5,-3],[-9,6],[-17,-1],[-3,-3],[-7,-24],[-14,-4],[-6,0],[6,-8],[-17,-6],[4,-4],[17,-10],[3,-4],[-27,-10],[-9,-6],[-3,4],[-8,-2]],[[8180,3246],[-3,6],[-10,0],[-13,18],[-2,6],[-15,0],[-7,2],[1,6],[-7,8],[-21,0],[6,20],[-1,9],[-8,8],[3,4],[-8,2],[5,6],[26,22],[-8,8],[-3,-2],[-20,0],[-3,-2],[-5,8],[-10,10],[-14,-2],[5,8],[-21,4],[-16,12],[-21,2],[7,-18],[-10,-4],[-17,-20],[-6,-8],[-14,0]],[[7837,3478],[13,6],[55,0],[43,6],[42,8],[20,0],[8,2],[16,-2],[7,-6],[22,-26],[18,-11],[15,-14],[19,-12],[43,-18],[18,-10],[23,-14]],[[9160,1802],[-9,0],[-12,6],[2,8],[-12,2],[-6,8],[-6,22]],[[9117,1848],[22,4],[5,11],[6,6],[7,0],[3,6],[11,2],[27,-2],[6,-4],[-3,-8],[15,-4],[-3,-4],[12,-2],[-7,-5],[3,-6],[-15,-8],[-1,-4]],[[9205,1830],[14,-16]],[[9219,1814],[-19,-2],[-17,6],[-3,-6],[-10,-10],[-10,0]],[[6600,3409],[9,-2],[12,-10],[4,-16],[17,2],[1,-8],[6,-2],[3,4],[14,-12],[4,-6]],[[6670,3359],[-19,0],[-1,-6],[-5,-6],[-25,-8],[-15,-4],[-5,2],[-19,-2],[-7,4],[-18,-14]],[[6556,3325],[-6,2],[-6,-3],[-9,1],[-18,12],[-10,4],[-9,0],[-11,-6],[-4,4],[-11,2]],[[6472,3341],[-3,12],[-11,0],[-17,8],[-3,8],[-11,6],[-10,2],[-15,10],[-12,14],[-12,6],[-1,4]],[[6560,3462],[17,-6],[-9,-6],[0,-6],[-6,-7],[1,-4],[19,0],[3,-4],[-13,-14],[9,-10],[8,0],[11,4]],[[5978,2960],[8,10],[-6,6],[2,4],[-5,2],[0,12],[-15,0],[-3,2],[1,10],[-13,4],[0,14],[-3,8]],[[5944,3032],[14,2],[8,-4],[6,0],[4,-4],[9,-4],[4,-8],[15,-6],[6,4],[12,-6],[10,10],[-8,4],[4,8],[-17,0],[-3,8],[-16,2],[-3,14],[10,0],[6,12],[27,-10],[4,0],[5,8],[12,8],[-3,7],[7,2],[14,2],[9,-6],[9,0]],[[6089,3075],[3,-15],[7,-6],[7,-2],[12,-10],[9,0],[9,-6],[17,-2],[1,-2],[13,0],[11,-8],[-2,-8],[19,-6],[7,2],[11,8],[-2,2],[23,0],[17,-4]],[[6251,3018],[-4,-6],[3,-20],[-9,4],[-9,-6],[-17,-8],[-23,-20],[-11,-6],[-11,-11],[-13,-2]],[[6157,2943],[-8,-10],[-7,2],[-3,-2],[-19,-4],[-5,-6]],[[6115,2923],[-13,0],[-6,2],[-14,0]],[[6082,2925],[-18,6],[2,10],[-21,10],[-9,0],[2,5],[-7,3],[-8,-3],[-13,8],[-16,0],[-7,-6],[-9,2]],[[4876,4307],[20,-4],[5,9],[9,-3],[14,2],[22,-4],[3,4],[9,1],[-5,3],[6,6],[5,0],[17,14],[8,8],[-8,4],[1,12],[12,-2],[10,2],[3,-6],[16,-4],[7,4],[12,0],[16,-4],[16,2],[2,-4],[12,-2],[5,8],[11,2],[9,10],[-9,6],[-15,8],[-3,4],[-16,14],[17,10],[-5,4],[13,4],[3,-4],[5,4],[15,7],[9,-9],[9,4],[11,-8],[13,4],[11,0],[2,-6],[30,-10],[-3,-4],[8,-10],[-8,-2],[-7,-6],[6,0],[27,-32],[8,-4],[0,-6],[8,-2],[15,-10],[11,-4],[0,-4],[18,2],[18,-6],[16,2],[12,6],[10,0]],[[5342,4317],[9,-1],[9,3],[22,0],[7,-4],[3,-7],[11,0],[15,-7],[-8,-5],[-20,-8],[6,-4],[11,0],[-9,-8],[11,-6],[-3,-2],[4,-10],[-9,-6],[0,-10],[10,-4],[-2,-10],[5,-8],[-3,-6]],[[5411,4214],[-8,0],[-18,-4],[-6,2],[-2,-6],[-11,2],[-22,-6],[-12,-13],[-12,1],[-6,-5],[3,-5],[-6,-2],[-13,4],[-4,6],[-8,-2],[-10,-9],[-11,-4],[1,-6],[5,0],[6,-16],[18,-8],[7,0],[4,6],[9,-6],[0,-6]],[[5207,4012],[3,-2],[-6,-16],[7,-2],[-2,-14],[-7,-2],[0,-8],[-6,0],[-15,-8],[4,-9],[11,-7],[-6,-1],[-8,-8],[-14,-3],[-12,7],[-10,-5],[-13,-3],[-10,0],[-14,7],[-23,24],[-18,14],[-20,14],[-27,28],[-2,8],[5,4],[2,12],[-9,17],[2,8],[14,11],[-3,-11],[11,-2],[12,5],[-17,-1],[0,8],[-6,4],[3,6],[-7,-2],[-10,2],[0,-6],[8,0],[1,-3],[-14,-7],[-40,30],[-3,10],[-16,14],[-11,6],[-35,28],[-21,12],[-14,11],[-5,8],[-9,8],[-13,8],[-13,0],[-11,12],[-5,2],[-3,10],[24,8],[6,4],[8,20],[6,-4],[4,12],[8,10],[-2,6],[2,11],[8,10]],[[7831,2524],[0,0]],[[7831,2524],[6,-8],[13,-2],[3,-6],[-3,-8],[-4,0],[-2,-10],[-4,-2],[-5,-10],[-7,-4],[6,-4],[12,-3],[0,-4],[52,8],[9,-3],[0,-8],[8,-4],[-2,-5],[-11,-2],[5,-6],[11,-2],[3,-10],[-12,-12],[7,-4],[19,-4],[7,-6],[24,-4],[1,-2],[-6,-6],[0,-6],[9,-8],[2,-10],[6,-4],[-11,-4],[-3,-6],[-7,-4],[1,-3],[-9,-9],[9,-3],[-16,-6],[-21,-12],[-16,-2],[2,-8],[-17,-6],[-3,-8],[-9,-4],[-22,0],[-1,-4],[-14,2],[-2,-2],[-9,0],[7,-4],[-12,-8],[2,-6],[20,-10],[-5,-6],[16,-2]],[[7858,2250],[1,-16]],[[7859,2234],[-10,-4],[-11,4],[-19,-2],[-12,-2]],[[7807,2230],[-8,-4],[-12,6],[-9,2],[-16,-4],[-15,2],[-14,6],[-13,-8],[7,-2],[-1,-4],[-9,-4],[-23,-2],[-2,12],[6,18],[10,4],[-4,2],[4,8],[-9,8]],[[7699,2270],[9,6],[-1,12],[-5,0],[6,12],[6,6],[-9,4],[12,12],[-7,0],[0,6],[-8,4],[0,5],[-5,-1],[-12,3],[-11,-2],[-2,10],[6,2],[-18,12],[2,6],[-3,6],[-10,4],[-9,-2],[-4,-8],[-10,-8],[-11,-2],[-3,2],[-14,-2],[-4,12],[-16,0],[-13,2],[-14,20],[-6,0],[-15,10],[12,10]],[[7542,2411],[7,-2],[13,4],[8,-6],[10,-2],[28,12],[11,0],[19,16],[-2,4],[9,0],[16,16],[11,6],[21,1],[29,12],[5,4],[14,-2],[6,6],[10,-6],[10,0],[3,8],[14,-2],[-9,8],[4,6],[-1,4],[10,4],[-1,8],[19,10],[4,6],[17,-4],[4,2]],[[6866,2351],[14,6],[14,0]],[[6894,2357],[8,0],[2,-4],[14,-4],[-1,-5],[21,-7],[1,-2],[-8,-15],[-6,-6],[7,-8],[-1,-4]],[[6931,2302],[-13,6],[-14,2],[-11,-10],[-15,2],[-3,4],[3,18],[-4,-4],[-6,2],[-11,-6]],[[6857,2316],[3,8],[-6,0],[15,21],[-3,6]],[[6857,2316],[-6,0],[-11,-10],[-14,0],[-11,6],[-21,2],[3,-6],[-19,-2],[-4,6],[-8,0]],[[6766,2312],[-1,8],[-6,6],[5,2],[-8,2],[8,11],[9,-1],[4,7],[-3,8]],[[6774,2355],[5,6],[21,-6],[16,2],[12,6],[9,-6],[12,0],[-2,-4],[14,-2],[5,0]],[[6769,2296],[-3,16]],[[6931,2302],[-13,-10],[-17,-6],[3,-4]],[[6904,2282],[-6,2],[-9,-2],[-28,2],[-9,-8],[-10,10],[-10,-2],[-10,-8],[4,-2],[-15,0],[2,8],[-7,2],[-5,6],[-5,-2],[-7,4],[-20,4]],[[8136,1183],[10,-4],[30,-2],[-2,-16]],[[8174,1161],[-4,-12],[4,-12],[-2,-8],[-23,-14],[-28,-4],[-3,-2],[-15,2],[0,4],[-6,0],[-2,8],[-12,-2],[1,8],[-4,6],[7,0],[7,6],[-1,4],[21,14],[-25,2],[-14,0],[-13,-2]],[[8062,1159],[-1,4],[16,2],[26,4],[-1,4],[6,0],[10,6],[9,0],[9,4]],[[6082,2925],[-12,-4],[-2,-6],[-16,-14],[-9,2],[-1,-2],[-16,0],[-10,-6],[2,-6],[-3,-8],[2,-6],[13,-12]],[[6030,2863],[-11,-6],[1,-8]],[[6020,2849],[-8,-2],[-15,-2],[-6,-5],[-26,-3]],[[5965,2837],[-7,8],[-20,4],[-2,8],[-15,0],[-2,6],[-10,4],[6,10],[-14,12],[-5,0],[-12,10],[-3,8],[-14,-2],[4,10],[11,0],[3,8],[17,10],[-3,8],[9,7],[19,2],[17,8],[-1,6],[7,0],[22,0],[6,-4]],[[8245,1397],[13,-4]],[[8303,1346],[5,-14]],[[8308,1332],[-9,2],[-7,-2],[-7,8],[-15,0]],[[8270,1340],[-18,8],[0,11],[-35,6],[-5,-2],[-8,10]],[[8204,1373],[6,-2],[1,8],[8,0],[12,8],[4,8],[10,2]],[[8198,1417],[18,0],[5,-4],[10,0]],[[8231,1413],[-2,-4],[7,-2],[0,-4],[9,-6]],[[8204,1373],[-16,-4]],[[8177,1387],[9,6],[-6,6],[3,8]],[[8183,1407],[15,10]],[[8270,1340],[-4,-4],[-8,-2],[2,-6],[-15,-6],[-15,0],[-3,-8],[-6,-2],[-2,-6],[-19,-8],[-7,-6],[-7,0]],[[8186,1292],[-12,14],[-17,0],[1,8],[-7,8],[4,2]],[[8430,1546],[3,14],[-4,0]],[[8429,1560],[2,8],[17,8]],[[8448,1576],[3,-2],[0,-12],[-4,-6],[3,-6],[12,-8],[11,4],[11,0],[0,-8],[5,-4],[8,4]],[[8497,1538],[4,-10],[14,-4],[2,-4],[10,0],[3,-4],[-2,-6],[11,-2]],[[8539,1508],[-5,-4],[4,-10],[-15,-2],[4,-6],[-14,-2],[-5,-6]],[[8508,1478],[-22,-2],[-8,16],[-14,6],[-11,0],[-9,2]],[[6785,4222],[3,4],[-20,-2],[1,6],[-8,2]],[[6761,4232],[1,6],[11,4],[-10,10],[13,14],[7,2],[2,-4],[15,0],[6,-2],[-2,8],[4,0],[16,-4],[13,-8],[21,4],[-4,-4],[1,-8],[-7,-2],[10,-2],[6,-12],[-11,0],[2,-8],[-18,-8],[-14,8],[-12,-4],[-26,0]],[[8602,1344],[10,19],[-5,0],[-1,8],[-11,-2],[-7,4],[6,4],[-3,16],[-18,4],[0,4],[-31,2],[-6,-10],[-19,-2],[-12,2],[5,6],[-12,12],[-21,-2],[-12,-4],[-2,-4],[-10,2]],[[8453,1403],[-4,4],[7,16],[8,-2],[6,12]],[[8501,1449],[7,4],[2,12],[5,2],[11,-2],[10,-8],[21,-6],[13,-6],[10,0],[14,4],[9,8],[6,-2]],[[8609,1455],[-5,-12],[10,-2],[5,-10],[-1,-8],[8,-4],[-2,-10],[4,-14],[8,-4],[-6,-6],[-6,-16],[5,0],[-1,-10],[6,-4],[-1,-15],[4,0],[-3,-8]],[[8634,1332],[-4,0],[-28,12]],[[7225,2320],[9,4],[18,4],[3,5],[10,4],[14,-1],[1,-4],[17,-8],[1,4],[10,5],[5,4],[-1,8],[-9,2],[19,12],[18,4],[5,6],[10,-2],[15,2],[7,6],[8,-2],[8,2],[8,-8],[40,-8]],[[7441,2359],[-5,-6],[2,-9],[24,-3],[14,-5],[-10,-10],[-12,0],[-3,-18],[1,-6],[15,6],[12,-6],[20,-4],[7,-8],[2,-6],[5,-4],[20,-6],[8,-4],[8,-14]],[[7549,2256],[1,-12],[-4,-10],[22,-12],[9,0],[-4,-6],[9,-11],[7,0],[-4,-6],[9,-4],[7,0],[-1,-4],[6,-10],[7,-4],[-2,-6],[-13,-6],[-11,0]],[[7587,2165],[-16,2],[-13,-2],[-12,-4]],[[7546,2161],[-3,12],[-6,-2],[0,8],[-8,12],[-6,0]],[[7523,2191],[-4,0],[-7,6],[-17,0],[-4,-4],[-7,4],[-8,-2],[-7,4],[-8,-2],[-5,-6],[-9,6],[-15,-4],[-12,0],[-9,-6]],[[7411,2187],[-12,-6],[-15,-2],[-8,-10],[4,0]],[[7380,2169],[-1,-14],[-4,-6],[2,-10],[16,-6],[18,-4],[14,-6],[21,-12],[-9,-10],[-21,2],[-5,8],[-12,4],[-7,-8],[-7,-12],[-23,4],[-5,-5],[1,15],[-4,10],[-8,0],[-17,4],[-5,2],[-21,-8],[-12,2],[-25,-2],[-7,-4],[1,-6],[-22,-4],[-14,8],[-1,-6],[7,-6],[-8,-5],[-8,5],[-7,-6],[-12,2],[1,-5],[11,-3],[0,-7],[7,-6],[-30,-2],[-19,0],[2,15],[-8,0],[-3,-5],[-13,5],[-11,0],[-1,-3],[-9,-4],[2,-4],[-10,6],[-9,-2],[-4,11],[-19,3],[0,5],[-6,16]],[[7076,2115],[7,4],[18,2],[-6,16],[-12,4],[-10,18],[17,-4],[1,6],[13,6],[11,0],[8,2],[1,4],[15,8],[-8,20],[-10,4],[5,8],[19,15],[-21,4],[-16,2],[-17,6],[9,8]],[[7100,2248],[33,12],[12,-2],[11,4],[18,2],[7,6],[-29,32]],[[7152,2302],[13,-2],[4,-2],[14,2],[7,4],[11,-2],[12,4],[3,10],[9,4]],[[6218,3248],[2,10],[6,6],[5,-2],[11,6],[0,10]],[[6242,3278],[-1,2]],[[6314,3288],[-4,-4],[6,-4],[-5,-6],[-18,0],[3,-6],[-3,-8],[8,0],[-4,-12]],[[6297,3248],[-4,-4],[-11,0],[-8,8],[-6,-4],[-8,2]],[[6260,3250],[-10,0],[-6,-12],[6,-2],[-28,-6],[-6,8],[7,4],[2,6],[-7,0]],[[6845,2788],[19,-2],[15,14],[2,4],[16,6],[-1,-4],[15,-2],[7,-4],[0,-6],[14,0],[14,-6],[-6,-16],[-17,-2]],[[6923,2770],[-2,6],[-20,2],[-13,6],[-6,0],[0,-12],[-24,-14],[-5,4],[-6,-4],[5,-4],[-8,-6]],[[6844,2748],[-2,4],[-9,-4],[-7,2],[-3,8],[-10,8],[-2,6],[6,4],[-2,4],[8,2]],[[6823,2782],[4,0],[13,8],[5,-2]],[[6923,2770],[5,-6],[22,-2],[9,-2]],[[6959,2760],[-8,-14],[-7,0],[2,-8],[-13,-6],[6,-4],[-22,-4],[-3,6],[-14,4],[-3,-2],[-27,0],[-7,14],[-11,0],[-8,2]],[[6598,2891],[-5,10],[8,4],[-9,2],[1,4],[-7,10],[3,4],[-6,6],[11,4],[0,8],[-26,21],[-3,6],[-7,2],[-1,8],[9,8],[-23,20],[-13,8],[-17,8],[-30,8]],[[6483,3032],[-1,8],[-9,6],[-9,2],[6,4],[14,-10],[5,8],[6,-2],[3,-12],[9,2],[1,8],[9,-8],[21,-8],[9,0],[1,12],[-42,14],[12,4],[8,11],[9,3],[0,4],[23,1],[4,7],[10,-3],[15,0],[-8,6],[-1,8],[-10,4],[-11,12],[-3,10],[18,16],[24,8],[21,12],[9,-4],[17,2],[-3,-2],[10,-4],[-3,-10],[7,0],[14,6],[5,-2],[5,10],[10,0],[13,14],[1,14],[-3,4],[10,10],[1,9],[8,0]],[[6718,3206],[0,-5],[-8,-8],[-1,-10],[31,-8],[5,-4],[34,-6],[-13,-4],[-8,2],[-14,-16],[-6,-4],[5,-4],[18,4],[10,-6],[0,-4]],[[6771,3133],[1,-14],[16,-6],[-1,-6],[-7,-4],[7,-10],[-2,-4],[18,0],[8,-11],[-11,-7],[-3,-5],[6,-6],[-3,-6],[14,-8],[21,-6],[14,-2],[0,-6],[-12,2],[-18,-2],[-4,-4],[1,-6],[12,-16],[29,-18],[0,-4],[13,-12],[5,-2],[3,-7],[17,-3]],[[6883,2893],[-8,0],[0,-4],[-9,2],[-3,-4],[-11,2],[4,-10],[-2,-4],[7,-8],[0,-4],[12,-8],[-5,-6],[-7,2],[-8,-4],[3,-7],[-4,-1],[5,-7],[-4,-3],[16,-1],[11,-8],[-10,0],[-2,-10],[-6,0],[-6,-8],[2,-8],[-13,-6]],[[6823,2782],[-13,8],[-12,2],[-17,0],[-15,2],[-16,10],[-12,-2],[-8,2],[-9,-4],[2,-4],[-7,-24],[3,-4],[-5,-6],[-10,4],[-2,8],[-7,6],[-6,-4],[-21,4],[-5,-2],[-3,-10],[-24,4],[-9,-2],[12,-14],[-2,-18],[-7,-6]],[[6325,1407],[8,0],[4,-4],[30,-14],[22,-6],[20,-2],[5,12],[-3,6],[16,2],[38,8],[18,10],[18,16],[-9,4],[0,8],[-8,6],[5,4],[0,6],[13,8],[-2,3],[21,5],[-5,5],[6,6],[9,4],[4,6]],[[6535,1500],[7,-12],[8,4],[4,-2],[11,2],[0,-8],[15,-11],[13,1],[9,-3],[8,3],[19,0],[19,2],[11,0],[-4,12],[42,2],[25,4],[15,4],[5,4],[5,-2],[8,2],[12,2]],[[6767,1504],[5,0],[12,6]],[[6784,1510],[-3,-12],[5,-16],[12,-7],[4,-10],[5,0],[2,-6],[8,-4],[2,-4],[19,-4],[4,-6],[1,-8],[-8,-10],[5,-6],[-12,2],[-13,-4],[-12,0],[-6,-4],[8,-4],[3,-4],[7,2],[-3,-14],[31,-14],[6,0],[4,-6],[17,-4],[-4,-4],[0,-7],[12,-6],[1,-4],[-12,-14]],[[6867,1332],[-17,8],[-11,0],[1,-6],[-5,-4],[-1,-10],[8,-8],[-2,-10],[4,-10],[-11,0],[-8,-4],[5,-4],[-3,-14],[9,0],[0,-6],[-5,-6],[-7,-4],[-5,4],[-29,6],[-13,-2],[-14,0],[-3,-10],[-9,0],[-13,-22],[-20,3],[-18,-4],[-16,-1],[-3,-11]],[[6681,1217],[-10,-6],[-2,-12],[-13,-4],[-17,0],[-44,8],[-44,0],[-6,2],[-12,2],[-11,25],[-7,4],[2,6],[-13,8],[5,6],[-8,4],[-6,-10],[-15,4],[-11,6],[-19,-6],[-10,0],[-23,6],[-11,-6],[3,-6],[-30,-4]],[[6379,1244],[-13,10],[-15,-6],[-5,4],[4,6],[-9,2],[-14,-4],[-11,8],[1,12],[8,12],[-4,14],[-15,14],[15,-2],[2,18],[-10,4],[-30,-2],[1,6],[-9,0]],[[6600,3409],[20,6],[16,6],[14,4],[6,-8],[14,0],[5,6],[-1,8],[-10,8],[4,9],[-9,7],[9,11],[-18,6]],[[6785,3490],[-14,-4],[-4,-6],[10,0],[-12,-12],[-10,-2],[8,-6],[15,-6],[-1,-4],[-31,-4],[5,-7],[0,-8],[9,-10],[-4,-2],[7,-6],[11,-2],[9,-8]],[[6783,3403],[-5,0],[6,-6],[-3,-6],[-9,-4],[-5,-4],[6,-8],[-13,-4],[-5,-8],[-34,-2],[-13,-4],[2,-4],[-35,2],[-5,4]],[[7235,3220],[0,4],[-17,-2],[-12,4],[10,10],[-10,2],[-14,-2],[-10,10],[-15,-2],[-10,2],[-1,-4],[-18,4],[-6,-2],[-17,2]],[[7115,3246],[3,6],[-14,0],[0,6],[-5,4],[-2,10],[9,12],[-19,8],[-11,-6],[-15,-4],[1,10],[5,6]],[[7067,3298],[3,-2],[15,0],[19,4],[16,-2],[13,2],[0,-6],[11,0],[4,8],[9,2],[11,10],[13,-2]],[[7181,3312],[-1,-10],[10,-6],[25,0],[25,6],[34,0],[-4,2],[7,4],[8,12],[-5,5],[27,-4],[12,8],[32,8],[-6,4],[2,8],[-5,2],[-17,-10],[-16,4],[-5,6],[3,4],[0,10],[4,8],[-5,6]],[[7306,3379],[10,4],[43,16],[9,8],[-7,2],[9,4],[7,10],[12,0],[5,-6],[24,4],[23,-16],[5,-8],[8,0]],[[7258,3387],[8,-6],[2,-12],[-2,-2]],[[7266,3367],[-15,4],[8,2],[-2,6],[6,0],[-5,8]],[[7269,3393],[1,8],[14,-8]],[[7284,3393],[-15,0]],[[7181,3312],[11,2],[-1,9],[10,2],[0,4],[19,6],[11,10],[12,2],[14,6]],[[7257,3353],[1,2]],[[7258,3355],[1,2]],[[7259,3357],[-1,6],[8,2],[1,16],[-8,6],[4,4]],[[7263,3391],[6,0]],[[7269,3391],[16,2]],[[7285,3393],[-1,-4],[15,-4],[7,-6]],[[7263,3391],[6,0]],[[7011,3381],[13,-4],[14,0],[12,-4],[13,4],[16,6],[1,4],[18,2],[8,8],[-2,6],[7,0],[-3,8],[19,0],[-5,4]],[[7122,3415],[15,4],[-2,8],[4,8],[5,0],[21,-6],[13,2],[15,4],[23,-10],[5,2],[1,8],[42,9],[14,-3],[17,2],[4,5]],[[7355,3452],[-2,-6],[8,-15],[1,-16],[-12,-8],[-32,-6],[-4,-4],[-18,0],[-12,-4]],[[7269,3393],[-11,-6]],[[7266,3367],[-8,-4],[-1,-10]],[[7067,3298],[-10,2],[-12,6],[2,10],[4,2],[20,1],[9,5],[-9,5],[2,4],[-9,4],[6,2],[-1,6],[-15,10],[-16,4],[-6,-2],[-5,6]],[[7258,3355],[1,2]],[[7285,3393],[11,4],[18,0],[15,6],[21,4],[14,10],[-3,14],[-7,15],[2,4]],[[9465,1256],[11,-4],[-4,-2],[13,-6],[10,2],[14,-2],[2,-4],[6,-2],[12,6],[14,12],[5,10],[29,0],[8,-6],[6,0],[12,-12],[6,2],[12,10],[11,0],[13,6]],[[9645,1266],[7,-14],[3,-12],[-1,-15],[2,-22],[-1,-12],[-5,-12],[-6,-6],[-16,-14],[-11,-4],[-22,-4],[-13,-8],[-1,4],[-14,-6],[0,-6],[-16,-2],[-15,-4],[1,-2],[-14,-2],[-30,-2],[-14,-2]],[[9479,1121],[-7,2],[-8,-2],[-10,4],[-1,8],[3,6],[-16,2],[-9,4],[7,10],[7,-2],[3,6],[21,10],[-3,6],[-17,-4],[-7,4],[-6,0],[0,4],[-6,2],[-4,-6],[-22,8],[4,10]],[[6318,2389],[-12,4],[-3,6],[-8,-2],[-1,4],[-25,-4],[0,4],[-10,0],[-3,4],[-13,4]],[[6243,2409],[3,8],[-6,2],[15,8],[1,8],[-4,4],[5,6]],[[6257,2445],[5,4],[7,-2],[13,-12],[12,-2],[9,-8],[8,0]],[[6311,2425],[-2,-8],[12,-4],[6,-8],[-2,-10]],[[6325,2395],[-7,-6]],[[6318,2389],[6,-4],[-6,-6]],[[6318,2379],[-6,2],[-20,0],[-5,2],[-6,-12],[-16,2],[-13,0],[-18,-4],[-9,0]],[[6225,2369],[-10,8],[-4,12],[-6,2],[3,6],[-7,2],[6,4],[21,6],[15,0]],[[8246,1439],[-1,-10],[-11,-6],[-3,-10]],[[8198,1417],[-5,10],[10,2],[-4,8],[-4,14]],[[8195,1451],[3,8],[13,2]],[[8017,1486],[-7,2],[-9,-2],[-11,10],[8,2]],[[7998,1498],[-3,8],[12,0],[0,8],[8,2]],[[8069,1516],[-6,-8],[6,-18],[-6,-2]],[[7945,1512],[-35,6],[-6,6]],[[7904,1524],[23,2],[0,4],[15,6]],[[7942,1536],[3,-2],[13,4],[14,2],[12,-2]],[[7998,1498],[-28,-2],[2,8],[-9,4],[-3,4],[-15,0]],[[7915,1486],[14,8],[3,6],[7,2],[6,10]],[[7954,1480],[-5,-2],[-7,6],[-9,-2],[-18,4]],[[7015,4387],[-23,2],[9,10],[6,12],[-4,9],[-8,0],[-1,7],[-9,8],[-13,1],[0,8],[-20,0]],[[6926,4488],[14,2],[1,10],[8,8],[-8,16],[9,4],[29,2],[13,10]],[[6992,4540],[20,3]],[[7012,4543],[12,-17],[11,-8],[9,-18],[6,-26],[-2,-2],[9,-12],[11,-10],[22,-14],[0,-2],[24,-17]],[[7114,4417],[-1,0]],[[7113,4417],[0,0]],[[7113,4417],[-9,-2],[-5,5],[-11,0],[-21,-7],[-13,0],[3,-10],[-11,-10],[-7,-4],[-13,0],[-11,-2]],[[4959,750],[15,-8]],[[4960,748],[-1,2]],[[5017,861],[6,0],[8,-7],[26,6],[22,1],[6,-5],[15,5],[-2,-7],[2,-6],[19,-2],[11,2],[5,-14],[26,2],[24,-6],[14,-8],[5,-6],[33,-6],[8,-8],[8,-2],[2,-16],[4,-8],[-3,-10],[-14,-8],[6,-12]],[[5248,746],[-12,-2],[-34,-3],[-33,-10],[-9,-6],[-12,-20],[-11,-8],[-13,-2],[-23,-4],[-21,-10],[2,-6],[-6,2],[-22,-2],[-1,2],[-20,2],[-14,4],[6,4],[1,8],[-7,8],[-7,4],[-5,12],[-14,16],[-5,2],[-26,15],[-5,0]],[[4957,752],[5,2],[-20,10],[10,12],[18,4],[11,6],[2,8],[-6,6],[-13,2],[-9,6],[-7,0]],[[8357,1542],[13,-6],[2,-10]],[[8376,1514],[15,-4],[6,-10],[-8,-2],[-12,-12],[-51,0],[-7,4]],[[8319,1490],[25,2],[8,2],[0,8],[-5,0],[-3,8],[-7,6],[3,2],[-4,12],[5,0],[-1,6]],[[8340,1536],[11,0],[-5,6],[11,0]],[[7219,1163],[20,10],[6,8],[17,4],[13,-4],[-3,8],[3,12],[12,4],[11,-2],[14,2],[21,-2],[25,2],[13,-4],[9,4],[2,4],[11,6],[2,-2],[15,4],[11,0],[16,2],[1,4],[22,0],[9,2],[22,-2]],[[7491,1223],[13,-18],[10,-8],[-6,-24],[-3,-4],[6,-6],[20,10],[12,-6],[4,-10],[10,-2],[-3,-6],[5,-2],[8,-8],[23,-6],[-3,-8],[-11,2],[6,-8],[-5,-4],[6,-4]],[[7401,979],[-18,11],[-15,-2],[-2,6],[-21,2],[-5,-4],[-16,2],[-12,-6],[-10,2],[0,14],[-8,2],[-1,6],[-8,0],[-6,20],[2,10],[5,6],[-3,12],[-9,2],[10,8],[-11,6],[-6,-2],[-8,8],[2,4],[-6,2],[0,6],[-12,10],[-1,9],[3,2]],[[7245,1115],[21,6],[0,4],[8,4],[-6,2],[-12,-2],[3,4],[-4,14],[0,12],[-14,-2],[-20,0],[-2,6]],[[8308,1332],[4,-14],[9,-20],[17,14],[11,-8],[-2,-6]],[[8347,1298],[5,-6],[-2,-10],[12,-24],[-6,-12],[-9,-6],[0,-4]],[[8347,1236],[-1,-7],[-8,-6],[4,-2],[1,-8],[13,-16],[-6,-8],[2,-10],[7,-10],[-5,-8]],[[8354,1161],[-22,-2]],[[8332,1159],[-27,0],[-5,-2],[-12,2],[-5,-2],[-21,2],[-10,-2]],[[8252,1157],[-7,4],[-21,0],[-8,-4],[-33,2],[-9,2]],[[8136,1183],[0,4],[-12,6],[-1,4]],[[8123,1197],[6,8],[8,0],[6,-4],[8,0],[0,4],[17,2],[6,4],[2,14],[-10,-2],[1,6],[-10,13],[7,2],[5,10],[-3,6],[14,2],[3,10],[-4,4],[1,14],[6,2]],[[7960,861],[-3,8],[-8,-2],[-16,0],[-3,4],[-1,14],[-5,4],[-7,10]],[[8019,911],[-3,-6],[9,-2],[-3,-4],[7,-8],[-1,-6],[7,-6],[-3,-2],[33,0],[3,-2],[-27,0],[-49,-8],[-9,-2],[-23,-4]],[[8071,907],[4,0],[5,-10],[7,-6],[12,-16]],[[8099,875],[-37,4],[-21,0],[-12,8],[0,6],[-6,6],[2,4],[-9,2],[2,4]],[[8102,3903],[40,-6],[7,-4],[12,-2],[13,-6],[15,-4],[13,0],[25,-10],[6,-6],[-5,-4],[-22,-6],[-35,0],[-28,-6],[-12,-10],[-4,-6],[-12,-2],[-9,-10],[-4,-13],[-3,-14],[0,-14],[1,-12],[24,-44]],[[7953,3681],[-8,0],[-9,-4]],[[7682,3593],[1,-8],[-7,-2],[-50,-8],[-2,10],[-8,6],[-3,12],[15,0],[5,8],[-8,10],[-14,8],[-5,-6],[-7,-2],[-6,4],[-25,0],[-12,-4],[-7,4],[-10,-6],[-5,-8],[-12,-4],[0,-8],[-9,-2],[-9,6],[-2,14],[-9,16],[-47,12],[0,-6],[-20,-2],[-11,-6],[-16,0]],[[7399,3631],[-3,4],[9,6],[0,6],[13,2],[1,2]],[[7419,3651],[3,10],[-23,0],[-5,2],[8,4],[3,10],[6,0],[0,6],[9,9],[-6,4],[5,5],[-4,5],[3,8],[-3,2],[7,8],[-12,6],[6,12],[6,8],[-4,2]],[[7418,3752],[13,2],[7,4],[8,0],[7,10],[8,2],[1,6],[19,-2],[16,6],[21,-2],[21,4],[-1,-4],[53,6],[10,4],[4,-8],[0,-8],[12,-4],[8,2],[4,-4],[21,2],[5,8],[-9,4],[0,8],[10,6],[17,0],[1,6],[12,9],[-14,8],[30,7],[12,0],[10,7],[21,10],[17,0],[3,4],[20,-2],[6,-4],[8,2],[8,-2],[29,12],[23,6],[-3,4],[14,4],[-5,10],[31,10],[-6,24],[9,2],[5,8],[26,2],[9,-4],[8,-10],[-1,-8],[14,0],[13,-6],[22,4],[0,-6],[9,2],[9,-10],[14,4],[23,0],[28,-2],[8,-4],[6,4],[10,18]],[[8508,794],[4,6],[-5,6],[8,4],[-4,4],[4,12],[-16,6],[4,10],[-4,8],[13,11],[15,2],[5,-2],[9,4],[8,-1],[10,1]],[[8632,850],[-10,-14],[-18,-4],[-14,-8],[-9,-10],[-14,-8],[-11,-12],[-16,-4],[-32,4]],[[6995,923],[7,4],[7,2],[15,10],[13,2],[-7,6],[4,2],[-8,10],[-11,2],[-13,8],[5,4],[-6,2]],[[7001,975],[4,4],[-11,5],[-13,0],[6,6],[-10,2],[1,4],[-9,4]],[[6969,1000],[4,10],[13,-2],[8,8],[10,14],[5,-2],[8,-10],[12,0],[2,-4],[5,6],[9,-2],[19,0]],[[7064,1018],[3,-2],[-5,-8],[19,0],[4,4],[13,0],[-13,-14],[-10,-4],[-9,-10],[6,-11],[11,0],[8,-8],[-2,-10]],[[7089,955],[-1,-4],[7,-8],[-27,-8],[-11,-6],[-4,-4],[4,-2],[-14,-6],[6,-4],[-3,-6],[2,-12],[-11,2],[-17,10],[-12,6],[-13,10]],[[5558,2885],[1,4],[-9,2],[7,4],[3,6],[-12,4],[10,0],[-8,4],[0,6],[-8,-2],[3,4],[-6,2],[6,6],[-24,8],[1,6],[6,-2],[6,8]],[[5610,3048],[-2,8],[-10,6],[7,2],[2,15],[-5,0],[1,8],[4,-1],[15,11],[11,4]],[[5633,3101],[5,-6],[-1,-12],[8,-8],[-8,-5],[7,-4],[28,-2],[7,4],[18,0],[8,-2],[37,4],[8,-4],[3,4],[9,1],[7,-3],[13,0],[5,5],[-3,6],[6,2],[21,-2],[5,-9],[15,3],[-1,-7],[12,-8],[-10,0],[-22,-6],[-14,0],[-11,-14],[19,-6],[11,2],[14,-4],[5,-10],[10,8],[0,8],[14,8],[13,0],[10,2],[-14,12],[9,8],[7,-2],[22,6],[7,4]],[[5912,3074],[5,1],[10,-11],[8,-6],[9,-10],[-13,-4],[13,-12]],[[5965,2837],[4,-5],[-1,-10],[-8,2],[-7,-4],[-29,-6],[-10,4],[0,4],[-18,-2],[-11,8],[-2,-20],[-11,-4],[-11,8],[-7,0],[-4,4],[-8,2],[-10,-8],[-9,0],[-11,6],[-1,16],[-7,0],[-2,8],[-14,-1],[-5,8],[-8,0],[-7,-2],[-5,2],[-25,-10],[-12,2],[-12,8],[-16,-11],[-10,0]],[[5688,2836],[-14,3],[-17,-2],[-7,8],[-18,0],[-5,2],[-3,-6],[-30,4],[-10,4],[-4,10],[-7,8],[-5,-2],[-7,4],[-2,8],[5,4],[-6,4]],[[8266,1582],[-11,4],[-35,0]],[[8220,1586],[-7,2],[10,4],[4,6],[-7,1],[2,8],[-6,2],[12,2],[6,10]],[[8234,1621],[2,-2],[12,-4],[6,2],[2,6],[31,0],[8,-2]],[[8295,1621],[-1,-2]],[[8273,1586],[-7,-4]],[[5319,3119],[1,2]],[[5320,3121],[-1,-2]],[[5354,3082],[-8,1]],[[5346,3083],[-5,2]],[[5341,3085],[-4,2]],[[5337,3087],[0,0]],[[5337,3087],[-1,0]],[[5336,3087],[0,0]],[[5336,3087],[-2,2]],[[5334,3089],[0,0]],[[5334,3089],[-6,4]],[[5328,3093],[6,6],[4,-6],[0,10],[7,2],[-24,10],[0,6]],[[5321,3121],[12,6]],[[5333,3127],[1,0]],[[5334,3127],[20,12],[14,-8],[11,2],[12,-10],[13,-2],[9,2],[19,6],[23,-4],[10,2],[11,0],[7,6],[11,-2]],[[5494,3131],[16,-4],[11,-6],[12,-2],[9,-4],[23,0],[5,6],[9,2],[-8,2],[2,4],[15,2],[23,-4],[17,-8]],[[5628,3119],[-2,-6],[10,-4],[-6,-4],[3,-4]],[[5401,3077],[-10,2],[-24,2]],[[5367,3081],[-13,1]],[[5354,3082],[0,0]],[[6815,3671],[3,8],[20,-2],[7,2],[15,0],[14,3],[2,-3],[18,0],[7,-4],[13,0],[9,6],[6,-2],[4,2],[-3,11],[5,4],[20,-2],[-1,8],[7,4],[14,3],[4,-3],[11,3],[12,-3],[15,4],[-1,-4],[11,0],[16,-5],[8,0],[-2,-11],[8,6],[6,-2],[-9,-2],[4,-6],[-2,-9],[-17,-4],[2,-8],[-2,-16],[8,-10],[-7,-4],[-33,-6],[10,-4],[0,-6],[14,-4],[3,-6],[-11,0],[8,-4],[23,-12],[-8,-2],[-2,-8],[3,-9],[-2,-12],[15,-8],[7,-10],[-4,-6],[-17,0],[-3,-12],[13,-2]],[[7056,3524],[-9,0],[-9,-4],[-18,0],[-17,-4],[-16,-2],[-20,-6],[-7,-4],[-10,4],[-15,-2]],[[6935,3506],[-14,6],[-38,0],[-8,8],[-11,0],[9,10],[-23,4]],[[6850,3534],[3,4],[10,4],[21,6],[4,6],[7,2]],[[6895,3556],[15,0],[14,-2],[7,2],[2,19],[26,4],[0,12],[3,4],[-21,-2],[-12,10],[-7,0],[-4,12],[-4,2],[-23,2],[-6,-2]],[[6885,3617],[-20,4],[1,18],[-10,2],[-15,4],[-5,6],[-28,8]],[[6808,3659],[2,12],[5,0]],[[8334,1433],[-7,2],[0,6],[-10,6],[-2,6]],[[8315,1453],[19,4],[-5,8],[10,-2],[2,4],[7,0],[4,-6],[10,-2],[10,8],[18,2]],[[8390,1469],[10,-4]],[[8400,1465],[-12,-6],[-3,-4],[6,-16],[-12,-14]],[[8234,1621],[-4,4],[-17,2],[1,-6],[-13,-4],[-3,4],[-12,-2],[-3,20],[-23,0],[4,4],[-1,8],[-14,4]],[[8149,1655],[0,2]],[[8295,1651],[0,-16],[3,-2],[-3,-12]],[[8131,1639],[9,4],[9,12]],[[8220,1586],[-9,0]],[[8211,1586],[-38,0]],[[8293,1689],[18,0],[9,-2],[1,-6],[7,6],[-1,8],[10,6],[6,-2],[4,6],[13,0],[-1,6],[-15,0],[-2,11],[19,4],[10,-1],[0,-14],[13,-6],[3,-6],[15,6],[15,0],[2,-6],[9,0],[6,-4],[23,2]],[[8430,1596],[-9,-4],[-15,-4],[-11,2],[0,-6],[-19,-2],[-10,2],[-14,6],[5,4],[-12,-2]],[[8071,1377],[-2,-12],[9,0],[13,-6],[7,-15],[-12,-6],[8,-6],[18,10]],[[8112,1342],[-9,-12],[0,-12],[-6,-6],[-10,-2],[-10,-8],[-25,2],[-8,-6]],[[8044,1298],[-9,-2],[-26,4],[-18,16],[-2,6],[6,6]],[[7995,1328],[15,8],[3,8],[18,15],[1,4],[22,12],[1,2],[16,0]],[[6990,2754],[3,8],[7,6],[5,10],[-3,6],[6,4],[10,-2],[12,4],[3,4],[-8,0],[-7,4],[11,0],[0,6],[-10,8],[5,8],[7,-2],[2,7],[-7,6]],[[7116,2752],[-6,-4],[7,-6],[-15,-2],[-13,-4]],[[7089,2736],[-13,2],[-8,-4],[-16,4],[-2,-2],[-11,-2]],[[7039,2734],[-2,4],[-7,-2],[-20,6],[2,4],[8,4],[-15,0],[-2,6],[-13,-2]],[[8385,1486],[10,8],[26,2],[11,2],[12,-4],[22,-4],[5,-6],[1,-8],[13,-7]],[[8413,1463],[-13,2]],[[8390,1469],[-1,11],[-4,6]],[[7878,1330],[11,4],[-2,16],[5,15],[7,6],[-9,10]],[[7890,1381],[21,18],[19,6],[8,-2]],[[7938,1403],[4,0],[19,4],[18,-8],[13,-12],[9,2]],[[8001,1389],[6,-4],[3,-12],[-6,0],[-3,-10],[-12,-15],[2,-4],[-2,-12]],[[7989,1332],[-5,-4],[-17,-6],[-6,-6],[-8,2],[-4,-4],[-13,2],[-7,-4],[-2,-10],[-9,-2],[-5,8],[-26,0],[-6,4],[-3,18]],[[4957,752],[2,-2]],[[7174,883],[-15,2],[-8,6],[-8,0],[-1,-8],[-20,-4],[-9,-12]],[[7113,867],[-3,-2],[-11,6],[-17,6],[-25,6],[-7,6],[5,4],[-5,6],[3,20],[8,4],[-5,4],[24,12],[11,0]],[[7091,939],[10,-10],[0,-12],[20,-10],[5,-2],[13,14],[17,0],[-1,6],[10,4],[20,2],[17,-8],[-2,-10],[7,-2],[1,-8],[27,0]],[[7235,903],[-2,-12]],[[7233,891],[4,-8],[-20,2],[-10,0],[-15,6],[-3,-4],[-8,0],[-5,6],[10,2],[-11,0],[2,-8],[-3,-4]],[[8792,1300],[-7,2]],[[8847,1340],[30,-6],[7,0]],[[8884,1334],[3,-6],[8,8],[5,-2],[11,0],[9,4],[24,-8],[-5,-2],[16,-20],[-4,-4],[2,-6],[7,-2],[11,6],[20,2],[8,-8],[21,-10],[13,-2],[13,18],[32,4],[8,0],[-4,-6],[15,0],[16,10],[8,2],[7,6],[5,0],[8,10],[10,2]],[[9151,1330],[5,4],[25,2],[-15,2],[0,4],[23,4],[17,2],[13,-2]],[[8920,1161],[-5,0],[6,10],[-14,0],[-4,-4],[-17,2],[-2,8],[-6,-4],[-5,2],[6,4],[-3,4],[-12,2],[-14,4],[1,6],[-9,8],[-17,6],[-7,8],[-7,0],[0,13],[5,8],[-7,0],[6,10],[1,8],[9,-2],[-9,8],[-2,10],[5,0],[13,18],[-6,6],[-13,2],[-1,-2],[-8,4],[-12,0]],[[7933,1441],[9,-6],[12,-2],[-12,-4],[3,-2],[-12,-6],[3,-6],[-6,0]],[[7930,1415],[-13,0],[-12,10],[-12,-4],[-9,2],[0,4],[-8,0],[2,4],[-10,0],[-3,16]],[[7865,1447],[15,-4],[1,4],[20,10],[10,2],[-4,4],[-2,8],[10,15]],[[5739,1526],[5,8],[4,20],[6,0],[20,16]],[[5774,1570],[0,-6],[20,-2],[-19,-8],[-2,-4],[17,-6],[12,4],[24,-4],[7,6],[15,-8],[9,2],[15,-2],[4,4],[13,0],[4,-6],[-26,-14],[13,-8],[7,0],[10,4],[14,-4],[7,-8],[-9,-8],[5,-6]],[[5914,1496],[-7,-10],[5,-7],[-5,-3],[2,-11],[-7,-4],[-7,0]],[[8083,1552],[10,2],[10,6],[2,8],[-11,8],[6,0],[6,6],[5,0],[7,6]],[[8155,1582],[-4,-6],[0,-12],[-5,-2],[-4,-10]],[[8142,1552],[-2,0]],[[8140,1552],[-16,-6],[-9,-8],[-15,-2]],[[9127,963],[10,4],[-9,23],[-8,-2],[-3,6],[-14,-11],[-10,0],[-6,-4],[0,7],[-11,8],[-16,16],[-8,0],[2,12]],[[9479,1121],[-15,-4],[-6,-10],[-8,0],[-3,-5],[-18,-4],[-25,0],[-35,-4],[-40,-6],[-26,-10],[-1,-2],[-30,-16],[-13,-10],[-14,-14],[-13,-32],[2,-16],[14,-31],[-2,-4],[-7,-2],[-16,0],[-24,2],[-72,10]],[[5761,1784],[14,12],[10,-2],[4,4],[11,4],[8,8],[10,-2],[4,-4],[8,4],[-6,6],[9,2],[24,0],[11,-2],[16,4],[4,8],[9,10],[7,-2],[27,4],[7,6],[26,4],[-4,13],[-5,6],[-6,0],[-11,8],[-2,10]],[[5936,1885],[4,10],[-9,6],[-16,0],[-10,4],[8,4],[-3,14],[5,6],[18,8],[-6,4],[-8,0],[-5,10],[8,2],[4,8],[14,2],[2,-8],[24,0],[0,-16],[14,-4],[23,2],[5,16],[13,0],[6,4],[21,4]],[[6048,1961],[-1,-8],[12,-6],[14,0],[3,-16],[-1,-12],[10,0],[12,-8],[12,4],[8,0],[27,-4],[18,18],[12,8],[8,2],[16,-2],[10,-4],[10,4]],[[6218,1937],[-1,-8],[-14,-10],[-4,-6],[-16,-8],[-2,-6],[-13,-4],[-2,-10],[5,-6],[-7,-2],[-20,-6],[-11,2],[-8,-8],[11,-24],[10,-5],[-10,-4],[0,-4]],[[6136,1828],[-7,0]],[[6129,1828],[-8,-12],[-13,-4],[8,-12],[-10,-6],[-4,-6],[-5,2],[-4,12],[-17,0],[-10,4],[-20,-6],[-2,-10],[5,-4],[-12,-4],[1,-12],[3,-6],[10,-2],[-4,-6],[-15,-2],[-13,6],[-19,4],[-12,10],[-6,2],[-13,-2],[-10,-6],[-8,-10],[2,-10],[9,-6],[11,2],[24,-6],[-2,-6],[-29,-10],[-12,-7],[-23,-8],[-5,-6],[-15,-6],[-11,-18],[-13,-2],[-7,-4],[-20,-4],[-6,-6],[-19,-2],[-1,-4],[-22,-6],[-11,-6],[-16,-10],[2,-6],[-25,-22],[2,-13],[-2,-6],[-10,6],[5,6],[-12,11],[2,6],[-4,4],[-10,2],[14,14],[-4,2],[-5,-4],[-11,2],[5,6],[9,-2],[12,4],[2,2],[-15,6],[4,8],[-4,6],[-10,4],[12,0],[2,6],[-10,6],[-1,10],[-6,6],[14,4],[2,6]],[[5743,1707],[6,12],[-8,3],[-9,10],[7,12],[-2,4],[5,6],[-8,8],[6,6],[12,0],[-1,12],[10,4]],[[5415,3601],[8,4],[15,0],[1,-2],[23,0],[-9,12],[3,8],[-9,2],[-4,6]],[[5443,3631],[22,2],[7,-8],[10,-2],[7,6],[10,0],[10,2],[1,4],[9,2],[6,-4],[4,2],[13,-2]],[[5542,3633],[3,-4],[-12,-2],[-3,-6],[7,-4],[15,2],[10,-2],[-3,-6],[-9,-4],[5,-2],[23,2],[5,-6],[13,-6],[10,-10],[28,-16],[4,-4],[28,2]],[[5666,3567],[0,-13],[-16,2],[7,-10],[-5,-8]],[[5652,3538],[-24,-2],[-40,-8],[-25,-6],[-59,-6],[-30,0],[-13,2],[-13,0],[-17,4],[-13,-2],[-14,4],[-12,6],[-4,0],[-16,16],[-1,10]],[[7565,3083],[-1,3]],[[7564,3086],[9,13],[-13,10],[16,14],[2,-6],[8,0],[4,10],[-7,6],[2,14],[-7,-2],[-7,6],[9,8],[-8,6],[6,6],[-15,12],[-5,-4],[-11,2],[5,10],[10,2],[-9,9],[7,3],[1,7],[-9,4],[-9,12],[-13,4],[-9,6],[2,6],[-3,8],[9,2],[9,8],[16,10],[-2,10],[13,4],[-3,8],[7,6],[2,6],[14,0],[9,8],[3,10]],[[7597,3324],[35,-5],[13,1],[12,-4],[17,2],[33,-2],[-5,-4],[3,-10],[-3,-8],[-5,-2],[0,-14],[7,-8],[-3,-2],[16,-2],[28,0],[31,2],[77,14],[-14,4],[-1,8],[6,8],[-5,8],[10,4],[13,0],[18,0],[18,2],[19,5],[-2,12],[-5,4],[-9,0],[-8,10],[-12,0],[-31,-6],[-25,-2],[10,8]],[[8180,3246],[-10,0],[-30,2],[-7,4],[-21,-10],[-12,-2],[-2,-4],[10,-14],[-11,-4],[-2,-4],[-9,-2],[6,-10],[16,-11],[-14,-12],[-2,-4],[-27,-12],[-5,0],[5,-10],[9,-6],[12,0],[10,-12],[6,-4],[1,-6],[-7,-6],[-13,-6],[20,-2],[3,-12],[-14,-2],[-24,-10],[-15,-8],[-9,3],[-9,-4],[0,-10],[6,-4],[-4,-8],[-18,-10],[-3,-4],[11,-14],[2,-10],[-1,-4]],[[8028,3014],[-19,2],[-11,2],[-4,10],[-12,8],[1,4],[-10,6],[-4,12],[-15,-2],[-13,6],[-32,-2],[-19,0],[-28,-2],[-31,-2]],[[7831,3056],[0,18],[-3,4],[-9,0],[-7,4],[-24,0],[-53,-8],[-16,9],[-11,3],[-9,-3],[-16,-2],[0,-10],[-4,-1]],[[7679,3070],[-13,-2]],[[7666,3068],[-21,18],[-23,0],[-21,-4],[-1,-9],[-39,2]],[[7561,3075],[-1,6],[5,2]],[[5500,3175],[1,6],[13,6]],[[5514,3187],[7,2],[13,8],[-6,3],[2,4],[8,-2],[8,4],[-2,6],[-8,4],[5,4]],[[5541,3220],[4,-4],[18,-6],[19,4],[19,-4],[11,4]],[[5612,3214],[4,-4],[20,0],[6,-1],[-12,-3],[1,-5],[9,-4]],[[5640,3197],[-4,-14],[-6,-8],[-21,-2],[-10,-6],[-4,-10],[-9,0],[6,-4]],[[5592,3153],[-9,-6],[-24,2],[-17,6],[-21,8],[-21,12]],[[6694,4635],[19,0],[24,-6],[18,6],[8,4],[17,2],[12,-6],[9,2],[9,-4]],[[6810,4633],[-3,-6],[7,-4],[-7,-4],[14,-4],[3,-8]],[[6824,4607],[-13,-2],[-11,-4]],[[7263,2804],[-3,4],[-12,6],[0,2],[-17,6],[-6,11],[3,3],[-10,3],[-9,-2],[1,10],[-10,0]],[[7200,2847],[8,10],[-18,4],[-5,2]],[[7185,2863],[17,6],[8,-6],[9,0],[2,12],[22,-8],[8,0],[-5,-22],[12,2],[19,-2],[31,6]],[[7308,2851],[8,-8],[6,2],[17,-8]],[[7339,2837],[-11,-4],[-4,4],[-11,0],[-4,-4],[5,-11],[0,-8],[-8,-8],[-21,0],[-10,4],[-12,-6]],[[8890,1397],[-4,-8],[-7,2],[3,6],[8,0]],[[8821,1375],[6,10],[-1,8],[10,-2],[3,4]],[[8839,1395],[7,-2],[15,-6],[14,0],[0,-4],[21,-8],[7,4],[-2,6],[15,0],[-10,-6],[2,-6]],[[8908,1373],[-3,-6],[11,-2],[-13,-15],[-19,-16]],[[6099,1788],[7,2],[2,4],[9,4],[-7,14],[12,4],[7,12]],[[6136,1828],[21,6],[-2,-6],[22,-4],[17,6],[3,-12],[18,-8],[-10,-10]],[[6205,1800],[-13,-8],[-9,-8],[-12,-6],[-4,8],[-10,-4],[-11,0],[-7,-4],[-6,-12],[-7,2],[-28,14],[1,6]],[[7174,883],[3,2],[14,-2],[3,2],[8,-4],[-1,-6],[5,-2],[4,-8],[17,-9],[9,-16],[-17,-12],[-9,-2],[-15,8],[-27,4],[-11,6],[-12,12],[-14,7],[-18,4]],[[7831,2524],[-9,4],[-19,18],[5,2],[11,-8],[12,2],[0,4],[34,4],[19,12],[5,0],[6,17],[-2,4],[-14,0],[-6,4],[-12,-1],[-37,3],[-8,6],[-31,4],[3,14],[-20,6],[-11,2],[-1,4],[-17,2],[-14,-4],[-5,10],[-28,-4],[-25,2],[-7,12],[-4,12],[3,2],[-9,6],[3,12],[-2,4],[-13,12],[-8,8],[-4,10],[-27,23],[-6,12],[-23,6],[8,10],[-5,2],[-10,0],[-1,2],[11,18]],[[7573,2782],[21,0],[5,-16],[10,-4],[16,2],[14,4],[17,-8],[1,8],[5,0],[-3,8],[2,4],[6,0],[10,12],[8,0],[6,-6],[10,0],[7,12],[31,-4],[24,-2],[10,18],[14,-2],[13,2],[9,4],[7,-12],[15,6],[7,-12],[8,-8],[-7,-2],[-1,-8],[-7,0],[13,-12],[9,-2],[2,-4],[24,0],[7,-12],[22,4],[30,6],[17,0],[5,4],[1,12],[34,2],[30,-6],[16,-2],[19,-4]],[[8060,2764],[-13,-26],[11,-4],[1,-4],[-13,4],[-5,-10],[0,-18],[3,-7],[6,-36],[6,-14],[0,-6],[-44,-26],[11,-8],[15,-16],[0,-6],[-37,-17],[-43,-10],[2,-10],[-6,-2],[4,-6]],[[7958,2542],[-14,-4],[-18,-2],[-8,-6],[-28,0],[-19,6],[-3,-4],[-19,0],[1,-4],[-9,0],[-10,-4]],[[8747,1447],[8,-2],[9,-8],[11,-2],[3,-4],[-3,-8],[3,-4],[-2,-10],[-14,-2],[3,-4],[-9,-4],[-1,-4],[-15,0],[5,-4],[-9,-6],[-16,0],[-7,-12],[-4,0],[-7,-10],[-11,-10]],[[8681,1342],[-9,-2],[-1,-8],[-37,-4],[0,4]],[[8609,1455],[13,-14],[19,-4],[58,-2],[20,4],[10,0],[7,4],[11,4]],[[8199,3387],[20,-8],[12,-4],[6,6],[10,0],[9,-6]],[[9870,2419],[-8,8],[1,6],[-11,0],[-4,4],[6,6],[8,0],[13,8],[0,11],[16,4],[-2,5],[2,11],[11,2],[21,4],[28,10],[9,-6],[3,-12],[6,-12],[2,-27],[6,-16]],[[9977,2425],[-13,-2],[-2,4],[-14,4],[-8,6],[-11,0],[-5,4],[-6,-2],[-10,2],[-9,-6],[-20,-6],[-6,-4],[5,-4],[-8,-2]],[[9860,2512],[-1,4],[16,0]],[[9885,2514],[22,0],[2,-2],[16,0],[7,-6],[17,8],[10,0],[5,-6],[-5,-6],[2,-4],[-8,0],[1,4],[-11,2],[-9,0],[-16,-10],[-15,-2],[-8,-4],[-9,-10]],[[9869,2599],[9,8],[14,6],[23,4]],[[9915,2617],[23,-22],[11,-23],[15,-22],[3,-10],[7,-10],[8,-20],[-6,-20],[0,-27],[-5,1],[-7,16],[-1,10],[-5,6],[5,16],[-7,4],[-11,-2],[-10,-6],[-7,0],[-3,4],[-18,2],[-27,0],[-5,2],[-17,0],[1,-2],[-8,-6],[-9,2],[-6,4],[0,6],[-23,0],[-3,4],[2,8],[-11,2],[5,14],[-8,6],[-3,12],[-5,8],[10,5],[12,0],[12,8],[21,4],[16,3],[8,5]],[[8282,1474],[8,-5]],[[8290,1469],[-6,-2],[-2,7]],[[8294,1459],[-10,6]],[[8284,1465],[8,6],[13,3],[4,6],[-5,8],[7,2],[10,-6],[9,-4],[15,2],[17,0],[18,0],[5,4]],[[8315,1453],[7,6],[-1,4],[-15,-2],[-13,0],[1,-2]],[[7790,1276],[13,-10],[-1,-10],[14,2],[0,-10],[-18,-6],[0,-4],[-8,-4],[0,-4],[10,-9],[21,-2],[1,-6],[-3,-2],[2,-12],[10,0],[6,-6],[19,2],[12,-4],[13,8],[11,-8],[12,-2],[4,-12],[0,-16],[-3,-8],[4,-8],[-4,-2],[-1,-16]],[[7904,1127],[-20,-6],[0,4],[-34,-6],[-13,2],[-3,-4]],[[7772,1109],[4,4],[3,14],[12,10],[-3,20],[13,10],[-1,6],[-6,2],[5,8],[-8,12],[-6,0],[-7,14],[-12,6],[-12,-2],[-3,-10],[-15,2],[6,8],[-6,4],[-22,4],[-7,-6],[-11,0],[-2,-6],[8,-2],[-3,-8],[-16,-8],[-3,8],[-13,14],[-4,-2],[-13,-2],[-8,-4],[-12,4],[-2,8],[-13,-2],[-11,-4],[-14,8],[-2,8],[6,5],[-4,2]],[[7590,1234],[10,2],[21,2],[16,0],[-8,2],[-2,6],[7,0]],[[7634,1246],[47,8],[-3,6],[5,0],[-5,8],[23,12],[-3,4],[9,0],[4,6],[14,0],[4,2],[18,-8],[14,-4],[8,-4],[15,-2],[6,2]],[[8206,1546],[8,4],[-2,4],[30,2],[5,2]],[[8247,1558],[3,-6],[13,-10]],[[8263,1542],[1,-8],[-23,0],[3,-8],[-11,0],[-1,2]],[[8232,1528],[-2,6],[-11,2],[-1,6],[-7,0],[-5,4]],[[8226,1528],[6,0]],[[8263,1542],[14,0]],[[8277,1542],[13,-8]],[[8290,1534],[0,-8]],[[8224,1504],[1,6],[-12,6],[10,4],[3,8]],[[6296,2347],[2,6],[14,8],[-12,6],[-8,0],[3,4],[20,4],[3,4]],[[6325,2395],[12,0],[5,-2],[7,2],[2,-4]],[[6351,2391],[8,-6],[-4,-8],[8,2],[8,-8],[2,-10]],[[6456,3567],[12,-5],[18,-2]],[[6433,3566],[23,1]],[[7482,3476],[10,-2]],[[7486,3490],[12,6],[0,12],[-7,8],[-8,0],[-14,-8],[-15,4],[-23,0],[0,6],[-14,-2],[-19,2],[-15,2],[-1,10],[-10,2]],[[7372,3532],[19,4],[13,4],[11,6],[-2,8],[-6,6],[8,15],[-6,4],[14,14],[-20,6],[0,8],[-6,10],[2,14]],[[7955,3581],[0,-4],[6,-6]],[[7961,3571],[-31,-1],[2,-20],[-9,-2]],[[7923,3548],[-9,-6],[-9,0],[-4,-10],[19,0],[-8,-2],[-10,-12],[-37,-2],[-9,2],[5,-16]],[[7861,3502],[-22,0],[-42,-6],[-15,-2],[-22,6],[-13,8],[-2,4],[-16,2],[-19,2],[-8,-2],[-41,-8],[-15,-12],[-10,-4],[-23,4],[-20,0],[-31,-10],[-6,0],[-13,8],[-15,2],[-14,-4],[-18,-12],[-8,-4],[-11,12],[2,4]],[[5640,3197],[7,3],[8,-2],[12,6],[5,6],[-2,6],[16,-2],[12,0],[3,-8],[21,-5]],[[5722,3201],[-6,-3],[0,-13],[4,-6]],[[5720,3179],[-7,0],[-16,-6],[-9,0],[-6,-6],[-14,2],[-16,-2],[-12,-10],[-1,-8],[-5,-4],[-11,-2],[-24,10],[-7,0]],[[5663,3137],[-9,8],[-1,6],[8,12],[12,2],[19,-2],[13,6],[9,6],[23,-2]],[[5737,3173],[1,0]],[[5738,3173],[-15,-4],[7,-14],[-3,-6],[-13,2],[-16,-8],[16,-10],[-2,-4],[-21,6],[-15,-6],[-13,8]],[[8087,1514],[0,-8],[19,-24],[12,-7]],[[8091,1471],[-4,5],[-16,0]],[[8140,1552],[0,-4],[12,-10],[-6,-2],[8,-8],[-2,-8]],[[8152,1520],[-13,2],[-18,-2],[-4,-8],[-5,4],[-13,0],[0,-4]],[[8099,1512],[-8,2]],[[7225,2320],[-9,13],[-7,6],[20,10],[4,6],[22,4],[13,14],[-8,6],[1,10],[-4,10],[15,2],[12,0],[5,4],[-3,12],[-9,2],[1,6],[-5,6],[6,4],[10,14],[-5,4],[-8,-2],[-1,-4],[-10,0],[-11,9],[-20,0],[-7,2],[-3,-5],[-7,3],[2,4],[-11,10],[0,6]],[[7208,2476],[16,2],[0,4],[16,2],[3,-2],[13,14],[0,6]],[[7256,2502],[19,-4],[3,6]],[[7278,2504],[0,-4],[11,-6],[-3,-4],[19,-4],[16,2],[14,10],[8,-2],[2,-6],[-7,-12],[51,-16],[13,6],[7,-2],[3,-6],[10,-5],[-8,-6],[8,-6],[5,-18],[28,-8],[3,-4],[-6,-6],[6,2]],[[7458,2409],[4,-16],[-4,-4],[-12,0],[1,-4],[10,-6],[2,-10],[-7,0],[-11,-10]],[[8466,1780],[21,-2],[2,-10],[5,-8],[11,-8],[14,6],[14,-6],[1,-12]],[[8320,1726],[11,10],[10,2],[15,0],[9,6],[38,0],[4,4],[15,2],[8,6],[20,0],[8,16],[15,4],[-9,0],[2,4]],[[6824,3718],[-16,2],[-4,4],[6,2],[-4,6],[1,8],[-14,-2],[-8,8],[-8,0],[-11,8],[-18,2],[11,14],[0,6],[-5,0],[0,6],[8,4],[18,-2],[2,12],[-2,4],[7,6],[-6,3],[13,8],[7,0],[13,-11],[7,0],[8,-4],[17,2],[2,5],[18,4],[8,3],[8,-1],[11,9],[0,5],[10,-1],[9,-4],[11,0],[17,8],[12,3],[7,6],[-2,8],[10,0],[10,4],[14,-2],[-1,-4],[8,0],[19,-8]],[[7017,3839],[4,-4],[26,-2],[13,-12]],[[7060,3821],[-4,-4],[-8,2],[-15,-6],[-6,3],[-11,-5],[-9,0],[6,-5],[-7,-2],[-4,-6],[-6,0],[-15,-4],[1,-10],[-7,-2],[-13,0],[-5,-10],[-10,0],[-5,6],[-6,0],[-4,-8],[-5,0],[2,-8],[-22,-10],[-19,2],[-10,-2],[-2,-4],[5,-6],[-22,-4],[-10,-10],[6,-6],[-6,-6],[-8,2],[-8,-2],[-9,2]],[[7953,1596],[5,3]],[[7958,1599],[12,3],[31,13],[12,-4]],[[8013,1611],[0,-4],[37,-29]],[[8001,1562],[-13,6],[9,4],[1,6],[-14,-4],[-3,-2],[-12,6]],[[7969,1578],[-5,8],[-11,10]],[[7942,1536],[-6,16]],[[7936,1552],[5,2],[1,8],[9,10],[-5,6],[9,6],[14,-6]],[[7114,4417],[-1,0]],[[7113,4417],[24,-10],[33,-10],[8,-4],[-8,-2],[-9,6],[2,-6],[-8,-4],[0,-10],[8,-8],[7,-10],[18,-10],[-4,-4],[4,-10],[-23,0],[-12,-8],[-18,0],[-3,2],[-27,0]],[[7105,4329],[-16,-2],[-11,4],[-19,0],[1,6],[-5,0],[-13,10],[-12,-2],[0,-6],[-6,-6],[-2,4],[-19,4],[-10,4],[-13,0]],[[6980,4345],[18,6],[12,-2],[8,2],[-4,14],[12,6],[1,14],[-12,2]],[[9233,1768],[9,-4],[24,-2],[5,-6],[-15,-8],[-26,-6],[-16,-6],[-18,-2],[-23,2],[-4,4],[2,6],[12,6],[6,2],[4,6],[19,6],[21,2]],[[9165,1752],[-5,8],[-11,0],[-9,6],[-6,10],[18,14],[-1,6],[6,0],[3,6]],[[9219,1814],[-2,-2],[27,-10],[2,-8],[-3,-10],[6,-8],[-15,4],[-17,2],[22,-6],[19,-10],[-7,0],[-12,4],[-26,-2],[-19,-6],[-8,-6],[-15,-6],[8,10],[-11,-10],[-3,2]],[[9489,1852],[12,-5],[0,-7],[-12,-2],[-3,11],[3,3]],[[9117,1848],[-50,-12],[-18,2],[-4,-6],[-6,2],[-6,-2],[-2,9],[-9,-3],[-5,-14],[-9,-4],[-14,4],[6,2],[0,4],[-10,8],[1,4],[-13,7]],[[9057,1911],[5,-4],[26,0],[1,4],[14,0],[11,-4],[16,0],[5,6],[12,-2],[10,2],[3,4],[8,-2],[27,4],[2,-4],[15,0],[19,6],[2,-6],[7,-2],[-4,-6],[7,-2],[22,4],[8,-6],[11,-4],[10,4],[13,-2],[0,4],[10,-2],[1,-4]],[[9318,1899],[8,-6],[16,0],[39,-6],[13,0],[21,6],[15,0],[5,-4],[11,-2],[16,2],[14,-2],[13,0],[13,8],[15,-2],[16,-8],[11,8],[1,-8],[-8,-2],[-12,-12],[-7,-4],[-8,-14],[-5,-4],[-9,-1],[-8,5],[-18,-5]],[[9331,1778],[-5,-8],[-19,-6],[-24,2],[-4,-2],[-19,10],[-9,10],[2,10],[-4,8],[-31,8],[2,6],[-12,8],[-3,6]],[[9127,963],[-55,8],[-15,0],[-10,-2],[3,-4],[-10,0],[-33,-12],[-24,-14],[-12,-4],[-22,-18],[-18,-6],[-10,0],[-15,-6],[-15,0],[-17,-6],[-8,0],[-24,-4],[-22,0],[-31,-6]],[[7376,881],[13,-4],[4,-6],[-6,-6],[1,-7],[-5,3],[-7,-9],[10,2],[-1,-12],[10,-8],[11,0],[1,-4],[-6,-2],[-27,6],[-29,2],[-21,2],[-2,8],[7,-2],[11,0],[15,8],[1,8],[6,9],[-4,4],[10,6],[8,2]],[[7325,883],[0,0]],[[7325,883],[0,0]],[[7294,901],[4,4],[2,10],[7,4],[8,0],[6,2],[12,-2],[14,18],[6,-4],[13,-12],[10,0],[8,-6],[-3,-4],[9,0],[15,6]],[[7411,891],[-5,-2],[-14,0],[-6,-2],[-16,2],[-5,-6],[-31,8],[-8,-6]],[[7326,885],[-4,6],[2,6],[-19,2],[-11,2]],[[7865,1447],[-15,2],[-3,2],[-11,0],[-20,8]],[[7816,1459],[11,17],[9,6]],[[7840,1496],[34,-2],[-1,6],[7,4],[-4,4],[8,2],[-3,10],[23,6],[0,-2]],[[6257,3210],[-3,6],[14,0],[-5,6],[3,4],[-11,0],[1,6],[9,6],[-5,12]],[[6297,3248],[8,-2],[-2,-6],[11,-2],[18,6],[16,-6],[12,4]],[[6360,3242],[7,-4],[-4,-6],[18,-4],[12,0],[-4,-10],[-8,-10],[0,-6],[-8,-2],[-10,-9],[-10,0],[3,-4]],[[6356,3187],[-9,4],[-14,-6],[-5,-8],[-15,-2],[-19,8],[-8,0],[-20,-4],[-3,4]],[[7847,1808],[8,2],[4,-6],[11,4],[6,-6],[8,4],[14,-4],[0,2],[11,-2],[8,-6]],[[7917,1796],[-12,-4],[-3,-14],[6,-2],[-7,-2],[-8,-8],[14,-4],[6,-6],[-8,-6],[-9,2],[-13,-4],[9,-10],[1,-8],[6,-2],[-3,-11],[6,-4],[-6,-4],[5,-4]],[[7901,1705],[-20,-8],[3,-4],[-10,-2],[7,-12],[2,-10]],[[7883,1669],[-13,-4],[-12,0]],[[7858,1665],[-3,0],[-14,26],[6,4],[-3,6],[-13,6],[-29,8],[3,4],[-24,11],[1,14],[-9,6],[-12,6],[-16,2],[2,8]],[[7775,1784],[16,-12],[3,-4],[13,-4],[2,2],[15,8],[-2,6],[-7,2],[4,2],[5,8],[10,0],[1,6],[11,0],[7,2],[-6,8]],[[6864,3395],[5,4],[-1,6],[7,6],[-11,6],[10,6],[-12,12],[-11,-6],[-8,8],[16,5],[9,10],[11,3],[0,7],[13,2]],[[6892,3464],[5,-8],[12,0],[23,8],[5,4],[14,0],[-7,4],[11,8],[20,4],[-8,4],[7,6],[20,0],[14,-4],[-3,-8],[5,-10],[11,0],[35,-22],[16,-13],[5,4],[24,0]],[[7101,3441],[1,-8],[11,-6],[9,-12]],[[8013,1611],[10,-2],[20,4],[6,2]],[[7339,1457],[-6,-2],[-13,4],[-12,6],[2,8],[-13,7],[-7,0],[-30,-6],[-13,4]],[[7247,1478],[-10,18],[-6,2],[-14,-2],[-7,4],[-2,8],[9,8],[-6,10]],[[7211,1526],[-6,6],[4,10],[16,8],[-1,10],[6,16],[5,8],[0,12],[-25,3],[-13,12],[-9,-2],[-15,0],[3,12],[-3,4],[-9,6],[-14,0],[-6,-4],[-1,-10],[-4,-2],[-12,0],[-22,4],[-7,4],[-21,-6],[-7,0],[7,12]],[[7077,1629],[-4,8],[14,4],[18,-4],[22,8],[6,12],[-13,18],[2,4],[-9,8],[1,4]],[[7114,1691],[19,-12],[4,4],[17,-4],[10,2],[5,6],[-6,6],[14,4],[-3,4],[-14,0],[-2,8],[1,12],[8,0],[6,7],[-17,2],[-12,4],[-10,0],[-32,12]],[[7102,1746],[10,4],[-9,6],[10,8],[3,6],[-3,8],[-16,-4],[-5,4],[-9,2],[7,6],[-10,4],[-19,2],[-8,0],[-4,6],[-15,2],[-11,-6]],[[7023,1794],[-4,2],[3,8],[-2,6],[5,6],[9,-2],[17,2],[10,-2],[2,4],[-7,4],[15,6],[-2,6],[-7,2],[-1,5],[5,7],[-10,1]],[[7408,1609],[-13,-4],[-1,-9],[11,-2],[-5,-6],[0,-6],[10,-4],[3,4],[10,-2],[3,-4],[-8,-6],[-16,-6],[3,-12],[24,-10],[3,-4],[8,0],[-1,-10],[6,0]],[[7445,1528],[-3,-8],[21,-12],[-3,-10],[11,-8],[-10,-2],[-13,-4],[-4,-9],[-12,-4],[0,-6],[-16,-8]],[[7416,1457],[-18,-8],[-9,2],[8,6],[-1,4],[6,2],[-6,11],[-9,6],[-5,0],[-10,-5],[-9,-2],[-11,2],[-7,-6],[1,-6],[-7,-6]],[[5761,1784],[-6,0],[-1,6],[-13,2],[-21,-2],[-4,10],[-7,0],[-2,-4],[-8,0],[-4,8],[-8,-8],[-11,-4],[-1,4],[-16,6],[-12,14],[-9,4],[9,12],[-15,4],[-17,5],[-3,6],[-10,2],[-5,6],[-14,0],[-1,8],[-8,2],[-16,-2],[1,4],[14,2],[-12,6],[-11,0],[-5,6],[-12,0],[1,-6],[-17,-2],[-7,-6],[-15,-4],[-6,0],[-8,-4],[-22,-4],[-10,4],[3,4],[-3,10],[-8,0],[-15,-2],[-8,4],[-1,10],[-4,6],[-8,4],[-4,8],[-10,2],[-6,8],[-9,2],[-15,10]],[[5361,1925],[-2,6],[-14,14],[-3,8],[-12,8],[13,17],[-7,6],[2,4],[-25,14],[-8,10],[6,10],[-3,12],[16,2],[-2,8],[3,4]],[[5325,2048],[15,4],[16,-2],[10,-4],[-2,-6],[10,0],[18,-2],[-8,-2],[14,0],[31,6],[7,6],[6,-4],[-4,-6],[20,-4],[-5,-8],[7,-6],[9,0],[10,6],[3,-4],[23,-8],[20,0],[21,-4],[-2,-2],[20,-2],[2,-8],[21,4],[4,6],[12,-6],[4,4],[2,-10],[7,-4],[2,-4],[11,-2],[13,2],[8,-4],[12,-2],[15,4],[-5,4],[-12,2],[-4,4],[6,4],[-20,4],[5,8],[81,-4],[-6,-8],[8,-2],[1,-6],[9,-8],[-3,-4],[18,-4],[-11,-6],[11,-5],[3,-6],[11,4],[6,7],[5,-5],[-7,-12],[13,0],[-1,-6],[5,-4],[-7,-2],[-6,-8],[18,0],[11,0],[3,-4],[-8,-8],[-23,-6],[-20,-2],[-8,-12],[10,-10],[12,4],[11,-2],[17,8],[5,-2],[5,6],[8,2],[4,-4],[-10,-4],[3,-4],[-14,-12],[4,-8],[6,0],[4,-6],[5,6],[32,4],[9,-6],[32,4],[7,4],[17,6],[1,2],[18,-4]],[[8211,1701],[7,6]],[[8218,1707],[2,6],[-6,2],[2,10],[4,1],[3,8],[-6,12],[-10,-2],[-8,4],[0,6],[5,6],[-11,0],[3,8],[12,4],[9,0],[3,8],[18,-2],[7,2],[2,6],[13,-8],[13,6],[13,0],[11,-2],[6,4],[18,0],[4,10],[8,2],[5,6],[14,10],[10,12],[18,-8],[15,-4],[4,4],[7,-4],[13,0],[9,14],[-2,8]],[[8426,1836],[14,0],[22,8],[16,3],[5,-2],[-9,-11],[18,-8],[1,-6],[-19,-4],[-3,-10],[-7,-2],[-3,-20],[5,-4]],[[8061,1695],[14,-12],[3,-10],[3,6],[15,2],[6,-4],[13,0],[25,-6]],[[7958,1599],[-17,14],[8,4],[-11,4],[-3,8],[1,12],[16,8],[-1,6],[-9,2],[4,4]],[[7946,1661],[5,-4],[13,4],[3,6],[18,0],[7,4],[5,-8],[12,4],[9,-2],[-2,10],[18,6],[6,6],[-9,0],[-3,6],[4,6],[18,4],[11,-8]],[[6606,4797],[1,-8],[8,0],[4,-3],[18,7],[17,-4],[11,6],[23,4],[14,0],[5,-10],[16,4],[-3,-6],[21,-15],[8,0]],[[6738,4730],[-5,-2]],[[6733,4728],[-9,14],[-7,0],[-35,-6],[0,-4],[-13,2],[1,-6],[-9,0],[3,-10],[12,-2],[3,-8],[-14,0],[-8,-4],[3,-4],[-24,-4],[-1,-4],[-9,-2],[-1,-6],[-5,0],[-1,-11],[-16,0],[-2,-14],[6,-6]],[[6607,4653],[-15,2]],[[6558,4583],[-7,0],[-11,-8],[-6,0],[-2,-6],[-7,2],[4,-6],[-9,-6],[-1,-12],[-9,-5],[4,-4],[-4,-4],[-16,-8],[-11,2],[-12,-8],[-9,2],[-2,10],[-10,4],[-11,-2],[-27,9],[2,3],[-20,5],[-20,-4],[-28,-17],[-12,0],[-24,-8],[-18,-2],[-5,4],[-36,2],[-3,-14],[-17,-8],[-8,-14],[-8,4],[-20,0],[0,-2],[-16,-20],[-18,0],[-1,4],[-13,0],[-31,10],[-12,-4],[-18,-2]],[[6086,4480],[-11,2],[-6,10],[-15,0],[-14,10],[-9,4],[-3,6],[-17,4],[-11,18],[-10,4],[-8,-10],[-34,-12],[-5,2],[-5,-6],[-19,-12],[-10,-4],[-11,0],[-15,-4],[-8,0],[-11,6],[-14,4],[-10,6],[-14,20],[9,8],[-16,19],[-15,8],[30,14],[7,10],[1,8],[9,2],[-2,4],[12,2],[0,4],[-13,2],[-11,14],[3,8],[-29,6],[-2,8],[9,0],[5,8],[12,4],[-1,4],[6,9],[-6,10],[9,8],[9,0],[16,8],[10,0],[22,6],[12,0],[10,4],[-2,4],[-15,10],[-3,6],[10,4],[-1,4],[-7,4],[5,4],[10,0],[-14,10],[-17,-6],[-37,-2],[-1,6],[-9,2],[-3,6],[-13,0],[-1,4],[-7,2],[-1,8],[-7,4],[-2,6],[-18,5],[-11,-1],[-23,7],[-5,10],[-6,1],[-9,7],[-5,10],[8,6],[-15,14]],[[5723,4841],[4,2],[3,10],[15,18],[18,-2],[16,4],[-3,6],[5,12],[18,2],[-16,4],[-18,8],[19,2],[-2,5],[19,15],[18,8],[11,1],[5,6],[7,2],[9,8],[-2,6],[8,-2],[19,6],[10,0],[18,14],[6,10],[7,4],[13,2],[7,-2],[22,6],[15,-2],[13,2],[14,-6],[1,-4],[20,0],[6,6],[34,12]],[[6125,3409],[13,2],[-6,12],[-5,16],[9,8],[14,7],[19,6],[10,-2],[14,-14]],[[6193,3444],[-1,-5],[-10,-6],[-1,-6],[24,-2],[2,-4],[-8,-2],[6,-4],[-1,-6],[18,0],[-3,-2],[7,-4],[-7,-4],[15,-14],[1,-6]],[[6235,3379],[4,-2],[2,-10],[-21,-8],[3,-12],[-16,-15]],[[6360,3242],[14,8],[16,6],[1,4],[7,4],[-1,6],[7,2],[-6,4],[-1,12],[11,4],[6,8],[-1,10],[8,4]],[[6421,3314],[11,-6],[9,4],[7,-2],[13,4],[5,5],[-10,6],[4,8],[12,8]],[[6556,3325],[3,-7],[18,-2],[-9,-6],[11,0],[3,-10],[-5,0],[-1,-12],[9,-4],[11,-2],[5,-6],[16,-4],[5,2],[8,-4],[-1,-10],[3,-4],[-6,-6],[5,-6],[-2,-6],[16,-10],[13,4]],[[6658,3232],[13,-6],[-2,-8],[10,-2],[12,0],[13,-8],[14,-2]],[[6483,3032],[-10,0],[-13,4],[-15,8],[-18,0],[-5,12],[-15,-8],[-9,-4]],[[6398,3044],[-3,10],[14,4],[-6,10],[-17,6],[-1,9],[-8,4],[4,8],[-4,10],[0,22],[7,14],[-9,4],[-3,14],[9,6],[-6,8],[2,6],[-24,6],[3,2]],[[7936,1865],[-4,8],[-12,4],[-4,10],[7,24],[4,0],[3,10],[11,2],[1,-8],[0,-12],[-4,-6],[10,-4],[18,10],[4,0],[-3,14],[-9,0],[-5,6],[8,6],[12,-4],[12,2],[19,-2],[8,6],[11,6],[-5,4],[17,2]],[[8035,1943],[0,-6],[9,-6],[2,-8],[10,0]],[[8056,1923],[7,0],[0,-8],[6,2],[6,-10],[-3,-4],[15,-4],[-4,-4],[25,-2],[9,10],[9,-4],[4,-10],[6,-6],[13,-4],[3,-6],[-3,-4]],[[8149,1869],[-1,6],[-19,4],[-8,-4],[-3,4],[-9,-2],[-11,2],[-9,-2],[1,-6],[-9,-16],[11,-13],[-8,-8],[-10,0],[-5,4],[-6,-8],[0,-6],[-11,-10],[3,-8],[-11,-10]],[[8044,1796],[-1,-4],[9,-2],[9,-10],[11,-10],[-3,-4],[-29,-8],[6,-6],[-6,-14],[10,-8]],[[8050,1730],[-18,-6],[-9,2],[-6,8],[-14,0],[-6,-4],[-3,10],[-10,-4],[-9,0],[-3,-6],[-14,-8],[9,-3],[-21,-8],[6,-6],[12,-6],[-13,0],[-1,-2],[-23,0],[-6,-2],[-14,2],[-6,8]],[[7917,1796],[22,-8],[13,0],[5,10],[6,-2],[15,6],[2,2],[-7,6],[-9,10],[5,8],[-3,8],[-11,9],[-7,0],[-12,20]],[[8142,1552],[12,0],[15,-2]],[[8169,1550],[2,-8],[11,-12]],[[8182,1530],[6,-10],[0,-6],[7,0],[2,-6],[8,-4]],[[8165,1510],[-5,10],[-8,0]],[[8607,1546],[5,-10],[9,-4],[6,-8],[-11,0]],[[8616,1524],[-21,-2],[-3,-4],[-31,-2],[-2,-14],[-9,0],[-3,10],[-8,-4]],[[8497,1538],[11,4],[3,8],[-11,4],[6,4],[9,-4],[14,8],[-19,8],[-13,4],[-5,6],[5,2],[11,8],[-8,4],[-5,7]],[[8211,1586],[8,-8],[-12,-10],[-9,-2],[7,-10],[-1,-10]],[[8204,1546],[-13,10],[-22,-6]],[[7904,1127],[16,2],[10,8],[6,0],[17,2],[8,2],[14,-2],[17,8],[21,-2],[18,6],[13,0],[18,8]],[[8252,1157],[-4,-6],[7,-14],[-7,-4],[7,-2],[-2,-4],[-10,0],[-23,-12],[5,-5],[-2,-5],[6,-1],[-2,-6],[4,-10],[-1,-4],[9,-6],[-2,-4],[13,-6],[-5,-6],[-10,2],[-7,-8],[-6,2],[-23,-4],[0,10],[-13,0],[2,4],[-17,-2],[-16,0],[0,4],[-6,0],[2,6],[-8,10],[-10,-4],[-9,4],[-7,-2],[-2,-10],[3,-8],[-31,0],[-18,-4],[-3,-8],[12,-2],[-9,-8]],[[6862,4522],[-6,21],[3,8]],[[6859,4551],[8,10],[-4,4]],[[6863,4565],[25,12],[4,4],[13,-4]],[[6905,4577],[4,0],[-3,-8],[21,4],[8,-2]],[[6935,4571],[15,-5],[12,3],[11,-3],[9,-7],[-1,-2],[-10,2],[-1,-4],[10,-1],[-5,-4],[4,-7],[13,-3]],[[8155,869],[-56,6]],[[8098,2086],[-9,5],[-33,10],[10,8],[6,-2],[3,8],[-10,4],[-3,6],[-7,2],[0,4],[-26,-2],[-6,2],[-5,8],[14,18],[-13,4],[-15,-2],[-9,4],[-19,-2],[3,-10],[-12,0],[-3,4],[-16,-2],[-6,18],[0,12],[-3,4],[10,2],[-4,8],[-16,0],[-8,-2],[-6,8],[-10,-4],[-18,11],[3,15],[-10,1],[-21,8]],[[7858,2250],[9,-2],[12,4],[13,-8],[3,-6],[14,2],[15,8],[2,-4],[9,0],[7,-4],[6,-10],[6,-4],[7,4],[5,-4],[13,-4],[19,4],[25,0],[14,4],[-2,6],[19,8],[-14,2],[-3,-2],[-5,14],[6,6],[-9,-4],[-7,8],[13,10],[-10,8],[2,4],[11,2],[22,10],[18,2],[14,-16],[11,2],[3,-10],[14,-2],[17,-8],[-7,-4],[19,2],[8,-8],[4,-8],[18,12],[30,-18],[5,-2],[1,10],[10,4],[10,2],[8,4],[19,2],[-12,-12],[-4,-10],[3,-6],[10,-4],[3,-6]],[[8262,2228],[-1,-6],[-16,-19],[-21,-14],[-16,4],[-12,-14],[-10,-4],[-17,24],[-12,0],[-20,-4],[-8,-16],[7,-10],[3,4],[24,-2],[7,-6],[9,-2],[-5,-12],[-10,-2],[-1,-2],[-17,2],[-19,0],[-3,-14],[-6,-8],[6,-4],[11,2],[2,-4],[8,2],[13,10],[22,-4],[16,2],[7,-2],[7,-22],[-11,-4],[-25,6],[-7,-2],[-12,-13],[-28,0],[-3,1],[-12,-5],[-14,-4]],[[5938,3560],[11,2],[14,12],[18,7],[15,10],[9,2],[3,-2],[-6,-4],[1,-6],[27,-2],[0,-6],[7,-2],[4,4],[15,-4],[1,3]],[[6095,3532],[-8,-12],[0,-8],[5,-4],[0,-14],[-5,0],[-1,-8],[5,-6],[0,-10],[-5,2],[-5,-4],[-3,10],[-12,8],[-9,0],[-8,2],[-24,2],[-7,0],[-21,2],[-9,0],[-4,6],[-14,6],[-5,12]],[[8439,1599],[9,-11],[0,-12]],[[8429,1560],[-18,2],[-13,-6],[-11,-2],[-17,2],[-25,0]],[[8345,1556],[1,8],[-15,0],[1,4]],[[8373,1526],[0,0]],[[8357,1542],[-2,6],[-10,8]],[[9426,1968],[-5,2]],[[9421,1970],[-3,2],[6,10],[-14,-10]],[[9410,1972],[-20,-4],[-9,7],[-6,-3],[-6,12],[7,2],[-4,4],[12,4],[0,4]],[[9464,1978],[-4,-3],[21,-7],[-4,-7],[-4,3],[-5,-3],[-8,2],[-22,-2]],[[9438,1961],[-12,7]],[[6947,782],[2,-10],[11,-4],[-8,6],[16,0],[-2,2],[8,4],[-12,0],[-4,4],[22,4],[2,2],[24,4],[6,4],[2,6],[8,6],[9,2],[14,8],[15,-2],[5,-6],[0,-12],[9,-14],[-6,-14],[0,-6],[12,22],[-9,8],[-4,8],[2,12],[12,4],[15,-6],[20,-16],[8,0],[17,-4],[-11,-10],[12,6],[21,-2],[11,2],[31,-4],[16,-2],[21,-6],[2,-6],[8,-8],[1,-10],[-11,0],[9,-4],[4,4],[12,0],[12,-6],[0,-4],[-25,-11],[-2,-6],[-26,0],[-12,-4],[-21,-10],[-8,-6],[-7,-18],[2,-6],[-2,-8],[-10,-10],[-16,-4],[-8,0],[-12,-4],[-23,-4],[-8,-4],[-16,0],[-27,-4],[-8,2],[-9,12],[-8,2],[-12,8],[-14,6],[-9,2],[-3,4],[-23,12],[-20,6],[-36,8],[-10,8],[-26,14],[-8,2],[-19,0],[-35,-6],[-19,-2],[-16,2],[16,2],[-1,8],[20,3],[7,10],[5,2],[3,10],[12,6],[16,-2],[5,-6],[0,8],[28,2],[28,12],[16,4],[9,-2]],[[8226,1528],[-21,2],[-14,10],[-9,-10]],[[8204,1546],[2,0]],[[6915,4655],[0,-6],[-11,-6],[0,-6],[9,0],[-8,-4],[21,-4],[23,4],[-1,2],[16,2],[1,4],[9,2],[6,-6],[-3,-16],[-10,0],[1,-6]],[[6968,4615],[-18,-4]],[[6950,4611],[-7,-6],[-12,0],[-1,4],[-27,-2],[1,-2],[-27,2],[-20,-2],[-14,4],[-19,-2]],[[6810,4633],[5,-2],[18,6],[2,12],[14,8],[44,0],[7,-2],[15,0]],[[6599,3690],[-3,-9],[-35,-12],[-12,-10],[-8,-2],[3,-10],[-12,-4],[-5,-4],[-2,-8],[-9,2],[-16,-6],[-11,-2],[-9,-8],[-5,0],[-19,-6],[1,-6],[-11,-6],[10,-2],[-2,-12],[3,-6],[7,-4],[-10,-6],[2,-2]],[[6327,3601],[14,4],[0,18]],[[6341,3623],[14,8],[10,12],[21,0],[4,-2],[13,0],[6,8],[-5,14],[2,8],[4,-2],[21,4],[0,6],[-23,14],[13,7],[-7,9],[8,0],[-4,7],[16,2],[21,-4],[19,8],[12,-4],[10,8],[5,0],[0,-6],[5,-10],[12,-4],[1,-8],[23,0],[-11,4],[1,4],[17,0],[0,-2],[24,1],[7,-3],[0,-6],[15,0],[4,-6]],[[6703,2201],[-20,-2],[-9,6],[-12,0],[-12,8],[-10,-4],[-2,5],[-10,4],[-13,4],[-8,10],[2,8],[-8,18]],[[6601,2258],[4,2],[-7,6],[3,8],[12,-2],[4,-6],[12,-2],[8,6],[4,8],[13,2],[3,-4],[-3,-10],[10,-2],[12,0],[4,-4],[8,4],[1,8],[22,2],[12,-8],[12,8],[24,8],[1,6],[9,8]],[[6904,2282],[14,-2],[3,2],[12,-2],[4,-4],[6,2],[18,-6],[3,-6],[17,-2],[11,0],[22,-6],[19,4],[-1,4],[9,2],[9,-4],[16,-2],[3,-8],[18,4],[7,-2],[6,-8]],[[7076,2115],[-31,0],[-5,-8],[-10,-4],[-3,-8]],[[6888,2034],[15,16],[-17,14],[-3,-4],[-12,-2],[-9,6],[-10,0],[-5,16],[-21,0],[-4,-2],[-18,6],[-4,-4],[-16,2],[0,5],[-15,-3],[-4,3],[5,16],[-18,-2],[-7,6],[-10,-2],[8,8],[-6,0],[2,6],[5,0],[5,8],[7,0],[11,-6],[7,6],[20,10]],[[6794,2137],[6,2],[8,12],[5,-2],[15,0],[11,-4],[6,6],[5,10],[14,0],[2,-4],[8,8],[-21,12],[1,10],[6,12],[15,-2],[-1,6],[-7,4],[-2,6],[-8,1],[-5,10],[-8,2],[-11,-8],[-16,0],[-10,-8],[-14,4],[0,3],[-12,-3],[-16,3],[-13,11],[-5,-2],[0,-9],[-7,3],[-32,2],[-2,4],[-3,-25]],[[8099,1512],[9,-2],[7,-10],[11,-4]],[[7699,2270],[-25,-12],[-3,2],[-24,0],[-6,6],[-9,6],[-17,0],[-15,-6],[-10,-8],[-29,2],[-3,2],[-9,-6]],[[7458,2409],[9,2],[2,6],[8,4],[17,-8],[22,0],[8,-4],[3,4],[15,-2]],[[8010,1407],[22,0],[15,-8],[12,0],[-1,6],[11,0]],[[8069,1405],[0,-12],[6,-8]],[[8075,1385],[-4,-8]],[[7995,1328],[-6,4]],[[8001,1389],[8,6],[1,12]],[[8066,3518],[-34,8],[-23,0],[-21,-4],[3,6],[-4,4],[4,4],[-8,6],[8,4],[-4,6],[-15,4],[1,4]],[[7973,3560],[12,6],[6,-6],[7,5],[9,-5],[3,9],[13,2]],[[8069,3524],[2,-4]],[[7973,3560],[-1,7],[-11,3],[-6,11],[12,4]],[[7961,3571],[11,-4],[0,-11],[10,-6],[5,2],[4,-6],[-8,-6]],[[7983,3540],[-16,-2],[-9,-10],[-22,6],[-6,4],[-7,10]],[[7983,3540],[7,-2],[-4,-4],[5,-6],[-4,-6],[-30,-8],[-30,-6],[-23,-2],[-14,-4],[-15,-2],[-14,2]],[[5914,1496],[10,-8],[13,-2],[0,-8],[-4,-4],[8,-7],[11,2],[18,0],[-4,-14],[-15,0],[-4,-4],[13,-10],[0,-6],[34,-6],[5,2],[0,-6]],[[5999,1425],[-8,-6],[-9,-2],[-23,0],[-2,-6],[-9,2],[-13,-2],[-11,4],[-9,-4],[2,8],[-6,4],[-13,-6],[-3,4]],[[5533,3308],[14,-2],[8,-8],[14,2],[6,-4],[0,-6],[18,0],[0,2]],[[5593,3292],[8,-8],[-1,-8],[13,0]],[[5613,3276],[-2,-12],[11,-10],[-10,-4],[9,-4],[1,-6],[-11,0],[4,-6],[-15,-6],[5,-8],[-1,-4],[8,-2]],[[5541,3220],[-10,0]],[[5531,3220],[-2,4],[7,6],[13,-4],[5,4],[0,10],[-7,8],[5,12],[-23,12]],[[5529,3272],[-3,4],[-10,2],[1,-4],[-9,0],[-8,8]],[[5500,3282],[16,16],[9,2],[-1,6],[9,2]],[[5431,3673],[1,0]],[[5432,3673],[-1,0]],[[5380,3661],[-4,18],[2,9],[15,5],[23,3],[6,-6],[-3,-4],[3,-23]],[[5624,3817],[2,4],[23,8],[20,0],[5,3],[10,-1],[23,8],[8,-2],[13,8],[12,6],[17,-6],[20,-17],[20,11],[-14,10],[-2,14],[15,2],[10,8],[23,0],[16,0]],[[5845,3873],[4,-4],[14,-2],[-2,-2],[10,-6],[1,-6],[10,-2],[-1,-4],[15,0],[3,-4],[14,-2],[6,-4],[5,0],[10,-8],[6,0],[0,-13],[-5,-7],[0,-7]],[[5935,3802],[-17,-4],[-7,-4],[-3,-14],[-20,0],[-9,4],[-11,-4],[-6,-6],[-26,0],[-7,-8],[2,-12],[6,-4],[-2,-4],[15,-10],[-16,0],[-14,-12],[-21,-4],[-9,-4],[-9,6],[-12,0],[-8,-6],[3,-4],[20,-8],[-3,-7],[7,-1],[8,-10],[-4,-1],[5,-8],[-3,-8],[-13,-6],[-15,0]],[[5766,3663],[-11,2],[-11,-4],[-10,0],[4,8],[-10,4],[-15,13],[-7,4],[1,12],[-14,-6],[-20,-3],[-7,-7],[-4,4],[-17,-2],[8,6],[-7,7],[3,5],[-5,3],[-7,-4],[-6,3],[-11,-4],[8,-10],[-7,-9],[-7,-6],[-46,0],[16,-6],[3,-10],[-6,-4],[-29,-4],[0,4],[-18,10],[-6,6],[-46,0],[-15,0],[-11,-2],[-16,0]],[[5440,3673],[-11,4],[-2,17],[3,4],[67,18],[10,0],[2,-6],[8,-4],[18,2],[-9,2],[18,2],[0,4],[11,2],[7,10],[3,-2],[13,4],[-19,0],[-14,4],[-3,8],[9,2],[-1,8],[18,8],[18,-2],[0,8],[4,6],[0,12],[-13,12],[2,6],[27,7],[12,-1],[6,5],[0,4]],[[6783,3548],[-4,6],[2,6],[22,13],[-12,8],[2,4]],[[6793,3585],[5,0],[3,6],[10,4]],[[6811,3595],[11,-4],[9,-6],[8,2]],[[6839,3587],[-1,-4],[6,-2],[6,4],[14,0],[6,-6],[9,0],[-12,-8],[3,-6],[25,-9]],[[6850,3534],[1,-6],[-8,0],[-24,-6],[-11,2],[-7,6],[-2,10],[-6,6],[-10,2]],[[6839,3587],[4,8],[12,-2],[25,8],[12,10],[-7,6]],[[6811,3595],[-11,4],[-8,8],[0,10],[13,4],[-2,2],[-18,12],[-4,6],[6,0],[-7,14],[9,2],[8,-2],[-2,4],[13,0]],[[6756,3611],[-12,8],[-5,12],[-10,0],[-13,-4],[-10,4],[-22,2],[-1,22],[4,8],[-30,-2]],[[6657,3661],[-14,4],[5,14]],[[6648,3679],[9,-2],[1,8],[9,1],[19,-3],[-1,-4],[8,0],[24,2],[1,-6],[32,-4],[13,6],[8,0],[-1,-4],[14,-2],[2,6]],[[6786,3677],[15,2],[4,-6],[10,-2]],[[6793,3585],[-13,8],[0,6],[-11,2],[-3,6],[3,6],[-13,-2]],[[6731,3560],[2,11],[8,8],[-15,6],[-18,-2],[3,6],[-1,10],[9,-2],[1,6],[21,0],[15,8]],[[6783,3548],[-41,0],[-15,-2],[-7,2]],[[7224,2528],[-3,6],[5,4],[-4,8]],[[7299,2536],[1,-18],[-5,0],[0,-6],[-10,-8],[-7,0]],[[7256,2502],[5,8],[-5,4],[-13,4],[-11,8],[-8,2]],[[7208,2476],[-6,-6],[-11,1],[5,3],[-2,4],[-10,2],[-4,4],[7,6],[-5,2],[6,4]],[[7188,2496],[10,0],[10,12],[3,12],[13,8]],[[7188,2496],[-9,6],[-26,10]],[[5798,3288],[4,12],[9,0],[2,-4],[13,6],[0,4],[16,-2],[3,8],[6,4],[18,2],[-4,6],[10,1]],[[5950,3329],[30,-5],[8,-5],[-8,-7],[-8,-2],[-1,-6],[-6,-6],[0,-10],[3,-14],[-29,-4],[-15,0],[-9,-2]],[[5915,3268],[-2,6],[3,10],[-7,4],[-52,-12],[1,-6],[-20,-2],[-6,-12]],[[5832,3256],[-6,6],[-10,2],[-6,6],[-13,0],[-4,4],[9,4],[-4,10]],[[8321,931],[-15,0],[9,6],[6,-6]],[[8191,979],[2,4],[12,-2],[-3,15],[3,4],[-11,2],[0,6],[8,6],[15,-2],[9,12],[6,0],[10,-2],[3,-10],[4,2],[34,0],[4,4],[3,16]],[[8290,1034],[18,-6],[7,-8],[2,-8],[16,2],[9,-6],[2,-6],[13,2],[-2,-17],[-3,-3],[7,-7],[0,-10],[32,-10],[7,4],[16,-6],[9,0],[-10,-8],[-8,-10],[-11,-10],[6,-2],[-1,-10],[4,-2],[19,2],[2,-2],[12,12],[19,2],[4,-2],[5,10],[16,-8],[7,-8],[-13,-8],[-2,0],[-12,-10],[4,-2],[7,4],[6,-2],[-9,-10],[1,-6],[22,-8],[1,6],[6,0],[5,6],[11,-4],[7,8],[-4,6],[7,2],[9,-6],[7,2],[-2,-10],[8,0],[3,-4],[13,0]],[[8508,794],[-22,10],[-5,0],[-32,8],[-11,-2],[-17,2],[-41,20],[-10,2],[-8,0],[-2,6],[-11,18],[-10,2],[-7,5],[2,4],[-3,10],[8,12],[4,2],[-17,16],[2,6],[-16,8],[-8,6],[18,0],[-5,10],[-14,-10],[9,-6],[16,-8],[-2,-8],[9,-6],[8,-10],[-12,-10],[2,-12],[-2,-4],[8,-7],[8,0],[5,-12],[5,-2],[4,-10],[-4,-2],[-22,2]],[[8299,1409],[-8,8],[-3,8],[-6,6],[-9,2]],[[8273,1433],[2,6],[9,4],[13,-2],[4,-4],[10,0],[-7,8],[-7,2],[10,4],[-10,2],[-3,6]],[[8262,1441],[-5,-6],[16,-2]],[[8290,1469],[-6,-4]],[[8275,1480],[7,-6]],[[8340,1536],[-20,0],[-8,-4],[-14,0],[-8,2]],[[8277,1542],[20,12],[-6,2],[21,6],[7,0],[-1,10]],[[6439,2645],[-7,6],[6,8],[-2,4],[-10,4],[7,6],[-3,6],[-13,12],[12,6]],[[6429,2697],[8,15],[9,1],[-3,3],[7,2],[-3,4],[0,10],[-15,0],[-1,-2],[-15,6],[-2,10]],[[6702,2645],[-8,-2],[-6,-6],[1,-4],[-12,-8],[4,-8],[-5,0],[0,-8],[-6,-2]],[[6670,2607],[-14,0],[-7,-4],[3,-6],[-8,-3],[1,-7],[-10,-4],[-5,-7],[0,-8],[8,2],[16,-2],[6,-10],[-8,-6],[4,-4],[-14,-12],[-18,2],[-9,4],[-12,-4],[-18,12],[-12,2],[-11,-8],[-11,0],[-8,-4],[-5,6],[-10,0],[-13,8],[11,4],[-7,4],[-11,-8],[9,-2],[-12,-10],[-22,-14],[-6,-2]],[[7831,3056],[-15,-8],[-3,2],[-16,-2],[-3,-8],[3,-8],[6,0],[5,-10],[8,-6],[-11,-2],[5,-14],[21,2],[4,-6],[-2,-6],[-33,-2],[-2,6],[-20,2],[-10,2],[8,22],[-12,0],[-10,4],[-6,6],[-18,6],[-13,-2],[-6,6],[0,8],[-12,4],[-7,12],[-14,2],[1,4]],[[5500,3175],[-50,20],[-10,7],[-18,24],[-5,24]],[[5449,3254],[8,-6],[-4,-6],[-10,-4],[-1,-14],[14,0],[6,4]],[[5462,3228],[7,-4],[-2,-8],[7,-4],[0,-4],[11,-2],[9,6],[4,-6],[9,-1],[-6,-3],[13,-15]],[[5529,3272],[-23,-6],[-7,0],[-15,-2],[5,-6],[15,-10],[-9,-8],[-3,4],[-15,0],[-4,-4],[7,-6],[-4,0]],[[5476,3234],[-14,-6]],[[5464,3276],[3,4],[22,0],[11,2]],[[5476,3234],[1,-4],[22,2],[9,2],[12,-10],[0,-4],[11,0]],[[7109,2611],[-12,8],[-8,0],[-7,-6],[-12,-4],[-7,2],[-6,10],[-30,4],[-3,10],[6,4],[1,8],[9,8],[38,-2],[-1,8],[3,8],[14,10]],[[7094,2679],[7,-6],[9,2],[13,-6],[5,-8],[25,2],[3,-4],[8,6],[25,10],[19,-2],[12,0],[8,6],[6,8],[24,0],[16,4],[6,-4],[-3,-6],[12,4],[9,-4],[13,2]],[[7311,2683],[-6,-14],[-4,-18]],[[8323,3329],[4,-5],[16,-6],[11,1],[1,4],[-13,6],[32,-8],[9,-5],[2,4],[7,-4],[-11,-4],[11,-12],[12,-2],[3,-4],[12,6],[-8,10],[26,-8],[-6,-2],[-1,-8],[14,-4],[4,4],[-3,6],[9,-2],[14,-12],[-12,4],[10,-10],[5,2],[12,-14],[-2,-4],[5,-12],[7,-8],[9,0],[8,-8],[-7,-4],[7,-2],[-3,-4],[8,2],[11,-8],[-3,-4],[5,-8],[3,2],[4,-12],[16,-21],[12,-16],[6,-6],[15,-24],[18,-18],[11,-14],[17,-27],[3,-18],[7,-12]],[[8118,2913],[-4,16],[-14,2],[-4,6],[0,8],[-6,5],[-1,14],[-12,8],[-2,4],[-12,16],[-7,2],[-15,14],[-6,0],[-7,6]],[[5986,2528],[15,-2],[4,2],[11,2],[4,-10],[10,-8],[13,-4],[7,8],[9,0],[4,4],[12,-2],[0,-6],[5,0],[-3,-12]],[[6077,2500],[-4,-14],[3,-6],[13,-2],[10,2],[4,-6],[13,-2],[17,-12],[1,-7],[-16,-8],[16,-6],[5,-6],[-12,-10],[7,-6],[-28,-10],[-7,-8],[-8,-4],[-6,-10],[17,-12],[8,-18]],[[6110,2355],[-16,-7],[-8,-9],[-13,1],[-13,-3],[-5,4],[-18,0],[0,-13],[-3,-2],[0,-16],[-6,-4],[20,-4],[17,-8],[-5,-4],[-27,4],[-10,-4],[-27,0],[-4,4],[-5,-10],[5,-6],[-5,-2]],[[5987,2276],[-11,-2],[-33,2],[-8,-4],[-7,2],[1,-6],[-8,0],[-4,-4],[6,-6],[-2,-4],[5,-6],[-1,-4],[-10,-4],[-22,0],[4,4],[-4,4],[-20,6],[-27,-10],[1,-6],[-4,-6],[2,-7],[-10,5],[-11,-4],[-10,0],[-10,-5],[-12,0]],[[5792,2221],[-9,5],[4,8],[-6,0],[-11,6],[0,4],[-12,0],[-6,8],[-7,0],[-6,-4],[-15,-18],[9,-5],[-26,-1],[-4,-2],[-15,10],[-10,0],[-9,6],[-7,0],[-13,8],[11,2],[7,-2],[10,6],[-3,8],[8,4],[-10,4],[-23,0],[-24,-2],[0,8],[-5,6],[-10,2],[-2,12],[-6,2],[-24,2],[-8,2],[-8,0],[-6,-6],[-24,-4],[2,-4],[-8,-4],[2,4],[-12,6],[-13,-2],[5,-2],[-8,-6],[15,-6],[-13,0],[-18,-6],[7,-4],[-1,-6],[-21,-2]],[[5469,2258],[-6,0],[-11,6],[-13,-4],[-12,2],[-6,-4],[-35,-4],[-18,4],[-14,8],[-17,4],[-18,14],[-9,0],[-7,6],[-33,8],[3,6],[-11,4],[-8,6],[-20,6],[-19,4],[-3,6],[-8,3],[2,8],[-7,3],[5,9]],[[5204,2353],[9,4],[5,8],[21,10],[13,-4],[22,12],[18,6],[12,0],[18,6],[50,0],[9,0],[16,2],[-7,10],[6,6],[-2,4],[28,-4],[-1,10],[9,18],[-4,4],[2,8],[-10,11],[-9,0],[-19,-2],[-13,-11],[-9,-4],[-32,-8],[11,-10],[-9,-4],[-24,-4],[-18,0],[-2,4],[7,4],[8,0],[9,4],[-14,20],[-11,10],[-2,11],[17,2],[3,-2],[18,10],[11,2],[-4,10],[11,6],[-2,2],[8,8],[15,2],[-9,6],[-12,2],[11,6],[18,2],[-1,4],[7,4],[-4,6],[4,2]],[[5382,2546],[10,-6],[16,-6],[16,2],[15,6],[12,-4],[6,4],[11,0],[2,-2],[-7,-10],[7,-6],[-9,-2],[-3,-4],[8,-2],[1,-8],[6,-2],[-5,-6],[21,-2],[6,4],[-4,6],[13,0],[6,4],[11,0],[1,-12],[5,-4],[-3,-4],[5,-6],[12,0],[-1,-10],[15,-4],[2,-4],[16,-4],[4,-11],[27,-4],[22,4],[8,3],[11,-3],[4,-4],[-4,-12],[14,-4],[4,-8],[12,0],[-3,4],[7,6],[15,-2],[13,2],[5,8],[9,0],[20,6],[6,-2],[9,2],[3,7],[15,-3],[8,6],[21,9],[31,20],[-14,6],[8,6],[9,2],[10,-4],[11,0],[0,6],[12,2],[3,4],[20,0],[11,4]],[[5904,2514],[9,-2],[6,-4],[13,-2],[8,2],[9,-4],[16,-4],[1,12],[18,6],[2,10]],[[7841,1840],[0,2],[-22,9],[15,4]],[[7834,1855],[9,2],[4,8],[-8,6],[13,2],[10,-2],[24,4],[15,-2],[3,-12],[11,-2]],[[7915,1859],[-4,-11],[-24,-1],[-4,-7],[-11,4],[-5,-4],[-26,0]],[[7915,1859],[12,6],[9,0]],[[7847,1808],[-8,10],[-17,8],[11,2],[-8,6],[10,6],[6,0]],[[6398,3044],[-6,-4],[-1,-8],[-7,-6],[-14,-4],[-12,4],[-18,0],[-11,-12],[1,-2],[-11,-6],[-17,-2],[-3,4],[-18,-4],[-10,6],[-8,0],[-6,6],[-6,2]],[[6089,3075],[14,0],[4,8],[8,-1],[9,4],[18,-3],[10,0],[0,4],[20,2],[2,6],[-7,4],[5,6],[14,8],[-3,8],[3,8],[6,4],[6,8],[6,4],[4,8]],[[7445,1528],[8,12],[5,2],[10,0],[9,-10],[16,-4],[8,2],[9,-2],[5,4],[13,2],[15,-2],[4,2]],[[7670,1476],[-1,-7],[5,-8],[4,2],[-2,-12],[-8,2],[-8,-4],[-15,8],[-25,0],[-10,-10],[-20,2],[-7,4],[-11,-4],[-5,8],[-12,2],[-2,-8],[-15,-14],[3,-28]],[[7541,1409],[-2,-2],[-17,10],[-33,6],[-17,6],[-21,2]],[[7451,1431],[7,8],[5,0],[3,8],[9,4],[-2,2],[-25,-8],[-12,0],[-3,2],[-16,2],[-1,8]],[[8675,1213],[2,2],[14,-2],[8,21],[-10,0],[-9,6],[-11,4],[16,8],[12,10],[22,-4],[3,8],[-1,12],[17,0],[3,2]],[[8785,1302],[7,-2]],[[8876,1070],[-19,-4],[-10,8],[-19,4],[-2,8],[-10,2],[1,8],[-11,4],[-13,0],[-5,-10],[-6,-4],[-6,4],[7,15],[-12,2],[-5,10],[4,6],[9,6],[6,0],[14,16],[-5,6],[6,4],[-4,4],[-14,4],[-14,-2],[-12,2],[1,8],[-28,22],[-9,2],[-14,2],[-12,8],[-20,4],[1,4]],[[5684,3324],[12,5],[2,12],[-2,4],[8,6],[5,10]],[[5709,3361],[6,-14],[2,-12],[8,-2],[19,0],[18,6],[2,4],[10,-6],[11,4],[8,-9],[23,9],[14,2],[-6,2],[4,6],[11,-2]],[[5798,3288],[-2,0],[-30,0],[-8,4],[-3,6],[-6,0],[-3,6],[-31,2],[-7,4],[-4,9],[-6,-5],[-7,2],[-7,8]],[[8839,1592],[-1,0]],[[8838,1592],[1,0]],[[9027,1615],[-16,-2],[1,-4],[-9,4],[-14,-2],[6,4],[22,-2],[10,2]],[[9054,1693],[7,-4],[-16,-4],[-12,4],[-1,4],[22,0]],[[8999,1697],[7,-6],[-2,-8],[-16,4],[11,10]],[[8945,1703],[1,10],[18,-2],[6,4],[34,-14],[7,2],[3,-4]],[[9014,1699],[-6,-2],[-9,4],[-7,-2],[-6,-8],[-24,8],[-17,4]],[[8849,1598],[-1,-2]],[[8848,1596],[-10,-4]],[[8838,1592],[-2,2]],[[8836,1594],[-9,2],[-21,-2],[0,7],[-6,1],[-9,-4],[-10,1]],[[8668,1667],[17,2],[10,8],[14,-6],[3,2],[12,-2],[12,10]],[[8818,1709],[6,2],[8,0],[18,2],[5,2]],[[8855,1715],[12,0],[9,4],[-2,-10],[4,-10],[-6,-2],[6,-6],[15,-2],[-9,-10],[3,-4],[17,-2],[3,-8],[16,6],[16,-2],[-1,-4],[14,4],[13,8],[-11,2],[-19,2],[-10,12],[4,16],[13,-2]],[[8942,1707],[2,-4],[21,-6],[5,-4],[8,0],[0,-6],[11,-4],[18,-4],[10,0],[24,-4],[-13,-8],[-3,-6],[-8,0],[-2,-4],[8,2],[10,0],[5,10],[10,0],[2,4],[17,4],[3,8],[10,0],[13,2],[14,-6],[26,4],[23,12],[6,10],[29,6],[9,-2],[12,-6],[7,-8],[0,-8],[-7,-10],[-3,-12],[6,-12],[3,0],[-2,-10],[-6,-6],[1,-6],[-7,-10],[2,-12],[-2,-4],[-14,-5],[-16,-4],[-32,1],[-10,-3],[-18,3],[-12,-1],[-23,4],[-14,0],[-10,7],[-18,8],[-12,0],[-7,-2],[-7,2],[-16,0],[-8,-6],[-16,0],[-27,0],[-23,2],[-11,0],[17,-2],[-4,-4],[-19,0],[-14,-2],[-10,2],[-10,-2],[-1,-6],[-8,2],[-12,-3]],[[6222,3327],[11,-2],[3,-5]],[[6242,3278],[-22,-2],[-21,4],[-4,-12],[-30,-2],[0,-6],[-8,-2],[-13,6],[-6,-2],[0,6]],[[6138,3268],[4,0],[-12,10],[1,2]],[[6131,3280],[18,14]],[[6202,3246],[-16,2],[3,4],[-41,0],[-17,-2],[-5,2],[-1,8]],[[6125,3260],[13,8]],[[6218,3248],[-2,-4],[-14,2]],[[6202,3246],[-2,-6],[-6,-2],[-10,-8],[-3,2],[0,-12]],[[6157,3214],[-6,2],[6,4],[-6,6],[-1,-6],[-8,2],[4,10],[-10,-4],[-5,4],[-18,4],[-4,8],[-11,0],[0,4]],[[6098,3248],[5,-2],[1,8],[7,4],[14,2]],[[7247,3064],[8,-2],[-3,-12],[-6,0],[0,-10],[-7,-8],[-8,-6],[-18,-4],[-14,-12],[1,-4],[19,-8],[6,-4],[13,-4],[-14,-8],[0,-18],[6,-5],[-13,0],[-11,3],[-31,-7]],[[7064,1018],[8,6],[-3,6],[-8,2],[6,10],[10,4],[-2,8],[5,2],[-7,16],[17,-4],[8,2],[5,6],[10,-6],[4,-8],[14,8],[8,4],[20,28],[7,4],[3,5],[3,-4],[26,-3],[2,11],[19,2],[5,2],[13,-2],[7,2],[1,-4]],[[7294,901],[-8,0],[-8,2],[-5,-2],[-22,2],[-1,-2],[-15,2]],[[7091,939],[9,4],[-12,6],[1,6]],[[6534,2304],[17,-4],[17,-2],[6,-4],[11,6],[18,-2],[14,10],[-4,2],[6,4],[-5,8],[9,13],[-5,4],[8,6],[-11,6]],[[6590,2405],[18,4],[14,-2]],[[6622,2407],[9,-4],[9,-12],[12,-12],[11,-6],[1,-8],[23,-18],[9,-10],[10,0],[4,8],[7,-4],[13,4],[8,8],[8,4],[0,6],[10,0],[3,-4],[15,-4]],[[6601,2258],[-8,2],[-4,4],[-11,4],[-8,6],[-16,0],[-5,2],[-13,-2],[-27,2]],[[7834,1855],[-4,10],[-17,6],[0,8],[-5,6],[-27,-2],[-2,6],[-7,2],[-15,-2],[-7,-8],[-16,2],[-30,18],[-23,12]],[[7679,1913],[7,2],[-10,10],[1,6],[-5,2],[-1,8],[5,6],[12,4],[-7,6],[10,6],[-2,13],[-25,10]],[[7664,1986],[17,14],[9,2],[6,10],[18,10],[10,2],[2,8],[7,2],[-5,2],[8,8],[-4,2],[-1,10],[-8,6],[-12,0],[-14,4],[-6,14],[10,2],[1,5],[-6,8],[6,4],[2,8]],[[7704,2107],[7,-4],[14,-2],[11,2],[12,-9],[3,-12],[12,-6],[16,-2],[5,-6],[18,2],[8,-18],[11,-4]],[[7876,2046],[5,-10],[14,-8],[9,-10],[20,-12],[12,4],[-4,4],[12,6],[-5,6],[28,12],[-6,-6],[5,-4],[7,0],[7,-6],[63,4],[-2,-30],[-14,-22],[-9,-9],[11,0],[-9,-6],[0,-6],[26,0],[0,-6],[-11,-4]],[[6990,2754],[-8,6],[-14,2],[-9,-2]],[[6360,786],[-9,-2],[-6,4],[-8,-6],[9,-2],[-5,-6],[-16,0],[-8,-8],[0,-8],[-10,-4],[3,-6],[-11,2],[-8,-9],[-3,3],[-10,0]],[[6278,744],[-9,-3],[-4,5],[-15,-2],[2,4],[-13,6],[-11,0],[-7,8],[-7,-4],[-10,2],[-6,0],[-18,10],[-22,6],[8,12],[1,10],[-14,10],[-7,-2],[-7,8],[-8,-2]],[[6131,812],[-3,6],[9,4],[1,8],[16,-2],[8,4],[23,-10],[19,-2],[27,6],[1,-6],[7,0],[17,6],[3,8],[11,4],[1,4],[11,2],[7,-6],[23,0],[7,0],[-9,-6],[-9,0],[1,-6],[8,2],[6,-4],[5,8],[6,-4],[3,-8],[-6,-4],[9,-6],[8,8],[-4,6],[1,14],[13,2],[7,4],[14,0],[5,-2],[17,2],[-7,10],[4,6],[-8,5],[10,6],[7,0],[13,-10],[6,6],[22,4],[9,-2]],[[6433,806],[-10,-12],[-24,0],[2,10],[-6,4],[-22,-4],[0,-12],[-9,0],[-4,-6]],[[8995,2595],[-2,6],[-14,10],[-20,0],[-11,4],[5,4],[14,6],[2,16],[10,4],[-5,6],[4,6],[8,2]],[[9360,2532],[-2,-10],[6,-10],[-10,-2],[3,-4],[12,-6],[-1,-4],[7,-8],[12,-2],[14,-2],[6,-8],[7,0],[6,-8],[-2,-5],[6,-1],[-5,-6],[5,-3],[-10,-6],[-10,-14],[-11,-8],[-9,-12],[8,-4],[-6,-2],[-18,6],[-9,-6],[-7,2],[-10,-6],[7,-34],[4,-2]],[[9353,2367],[-3,-4],[-22,6],[-19,-4],[-10,0],[-7,6],[-13,-2],[-11,4],[-1,4],[-8,4],[3,8],[-26,4],[-18,10],[-21,4],[-5,4],[-18,-6],[8,16],[8,4],[-2,4],[-14,-4],[-28,0],[-11,-2],[-5,14],[-6,4],[-18,10],[-6,-4],[-12,4],[-11,9],[-4,-4],[-12,4],[-4,-4],[-11,2],[-8,6],[0,4],[-10,12],[-4,12],[3,4],[-10,0],[-1,4],[-21,2],[-13,0],[-1,6],[10,2],[10,10],[18,-4],[3,4],[17,4],[-13,10],[5,20],[-13,2],[-21,8],[-4,8],[18,0],[-8,9],[3,5],[-11,9]],[[8332,1159],[-2,-14],[3,-6],[8,-2],[-2,-6],[-12,-2],[-6,-2],[-6,6],[-6,-8],[-13,-6],[-11,0],[-9,-4],[4,-15],[13,0],[-1,-6],[6,-10],[21,0],[-5,-6],[-10,-2],[-5,-10],[7,0],[-19,-10],[-2,-8],[6,-2],[-4,-4],[3,-8]],[[6469,1982],[-27,6],[12,12],[-9,4],[-23,4],[-2,-4],[-27,2],[0,10],[-11,-2],[-12,10],[-3,-8],[-11,-4],[-7,-6],[-5,2],[7,10],[1,12],[-22,-2],[-7,-2],[-6,8],[0,8],[9,16],[-14,4],[-11,-2],[-5,-6],[-12,2],[-2,-6],[-30,-2],[-3,4],[-1,-10],[-13,-4],[-19,4],[-9,6],[2,2],[-11,4],[3,6],[19,4],[7,8],[-23,2],[-5,4],[-3,11],[-6,5]],[[6190,2094],[16,4],[4,9],[11,2],[4,12],[9,14],[-13,4],[-22,6],[-14,0],[-13,6],[-6,-6],[-14,-2]],[[6152,2143],[3,12],[7,2],[-3,4],[5,6],[-20,16],[-13,2],[-9,2],[4,12],[-5,14],[2,12],[8,7],[-1,4]],[[6130,2236],[6,4],[-11,4],[7,2],[2,6],[8,0],[8,10],[0,8],[13,0],[21,-6],[5,-8],[11,-6],[3,-10],[19,2],[-4,-12],[7,0],[0,6],[11,6],[7,14],[11,4]],[[6332,2201],[-6,-4],[-42,2],[-10,-12],[-9,0],[-9,-4],[24,-2],[2,-14],[5,-6],[20,4],[13,-4],[12,-12],[-1,-2],[13,-2],[15,0],[6,-6],[27,-12],[-6,-10],[-8,-4],[-10,0],[-8,-18],[8,2],[8,-6],[9,2],[2,-9],[15,-6],[-10,-16],[6,0],[12,-6],[18,10],[5,4],[-2,6],[8,6]],[[6439,2082],[4,-2],[18,0],[4,-6],[12,-4],[1,-8],[10,6],[8,6],[-9,2],[2,6],[24,-2],[0,-8],[7,-4],[10,0],[4,2],[-6,6],[12,4],[7,-6],[8,0],[-4,-4],[4,-4],[15,2],[21,-6],[-9,-8],[7,-4],[7,0],[13,-6]],[[6609,2044],[-21,-6],[-2,-6],[-10,-2],[-14,-16],[-1,4],[-14,-10],[-14,6],[-6,-8],[-15,2],[-6,-4],[9,-2],[4,-8],[-2,-4],[27,-10],[9,-12],[-10,-7],[1,-12],[-4,-2]],[[6540,1947],[-11,2],[-13,6],[-9,8],[-11,5],[-27,14]],[[7153,4286],[4,2]],[[7157,4288],[-4,-2]],[[7076,4274],[13,2],[7,4],[3,14],[10,3],[12,-5],[29,-4],[3,-2]],[[7153,4286],[1,-2]],[[7154,4284],[9,-2]],[[7163,4282],[12,-6],[2,-6],[9,-6],[-22,-6]],[[7164,4258],[-10,10],[-15,-2],[7,-4],[-21,-10],[13,-8],[-17,0],[-22,-4],[-26,0]],[[7073,4240],[-1,8],[6,6],[8,12],[-10,8]],[[7164,4258],[-9,-4],[31,-16],[6,2],[-5,6],[6,4],[11,0],[11,14],[8,6],[26,4],[23,8],[9,0],[3,-8],[16,0],[-2,4],[23,4],[9,-2],[23,4],[0,10],[8,2]],[[7361,4296],[23,-4],[16,4],[23,-4],[2,-4],[21,-8],[23,-2],[18,2],[22,-6],[6,-4],[15,-2],[14,0]],[[7544,4268],[-11,-8],[-19,0],[-23,-18],[-1,-18],[-3,-8],[9,-12],[-12,0],[-19,2],[-4,6],[-13,0],[-28,-6],[-29,-2],[-14,8],[-34,6],[-20,-2],[-12,-6]],[[7311,4210],[-23,4],[-4,0],[-29,6],[-16,-2],[-3,-4],[-12,0],[-18,4],[-1,-2],[-16,2],[-10,-2],[-11,6],[-18,-2],[-4,2],[-22,4],[-4,-2]],[[7120,4224],[-15,2],[-12,0],[-17,4],[-3,10]],[[7629,2115],[18,4],[18,0]],[[7665,2119],[10,-6],[14,0],[3,-6],[12,0]],[[7664,1986],[-6,-6],[-3,-8],[-23,0],[-13,-8],[5,-5],[-7,0],[-13,5],[-4,10],[-25,-11],[-25,15],[-9,4],[-36,8],[-6,4],[-12,6]],[[7487,2000],[8,-2],[9,4],[4,4],[-4,8],[-8,4],[-3,6],[-9,2],[-4,4],[-8,2],[0,10],[-18,2],[8,12],[10,4],[15,0],[6,-2],[18,4],[-4,10],[17,-2],[12,16],[10,-8],[11,12],[2,5],[12,2],[3,-7],[5,4],[7,-1],[15,6],[5,6],[8,2],[15,8]],[[7469,1978],[4,6],[8,-2],[7,6],[-11,8],[10,4]],[[8134,1417],[17,-4],[1,4],[15,-6],[4,2]],[[8171,1413],[-7,-6],[19,0]],[[8114,1381],[-9,4],[-8,-8],[-10,4],[-6,6]],[[8081,1387],[13,6],[4,-4],[17,2],[3,6],[11,6],[2,12],[3,2]],[[7790,1276],[3,4],[-14,10],[3,4],[0,8],[9,4],[7,-4],[18,8],[-3,6],[9,-2],[3,-4],[9,4],[3,6],[10,-2],[2,6],[-6,0],[-7,6],[10,2],[4,-2],[12,2]],[[7862,1332],[12,0],[4,-2]],[[8044,1298],[6,-12],[0,-16],[6,-4],[19,2],[12,-4],[2,-6],[-11,-10],[-7,-2],[-6,-8],[16,-5],[0,-6],[9,-2],[-4,-4],[5,-10],[5,4],[6,-8],[-15,0],[0,-4],[-9,-2],[-6,4],[0,-6],[14,-4],[7,-4],[13,-2],[11,2],[-3,6],[9,0]],[[5624,3817],[-1,-4],[-7,-5],[-6,3],[-18,-3],[-16,-6],[-3,-4],[12,-12],[0,-6],[-6,0],[5,-8],[-10,-8],[-28,2],[-2,-12],[-4,-4],[-17,2],[-8,14],[4,10],[-21,12],[12,2],[6,6],[0,8],[7,0],[6,11],[14,8],[1,4],[10,0],[9,4],[10,0],[20,8],[-4,6],[4,8],[12,2],[11,10],[3,8],[-12,-4],[-10,2],[-9,12],[2,6],[-7,0],[-6,4],[3,4],[-22,4],[-4,4],[4,6],[-7,10]],[[5551,3921],[31,-2],[20,6],[0,7],[19,8],[1,-2],[26,-10],[18,3],[14,-4],[-2,-14],[27,-4],[20,0],[8,-2],[9,14],[17,6],[8,7],[4,10],[15,-6],[18,-2],[10,3],[8,-3],[35,6],[14,9],[3,-1],[14,8],[18,2],[8,4],[11,4],[19,10],[-1,-12]],[[5943,3966],[-13,-11],[-5,-11],[-30,-21],[-17,-10],[-4,-10],[-10,0],[-4,-4],[-10,0],[0,-10],[-5,-2],[0,-14]],[[6935,3506],[-4,-4],[-15,-2],[-14,0],[-7,-2],[7,-4],[-8,-2],[21,-8],[0,-8],[-10,0]],[[6905,3476],[-7,2],[0,6],[-7,-2],[-19,2],[-24,-4],[-7,-4],[-11,0],[-7,-6],[-10,2],[-4,14],[-12,6]],[[6884,967],[3,0]],[[6887,967],[-3,0]],[[6879,971],[4,-4]],[[6883,967],[4,-4],[0,-12],[16,-8],[19,0],[14,-6],[19,-14],[9,-6],[-3,-2],[38,-20],[18,-4],[7,-6],[-4,-2],[0,-8],[19,-2],[-6,-6],[10,2],[2,-6],[-14,-11],[-14,-16],[-16,0],[-29,2],[-8,-2],[-9,2],[-2,12],[-4,4],[-9,-4],[10,0],[3,-8],[-4,-6],[15,-8],[0,-2],[-20,-6],[-23,-2],[-4,-2],[-16,-2],[-20,-4],[-30,-2],[-18,4],[-3,4]],[[6830,816],[-5,8],[-20,2],[-15,-4],[-15,-4],[-25,-2],[-15,14],[-1,6],[-19,0],[-19,4],[-2,2],[-9,-6],[4,6],[11,6],[0,4],[20,19],[8,16],[8,6],[-1,10],[-21,6],[-13,0],[-9,8],[-7,10],[11,18],[-6,6],[-13,-4],[6,12],[-2,10],[5,6],[-1,6],[11,6]],[[6696,987],[15,-4],[9,1],[10,4],[6,6],[11,-4],[4,4]],[[6751,994],[11,-4],[11,2],[6,-4],[6,10],[8,-2],[22,6],[9,2],[14,-17],[16,1],[4,-11],[8,-4],[13,-2]],[[6879,971],[0,0]],[[6529,903],[-3,8],[6,2],[3,14],[-4,4],[7,8],[16,-2],[8,8],[-4,6],[9,16],[-9,-2],[-21,4],[-8,-2],[-10,-8],[-12,-2],[-6,6],[-18,10],[-17,17],[-4,6],[-9,6],[-9,2],[-5,6],[-11,2],[-1,10]],[[6427,1022],[7,-6],[21,14],[15,2],[24,0],[12,4],[1,-18],[19,18],[17,4],[8,-10],[12,-10],[7,4],[7,0],[16,-4],[29,-6],[-1,-2],[35,-2],[28,-20],[12,-3]],[[6830,816],[9,-8],[2,-8],[-5,-8],[-13,-8],[-8,0],[-3,-4],[-18,-6],[-5,2],[17,-10],[8,0],[0,4],[6,-4],[-7,-2],[-15,6],[-13,6],[-41,8],[-19,6],[-43,4],[-1,-2]],[[7467,2758],[-12,10],[-14,8],[4,8],[-8,-2],[-24,8],[-3,4],[-23,-6],[-15,-2],[-13,12],[8,8],[-24,0],[-2,4],[15,0],[11,6],[9,-4],[9,8],[-16,12],[-11,4],[0,3],[-19,-2]],[[7308,2851],[5,4],[-12,2],[-7,6],[11,6],[12,0],[-11,10],[-15,4],[-8,8],[23,4],[9,10],[11,0],[-6,4],[13,6],[-2,-6],[16,10],[14,2],[18,16],[7,11],[-8,3],[-11,11],[2,4],[-9,6],[28,12],[3,6],[-5,4],[-9,0],[10,8],[-19,4],[-13,6],[-10,-2],[-5,10],[2,4],[27,10],[20,-2],[11,4],[4,10],[-7,-2],[-3,4],[3,8],[-20,8],[-38,2],[-15,9],[-5,12]],[[7582,3141],[0,-8],[6,-6],[-2,-8],[-6,-2],[-3,6],[-19,-14],[5,-6],[9,-4],[-9,-12],[3,-6],[-7,0],[0,-13],[-6,-14],[8,-8],[0,-6],[-5,-4],[5,-4],[-2,12],[2,6],[-7,6],[6,8],[1,11]],[[7666,3068],[0,-6],[-9,-14],[-21,2],[-16,-10],[-15,2],[-23,-20],[-8,0],[-2,-6],[12,0],[32,-4],[3,-6],[-7,-14],[2,-10],[5,-8],[-16,-8],[5,-4],[10,-2],[-4,-15],[-8,-8],[13,-8],[9,-2],[-4,-4],[11,-4],[1,-8],[-6,-2],[-10,2],[2,-4],[-11,-2],[-2,-4],[-23,0],[-6,-10],[-4,-14],[-19,-4],[-8,0],[-7,-12],[-8,2],[0,-6],[8,-6],[7,-8],[11,-7],[-1,-7]],[[7559,2829],[-17,0],[-14,-11],[-3,-6],[-6,2],[-13,-10],[-1,-2],[11,-2],[-12,-4],[-6,-10],[-15,-10],[-6,-6],[6,-6],[-16,-6]],[[7565,3083],[-1,3]],[[6784,1510],[4,10],[11,6],[14,10],[12,-2],[11,-4],[16,4],[9,-6],[8,0],[10,-4],[0,-6],[9,-2],[6,-4],[7,2],[-1,8],[9,-4],[17,4],[10,6],[4,-8],[17,10],[9,-6],[14,0],[3,8],[10,2],[8,-6],[8,2],[7,-4],[5,2],[5,14],[26,-4],[9,-4],[9,0],[2,-4],[14,-2],[10,-8],[19,0],[10,-2],[11,2],[15,0],[-2,-8],[14,2],[17,4],[11,0],[8,4],[12,4]],[[7247,1478],[-15,-5],[-1,-6],[-7,-2],[1,-14],[26,-2]],[[7251,1449],[-14,-8],[-13,-14],[-33,-12],[-6,0],[1,-8],[-4,-4],[16,-8],[17,0],[8,-6],[14,-16]],[[7237,1373],[-4,-6],[2,-8],[-9,-2]],[[7226,1357],[-18,0],[-3,2],[-22,0],[-7,-2],[-11,6],[-16,2],[-14,0],[-3,4],[-18,-4],[-7,4],[-16,0],[-10,-4],[-17,4],[-30,2],[-13,-4],[-40,0],[-8,2],[-22,2],[-6,-2],[-5,-8],[-9,-5],[-12,-1],[0,-7],[14,-10],[-20,-4],[-14,0],[-29,-4],[-3,2]],[[6676,4643],[3,12],[31,23],[18,-4],[11,4],[-3,4],[14,-1],[0,-9],[4,-7]],[[6754,4665],[10,-24]],[[6764,4641],[-18,-8],[-12,0],[-21,4],[-20,0],[-17,6]],[[6754,4665],[12,5],[4,8]],[[6770,4678],[11,-1],[9,1],[7,-5],[13,1],[-5,-11],[15,0],[7,-4],[2,-6],[7,2]],[[6836,4655],[-4,-6],[-2,-12],[-17,-4],[-12,4],[-11,0],[-9,6],[-17,-2]],[[6676,4643],[-13,-4],[-14,4],[0,4],[-24,6],[-18,0]],[[6733,4728],[6,-16],[-6,-6],[21,0],[23,-2],[5,-11],[-7,-3],[-5,-12]],[[6115,2923],[-1,-2],[16,-22],[11,10],[26,0],[8,-18],[11,-10]],[[6186,2881],[5,-12],[-12,-4],[4,-8],[-7,-2],[5,-8],[2,-10],[6,-4]],[[6189,2833],[-7,0]],[[6182,2833],[-12,-4],[-7,4],[-18,6],[-23,4],[-34,4],[3,8],[-7,10],[5,0],[6,8],[-11,4],[-10,-10],[-18,4],[-7,-6],[-6,2],[-13,-4]],[[4991,707],[6,-16],[2,-22],[15,6],[-1,-2],[-13,-8],[-1,-4],[-14,-6],[-10,-10],[-1,-12],[-8,-2],[-17,-16],[-6,4],[-14,0],[-12,2],[-9,-2],[-20,0],[-13,-2],[-13,-7],[10,2],[47,2],[19,1],[11,-3],[-13,-20]],[[4936,592],[-11,2],[1,-6],[-16,-6],[-7,-8],[-16,-2],[-2,-6],[-6,2],[-15,-12]],[[4864,556],[-14,8],[-10,-4],[-3,-10],[-10,-4],[-14,2],[-7,-6],[-13,2],[8,4],[-7,4],[-10,-6],[-1,-4],[-7,6],[-10,2],[-7,6],[-14,4],[-7,4],[-3,8],[-6,0],[-16,12]],[[7056,3524],[15,-4],[1,-4],[14,-8],[1,-6],[11,-4],[10,0],[18,2],[2,-4],[7,4],[4,-8],[16,-4],[0,-6],[-44,-2],[1,-18],[-5,0],[-3,-10],[5,-5],[-3,-6],[-5,0]],[[6892,3464],[5,10],[9,-2],[-1,4]],[[3940,967],[12,-2],[34,0],[33,4],[6,-2],[0,-6],[-5,-6],[5,-8],[8,0],[3,-12],[14,-12],[10,-12],[-11,-2],[-4,-8],[-6,-26],[4,-2],[-6,-13],[-8,-6],[-23,-4],[4,-2],[-15,-2],[-3,-4],[16,-2],[1,-4],[22,0],[6,-8],[23,-10],[11,-2],[-4,10],[20,4],[13,-8],[-6,-4],[-1,-6],[6,0],[-3,-8],[13,-14],[2,-10],[7,-4],[-6,-8],[1,-10],[11,-4],[6,-4],[4,-9],[-2,-8],[2,-8],[9,-6],[2,-14],[13,-4],[17,0],[0,-10],[-5,-4],[4,-8],[-5,-8],[2,-8],[-5,-2],[0,-6],[5,-6],[8,4],[6,0],[2,-6],[8,0],[-4,8],[13,-2],[2,-4],[-8,-4],[-1,-4],[7,-8],[8,-4],[4,-10],[-12,-9],[3,0]],[[4207,610],[-6,-10],[4,-8],[-23,-4],[-10,4],[0,4],[-9,4],[-9,-4],[-10,2],[-2,10],[-15,2],[4,5],[-10,4],[-5,10],[12,6],[0,6],[-17,-2],[-11,4],[-7,0],[-9,2],[-4,-4],[6,-2],[-6,-6],[7,-6],[-20,-4],[4,-2],[-3,-4],[-12,-2],[-11,4],[-16,-4],[-7,2],[-19,-2],[-3,6],[-11,6],[-12,4],[-9,-2],[-3,-8],[-13,-6],[-20,18],[-3,-4],[-9,2],[-11,-10],[-10,-7],[-19,-6],[4,-8],[-9,-6],[3,-8],[-1,-10],[4,-2],[-10,-8],[7,-12],[-10,-16],[-13,0],[0,-12],[-10,0],[-8,6],[-14,-4],[-8,-4],[-6,-6],[-15,-2],[-7,2],[0,-6],[-25,0],[-7,-6],[-12,0],[-11,8],[0,4],[-25,-2],[-9,-4]],[[3698,512],[-1,6],[-9,8],[-3,-10],[-24,-14],[-1,12],[-6,8],[-2,8],[9,10],[-4,14],[-22,4],[-33,-2],[-13,0],[-8,-2],[-11,0],[-17,-4],[-12,2],[-16,-2],[-34,4],[-13,4],[-8,0]],[[3470,558],[3,4],[-1,8],[-6,4],[0,6],[10,8],[3,8],[-3,2],[6,8],[-3,9],[-4,0],[-5,8],[11,0],[4,-4],[11,0],[11,-5],[3,3],[11,-2],[12,16],[7,0],[10,10],[8,-2],[-5,-10],[9,-2],[6,-8],[-3,-4],[8,-15],[4,6],[13,-2],[11,-4],[11,4],[32,0],[25,-16],[-2,4],[-16,10],[-12,8],[-6,-2],[-19,0],[-15,-2],[-12,4],[0,5],[-11,2],[-3,12],[3,4],[-5,2],[9,10],[6,2],[-19,10],[11,2],[5,4],[1,-6],[8,-2],[13,0],[6,-4],[15,6],[1,6],[15,0],[8,4],[2,-4],[14,-2],[3,4],[29,0],[9,6],[6,8],[12,10],[-2,4],[5,8],[1,6],[6,2],[-3,10],[-3,-2],[6,12],[-1,4],[22,0],[7,4],[6,9],[6,-2],[15,4],[-3,2],[9,4],[12,0],[3,10],[13,2],[0,4],[13,4],[4,12],[-2,6],[16,4],[-4,4],[7,4],[8,0],[12,12],[19,2],[18,12],[10,2],[4,8],[3,37],[0,14],[-4,30],[-7,8],[4,0],[-2,12],[-4,4],[4,4],[3,8],[14,10]],[[4846,1038],[-4,-2],[7,-6],[0,-6],[-11,4],[-16,10],[0,-16],[8,-10],[0,-8],[18,0],[0,-12],[5,-11],[-18,-18],[-9,-2]],[[4557,945],[3,18],[-9,0],[-41,-6],[-23,8],[-19,0],[-1,8],[4,11],[9,4],[23,4],[-6,4],[8,4],[0,6],[6,4],[-7,6],[-23,0],[-7,-6],[-19,-8],[-22,10],[-4,6],[5,16],[-2,4],[-43,2],[0,-6],[-14,2],[-4,4],[-22,2],[5,8],[-19,0],[-4,-2],[-8,0],[-7,-4],[-12,2],[-8,8],[-7,-2],[-14,0]],[[4275,1052],[1,12],[5,0],[12,12],[-3,6],[3,12],[14,6],[13,-2],[-4,7],[15,0],[10,-3],[11,4],[0,7],[14,-6],[10,0],[17,-5],[11,2],[-12,1],[-5,2],[-16,4],[-12,6],[-17,0],[-5,-7],[-30,-1],[-2,-3],[-18,-4],[-6,-8],[2,-4],[-27,12],[-5,11],[0,26],[-15,2],[-4,2],[5,6],[-2,4],[-20,8],[3,4],[18,-2],[16,0],[7,8],[5,16],[-4,10],[-8,4],[-8,2],[18,2],[7,8],[31,0],[5,4],[20,0],[10,6],[14,0],[8,-2],[10,4],[5,-2],[8,7],[8,0],[9,-3],[5,1],[14,-7],[11,0],[7,6],[17,3],[32,2],[24,0],[11,2],[5,6],[12,2],[25,-2],[5,-4],[15,4],[8,-2],[3,4],[15,4],[14,0],[7,-4],[22,0],[11,6],[2,4],[10,4],[14,-8],[17,0],[7,-2],[17,0],[6,-2]],[[6073,1105],[18,0],[23,-5],[14,-6],[23,4],[20,-14],[5,-2],[13,-12],[10,-2],[5,-8],[1,-12],[11,-4],[4,-10],[23,-14],[16,-6],[12,-2],[-4,-8],[4,-10],[9,-2],[9,-11],[6,5],[10,2],[15,0],[6,8],[8,6],[12,0],[6,4]],[[6352,1006],[17,0],[10,4],[12,0],[4,6],[27,8],[5,-2]],[[6131,812],[-1,0]],[[6130,812],[-13,6],[-12,-2],[-13,0],[-1,6],[12,4],[-2,4],[-10,2],[7,8],[-7,6],[-10,4],[13,4],[-7,9],[-9,-5],[-12,3],[10,3],[-1,5],[-7,2],[-9,0],[-14,4],[3,10],[-9,8],[-13,-2],[-8,2],[-16,-10],[-2,6],[7,14],[-1,4],[-15,-2],[-12,-2],[0,8],[-12,2],[-8,-6],[-8,-2],[-13,8],[-1,4],[-13,4],[9,4],[6,0],[6,10],[10,-6],[9,0],[11,-2],[10,2],[7,6],[7,0],[3,12],[-10,12],[-1,-2],[-13,6],[-17,0],[-4,10],[6,4],[10,0],[-2,2],[8,13],[-1,2],[9,2]],[[5987,996],[17,8],[38,8],[13,0],[-2,6],[-8,6],[-21,0],[-5,12],[12,8],[8,10],[9,4],[21,12],[-3,8],[-11,4],[-5,6],[0,8],[7,4],[12,2],[4,3]],[[6809,4562],[-3,-5],[24,-2],[7,3],[10,-1]],[[6847,4557],[0,0]],[[6847,4557],[12,-6]],[[6708,4510],[-2,6],[6,4],[-1,6],[-14,4],[-13,0],[-15,-6],[-2,4],[-13,-4],[-8,6],[-3,-4],[-20,8],[-4,-2],[-15,8],[4,7],[9,8],[8,-2],[7,14],[9,0],[5,6],[9,2],[12,6],[-1,4],[10,-2]],[[8098,2086],[-11,-10],[-6,-4],[30,0],[29,-4],[12,4],[9,0],[6,-6],[1,-6],[-4,-16],[2,-6],[-3,-16],[-8,-8]],[[8155,2014],[-7,-6],[-8,-12],[-22,2],[-23,-23],[17,-24],[-12,-2],[-22,-10],[-6,2],[-4,-14],[-9,0],[-3,-4]],[[7665,2119],[6,12],[12,10],[11,6],[-6,8],[-9,28],[6,4],[14,0],[5,4],[15,4],[10,0],[13,-6],[21,-18],[10,4],[12,0],[3,8],[8,4],[-3,10],[-8,8],[28,23],[-6,2]],[[8224,2472],[2,0]],[[8226,2472],[-2,0]],[[8276,2542],[51,4],[26,14],[1,6],[-5,4],[0,21],[3,4],[15,8],[12,-4],[13,0],[9,6],[14,0],[15,8],[14,2],[5,-2],[22,0]],[[8471,2613],[-5,-14],[-10,-14],[-4,-29],[7,-8],[-8,-6],[-26,-20],[-18,-6],[-38,-18],[-4,-6],[-21,-4],[-50,-6]],[[8294,2482],[-3,4],[-9,30],[-6,26]],[[8355,2266],[-9,22],[-14,8],[0,14],[-8,8],[11,8],[4,6],[-12,4],[0,9],[-9,4],[-3,6],[-11,0],[-7,6],[-21,10],[-10,4],[3,20],[-1,2],[-11,2],[3,6],[-9,2],[-12,4],[-1,-10],[-19,-8],[-7,4],[-6,-6],[-10,-6],[-26,20],[-24,16],[-4,4],[-11,2],[-7,4],[4,6],[-5,4],[-8,0],[11,10],[1,8]],[[8127,2459],[19,1],[40,6]],[[8186,2466],[94,14],[63,8],[23,4],[3,4],[37,20],[25,8],[21,18],[6,4],[-5,10],[1,6]],[[8454,2562],[3,-2],[27,-2],[-1,-20],[-14,-4],[6,-6],[16,-10],[10,-4],[16,-8],[-8,-2],[6,-4],[-8,0],[-7,-10],[-10,-2],[7,-8],[-1,-6],[5,-6],[12,0],[1,-9],[-9,-1],[0,-5],[10,-2],[-3,-4],[-8,0],[-2,-6],[9,-10],[-7,-4],[2,-4],[12,0],[5,2],[5,-4],[-17,-8],[22,-10],[2,2],[7,-8]],[[8542,2397],[-101,-73],[-25,-10],[-14,-10],[-6,-8],[-41,-30]],[[8352,2264],[44,32],[6,8],[15,10],[25,10],[100,73]],[[8542,2397],[10,6],[22,0],[29,6],[9,-2],[0,-4],[12,2],[10,-6],[11,-2],[14,-4],[5,-8],[8,-8],[10,-4],[10,-8],[21,-8],[0,-12],[5,-8]],[[8718,2337],[-5,-1]],[[8713,2336],[-28,0],[-12,5],[-14,-4],[-9,0],[-9,4],[-14,0],[-21,-4],[-2,-4],[-32,3],[-14,-6],[-8,-4],[-8,-2],[-1,-14],[-9,0],[-14,8],[0,-4],[-18,8],[0,-6],[-16,-10],[-10,-12],[-30,2],[-3,-10],[-44,-6],[-11,2],[-20,-10],[1,-4],[-9,-4],[-6,0]],[[7034,3149],[3,-2],[10,4],[-1,4],[13,-2],[10,-6],[-7,-4],[2,-8],[11,-4]],[[6771,3133],[13,10],[6,-4],[-2,-6],[19,4],[5,-4],[-6,-4],[24,-2],[5,6],[15,2],[14,4],[6,0]],[[6870,3139],[18,2],[7,-2],[14,4],[-5,8],[9,0],[8,6]],[[6921,3157],[21,-2],[9,6],[24,-6],[-4,-2],[-2,-10],[4,-4],[11,0],[14,-2],[0,4],[14,0],[10,-4],[12,12]],[[7217,1284],[-5,2],[-9,-2],[-3,12],[-11,0],[-13,6],[0,6],[14,8],[-2,4],[5,6],[19,6],[1,4],[9,6],[4,15]],[[7237,1373],[26,8],[33,-20],[2,-4],[40,2],[8,2],[12,-2],[14,0],[30,4],[5,2],[18,-2]],[[7533,1254],[-15,-4],[0,-4],[-7,-2],[-1,-8],[-19,-13]],[[7219,1163],[-19,-4],[1,-4],[-26,-2],[-8,4],[2,6],[-14,6],[-14,0],[-1,8],[17,2],[9,2],[5,10],[-10,4],[3,2]],[[7164,1197],[11,10],[10,4],[12,-6],[6,0],[5,8],[11,10],[-7,7],[6,8]],[[8372,1947],[6,-6],[-5,-16],[9,-2],[17,4],[1,-6],[9,-6],[-3,-4],[10,-10],[4,-8],[0,-12],[6,-8],[-3,-12],[3,-25]],[[8218,1707],[-9,2],[-4,-2],[-22,0],[-10,-4],[0,12],[-4,4],[0,17],[-23,16],[15,8],[-9,6],[-22,6],[10,10],[3,6]],[[8143,1788],[15,4],[-3,6],[9,10],[4,0],[5,8],[7,4],[9,0],[-15,14],[-4,0],[4,18],[-25,17]],[[8155,2014],[9,-8],[-4,-6],[1,-6],[-3,-6],[9,-4],[10,0],[12,-16],[-4,-7],[4,-2],[14,9],[51,16],[3,2],[21,12],[13,0],[13,-10],[6,-2],[35,4],[2,-12],[7,-6],[2,-9],[8,-4],[-1,-4],[9,-8]],[[5927,1280],[-12,2],[-16,4],[6,2],[3,8],[-8,0],[-8,2],[-13,0],[-13,6],[-16,4],[-16,-8],[-11,-2],[-5,4],[-9,-8],[-12,-4],[-20,2],[-5,8],[-23,8],[1,2],[-10,6],[-4,-2],[-18,8]],[[5718,1322],[8,10],[-14,6],[-6,0]],[[5706,1338],[4,6],[8,0],[5,9],[-6,8],[2,16],[5,0],[9,-18],[10,2],[0,-4],[-8,-4],[3,-9],[19,0],[3,2],[2,15],[3,10],[16,2],[2,10],[8,-4],[7,0],[-2,4],[-9,2],[20,0],[-1,6],[11,-2],[2,4]],[[5999,1425],[24,0],[10,4],[9,0],[15,2],[17,-2],[10,-8],[1,-6],[18,6]],[[6103,1421],[11,-6],[4,-6],[-3,-4],[-9,-4],[9,-8]],[[6108,1328],[-10,-4],[-20,-6],[-12,-6],[-15,0],[-19,-6],[-11,0],[-7,-6],[-6,2],[-6,8],[-20,-8],[3,-4],[-12,-8],[-9,2],[-7,-4],[2,-4],[-11,-4],[-16,4],[-5,-4]],[[5792,2221],[-14,-1],[-3,2],[-11,-4],[-14,0],[9,-8],[8,-1],[4,-8],[13,2],[8,-6],[4,4],[13,0],[4,-8],[-10,-2],[-7,-8],[-14,-4],[-5,-14],[5,-6],[12,4],[11,-2],[17,6],[10,0],[6,4],[3,-2],[34,2],[8,-4],[7,6],[20,2],[2,6],[-10,8],[1,4],[7,0],[11,6],[31,2],[21,-14],[-8,-4],[-21,-4],[-12,-8],[-2,-10],[9,-6],[27,2],[13,0],[9,-6],[20,0],[9,-6],[-3,-2],[-10,2],[-6,-2],[2,-6],[8,-4],[-9,-4],[2,-4],[-7,0],[-3,-8],[-8,-4],[4,-6],[-8,-2],[1,-7],[-10,0],[-2,-3],[8,-8],[1,-5],[10,-8],[22,2],[7,6],[18,-4],[7,2],[14,-18],[-10,-4],[-1,-6],[6,-14],[0,-10],[11,0],[-1,-24],[-5,-8],[-7,-4],[4,-2],[-4,-29]],[[5325,2048],[-12,4],[-19,2],[-5,4],[8,4],[-2,4],[20,2],[20,4],[21,10],[-2,5],[-10,3],[-9,-8],[-17,4],[-10,4],[9,5],[0,4],[16,6],[1,8],[-5,12],[6,2],[21,10],[-5,0],[7,12],[-4,6],[26,4],[4,2],[-4,8],[11,6],[10,0],[19,6],[9,-2],[30,0],[0,6],[10,4],[-8,2],[-30,-2],[-17,4],[2,10],[5,4],[4,11],[-3,4],[2,10],[4,4],[11,0],[4,2],[14,2],[12,18]],[[9759,2568],[5,-2],[-4,-6],[-2,6]],[[9220,2818],[9,-4],[-14,0],[5,4]],[[9265,2818],[16,-2],[2,-6],[-9,4],[-7,-2],[-11,2],[9,4]],[[9140,2820],[7,0],[-3,-6],[-8,2],[4,4]],[[9168,2822],[7,-6],[-16,-2],[-16,0],[7,8],[5,-4],[9,6],[4,-2]],[[9143,2832],[8,-3],[1,-5],[11,-2],[-9,-4],[-3,4],[-16,0],[0,-6],[-8,-4],[0,8],[16,12]],[[9869,2599],[-8,-5],[-34,-5],[-7,-7],[-8,-3],[-9,0],[-13,-5],[4,-8],[-3,-6],[-9,2],[-11,0],[-12,6],[-11,2],[-10,-4],[-1,6],[-8,0],[-6,-4],[-14,15],[-5,-2],[-14,-2],[-3,-9],[-15,0],[-6,2],[8,7]],[[9063,2766],[-5,26],[-4,14],[3,8],[-1,15]],[[9056,2829],[17,-2],[13,0],[23,4],[10,-2],[4,-4],[0,-13],[17,0],[8,2],[20,0],[19,6],[18,-4],[9,2],[4,-6],[11,0],[8,4],[15,2],[0,-6],[29,-2],[1,6],[19,4],[-32,7],[-7,2],[-16,-4],[-8,2],[3,5],[14,0],[66,-14],[34,-6],[46,-8],[38,-2],[26,0],[42,-4],[48,-8],[41,-12],[9,-6],[53,-18],[20,-10],[50,-27],[42,-18],[22,-14],[47,-20],[2,-4],[20,-10],[38,-22],[16,-12]],[[6020,2849],[1,-6],[11,-11],[-14,-8],[6,-6],[-8,-4],[-1,-6],[-7,-2],[-6,8],[-14,0],[6,-2],[3,-8],[-8,-2],[-3,2],[-11,0],[-9,-4],[-9,-14],[-9,-4],[0,-8],[-7,-8],[-7,-2],[2,-8],[12,-10],[-2,-6],[11,-4],[4,6],[16,2],[6,4],[31,2],[11,2],[-7,-14],[2,-8],[-6,-6],[-8,-25],[-12,2],[-8,-8]],[[5986,2693],[-9,-4],[-2,6],[-12,-8],[-28,2],[1,-10],[10,-12],[-5,-4],[5,-10],[-13,2],[-1,-4],[-7,2],[-8,-2],[9,18],[-19,0],[-4,-4],[-18,2],[-5,-8],[-12,-4],[5,6],[-6,2],[-12,8],[-6,-4],[-7,2],[-3,4],[-11,2],[-14,-8],[3,-4],[-2,-8],[4,-6],[-8,0],[-16,-2],[-6,0],[-13,-16],[-6,8],[-21,-6]],[[5749,2633],[-16,4],[-7,8],[-22,-2],[-6,-6],[-9,0],[-12,4],[-13,16],[-6,4],[-10,-4],[-2,6],[-31,-4],[1,-6],[-8,0],[0,-4],[-25,-10],[-13,0],[-10,4],[-1,12],[-13,-2],[-7,2],[-6,-4],[-27,6],[-7,-4],[-9,6],[-9,-10],[-8,-4],[-9,0],[-5,-2],[4,-6],[17,-6],[3,-4],[-9,-8],[-22,2],[-1,-10]],[[5451,2611],[-17,-2],[0,8],[-12,2],[-6,4],[-6,-2],[5,14],[-8,4],[-3,-2],[-13,4],[-17,0],[6,2],[-11,2],[-2,-4],[-8,4],[-3,-4],[-7,2],[-1,6],[-8,0],[-3,8],[6,2],[-4,6],[-7,-4],[-7,0],[-11,-6],[-41,8],[-3,6],[8,2],[-1,4],[-7,-4],[-6,6],[0,8],[13,14],[-2,3],[5,6],[-11,4],[3,2],[24,10],[7,6],[-24,10],[8,6],[8,0],[-11,4]],[[5284,2750],[2,4],[11,2],[18,-2],[-2,6],[7,16],[13,12],[11,-4],[21,0],[1,2],[16,0],[4,-2],[16,8],[0,6],[11,6],[3,6],[6,2],[21,2],[6,8],[7,-4],[-4,-2],[12,-10],[18,-8],[13,-4],[1,4],[18,0],[9,8],[11,2],[3,-6],[30,-2],[9,-2],[3,-8],[26,-16],[0,-6],[6,-2],[8,-10],[5,4],[36,22],[26,0],[3,4],[0,10],[-3,6],[1,18],[-7,4],[8,12]],[[5706,1338],[-12,2],[1,4],[-6,6],[-7,1],[-12,-5],[3,-6],[-28,4],[-1,13],[-10,4],[5,6],[0,6],[17,0],[0,4],[-16,0],[-17,2],[-45,-2],[-9,4],[-8,0],[-17,-4],[-2,6],[-11,2]],[[5531,1385],[-22,6],[17,10],[7,8],[9,16],[11,4],[16,16],[26,12],[6,6],[16,10],[16,2],[11,7],[13,0],[2,-2],[22,2],[7,4],[9,0]],[[6589,1639],[17,0],[4,-4],[17,0],[8,4],[12,0],[16,4],[1,8],[9,4],[4,6],[13,-2]],[[6690,1659],[-13,-6],[-2,-12],[9,-8],[3,-8],[11,-10],[10,0],[4,-6],[-12,-10],[5,-7],[-22,-10],[5,-16],[-6,-4]],[[6682,1562],[-10,-6],[-27,-4],[8,-6],[-2,-6],[-4,2],[-10,0],[-23,8],[1,2],[-14,-2],[-31,-14],[-9,12],[1,6],[-10,4]],[[6552,1558],[4,4],[-14,4],[5,8],[-8,4],[-2,10],[14,13],[7,2],[6,-4],[8,8],[17,0],[-10,28],[10,4]],[[9489,1330],[1,0]],[[9490,1330],[-1,0]],[[9640,1389],[-4,-6],[38,-6],[-24,-10],[-6,-8],[-7,0],[0,-11],[-5,-10],[-19,0],[-1,-10],[-14,-16]],[[9598,1312],[-5,4],[-8,0],[-6,4],[-25,2],[-8,2],[-14,-2],[-18,4],[-7,6],[-19,2],[-1,-6],[-12,-4],[-6,2],[-10,0],[-13,-8],[-15,-2],[-7,-8],[-35,-6]],[[9345,1367],[15,0],[1,4],[38,0],[31,2],[28,4],[33,0],[16,-2],[28,0],[7,4],[12,2],[16,-4],[14,2],[4,4],[7,-2],[8,2],[15,0],[12,2],[10,4]],[[6922,4676],[-7,-13],[-12,-4],[-9,2],[-11,-2],[-34,0],[-13,-4]],[[6808,4718],[12,-10],[20,-10],[10,-8],[28,-20],[9,-1],[22,5],[7,6],[6,-4]],[[6780,2566],[12,-8],[24,-10]],[[6863,2455],[-15,-12],[-21,0],[-9,-8],[-9,4],[-4,-4],[-9,8],[-4,-4],[-15,-2],[-1,-8],[-11,-4],[-12,8],[-9,0],[-3,-6],[-13,-4],[-5,-8],[8,-2],[29,-20],[12,-2],[3,4],[20,-2],[20,14],[20,-10],[7,-6],[20,-4],[15,-2],[16,10],[2,-8],[6,0]],[[6901,2387],[9,-10],[-11,-8],[0,-10],[-5,-2]],[[6622,2407],[-3,6],[15,2],[12,4],[-3,2],[-18,6],[2,6],[-5,4],[-2,10],[-9,0],[-9,8],[11,5],[-7,4],[-6,0],[-11,8],[0,4]],[[6589,2476],[14,4],[5,-4],[22,6],[8,-6],[32,0],[0,2],[12,-2],[5,4],[16,0],[14,2],[11,8],[7,14],[-8,2],[6,4],[-4,4],[4,8],[-4,2],[9,2],[-7,4],[-4,10],[28,10],[0,2],[11,2],[-2,2],[16,10]],[[8314,2246],[-12,-12]],[[8302,2234],[-10,-8],[-16,4],[-14,-2]],[[7958,2542],[6,-2],[19,10],[0,4],[26,0],[14,-4],[5,0],[10,-4],[3,-4],[17,-8]],[[8058,2534],[-21,-4],[-6,-2],[1,-14],[-22,-4],[11,-4],[-1,-4],[9,-6],[-4,-8],[1,-8],[5,-2],[-3,-4],[-16,-12],[12,-11],[10,0],[15,7],[32,0],[10,-2],[15,3],[8,5],[12,-1],[1,-4]],[[8355,2266],[-7,-4],[-15,0],[-18,-10],[-1,-6]],[[6073,4420],[-6,4],[4,6],[1,10],[6,7],[-2,7],[10,10],[0,16]],[[7164,1197],[-12,4],[-4,-4],[-24,8],[-21,0],[-21,4],[-17,0],[-2,2],[-14,-2]],[[7049,1209],[-18,-4],[-12,-6],[1,12],[-2,8],[-16,6],[-2,-8],[-8,-2],[-13,10],[-14,5],[-23,6],[-4,-2],[0,-7],[-13,-10],[-7,-2],[7,-6],[-6,-6],[2,-10],[-15,-2],[-5,2],[-11,-10],[-3,4],[-13,-4],[-12,-8],[-27,-10],[-11,8],[-7,4],[-34,2],[-34,6],[-12,-2],[-22,-6]],[[6715,1177],[-15,18],[4,10],[-8,2],[-15,10]],[[6780,2566],[3,6],[-11,7]],[[6772,2579],[19,10],[11,-2],[16,10],[4,10],[-11,8],[-5,8],[7,12],[10,0],[3,-2],[11,0],[4,4],[20,2],[12,-8],[14,4],[15,8],[6,4],[-6,10],[20,6],[0,8],[23,0],[28,28],[-6,3],[11,8],[28,10],[13,8],[12,0],[8,6]],[[7089,2736],[-7,-12],[10,-2],[-8,-8],[6,-12],[-8,0],[3,-11],[11,-6],[-2,-6]],[[8471,2613],[14,-4],[10,8],[15,6],[5,4],[15,6],[31,10],[7,0],[-27,12],[7,6],[9,4],[-8,2],[9,4],[6,12]],[[8564,2683],[17,2],[40,0],[16,-4],[7,-4],[17,-20],[18,-26],[4,-10],[-6,-6],[-21,-14]],[[8656,2601],[-16,4],[-8,-2],[-18,0],[-6,-2],[-20,6],[-7,-6],[-17,0],[-12,4],[1,-14],[-29,-2],[-19,-4],[-8,2],[-19,14],[-9,0]],[[8469,2601],[2,12]],[[8988,2831],[23,-2],[-27,-2],[4,4]],[[8658,2601],[28,20],[-4,10],[-20,30],[-12,14],[0,6],[15,4],[22,12],[6,5],[11,4],[4,4],[27,12],[-3,8],[3,8],[19,22],[9,16],[1,6],[12,20],[34,20],[18,7],[12,0],[13,-4],[-3,-3],[7,-4],[4,6],[12,5],[26,-2],[51,4],[4,-4],[-5,-3],[-11,1],[-13,-3],[5,-2],[28,0],[12,5],[-9,0],[11,6],[10,-2],[0,-2],[44,0],[-3,-9],[8,6],[-3,5],[22,3],[6,-3]],[[8995,2595],[-10,-9],[-7,-1],[-1,-6],[-10,-3],[-15,2],[-1,3],[-12,2],[-9,-4],[-2,-9],[-12,2],[-9,7],[-13,-1],[-10,-4],[-23,-6],[-26,-8],[-12,0],[-14,-2],[-16,0],[0,2],[-21,6],[8,4],[-6,6],[-16,-2],[-17,2],[-2,-4],[-25,0],[-3,-4],[-33,-2],[-3,4],[-3,16],[3,9],[-2,6],[-15,0]],[[8958,2840],[17,0],[40,-5],[12,-4],[-35,-2],[-23,4],[-9,-4],[-2,6],[5,5],[-13,-3],[-5,2],[13,1]],[[6103,1421],[5,16],[0,10],[-6,2],[1,8],[5,10],[-1,7],[-20,2],[-13,8],[12,6],[14,2],[1,4],[24,8],[15,2],[4,6],[-6,0],[-8,8],[4,8],[-6,4],[1,12],[7,6],[-13,2],[1,6]],[[6124,1558],[5,4],[16,0],[5,-2],[3,10],[19,4],[14,6],[1,-6],[14,0],[2,-4],[12,4],[24,-6],[31,28],[61,47],[22,-12],[23,-10],[12,4],[12,-8],[13,-4],[20,-2],[-10,18],[9,10],[9,2],[21,-12],[16,0],[15,-8],[11,4],[-10,6],[-1,6],[-11,12],[4,-2],[21,6],[22,-24],[10,0],[20,6],[3,4],[-7,6],[11,10],[-7,8],[1,8],[6,0],[1,-4],[15,-24],[7,-4]],[[6552,1558],[-4,2],[-12,-2],[-1,-8],[-5,-2],[4,-6],[-14,4],[-2,-4],[12,-8],[-4,-6],[9,-2],[5,-16],[9,-10],[-14,0]],[[7523,2191],[1,-12],[-16,-6],[-19,-4],[-17,-2],[7,-8],[-13,0],[-5,6],[-14,0],[-4,6],[-9,-2],[-5,10],[-5,4],[-13,4]],[[7546,2161],[-21,0],[-9,-4],[-25,0],[-19,-6],[-11,-12],[-14,-2],[-18,2],[-10,6],[-12,-2],[-1,14],[-5,0],[-8,8],[-13,4]],[[9579,2508],[2,6],[-10,2],[-5,6],[-24,0],[-3,2],[-12,0],[-12,-2],[3,12],[-13,-4]],[[9505,2530],[-1,6],[-13,6]],[[9619,2508],[-16,-2],[-8,4],[-10,0],[-6,-2]],[[9583,2508],[13,2]],[[9596,2510],[-13,-2]],[[9566,2498],[1,2]],[[9567,2500],[-1,-2]],[[9567,2500],[7,4]],[[9574,2504],[-7,-4]],[[9566,2498],[-24,-14],[-6,-2],[-11,6],[-7,-4],[-11,8],[-9,4],[2,6],[-8,0],[-6,4],[4,6],[-5,4],[-11,-6],[-2,8],[-9,4],[-1,6],[11,0],[12,8],[20,-6]],[[9579,2508],[-6,-2]],[[9573,2506],[1,-2]],[[9574,2504],[-8,-6]],[[7220,2798],[1,4],[-11,8],[-13,-2],[-24,10],[5,7]],[[7178,2825],[3,12],[12,2],[-6,4],[13,2],[0,2]],[[7263,2804],[-13,-6],[-11,2],[-19,-2]],[[7130,2857],[20,10],[8,-2],[27,-2]],[[7178,2825],[-10,0],[-6,4],[-5,-4],[-19,2],[12,-7],[6,-6],[-18,0],[-10,-2],[-17,-6]],[[7220,2798],[-9,-10],[-6,0],[-5,6],[-8,-26],[2,-8],[-12,-4],[-7,-4],[-24,6],[-11,6]],[[6945,2427],[-5,-2],[-5,-16],[11,2],[11,-4],[-7,-14],[-26,0],[-10,4],[-7,-2],[-6,-8]],[[8453,1403],[-4,0]],[[8449,1403],[-18,6],[-11,-2]],[[6297,3324],[-10,7],[-8,-3],[-5,11],[9,2],[-7,8],[13,6],[7,10],[-17,2],[3,4],[-14,2],[-3,10]],[[6265,3383],[7,6],[5,0],[1,6],[14,-2],[9,0],[4,-2],[14,0],[9,-2],[6,6],[17,4],[5,6],[-2,4],[6,10]],[[6421,3314],[-23,7],[-9,4],[-12,-2],[-9,2],[-5,6],[-9,2],[-23,0],[4,-4],[-9,-4]],[[6235,3379],[19,2],[11,2]],[[8449,1403],[4,-2],[9,-12],[-14,0],[3,-6],[-2,-18],[-11,-21],[-12,2],[-8,-4],[4,-8],[-6,-4],[-9,0],[-9,-6],[-8,-2],[-4,-8],[3,-10],[5,-2],[-6,-4],[-26,-4],[-12,6],[-3,-2]],[[7114,1691],[-11,6],[-14,10],[3,2],[-5,8],[19,9],[-4,6],[5,6],[-10,4],[5,4]],[[6969,1675],[17,8],[6,6],[0,8],[-5,4],[8,12],[-1,9],[6,4],[-4,4],[3,6],[13,2],[12,8],[12,2],[-3,4],[0,12],[-11,6],[11,12],[-6,6],[-10,-2],[6,8]],[[7077,1629],[-7,-4],[-9,2],[3,2],[-14,2],[-5,4],[5,10],[20,10],[-7,6],[-6,-2],[-8,10],[-14,-6],[-2,-4],[-6,4],[-8,-2],[-4,12],[-8,6],[-10,-6],[-8,-12],[-10,0],[-10,14]],[[6085,3589],[-5,4],[4,6],[-3,4],[11,2],[3,6],[-27,4],[-1,2],[13,4],[-7,4],[11,2],[-6,6],[16,10],[30,6],[2,-2],[11,2],[0,4],[29,6],[6,4],[-12,12],[-9,18],[-1,7],[22,9],[7,-1],[29,8]],[[6208,3716],[-1,-10],[10,-5],[4,3],[7,-3],[1,-7],[21,-1],[1,1],[13,-4],[5,-5],[13,-8],[-5,-4],[10,-12],[7,-2],[13,-12],[-8,-6],[9,0],[6,-6],[12,-4],[15,-8]],[[6783,3403],[22,0],[5,-2]],[[6909,3280],[7,-10]],[[6916,3270],[4,-12],[10,-8]],[[6930,3250],[-20,0],[-2,-8],[-9,-2],[-9,8],[-11,0],[-15,-6],[-11,0],[-6,-4]],[[6847,3238],[-6,4],[-26,-2],[-10,-2],[-6,6],[-8,4],[-7,-2],[-10,2],[1,4],[-12,4],[-2,-2],[-19,4],[-9,-4],[-8,2],[-19,-2],[-11,-8],[-13,0],[-13,-6],[-11,-8]],[[5424,4611],[0,-2]],[[5561,4768],[14,2],[3,10],[8,0],[6,4],[-6,5],[13,7],[6,-3],[28,6],[14,8],[23,6],[12,8],[26,4],[15,16]],[[6222,4177],[-7,3],[-8,-9],[-6,-4],[-42,0],[-10,4],[-21,-4],[3,-4],[-15,-4],[-12,0],[1,-6],[-11,-6],[-4,-4],[3,-18],[-1,-4],[13,-6],[0,-6],[-5,-6],[-19,-2],[-8,-6],[-18,-8],[-16,-4],[-6,0]],[[6033,4083],[-13,10],[-1,4],[-11,-2],[-13,2],[-12,-4],[-18,4],[-4,4],[-10,0],[-10,-6],[-11,6],[-11,2],[-13,-4],[-5,0],[-9,-4],[-7,2],[-2,4],[-10,6],[-4,12],[-14,-8],[-20,6],[-11,-4],[-8,6],[-8,4],[-2,6],[-11,2],[-14,0],[-6,-4],[-10,6],[-14,4],[-5,6],[-24,8],[4,8],[-2,6],[-5,2],[-7,-14],[-17,6],[-15,4],[-2,4],[-10,0],[-23,15],[-5,-4],[-19,10],[1,4],[-11,6],[-9,-6],[-11,5],[-7,-4],[-17,1],[-2,6],[-11,4],[-6,-6],[-22,3],[-11,-3],[-12,-16],[-12,6],[-9,0],[-8,10],[-6,3],[-10,-3],[-1,4],[-16,10],[-12,0],[-17,-2],[-1,4]],[[5342,4317],[-5,4],[1,18],[-3,6],[2,12],[8,8],[-8,8],[-7,4],[0,12],[-4,6],[-17,10],[-2,10],[-13,8],[5,3],[29,6],[-4,7],[-9,4],[-4,7],[-13,8],[0,4],[-11,10],[-15,8],[-8,-2],[-16,0],[-8,2],[39,18],[-9,4],[-17,-2],[1,16],[16,0],[13,2],[0,-8],[4,-12],[11,4],[2,6],[12,2],[9,-2],[8,4],[4,6],[26,2],[21,-2]],[[5419,4607],[8,4],[-7,8],[-10,4],[-19,-4],[-15,4],[-7,4],[-23,-12],[-28,-6],[-12,2],[-7,8],[10,6],[13,4],[-10,2],[14,12],[20,-4],[13,4],[5,8],[6,2],[19,-8],[-16,12],[1,6]],[[5374,4663],[7,6],[-3,8],[7,5],[2,8],[10,2],[-5,4],[9,6],[-10,2],[-7,8],[-10,0],[2,6],[8,2],[21,0],[20,-4],[40,-2],[3,4],[16,6],[-4,4],[5,6],[11,0],[10,4],[16,2],[7,6],[6,2],[3,6],[11,6],[0,6],[12,2]],[[8294,2482],[-68,-10]],[[8224,2472],[-38,-6]],[[8058,2534],[8,4],[25,8],[17,2],[9,-10],[6,-4],[10,8],[38,-8],[24,14],[13,4],[10,-4],[27,8],[22,-8],[8,-2],[1,-4]],[[4293,483],[-16,-4],[-7,4],[1,6],[9,19],[22,-2],[6,6]],[[4308,512],[8,8],[9,-6],[20,4],[2,6],[9,2],[7,-8],[0,-4],[7,0],[16,-6],[5,-12],[-10,-5],[1,-10]],[[4382,481],[1,-4]],[[4383,477],[-12,6],[-23,0],[-7,4],[-21,-4],[-12,-8],[-15,8]],[[4383,477],[-14,-6],[-10,-10],[-2,-8],[-10,-2],[-33,4],[-6,-6],[-3,8],[-2,-4],[-16,4],[1,8],[-8,12],[13,6]],[[6481,768],[-14,-6],[-30,-18],[-2,4],[8,0],[8,8],[-9,4],[-8,10],[-4,-4],[-5,8],[-13,-6],[-19,2],[3,6],[-3,14],[-15,2],[-4,-6],[5,-2],[3,-8],[10,0],[-2,-4],[8,-2],[-1,-4],[-9,2],[-15,0],[-22,6],[-4,4],[13,8]],[[8293,1514],[6,-6]],[[8299,1508],[1,-6],[13,-2],[-1,-6],[-11,-2],[-2,-8],[4,-5],[-10,-5],[-11,4],[-5,16],[-14,2],[-11,-6],[-22,4]],[[7257,864],[-9,-1],[6,6],[3,-5]],[[7258,858],[1,7],[-9,10],[7,0],[8,-2],[1,4],[7,6],[14,0],[16,-4],[3,-6],[-1,-17],[3,-8]],[[7308,848],[-15,0],[-12,4],[3,9],[-15,0],[-3,-5],[-8,2]],[[7325,883],[-3,-8],[-10,2],[-1,6],[-16,-2],[-8,2],[-18,0],[-7,-6],[-7,2],[-11,6],[3,8],[-14,-2]],[[7326,885],[-1,-2]],[[7308,848],[-5,-6],[14,2],[1,-4],[-7,-4],[-14,0],[-17,-4],[-20,-2],[-20,12],[-1,14],[7,4],[12,-2]],[[5659,3538],[26,2],[11,-4]],[[5696,3536],[-10,4],[-27,-2]],[[5666,3567],[2,4],[12,-4],[3,-11],[21,2],[22,-2],[14,2],[-7,6],[26,2],[12,9],[6,-5],[7,1],[4,-5],[-9,-4]],[[5779,3562],[-3,-2],[13,-6],[-8,-6],[-13,-2],[-3,-4],[-10,0],[-5,-10]],[[5750,3532],[-7,0],[-10,4],[-6,-4],[-9,2],[-14,-4],[-8,8],[-14,2],[-30,-2]],[[6664,3635],[-8,2],[-27,-2],[-7,4],[-6,-4],[-17,8],[-1,6],[-15,2],[-6,6],[6,6],[7,4],[10,-4],[-3,-2],[16,-2],[7,-4],[28,4],[9,2]],[[8065,1425],[-3,4],[12,6],[-5,6],[-12,4],[6,10],[18,-2],[2,8],[9,0]],[[8092,1461],[14,-8],[12,-2]],[[8121,1443],[-1,-4],[4,-6]],[[8124,1433],[-22,-4],[-18,2],[-19,-6]],[[8838,1592],[-2,2]],[[8849,1598],[-1,-2]],[[8836,1594],[2,-2]],[[8839,1592],[11,6],[16,1],[5,6],[22,-2],[6,2],[20,2],[9,-2],[3,6],[7,-2],[47,-2],[18,2],[6,-4],[19,2],[9,4],[14,-4],[8,-8],[26,-1],[8,-4],[12,0],[32,-2],[-2,-6],[3,-10],[-11,-2],[-33,2],[-23,-12],[-12,2],[-23,-6],[-14,0],[-8,-2],[-15,2]],[[8999,1560],[-5,18],[-9,-2],[0,-8],[-8,0],[2,-4],[-10,0],[-8,4],[-28,0],[-12,2],[0,-8],[9,-2],[-6,-6]],[[8924,1554],[-4,2],[-7,-6]],[[8850,1566],[-44,2],[-20,2]],[[7451,1431],[-9,0],[-23,4],[-4,2],[-4,-4],[-12,4],[1,-14],[-13,-10]],[[7387,1413],[-5,14],[-13,2],[2,12],[-12,2],[-2,14],[-8,2],[-10,-2]],[[7387,1413],[-5,-6],[-8,-2],[-8,2],[-2,8],[-15,-2],[-7,14],[-15,2],[-36,-2],[1,-2],[-10,0],[-8,-6],[-9,0],[-8,6],[0,8],[18,6],[-3,4],[-11,4],[-10,2]],[[7163,4282],[-10,4]],[[7157,4288],[35,21],[10,10],[-3,6],[2,6],[10,0],[5,2],[-6,4],[3,6],[21,-12],[12,-4],[20,-3],[10,1],[21,-5],[10,-7],[37,-13],[17,-4]],[[7153,4286],[1,-2]],[[6500,2224],[5,-6],[-7,-8],[-3,-9],[-14,-2],[-4,-4],[-11,-4],[-20,2],[-1,-8],[4,-8],[0,-8],[10,-10],[-2,-2],[8,-12],[-3,-12],[-10,-2],[-5,-4],[1,-10],[-6,-14],[-8,-4],[-11,0],[1,-4],[12,-1],[2,3],[10,-2],[1,-4],[-10,-9]],[[8112,1342],[6,2],[11,-4]],[[5935,3802],[10,-6],[13,2],[19,-4],[11,4],[22,2],[16,4],[12,-8],[0,-10],[5,-8],[11,-2],[4,-10],[-11,4],[0,-16],[12,-4],[20,4],[19,-12],[1,-4],[13,-2],[51,6],[10,-2],[-10,-6],[6,-4],[0,-6],[28,8],[3,-8],[8,-8]],[[5736,3492],[-4,-6],[-20,4],[-10,0],[-19,6],[3,16],[12,-2],[22,2],[-7,10],[5,0],[-9,10]],[[5709,3532],[19,0],[7,2],[11,-4],[4,2]],[[5779,3562],[19,-4],[12,4],[-2,7],[6,6],[-14,8],[-2,-2],[-12,12],[14,10],[2,10],[-15,8],[7,4],[-4,4],[-8,2],[3,8],[0,12],[-10,2],[1,6],[-10,4]],[[6785,4222],[-5,-4],[10,2],[-4,-8],[9,-6],[16,-4],[6,-10],[16,-6],[11,2],[-6,4],[-2,8],[14,1],[5,-9],[5,6],[13,4],[1,-4],[-8,-4],[13,-4],[7,3],[11,-12],[-4,-7],[8,-3],[8,1],[-7,9],[9,3],[-10,6],[5,8],[-4,4],[4,4],[-4,6],[-9,-2],[-3,4],[11,4],[7,0],[4,-6],[16,-8]],[[6928,4204],[8,-2],[-4,-6],[18,-2],[4,4]],[[6954,4198],[-2,8],[8,4],[5,-8],[13,0],[2,6]],[[6980,4208],[7,-4],[-1,-14],[10,-6],[8,6],[11,0],[1,-8],[19,7],[7,1],[5,4],[11,-1],[12,9],[11,4],[6,-2],[12,-2],[4,10],[-4,4],[14,0],[7,8]],[[7311,4210],[17,-16],[18,-1],[16,3],[11,-18],[-10,-2],[-6,2],[-19,-1],[-5,1],[-20,0],[-18,-9],[-4,-8],[4,-4],[-2,-8],[-9,-6],[5,-8]],[[7289,4135],[-11,-6],[-11,0],[11,-10],[-8,-6],[11,-12],[1,-12],[-11,-2],[-7,-12],[-13,-16],[-18,0],[-5,3],[4,5],[-2,7],[-12,-1],[-12,5],[-11,0],[-6,21],[-8,8],[-9,-4],[-27,-4],[-15,4],[-13,-2],[-12,-12],[-4,-8],[-9,0],[-1,-8],[7,-7],[11,-4],[-3,-18],[9,-8],[-21,-2],[-23,6],[-23,0],[0,-4],[-19,0],[0,6],[-7,4],[5,4],[-6,1],[-34,1],[-1,2],[-26,0],[-7,-3],[6,-11],[-15,10],[-11,-4],[9,-12],[-25,-2],[-16,6],[-26,-6],[3,-6],[-6,-4],[10,-2],[5,-4],[-1,-6],[8,-6],[6,2],[7,-8],[-3,-6],[10,-2],[12,-12],[-9,-2],[5,-10],[-8,-8],[6,-2]],[[6920,3956],[-30,-8],[-9,12],[-8,-2],[-2,-14],[-15,0],[-17,-8],[-14,2],[-3,-3],[-14,-1],[-6,6],[-12,4],[-2,3],[-17,-5],[9,-2],[-6,-8],[-6,2],[-20,-6],[-17,6],[9,6],[10,18],[-5,12],[-8,-2],[-13,8],[11,2],[-12,10],[-15,-4],[-2,6],[-9,-6],[-4,10],[-10,2],[-8,-4],[-6,4],[-3,-4],[-10,2],[-18,-4],[-2,-4],[-16,-8],[-42,4],[-23,2],[7,-6],[-11,-8],[-9,0],[-24,-8],[-17,-2],[-6,-9],[-9,1],[-28,-10],[-13,0],[-40,-11],[-21,-10],[-12,-4],[-6,2],[-14,0],[1,4],[-11,2],[-8,13],[-5,1],[-2,13],[-10,2],[-15,6],[-12,10],[-13,2],[-13,-6],[-15,0],[-1,8],[-13,0],[-9,-6],[-5,0],[-25,16],[-16,2],[-6,2],[-15,0],[-4,-2],[-12,0],[-29,-10],[-7,6],[-1,6],[-13,-2],[-14,8]],[[6079,3994],[4,12],[-9,8],[7,6],[-7,6],[4,6],[-3,10],[8,2],[5,10],[-10,8],[-14,3],[-1,5],[-12,5],[-11,4],[-7,4]],[[6677,4248],[14,-4],[21,2],[5,-4],[0,-6],[20,2],[1,-6],[-7,-2],[16,-2],[14,4]],[[8065,1425],[-3,-2],[7,-18]],[[8010,1407],[0,12],[-10,4]],[[8000,1423],[-8,2],[-3,6],[3,4],[17,4],[7,4],[-6,6],[-12,6],[3,6],[9,2],[10,8],[11,4],[9,-6],[4,-6],[9,-4],[12,4],[1,8],[9,5],[6,0],[6,-3],[5,-12]],[[6193,3444],[11,-5],[5,2],[3,-8],[-4,-2],[23,2],[-3,13],[9,9],[8,15]],[[8848,1403],[18,-4],[-21,-2],[3,6]],[[8745,1367],[10,4],[13,2],[11,4],[9,12],[8,0],[1,-6],[11,-2],[3,10],[8,12],[14,0],[6,-8]],[[8747,1447],[-5,6],[4,2],[4,10],[6,6],[12,4],[34,-2],[29,2],[7,-2],[20,0],[4,-4],[7,4],[23,-6],[5,-4],[12,4],[17,0],[14,0],[11,-6],[15,2],[14,-2],[19,-12],[2,-14],[-6,-6],[-15,-4],[-23,0],[-1,4],[-13,10],[-8,2],[-6,-6],[-15,2],[-3,-6],[-10,-2],[-1,-4],[-6,-2],[11,-6],[-12,-6],[-19,-2],[-12,2],[-15,-6],[-8,2],[-22,0],[-11,-18],[-1,-6],[-12,10],[-16,-8],[1,-4],[-15,-4],[-25,-12],[-1,-6],[6,-8],[-7,-3],[6,-6]],[[9107,1550],[6,-8],[-9,0],[-6,8],[7,4],[2,-4]],[[9103,1574],[6,-2],[1,-10],[-7,-8],[-10,-6],[-5,10],[-5,0],[-1,6],[10,8],[11,2]],[[9226,1596],[-3,-8],[-24,-18],[-21,-10],[-3,-2],[-25,-8],[-11,-10],[-13,-2],[-12,4],[-8,14],[7,6],[-2,10],[20,-2],[8,4],[4,4],[0,10],[11,4],[17,-2],[21,4],[6,-2],[16,4],[12,0]],[[8967,1518],[5,8],[17,6],[-6,16],[-20,0],[-8,4],[-15,0],[-16,2]],[[8999,1560],[9,-4],[14,2],[24,0],[14,6],[9,-2],[11,2],[1,-6],[7,-2],[6,-12],[13,-4],[7,2],[9,-8],[-18,-8],[-14,-4],[-31,-16],[-32,8],[-18,0],[-11,2],[-18,0],[-14,2]],[[6879,971],[4,-4]],[[6751,994],[14,20],[-9,0],[-6,4],[-8,12],[11,6],[12,-2],[-5,4],[12,4],[-8,8],[6,4],[-19,8],[-12,0],[-2,8],[4,22],[1,14],[-8,9],[10,10],[-4,10],[5,4],[-14,6],[-22,2],[5,12],[-2,2],[6,12],[-3,4]],[[7049,1209],[-1,-4],[-20,-14],[2,-4],[-8,-2],[0,-8],[-10,0],[0,-4],[-11,-2],[-18,-16],[7,-6],[-9,-4],[-8,0],[-18,-4],[3,-6],[-13,-4],[-13,8],[-5,-6],[6,-16],[15,2],[4,-17],[-5,-14],[-18,-2],[-10,-4],[-3,-6],[-8,-8],[8,-4],[5,-10],[9,2],[7,-8],[26,-8],[4,0],[3,-8],[-8,-6],[8,-10],[-5,-12],[4,-4]],[[7001,975],[-17,-2]],[[6984,973],[-4,-2]],[[6980,971],[-18,4],[-14,-4],[-4,2],[-10,-6],[-3,6],[8,11],[-10,2],[-7,-2],[-8,3],[-16,-14],[-10,-6]],[[6888,967],[-1,0]],[[6884,967],[-5,4]],[[7034,3149],[-1,12],[-6,10],[-19,12],[-9,0],[-5,6],[-10,7]],[[6984,3196],[9,4],[7,8],[10,1],[6,5],[0,6],[9,0],[-6,8],[13,2],[6,6],[12,-4],[9,0]],[[7059,3232],[46,4],[8,10],[2,0]],[[6984,3196],[-14,2],[1,4],[14,8],[-15,18],[2,4],[9,2],[-2,4],[-21,-2],[-4,-4]],[[6954,3232],[-10,10],[-14,8]],[[6916,3270],[6,0],[12,6],[23,-6],[-3,-6],[7,-4],[20,10],[8,-2],[7,6],[7,-4],[2,-14],[-7,-2],[1,-4],[17,4],[10,6],[10,-4],[12,-2],[7,6],[11,-4],[-4,-2],[10,-8],[6,0],[-15,-6],[-4,-8]],[[7034,2397],[19,-8],[38,-28],[22,-20],[2,0],[37,-39]],[[7825,1578],[5,2],[-3,4],[3,10],[-3,11],[40,-17],[11,8],[33,-6],[12,0],[19,4]],[[7942,1594],[11,2]],[[7936,1552],[-3,4],[-10,2],[-21,-4],[3,-2],[-22,-8],[7,-6],[-6,-6],[-6,4],[-31,4]],[[7862,1332],[-3,12],[-12,0],[-3,6],[-34,-10],[-4,6],[-27,2]],[[7779,1348],[-3,9],[-8,4],[-9,-2],[-5,10],[-19,6],[-3,8],[-21,6]],[[7711,1389],[0,6],[13,14],[1,16],[16,10],[20,6],[11,-8],[6,2],[16,-6],[10,-2]],[[7804,1427],[11,-4],[1,-6],[-3,-4],[20,-6],[1,-12],[5,-4],[2,-8],[8,4],[4,-8],[19,0],[0,6],[9,2],[9,-6]],[[7467,2758],[-14,-6],[-17,-6],[-10,-6],[-23,-2],[12,-10],[-10,-4],[-1,-4],[-11,-4],[-8,-7],[-11,1],[-6,-4],[3,-7],[-4,-8],[-11,-6],[-4,2],[-27,2],[-14,-6]],[[7559,2829],[0,-15],[13,-4],[8,-8],[-7,-20]],[[8372,1947],[11,2],[20,27],[0,6],[5,4],[0,10],[8,0],[8,-2],[5,-10],[22,6],[9,-2],[6,-4],[1,8],[18,0],[4,4],[-7,12],[10,2],[10,16],[7,-2],[23,-2]],[[8532,2022],[16,-12],[2,4],[21,12],[16,-4],[16,-8],[3,-4],[12,-2],[10,-12],[16,-12],[12,-2],[10,-7],[14,0]],[[8810,1804],[-4,-4],[9,-8],[0,-12],[-7,0],[10,-6],[1,-4],[-9,-2],[-1,-6],[7,-8],[11,-6],[15,-10],[8,-16],[5,-7]],[[6131,3280],[-13,-6],[-22,6],[-16,6],[-11,0]],[[6069,3286],[-1,4],[-20,0],[-8,2],[7,8],[2,6],[6,4],[-25,6],[2,5],[13,8]],[[6352,1006],[5,8],[4,22],[-2,12],[-10,10],[17,4],[21,4],[24,12],[13,-2],[25,8],[-5,6],[5,2],[19,-2],[6,4],[-2,4],[-9,6],[14,3],[2,6],[-2,8],[11,4],[-13,2],[-9,8],[4,6],[-16,-4],[-3,-4],[-15,0],[-21,6],[-18,-4],[-19,2],[-9,-2],[5,10],[14,18],[-14,4],[6,6],[3,24],[14,4],[13,2],[18,4],[-2,14],[-14,0],[-4,9],[-16,-3],[2,13],[-15,4]],[[7544,4268],[18,-2],[7,-10],[16,-4],[1,-8],[8,-4],[20,2],[4,4],[24,-14],[9,0],[9,-6],[-2,-6],[10,-6],[40,-8],[8,0],[1,-10],[3,10],[16,-2],[8,-4],[13,-2],[8,-5],[6,-11],[16,-5],[7,-6],[12,-6],[-2,-4],[-8,-4],[0,-10],[6,-8],[23,-10],[10,2],[15,-8],[11,-10],[16,-20],[2,-8],[5,0],[6,-7],[0,-9],[9,0],[6,-7],[-4,-5],[4,-15],[10,-4],[-3,-6],[4,-6],[8,-4],[9,2],[2,-6],[-6,0],[-5,-6],[6,-8],[23,-14],[-2,-4],[19,-8],[11,2],[2,-2],[12,-4],[21,-8]],[[8016,3966],[-3,-10],[-15,2],[-7,0],[-15,-6],[-15,-1],[-9,1],[-26,3],[-6,3],[-8,0],[-10,-6],[-24,4],[-22,-4],[-17,-4],[-4,-4],[-7,4],[-7,-1],[-5,-5],[-26,1],[-12,-8],[-16,9],[-20,-4],[-9,2],[-13,5],[-9,0],[12,7],[8,16],[-1,10],[-7,6],[0,12],[-6,8],[0,8],[3,2],[5,14],[7,6],[10,0],[8,6],[10,2],[0,4],[-16,3],[-5,8],[-10,3],[-21,11],[-6,8],[2,6],[-7,4],[2,10],[-28,-8],[-8,8],[-17,-2],[-2,-6],[-18,-4],[-3,-4],[-20,-2],[-10,2],[-7,10],[-9,-6],[-6,0],[-16,-6],[-14,0],[-11,4],[-15,20],[-10,0],[-31,6],[-49,12],[-9,0],[-22,6],[-25,-10],[-11,-2],[-21,12],[-17,6],[-31,-2]],[[7597,3324],[2,5],[-5,6],[5,12],[-6,8]],[[6980,4345],[-9,-4],[2,-6],[-10,-8],[-6,0],[-5,-6],[-15,-5],[-2,4],[-24,-7],[14,-12],[7,0],[3,7],[6,0],[14,-9],[-6,-4],[-3,-17],[5,-4],[-24,-4],[-10,-4],[3,-8],[0,-12],[-6,-2],[5,-4],[10,0],[12,-8],[-1,-4]],[[6940,4228],[-6,-2],[4,-12],[-11,-8],[1,-2]],[[5384,3284],[-14,16],[-5,10],[-4,18],[-5,-3],[-12,10],[-17,8],[-3,8],[2,12],[11,16],[6,6]],[[5343,3385],[29,0],[21,-2]],[[5393,3383],[13,-2],[-2,-12],[-17,-4],[1,-12],[-6,-8],[6,-4],[13,0],[15,-8],[25,-8],[7,-5],[12,3],[1,5],[-15,17],[3,4],[20,-2],[18,-6],[10,-12],[18,-4],[16,0],[8,-1],[-10,-8],[4,-8]],[[6786,3677],[-23,12],[7,1],[9,8],[13,-5],[18,1],[18,15],[-5,3],[1,6]],[[7060,3821],[11,-8],[-2,-7],[8,-6],[1,-8],[23,0],[13,-2],[5,2],[11,0],[7,-10],[0,-10],[10,2],[30,-12]],[[7177,3762],[-5,-4],[-7,4],[7,-8],[-1,-8],[-15,2],[-18,-2],[-7,-10],[4,-10],[16,-18],[5,-14],[12,-11],[6,2],[8,-8],[6,2],[4,-10],[10,-6],[13,2],[11,-12],[19,-6]],[[7245,3647],[-8,-4],[-14,-8],[9,-6],[-9,-12],[-6,2],[5,-10],[11,2],[16,0],[13,-4],[11,2],[-9,-10],[15,-4],[6,-4],[19,-4],[-5,-6],[2,-12],[-18,-2],[8,-5],[24,-6],[10,-4],[-8,0],[-4,-6],[8,-4],[6,0],[16,8],[3,-4],[13,0],[-2,-4],[11,-10],[13,-2],[0,-10],[18,-4],[20,0],[12,0],[7,-12],[-24,0],[-14,-6],[-15,2],[1,-8],[-8,-4],[-1,6],[-15,-4],[3,-6],[-18,2],[-8,-4],[-14,4],[-16,-4],[-24,12],[-5,-4],[-3,6],[-8,-2],[-4,8],[-11,0],[0,-4],[11,4],[3,-8],[8,2],[4,-6]],[[7372,3532],[-12,6],[-1,8],[-10,0],[-5,4],[-19,-8],[-11,4],[4,6],[8,0],[-6,6],[-10,0],[-24,6],[-3,3],[16,0],[1,14],[4,8],[-17,2],[-8,4],[-14,4],[9,8],[-1,4],[-10,-2],[-17,4],[-24,-4],[-4,8],[9,2],[5,12],[-9,4],[25,12],[6,8]],[[7254,3655],[17,-2],[13,-8],[17,6],[37,8],[15,-12],[24,6],[19,2],[4,4],[9,-6],[-1,-2],[11,0]],[[8602,1344],[0,6],[-12,2],[-4,-6],[-5,0],[2,-8],[-4,-10],[-7,-6],[-11,-4],[-1,-16],[-6,0],[3,-8],[-6,-10],[10,-10],[-4,-10],[-13,0],[3,-8],[-4,-8],[-15,-6],[-6,8],[-6,4],[-10,-8],[-10,-2],[1,-4],[-10,-10],[-13,2],[-2,4],[-23,0],[-7,-2],[-10,2],[-4,4],[-8,-4],[-12,-2],[-10,4],[-7,0],[1,-5],[-10,-1],[-29,2],[-6,2]],[[6855,3214],[18,4],[6,-4],[25,-10]],[[6904,3204],[6,-3],[15,0],[8,-4],[24,-8]],[[6957,3189],[-5,-4],[-17,-6],[-21,12],[-11,0],[-2,-6],[-28,-20]],[[6873,3165],[-17,10],[7,10],[-4,8],[-7,0],[12,4],[5,5],[-7,4],[-14,0],[7,8]],[[6904,3204],[10,1],[13,11],[16,8],[11,8]],[[6921,3157],[33,16],[5,-4],[14,6],[-1,6],[-15,8]],[[6855,3214],[-12,2],[-5,6],[17,8],[-10,6],[2,2]],[[6873,3165],[-21,-14],[7,-8],[11,-4]],[[6599,3690],[5,-2],[7,4],[8,-3],[11,1],[7,-9],[11,-2]],[[5749,2633],[2,-4],[-6,-6],[3,-12],[5,-6],[14,0],[16,-4],[4,-6],[25,0],[-8,-12],[-17,-2],[19,-13],[6,0],[14,-6],[26,-10],[6,-4],[-5,-6],[9,-2],[-3,-4],[18,-4],[19,-10]],[[5896,2522],[8,-8]],[[5382,2546],[6,10],[-4,10],[-4,4],[13,2],[4,9],[8,6],[-4,6],[7,4],[20,0],[10,0],[9,4],[-1,-10],[16,0],[0,10],[-5,0],[2,6],[-8,4]],[[8956,1389],[-7,0],[9,4],[-2,-4]],[[8962,1407],[8,0],[-1,-6],[5,-8],[-15,2],[-7,0],[0,10],[10,-2],[0,4]],[[8947,1417],[20,-2],[0,-6],[-7,4],[-10,-4],[-3,8]],[[8908,1373],[3,6],[11,6],[-1,6],[7,2],[12,-4],[2,-10],[10,-6],[10,4],[4,12],[11,2],[4,-4],[-8,-6],[1,-4],[18,4],[3,6],[-15,4],[-6,12],[5,0],[-4,10],[22,2],[8,2],[4,-6],[-14,-2],[9,-14],[18,-6],[4,-4],[14,-6],[-5,-10],[8,-8],[14,-2],[23,0],[11,-3],[19,-3],[25,3],[15,-3],[14,-9],[-2,-8],[-11,-6]],[[9026,1437],[19,-4],[17,0],[26,-12],[10,-2],[15,0],[28,-4],[8,0],[18,-2],[8,-4],[6,-8],[26,-14],[12,-16],[-7,-6],[-6,4],[-10,-8],[-17,-5],[-19,-1],[-13,4],[1,4],[-18,0],[-10,6],[3,-6],[-13,0],[-18,4],[-26,2],[-17,-2],[-8,2],[4,10],[-5,4],[-12,6],[-20,8],[-4,8],[13,0],[2,4],[-7,8],[2,8],[7,8],[-1,6],[6,-2]],[[5943,3966],[19,0],[6,-4],[19,4],[11,-2],[7,14],[22,0],[1,8],[10,0],[13,-10],[10,0],[12,4],[6,14]],[[6920,3956],[7,-17],[-2,-4],[7,-7],[13,-1],[5,-2],[10,0],[10,-2],[1,-4],[10,-6],[20,-2],[10,-4],[1,-6],[8,-6],[7,0],[-1,-6],[-7,-6],[2,-10],[5,-2],[-7,-14],[9,0],[0,-8],[-14,4],[-2,-4],[5,-10]],[[8069,2786],[-9,-22]],[[7794,1480],[-21,-1],[3,3],[-8,2],[-4,-5],[-11,3],[-24,6],[-6,-4],[-16,6],[-10,-4],[-8,2]],[[6122,1328],[3,-10],[-12,-6],[7,-4],[-4,-10],[17,2],[-2,-2],[11,-2],[6,-10],[3,-14],[-5,-4],[4,-6],[-9,-10],[-6,-2],[-6,-12],[-2,-13],[-28,-34],[-10,-6],[-13,-14],[-9,-6],[0,-8],[-13,-4],[1,-8],[-19,-4],[3,-10],[-2,-6],[15,-12],[18,-3],[3,-5]],[[5987,996],[-9,8],[-7,2],[-15,-4],[5,-4],[-3,-6],[-12,-6],[-3,6],[-6,4],[-7,-2],[0,4],[-13,10],[-14,18],[-17,0],[-6,-2],[-9,2],[1,6],[-12,0],[-4,-6],[7,-2],[-1,-6],[-16,-6],[-7,6],[-14,-6]],[[5825,1012],[-3,14],[-9,-2],[-6,6],[-9,4],[8,4],[-8,8],[-12,0],[-8,6],[-6,0],[9,16],[-23,-4],[-7,-4],[-12,-16],[1,8],[-13,-4],[-8,-12],[-19,6],[-7,-6],[-12,2],[-3,-6],[11,-6],[-4,-8],[10,-4],[-21,-12],[-34,-16],[-8,-2],[-6,6],[-1,8],[-5,6],[-5,-4],[-19,-4],[-11,2],[-1,-4],[-17,8],[-1,-6],[-10,-10],[1,-5],[-19,3],[-10,6],[-14,-9],[-8,0],[-12,-4],[-5,7],[-17,10],[-8,8],[-16,-4],[-8,0]],[[5440,998],[4,2],[-2,6],[7,0],[-2,12],[-6,4],[5,8],[33,4],[-6,8],[24,10],[37,22],[3,0]],[[5537,1074],[-9,8],[1,6]],[[5529,1088],[4,6]],[[5598,1129],[25,0],[3,-8],[43,-2],[6,4],[3,6],[8,-2],[3,8],[14,6],[-2,14],[14,-2],[13,-6],[2,-4],[15,2],[-3,6],[6,4],[-1,14],[4,0],[-2,8],[-7,4],[18,-2],[0,-2],[15,-2],[20,4],[5,-4],[3,-12],[19,-2],[10,6],[7,0],[-2,4],[16,6],[14,2],[3,6],[16,4],[-2,14],[-6,2],[14,33],[13,2],[4,4],[8,-2],[10,6],[-4,4],[-3,14],[14,4],[8,8],[-12,0],[-3,2]],[[8829,1528],[-2,-10],[-7,-4],[-12,2],[-6,-2],[-8,0],[-1,12],[-6,-6],[7,-2],[-1,-4],[12,-4],[-1,-6],[5,-4],[15,0],[-5,-6],[-13,2],[-12,-4],[-13,0],[-26,-2],[-14,0],[-11,-11],[-4,-20],[-3,-8],[-29,-6],[-5,0]],[[8689,1445],[1,16],[-9,-2],[-6,4],[-12,0],[3,6],[11,2],[-4,9],[7,8],[-7,2],[-2,-8],[-9,-4],[-7,2],[-2,6],[-17,-2],[-11,12],[-2,6],[4,6],[1,8],[-3,4],[-8,0],[-1,4]],[[8302,2234],[13,-2],[-6,-8],[11,-10],[10,-5],[12,-2],[6,7],[21,-5],[14,9],[8,2],[13,-2],[0,7],[17,3],[-2,6],[-14,4],[18,2],[18,-8],[3,4],[18,0],[5,-6],[10,4],[21,2],[-7,-14],[-42,-27],[-11,-4],[-37,-6],[-14,-6],[-4,-4],[11,-12],[-3,-2],[12,-14]],[[8480,2095],[42,-19],[34,-14],[-11,-16],[-6,-2],[-7,-22]],[[6772,2579],[-6,-5],[-12,5],[-7,-3],[-18,3],[-11,-1],[0,8],[-5,5],[2,6],[-14,2],[-4,4],[-20,0],[-7,4]],[[5902,665],[1,0]],[[5903,665],[29,-16],[3,4],[9,-12],[18,-2],[9,4],[10,-12],[5,-10],[-4,-6],[-8,-3],[-10,-12],[-13,-10],[-7,0],[4,10],[2,12],[-3,3],[5,6],[3,10],[-14,10],[-39,24]],[[6368,754],[6,-6],[-7,-2],[1,8]],[[6410,756],[16,-2],[2,-6],[-5,-2],[-22,2],[-4,4],[13,4]],[[5917,661],[5,10],[-5,6],[6,2],[-2,6],[4,4],[-7,14],[-1,10],[-4,6],[2,8],[-7,2],[3,11],[10,0],[19,-7],[-3,-18],[6,0],[14,-4],[13,0],[0,4],[8,8],[23,4],[5,-2],[20,6],[8,7],[10,16],[2,18],[26,4],[-13,0],[2,10],[8,2],[4,6],[25,-8],[6,12],[8,6],[18,2],[5,4],[-5,2]],[[6278,744],[12,-3],[4,5],[6,0],[6,4],[4,-4],[13,0],[6,4],[5,10],[10,2],[3,4],[14,0],[7,-6],[-11,2],[-2,-4],[6,0],[1,-10],[-15,-7],[14,3],[-6,-9],[7,0],[3,7],[10,2],[13,-15],[5,6],[10,3],[0,-11],[13,-4],[-3,8],[13,2],[8,8],[8,-6],[-9,-14],[-2,-6],[3,-6],[12,-4],[13,2],[-9,-10],[-17,-6],[-7,-10],[5,-6],[8,0],[-8,-6],[1,-6],[-7,-4],[-48,0],[-19,-2],[-3,-4],[-22,-6],[-7,4],[-2,12],[-10,-2],[-24,6],[-16,0],[-10,4],[-10,8],[-9,-2],[-11,6],[-12,-2],[-13,2],[-3,4],[-11,2],[-21,-2],[-7,-4],[-16,0],[-15,2],[-5,2],[-25,2],[-19,2],[-12,0],[-14,6],[-27,0],[-13,4],[-15,0],[-14,-2],[-15,2],[-17,-10],[-9,-10],[4,-12],[-15,-6],[-7,-10],[-16,8]],[[8314,2246],[1,6],[16,8],[18,2],[3,2]],[[8713,2336],[-6,-6],[-41,-16],[9,-16],[5,-4],[20,-26],[9,-2],[0,-4],[15,0],[7,-4],[-6,-14],[-12,-4],[7,-12],[27,0],[3,-6],[17,-6],[16,-11],[5,0],[-6,-14],[3,-2],[-38,-6],[-34,-10],[-19,18],[-18,8],[1,6],[-24,8],[-2,-8],[-8,-6],[4,-4],[-14,-10],[20,-18],[-18,-6],[28,-14],[12,6],[10,-2],[16,8],[10,0],[-7,8],[12,4],[16,-10],[12,6],[9,-8],[5,2],[13,-8],[5,6],[5,0],[19,-12],[-1,-12],[-10,-6],[-3,-10],[-5,-6],[-2,-19],[-4,-3],[-11,3],[-6,-4],[-9,8],[-16,-1],[0,-6],[-6,0],[-2,-4],[-18,0],[3,-3],[-3,-22],[-7,2],[-5,-6],[4,-4],[-12,-2],[-7,-4],[-7,-14],[10,-6],[-2,-6],[16,-16],[-2,-6]],[[3829,477],[-5,-6],[-21,-6],[-1,4],[-11,6],[0,-10],[-10,-10],[-15,-2],[-22,4],[-4,8],[-6,2],[-8,8],[3,8],[-13,8],[-4,7],[-20,12],[6,2]],[[4207,610],[5,0],[15,7],[7,-2],[7,-9],[8,-2],[10,4],[7,-2],[-4,-6],[5,-6]],[[4267,594],[-3,-4],[7,0],[-1,-10],[10,0],[9,4],[2,-6],[-13,-2],[0,-4],[-9,-2],[-2,4],[-11,2],[-6,-8],[5,-6],[0,-8],[-10,-2],[-10,-6],[2,-8],[9,-2],[7,8],[8,-4],[3,-12],[10,-10],[-7,-4],[-7,0],[-7,-4],[9,-2],[0,-8],[6,-6],[-6,-9],[-12,-2],[-2,-2],[-14,-2],[-4,-4],[-10,-4],[-16,4],[2,-6],[-6,-4],[-11,8],[-2,4],[9,8],[-11,-4],[-2,-4],[-8,2],[-1,-4],[16,-4],[9,-8],[10,-2],[9,4],[6,0],[17,6],[2,6],[20,2],[9,-4],[-8,-2],[11,-4],[-4,-2],[9,-2],[-1,-4],[-13,-2],[-14,0],[-14,-6],[18,0],[-4,-4],[24,0],[0,-6],[-10,-6],[16,4],[-3,4],[9,2],[4,4],[9,-2],[4,-6],[-4,-8],[-16,-2],[-13,-8],[0,-2],[10,-6],[2,-6],[-24,0],[-10,-6],[-3,8],[7,6],[-12,8],[-12,6],[-21,8],[-10,4],[-30,6],[-24,0],[-3,-2],[-20,2],[-4,-2],[-25,4],[-22,0],[-7,-2],[-21,-2],[-9,-6],[-5,0],[-3,12],[-7,-6],[8,-2],[4,-6],[0,-4],[-8,-4],[-12,-2],[0,-6],[-25,4],[0,-4],[-17,-2],[-15,-6],[-19,0],[-23,8],[-11,0],[-9,-8],[-6,4],[-8,0],[-6,-4],[-17,0],[-4,2],[16,8],[-6,0],[-3,6],[5,6],[-8,-2],[2,18],[-3,6],[-15,8],[-10,8]],[[8239,2728],[1,-2]],[[8271,2734],[12,4],[28,12],[22,8],[11,4],[19,12],[9,2],[-3,-6],[4,-4],[-11,-2],[19,-2],[14,-8],[23,0],[26,-8],[6,-4],[21,-4],[7,-6],[7,-14],[9,-4],[2,-6],[8,-9],[9,-4],[0,-6],[-9,-32],[-10,-18],[-23,-26]],[[8471,2613],[23,24],[11,20],[9,30],[12,4],[16,-4],[15,-4],[7,0]],[[9882,2476],[8,-8],[-2,-4],[-9,0],[-5,-4],[1,-7],[-14,-10],[-9,0],[-4,-6],[3,-4],[11,0],[0,-8],[-38,22],[12,2],[3,4],[12,6],[1,5],[10,-1],[9,7],[8,1],[3,5]],[[9573,2506],[1,-2]],[[9727,2371],[-15,-8],[-3,-4],[-14,-4],[-8,2],[-3,6],[-14,6],[-9,-8],[21,-6],[2,-6],[-5,-4],[-21,0],[-16,-6],[1,-3],[-20,-3],[-13,-7],[3,-10],[-12,-4],[-1,-4]],[[9295,2286],[-9,14],[4,4],[-3,6],[10,4],[2,6],[-12,0],[20,8],[3,-4],[11,0],[2,6],[8,2],[-4,4],[1,8],[9,11],[20,4],[1,10],[-5,-2]],[[9567,2500],[0,0]],[[9574,2504],[9,4]],[[9596,2510],[7,-4],[18,2],[11,-16],[11,-2],[8,8],[7,2],[2,4],[14,2],[12,-4],[-4,-4],[9,-6],[11,-4],[-1,-6],[8,0],[5,-6],[11,-2],[6,2],[12,-16],[3,0],[17,4],[5,-2],[-1,-9],[7,-4],[7,4],[4,-6],[-3,-4],[16,6],[5,-2],[14,2],[53,-28],[2,-6],[14,-4],[0,-8],[13,-6],[13,2],[3,-6],[7,-2],[-7,-10],[-6,-2],[2,-4],[-7,-2],[-6,-6],[-8,4],[-11,-4],[-3,-4],[-18,0],[-9,2],[-3,6],[-15,6],[-18,-4],[-11,-16],[-8,2],[-19,8],[-10,-6],[-17,2],[-5,4],[-16,4]],[[7587,2165],[21,-8],[3,-6],[9,-8],[-3,-6],[6,-16],[6,-6]],[[5610,3421],[-2,-6],[-37,4],[-8,6],[-41,17],[-30,-3],[1,-4],[-12,0],[-7,-6],[-11,2]],[[5463,3431],[12,13],[8,6],[-7,8],[2,10]],[[5478,3468],[1,0]],[[5479,3468],[-8,2],[6,6],[-4,4]],[[5473,3480],[0,0]],[[5473,3480],[-5,4]],[[5468,3484],[0,0]],[[5468,3484],[-1,0]],[[5467,3484],[2,6],[10,4],[-4,6],[13,10],[5,-2],[16,4],[12,0],[6,2],[19,0],[3,4],[10,0],[15,-6],[11,-6],[8,-8],[1,-10],[-6,0],[-2,-6],[23,-31],[-2,-12],[4,-6],[-1,-12]],[[5696,3536],[6,-6],[7,2]],[[5679,3417],[-23,-8],[-5,4],[-15,2],[0,2],[-12,0],[6,-6],[-9,0],[-5,8]],[[5616,3419],[-6,2],[1,12],[-4,6],[2,11],[-9,18],[-6,2],[5,6],[-6,0],[-7,8],[9,6],[-1,6],[-11,14],[-18,8],[25,8],[38,8],[24,2],[7,2]],[[6915,4655],[9,11],[0,8],[14,3],[3,-4],[7,1],[4,-6],[17,-9],[11,-2],[3,-8],[15,-6],[9,-12],[-11,-12]],[[6996,4619],[-10,-2],[-1,-6],[-17,4]],[[6077,2500],[8,0],[3,-6],[34,0],[6,2],[12,0],[5,10],[14,16],[3,8],[-2,8]],[[6160,2538],[15,2],[13,4],[-3,4],[4,12],[12,4],[-5,8],[58,0],[5,0],[-2,-10],[15,-8],[22,12],[8,0],[3,6],[5,0],[6,7],[11,8],[-2,12],[21,4],[15,6]],[[6394,2520],[-12,0],[-10,-4],[-10,-6],[-10,-4],[3,-4],[-18,4]],[[6337,2506],[-8,0],[-9,-2],[-1,-6],[-11,0],[-7,6],[-9,4],[-4,10],[-10,0],[-2,4],[-17,-2],[-5,-6],[-15,0],[1,-4],[-13,-8]],[[6227,2502],[-14,-10],[-12,2],[-2,-2],[6,-10],[-1,-6],[-11,0],[-1,-8],[17,-2],[8,-11],[0,-10],[18,0],[11,0],[4,4]],[[6250,2449],[7,-4]],[[6225,2369],[-7,-6],[-2,-8],[11,-22]],[[6225,2326],[-18,2],[-5,-2],[-22,7],[-4,4],[-8,0],[-21,3],[-20,0],[-17,8],[-8,1],[8,6]],[[9426,1968],[-5,2]],[[9410,1972],[11,-8],[6,-7],[15,-8],[20,-4],[10,-8],[12,2],[33,-8],[9,-4],[0,-10],[8,-14],[-9,-4],[-13,6],[-17,0],[-18,-6],[-7,2],[-24,0],[-7,8],[-16,4],[-10,-6],[-8,0],[-12,-4],[-1,-4],[-12,2],[-19,-2],[-9,4],[-20,-4],[-4,-4],[-5,6],[0,-6],[-5,4]],[[8847,2006],[0,2],[-15,-2],[4,6],[-4,14],[3,8],[21,2],[-1,10],[-7,2],[2,10],[-5,0],[-1,10],[3,6],[-5,2],[3,6],[14,2],[6,-8],[15,-2],[-4,6],[11,13],[7,1],[6,-5],[6,2],[8,-4],[7,6],[-1,4],[15,6],[10,0],[6,4],[14,-13],[-1,-7],[6,-3],[0,9],[6,2],[-4,6],[5,6],[17,-4]],[[6682,1562],[7,-10],[7,-2],[21,6],[8,-6],[3,-6],[20,-20],[14,-12],[5,-8]],[[9600,1306],[3,-4],[-4,-4],[4,-10],[6,-4],[-14,-2],[-5,6],[-8,4],[9,6],[9,8]],[[9478,1326],[11,4]],[[9490,1330],[-2,4],[19,-2],[7,-6],[18,-4],[18,2],[4,-2],[25,-2],[9,-2],[10,-6],[-2,-10],[-15,-10],[10,-8],[11,-2],[7,2],[-9,14],[6,6],[-4,2],[6,8],[9,2],[8,-6],[4,-18],[16,-26]],[[9640,1389],[29,-2],[7,2],[15,-6],[7,-8],[-4,-10],[-4,-17],[-8,-8],[-12,-10],[-9,-4],[-2,4],[-16,-2],[-15,4],[-7,-4],[-9,-12],[-11,-10],[-3,6]],[[4607,387],[-6,0],[-1,6],[17,10],[7,0]],[[4624,403],[6,-2],[-4,-4],[4,-2],[-17,-2],[3,-4],[-9,-2]],[[4308,512],[-5,-4],[-15,2],[-5,2],[13,6],[10,6],[9,10],[4,10]],[[4319,544],[9,-2],[9,2],[24,0],[-2,-8],[3,-4],[8,10],[19,6],[9,-8],[2,-4],[23,4],[12,4],[8,0],[0,4],[15,2],[6,6],[6,0],[12,8],[12,2],[7,10],[8,2],[8,-2],[0,-8],[21,-10],[10,2],[14,-8]],[[4562,552],[2,-8],[-4,-10],[5,-8],[18,-8],[4,-10],[7,2],[18,-10],[13,0],[15,-2],[-5,-11],[4,-4],[-16,-4],[15,-10],[14,-2],[-15,-6],[-3,-6],[4,-16],[0,-8],[5,-6],[1,-8],[-3,-8],[-9,-4]],[[4632,405],[-22,-4],[-13,-8],[2,-6],[-13,-10],[-5,4],[-15,-2],[-6,6],[-19,8],[-12,-2],[-11,2],[-2,8],[4,2],[10,22],[-7,-6],[1,-6],[-17,-12],[-12,-2],[-22,4],[-12,-6],[-13,-2],[-1,-4],[-7,0],[-9,-2],[-15,2],[-8,4],[-15,4],[3,4],[7,2],[12,0],[-1,6],[13,14],[10,2],[10,6],[-17,-2],[-18,-18],[0,-6],[-14,0],[0,2],[-15,2],[-25,-2],[-10,8],[2,10],[-6,2],[-2,6],[6,4],[-2,8],[8,2],[2,-4],[11,2],[-10,0],[13,20],[14,6],[-2,8]],[[7858,1665],[10,-8],[4,-6],[21,2],[2,-12],[-11,2],[0,-8],[9,-6],[6,-2],[-6,-6],[3,-10],[12,-4],[27,0],[7,-13]],[[8454,2562],[3,24],[12,15]],[[8656,2601],[-10,-7],[0,-11],[17,-13],[0,-4],[-8,-12],[-3,-8],[5,-10],[2,-18],[-5,-12],[2,-10],[-10,-12],[-13,-6],[1,-6],[-24,-19],[-53,-46],[-15,-10]],[[9235,2278],[-10,2],[-15,6],[-6,8],[-9,2],[-20,-4],[-12,4],[-28,0],[-7,8],[-18,2],[-12,-6],[-8,0],[-5,-4],[-16,0],[-9,-4],[-12,0],[-6,4],[-5,-4],[-14,-2],[-9,10],[-24,0],[-4,2],[-22,2],[-16,10],[16,14],[32,21],[-12,4],[-11,-2],[-15,4],[-10,6],[-5,0],[-15,-8],[-18,-2],[1,4],[-10,-2],[0,-4],[-23,6],[-12,-4],[-32,4],[-7,-4],[-14,2],[-4,-4],[-23,2],[-4,-3],[-17,-1],[-27,2],[-10,-4],[-10,-8]],[[8542,2397],[15,10],[76,64],[1,7],[11,6],[12,12],[-2,12],[3,2],[2,16],[-2,10],[-5,10],[3,8],[9,12],[-1,6],[-8,4],[-10,13],[4,6],[8,6]],[[7590,1242],[4,-6],[-4,-2]],[[6946,941],[1,14],[9,2],[1,-6],[16,-6]],[[6973,945],[0,-10],[-7,-10],[-8,12],[-12,4]],[[6995,923],[-5,4],[-13,6],[2,8],[-3,4],[12,4],[-2,6],[-12,0],[9,4],[-2,8],[3,6]],[[6980,971],[1,-10],[-11,-6],[13,-4],[-10,-6]],[[6946,941],[-22,8],[-11,-4],[-16,6],[-9,10],[0,6]],[[8906,1520],[5,2],[16,0],[-9,-6],[-10,0]],[[8967,1518],[-17,4],[-28,2],[-14,-2]],[[5479,3468],[-9,2],[3,10]],[[5473,3480],[-7,-2],[-5,4],[7,2]],[[5468,3484],[-1,0]],[[5463,3431],[-6,-6],[-14,-8],[-16,4],[-8,-10],[-21,-12],[-5,-16]],[[5343,3385],[5,6],[15,10],[32,38],[9,4],[11,8],[10,9],[15,12],[10,6],[-1,6],[10,2],[0,-6],[11,0],[1,-10],[7,-2]],[[7804,1427],[-8,6],[4,6],[-13,8],[11,12],[9,2],[9,-2]],[[7930,1415],[5,-2],[-3,-8],[6,-2]],[[7946,1661],[-5,14],[-26,6],[-13,0],[-7,-2],[-3,-6],[-6,2],[1,-8],[-4,2]],[[8050,1730],[8,-6],[-3,-2],[8,-11],[6,4],[5,-8],[-5,-4],[2,-6],[-10,-2]],[[3374,487],[0,7],[6,-3],[13,3],[15,0],[12,-5],[13,2],[3,-6]],[[3436,485],[-23,-2],[-5,-2],[-18,4],[-13,0],[-3,2]],[[3829,477],[6,-8],[17,-10],[-1,-14],[1,-8],[6,-2],[-3,-8],[-18,-10],[-13,0],[-6,-10],[-10,6],[1,16],[-6,8],[-8,2],[-6,-6],[-51,-10],[-9,-6],[3,-12],[8,-4],[3,-6],[-15,0],[-5,-6],[-10,-4],[4,-8],[-5,-4],[-2,-13],[15,-2],[3,-4],[-10,-4],[-11,-8],[5,-6],[-11,-2],[-3,-4],[0,-8],[-6,0],[-7,4],[-1,6],[-8,2],[-6,-2],[-10,2],[-2,4],[-22,0]],[[3636,338],[-1,8],[-12,8],[1,8],[-6,7],[14,6],[-5,14],[-11,-4],[-14,-2],[-13,12],[10,0],[-3,8],[6,2],[-1,10],[-8,6],[-14,2],[-2,18],[3,4],[-5,6],[-17,-4],[-8,2],[9,-10],[0,-4],[-28,2],[2,-8],[-6,4],[-17,0],[-10,4],[-1,6],[11,8],[-6,8],[3,12],[8,0],[4,6],[-6,4],[-9,2],[-13,-4],[-16,4],[-19,-2],[-17,0],[-1,4]],[[3438,485],[-5,6],[-7,-2],[-18,5],[-17,0],[-8,4],[25,0],[3,10],[9,-2],[2,-6],[9,0],[19,8],[-8,4],[9,0],[16,20],[1,10],[-3,4],[8,0],[0,4],[-6,4],[3,4]],[[5731,3250],[-11,-4],[-11,4],[2,4],[-15,4],[7,10],[-11,2],[-32,-6],[-24,12],[-15,2],[-8,-2]],[[5593,3292],[5,8],[-2,10],[5,6],[22,9],[11,8],[8,-6],[4,-9],[10,-2],[7,4],[21,4]],[[5832,3256],[-8,-6],[-11,8],[0,-6],[-19,0],[-10,-6],[-5,6],[-19,6],[-18,2],[-7,2],[-4,-12]],[[5731,3250],[11,2],[-2,-8],[8,-4],[-8,-6],[5,-6],[-5,-4]],[[5740,3224],[1,-10],[-5,-4],[0,-8],[-14,-1]],[[2210,30],[11,-4],[4,4],[5,-6],[-1,-2],[-7,4],[0,-6],[-8,-4],[0,4],[-9,0],[5,10]],[[2259,66],[14,-6],[6,-10],[-12,-10],[-13,2],[1,-8],[-5,2],[-5,6],[-6,2],[-4,-6],[-5,4],[6,6],[11,-2],[1,6],[-6,4],[17,10]],[[2205,66],[5,-8],[-9,2],[4,6]],[[2199,92],[0,-2],[11,-8],[-3,-10],[-11,2],[6,2],[-6,8],[6,2],[-3,6]],[[2210,94],[6,0],[11,-10],[11,-4],[-3,-6],[-10,-6],[-6,6],[0,8],[-5,2],[-7,8],[3,2]],[[2264,104],[3,-12],[15,0],[6,2],[6,-4],[-9,-6],[-13,-2],[-10,8],[-9,0],[1,6],[10,4],[0,4]],[[3305,203],[15,2],[5,-4],[18,4],[9,0],[19,6],[6,-4],[8,4],[19,-2],[12,-6],[-11,0],[8,-4],[14,0],[5,2],[-3,-16],[10,0],[6,-8],[-1,-4],[4,-4],[-7,-2],[-5,-14],[-17,-2],[-8,-6],[3,-8],[-6,-10],[-9,-2],[-13,4],[-32,0],[-8,-2],[-6,-5],[-1,-10],[-15,-14],[4,-6],[-6,-4],[-7,2],[-1,-4],[-17,0],[0,8],[-6,4],[-13,2],[-7,0],[-5,4],[3,6],[-9,2],[3,2],[-3,6],[-11,3],[-1,6],[9,6],[2,8],[-8,4],[-2,10],[-14,4],[5,6],[-8,10],[-23,16],[-18,8],[-2,2],[-12,4],[-22,-4],[-9,4],[-1,4],[-16,6],[-8,-2],[-13,2],[-2,-4],[-11,0],[-2,6],[-15,6],[-3,-2],[-15,12],[-11,0],[-9,4],[-12,0],[-33,-4],[2,-6],[-15,-6],[-6,-6],[11,-6],[6,-8],[-5,-6],[-3,-10],[-12,-10],[-9,2],[0,-4],[-12,-6],[-17,2],[-11,-4],[-20,0],[-2,-4],[-9,-2],[-6,2],[-10,-6],[-18,0],[-7,-2],[-11,8],[-1,8],[-13,2],[-11,10],[8,4],[0,6],[10,0],[10,12],[-10,10],[-3,16],[-6,8],[3,7],[11,2],[-1,8],[20,14],[1,4],[12,-2],[9,4],[22,0],[13,12],[6,0],[0,4],[15,2],[6,6],[9,0],[21,8],[0,4],[17,6],[17,0],[23,4],[24,-10],[0,-8],[15,-4],[18,-2],[4,-4],[-9,-10],[5,-2]],[[6086,2615],[12,0],[4,2],[12,-2],[8,2],[8,-6],[3,-6],[7,0],[-1,-11],[13,-1],[3,4],[19,4],[2,6],[16,0],[5,2],[8,-2],[11,6],[-1,4],[8,2],[6,-4],[4,6],[-2,6],[5,4],[0,12],[6,8],[-11,-4],[4,6],[-4,4],[-25,6],[1,6],[-11,-2],[-18,0],[-5,-2],[-26,4],[-6,12],[-10,8],[-5,8],[4,8],[18,1],[7,6],[20,-10],[23,3],[3,11],[10,2],[8,-6],[3,6],[-4,4],[11,2],[-4,8],[8,-2],[5,4],[9,-6],[18,0],[18,4],[18,-10],[-12,-5],[-4,-7],[29,-8],[16,0],[8,-3],[13,0],[11,-4],[1,9],[22,0],[0,-3],[16,0],[28,-4]],[[6160,2538],[-12,0],[8,6],[-1,8],[-7,10],[-15,0],[-10,-2],[-28,2],[-10,12],[-7,0],[-4,9],[15,14],[-7,6],[4,12]],[[6309,2827],[-3,6],[-9,4],[4,10],[-12,0],[-6,4]],[[6283,2851],[3,10],[-19,10],[4,4],[-9,8],[2,4],[-5,6],[15,2],[-11,4],[1,10]],[[6264,2909],[-12,0],[-8,6],[-13,0],[-5,10],[-6,6],[-27,2],[-1,-4],[-12,0],[-3,4],[5,2],[-17,2],[-8,6]],[[6460,2818],[-9,2],[-6,12],[-6,5],[2,10],[-4,0],[-4,8],[-11,-2],[-9,6],[-4,-6],[-15,-4],[-7,12],[-44,8],[-3,-4],[11,0],[5,-10],[17,-12],[4,-4],[-7,1],[-6,-5],[-9,2],[-20,-5],[-8,3],[-8,-10],[-10,2]],[[8143,1788],[-7,10],[7,-4],[3,10],[-4,6],[-14,4],[-4,-2],[-7,2],[-6,-4],[4,-10],[-13,6],[-9,-6],[-3,-10],[-3,2],[-10,0],[-6,2],[-3,8],[-24,-6]],[[7047,4264],[-6,0],[-11,14],[-9,0],[4,6],[-22,2],[-9,10],[-4,-8],[-9,-2],[-10,-10],[7,-8],[9,0],[6,-6],[8,0],[6,-6],[-10,-4],[-1,-4],[-10,-6],[-9,0],[-2,-6],[-13,-6],[-18,-2],[-4,0]],[[7105,4329],[10,-2],[7,4],[9,-4],[48,-2],[11,0],[2,-10],[-7,-6],[-35,-19],[-25,2],[-16,8],[-11,-4],[-4,-16],[-8,-4],[-13,-2],[-23,0],[-3,-10]],[[6980,4208],[4,8],[18,2],[-1,8],[14,-8],[8,4],[3,26],[2,-4],[10,2],[6,-2],[7,6],[-4,10],[5,6],[-3,6],[27,2]],[[7047,4264],[2,-6],[-6,-6],[2,-6],[-8,0],[-18,-4],[4,-4],[-1,-16],[-7,-4],[-7,6],[-8,2],[0,-8],[-11,0],[-7,-4],[-3,-10],[-13,-2],[-9,8],[-5,-4],[2,-8]],[[6186,2881],[15,2],[3,-6],[14,0],[5,10],[9,-2],[7,4],[9,-2],[4,14],[12,8]],[[6283,2851],[-6,-4],[-20,8],[-9,-2],[-1,4],[-9,-2],[-11,4],[-11,-6],[-2,-10],[2,-10],[-12,6],[-15,-6]],[[6309,2827],[-8,0],[7,-7],[-18,-6],[-3,4],[-6,-4],[-12,-4],[-12,17],[-11,2],[-6,-4],[2,-7],[-9,0],[-3,-10],[-19,-6],[-9,4],[-4,12],[-13,9],[-3,6]],[[6086,2615],[-9,8],[-9,2],[1,6],[-19,6],[-5,6],[-12,6],[1,4],[-11,0],[-3,10],[6,0],[3,6],[-5,2],[-1,8],[-37,14]],[[6703,2201],[4,-2],[-11,-12],[7,-12],[10,-2],[13,2],[9,-8],[14,-4],[-6,-2],[3,-4],[15,2],[0,-8],[-17,-6],[9,-6],[19,8],[12,-2],[10,-8]],[[6844,1939],[-5,-6],[-15,4],[-13,-4],[7,-10],[-30,-6],[-19,4],[9,-6],[-5,-6],[-15,-8],[-13,10],[-17,10],[-21,8]],[[6707,1929],[-4,2],[4,8],[6,2],[7,6],[9,2],[0,6],[15,12],[7,0],[1,5],[-8,4],[-5,-2],[-7,2],[-24,-6],[-3,5],[-21,1],[-5,2],[4,12],[-8,0],[-6,6],[3,12],[-8,0],[-2,-6],[-18,6],[3,8],[-3,10],[2,4],[-9,-6],[-15,6],[-5,8],[-8,6]],[[8161,1451],[28,-2],[6,2]],[[8171,1413],[3,2],[-2,12],[4,6],[-8,0]],[[6098,3248],[-16,-2]],[[5950,3226],[4,2]],[[5954,3228],[24,10],[7,4],[7,14],[9,8],[14,8],[34,10],[20,4]],[[5872,1647],[25,8],[11,8],[11,10],[4,18],[9,0],[20,14],[19,-4],[15,6],[6,6],[10,2],[17,7],[1,10],[-4,4],[-27,10],[-16,0],[-11,2],[-6,4],[3,8],[16,12],[6,0],[8,-8],[13,-4],[9,-2],[21,-6],[12,2],[8,4],[1,6],[-12,6],[-3,10],[4,4],[9,2],[-6,4],[3,12],[14,2],[24,-2],[7,-2],[6,-12]],[[6205,1800],[9,-2],[-1,-4],[15,-10],[17,-6],[12,0]],[[6257,1778],[10,-10],[6,0],[0,-8],[32,-10],[1,-10],[9,-10],[-29,-2],[-3,-17],[5,-6],[8,6],[13,-2],[0,-4],[11,-2],[-6,-4],[-9,2],[0,-6],[-31,-4],[-11,0],[-12,-4],[-47,-2],[-7,2],[-2,-4],[-13,-2],[6,-4],[-4,-12],[7,0],[-3,-12],[6,-8],[9,-2],[2,-4],[-4,-8],[-39,2],[-14,14],[-17,2],[-6,4],[-13,-2],[1,-10],[-8,-2],[-6,4],[-14,-2],[-36,0],[-10,6],[-9,2],[-5,-8],[-7,2],[-3,-4],[-7,8],[-5,-8],[-5,-2],[1,-10],[4,-8]],[[6003,1619],[-8,-4],[-10,2],[-14,6],[-13,0],[-14,2],[-13,-6],[-16,0],[-2,4],[2,12],[-18,2],[-1,2],[-24,8]],[[9777,2014],[6,-2],[-23,-8],[11,10],[6,0]],[[9660,2272],[12,4],[14,-2],[9,-6],[21,-6],[12,-6],[13,2],[9,2],[1,6],[-8,0],[-10,4],[4,2],[-7,14],[2,8],[7,0],[-1,4],[28,6],[17,-4],[3,8],[10,-4],[11,0],[2,-6],[7,0],[8,4],[17,-4],[18,0],[0,2],[15,8],[-1,6],[8,8],[-8,0],[-6,8],[22,-2],[4,5],[30,8],[5,-8],[-1,-7],[-7,0],[4,-6],[6,2],[2,-8],[8,0],[4,-6],[9,2],[5,-6],[8,2]],[[9966,2306],[-35,-48],[-5,-14],[-11,-18],[-38,18],[-23,-6],[-3,-4],[-4,6],[-8,-2],[10,-10],[10,0],[11,6],[5,6],[11,0],[13,-6],[14,-8],[-12,-4],[-12,-9],[-10,-12],[-8,-16],[0,-22],[-6,-26],[-1,-26],[-10,-13],[-7,-12],[-7,-22],[-9,-24],[-1,-8],[-7,-12],[-17,-8],[-64,-16],[-26,-10],[19,10],[26,6],[22,8],[4,2],[-3,10],[15,0],[13,8],[0,10],[18,10],[11,18],[-1,4],[-13,-2],[-9,2],[-3,4],[9,4],[-4,4],[-12,3],[-8,-1],[0,5],[-19,0],[-24,-9],[-2,9],[-6,-1],[3,-10],[8,-2],[9,0],[2,6],[18,-2],[9,-4],[13,6],[6,-4],[-5,-4],[5,-6],[16,-4],[-2,-8],[-6,-8],[-13,-6],[-1,-10],[-14,-10],[-12,0],[-4,-2],[2,-8],[-12,2],[-14,-12],[-17,2],[-1,10],[6,2],[0,6],[-5,8],[3,-14],[-7,-4],[2,-8],[10,0],[-6,-6],[-11,-4],[-23,-14],[-5,-10],[-7,-4],[-9,-11],[-3,-8],[-10,-8],[-21,-10],[-9,-2],[1,6],[-7,6],[-19,6],[-1,10],[-8,8],[-13,5],[7,6],[0,6],[-8,8],[0,10],[-13,4],[0,2],[-10,8],[0,6],[12,6],[0,4],[-13,-6],[-1,-6],[-9,-4],[-11,-2],[-2,-2],[11,2],[11,-2],[6,-6],[-3,-4],[13,-6],[-2,-6],[15,-8],[-8,-10],[4,-5],[13,-4],[2,-8],[6,-8],[13,-4],[12,-10],[-2,-8],[-7,-4],[-12,-10],[-18,-4],[-9,-6],[-21,-20],[1,8],[-3,8],[-24,12],[1,2],[-9,2],[-3,12],[2,10],[-11,4],[-24,4],[-19,6],[-11,0],[-7,6],[-10,2],[-9,0],[-9,6]],[[6923,4589],[17,4],[11,-2],[14,2],[4,-4],[19,-2],[9,6],[9,-8],[-7,-6],[0,-8],[7,-12],[-2,-4],[8,-8],[0,-4]],[[6935,4571],[0,8],[-7,2],[-5,8]],[[6934,4593],[19,10],[-3,8]],[[6996,4619],[-3,-10],[4,-14],[-8,-6],[-15,-2],[-8,8],[-7,-4],[-11,4],[-14,-2]],[[7600,1363],[3,2],[21,4],[44,14],[17,0],[6,2],[14,-6],[6,10]],[[7779,1348],[-12,-4],[-7,0],[-9,-6],[-12,2],[-17,0],[-8,-2],[3,-4],[-12,2],[-3,-16],[-17,-4],[-24,4],[-15,-2],[-12,-16],[2,-8],[-14,-8],[8,-4],[2,-8],[-4,-8],[3,-8],[-2,-6],[5,-6]],[[8075,1385],[6,2]],[[6508,2474],[8,4],[10,10],[25,6],[25,-6],[12,-8],[1,-4]],[[5912,3074],[4,13],[13,0],[2,6],[-19,2],[-3,-2],[-29,6],[-12,-2],[-6,-8],[-11,-2],[-4,2],[1,8],[-16,2],[-12,-2],[-15,10],[6,0],[7,8],[3,8],[-13,10],[-7,2],[13,8]],[[5814,3143],[14,6],[2,-2],[18,-2],[8,8],[7,-2],[6,4],[19,6],[-3,6],[18,8],[12,8],[11,2],[17,-4],[2,4],[18,-2],[14,13],[-1,6]],[[6084,3175],[16,-12],[7,-2],[17,8],[5,0],[10,10],[15,-2]],[[5489,1106],[16,-12],[-9,-6]],[[5529,1088],[-13,0],[-11,4],[-2,4],[-14,9],[-1,2]],[[5440,998],[-17,-6],[-3,2],[-9,-13],[-13,-2],[-4,-6],[-14,-2],[-11,0],[-21,6],[-7,-2],[-4,-8],[7,-6],[13,-8],[11,0],[7,-4]],[[5375,949],[-25,-4],[-10,2],[-22,-4],[-10,-4],[-5,2],[-12,-8],[-13,2],[-2,6],[-14,0],[0,6],[-17,4],[15,14],[-1,4],[7,15],[-22,2],[-28,-5],[-14,0],[-21,-2],[-9,5],[-36,12],[1,2],[-22,10],[0,4],[-10,4],[-21,-2],[-4,-2],[-18,0],[-5,14],[2,2],[1,20],[-32,2],[-2,8]],[[5489,1084],[16,10],[11,-6],[12,0],[0,-6],[9,-8]],[[5896,2522],[9,4],[1,10],[6,6],[-3,12],[6,4],[7,-2],[-12,22],[21,0],[8,-6],[1,10],[-5,3],[-5,9],[16,1],[10,-2],[6,-8],[9,0],[10,-11],[16,-2],[3,-10],[-5,-2],[-3,-8],[-9,-8],[3,-16]],[[6218,1937],[8,0],[1,8],[-18,8],[-4,6],[11,2],[-4,19],[18,8],[12,-4],[16,0],[14,-4],[2,-5],[-9,-7],[-12,0],[-12,-21],[15,-6],[16,14],[20,-2],[0,-2],[16,0],[20,4],[0,-4],[10,-6],[11,0],[0,4],[11,2],[3,6],[15,6],[9,5],[3,-3],[11,9],[20,0],[11,2],[6,-6],[14,-2],[17,14]],[[6540,1947],[20,-4],[11,0],[5,-4],[-10,-8],[-12,0],[-22,0],[-17,6],[-17,-10],[14,-4],[-7,-8],[1,-6],[-7,0],[-10,-4],[-10,2],[-1,6],[-9,0],[-3,-6],[-6,0],[-9,-4],[8,-22],[5,2],[30,-8],[-5,-6],[4,-8],[19,-4],[-12,-9],[23,0],[3,-3],[-8,-5],[-11,5],[-7,-4],[-1,4],[-13,0],[-6,-7],[-10,0],[-15,9],[1,6],[-12,4],[-21,-4],[-14,2],[-18,8],[-6,-10],[-9,0]],[[6318,1818],[0,-2],[-13,-8],[-14,2],[2,-4],[-11,-8],[7,-4],[-9,-6],[-7,-10],[-16,0]],[[6707,1929],[-3,-10],[7,-12],[31,-8],[13,-14],[-4,0],[-25,-14],[1,-8],[9,-2],[2,-12],[-11,-4],[-14,3],[-9,-20],[-17,-8],[5,-6],[2,-12],[-7,-12],[5,-16],[4,0],[-5,-12],[-11,-8],[-25,-10],[18,-12],[5,-17],[8,-10],[1,-10],[-9,-6],[8,-6],[1,-6],[19,-10],[9,-2],[3,-8],[5,-4]],[[6723,1653],[-10,-2],[-15,2],[-2,6],[-6,0]],[[6124,1558],[-6,0],[-5,6],[-10,4],[4,4],[-10,-2],[-5,2],[-10,-4],[-3,4],[-11,-2],[0,4],[-21,0],[-13,6],[-4,-4],[-22,-2],[-3,4],[2,8],[4,2],[1,15],[-11,6],[10,2],[-8,8]],[[8016,3966],[34,-10],[-10,2],[-8,-10],[2,-10],[10,-13],[27,-14],[18,-6],[13,-2]],[[7418,3752],[-36,-6],[-11,0],[-3,-2],[-18,0],[14,8],[2,4],[7,0],[-3,8],[-8,4],[4,8],[8,4],[-2,6],[-9,2],[0,8],[-10,2],[-1,4],[-10,9],[-10,-7],[-10,4],[-33,4],[-3,-7],[-31,-3],[-1,-6],[-18,-4],[-6,-6],[-7,2],[-12,-2],[-2,-8],[-5,-4],[5,-4],[-6,-8],[11,-10],[-14,-2],[-23,12]],[[5774,1570],[9,12],[22,8],[19,12],[15,25],[15,14],[18,6]],[[8689,1445],[-19,-2],[-31,0],[-6,0],[-8,8],[2,2],[-11,8],[-12,2],[-12,-2],[-16,-10],[-33,10],[-20,13],[-15,4]],[[5375,949],[3,-4],[-6,-12],[4,-8],[-2,-8],[9,-6],[6,2],[5,-6],[-4,-10],[15,4],[8,0],[14,-4],[4,4],[20,0],[5,-4],[-4,-6],[4,-4],[-2,-6],[15,-12]],[[5469,869],[-7,-4],[14,-1],[9,-6],[8,0],[14,-4],[24,0],[2,-12],[-9,-4],[-31,-4],[-24,-14],[-1,-4],[20,-8],[-5,-2],[2,-6],[-15,-16],[6,-8]],[[5476,776],[-6,-4],[-8,0],[-18,-8],[-14,0],[-6,-4],[-26,-2],[-29,4],[3,18],[-5,-16],[5,-2],[-23,0],[-12,-8],[-3,-8],[-30,2],[-20,-2],[-36,0]],[[8675,1213],[-11,0],[-5,-4],[-10,2],[-19,-4],[-6,6],[-19,0],[-13,-4],[0,-2],[-13,-14],[-7,-2],[-11,4],[-11,0],[-13,2],[-7,4],[-6,-2],[-8,-6],[-11,-2],[-4,-4],[-5,4],[-7,-6],[8,-6],[16,-6],[-21,-10],[0,-4],[-13,-8],[-15,2],[-4,4]],[[8460,1157],[0,4],[-11,0],[-9,4],[-17,0],[-17,-4],[-22,0],[-10,-2],[-20,2]],[[8134,1417],[-5,2],[-1,6],[-5,0],[1,8]],[[4936,592],[-3,-8],[-2,-24],[17,-4],[-5,-4],[12,-2],[5,-10],[-19,0],[-14,-4],[-7,6],[-13,0],[-4,-8],[-8,-2],[-5,-8],[-1,-8],[5,-2],[-6,-4],[3,-8]],[[4891,502],[-14,-4],[-8,2],[-8,6],[0,6],[5,2],[0,8],[4,0],[-8,8],[0,8],[-4,4],[8,6],[-2,8]],[[3940,967],[-2,12],[5,2],[0,9],[6,4],[5,10],[-2,6],[5,10],[-5,8],[4,2],[-4,10],[7,2],[1,10],[9,0],[14,-4],[3,4],[28,0],[20,-8],[23,0],[20,-8],[8,-8],[20,-6],[31,0],[11,2],[15,2],[14,4],[16,14],[5,2],[20,20],[17,2],[5,4],[9,16],[8,4],[8,-4],[-1,-8],[10,4],[9,-2],[0,-8],[-4,-6],[-8,-6],[1,-8],[-3,-18],[15,-4],[-14,6],[6,14]],[[4585,615],[-13,-5],[5,-6],[-7,-6],[-2,-8],[2,-8],[6,-4],[5,-12],[-4,-8],[-4,2],[-11,-8]],[[4319,544],[-4,-4],[-15,-8],[-4,-8],[-9,-6],[-12,8],[0,8],[-17,14],[-7,0],[-5,-10],[-7,2],[1,8],[15,6],[2,8],[-6,6],[2,8],[13,-2],[2,-4],[12,2],[-2,4],[14,2],[-3,6],[-10,-4],[-9,2],[2,8],[-8,0],[3,4]],[[3815,1215],[6,0],[0,-6],[8,-6],[-2,-6],[2,-12],[8,-6],[-16,-2],[-6,4],[-3,8],[6,6],[-6,12],[3,8]],[[4891,502],[0,-8],[10,-5],[9,2],[17,-2],[7,-6],[11,4],[13,0],[-6,-8],[-10,-2],[0,-4],[7,-4],[-12,-2],[-6,-6],[-6,-14],[6,-2],[-3,-8],[-13,-2],[-4,-6],[-8,-2],[-17,6],[-3,4],[-8,2],[3,8],[-6,6],[1,4],[-5,10],[-11,4],[16,8],[-12,2],[-14,0],[-5,-2],[-8,4],[-17,4],[-2,7],[-11,-2],[3,6],[-14,-2],[-12,8],[5,-6],[8,-2],[10,0],[2,-7],[11,2],[-7,-6],[10,-2],[4,-4],[18,-4],[7,4],[6,-2],[-1,-8],[14,-8],[-8,-10],[9,0],[3,-4],[0,-10],[11,-4],[0,-6],[-8,-8],[-13,0],[-10,-6],[-14,0],[-24,-20],[-13,-22],[-8,-29],[0,-8],[4,-4],[12,-6],[-8,0],[-6,-4],[-5,4],[-19,0],[-7,-4],[-14,-6],[-5,-4],[-14,-4],[-3,6],[-5,-2],[-5,8],[-11,4],[-20,2],[-4,4],[8,8],[8,2],[17,2],[4,4],[-20,-4],[3,6],[-4,4],[9,2],[0,4],[9,0],[-9,4],[-6,-6],[-1,6],[-6,0],[3,21],[-7,-12],[-9,4],[5,-13],[-5,-4],[-13,-2],[22,0],[5,-6],[-6,-10],[-18,-10],[4,-10],[-6,0],[0,-4],[-12,4],[-23,2],[-4,6],[-10,4],[-10,2],[-12,4],[-9,8],[10,-2],[2,18],[-23,11],[3,4],[10,2],[2,4],[13,6]],[[4624,403],[8,2]],[[8266,1582],[-9,-8],[-1,-8],[-9,-8]],[[3275,391],[5,8],[0,14],[14,2],[15,-2],[12,6],[3,6],[7,2],[0,6],[11,0],[1,2],[12,4],[5,10],[4,14],[-9,6],[5,0],[-6,8],[8,0],[6,6],[-6,4],[2,5],[10,-5]],[[3436,485],[2,0]],[[3636,338],[-9,-4],[-3,-8],[-7,0],[-10,-8],[-11,-4],[0,-6],[-6,2],[0,-6],[-10,-4],[-1,6],[-9,4],[-15,0],[-9,-4],[-11,-8],[1,-6],[-6,0],[3,-8],[-3,-4],[1,-8],[-12,-6],[3,-6],[-9,0],[-17,-10],[-8,8],[6,4],[3,-2],[7,4],[6,10],[0,12],[-6,-14],[-6,-8],[-4,4],[-10,-4],[-6,4],[4,4],[3,12],[6,10],[-9,-6],[-9,22],[9,4],[-1,10],[15,4],[11,-2],[18,4],[12,4],[0,6],[-6,-4],[-12,-2],[0,-4],[-17,-2],[-11,2],[-3,6],[3,8],[-7,2],[13,6],[-3,2],[5,10],[-9,-8],[4,-4],[-15,-8],[-6,6],[-10,-2],[13,-6],[14,0],[-5,-6],[3,-8],[-10,-2],[1,-12],[-11,2],[-2,-8],[-12,-2],[-6,-8],[0,6],[-15,8],[-25,0],[6,-2],[18,0],[21,-18],[0,-6],[-6,-2],[-16,6],[7,-4],[23,-4],[-1,-6],[-9,-6],[-13,0],[-5,4],[-19,0],[8,-4],[6,2],[14,-12],[12,2],[11,-8],[-11,4],[-15,-4],[-8,-4],[4,-5],[-18,-10]],[[8687,1107],[-6,-1],[-7,5],[-16,2],[-9,-6],[-6,2],[3,8],[-3,6],[7,4],[-22,0],[-10,6],[5,6],[-4,4],[-11,-2],[-33,-2],[-4,-6],[-9,4],[-11,-2],[-28,10],[-6,-4],[-15,0],[-2,-2],[-21,-2],[-21,2],[-6,4],[-1,10],[9,4]],[[7997,1455],[13,-8],[3,-4],[-12,-6],[-9,0],[-4,-6],[4,-8],[8,0]],[[6903,4736],[9,-4],[-3,-4],[3,-8],[10,-10],[12,-6],[-1,-8],[14,-11],[-2,-3],[-12,0],[-11,-6]],[[8183,1473],[6,6],[6,15],[7,0]],[[5290,3224],[36,8],[27,12],[17,6],[17,2],[5,-4],[8,-14],[9,-10],[4,-8]],[[5341,3212],[-23,-4],[0,-6],[-15,0],[-7,8],[-6,14]],[[6311,2474],[11,10],[8,0],[10,18],[-3,4]],[[6414,2486],[-10,-10],[-10,-2],[-5,4],[-10,2],[-7,-6],[-1,10],[-19,-4],[5,-9],[-8,-3],[-12,-6]],[[6337,2462],[-6,5],[-20,7]],[[6464,2439],[-6,4],[-8,2],[-1,6],[-10,0],[-8,-4],[1,4],[-12,2],[-3,-4],[-11,0],[-20,7]],[[6386,2456],[-16,3],[-24,-14],[-9,-2]],[[6337,2443],[-11,6],[7,2],[4,11]],[[6848,4857],[16,-10],[-2,-6],[5,-4],[-11,0],[-6,-12],[-8,-9],[8,-16],[17,-14],[-16,7],[-4,6],[-25,-7],[-18,0],[-4,-3]],[[6723,1653],[12,4],[8,-4],[21,8],[7,-4],[19,8],[2,4],[21,-2],[11,4],[9,-4],[15,2],[20,-2],[8,-4],[8,8],[12,-4],[5,2],[0,10],[20,0],[3,-4],[22,2],[15,-4],[8,2]],[[6351,2391],[8,2],[6,-4],[5,4],[7,-4],[12,8],[-2,4]],[[6387,2401],[17,0],[5,6],[13,-2]],[[5830,3201],[-12,1]],[[5818,3202],[5,4],[-8,4],[0,10],[-4,8],[-8,0],[-2,-8],[-5,-4],[-7,4],[-8,-2],[-7,4],[-6,-2],[-28,4]],[[5915,3268],[14,-10],[-3,-4],[5,-4],[11,-2],[13,-14],[-1,-6]],[[5926,3210],[-54,-10],[-13,5],[-27,0],[-2,-4]],[[5737,3173],[9,2],[2,10],[7,6],[9,-2],[8,4],[14,-2],[14,11],[3,-11],[8,0],[8,11],[11,-1]],[[5814,3143],[-14,8],[-10,2],[13,10],[-7,4],[-17,-2],[5,12],[-4,4],[-42,-8]],[[5818,3202],[-9,-11],[-6,2],[-4,9],[-14,-11],[-12,4],[-7,-4],[-13,0],[-15,-16],[-18,4]],[[6905,4577],[7,8],[11,4]],[[6847,4557],[16,8]],[[6934,4593],[-21,-6],[-9,-6],[-13,0],[-12,-10],[-7,0],[-13,-10],[-12,-4]],[[9727,2371],[16,-4],[11,-6],[13,0],[3,6],[11,-2],[12,-6],[11,-2],[6,14],[20,6],[16,-8],[1,-2],[12,-4],[17,-2],[1,4],[12,6],[9,-4],[5,6],[9,2],[0,6],[9,6],[0,-14],[9,-4],[14,2],[19,2],[26,-2],[-7,-6],[-10,-16],[-6,-23],[4,-8],[-4,-12]],[[9977,2425],[8,-12],[9,-20],[5,-14],[-7,-8],[-13,0],[-16,4],[-10,-2],[-26,0],[-6,2],[1,16],[-10,8],[-13,-2],[-13,6],[4,6],[-17,6],[-3,4]],[[5628,3119],[35,18]],[[5440,1233],[-17,5],[3,12],[-2,4],[-9,6],[-11,14],[10,36],[1,10],[-3,6],[-14,0],[-6,4],[31,-2],[16,-12],[-9,-4],[2,-6]],[[5432,1306],[18,-6],[10,2],[1,6],[28,-2],[16,-6],[19,-4],[9,14],[10,-6],[65,2],[-2,8],[5,2],[-6,6],[-5,0],[3,8],[51,-6],[7,2],[1,-4],[17,0],[18,-2],[21,2]],[[6387,2401],[-11,2],[-19,10],[7,4],[-2,6],[16,0],[-3,6],[9,4],[0,6],[-9,4],[11,13]],[[6311,2425],[5,10],[-1,6],[12,-2],[10,4]],[[5917,661],[-10,4],[3,4],[-9,4],[0,4],[-10,2],[-2,6],[-14,-2],[-16,8],[-13,12],[-9,0],[-28,12],[2,2],[-12,0],[43,-20],[27,-14],[12,-4],[22,-14]],[[5902,665],[-26,14],[-67,32],[-38,16],[-38,15],[-58,20],[-38,10],[-13,4],[-20,0],[-22,4],[-3,0],[-34,6],[-35,4],[-15,-4],[-5,-6],[-14,-4]],[[5469,869],[7,2],[3,10],[14,6],[9,0],[9,4],[17,2],[3,2],[27,0],[16,2],[2,-4],[13,2],[19,12],[17,-10],[9,8],[21,0],[6,4],[24,0],[5,2],[10,-2],[0,6],[7,-2],[11,6],[16,2],[19,8],[8,-4],[3,6],[16,-4],[3,-4],[14,4],[3,6],[-5,2],[-2,8],[-5,2],[5,8],[2,10],[11,2],[-3,8],[-8,2],[8,8],[8,3],[0,22],[-5,2],[8,4],[6,-4],[5,2]],[[8319,1490],[-7,6],[1,4],[-14,8]],[[5724,3399],[-4,-12],[-5,2],[-12,-6],[-5,-14],[11,-8]],[[5610,3421],[6,-2]],[[5987,2276],[3,-8],[-2,-4],[-8,-6],[1,-14],[-11,-2],[-1,-8],[29,2],[1,2],[13,-4],[19,4],[-4,-6],[13,-4],[8,4],[22,0],[9,10],[-5,2],[10,6],[9,-2],[0,-8],[5,-6],[25,6],[7,-4]],[[6152,2143],[0,-4],[8,-6],[-13,0],[1,-8],[-4,-6],[-9,0],[-1,-12],[8,2],[4,-4],[5,-10],[11,0],[12,-1],[3,-5],[13,5]],[[5438,3895],[11,-2],[3,-2],[-12,-6],[-20,-6],[-11,2],[10,8],[6,10],[13,-4]],[[5376,3972],[0,0]],[[5551,3921],[6,4],[-2,9],[20,6],[10,6],[9,0],[3,5],[9,3],[22,12],[-12,16],[-1,-12],[8,-4],[-8,0],[-32,-10],[-6,-9],[-11,0],[-28,-4],[-24,-7],[-12,-15],[-14,-12],[4,-4],[-1,-8],[-7,6],[-22,-6],[-5,-4],[-27,2],[-10,8],[1,8],[8,4],[-10,2],[-6,6],[-9,5],[-12,11],[15,3],[5,4],[-7,6],[-12,16],[-12,-2],[-2,6],[5,4],[15,4],[-3,4],[-7,-6],[-8,0],[-6,-4]],[[5432,1306],[-1,4],[9,6],[-7,6],[9,24],[0,4],[-11,3],[2,4],[26,8],[3,8],[-1,8],[-10,4],[17,4],[18,4],[0,-4],[22,2],[18,-6],[5,0]],[[7536,1403],[9,0],[-4,6]],[[5334,3127],[-20,16],[-21,10]],[[5293,3153],[3,4],[15,4],[8,-4],[9,0],[6,-4],[8,4],[14,-4],[8,24]],[[5430,3185],[5,-4],[13,-6],[12,-14],[6,-10],[17,-14],[11,-6]],[[5321,3121],[-1,0]],[[5319,3119],[-4,10],[-5,4],[-3,10],[6,0],[20,-16]],[[5293,3153],[-10,8],[-13,6],[-17,14],[-6,0],[-12,12],[-1,9],[28,14],[28,8]],[[9165,1752],[-2,-14],[-12,6],[-27,2],[-7,-4],[13,2],[19,-4],[16,-12],[-11,-2],[-12,4],[-10,0],[-4,6],[-11,-8],[9,0],[26,-7],[-10,-6],[-22,-10],[-6,-2],[-29,0],[-19,6],[-3,-8],[-16,6],[3,-4],[-11,0],[-14,-2],[-4,-4],[-7,2]],[[8945,1703],[-3,4]],[[6311,2474],[-23,6],[-14,-8],[-5,2]],[[6269,2474],[-8,10],[-2,8],[-32,10]],[[6250,2449],[4,9],[-6,1],[10,9],[8,2],[3,4]],[[4876,4307],[1,24],[-7,22],[6,-4],[10,8],[0,4],[18,14],[16,8],[12,14],[4,16],[8,-4],[5,10],[36,16],[19,13],[7,14],[-1,12],[-5,16],[10,14],[16,18],[10,27],[14,6],[18,16],[21,6],[14,-7],[13,-1],[26,-8],[10,-6],[-9,16],[20,-1],[12,9],[1,10],[21,-2],[11,-8],[28,10],[-10,-2],[-7,-6],[-11,0],[-12,8],[-12,2],[-12,-2],[-10,-8],[-11,0],[-22,6],[-10,6],[10,10],[12,10],[10,4],[23,0],[18,4],[6,4],[26,2],[18,-4],[9,-6],[19,-4],[1,-6],[14,-4],[19,2],[2,-4]],[[7960,861],[-11,-3],[-47,-4],[-3,0],[-37,-2],[-9,0],[-35,0],[-14,0]],[[5442,3651],[7,0],[6,-6],[-9,-2],[0,-10],[-3,-2]],[[5542,3633],[-13,2],[-4,-2],[-7,4],[-8,0],[-2,-4],[-9,-4],[-13,2],[-7,-6],[-6,2],[-9,8],[-10,0],[6,8],[-2,6],[-23,14],[-4,10]],[[5432,3673],[8,0]],[[7266,3740],[23,2],[3,-4],[-7,-8],[9,4],[10,-8],[0,-6],[12,-4],[-8,-4],[-10,4],[-9,0],[2,-8],[-8,-4],[-8,2],[-13,-4],[-6,-8],[-12,0],[6,3],[-5,5],[4,10],[-14,2],[-14,-10],[-13,2],[5,4],[-8,8],[6,2],[3,12],[16,6],[8,-8],[22,10],[6,0]],[[7254,3655],[-9,-8]],[[6299,6615],[-8,2],[-7,10],[-14,-4],[-37,-4],[-6,4],[-13,0],[-18,-2],[-23,0],[-12,0],[-12,2],[-18,0]],[[6131,6623],[11,10],[-8,11],[-9,1],[-1,8],[-13,5],[-9,10],[6,4],[9,-2]],[[6117,6670],[14,-2],[10,-4],[31,-2],[7,-12],[14,3],[13,-7],[10,4],[2,4],[12,0],[10,-6],[3,2],[19,-4],[16,3],[7,-3]],[[6285,6646],[-2,4],[13,-4],[14,0],[0,-17],[9,-12],[-20,-2]],[[6291,6650],[2,6],[23,5]],[[6316,6661],[-2,-9],[-8,-4],[-15,2]],[[6299,6615],[18,0],[16,2],[7,-4],[-11,-6],[10,-2],[-15,-20],[-8,-4],[0,-6],[-12,-10]],[[6304,6565],[-12,4],[-20,2],[0,12],[-7,12],[-18,0],[-15,-4],[-11,0],[-5,-4],[-11,0],[-4,-4],[-9,0],[-8,-4],[-11,2],[-15,-8],[-16,2],[-7,-2],[1,-6],[-9,-6],[-15,0],[-20,-4],[-11,4],[26,8],[9,10],[-11,4],[-37,-2],[-20,6],[-9,0],[9,10],[0,14],[18,-4],[8,-4],[20,-2],[7,4],[20,0],[-3,8],[13,10]],[[4465,5424],[-1,8],[8,-1],[-2,15],[-15,6],[1,10],[9,2],[-6,4],[-14,2],[-1,4],[7,14],[-4,8],[10,2],[-2,6],[8,4],[0,8]],[[4463,5516],[18,-6],[6,6],[10,2],[3,-4],[41,2],[5,-4],[15,6],[2,2]],[[4563,5520],[6,2],[15,-14],[11,-2],[21,-6],[9,-6],[14,-2],[8,0],[-7,-6],[-13,-4],[8,-10],[11,0],[9,-6],[7,-2],[16,2],[5,4],[10,-8],[4,4],[39,8],[6,-2],[1,-8],[-35,-8],[-3,-6],[6,-16]],[[4711,5434],[4,-10],[7,-6],[16,-8],[-25,-13],[8,-6],[-10,-10]],[[4711,5381],[-13,-8],[-9,-4],[-15,0],[-17,2],[-12,-4],[-5,0],[-33,-4],[-15,2]],[[4592,5365],[-10,-2],[-11,4],[5,14],[-3,6],[7,0],[-9,4],[-29,29],[-15,-4],[2,-2],[-13,-10],[-15,4],[1,4],[-21,0],[-13,4],[-3,8]],[[5730,6039],[-9,8],[-16,3],[3,3],[-12,8],[2,4],[-11,4],[-33,4],[-6,6],[-20,2],[-11,8],[-17,4],[-16,8],[-15,-18],[2,-6],[-15,4],[-15,-2],[-11,-4],[-43,6],[-3,-6],[-5,6],[10,10],[0,8],[-24,6],[-22,-20]],[[5443,6085],[-17,-4],[-19,-6],[-23,-2],[-1,8],[-6,8],[-23,-2],[-11,-8],[-6,-2],[-11,-10],[-13,-2],[-29,8],[-16,-6]],[[5268,6067],[-15,8],[-10,10],[6,8],[16,2],[13,6],[15,2],[14,6],[11,10],[13,4],[-7,8],[17,6],[-3,2],[-21,-4],[-6,-4],[-16,-8],[-10,-2],[-6,2],[-13,0],[4,6],[11,2],[-10,10],[-19,-2],[-10,6],[19,3],[-7,9],[21,1],[8,6],[-3,9],[-6,3],[-17,-4],[-10,2],[-19,0],[-17,4],[-20,2],[-22,8],[-5,-4],[-12,0],[-2,10],[3,0],[-24,12],[6,4],[-12,14],[-16,0],[-7,8],[-13,6],[3,4],[-14,8],[6,8],[-11,6],[-8,0],[-12,13],[10,8],[5,12],[16,12],[-9,10],[15,6],[-17,10],[-7,-2],[-16,12],[-13,0],[8,8],[7,0],[12,8],[-1,8],[7,4]],[[5068,6373],[10,10],[8,0],[16,11],[15,-2],[18,4],[4,6],[13,2],[1,4],[-7,12],[12,2],[8,-7],[34,-1],[10,-4],[20,-4],[16,-6],[7,3],[5,-5],[7,6],[18,-4],[9,-5],[4,-8],[14,0],[13,5],[-5,8],[1,14],[16,12],[-4,12],[4,4],[10,0],[1,8],[15,2],[8,4],[10,-2],[19,6],[2,4],[18,-6],[9,4],[4,-4],[26,2],[13,-2],[8,6],[20,-2],[14,4],[-3,6],[20,4],[17,-6],[7,0],[15,-8],[17,2],[9,-10],[21,-4],[19,-2],[17,4],[15,-10],[8,0],[16,-22],[14,0],[22,-9],[7,-7],[-3,-8],[2,-11],[11,4],[8,-6],[-5,-24],[-5,0],[3,-8],[-3,-2],[5,-12],[15,-10],[-2,-10],[18,-2],[7,-10],[9,-6],[1,-8],[17,1],[5,4],[22,-3],[11,2],[13,-6],[15,4],[11,-5],[2,-4],[9,-1],[4,-4],[24,-7],[3,-8],[14,-6],[14,4]],[[5958,6262],[14,0],[6,2],[-11,-14],[-7,-12],[-7,-18],[-11,-2],[-13,4],[3,6],[-4,6],[-38,2],[-10,-12],[-9,2],[4,-6],[15,-6],[35,0],[4,6],[10,-4],[28,0],[-7,-4],[2,-10],[-8,-6],[-21,-6],[-12,0],[-15,-8],[-6,-10],[-1,-12],[6,-10],[19,0],[1,-4],[-8,-9],[-16,-12],[0,-2],[-13,-6],[-3,-10],[-15,-4],[-1,-10],[-16,-6],[-13,2],[-20,-8],[-12,0],[-10,-4],[-15,-10],[-8,-10],[-28,-8],[-8,-7],[-9,-3]],[[2955,4930],[8,-4],[-5,-4],[-14,-3],[-14,4],[3,5],[22,2]],[[2988,5058],[2,-4],[-8,-3],[-9,4],[15,3]],[[2415,5234],[-7,-8],[-12,2],[5,4],[14,2]],[[2787,5250],[1,-2],[-4,-10],[-8,0],[0,4],[11,8]],[[2460,5254],[4,-4],[-9,0],[5,4]],[[2769,5291],[1,2],[27,20],[3,12],[-9,-2],[5,6],[8,-2],[7,6],[11,-8],[-16,-8],[-4,-6],[6,-2],[-8,-20],[7,2],[-10,-7],[-1,-8],[9,0],[-5,-8],[-18,-4],[-3,-6],[-7,-2],[2,6],[-7,2],[8,10],[-10,2],[-5,5],[9,10]],[[3351,5401],[11,-18],[-5,-8],[-11,6],[-3,8],[3,12],[5,0]],[[3328,5510],[9,-2],[16,-2],[2,-4],[41,-22],[15,-4],[9,-4],[11,-2],[2,-6],[-17,-10],[7,-2],[13,0],[9,-2],[-1,-10],[4,-8],[6,0],[16,6],[9,0],[3,-4],[0,-22],[8,-15],[1,-12],[12,-12],[1,-4],[-8,-6],[-20,-2],[0,-6],[17,-8],[7,-8],[-2,-8],[-13,0],[-10,-6],[-16,10],[-2,4],[-7,4],[-5,6],[0,10],[-10,4],[-4,4],[-15,4],[-2,6],[-9,2],[-12,-8],[-11,12],[-2,6],[7,8],[-4,9],[-9,-2],[-4,4],[1,22],[12,6],[-15,8],[-10,-4],[-16,4],[-14,12],[-8,2],[-14,14],[-6,4],[0,10],[-9,2],[12,8],[13,4],[8,10],[4,0]],[[2229,5490],[-9,-6],[-6,2],[15,4]],[[2332,5498],[6,0],[17,14],[25,0],[13,6],[15,0],[7,4],[12,0],[2,-6],[-2,-14],[-9,-18],[2,-10],[7,-2],[13,-18],[0,-8],[6,-8],[-2,-28],[11,-15],[2,-8],[7,-6],[21,-8],[13,-10],[2,-4],[-6,-14],[1,-6],[9,-6],[9,0],[3,-6],[-7,-8],[-3,-8],[9,-4],[-5,-6],[12,0],[3,-9],[-11,-9],[-10,2],[-15,-9],[0,-8],[-12,4],[-8,-4],[8,-6],[-4,-8],[-6,-2],[-9,4],[-17,-4],[-11,-6],[-4,2],[-14,-8],[-11,-2],[-1,4],[-14,0],[-20,-6],[1,2],[-9,6],[-11,0],[-14,-6],[5,-2],[-8,-14],[-12,-6],[1,-4],[-7,-6],[-9,0],[-16,-10],[-27,0],[-6,4],[-9,-2],[-1,6],[-23,0],[-1,4],[7,10],[-1,16],[22,22],[8,4],[20,2],[6,-2],[14,8],[-11,21],[-16,19],[-24,13],[-15,0],[-3,-4],[-10,4],[5,6],[-3,6],[6,2],[1,8],[13,4],[3,4],[9,-2],[10,8],[33,8],[0,4],[10,4],[-9,6],[2,4],[-25,-4],[-8,4],[-13,-2],[-19,4],[-21,-2],[-15,-22],[-6,-4],[-2,-8],[-6,-8],[-21,-18],[-8,-4],[-14,-12],[-27,-12],[-18,-6],[-13,-8],[-10,0],[-17,4],[-3,11],[-11,4],[23,9],[7,12],[-10,0],[0,6],[6,10],[28,16],[0,8],[13,10],[-1,10],[-6,4],[-13,0],[-10,4],[5,8],[12,6],[11,3],[-3,18],[6,4],[-5,4],[5,12],[20,4],[8,4],[9,-8],[8,4],[12,0],[25,18],[12,0],[0,4],[21,10],[9,0],[4,-4],[-6,-8],[-9,-8],[0,-14],[-10,-18],[12,-9],[10,1],[-4,8],[9,7],[-2,7],[12,8],[2,8],[-9,6],[35,2],[18,14],[6,0],[22,10],[10,8]],[[2856,5535],[-13,-15],[-4,-2],[-12,4],[7,16],[7,1],[11,-4],[13,10],[-9,-10]],[[2293,5581],[0,-4],[-8,4],[8,0]],[[2284,5595],[8,-2],[-16,0],[8,2]],[[2334,5603],[7,0],[-3,-4],[-13,-2],[-7,-12],[-17,-6],[-5,4],[5,8],[-6,6],[-13,0],[2,4],[16,2],[19,-2],[7,4],[8,-2]],[[2970,5708],[0,-6],[-14,-8],[-1,4],[9,8],[6,2]],[[2331,5615],[-6,-6],[-12,-2],[-10,4],[9,8],[-18,-4],[-10,-4],[-5,2],[9,2],[-1,4],[13,4],[-4,10],[13,4],[-5,8],[2,8],[22,13],[16,6],[-6,2],[15,2],[13,-4],[9,4],[0,12],[18,4],[10,8],[12,-12],[-7,-6],[-3,-6],[-19,-18],[-2,-8],[-12,-3],[-9,-6],[8,-2],[-16,-6],[6,0],[7,-8],[-2,-8],[-8,-2],[-11,-10],[-12,0],[0,10],[-4,0]],[[2593,5428],[7,-10],[-8,-3],[0,-7],[-7,-5],[-4,-12],[-15,-2],[-6,4],[-5,-2],[-27,4],[-18,-2],[-3,4],[-16,2],[-12,5],[-13,12],[-5,10],[0,8],[-4,6],[4,14],[-9,6],[5,8],[-2,12],[19,12],[14,18],[16,14],[9,2],[6,5],[10,-1],[15,5],[6,-2],[25,2],[7,4],[15,-2],[15,5],[22,1],[18,8],[3,-4],[6,7],[13,3],[-1,-3],[13,5],[-3,10],[-13,-12],[-42,-2],[-11,-10],[-6,2],[-8,-4],[-22,7],[-9,-3],[-6,6],[-10,0],[-2,2],[-16,0],[9,8],[-4,0],[8,14],[17,10],[10,6],[0,10],[16,10],[3,0],[28,10],[12,6],[-3,4],[12,6],[8,0],[22,12],[13,2],[12,7],[15,0],[-2,6],[5,4],[15,3],[-1,5],[6,4],[8,-5],[7,7],[9,2],[3,4],[22,6],[-3,6],[9,2],[3,4],[9,0],[4,-4],[6,2],[-7,4],[3,4],[16,0],[11,-10],[5,-12],[-5,-4],[6,-8],[-11,-6],[0,-4],[-12,-8],[-1,-4],[-33,-29],[-21,-28],[-13,-10],[-3,2],[-9,-2],[-3,-8],[-7,-6],[-9,-18],[-13,-9],[-6,0],[-4,-12],[-11,-9],[4,-5],[-8,-12],[-20,-18],[-3,-14],[5,-2],[-15,-10],[6,12],[-9,0],[-9,-8],[6,-6],[-3,-6],[-9,-2],[0,4],[-15,0],[-13,-4],[-13,-30]],[[2976,5726],[-9,-6],[2,6],[7,0]],[[2997,5730],[-19,-18],[-8,0],[9,6],[10,10],[8,2]],[[2981,5728],[0,6],[9,6],[8,2],[-17,-14]],[[2846,5760],[10,-8],[-4,-4],[9,-14],[-11,-2],[-12,-6],[-22,-2],[-19,0],[-10,2],[-5,8],[9,6],[6,0],[5,8],[20,8],[24,4]],[[2921,5785],[12,0],[5,-9],[-3,-3],[4,-9],[-18,-8],[-4,2],[0,8],[-6,2],[7,20],[3,-3]],[[2735,5781],[-16,-6],[4,6],[16,6],[-4,-6]],[[2822,5793],[-9,-8],[-6,3],[15,5]],[[2842,5793],[-3,-18],[1,-7],[6,-6],[-12,0],[-4,11],[-5,-5],[-7,4],[3,5],[4,0],[8,4],[5,11],[4,1]],[[2784,5803],[-3,-4],[-24,-4],[3,6],[9,3],[15,-1]],[[2920,5821],[1,-6],[-4,-8],[-13,0],[8,10],[8,4]],[[2890,5825],[9,-8],[-3,-6],[6,-2],[10,-9],[-16,-23],[3,-3],[-4,-8],[6,-6],[-2,-8],[-10,0],[-9,10],[1,6],[-16,9],[8,18],[4,2],[-2,10],[8,12],[7,6]],[[2868,5867],[-12,-10],[-1,4],[13,6]],[[2186,5853],[18,-2],[-8,-14],[-9,2],[-1,4],[-7,-4],[-5,4],[10,4],[2,6]],[[2945,5871],[0,-6],[-9,-10],[2,-2],[-17,-4],[-3,-4],[9,-2],[3,-10],[-11,-2],[-2,-6],[-12,-6],[-9,6],[-4,10],[4,6],[-6,4],[-12,2],[12,14],[22,10],[5,-10],[21,8],[7,6],[0,-4]],[[2174,5897],[0,-12],[-19,-20],[-16,-8],[-21,6],[0,2],[18,6],[4,6],[-9,4],[6,6],[8,2],[13,6],[16,2]],[[3025,5966],[6,-4],[-6,-10],[-27,-14],[-3,-6],[-17,-13],[-11,-3],[6,6],[-4,2],[-30,0],[8,10],[6,0],[0,6],[8,0],[-1,6],[9,4],[17,0],[9,6],[2,-4],[13,2],[9,4],[6,8]],[[2221,5976],[-2,-4],[-8,2],[10,2]],[[2400,5986],[-13,-10],[-3,6],[16,4]],[[2292,5992],[12,-2],[-9,-6],[-7,4],[4,4]],[[2458,6006],[14,-4],[-9,-4],[-15,2],[10,6]],[[2949,6031],[-7,-6],[-9,1],[16,5]],[[2267,6031],[9,0],[6,-8],[9,4],[9,-1],[-24,-16],[-3,8],[-22,-4],[-3,7],[7,9],[12,1]],[[2328,6034],[25,-7],[6,-6],[13,-3],[3,5],[9,-2],[5,-7],[7,4],[0,-6],[9,0],[3,-6],[-12,0],[-3,-6],[-16,0],[-15,2],[-3,-4],[-15,2],[3,4],[-9,4],[-26,-6],[-9,8],[-15,4],[12,12],[10,5],[9,-4],[9,7]],[[2140,6031],[4,-4],[-7,-9],[-9,-2],[6,6],[6,9]],[[3114,6067],[6,-2],[-8,-8],[-9,2],[-13,-4],[10,8],[14,4]],[[2969,6034],[16,3],[10,8],[11,2],[18,12],[7,8],[19,8],[9,10],[2,-6],[13,2],[16,8],[5,-2],[-8,-8],[-9,-2],[-22,-18],[-18,-8],[-7,-10],[-13,-10],[-21,-5],[-19,-14],[-37,-14],[-11,0],[6,6],[15,6],[3,20],[15,4]],[[3132,6119],[5,0],[-3,-8],[-7,-6],[-10,6],[1,4],[14,4]],[[3413,6059],[32,-2],[9,10],[30,0],[16,4],[10,0],[6,4],[3,10],[14,-2],[-2,2],[21,6],[-2,4],[6,6],[19,0],[17,-4],[24,0],[4,-4],[40,8],[7,-4],[13,4],[9,-2],[24,10],[10,4],[9,-2],[36,2],[3,2],[19,8],[2,4],[13,-2],[23,10],[19,2],[17,2]],[[3864,6139],[16,-2],[12,-10],[10,-4],[10,-10],[5,-10],[11,-4],[-16,-2],[-23,6],[-6,-4],[-34,-4],[-8,-6],[-11,0],[-15,-6],[-20,-4],[0,-8],[17,-2],[12,-6],[8,2],[7,-14],[-6,-8],[-18,-9],[-7,-9],[1,-4],[12,-7],[20,0],[10,-2]],[[3851,6012],[-12,-2],[-8,-4],[-5,-10],[-18,4],[-5,-2],[-10,6],[-6,-6],[-26,-6],[10,-8],[-8,-8],[-11,-2],[-24,2],[1,-4],[-13,-4],[-9,0],[-9,-10],[-12,0],[-2,-10],[-4,-2],[5,-6],[-22,-6],[1,-8],[-3,-6],[-16,-4],[21,-4],[23,-10],[6,0],[6,-7],[16,-8],[-13,-6],[6,-8],[31,2],[9,6],[25,-2],[16,-4],[6,-4],[23,4],[9,-2],[5,-6],[-10,2],[-9,-6],[6,-10],[-10,-2],[1,-8],[19,-4],[-1,-6],[-12,2],[-6,-4],[-10,2],[-6,-4],[-1,-14],[-3,-4],[2,-10],[12,-22],[0,-7],[-9,-12],[6,-10],[15,-12],[18,-10],[-2,-6],[6,-6],[1,-8],[8,-10],[2,-8],[17,-6],[18,0],[12,-4],[0,-6],[-14,-14],[7,-4]],[[3891,5656],[-5,-13],[-14,-14],[-4,-10],[4,-8],[16,-14],[-10,-6],[-18,-4],[7,-2],[-7,-4],[-23,4],[-6,-4],[4,-4],[16,0],[-2,-4],[8,-2],[8,-6],[7,4],[3,-8],[-10,-7],[10,-5],[11,-8],[-6,-11]],[[3880,5530],[-13,5],[-10,0],[-14,4],[-6,4],[-13,-2],[-9,6],[-12,6],[-12,-4],[1,6],[13,0],[-13,16],[-8,0],[-18,10],[-26,2],[-9,8],[-11,0],[-8,2],[-5,10],[-9,6],[-9,10],[-10,8],[-1,12],[-6,2],[-2,9],[-9,2],[-4,-19],[15,-24],[19,-18],[7,0],[8,-12],[15,2],[7,-4],[-4,-4],[4,-6],[-12,2],[-22,-6],[-33,0],[-16,8],[0,12],[-12,6],[0,22],[-4,8],[-11,4],[2,8],[7,8],[30,35],[1,8],[14,4],[17,26],[20,16],[8,12],[11,8],[15,6],[7,10],[-4,2],[-8,-6],[-22,-8],[-6,-4],[-13,-18],[-16,-12],[-5,-8],[-6,-2],[0,-8],[-4,-10],[-6,0],[-14,-8],[-8,-12],[-11,4],[-11,0],[-7,16],[7,10],[2,8],[-5,8],[-14,12],[0,6],[-6,0],[-9,-8],[17,-14],[-2,-12],[-6,-4],[-3,-10],[5,-9],[14,-8],[14,-5],[1,-6],[-7,-11],[-3,0],[-12,-16],[-15,-4],[8,-16],[-2,-2],[9,-12],[-4,-2],[8,-18],[-1,-12],[-9,-2],[-15,6],[-7,0],[-9,4],[-12,4],[-11,6],[5,-10],[-7,-2],[19,-10],[12,0],[15,-4],[7,-7],[-3,-7],[-13,-9],[3,-5],[-10,-1],[-8,-18],[-6,-8],[-6,-18],[-19,-14],[-4,-6],[-2,-12],[-9,4],[-31,0],[-23,6],[4,10],[-7,8],[-2,14],[-7,12],[1,6],[-10,17],[-2,5],[-11,9],[-14,3],[-9,5],[-15,28],[-1,8],[-6,-2],[-3,-8],[11,-16],[0,-7],[14,-13],[11,-4],[10,-15],[7,-28],[-2,-8],[-23,0],[-10,2],[-21,14],[-13,6],[-6,0],[-13,10],[-12,0],[1,4],[-7,0],[-4,9],[4,7],[0,8],[-4,5],[5,4],[-9,6],[-5,-10],[2,-4],[-7,-19],[9,-8],[-7,-6],[-5,-12],[-9,0],[-20,-10],[-5,-12],[16,-14],[18,-31],[5,-1],[0,-10],[-5,-4],[-9,0],[-12,12],[-20,2],[-5,10],[-13,0],[2,-2],[-18,-2],[-2,8],[-9,0],[-6,-4],[-10,0],[9,4],[-10,0],[5,12],[-7,0],[-4,8],[-14,8],[-12,0],[2,6],[-6,4],[8,4],[-7,4],[2,6],[9,6],[-7,2],[0,6],[5,2],[-2,8],[13,13],[-2,5],[-9,3],[-6,9],[9,9],[-4,6],[10,14],[17,6],[11,10],[0,4],[9,10],[0,4],[9,12],[15,6],[4,8],[20,10],[6,5],[17,8],[9,8],[-1,10],[9,12],[16,6],[18,2],[13,0],[15,4],[41,16],[13,6],[-3,8],[12,20],[14,12],[23,11],[14,4],[35,8],[17,10],[16,4],[28,16],[-8,2],[-25,-12],[-14,-2],[-21,-10],[-15,-1],[-35,-8],[-5,5],[7,18],[-8,-6],[3,-6],[-9,0],[-18,-11],[1,-4],[-10,-9],[-9,-2],[-3,-9],[-10,-6],[-3,-20],[-12,-10],[-24,-10],[-19,-2],[-12,-4],[-14,-2],[-27,-12],[-5,-4],[-10,-2],[-15,-12],[-12,-19],[-19,-5],[-9,-8],[-4,-15],[-18,-6],[-7,2],[1,8],[-12,-2],[0,-6],[9,-2],[-13,-4],[1,-18],[-7,-10],[-9,2],[-10,-4],[-2,-4],[-12,-10],[-10,0],[-4,2],[-11,-6],[-1,6],[-19,4],[-5,22],[-9,2],[-9,-28],[3,-6],[0,-8],[3,-8],[-6,-10],[6,-12],[9,-3],[6,-7],[9,-47],[4,-6],[3,2],[3,-8],[12,-12],[-9,2],[-9,-8],[6,2],[21,-2],[4,-6],[26,-17],[0,-3],[12,-4],[11,-10],[0,-7],[6,-3],[6,-9],[0,-6],[5,-6],[-2,-8],[-10,-10],[-20,0],[-19,-8],[-6,0],[-28,-10],[-9,-10],[-8,0],[-29,-25],[5,-8],[-3,-9],[-12,-6],[5,-2],[-14,-25],[-12,-6],[6,-16],[0,-22],[5,-6],[12,-6],[-5,-4],[6,-8],[-10,-4],[-3,8],[-15,-2],[1,-4],[-9,-7],[6,-4],[-5,-8],[1,-11],[4,-4],[-1,-7],[-12,-2],[0,-6],[-9,-14],[3,-6],[-9,-12],[-16,-12],[-10,-6],[1,-8],[-3,-10],[-6,-2],[-3,-7],[-10,-7],[-11,-2],[-20,2],[-2,-5],[17,-8],[14,0],[6,4],[11,0],[6,-11],[16,-13],[12,-20],[-5,-10],[-23,-18],[-15,-8],[-2,-6],[-20,-6],[-20,-10],[-12,0],[-30,4],[-21,-4],[-17,0],[-31,-12],[-23,-4],[-28,3],[-24,7],[-6,10],[6,10],[-3,4],[4,8],[-1,8],[-6,4],[6,4],[-4,12],[5,2],[-1,6],[4,6],[-3,6],[6,8],[6,0],[20,15],[8,1],[6,9],[12,-1],[12,4],[9,17],[3,24],[-2,14],[3,4],[-3,22],[9,19],[-3,14],[-4,8],[-3,10],[1,6],[21,8],[1,6],[8,10],[-1,8],[4,2],[1,8],[6,6],[0,16],[3,4],[5,16],[-12,9],[38,14],[19,14],[18,22],[2,4],[12,6],[-2,6],[16,12],[15,0],[9,6],[27,10],[6,8],[11,2],[11,6],[3,-2],[4,7],[9,4],[-1,7],[16,13],[7,3],[-3,5],[9,10],[0,6],[-15,-12],[-5,-10],[-14,-2],[0,-5],[-12,-11],[-7,0],[-22,-17],[-24,-12],[-24,-8],[-9,0],[-10,-8],[-23,-6],[-3,8],[11,6],[-9,0],[-7,8],[13,4],[-5,4],[-18,-6],[-11,0],[-13,10],[-7,0],[0,6],[-6,11],[4,6],[5,10],[-2,12],[8,4],[4,12],[7,4],[17,12],[6,8],[-2,4],[16,18],[18,4],[2,6],[12,6],[-6,6],[-15,-8],[-15,-2],[-8,-4],[-16,-12],[-4,0],[-8,-10],[-9,2],[-19,-14],[-7,0],[-4,10],[5,8],[-6,2],[8,12],[-2,2],[15,19],[3,6],[22,12],[5,7],[15,9],[-2,2],[10,10],[15,12],[19,4],[8,14],[-9,-8],[-21,-4],[8,6],[14,8],[8,10],[-15,-8],[-4,6],[-8,-14],[-13,0],[10,8],[12,8],[3,8],[-13,-14],[-15,-10],[-9,2],[-6,-4],[16,-2],[-25,-26],[-10,-8],[-6,2],[15,24],[-21,-22],[-10,-6],[0,-6],[15,3],[-14,-12],[-12,-8],[-6,1],[6,8],[-22,-5],[-1,7],[10,10],[12,6],[-2,6],[15,12],[11,16],[11,6],[9,0],[-4,4],[3,10],[6,6],[15,12],[0,-4],[10,12],[22,17],[12,-4],[10,4],[11,-2],[-2,-8],[22,-7],[-4,5],[3,6],[-13,1],[13,12],[-8,5],[-19,-4],[3,8],[-15,0],[14,22],[6,4],[17,20],[5,0],[7,8],[-1,6],[4,4],[13,6],[-2,2],[-12,2],[-31,-16],[-2,-4],[-12,-4],[-6,-4],[-9,-2],[-2,-10],[-11,-4],[-3,-8],[-10,-2],[-8,0],[12,14],[-3,2],[6,10],[-3,2],[15,8],[-4,2],[7,8],[4,0],[8,8],[-1,2],[17,18],[9,3],[-4,14],[-18,4],[3,3],[16,0],[11,5],[5,0],[20,3],[-2,3],[12,6],[15,-2],[-13,8],[2,4],[-10,2],[-9,-10],[-9,2],[-10,-4],[-27,2],[-12,-6],[-2,-4],[-17,0],[-4,4],[10,20],[10,8],[-4,2],[-9,-4],[5,14],[-2,4],[6,10],[5,18],[7,2],[12,10],[7,3],[8,-5],[3,6],[16,-8],[10,2],[8,6],[11,3],[15,-1],[31,9],[2,4],[-11,2],[-13,-6],[-3,-4],[-9,-2],[-12,6],[-14,-5],[-12,-10],[-8,7],[-7,0],[-3,7],[9,9],[4,14],[18,10],[3,6],[16,6],[12,2],[-1,4],[-9,4],[0,12],[15,4],[3,6],[28,8],[-9,-6],[10,0],[19,6],[5,-4],[15,4],[26,0],[17,4],[11,-6],[12,-2],[6,6],[6,-4],[13,4],[12,-6],[9,0],[11,6],[8,-6],[9,-12],[16,0],[6,6],[24,4],[5,-2],[25,10],[4,8],[18,8],[10,2],[-9,4],[9,9],[9,0],[7,10],[15,10],[8,14]],[[1767,6073],[9,-8],[20,2],[8,6],[11,2],[1,8],[16,-10],[12,0],[3,-4],[0,-12],[-6,-2],[-22,4],[-9,-6],[-15,6],[-23,-4],[-11,-9],[20,-7],[-14,-8],[3,-4],[-9,-4],[-6,3],[-10,-3],[-24,4],[-16,-4],[-9,-7],[-14,-8],[6,-12],[-1,-12],[-14,-4],[-26,2],[-8,12],[-14,2],[-9,0],[-5,-6],[-7,0],[-2,6],[9,6],[-4,6],[-2,10],[5,5],[-7,2],[3,5],[-9,9],[8,4],[1,6],[10,4],[12,0],[0,4],[19,2],[9,-2],[15,4],[7,-6],[9,2],[9,-7],[9,1],[14,4],[0,6],[14,2],[12,6],[22,4]],[[1862,6095],[4,-2],[-13,-4],[-12,-2],[0,4],[9,0],[12,4]],[[3192,6143],[11,-10],[20,-12],[17,4],[16,-4],[9,-4],[14,0],[12,6],[12,10],[-6,13],[2,7],[29,-4],[30,0],[0,-14],[12,4],[28,0],[19,-8],[11,2],[-20,-20],[-9,0],[5,-10],[9,-2],[-5,-8],[3,-6],[-7,-8],[-9,-2],[4,-6],[12,-6]],[[3411,6065],[-12,-12],[-22,-15],[-15,-1],[-8,-3],[-8,-14],[-9,-4],[-1,-10],[-9,-4],[1,-4],[-17,-4],[-11,-6],[-6,2],[-10,-6],[1,4],[-14,4],[-12,8],[-17,0],[-14,-2],[-39,4],[-13,6],[-18,-2],[0,-8],[-6,-2],[-20,0],[-2,-2],[-16,2],[6,12],[-5,11],[-7,8],[-13,3],[6,4],[-1,5],[-6,-8],[-7,-4],[-12,-11],[-11,-6],[8,10],[-1,3],[-21,-7],[11,11],[8,3],[0,5],[18,18],[7,-3],[7,7],[10,-4],[7,4],[2,-10],[11,-4],[12,0],[12,6],[9,-2],[4,4],[7,-1],[8,1],[11,8],[10,0],[7,6],[2,6],[10,4],[17,-2],[22,4],[7,4],[-3,8],[-13,-6],[-24,-6],[-18,2],[-17,-2],[-5,-4],[-20,-12],[-15,-6],[-9,4],[-5,-4],[-13,8],[-4,10],[-18,-4],[10,8],[-11,2],[11,6],[-3,4],[17,6],[6,-4],[14,2],[-11,4],[0,6],[8,12],[12,12],[24,12],[10,4]],[[2501,6146],[16,-11],[-16,4],[0,7]],[[2352,5883],[10,-2],[13,2],[-7,2],[6,4],[18,-4],[17,0],[-1,2],[15,4],[17,0],[6,-2],[12,4],[5,7],[14,3],[26,3],[4,2],[19,3],[15,11],[-13,8],[16,0],[3,-3],[13,1],[-3,6],[-8,-4],[-8,6],[-13,-2],[-5,4],[-16,-4],[-18,-14],[-12,8],[-13,-12],[-9,0],[-7,-4],[-16,-1],[-5,1],[-21,0],[-31,-8],[-17,0],[-9,7],[-5,7],[3,12],[17,10],[28,10],[11,8],[2,10],[7,2],[-3,8],[9,0],[6,10],[25,0],[26,-2],[17,2],[12,12],[10,2],[11,0],[23,16],[0,5],[-10,11],[-6,0],[-20,-11],[-20,-1],[-9,-4],[-16,-4],[-21,0],[-19,-6],[-12,4],[-1,4],[-10,-2],[-4,7],[9,2],[-7,11],[-27,5],[2,4],[-13,0],[-17,8],[-15,4],[-4,4],[-35,-2],[-2,-2],[-21,0],[-9,4],[-16,0],[0,2],[-23,4],[-4,4],[6,14],[15,2],[11,2],[13,8],[4,6],[9,2],[-1,4],[-12,0],[-19,-4],[-3,2],[-2,12],[-6,12],[8,-4],[17,2],[4,4],[14,-2],[5,-2],[10,2],[1,8],[11,-2],[4,-4],[15,0],[5,-6],[14,-4],[9,-10],[15,0],[-12,6],[-10,2],[-10,10],[-5,8],[-2,17],[20,-1],[10,-7],[-7,10],[4,6],[30,0],[22,11],[15,-3],[0,6],[13,-6],[2,-5],[28,-5],[18,-2],[8,-8],[-11,-7],[17,-8],[0,2],[18,-4],[6,-4],[13,-16],[12,-6],[9,0],[4,-14],[15,-10],[0,-8],[9,-8],[-3,-6],[14,-11],[13,5],[4,-4],[17,-2],[11,4],[31,-2],[12,2],[9,-2],[11,-9],[13,-3],[-2,10],[12,-2],[19,0],[0,-4],[20,-10],[5,-10],[17,-2],[10,-5],[19,5],[11,-7],[-3,-4],[10,-4],[8,0],[11,-10],[-2,-6],[22,-4],[3,8],[10,-6],[0,-18],[-4,-4],[-11,0],[-7,2],[3,6],[-9,4],[-10,-2],[-6,-10],[6,2],[1,6],[10,-2],[2,-12],[6,4],[1,-6],[9,2],[3,-6],[-13,-12],[1,-8],[-15,-6],[-13,4],[-13,-2],[-8,4],[0,12],[8,8],[-13,2],[-1,-6],[-6,4],[-8,-2],[-11,2],[6,-4],[11,-4],[1,-6],[-12,-6],[-10,4],[-5,-12],[-11,-7],[-21,-5],[0,-3],[21,1],[14,4],[26,11],[33,1],[4,-2],[-5,-10],[-10,-9],[-21,-7],[-16,-11],[-30,-8],[-34,-12],[-19,-2],[-2,-6],[-12,0],[-28,4],[-14,6],[11,2],[18,12],[0,4],[9,0],[3,8],[-6,3],[-12,0],[-11,3],[-12,-3],[-29,-17],[-10,-10],[-18,-4],[-14,0],[-23,4],[-8,-8],[-43,-20],[-14,0],[-11,2],[-12,6],[-8,-4],[-24,-2],[-14,2],[-17,-12],[0,4],[-13,-4],[0,4],[-12,2],[-10,-4],[-6,4],[-21,-2],[-8,2],[-7,-6],[-13,4],[-12,-2],[-3,-8],[-10,-12],[-6,0],[0,6],[-21,0],[-7,2],[-4,-6],[-20,4],[-6,6],[6,4],[-8,4],[-5,-4],[-12,0],[2,8],[-5,4],[0,6],[8,2],[-20,0],[0,6],[-7,0],[4,20],[12,10],[16,4],[23,-6],[22,2],[3,-6],[4,4],[12,-4],[0,-4],[6,-6],[-12,-2],[-10,2],[1,-4],[12,2],[8,-6],[6,2],[29,-2],[-12,6],[6,6],[-7,-2],[-8,12],[17,2],[10,-2],[10,-8],[14,2]],[[1958,6105],[-9,0],[0,8],[-5,4],[-4,-4],[-1,-10],[-7,-4],[-9,0],[3,8],[-9,2],[-24,-2],[-3,-10],[-6,-6],[-7,0],[-7,10],[-7,0],[-1,4],[15,2],[13,12],[11,-4],[14,4],[-3,6],[14,0],[5,12],[9,6],[9,0],[6,5],[-3,5],[5,5],[12,0],[5,8],[9,0],[0,4],[15,0],[3,8],[17,0],[3,8],[16,8],[6,-2],[13,6],[6,0],[8,8],[6,-2],[11,0],[7,4],[14,-4],[2,-12],[-7,-8],[-26,-26],[-11,-12],[-10,-7],[-16,11],[2,-15],[-21,-10],[-7,-6],[-8,2],[-5,-8],[-24,0],[-19,-8]],[[3396,4903],[6,-4],[-4,-4],[-12,0],[3,8],[7,0]],[[4062,5125],[-5,-6],[31,4],[6,-4],[-10,-8],[10,-6],[21,2],[9,-4],[10,4],[15,0],[16,-8],[27,-18],[8,4],[-2,4],[15,0],[22,-8],[7,2],[14,10],[9,0],[3,-6],[25,-4],[14,-8],[3,4],[21,-2],[0,-4],[14,-2],[0,-2],[12,-6],[-1,-4],[12,-4],[16,2],[23,10],[35,-1],[0,5],[7,4]],[[4449,5075],[10,-2],[4,-6],[-42,-14],[-5,2],[-19,-8],[-19,-4],[-7,-15],[1,-8],[-10,-16],[8,-10],[13,-6],[-13,-6],[-12,-16],[-7,-4],[-3,-8],[9,-8]],[[4357,4946],[-4,-4],[-13,-3],[-9,-11],[-10,0],[-21,8],[-8,8],[-16,12],[-13,2],[-16,0],[-4,4],[-8,0],[-9,-14],[-20,4],[-15,-4],[-15,4],[-9,-10],[0,-6],[-17,-12],[-3,-4],[-13,-4],[-3,-7],[-7,0],[-4,-6],[4,-4],[-6,-8],[-4,-14],[-9,-8],[-6,-12],[2,-6],[-13,2],[-5,-10],[-12,-10],[-3,-10],[6,-10],[-3,-6],[-11,-7],[-13,-5],[-5,2],[-2,12],[-6,6],[6,6],[-12,4],[-8,-2],[0,-6],[-14,-8],[-34,-1],[-18,5],[-32,0],[-10,-5],[-8,-9],[-18,-3],[-2,1],[-17,0],[-4,-5],[-18,-6],[-4,-6],[-8,-2],[-5,-4],[5,-8],[-2,-6],[4,-4],[-6,-6],[15,-6],[0,-4],[16,0],[5,-10],[-10,-12],[2,-2],[-12,-2],[1,2],[-18,2],[-13,-4],[-4,-4],[-12,0],[-21,-6],[-10,6],[-8,-4],[-6,6],[-20,-8],[-14,4],[-13,-10],[-1,4],[-8,8],[-26,-4],[-6,-6],[-8,10],[-25,-4],[-6,-2],[-11,0],[2,8],[-13,6],[1,6],[-7,4],[-7,-2],[-3,4],[-21,-2],[3,-12],[-12,-8],[-6,-10],[-12,-10],[-11,2],[-8,-4],[9,-6],[-41,-6],[-23,-6]],[[3467,4668],[-14,12],[-6,13],[7,15],[0,6],[25,30],[9,2],[9,8],[-1,10],[7,4],[7,16],[-3,11],[9,6],[45,18],[12,10],[4,8],[15,14],[15,6],[2,4],[18,6],[12,10],[-3,14],[9,10],[7,15],[8,4],[3,16],[-3,8],[0,12],[-8,8],[18,8],[15,4],[6,12],[29,8],[6,12],[-3,14],[3,10],[12,10],[8,8],[19,8],[6,-1],[10,6],[18,-1],[16,5],[25,2],[8,16],[1,10],[6,4],[8,8]],[[3863,5107],[19,-4],[2,2],[18,-4],[2,-6],[-10,-12],[11,-2],[23,0],[7,-4],[11,0],[-3,4],[9,8],[11,4],[3,6],[13,2],[7,4],[24,0],[3,6],[14,-2],[15,10],[6,6],[-8,2],[14,2],[8,-4]],[[6505,6835],[-20,4],[-6,6],[-42,8],[-6,6],[-18,-4],[-24,4],[-10,14],[-14,2],[3,7],[8,5],[-12,8],[-6,-3],[-12,3],[-7,8],[-14,4],[-16,-4],[-2,-11],[-31,4],[3,-6],[-10,-15],[-34,8],[-7,7],[-11,-2],[-5,-13],[-7,-10],[-24,-16],[-14,-4],[-9,6],[-25,4],[-14,-6],[-33,14],[-11,-2],[-12,-6],[-8,0],[-5,-8],[-8,-2],[13,-8],[19,0],[0,-10],[-21,-6],[-23,4],[-15,8],[-8,0],[-6,-4],[-12,2],[-10,-4],[-10,4],[-6,0],[-3,4],[-39,4],[-10,-2],[-9,8],[5,12],[-33,-4],[-13,6],[-15,6],[-19,4],[-9,8],[11,7],[6,2],[-13,5],[11,9],[10,3],[7,-3],[13,4],[-20,8],[-13,10],[-8,-2],[-22,4],[-14,0],[0,6],[-12,2],[7,8],[-6,6],[-15,8],[-14,0],[-14,4]],[[5732,6958],[0,4],[10,0],[11,6],[8,0],[-2,6],[-12,2],[-30,0],[0,-6],[-11,0],[-8,8],[-4,22],[-16,0],[-15,6],[5,4],[-1,5],[-11,0],[-15,4],[-7,12],[-9,8],[-18,4],[5,0],[17,14],[8,16],[7,6],[-10,4],[-8,6],[-11,4],[1,26]],[[5616,7119],[7,6],[14,-8],[15,2],[15,-2],[1,-8],[7,-2],[10,6],[19,2],[3,-4],[24,-2],[10,6],[9,-2],[13,0],[8,-6],[28,-2],[11,2],[15,-4],[11,6],[5,-8],[19,-4],[25,0],[9,-6],[16,10],[6,-2],[13,2],[4,-2],[17,0],[7,-2],[14,2],[22,0],[7,-4],[17,2],[18,6],[6,0],[9,-6],[24,6],[-2,8],[13,6],[22,2],[-2,-4],[17,-2],[11,-8],[17,4],[7,-4],[12,2],[5,-4],[9,2],[17,-6],[17,2],[26,10],[29,14],[7,-4],[32,4],[17,-4],[17,-4],[25,6],[13,0],[2,-14],[6,-2],[21,-4],[18,-2],[9,6],[23,-6],[2,-6],[19,-14],[12,-12],[17,-12],[40,-10],[6,-6],[-7,-10],[0,-12],[6,-13],[13,-12],[6,-10],[-5,-14],[9,-12],[7,0],[15,-6],[8,-8],[-22,2],[-4,-8],[10,-4],[-13,-6],[18,-8],[-3,-12],[-8,-5],[-11,-3],[4,-4],[-21,-14],[3,-3],[-12,-8],[-7,-10],[-8,0],[-4,4],[-14,-8],[-1,-10],[4,-4],[-16,-8]],[[6303,5363],[-16,0],[-7,-4],[3,-6],[-12,-8]],[[6272,5343],[-3,-2],[-15,2]],[[5561,4768],[-1,12],[-5,13],[-10,6],[-14,-2],[-7,6],[-3,8],[1,12],[-5,4],[9,14],[-1,4],[10,8],[-2,6],[25,14],[-4,2],[2,10],[-27,-4],[-2,2],[-23,0],[-3,2],[16,18],[18,6],[0,7],[-7,8],[-10,4],[-9,0],[-3,-6],[-24,8],[-18,2],[-7,-4],[-13,-2],[-10,-6],[-3,-5],[-16,-1],[-2,6],[-7,3],[-22,-7],[-10,8],[-1,7],[8,7],[-5,2],[-16,12],[-1,6],[-8,-2],[-8,4],[0,8],[-13,2],[1,12],[-4,6],[-7,-2],[-4,6],[-13,4],[-45,-12],[-7,10],[2,2],[-14,6],[-7,0],[-15,10],[-8,-2],[-9,-8],[-12,2],[-16,-10],[-27,-14],[-11,0],[-16,6],[7,6],[-1,12],[10,0],[-8,10],[10,14],[15,7],[7,8],[10,0],[23,15],[-22,5],[-18,2],[-7,-4],[-12,4],[-5,8],[-7,0],[-5,14],[-21,8],[-10,12],[3,16],[33,10],[9,8],[16,2],[19,-4],[10,10],[21,6],[6,13],[10,6],[36,16],[26,-14],[49,-10],[16,0],[-1,10],[6,20],[11,12],[8,-4],[3,-6],[-1,-10],[16,-4],[27,18],[3,4],[29,-6],[4,12],[11,8],[-9,8],[-1,12],[14,-2],[13,-8],[16,-2],[16,6],[-22,8],[-8,0],[-2,10],[-8,2],[-15,8],[4,8],[-13,11],[-13,6],[-1,8],[-10,6],[-6,0],[-14,12],[-11,0],[-14,2],[-13,8],[-18,0],[-2,2]],[[5337,5325],[-11,8],[0,6],[13,12],[28,16],[10,2],[35,16],[12,2],[19,8],[14,9],[0,4],[14,6],[9,-6],[2,-17],[14,0],[8,8],[20,7],[10,-5],[12,9],[-1,4],[12,6],[10,-1],[6,-5]],[[5573,5414],[6,-2],[21,12],[31,6],[8,6],[3,-5],[16,1],[2,-6],[14,-3],[17,5],[17,3],[9,-1],[0,4],[9,-2],[14,6],[11,-2],[11,0],[6,-2],[-5,-6],[16,2],[21,-2],[5,-5],[10,0],[10,5],[2,10],[8,0],[18,-6],[11,8],[-1,4],[9,8],[2,8],[-13,10],[-14,4],[-9,6],[4,6],[11,2],[-8,6],[8,4],[18,2],[13,-4],[17,2],[8,-6],[11,-14],[17,-4],[7,6],[11,2],[2,4],[11,6],[26,8],[15,16],[11,2],[14,9],[0,3]],[[6034,5530],[12,-3],[1,-5],[13,0],[3,-6],[15,-2],[19,2],[19,-6],[25,0],[13,6],[29,0],[11,-8],[23,-6],[24,-2],[12,4],[8,-10],[-5,-4],[8,-6],[-8,-4],[7,-2],[2,-6],[9,0],[13,-6],[6,2],[6,-6],[8,4],[9,-8],[-3,-10],[8,-12],[9,-4],[13,-20],[10,-5]],[[4519,7264],[14,-9],[-18,8],[4,1]],[[3200,7530],[6,-3],[-12,0],[6,3]],[[3253,7641],[4,-7],[12,-2],[3,-7],[-24,1],[-13,6],[18,9]],[[3358,7658],[10,-6],[-8,0],[-2,6]],[[3377,7660],[9,-7],[-10,-3],[1,10]],[[3331,7752],[14,-7],[-8,-7],[-12,0],[-5,-2],[-17,4],[0,5],[8,0],[20,7]],[[3433,7768],[2,-3],[-15,0],[13,3]],[[3790,7839],[-9,-8],[2,8],[7,0]],[[3388,7833],[5,-2],[-16,-4],[11,6]],[[4077,7887],[8,-4],[-2,-4],[-9,1],[3,7]],[[4091,7890],[0,-7],[-6,3],[6,4]],[[4182,7898],[6,-3],[-9,-3],[-7,4],[10,2]],[[3710,7898],[5,-4],[-11,1],[6,3]],[[4145,7908],[6,-5],[-12,-7],[-8,0],[2,12],[12,0]],[[4128,7910],[1,-6],[-10,3],[9,3]],[[4068,7041],[-5,2],[-3,8],[-17,8],[-33,26],[-101,20],[-38,12],[-31,13],[-19,34],[11,10],[19,0],[17,46],[-90,-2],[-35,10],[-8,0],[-14,2],[-32,-6],[-20,-2],[-14,2],[-17,6],[-25,4],[-6,6],[5,4],[-44,13],[-12,7],[-3,5],[26,8],[57,42],[3,28],[-21,2],[-22,0],[-7,-2],[-3,6],[-11,6],[6,4],[-1,4],[10,4],[2,5],[-30,16],[-86,16],[-32,18],[-3,12],[9,-2],[14,4],[9,12],[-16,0],[-13,6],[-24,4],[-26,10],[-17,-4],[-3,4],[13,-2],[2,4],[-25,10],[-4,-2],[-7,8],[-16,1],[-3,4],[-25,0],[-29,7],[-12,5],[-15,0]],[[3253,7507],[-3,4],[-13,0],[-8,3],[-9,9],[36,0],[-5,4],[12,0],[-3,4],[14,0],[1,8],[-24,-8],[-16,2],[-6,2],[-12,0],[-7,4],[3,6],[7,0],[12,4],[-25,-4],[-1,6],[-8,0],[16,4],[-13,8],[-15,-2],[-3,8],[-8,0],[4,10],[-18,2],[-3,14],[-9,2],[-9,8],[-16,5],[-7,0],[7,12],[-1,3],[20,13],[9,-12],[28,0],[-5,-9],[23,-2],[7,-14],[18,6],[2,3],[13,4],[6,5],[10,-1],[9,7],[12,-1],[3,4],[8,-2],[7,3],[18,-7],[20,4],[6,-7],[0,-6],[14,-4],[-12,8],[1,9],[9,8],[8,-8],[16,8],[9,-4],[5,-8],[3,8],[-13,4],[0,3],[13,5],[12,0],[2,-4],[20,-8],[8,-4],[21,-5],[1,5],[19,-4],[12,10],[14,-3],[3,-14],[10,-1],[13,-9],[22,-2],[14,-10],[6,4],[-14,6],[3,3],[-31,12],[-12,3],[-3,5],[18,3],[24,-1],[28,2],[-1,2],[-21,2],[-24,-4],[-21,3],[-16,5],[-21,-1],[6,-5],[-7,-2],[-10,4],[-11,-2],[-7,2],[-21,4],[-19,11],[-20,3],[3,6],[-7,3],[6,4],[-18,0],[5,3],[-9,8],[7,2],[-10,2],[3,6],[12,2],[-5,6],[-19,-2],[7,-2],[-10,-2],[-10,2],[1,8],[10,4],[-14,2],[6,4],[-17,8],[3,4],[18,-4],[7,4],[-13,6],[-6,0],[6,6],[10,6],[15,14],[-6,1],[-2,8],[2,10],[15,1],[13,-13],[8,1],[21,-4],[-5,-5],[14,2],[5,-4],[17,-4],[10,2],[10,-5],[-9,-6],[7,0],[4,4],[10,0],[-20,9],[11,6],[-28,4],[6,6],[-15,-2],[9,6],[18,2],[-4,4],[-17,-2],[-3,-4],[-25,-1],[-18,4],[0,3],[14,2],[19,0],[-12,6],[-22,0],[4,10],[11,4],[7,-4],[9,4],[-16,0],[10,6],[13,2],[2,4],[16,-4],[6,2],[16,-2],[21,-10],[18,-14],[4,4],[-11,8],[5,4],[-20,4],[-5,6],[-15,4],[-13,-2],[-26,4],[11,4],[9,-2],[-3,4],[-9,0],[-20,6],[1,8],[-15,0],[-3,4],[-7,-4],[1,4],[-7,0],[1,6],[-7,4],[10,10],[-1,7],[13,14],[11,2],[1,6],[21,-2],[13,4],[16,11],[-1,4],[10,5],[0,8],[15,6],[-7,2],[4,4],[-4,2],[10,4],[0,8],[-6,0],[3,8],[-1,8],[8,8],[11,0],[19,-10],[16,0],[2,-4],[10,0],[12,6],[21,-4],[24,0],[7,2],[12,-6],[10,-2],[10,-6],[3,2],[18,-4],[-4,-2],[12,-6],[-6,-16],[6,0],[-5,-8],[12,-8],[16,-5],[-3,-7],[-17,-5],[-17,-11],[19,4],[1,-6],[11,5],[14,12],[6,12],[-14,1],[-13,10],[15,12],[22,0],[1,4],[-11,12],[-8,0],[-4,6],[10,-2],[10,6],[5,-8],[1,-8],[6,0],[3,-6],[13,-2],[-4,-4],[10,-8],[9,4],[18,-5],[-4,-4],[4,-3],[19,-1],[6,-5],[21,2],[-3,-5],[7,-3],[2,-9],[-10,-8],[-8,1],[-23,-21],[-17,-6],[-16,-20],[-24,-14],[0,-8],[-7,-2],[24,-2],[13,16],[7,0],[15,4],[5,8],[8,0],[12,6],[12,0],[0,14],[3,8],[18,13],[21,2],[2,-11],[1,8],[11,5],[2,6],[7,1],[-3,12],[-7,8],[9,7],[-5,6],[11,4],[-3,2],[14,2],[6,-4],[6,4],[9,-2],[11,4],[20,-4],[20,0],[9,-8],[17,-4],[5,1],[13,-4],[4,-5],[-3,-6],[18,8],[8,-9],[2,-12],[-5,-3],[8,-5],[12,0],[0,-3],[-22,-12],[-16,-11],[-6,-2],[4,-8],[-8,-6],[-6,-10],[0,-10],[-11,-4],[3,-8],[17,10],[0,4],[11,4],[5,8],[17,8],[-6,10],[9,0],[22,15],[7,-1],[15,9],[7,11],[22,11],[25,-2],[18,4],[8,-4],[8,2],[19,-8],[2,-3],[-11,-3],[7,-4],[2,4],[23,0],[-1,-4],[11,-2],[-1,-6],[7,0],[11,-8],[-30,27],[4,1],[23,-4],[4,3],[-8,4],[7,1],[-1,10],[11,2],[7,-6],[17,-2],[18,4],[1,8],[11,8],[12,-4],[5,6],[10,0],[4,-6],[6,4],[10,-4],[0,-4],[11,2],[2,-6],[10,0],[0,11],[10,0],[12,7],[-1,10],[5,-2],[0,8],[17,0],[7,10],[8,-12],[5,-21],[19,5],[18,-2],[11,6],[12,-8],[3,6],[16,-4],[4,-8],[12,0],[-2,4],[16,4],[6,-2],[25,-4],[4,4],[10,-1],[3,3],[20,0],[22,4],[9,-8],[14,2],[2,8],[21,4],[34,18],[20,4],[9,4],[13,0],[2,8],[15,4],[13,-6],[51,2],[26,4],[2,2],[21,0],[-2,-6],[-14,-8],[9,-6],[28,-6],[8,8],[15,4],[32,4],[8,-4],[13,2],[-1,-4],[21,-4],[19,0],[14,-6],[8,0],[16,6],[8,12],[-3,4],[-22,4],[-2,4],[-8,0],[-30,11],[6,16],[8,7],[20,5],[14,0],[9,-6],[10,-15],[10,0],[26,-3],[15,1],[10,6],[37,1],[3,-4],[14,1],[8,6],[8,-1],[22,2],[5,-7],[8,-1],[8,-9],[9,-2],[17,2],[6,4],[15,0],[13,4],[27,-4],[16,1],[3,3],[12,-4],[14,1],[1,-5],[-7,0],[-6,-6],[-3,-16],[5,-6],[-8,-10],[-9,0],[-19,-4],[12,-12],[-8,-14],[-12,-6],[-7,-10],[-30,-14],[-11,-10],[-2,-17],[8,-16],[20,-10],[28,2],[12,4],[14,-2],[-8,-16],[6,-6],[-12,-10],[-36,0],[29,-8],[-3,-6],[-8,-4],[-9,-9],[3,-7],[-12,-8],[2,-6],[-8,-6],[-1,-11],[-11,-2],[-5,-6],[-20,-6],[-4,-4],[-32,-16],[-12,-8],[-5,-8],[-17,-8],[-36,-8],[-4,2],[-26,-5],[-6,-3],[-22,-4],[-14,0],[3,-4],[-45,-8],[-20,-10],[-5,-6],[-9,-4],[-4,-5],[-10,0],[-11,-10],[-3,-6],[-7,-2],[-17,-12],[-11,-12],[-1,-4],[-8,-2],[-21,-18],[-12,-6],[-27,-7],[-23,-13],[-35,-11],[-33,-16],[-16,-3],[-13,-9],[-29,-12],[-13,-6],[-9,0],[-19,-12],[-13,-2],[-6,-4],[-18,2],[-20,-6],[-12,-12],[-16,-6],[-5,-8],[-2,-14],[-6,-6],[-21,-4],[-14,-6],[-7,-7],[-25,-4],[-18,-1],[-16,-6],[-18,-1],[-12,-6],[-8,-10],[-2,-8],[-9,-14],[-26,0],[9,4],[9,10],[-9,2],[-9,-4],[-16,-2],[-7,8],[-15,2],[-11,-4],[9,-12],[11,-2],[21,-4],[5,-4],[16,4],[9,0],[6,-4],[1,-8],[8,-14],[-12,-4],[-1,-4],[-7,-2],[2,-10],[-6,-2],[7,-14],[-3,-4],[-5,4],[-15,4],[-38,0],[-18,-4],[-12,-5],[-7,-8],[-4,5],[-9,2],[-21,-2],[14,8],[-3,7],[-16,-11],[-20,0],[-2,8],[-11,0],[-15,4],[-30,3],[-6,-4],[-31,-1],[-3,-8],[-15,1],[-14,11],[-15,2],[-12,4],[-12,8],[-7,10],[-9,6],[-16,4],[-4,-2],[-13,6],[-10,12],[-6,2],[-11,12],[-21,4],[-7,4],[-12,2],[-61,0],[-16,7],[-4,-1],[-21,8],[-9,0],[29,-8],[10,0],[4,-4],[30,-4],[17,2],[4,-2],[17,2],[12,-2],[10,-6],[15,-4],[13,-6],[1,-6],[11,-4],[5,-14],[17,-10],[3,2],[17,0],[10,-10],[-14,-8],[14,-8],[13,-2],[8,-6],[10,-1],[12,1],[2,-9],[8,-1],[11,4],[9,-6],[23,7],[37,1],[4,4],[13,-1],[3,-11],[8,4],[11,-9],[5,-10],[13,0],[9,-6],[23,2],[-21,14],[22,-10],[16,4],[-3,-4],[22,-4],[29,-14],[22,6],[20,10],[37,13],[6,0],[41,-11],[11,-2],[-12,-4],[-6,-6],[-14,0],[0,-4],[19,0],[10,6],[22,-2],[30,4],[15,8],[12,2],[-1,4],[14,13],[-1,4],[16,6],[25,2],[-7,-6],[1,-6],[-7,-9],[-15,-12],[-12,-8],[-22,-18],[-5,-2],[-11,-10],[-22,-16],[-18,-6],[-5,-6],[-17,-8],[0,-6],[-12,-10],[-2,-4],[-36,-27],[-9,-6],[-15,0],[-12,2],[-13,-2],[-14,2],[2,10],[10,15],[12,4],[3,4],[-1,10],[-26,-4],[-22,-6],[-14,2],[-34,-12],[-6,-6],[-17,-7],[-26,-14],[-13,-4],[-7,4],[-26,2],[-31,-4],[-16,-8],[-7,0],[-15,4],[-12,-2],[-10,-8],[3,-6],[-6,-8],[-10,-2],[-8,2],[-8,-4],[-33,-20],[-45,-20]],[[5314,8031],[8,-9],[7,-3],[-10,-12],[-18,0],[-10,-4],[9,8],[-1,6],[15,14]],[[3852,5278],[17,-2],[3,-4],[20,-8],[-7,-6],[10,-4],[20,6],[0,4],[25,12],[12,0],[3,-8],[22,2],[6,4],[9,0],[-3,-8],[-14,0],[-4,-2],[-32,-8],[-10,2],[-3,-10],[-8,-4],[11,-6],[-4,-4],[-10,2],[-15,-6],[4,-2],[-5,-6],[9,-4],[-13,-2],[0,-4],[14,0],[11,4],[-2,-8],[31,0],[-7,-6],[10,-8],[8,-5],[9,0],[-3,-5],[10,2],[9,-5],[7,1],[28,2],[7,-3],[10,3],[17,-4],[3,-6],[11,2],[3,-14],[-3,-4],[11,-13],[-2,-6],[3,-6],[-9,0],[-8,-4],[-1,-4]],[[3863,5107],[-1,8],[6,2],[1,6],[-6,18],[-22,6],[-8,13],[-15,1],[-12,5],[12,-2],[14,4],[1,18],[-12,18],[-23,16],[14,4],[-4,10],[-3,-6],[-12,4],[-13,14],[1,4],[16,2],[8,0]],[[3805,5252],[-2,8],[-5,4],[11,8],[2,-8],[13,0],[28,14]],[[4352,5506],[8,-2],[-2,4],[41,2],[11,-2],[-13,20],[22,7],[-1,-5],[11,-6],[-7,-6],[8,-2],[-8,-6],[8,0],[4,4],[19,0],[10,2]],[[4465,5424],[-11,-9],[-28,-11]],[[4426,5404],[-28,14],[-22,5],[-14,5]],[[4362,5428],[5,8],[24,2],[-11,8],[3,4],[13,2],[-5,2],[-5,20],[-7,-4],[-5,4],[-11,0],[-1,2],[-22,0],[2,-4],[-13,0],[-10,4],[-12,-4]],[[4307,5472],[2,12],[-10,0],[-6,6]],[[4293,5490],[-1,2],[-13,4],[-1,4],[22,2],[16,-2],[23,0],[2,-2],[13,2],[-2,6]],[[4352,5506],[-10,8],[0,6],[-15,0],[-15,7],[-18,-1],[-5,-4],[-12,0],[1,8],[-6,1],[-5,8],[-18,3],[-24,0],[1,5],[-23,0]],[[4203,5547],[-7,8],[6,3],[-2,17],[-7,2],[-15,16],[1,8],[7,2],[15,2],[2,-6],[15,-4],[16,-2],[17,4],[16,-4],[8,-6],[23,8],[5,10],[6,2],[6,-6],[-1,-10],[6,-6],[14,0],[13,2],[3,4],[8,0],[12,6],[2,6],[21,0],[20,4],[22,-2],[11,-2]],[[4446,5603],[-1,-4],[-9,-12],[8,0],[3,-4],[29,2],[9,-6],[-3,-4],[5,-4],[-12,-4],[4,-4],[26,4],[15,-6],[-7,-8],[10,-4],[2,-4],[11,2],[14,-5],[8,3],[17,-2],[17,2],[7,-3]],[[4599,5542],[-8,-5],[-19,-4],[-14,-11],[5,-2]],[[4357,4946],[12,4],[11,-2],[7,-6],[29,-14],[-13,-6],[0,-8],[99,-43],[78,-18],[56,-2],[16,-2],[21,-6],[17,8],[2,4],[10,-6],[5,-10],[11,-6],[1,-4],[8,0],[50,20],[34,30],[39,30],[15,18],[7,-1],[6,-14],[-10,-63],[14,-16],[-2,-4],[-13,2],[-11,0],[4,-4],[1,-11],[-6,-15],[6,-5],[-3,-4],[3,-8],[10,-14],[10,-4],[7,-8],[12,-6],[6,-6],[-37,-6],[-12,-6],[6,-2],[19,0],[2,-4],[-13,-8],[-19,6],[-12,2]],[[4840,4728],[5,-6],[-8,-4],[5,-6],[1,-12],[14,-8],[11,-10],[-9,-14],[10,-11],[3,-8],[-7,-2],[1,-8],[5,-4],[-10,-18],[-1,-12],[16,-6],[2,-8],[7,-6],[-8,-6],[-4,-8],[-15,-4],[-7,-14],[-19,4],[-28,2],[-40,0],[-6,7],[-21,-7],[-10,2],[-2,-6],[-33,-17],[-25,-2],[2,5],[-7,6],[-13,3],[-9,13],[3,8],[-10,-2],[3,-11],[-7,-3],[6,-6],[-3,-6],[16,-7],[2,-8],[-14,2],[-14,12],[0,5],[-11,0],[-3,-4],[6,-9],[9,-6],[-17,6],[-10,-4],[3,-4],[19,-8],[5,-6],[8,0],[3,-4],[-18,-8],[-14,2],[-7,-2],[-5,-8],[-33,-8],[-6,-4],[-29,-4],[-18,-12],[-19,-6],[-15,2],[-11,4],[-5,-4],[-18,2],[-14,-2],[-19,10],[0,10],[7,4],[11,16],[-2,6],[-7,4],[-5,-6],[-12,-4],[4,8],[9,4],[-2,10],[12,0],[7,8],[-7,6],[6,4],[-7,3],[-1,-11],[6,-2],[-6,-8],[-7,4],[-30,-26],[1,-10],[-4,-16],[3,-4],[-12,0],[0,-4],[12,-2],[-7,-6],[-12,0],[-2,8],[-13,2],[6,6],[-6,2],[-8,-10],[-5,0],[-18,2],[-6,8],[-7,0],[-13,10],[0,8],[-24,6],[2,6],[-12,4],[7,10],[-11,2],[5,4],[-4,6],[8,4],[2,5],[10,8],[-23,-2],[-3,-9],[-10,-2],[-5,-6],[-9,-2],[-3,-6],[-9,-2],[-14,6],[-12,2],[-6,-2],[-10,4],[-9,2],[-30,9],[-14,6],[-10,12],[-7,-1],[2,9],[-8,8],[-11,6],[5,12],[-6,2],[-17,2],[-2,6],[7,4],[-21,2],[-9,-2],[2,6],[-9,0],[-2,-4],[6,-2],[20,2],[6,-12],[22,-6],[-8,-10],[0,-4],[11,-4],[-5,-3],[-20,-5],[-4,-4],[4,-8],[-9,-7],[9,0],[3,-22],[5,-12],[19,-6],[17,0],[7,-4],[14,-2],[10,-8],[1,-12],[-10,-2],[-10,6],[-5,-2],[1,-6],[6,-2],[1,-8],[-10,-2],[15,-8],[-2,-12],[-9,-9],[4,-5],[-1,-17],[12,0],[0,-12],[-10,-6],[-4,-8],[-26,-12],[-15,2],[-46,16],[-24,2],[-14,4],[-24,10],[-3,4],[-13,6],[-4,-1],[-3,9],[-16,4],[-11,0],[-4,12],[-8,5],[0,8],[-15,10],[-24,6],[-20,8],[-20,6],[-12,4],[-19,12],[-9,8],[-32,2],[-8,2],[-15,-2],[-19,8],[-6,10],[-10,4],[-5,9],[-25,3],[-12,5],[-13,-1],[9,-5],[-3,-5],[-43,-12],[-21,-8],[-11,-2],[-27,-24],[-1,-4],[14,-10],[3,-12],[5,-2],[-2,-10],[8,-4],[5,-10],[9,-6],[-3,-4],[6,-4],[6,-19],[2,-12],[12,-8],[7,0],[4,-6],[15,-4],[-15,-10],[2,-2],[-3,-14],[4,-4],[2,-8],[23,-2],[-3,-2],[-22,0],[-3,4],[-16,0],[-12,4],[-6,-2],[-17,8],[-17,8],[-11,4],[-3,8],[4,4],[-10,6],[1,6],[10,6],[12,2],[-7,6],[-9,10],[10,8],[-1,4],[-15,4],[-15,-1],[-4,2],[6,12],[-2,4],[-15,2],[3,16],[-11,6],[1,4],[-9,-2],[-9,8],[-10,2],[1,6],[-14,10],[-11,2],[-11,4],[-14,12],[-12,0],[-22,14],[-3,6],[-9,0],[-6,4],[-1,17],[-11,10],[-5,8],[-20,16],[-3,8],[3,6],[-3,16],[0,8],[8,10],[1,8],[-7,0],[6,12],[7,4],[-1,4],[14,12],[20,-1],[15,4],[8,6],[15,0],[8,-6],[1,-10],[8,-2],[8,-9],[0,-6],[9,-12],[-12,-6],[6,-8],[-3,-4],[2,-12],[12,-14],[26,-14],[12,0],[22,8],[3,8],[-4,12],[-10,6],[0,10],[-12,14],[-12,4],[1,6],[-6,4],[-3,13]],[[5374,4663],[-24,-12],[-12,-2],[-28,-2],[-12,-6],[-13,-4],[-11,0],[-9,4],[-21,4],[-22,2],[-28,-6],[-7,4],[-15,-4],[-14,8],[13,-10],[-4,-2],[-29,6],[-28,6],[-11,-4],[-19,0],[-11,-2],[-36,2],[-14,8],[-10,10],[-16,0],[13,-4],[-14,-12],[-24,-8],[-35,-2],[-20,2],[-26,10],[-3,8],[-10,11],[0,10],[-12,12],[-17,10],[-2,12],[-5,6],[8,4],[-6,6]],[[4449,5075],[11,8],[9,0],[9,8],[-13,0],[-8,6],[-7,2],[4,10],[-14,8],[19,14],[12,4],[6,12],[13,4],[15,10],[0,15],[-12,0],[-5,6],[-7,-1],[-13,1],[-10,4],[0,6]],[[4458,5192],[10,-3],[19,5],[7,8],[14,2],[27,8],[15,12],[13,6],[9,-2],[41,-8],[8,10],[-14,10],[15,0],[0,-2],[15,0],[20,6],[22,4],[7,-6],[13,4],[1,2]],[[4700,5248],[14,10],[1,6],[9,-2],[7,4],[11,0],[8,4],[-7,11],[14,4],[5,-4],[10,6],[8,-4],[11,5],[17,0],[9,4],[5,-7],[10,6],[8,0],[7,6],[18,4],[12,8],[9,10],[-6,8],[-1,8],[5,12],[-4,2],[2,8],[16,10],[15,4],[4,10]],[[4917,5381],[48,-10],[38,12],[-5,8],[9,10],[9,6],[10,-1],[5,4],[15,5]],[[5046,5415],[4,-1],[21,5]],[[5071,5419],[8,-9],[5,-2],[10,-11],[-2,-6],[10,-2],[3,2],[12,0],[13,4],[8,-6],[5,4],[4,-2],[-3,-12],[18,-4],[16,2],[7,2],[14,-2],[10,8],[11,-2],[2,4],[16,12],[10,0],[-4,-6],[3,-6],[9,-4],[-4,-4],[12,-2],[-6,-6],[17,-10],[-6,-6],[4,-8],[14,-4],[-7,-12],[6,-6],[8,-2],[2,-6],[8,-2],[6,4],[19,4],[8,2]],[[5730,6039],[-15,-5],[-11,-3],[-6,-4],[-6,-15],[-12,-12],[-15,2],[-43,14],[-25,-2],[-15,-4],[-11,-6],[-9,0],[-12,-6],[-15,6],[-22,0],[-9,-2],[-25,-2],[-18,-4]],[[5461,5996],[-8,4],[13,6],[0,10],[-17,2],[3,5],[-10,14],[-4,9],[1,7],[19,4],[5,2],[0,16],[-10,-2],[-10,12]],[[5461,5996],[-25,-8],[-50,0],[-10,8]],[[5376,5996],[-11,6],[-7,-4],[-17,0],[-1,6],[-29,0],[-4,6],[4,2],[-23,2],[0,9],[-20,2],[-28,14],[7,0],[-8,7],[-12,4],[-5,5],[11,2],[16,-2],[10,2],[0,4],[9,6]],[[4991,5712],[7,-6],[2,-10],[6,0],[-3,-10],[4,0],[8,-10],[17,2],[19,0],[25,4],[15,-14],[7,-2],[15,-8],[1,-2],[-16,-5],[9,-10],[-27,0],[-1,-4],[-12,-4],[-2,-4],[6,-6],[-11,0],[0,-10],[9,-2],[-5,-6]],[[5064,5605],[-7,-4],[-10,2],[-8,-4],[13,0],[-2,-16],[-11,4],[-7,6],[-29,6],[-15,-2],[-7,4],[3,4],[-20,2],[-2,2],[-22,2],[-8,4],[-29,0],[-11,4],[-3,4],[-16,10],[-9,-2],[-7,-10],[-15,0],[-10,8],[-33,-2],[-10,-6],[-11,0],[-27,6],[-35,22]],[[4716,5649],[4,8],[13,1],[6,16],[39,-4],[0,6],[17,2],[21,0],[5,2],[-27,6],[-6,4],[13,6],[21,2],[10,4],[6,-2],[23,4],[9,2],[-5,4],[1,6],[13,8],[12,-2],[10,0],[6,-10],[14,0],[32,2],[10,-2],[13,2],[15,-2]],[[4293,5490],[-19,-4],[-36,-2],[-1,8],[-9,-2],[-2,6],[-14,8]],[[4212,5504],[-5,2],[1,6],[-6,2],[-10,-2],[-13,2],[-3,-12],[10,-4],[-10,-2],[1,-4],[-15,2],[-9,-6]],[[4153,5488],[-10,4],[-13,2],[1,8],[-9,4],[-21,0]],[[4101,5506],[-10,12],[3,17],[-11,3],[-4,15]],[[4079,5553],[9,6],[17,2],[9,0],[2,-4],[12,-4],[12,-10],[7,-2],[11,2],[14,-4],[18,2],[-7,4],[5,4],[15,-2]],[[4224,5383],[9,2],[14,-6],[-3,4],[6,6],[19,8]],[[4269,5397],[10,0],[14,4],[22,-2],[8,2],[18,-4],[-3,-8],[13,-4],[-6,-2],[6,-6],[-10,-6],[-9,-14],[-6,-4],[8,-2],[-1,-4],[17,4],[16,-4]],[[4366,5347],[10,-4],[-4,-6],[13,-8],[6,2],[12,-6],[-1,-10],[7,0],[17,8],[25,-4],[13,-7],[15,-5],[2,-4],[8,4],[13,-2],[2,-8],[12,-8],[8,4],[4,6],[11,-6],[-9,-5],[10,-1],[6,-11],[10,-6],[12,8],[26,-2],[21,0],[7,-6],[11,0],[21,4],[8,-10],[10,6],[9,-6],[-1,-8],[17,-2],[3,-6]],[[4458,5192],[-25,8],[-6,8],[-9,-8],[-16,-4],[0,-4],[-16,-6],[-10,2],[-16,-4],[-16,0],[-24,6],[-16,-6],[-12,0],[-19,-8],[-20,-6],[-7,2],[1,6],[-15,3],[14,5],[5,4],[10,4],[10,6],[0,8],[7,8],[19,2],[-13,6],[-16,4],[2,12],[-18,6],[5,8],[-5,10],[-24,19],[0,4]],[[4228,5287],[24,10],[-4,8],[7,14],[-4,4],[-1,10],[-16,4],[-14,8],[-10,10],[-6,-2],[-2,6],[-6,2],[-2,8],[12,4],[13,-2],[7,4],[-2,8]],[[5573,5414],[-4,6],[-8,4],[3,4],[-13,4],[-12,8],[-17,2],[-6,10],[-8,-4],[-5,6],[-9,-2],[-8,2],[1,8],[-11,8],[-2,10],[-12,4],[6,4],[-11,2],[1,8],[-22,2],[-18,-6],[-4,-6],[-22,8],[-19,2],[-7,4],[-13,2],[-13,12]],[[5340,5516],[9,2],[-4,4],[6,9]],[[5351,5531],[11,-2],[16,4],[6,4],[21,-2],[11,0],[28,8],[9,8],[13,3],[20,0],[21,1],[16,8],[-1,4],[10,4],[4,10],[-5,6],[15,4],[15,-2],[9,2],[-9,4],[-8,8],[1,10],[13,0],[14,2],[6,10],[6,0],[12,12],[6,-2],[19,4],[28,-6],[16,2],[15,-2],[8,0],[13,-2],[13,4],[25,-4],[10,2],[4,-6],[26,-4],[3,-6],[20,-16],[11,-2],[-3,-12],[-5,-4],[-8,0],[5,-6],[20,2],[7,6],[-3,4],[28,-12],[1,6],[11,2],[17,-2],[6,-6],[15,-2],[18,0],[6,-8],[21,0],[4,-6],[17,-6],[4,-4],[17,2],[6,-14],[18,-8],[10,-1]],[[4151,5404],[21,3],[8,-1],[4,4],[20,-6],[11,3],[-5,-10],[5,-2],[-7,-6],[4,-6],[12,0]],[[4228,5287],[-9,-3],[-11,9],[-14,-6],[-13,5],[-28,4],[-8,9],[-19,-1],[-10,9],[-10,2],[0,6],[-10,6],[-16,-8],[-18,12],[-20,6],[-17,2],[-11,-4],[-2,4],[14,8],[-4,4],[-16,-2],[-12,4],[-1,8],[-16,2],[-9,-6],[-12,-10]],[[3956,5347],[-10,6],[-1,12],[-9,2]],[[3936,5367],[9,10],[18,-4],[8,10],[19,6],[-7,2],[7,6],[9,-2],[12,0],[6,6],[6,-2],[14,0],[11,5],[12,0],[20,3],[19,11]],[[4099,5418],[13,-6],[-8,-4],[8,-9],[-10,-2],[6,-6],[27,2],[10,-2],[10,6],[-4,7]],[[5290,5554],[15,-11],[33,-12],[13,0]],[[5340,5516],[-22,-2],[-6,-14]],[[5312,5500],[-7,0],[-34,14],[-12,8],[-4,-2],[-5,4],[-23,-2]],[[5227,5522],[3,2],[-3,10]],[[5227,5534],[33,5],[2,11],[28,4]],[[5183,5563],[18,0],[4,4],[10,-6],[21,0],[2,4],[12,6],[24,-8],[6,-6],[10,-3]],[[5227,5534],[-8,-3]],[[5219,5531],[-6,3],[-12,-1],[-11,6],[-11,-4],[-1,8],[13,0],[4,7],[-8,-1],[-7,10],[3,4]],[[5222,5476],[-1,14],[-5,0],[-6,22],[8,2],[-8,4],[11,6],[6,-2]],[[5312,5500],[3,0],[22,-12],[-20,-2],[-33,-8],[-42,2],[-10,2],[1,-4],[-11,-2]],[[5046,5415],[4,5],[-5,6],[-8,2],[-4,7],[-11,3],[7,10],[-5,2],[12,10],[-8,8],[12,2],[-2,4],[16,10]],[[5054,5484],[5,-2],[41,8],[-6,2],[12,4],[-11,4],[8,6],[30,8],[-2,6],[8,0],[23,-2],[6,-6],[17,10],[34,9]],[[5222,5476],[0,-4],[-26,0],[-1,-4],[-9,-2],[-4,-6],[-15,6],[-14,-10],[-11,0],[-58,-36],[-13,-1]],[[5054,5484],[-3,6],[-30,0],[-22,4],[7,6],[9,10],[-3,6],[12,2],[-14,4],[-10,5],[-6,7],[14,0],[9,3],[-1,5],[-16,1],[0,3]],[[5000,5546],[-5,13],[18,2],[-2,6],[6,6]],[[5017,5573],[21,0],[9,-4],[12,0],[15,8],[13,2],[18,-8],[1,-2],[14,-6],[9,0],[7,-4],[33,2],[14,2]],[[968,6297],[20,-1],[8,-4],[-8,0],[-4,-4],[-13,-1],[-9,5],[-12,1],[4,3],[14,1]],[[984,6333],[4,-14],[-8,-4],[8,-4],[-20,-8],[-12,0],[0,4],[-11,-2],[9,12],[-3,10],[8,-2],[18,4],[7,4]],[[1051,6357],[6,-8],[-9,6],[3,2]],[[1028,6361],[17,-2],[-12,-10],[-9,2],[-8,-2],[-3,10],[15,2]],[[1031,6375],[4,-4],[-10,2],[6,2]],[[1079,6399],[15,0],[11,-4],[-6,-12],[-17,0],[-9,4],[-6,8],[12,4]],[[1155,6408],[-5,8],[15,0],[1,-4],[-11,-4]],[[1247,6488],[5,-6],[-11,0],[6,6]],[[1221,6488],[12,0],[5,-8],[-5,0],[-12,4],[0,4]],[[1252,6504],[12,-8],[0,-2],[-12,4],[-16,0],[0,4],[16,2]],[[1273,6512],[1,-12],[-19,6],[18,6]],[[1187,6517],[3,-3],[-15,0],[12,3]],[[1190,6496],[3,0],[8,-6],[-8,2],[-14,-2],[23,-4],[0,-2],[18,-4],[1,-10],[-17,0],[-11,8],[0,-12],[-12,0],[-3,-6],[-13,-4],[-7,-6],[12,-4],[-7,-6],[-7,4],[-9,-6],[-3,2],[-13,-2],[-12,2],[3,4],[-9,4],[-12,-4],[0,-4],[-28,0],[0,-10],[18,0],[13,-2],[9,0],[3,-4],[-20,0],[-9,4],[-17,-6],[3,-6],[28,0],[0,-4],[-14,-4],[-14,2],[-1,-4],[-21,2],[-6,10],[16,-2],[0,8],[-22,0],[-3,8],[8,4],[-8,6],[14,-2],[5,-2],[18,2],[-22,4],[-7,4],[7,4],[-3,4],[14,8],[19,-2],[4,2],[5,8],[-9,0],[15,10],[-5,4],[5,8],[-15,4],[4,4],[17,-2],[17,0],[6,4],[19,4],[11,18],[-8,3],[2,13],[10,-1],[-3,-6],[11,-4],[9,0],[5,-2],[-6,-11],[-22,-6],[3,-6],[28,-8],[6,-2]],[[1210,6543],[11,-1],[6,-7],[-7,-1],[-7,-7],[-10,0],[-5,3],[9,8],[-5,3],[8,2]],[[1159,6551],[8,-4],[-15,-2],[7,6]],[[1280,6573],[6,-4],[20,0],[9,2],[11,0],[-5,-6],[2,-8],[-8,-2],[3,-6],[-21,0],[15,-2],[-3,-9],[-8,-3],[-15,8],[0,8],[6,4],[-9,6],[1,8],[-4,4]],[[1278,6623],[14,-2],[5,-4],[-17,0],[-10,4],[8,2]],[[1344,6666],[8,-2],[-3,-6],[-8,2],[3,6]],[[1332,6847],[12,-2],[-6,-2],[-6,4]],[[1344,6851],[8,0],[2,-6],[-10,6]],[[1402,6861],[-8,-8],[9,-4],[-12,-6],[-14,2],[-5,-6],[-12,4],[14,6],[-5,4],[11,6],[14,0],[8,2]],[[1273,6581],[-32,0],[-17,2],[-6,6],[-11,2],[2,6],[-8,8],[-5,2],[0,10],[-9,6],[6,12],[-12,17],[-5,10],[2,6],[0,16],[-8,4],[0,12],[-7,4],[-19,2],[3,4],[14,-2],[9,4],[5,6],[3,20],[3,12],[15,6],[7,5],[-3,10],[4,20],[-8,24],[-7,10],[-19,14],[5,4],[12,-4],[15,12],[16,-2],[-2,-4],[17,6],[11,0],[17,2],[9,-2],[-1,-8],[8,2],[-1,-6],[31,0],[17,-6],[5,-6],[-15,0],[-5,-2],[23,-8],[-4,0],[10,-6],[14,-2],[3,-4],[-11,-2],[-15,4],[-5,-6],[14,-2],[6,2],[8,-2],[11,2],[-3,2],[12,2],[-4,-8],[-8,-4],[-9,0],[-20,-6],[-16,4],[6,-8],[17,2],[17,-6],[3,4],[11,-2],[3,-20],[15,6],[8,-2],[0,-7],[-6,-14],[-15,-2],[-8,2],[-6,-8],[-19,-10],[9,-12],[-12,-4],[-3,-14],[-7,-4],[-15,0],[-7,-2],[-15,4],[4,6],[14,-6],[-17,12],[-5,-6],[-6,2],[-6,-4],[-14,0],[-6,4],[-14,4],[-1,-6],[9,-8],[12,-2],[16,6],[10,0],[7,-12],[10,-2],[19,2],[1,-6],[11,-4],[-6,-10],[15,-10],[3,-17],[-9,-6],[0,-4],[-10,-2],[-18,0],[-19,8],[-5,4],[-8,-1],[11,-5],[8,-8],[-11,0],[-11,2],[3,4],[-11,2],[7,-6],[-11,0],[-2,4],[-15,-2],[12,-6],[-1,-8],[32,0],[17,4],[23,0],[20,-10],[-6,-2],[9,-2],[3,-8],[3,8],[8,-8],[15,0],[-4,-6],[-12,2],[4,-8],[-6,-2],[2,-6],[-10,0],[-7,4],[-11,-2],[-14,8],[-17,2],[-14,-2],[-9,-4],[-10,0]],[[1386,6865],[8,-2],[-14,-2],[6,4]],[[1372,6865],[8,-4],[-14,-2],[6,6]],[[1321,6926],[14,-2],[2,-6],[-11,-2],[-5,10]],[[1252,6928],[8,2],[1,-6],[25,0],[3,4],[12,2],[2,-4],[14,-2],[4,-6],[-8,0],[7,-6],[14,0],[4,-1],[2,11],[35,-10],[14,-8],[-9,-2],[-23,6],[0,-8],[12,-1],[6,-5],[-17,-2],[-15,4],[1,-8],[-18,8],[6,-8],[-6,-1],[20,-8],[11,4],[-10,1],[30,0],[11,-7],[-7,-4],[8,-4],[-21,-4],[-13,0],[3,-4],[-15,0],[12,-2],[-1,-6],[-30,8],[-12,0],[-15,6],[-11,0],[40,-10],[5,-6],[-13,2],[-12,6],[-20,-4],[9,-4],[-15,2],[-23,12],[1,4],[-14,2],[-6,-2],[-26,4],[-5,-2],[0,13],[-4,8],[-13,6],[6,4],[2,6],[-8,0],[0,8],[14,4],[14,-2],[9,6],[3,10],[14,4],[8,-2],[0,-8]],[[1432,6946],[11,-4],[-8,-4],[-9,4],[6,4]],[[1398,6942],[24,2],[-1,-4],[10,-2],[-14,-8],[11,0],[0,-6],[-7,2],[2,-8],[-9,-4],[-11,2],[0,12],[-17,4],[5,8],[23,-6],[-8,6],[-8,2]],[[1343,6942],[-5,4],[8,2],[14,-2],[-14,-2],[9,-4],[0,4],[23,-4],[-6,-4],[17,-8],[-2,-8],[-13,0],[-11,4],[0,4],[-9,0],[-3,-6],[-13,6],[-4,6],[-16,4],[5,4],[20,0]],[[970,6966],[7,-2],[-3,-4],[-4,6]],[[1002,6972],[6,-2],[-3,-6],[-8,-2],[-3,-10],[-9,2],[-1,6],[4,8],[8,0],[6,4]],[[965,6974],[-3,-6],[8,-2],[-25,-2],[-8,-4],[-6,6],[12,-2],[10,4],[3,4],[9,2]],[[1183,6996],[13,-6],[-17,-2],[-13,8],[-3,6],[4,5],[16,-11]],[[1468,7045],[-8,-4],[2,8],[6,-4]],[[1423,7061],[8,-2],[0,-4],[-7,0],[-1,6]],[[1534,7091],[6,-4],[2,-8],[-14,4],[6,8]],[[1520,7089],[-7,-4],[-2,6],[9,-2]],[[1459,7091],[1,-4],[-8,-8],[-7,4],[7,6],[7,2]],[[1494,7093],[6,-4],[-6,-2],[-9,4],[9,2]],[[1311,7091],[4,-6],[-18,4],[7,6],[7,-4]],[[1203,7097],[13,-2],[2,-4],[-14,-4],[-9,2],[-11,-4],[-17,0],[-5,4],[17,0],[4,2],[16,2],[4,4]],[[1343,7115],[6,-2],[-8,-4],[-6,2],[8,4]],[[1551,7130],[9,-5],[-12,0],[3,5]],[[1307,7142],[13,-4],[-7,-5],[5,-8],[-17,3],[-6,9],[6,5],[6,0]],[[1267,7111],[9,2],[2,6],[9,-4],[-12,-6],[1,-8],[-12,-8],[0,-8],[16,2],[6,-6],[6,2],[12,-2],[-1,-10],[8,0],[-1,6],[8,6],[6,-6],[10,0],[-3,8],[-14,6],[14,2],[24,8],[0,6],[22,8],[6,-6],[9,12],[17,7],[-11,6],[-9,-4],[8,-2],[-9,-1],[-23,2],[15,9],[12,18],[19,2],[18,2],[16,-6],[-8,-8],[-3,-6],[-6,4],[-10,-3],[6,-7],[-10,0],[-2,-6],[-12,-5],[-3,-8],[17,-2],[1,-6],[19,-4],[-3,-8],[-6,-4],[-7,6],[1,-8],[5,-4],[-21,0],[-19,4],[3,-4],[10,2],[8,-4],[-2,-6],[16,-2],[6,8],[9,0],[3,-4],[12,-2],[5,-8],[17,8],[17,0],[-19,10],[11,2],[15,-14],[16,0],[12,-4],[-6,-6],[-18,-12],[-6,-10],[-7,-2],[-17,8],[-3,6],[-9,2],[20,4],[-9,4],[-8,-6],[-20,0],[-12,6],[-2,8],[-20,2],[-12,-2],[9,-2],[-26,0],[-3,-2],[7,-4],[11,0],[11,-4],[-15,-8],[12,-2],[0,-2],[20,0],[17,-4],[-9,-2],[-4,2],[-15,-2],[15,-2],[11,0],[-7,-4],[6,-7],[-8,3],[-14,-2],[14,-4],[3,-4],[17,0],[6,4],[20,-1],[0,4],[14,-3],[-1,-5],[-8,-3],[0,-9],[-8,-8],[-17,-6],[-21,-2],[-10,6],[-12,0],[-3,-4],[-22,2],[2,-4],[-14,0],[-9,-2],[-25,0],[-12,6],[21,-2],[-3,10],[-7,4],[0,-8],[-11,2],[-3,-4],[-16,0],[13,-2],[3,-6],[-8,4],[-26,-2],[8,-4],[17,-6],[-2,6],[35,0],[55,0],[9,0],[6,-4],[11,0],[-3,6],[27,0],[5,-6],[-6,-4],[7,-6],[-18,-16],[2,-8],[-30,-2],[-15,6],[-16,0],[-7,4],[-5,-4],[19,-2],[6,-2],[-23,-2],[-8,6],[0,-6],[-15,-2],[-17,4],[1,10],[-11,-4],[10,-8],[-27,8],[-3,-4],[-10,6],[1,-10],[-22,4],[0,6],[8,2],[-8,8],[2,4],[-11,0],[-6,6],[-9,0],[7,-10],[-12,-4],[8,-12],[-8,-6],[0,-8],[-11,4],[-4,14],[-30,24],[13,-6],[7,2],[0,6],[11,-4],[25,0],[-11,8],[17,2],[-17,2],[-25,8],[-9,0],[-15,7],[-6,8],[-27,8],[0,-4],[13,-5],[-14,-7],[-12,-1],[-8,-4],[-19,3],[-1,6],[-8,7],[8,1],[3,6],[-11,4],[2,-10],[-8,-1],[-19,8],[-3,-3],[-9,10],[-14,0],[-1,6],[10,4],[7,-8],[10,2],[6,14],[-12,4],[19,2],[9,6],[-6,6],[4,0],[11,10],[-6,8],[18,4],[16,-4],[3,2],[43,-16],[-3,-6],[14,2],[15,-4],[8,4],[-1,4],[6,6],[-5,8],[20,4],[17,8],[-3,6],[9,6]],[[1499,7170],[6,-6],[21,-8],[-6,-2],[-9,4],[-6,-2],[-12,6],[-2,4],[8,4]],[[1505,7192],[3,-8],[9,-6],[-3,-6],[-21,10],[-4,4],[13,2],[3,4]],[[1365,7202],[13,0],[13,-12],[-8,-6],[-12,-4],[-19,-2],[-11,4],[-12,8],[6,6],[19,6],[11,0]],[[1752,7228],[10,-6],[-9,-2],[-5,6],[4,2]],[[1335,7220],[15,-2],[-12,-6],[-3,8]],[[1869,7288],[40,-5],[12,-6],[6,-6],[0,-4],[-27,-6],[1,4],[-8,-1],[-9,3],[2,5],[-14,8],[1,-7],[-9,0],[5,4],[-6,6],[9,-2],[-3,7]],[[1830,7285],[5,-2],[-8,-3],[-8,5],[11,0]],[[2202,7309],[-1,-8],[9,-2],[-3,-10],[-6,12],[-21,6],[1,2],[21,0]],[[40,7224],[-7,12],[0,4],[19,-6],[0,6],[13,-4],[12,2],[18,-12],[-6,-2],[-12,2],[-4,-12],[-9,6],[-12,0],[-12,4]],[[24,7246],[0,-6],[-15,-4],[0,8],[15,2]],[[1576,7325],[14,-2],[6,-14],[-2,-8],[-18,-10],[-28,6],[-6,6],[-6,-2],[0,-8],[-11,-5],[-11,0],[-5,-4],[-4,8],[4,5],[-7,0],[0,4],[9,-2],[3,4],[23,0],[8,16],[9,4],[17,0],[5,2]],[[1613,7343],[4,2],[8,-8],[-9,0],[-3,6]],[[153,7285],[10,-8],[-9,-4],[-10,3],[9,9]],[[2122,7402],[18,1],[8,-8],[-18,3],[-12,-2],[-5,3],[9,3]],[[1850,7404],[9,-9],[-3,-9],[-6,-2],[-18,15],[4,4],[14,1]],[[1312,7384],[-5,-4],[-6,4],[11,0]],[[1420,7424],[19,6],[7,-2],[17,4],[0,-4],[17,-4],[9,-16],[-1,-5],[-17,-3],[-6,6],[-19,2],[-7,-4],[-14,12],[1,4],[-6,4]],[[2167,7496],[7,-4],[-7,-2],[0,6]],[[2128,7496],[3,-5],[-12,-5],[-9,4],[6,4],[12,2]],[[1465,7476],[4,-4],[2,-8],[-11,0],[-6,4],[6,2],[-4,6],[9,0]],[[1682,7579],[5,-6],[-8,0],[3,6]],[[1658,7575],[1,-6],[-12,4],[6,4],[5,-2]],[[1810,7573],[-12,6],[9,4],[3,-10]],[[1685,7597],[10,-8],[7,-2],[-9,-4],[-9,2],[1,12]],[[1667,7606],[4,-3],[-12,-2],[8,5]],[[1645,7617],[5,-12],[-10,1],[-9,7],[14,4]],[[1690,7634],[26,-4],[12,2],[8,-7],[-3,-7],[8,-9],[1,5],[8,-7],[12,0],[-4,6],[23,-12],[7,-2],[5,-6],[-1,-12],[-13,0],[-3,4],[-24,2],[-3,-4],[-37,2],[-8,12],[12,-2],[3,4],[-8,18],[-3,-3],[8,-11],[-14,3],[5,4],[-6,7],[-11,1],[3,4],[-6,6],[3,6]],[[1696,7642],[15,-4],[8,0],[0,-4],[-20,0],[-3,8]],[[1782,7676],[8,2],[14,-2],[17,0],[3,6],[14,0],[-6,4],[9,2],[6,8],[14,0],[3,6],[11,2],[3,-6],[8,2],[-2,4],[17,4],[0,8],[22,2],[1,-8],[7,-2],[3,6],[13,-2],[14,4],[22,12],[34,0],[4,4],[14,17],[9,4],[1,6],[21,1],[11,5],[-1,3],[43,16],[3,7],[46,14],[12,0],[6,6],[13,2],[20,10],[6,10],[23,-2],[16,8],[18,10],[2,2],[-5,10],[5,4],[12,2],[14,-10],[22,-6],[-5,-2],[1,-8],[10,-4],[8,0],[0,-6],[13,-2],[4,-6],[8,-2],[-15,-10],[3,-6],[8,-6],[4,-8],[7,0],[5,-14],[-11,-2],[-9,-10],[-20,-23],[1,-5],[-9,-5],[17,-12],[17,-8],[15,0],[5,-4],[-33,-2],[-13,-12],[-11,-8],[-11,-2],[-14,-8],[8,-2],[-3,-8],[-15,-2],[-18,1],[-7,-7],[1,-16],[-28,-1],[-4,1],[-11,-6],[2,-10],[7,-1],[-7,-10],[-21,-4],[-12,0],[0,-6],[-16,-6],[16,0],[0,-4],[12,4],[12,0],[0,4],[28,-14],[21,-4],[6,4],[10,0],[16,12],[15,-2],[15,7],[2,7],[11,2],[2,7],[12,2],[13,4],[3,-2],[10,6],[0,5],[9,-3],[16,0],[-1,-8],[-10,0],[-5,-8],[8,-1],[-18,-14],[9,-4],[-5,-6],[-18,-10],[-5,0],[-17,-4],[-9,-4],[5,-4],[-21,-8],[-22,-2],[-8,8],[-11,0],[-5,8],[-9,2],[0,4],[-22,0],[-12,-2],[-11,-10],[-5,2],[-10,-4],[-8,0],[2,8],[-14,4],[-17,4],[0,8],[-11,-8],[12,-14],[10,2],[5,-4],[-10,-4],[0,-10],[11,-12],[0,-9],[-8,-3],[-14,0],[-10,-4],[-13,0],[-8,-4],[10,-1],[20,7],[9,-2],[14,0],[0,-10],[-20,-2],[-8,4],[-11,-4],[-20,0],[-28,4],[-6,4],[-22,0],[24,-5],[-3,-5],[9,4],[26,-4],[0,-6],[-9,0],[-22,-16],[-22,1],[-2,-5],[-22,3],[-3,-4],[-6,2],[-19,-6],[-20,-2],[-69,-6],[9,-6],[3,6],[37,2],[15,-4],[6,6],[19,-2],[21,2],[4,4],[30,0],[9,2],[22,0],[18,-2],[7,4],[-12,1],[9,5],[17,6],[10,-4],[4,-7],[6,-1],[3,-6],[-13,2],[1,-8],[17,8],[0,-14],[11,-2],[-11,-8],[13,-2],[1,-8],[-7,-2],[-3,-6],[-22,0],[-36,2],[12,-4],[13,0],[6,-4],[29,2],[16,-4],[-2,-8],[-6,-5],[0,-5],[-14,-4],[-8,-6],[2,-6],[-11,0],[-10,9],[-8,1],[-8,-2],[-14,6],[-9,-9],[-10,9],[-7,3],[1,-7],[-4,-2],[-20,1],[-7,-4],[-16,1],[-13,8],[3,-5],[-3,-5],[-26,2],[-17,-4],[14,0],[12,-2],[37,-2],[6,3],[25,0],[20,-8],[-3,-7],[9,-6],[-6,-7],[6,-6],[-12,-4],[-6,2],[-2,-20],[-3,-2],[-19,0],[-10,2],[-8,-10],[-9,-2],[-7,10],[-9,2],[-11,16],[-3,-4],[5,-8],[-3,-4],[9,-8],[3,-10],[-3,-4],[-12,0],[-16,2],[3,2],[-7,4],[3,-14],[-17,6],[-6,8],[-8,6],[-15,14],[-27,14],[8,-10],[5,-2],[9,-12],[-3,-2],[14,-8],[4,-8],[-15,0],[-10,10],[-2,-6],[-10,4],[-1,-6],[-8,2],[-18,14],[-4,6],[-12,10],[-1,5],[-11,1],[-9,22],[7,7],[-3,10],[-5,3],[4,9],[18,10],[3,6],[12,2],[10,6],[0,10],[6,2],[22,0],[13,-8],[8,4],[18,0],[7,2],[-17,0],[-29,4],[-53,0],[19,-4],[-1,-8],[-18,-6],[-12,-8],[-2,-4],[-26,-13],[-25,-5],[7,-6],[-5,-5],[15,0],[16,-20],[3,-11],[-6,-5],[-16,0],[25,-2],[9,2],[5,-8],[21,-12],[8,-8],[-1,-4],[-10,-2],[-15,2],[0,-2],[-13,0],[30,-10],[12,-6],[-3,-4],[8,-5],[-3,-7],[-30,0],[-6,3],[-20,0],[-9,4],[-8,-3],[-29,12],[-13,-2],[-16,2],[10,-6],[7,-10],[-14,2],[-11,-2],[11,-13],[14,4],[9,-3],[14,-9],[-6,-4],[7,-1],[8,-10],[8,3],[6,-10],[1,-6],[-6,-4],[-8,0],[0,6],[-9,-8],[-24,8],[-5,4],[-6,-2],[9,-8],[-5,-4],[8,-4],[-2,-8],[-6,0],[-9,8],[-9,-4],[-11,2],[-17,16],[-6,-2],[12,-10],[-6,-2],[-3,-8],[-6,0],[-2,8],[-9,0],[0,-8],[6,-6],[-11,2],[-3,-6],[-12,6],[6,-8],[-7,2],[12,-18],[-25,0],[-2,2],[11,0],[-21,4],[4,-4],[-12,-2],[13,-4],[6,-6],[-10,-2],[-23,0],[-7,-6],[3,-6],[-3,-8],[-22,-2],[-13,6],[11,-12],[-10,1],[-33,25],[-15,8],[12,2],[-17,4],[5,-6],[-19,6],[-26,14],[-3,10],[-8,6],[-21,4],[-14,4],[-5,8],[0,6],[-4,7],[24,2],[20,-7],[5,-4],[-2,-14],[11,-2],[-6,10],[22,2],[12,8],[15,0],[10,6],[0,4],[12,3],[2,9],[7,3],[-3,6],[11,2],[1,-4],[10,0],[11,4],[3,-2],[4,8],[6,-8],[11,4],[16,-5],[10,5],[-9,0],[-12,6],[-26,6],[-2,6],[11,2],[-2,8],[16,0],[15,8],[18,-4],[16,0],[8,-6],[12,2],[11,-4],[1,6],[11,0],[22,-4],[-33,12],[-9,2],[-7,8],[12,0],[14,2],[-10,6],[-7,-4],[-11,4],[-8,-4],[-9,4],[-23,2],[-3,4],[11,4],[-1,4],[-15,-8],[-8,4],[-7,0],[-13,6],[-18,-2],[-26,9],[-10,5],[8,-8],[-12,-2],[-5,2],[-5,-4],[-21,4],[-2,3],[-12,3],[-2,8],[-6,-4],[-12,0],[-6,4],[3,9],[-11,12],[-5,0],[-6,-8],[-12,4],[9,8],[10,0],[4,4],[-1,8],[9,8],[12,-2],[11,-10],[14,16],[15,6],[17,2],[20,8],[22,-2],[9,4],[45,8],[-40,-4],[-6,0],[-22,-2],[-57,-12],[-8,0],[-5,6],[-7,0],[0,6],[14,4],[21,0],[-3,4],[-28,-2],[1,6],[32,10],[-5,8],[-9,-6],[-16,-2],[-9,-4],[-4,-6],[-16,6],[-14,2],[0,8],[-6,4],[3,4],[-4,11],[-5,1],[-1,13],[-11,1],[-10,8],[5,13],[11,0],[8,8],[10,6],[-3,2],[13,8],[-6,2],[-13,10],[9,8],[16,2],[0,-6],[15,2],[22,-8],[12,10],[23,-2],[-23,8],[-11,-4],[-3,4],[-18,2],[6,14],[8,8],[-5,2],[6,4],[0,6],[11,0],[3,8],[11,1],[-5,-9],[13,2],[12,-1],[9,-5],[9,-2],[8,-6],[9,2],[5,12],[11,-10],[20,-8],[11,0],[7,-10],[-27,-2],[-7,2],[0,-6],[-9,6],[9,-10],[10,-4],[24,-2],[11,2],[11,-12],[-2,-12],[-4,-3],[14,-20],[1,-7],[16,-13],[-8,17],[-11,12],[-3,8],[3,6],[-6,4],[5,6],[12,-2],[-11,8],[2,6],[18,-6],[-3,10],[12,4],[8,0],[13,8],[4,-2],[31,-4],[11,-6],[6,2],[15,-6],[10,2],[18,-20],[-3,8],[8,-4],[4,14],[-12,6],[-6,-2],[-2,6],[-6,-4],[-11,4],[2,10],[14,0],[-7,8],[-12,2],[-3,6],[-12,10],[0,-4],[-14,5],[-8,8],[-9,4],[3,7],[-12,12],[15,0],[0,3],[15,1],[-18,3],[-14,-2],[-6,6],[9,6],[14,0],[0,6],[8,-2],[-9,6],[10,4]],[[2711,8428],[6,-4],[2,-10],[-15,0],[1,6],[9,0],[-3,8]],[[4638,5668],[14,8],[6,-2],[8,-10],[20,-14],[10,-5],[18,-4],[5,-4],[8,-16],[-1,-14],[11,-4],[-18,-4],[-18,-2]],[[4701,5597],[-7,-6],[22,-8],[12,-6],[8,-2],[9,6],[26,-4],[18,-4],[8,-8],[-17,2],[-1,-6],[-24,2],[-5,-2],[-13,0],[-20,6],[-15,0],[-7,-9],[8,-3],[-18,-5],[-42,-7],[-44,-1]],[[4446,5603],[20,8],[4,2],[16,2],[5,8],[56,0],[17,-4],[4,4],[17,-2],[9,2],[34,2],[19,4],[-5,6],[16,0],[-6,10],[-12,2],[-17,9],[7,2],[8,10]],[[4179,5450],[25,-4],[8,2],[25,-8],[-3,-4],[12,-2]],[[4246,5434],[-5,-6],[4,-9],[-5,0]],[[4240,5419],[-12,1],[-1,7],[-14,1],[-7,-6],[-13,6],[10,4],[-3,4],[-13,-1],[-11,1],[-8,-2]],[[4168,5434],[-4,0],[-2,8],[18,2],[-1,6]],[[4179,5450],[0,0]],[[4179,5450],[0,0]],[[4179,5458],[11,0],[5,4],[10,-4],[13,2]],[[4218,5460],[17,0],[10,-4],[2,-4],[-11,-2],[15,-2]],[[4251,5448],[8,-2],[-2,-4],[14,-2],[-1,-2]],[[4270,5438],[0,-6],[-17,-5],[-1,5],[-8,4],[-9,0],[3,4],[-9,4],[-18,4],[-14,0],[-28,8],[10,2]],[[4251,5448],[23,0],[21,4],[0,6],[20,2],[-8,12]],[[4362,5428],[-2,-2]],[[4360,5426],[-1,-6],[-17,7],[-17,-4],[-29,-4],[-3,9],[-7,3],[-11,-4]],[[4275,5427],[3,5],[-8,6]],[[4179,5458],[-6,0]],[[4173,5458],[-8,12],[9,2],[-14,4],[-7,12]],[[4212,5504],[-8,-2],[6,-18],[-7,-2],[12,-6],[-8,-4],[1,-4],[10,-4],[0,-4]],[[4173,5458],[-4,-2],[-12,4],[-19,0],[-23,8],[-15,8],[-12,2]],[[4088,5478],[9,2],[8,8],[-14,10],[2,6],[8,2]],[[4151,5404],[-11,12],[8,11],[20,7]],[[4240,5419],[9,-11],[10,3],[3,-14],[7,0]],[[4099,5418],[11,17]],[[4110,5435],[1,5],[-11,4],[-1,4],[16,-2],[9,10],[1,8]],[[4125,5464],[16,-6],[20,0],[18,-8]],[[4179,5450],[0,0]],[[5124,5730],[17,4],[3,2],[-13,6],[-2,4],[46,10],[-9,6],[-5,12],[9,3],[-9,4],[-15,3],[0,4],[10,3]],[[5156,5791],[9,-2],[11,4],[8,-1],[11,-7],[22,-2],[37,-2],[-4,7],[17,-3],[10,3],[3,5],[11,-1],[24,3],[24,-3],[22,-5],[10,2],[-4,4],[15,4],[3,-4],[21,6],[19,-14],[4,-13],[-6,-2],[-2,-8],[4,-2],[-8,-4]],[[5417,5756],[12,-6],[-13,-6],[-9,-8],[-16,-6],[-7,2],[-21,-10],[-18,-16],[-11,0],[-7,-4]],[[5327,5702],[-11,0],[5,6],[-8,2],[1,8],[-11,-2],[-9,2],[-4,-8],[-43,-2],[-23,-4],[10,-10],[-15,-4],[-23,2],[-3,-6],[-16,-4],[-4,6],[-11,-2],[-15,14],[-7,8],[-9,0],[-7,16],[6,6],[-6,0]],[[6117,6670],[-2,6],[4,6],[-6,0],[5,6],[-2,4],[7,6],[-7,4],[-5,-6],[-15,4],[-18,-24],[-11,-2],[-18,2],[-1,-8],[-11,-2],[-33,0],[-8,4],[-6,-2],[-12,16],[14,6],[2,6],[-6,10],[6,6],[11,18],[-15,6],[-19,-8],[-11,0],[5,-10],[-11,-10],[-8,-2],[7,-4],[-14,-2],[-7,6],[-23,8],[-10,-4],[-9,16],[1,6],[12,0],[1,12],[-6,17],[-24,-5],[-4,-12],[-5,-4],[-34,-6],[-13,-2],[-6,-6],[-5,-12],[10,-10],[1,-6],[-40,-6],[-1,-2],[-15,4],[9,10],[-11,8],[-11,-4],[-39,4],[-8,-4],[-25,-2],[-6,-8],[-2,-10],[9,-10],[-19,-2],[-9,4],[-38,0],[-16,4],[4,6],[-3,8],[-12,2],[-11,-6],[-4,6],[-27,2],[-7,-2],[-13,0],[-9,-6],[-12,-2],[-5,8],[-13,10],[-7,0],[-19,4],[-9,10],[-8,16]],[[5441,6740],[10,10],[-4,9],[15,14],[10,4],[-11,2],[-9,8],[-1,8],[3,12],[-13,12],[9,6],[13,2],[6,4],[-26,12],[-7,6],[-13,6],[-20,0],[5,8],[11,8],[23,4],[26,13],[-19,3],[-15,-3],[-5,4],[-14,-1],[-9,5],[7,4],[0,6],[22,10],[3,12],[13,6],[1,6],[10,-4],[43,2],[-2,10],[9,2],[22,12],[-3,4],[5,6],[15,-2],[41,8],[8,-10],[1,-8],[7,0],[9,-6],[13,-4],[7,6],[15,6],[7,0],[-3,-8],[15,-4],[2,-4],[18,0],[5,-2],[10,8],[14,-2],[0,8],[12,0]],[[6505,6835],[-12,-8],[-25,-8],[-7,-10],[-33,-18],[0,-3],[-11,-1],[-18,-16],[-6,1],[6,5],[-12,16],[0,6],[8,4],[-2,4],[-16,2],[1,-4],[12,-2],[-12,-4],[-5,-6],[14,-4],[0,-8],[7,-5],[-4,-4],[5,-7],[-26,-25],[-24,-30],[-12,-18],[-17,-31]],[[6291,6650],[-6,-4]],[[3744,5442],[-31,18],[-10,2],[-6,6],[0,12],[-12,-2],[-24,-8],[-9,-6],[-26,0],[-14,0]],[[3612,5464],[-1,8],[-9,6],[4,6],[23,12],[-11,2],[6,6],[0,10],[-4,2],[1,11],[24,8],[22,3],[9,7],[10,-6],[9,0],[3,6],[6,1],[31,-8],[12,-7],[8,-2],[13,2],[1,-3],[52,-10],[46,0],[8,-2]],[[3875,5516],[-3,-8],[-17,-8],[3,-6],[16,-2],[3,-4],[-6,-10],[18,-10],[-5,-2],[5,-4],[-11,-2],[14,-6],[-20,0],[-7,-2],[2,-10],[-9,-6]],[[3858,5436],[-11,-4],[-11,2],[-22,-2],[-6,2],[-16,0],[-5,4],[-12,6],[-12,0],[-19,-2]],[[3965,6311],[-47,36],[10,4],[1,8],[5,8],[0,8],[-20,2],[-5,4],[13,19],[-7,4],[-14,0],[-17,-2],[-12,-4],[14,46],[-28,68],[5,15],[-60,15],[-75,33],[-16,12],[-21,8],[-11,0],[-14,12],[-30,-2],[-96,-28],[-75,10],[-46,12],[20,39],[-26,12],[127,30],[38,4],[79,0],[40,10],[40,36],[-6,31],[1,10],[31,24],[9,4],[22,6],[39,18],[55,6],[41,24],[7,0],[-2,10],[6,4],[19,6],[13,14],[7,4],[3,8],[-5,5],[15,-4],[10,6],[12,-3],[6,5],[-8,4]],[[4012,6912],[-2,6],[18,2],[6,4],[-3,4],[16,-2],[2,6],[18,8],[10,-2],[14,-8],[3,-4],[8,-2],[49,4],[11,-4],[6,4],[20,-2],[22,4],[3,4],[11,0],[5,4],[9,-4],[16,6],[27,-8],[7,-4],[17,4],[18,12],[-2,10],[3,6],[18,-4],[13,0],[7,4],[-11,0],[16,14],[48,16],[11,8],[3,6],[-9,9],[-12,5],[-16,1],[17,7],[40,1],[-3,4],[7,4],[26,-6],[15,-6],[9,0],[-14,4],[-27,8],[-3,2],[41,-11],[31,-5],[17,0],[53,6],[19,4],[6,0],[24,12],[8,0],[14,12],[-11,0],[-26,-14],[0,4],[23,10],[28,4],[7,2]],[[4693,7061],[15,-22],[7,-8],[-9,-4],[3,-4],[18,-8],[14,-11],[-16,-6],[8,-4],[9,-20],[-10,-6],[15,0],[15,-8],[-14,-8],[20,-12],[2,-6],[-7,-14],[-5,-18],[3,-11],[-11,-3],[5,-4],[14,-1],[17,-4],[29,0],[17,5],[8,11],[43,0],[41,7],[10,5],[10,0],[12,-8],[7,-13],[26,-9],[15,-2],[5,-4],[20,2],[8,-6],[7,-20],[11,-6],[-13,-6],[8,-6],[-17,-12],[-22,-10],[-4,-8],[-11,-10],[-28,-9],[-17,-15],[-2,-6],[27,-9],[8,-4],[10,-2],[-9,-6],[0,-4],[9,-4],[-2,-16],[-12,-10],[13,-6],[11,0],[9,-8],[-17,-10],[14,-6],[-6,-6],[-3,-7],[-6,-1],[-7,-10],[-14,-4],[-17,4],[-18,-6],[-8,-6],[-23,0],[-20,-15],[2,-4],[-7,-6],[-17,-6],[-11,0],[-6,-10],[-9,0],[-6,-6],[-9,-4],[-16,6],[-12,0],[-2,-8],[-20,-4],[-6,-6]],[[4769,6575],[-13,-6],[-9,0],[-8,-10],[-11,2],[-9,-4],[-14,0],[-8,-6],[8,-9],[17,-3],[-9,-8],[-15,-8],[13,-19],[-3,-4],[-1,-18],[-10,-6],[1,-8],[-4,-4],[-25,-10],[-5,-14],[-6,-2],[-2,-8]],[[4656,6430],[-16,-2],[-8,4],[-18,-12],[-9,-2],[-12,2],[-4,-2],[-15,4],[-8,-4],[-6,2],[1,6],[-25,0],[-10,4],[-2,12],[-11,-2],[-3,-8],[-10,-2],[-6,-8],[-1,-8],[8,-8],[-5,-10],[-24,-7],[-18,7],[-2,-6],[-10,-3],[0,4],[-10,8],[-6,-5],[-28,-2],[-45,0],[-10,4],[-9,-1],[-24,8],[-12,1],[-12,0],[-2,-6],[-11,-6],[-3,-9],[11,-6],[-7,-6],[-16,-2],[-10,-6],[-1,-4],[-25,-4],[-9,4],[-9,-6],[-18,0],[-4,2],[-14,-4],[-3,-6],[-11,-2],[-5,-4],[-1,-12],[-13,-2],[-8,6],[-21,4],[-5,-6],[-35,-24],[-19,-20],[-7,-2],[-14,4],[-12,1],[-14,11],[-10,2],[-18,8],[-7,2]],[[3852,5278],[10,6],[18,1],[2,7],[7,1],[9,7],[-1,5],[12,7],[-3,3],[16,6],[6,8],[7,2],[8,10],[13,6]],[[5294,5611],[6,-8],[-10,6],[4,2]],[[4991,5712],[17,-2],[2,-2],[15,-4],[13,4],[22,0],[11,4],[2,8],[-4,8],[31,8],[18,-2],[6,-4]],[[5327,5702],[-21,-14],[-15,0],[-13,-6],[-6,-12],[1,-16],[-5,-7],[-9,-6],[0,-6],[-19,0],[-11,2],[-17,-2],[-2,-4],[-11,-4],[-15,6],[-32,-4],[-4,-4],[-6,2],[-5,-6],[-10,-2],[1,-4],[-12,-6],[-2,4],[-18,0],[1,-4],[-14,-6],[-19,2]],[[4711,5381],[11,-4],[12,8],[33,10],[6,-4],[21,8],[17,2],[16,-2],[30,7],[11,-13],[24,-10],[8,6],[17,-8]],[[4366,5347],[6,2],[10,-2],[13,6],[19,2],[-4,10],[-5,2],[-2,14],[-11,8],[15,2],[-8,4],[-11,-2],[-2,6],[-11,0],[0,17],[-10,10],[-5,0]],[[4426,5404],[-12,-7],[27,-14],[23,-6],[0,-8],[19,0],[7,-6],[13,-4],[8,-6],[11,-4],[9,2],[8,-12],[7,-2],[1,8],[18,12],[17,2],[10,6]],[[4701,5597],[16,0],[22,6],[13,0],[5,8],[12,0],[6,-8],[-7,-4],[13,-6],[-1,-4],[11,2],[28,0],[-1,4],[19,-2],[5,4],[24,-2],[13,-2],[5,-4],[22,-2],[13,-4],[10,0],[8,-6],[41,0],[18,-2],[9,-2],[12,0]],[[5000,5546],[-45,9],[-11,-5],[-10,3],[-21,-3],[-21,3],[3,-15],[-11,-3],[11,-7],[4,-12],[-13,-2],[2,-2],[-13,-2],[10,-10],[-22,-6],[5,-4],[-17,-8],[-10,0],[-17,-6],[-22,-4],[-11,-2],[9,-6],[13,2],[13,0],[6,-6],[-1,-6],[5,-4],[-12,-2],[-19,-2],[-7,2],[-19,-4],[-6,2],[-36,-10],[-7,4],[-19,-6]],[[5441,6740],[-6,-4],[-27,-6],[-7,-4],[-5,8],[-13,8],[-9,-4],[-12,2],[0,2],[-23,2],[-2,2],[-17,-6],[-9,4],[-9,-6],[-14,2],[-3,-4],[-13,-8],[-24,0],[-11,-8],[-12,0],[-17,-12],[2,-4],[-11,-4],[0,-10],[-8,-2],[-5,-6],[9,-8],[-3,-2],[-14,-2],[-6,2],[-11,-2],[-5,-8],[-4,2],[-22,0],[-19,-4],[-25,-10],[-5,-6],[6,-11],[10,-4],[-7,-6],[15,-6],[-2,-4],[13,-6],[-7,-14],[-7,-4],[-18,-2],[-9,-6],[-13,-4],[-18,2],[-18,0],[-1,4],[-14,-2],[-16,-10],[-14,2],[-11,-2],[-12,2],[-7,-6],[-13,2],[-9,-2],[-21,4],[-5,-6],[-15,-2],[3,12],[-19,-2],[-13,-8],[-20,0],[-9,4],[-13,-4],[-12,4],[-6,-8],[-4,-10],[-12,0],[3,6],[-7,2],[-1,6],[-9,10]],[[4693,7061],[13,0],[12,4],[33,10],[10,12],[38,4],[18,0],[12,-8],[-5,-10],[-14,0],[9,-6],[22,-2],[11,0],[9,-4],[7,8],[-5,8],[-14,2],[-13,12],[32,-2],[36,0],[18,4],[14,4],[13,8],[7,16],[-8,8],[14,-2],[23,1],[30,6],[8,4],[8,-1],[59,9],[19,0],[14,-2],[14,0],[11,4],[10,-2],[-4,-6],[17,-10],[-8,8],[41,-13],[35,-6],[19,-6],[56,-10],[8,0],[3,-4],[12,0],[-4,2],[15,-2],[27,-4],[14,-2],[22,-2],[20,8],[22,6],[18,2],[1,2],[18,4],[10,10],[18,0],[1,2],[11,0],[13,4],[13,-1],[16,2],[1,-7],[18,-6],[20,4],[5,-2]],[[3426,5158],[6,-1],[15,-18],[-3,-4],[-8,0],[-5,10],[-11,2],[-1,8],[7,3]],[[3249,5325],[11,0],[12,-6],[21,-4],[23,-10],[5,-4],[29,-14],[10,-13],[-4,-4],[11,-8],[4,-8],[3,-14],[6,-10],[0,-10],[-16,-12],[-6,0],[-1,-8],[-6,0],[14,-6],[17,0],[20,-5],[9,-9],[15,-10],[-12,-2],[-26,-10],[-8,-5],[5,-8],[13,-2],[12,-6],[15,-4],[3,-4],[-14,-8],[0,-10],[14,-20],[-3,-8],[-11,-4],[-10,-8],[-14,0],[-38,0],[-13,-6],[-14,-2],[-25,2],[-17,2],[-20,2],[-10,6],[-25,6],[-8,6],[-16,4],[-13,18],[0,14],[-20,6],[-4,4],[2,8],[-5,10],[3,6],[9,7],[-1,10],[-5,15],[-22,13],[-14,18],[-10,6],[0,14],[10,6],[5,18],[9,16],[7,7],[11,4],[20,4],[6,5],[3,9],[6,3],[16,1],[12,-5],[3,4],[-12,5],[8,6],[21,2]],[[3564,5337],[-5,-8],[-3,-12],[-6,-2],[-9,4],[-5,6],[11,8],[17,4]],[[3596,5391],[6,-2],[-1,-20],[6,-4],[-11,-14],[-7,-4],[-5,8],[-19,-4],[-1,-4],[-8,-2],[-4,10],[7,10],[6,2],[7,14],[8,6],[16,4]],[[3805,5252],[-12,0],[-12,-2],[-3,-4],[8,-12],[14,-12],[-5,-2],[-20,10],[-28,8],[-1,2],[-20,4],[-23,-2],[-2,6],[-12,4],[-8,-4],[-9,4],[10,6],[-24,18],[-15,7],[-7,9],[-15,5],[-8,4],[-14,0],[-3,4],[3,16],[-1,6],[10,4],[8,0],[0,4],[-10,2],[5,4],[7,-2],[-2,-8],[8,2],[6,12],[-1,4],[13,0],[2,24],[-5,2],[-3,8],[-9,6],[3,6],[-9,6],[-9,14],[-3,17],[4,8],[-4,18],[3,6]],[[3744,5442],[-15,-4],[-16,-2],[4,-4],[33,-13],[22,-3],[-9,-9],[9,-6],[23,-2],[11,2],[3,-8],[9,-10],[-3,-6],[6,0],[3,-6],[15,-10],[13,12],[6,0],[0,-8],[13,0],[1,-4],[17,10],[10,4],[6,0],[6,6],[12,-4],[6,-10],[7,0]],[[5847,5750],[8,-2],[3,-6],[-12,6],[1,2]],[[5156,5791],[-24,2],[-9,4],[-6,-2],[-44,2],[12,14],[-14,4],[-14,8],[32,12],[-3,0],[15,6],[12,-6],[12,2],[20,8],[-7,18],[9,8],[22,6],[-1,10],[12,0],[-6,9],[-11,-1],[-4,3]],[[5159,5898],[20,0],[22,2],[33,10],[12,5],[20,5],[19,7],[13,1],[15,6],[21,2],[15,6],[15,2],[13,4],[10,8],[26,2],[22,4],[22,8],[20,6],[9,8],[15,6],[33,0],[6,0],[16,-10],[13,-2],[9,2],[19,2],[4,2],[13,-4],[-2,-20],[-4,-6],[-2,-18],[-15,-14],[-25,-8],[-6,2],[-8,-4],[-14,2],[-6,-2],[-1,-8],[-11,-4],[13,2],[0,6],[18,-2],[5,4],[6,-6],[15,-4],[12,0],[9,12],[7,-4],[8,-15],[13,-2],[15,-10],[26,0],[3,-4],[23,-2],[5,2],[18,-4],[7,2],[11,-6],[17,0],[3,-6],[27,-18],[16,-6],[13,0],[4,-4],[9,-2],[-4,-6],[-10,-8],[-12,-4],[-5,2],[-27,-17],[-15,-7],[-13,-2],[-12,-10],[-14,0],[-5,-6],[-12,-1],[-59,-12],[-11,-4],[-15,-10],[-17,4],[-11,-6],[-14,4],[-15,-2],[0,8],[-11,-2],[3,4],[-7,6],[-12,4],[-23,4],[-21,0],[-21,-4],[-31,-14],[-12,2]],[[4641,5672],[-2,6],[7,0],[-5,-6]],[[5032,5923],[8,0],[18,5],[13,-5],[30,-7],[13,-9],[22,-7],[-7,-4],[-25,4],[-3,-3],[30,-2],[8,4],[20,-1]],[[4716,5649],[-22,5],[-14,8],[-18,15],[-20,4],[-7,-3],[-3,-5],[-7,3],[6,2],[-2,6],[-16,4],[-11,0],[0,-7],[-12,-3],[8,6],[-4,4],[-8,0],[-9,8]],[[4577,5696],[5,6],[20,0],[-3,6],[-12,8],[18,2],[-4,10],[9,8],[8,14],[8,2],[3,6],[-7,-2],[-7,6],[3,10],[-7,12],[-7,-1],[-17,-9],[-5,5],[-19,6],[-3,6],[-14,-8],[-6,5],[-9,1],[-8,-4],[-4,8],[-12,10],[-10,-2],[-37,28],[-31,-6],[3,6],[-4,4],[-13,-6],[-9,4],[-16,12],[-6,-10],[-16,-2],[-14,4],[-3,6],[-20,8],[-10,0],[-11,6],[-10,-2],[-16,2],[-9,10],[-11,0],[-2,2],[-14,4],[-11,6],[13,12],[-12,6],[-5,5],[4,12],[-3,16],[43,2],[-3,10],[3,4],[-6,50],[3,2],[31,-10],[3,-4],[28,18],[18,0],[12,4],[4,-2]],[[4370,6002],[103,-10],[42,-2],[64,-2],[56,-4],[79,36],[64,15],[63,16],[4,12],[-2,6],[19,-2],[21,0],[28,-14],[26,0],[22,-4],[-4,-2],[5,-16],[7,-2],[12,-13],[-20,-10],[10,-10],[17,-6],[5,-8],[-16,-10],[11,-8],[-29,-4],[-4,-4],[10,-4],[-6,-10],[0,-10],[35,-9],[18,-9],[8,1],[14,8]],[[5504,8026],[-5,-5],[-9,4],[14,1]],[[5378,8081],[-2,-10],[-5,-4],[-12,0],[6,8],[13,6]],[[5326,8121],[-9,1],[10,6],[9,1],[-10,-8]],[[5363,8166],[-16,-2],[-20,-7],[-11,1],[3,-4],[9,-4],[23,4],[-6,-6],[5,-8],[-11,-2],[-11,6],[-4,-6],[-15,2],[-6,-3],[-11,3],[-8,10],[4,4],[11,3],[3,4],[12,3],[47,6],[2,-4]],[[5272,8154],[-13,3],[-8,11],[11,8],[9,-2],[-4,-4],[14,-8],[1,-2],[-10,-6]],[[5465,8180],[-22,-10],[-5,6],[27,4]],[[5242,8178],[-9,0],[1,4],[8,-4]],[[5268,8192],[-5,-2],[-7,6],[2,4],[15,-4],[-5,-4]],[[5748,8216],[-17,-8],[4,8],[13,0]],[[5086,8245],[11,-4],[16,0],[-1,-8],[14,-4],[-5,-7],[7,1],[23,-2],[28,-9],[16,-8],[23,-6],[5,-6],[-19,-2],[13,-2],[5,-6],[-3,-4],[13,-2],[3,-8],[-16,-6],[6,-4],[13,2],[5,-4],[-14,-6],[29,-2],[4,-4],[-13,-6],[-13,-1],[-6,-8],[-6,1],[-15,-4],[-17,0],[-7,-4],[-2,-5],[-7,-4],[23,-4],[9,2],[13,13],[18,0],[11,2],[17,0],[16,4],[9,-4],[-1,-4],[-13,-8],[5,-3],[16,5],[0,-3],[-21,-6],[-8,2],[-25,-6],[-15,2],[-27,6],[-3,-4],[13,-6],[-14,-2],[-12,8],[-28,-1],[-12,-4],[-7,3],[-24,17],[0,6],[-12,8],[6,4],[-39,18],[-6,8],[-3,10],[3,6],[-15,8],[-12,-2],[-13,2],[-17,0],[0,6],[11,12],[0,8],[8,12],[19,9],[18,0],[7,4],[15,4]],[[5129,8253],[16,-4],[9,-4],[9,4],[7,-6],[-1,-6],[-17,-4],[-20,4],[-8,14],[5,2]],[[5523,8331],[1,-6],[-7,0],[-2,6],[8,0]],[[5841,8337],[7,-4],[-11,-4],[-6,6],[5,6],[5,-4]],[[5615,8386],[1,-16],[-13,-7],[-8,-15],[15,-9],[1,-8],[-25,-8],[-3,6],[-10,0],[-10,6],[-21,2],[-13,-4],[-6,6],[-12,-6],[-22,2],[-1,2],[11,11],[-1,4],[8,2],[-1,9],[10,4],[6,9],[3,-9],[10,-5],[21,-4],[20,2],[7,7],[-5,5],[2,4],[12,4],[12,0],[2,4],[10,2]],[[5458,8388],[5,-5],[14,-5],[-6,-4],[-6,6],[-2,-4],[-12,-4],[-4,7],[-14,1],[4,8],[21,0]],[[5461,8422],[8,0],[3,-8],[-15,-6],[-9,2],[-28,-2],[19,8],[22,6]],[[5591,8428],[0,-8],[-6,2],[6,6]],[[5750,8430],[-3,-8],[-15,4],[0,4],[18,0]],[[5311,8440],[9,-4],[-7,-2],[-11,2],[0,4],[9,0]],[[5827,8446],[-3,-6],[-8,4],[6,6],[5,-4]],[[5289,8426],[27,-8],[18,-4],[9,2],[2,4],[10,-2],[4,-8],[17,-2],[6,-8],[-16,-2],[-1,-4],[15,-2],[3,-4],[16,-8],[18,-2],[7,-14],[-5,-4],[3,-5],[-9,-3],[-3,-5],[4,-6],[-9,0],[-13,9],[-15,2],[-13,-4],[10,-9],[-9,-6],[2,-6],[-19,2],[-7,-6],[-8,-2],[-5,-6],[-11,2],[-10,-2],[11,-4],[21,-6],[37,-4],[-3,2],[11,6],[2,6],[33,0],[16,-8],[9,0],[11,-6],[0,-6],[10,-2],[12,6],[2,14],[14,8],[-2,-8],[11,0],[6,4],[12,-2],[-10,-4],[4,-6],[-7,-4],[6,-4],[18,0],[-16,-6],[-9,2],[-5,-4],[7,-8],[-5,-6],[6,-3],[31,0],[-3,5],[11,2],[14,14],[7,0],[7,-4],[17,0],[14,4],[12,6],[6,-12],[-1,-12],[-8,4],[-18,-2],[-10,-5],[-17,-3],[1,-4],[18,-8],[-3,-6],[6,-4],[-5,-8],[21,4],[8,-2],[-5,-4],[5,-4],[17,-2],[3,10],[-11,-1],[5,13],[-8,0],[-11,7],[13,3],[13,-2],[3,4],[14,4],[13,6],[11,-2],[11,7],[15,3],[-2,-6],[7,-2],[-7,-11],[3,-4],[-8,-1],[-3,-8],[6,-6],[1,-10],[-22,0],[-8,2],[-9,0],[-4,-8],[-10,-1],[-9,3],[-9,-2],[-10,-6],[-6,-13],[-16,-4],[1,-8],[-11,-8],[-8,2],[6,4],[-7,2],[-7,8],[-15,2],[-20,8],[-14,-4],[2,-6],[11,2],[-8,-6],[-6,0],[-16,-12],[29,2],[-4,-4],[0,-14],[12,-2],[18,0],[-22,-8],[-18,0],[-5,-6],[15,-2],[0,-10],[10,-1],[-2,-4],[-8,3],[-8,-2],[-14,-9],[-2,-7],[-9,0],[-7,-6],[9,-3],[-3,-14],[-15,-8],[17,-8],[13,-4],[-8,-12],[-6,-2],[6,-4],[-9,-2],[-21,0],[-12,-2],[-4,10],[-11,-2],[0,6],[-8,2],[-7,10],[11,2],[1,13],[-4,12],[-6,-3],[-14,11],[-11,2],[-6,6],[8,7],[10,-3],[5,-9],[15,5],[8,12],[-9,-4],[-12,4],[-7,7],[-19,-8],[-11,-1],[-2,2],[21,12],[23,-4],[4,4],[24,4],[1,-9],[12,5],[9,0],[30,6],[1,6],[-20,-4],[-33,6],[-2,4],[21,8],[28,-4],[-3,8],[3,4],[-11,4],[3,4],[11,0],[9,6],[3,10],[-20,0],[0,-6],[-15,4],[0,9],[-5,1],[-6,9],[-4,0],[-6,10],[-6,2],[-11,14],[4,16],[-17,1],[-6,-7],[-21,-10],[-25,-6],[-27,0],[-11,6],[2,-12],[-29,2],[-19,-5],[9,-5],[-11,-4],[-18,1],[-7,3],[-6,-4],[-11,1],[-6,-5],[-4,6],[-17,-6],[-23,14],[-8,14],[4,22],[-14,4],[-6,8],[-10,-5],[-5,-7],[4,-4],[-12,0],[-7,-2],[-8,2],[-2,4],[-8,-9],[7,-4],[-11,-3],[-24,4],[-3,6],[-21,5],[4,5],[-9,6],[1,8],[-7,8],[8,12],[-1,18],[6,0],[4,8],[-8,6],[4,5],[13,0],[5,4],[-9,3],[-4,5],[1,12],[-5,6],[3,16],[-8,2],[7,8],[28,10],[4,8],[-7,2],[12,2],[-2,2],[35,2],[12,6],[18,2],[8,4],[9,-2],[5,2],[25,0],[17,-10],[15,0],[21,-10]],[[5860,8400],[0,-4],[20,-5],[-12,-7],[-3,-8],[-3,4],[-21,3],[-11,-7],[-14,0],[-7,-4],[-8,4],[8,10],[-4,9],[-26,9],[-15,-1],[-10,-5],[13,-14],[-6,-8],[-21,0],[-7,-2],[-10,5],[2,7],[8,8],[10,5],[-2,5],[6,4],[38,0],[5,10],[-8,6],[-14,4],[-6,6],[-19,12],[15,-2],[21,10],[15,-10],[-19,4],[10,-6],[-1,-4],[13,0],[20,-4],[14,4],[5,-4],[-10,-2],[-6,2],[-14,-2],[-4,-8],[11,-12],[13,-2],[18,6],[25,2],[-14,-14],[5,-4]],[[5762,8454],[-6,2],[8,6],[-2,-8]],[[5496,8462],[6,-4],[12,-2],[-10,-24],[-2,-12],[-11,8],[-9,14],[0,16],[14,4]],[[5352,8489],[8,-6],[19,2],[-1,-11],[12,-5],[17,-1],[24,1],[14,8],[14,0],[1,-6],[11,-1],[-3,-6],[-14,-2],[-8,-8],[8,-14],[7,-6],[-2,-4],[-34,-8],[-8,0],[-32,0],[-19,6],[-15,4],[-5,4],[-10,2],[-8,12],[-11,2],[-4,12],[12,6],[1,5],[19,8],[7,6]],[[5596,8507],[5,-12],[-10,0],[-3,16],[8,-4]],[[5587,8526],[5,-11],[-7,3],[2,8]],[[5675,8531],[8,-2],[14,-12],[-14,-2],[-14,4],[-1,8],[7,4]],[[5661,8533],[-9,-10],[1,-5],[11,-1],[17,-7],[0,-5],[-10,-8],[-12,0],[8,-3],[-7,-11],[-9,0],[8,-10],[1,-11],[-3,-8],[7,-6],[10,-2],[-1,-10],[-12,2],[-20,0],[-8,-6],[-7,0],[1,8],[-6,6],[2,6],[-15,6],[-5,6],[-11,3],[-1,11],[4,5],[4,-5],[17,-4],[21,5],[3,7],[-1,9],[-13,6],[8,13],[-7,8],[30,13],[4,-2]],[[6026,8559],[-11,2],[9,2],[2,-4]],[[5786,8539],[14,0],[9,4],[-3,4],[11,6],[-5,4],[-16,6],[-2,10],[10,-4],[7,4],[15,0],[18,6],[6,6],[14,-4],[13,0],[-11,-8],[-9,0],[-6,-6],[0,-6],[-18,-6],[2,-6],[-8,-2],[8,-4],[27,0],[4,4],[24,8],[35,14],[25,0],[7,4],[-1,10],[18,8],[11,-1],[-5,-9],[5,-4],[1,-10],[11,-6],[14,-2],[-10,-2],[-4,4],[-17,-4],[-9,8],[-15,0],[-25,-4],[-9,-4],[-3,-6],[-30,-24],[-3,-4],[7,-6],[8,1],[-6,-8],[-12,9],[12,16],[-10,6],[-9,0],[-7,-8],[10,0],[-6,-10],[-6,-2],[-9,2],[-18,-2],[-1,-14],[-11,4],[1,10],[17,2],[-10,7],[-15,-3],[-13,-12],[-1,6],[-21,2],[-14,-4],[-4,-12],[-12,-6],[-12,-4],[-8,-14],[-5,8],[-6,2],[-3,-8],[5,-10],[-9,0],[-6,10],[0,10],[6,12],[16,0],[14,7],[7,13],[15,3],[16,9]],[[5548,8629],[8,-3],[-2,-4],[-6,7]],[[5468,8634],[11,-10],[-12,-2],[-11,-6],[16,-2],[-4,-9],[-17,-3],[-8,2],[-8,-7],[3,-4],[13,4],[11,-4],[5,-6],[15,3],[1,-7],[26,-6],[7,6],[10,-14],[7,2],[6,-8],[-2,-10],[7,-6],[5,4],[15,0],[18,-20],[-22,4],[-13,-12],[-4,-8],[-9,0],[0,6],[10,6],[1,12],[-9,2],[-6,-4],[-2,8],[-10,4],[-8,10],[-12,2],[-4,6],[-18,0],[-8,4],[-11,-4],[6,-6],[13,-6],[-18,-2],[-15,-4],[1,-8],[-21,10],[-8,6],[-14,2],[7,8],[-5,6],[3,4],[-10,14],[-11,0],[-24,10],[-3,9],[14,-5],[23,-4],[7,5],[19,-2],[7,5],[13,1],[1,11],[7,8],[19,5]],[[5542,8656],[10,-7],[-3,-8],[-10,-3],[-6,-12],[5,-2],[6,-14],[-10,-8],[-12,4],[-6,-5],[-5,20],[3,8],[10,7],[0,6],[6,7],[0,5],[12,2]],[[6019,8664],[11,-8],[-14,0],[-12,-2],[-12,-5],[-2,-8],[13,-11],[-24,-6],[-4,6],[-11,3],[-10,-3],[8,8],[0,6],[11,6],[-4,6],[35,2],[15,6]],[[6728,8793],[-4,6],[11,2],[-4,8],[21,-2],[11,2],[2,-4],[-8,-8],[10,-2],[-13,-4],[8,-2],[-6,-6],[-11,2],[1,-6],[-14,-7],[-3,3],[-12,-2],[-3,8],[9,0],[-1,10],[6,2]],[[7169,9223],[24,-10],[-11,-1],[-1,-5],[-9,2],[0,4],[-12,8],[9,2]],[[6997,9244],[7,-3],[8,2],[-2,-6],[-10,0],[-3,7]],[[7058,9305],[4,-6],[-12,-16],[-9,-8],[-7,-14],[-15,-8],[1,7],[7,3],[5,16],[-3,12],[29,14]],[[7005,9281],[-1,6],[11,2],[2,8],[13,2],[1,8],[-11,2],[-3,6],[12,-4],[9,0],[1,12],[9,-2],[-1,-10],[-15,-18],[-7,-4],[1,-6],[-5,-4],[-2,-10],[-9,-1],[1,-5],[-15,-10],[-8,0],[-2,7],[9,1],[11,10],[11,-2],[-11,6],[-1,6]],[[6994,9328],[2,-5],[-7,-6],[-5,8],[10,3]],[[7011,9329],[14,0],[-4,-6],[-17,4],[7,2]],[[7083,9335],[-9,-5],[-3,-17],[-17,-8],[-4,6],[10,4],[-3,15],[26,5]],[[6999,9355],[9,-3],[-3,-8],[-10,-1],[-4,5],[8,7]],[[6316,9359],[23,-7],[8,-8],[-7,-6],[-2,-13],[-5,-6],[-9,0],[-6,4],[-16,2],[-4,7],[-24,4],[5,6],[-2,6],[15,6],[24,5]],[[7312,9356],[0,-2],[22,0],[9,-4],[0,-7],[-12,-7],[-9,3],[-9,12],[-8,-3],[-4,4],[11,4]],[[7268,9388],[5,-1],[6,-15],[-8,-6],[5,-6],[8,4],[8,-1],[5,8],[-1,-27],[-10,-1],[-5,-9],[-1,-15],[-7,-10],[-6,6],[-15,0],[-23,10],[-4,14],[8,5],[4,8],[-1,8],[-25,6],[-2,6],[-5,0],[1,8],[20,0],[22,-2],[5,1],[8,-7],[11,0],[-11,7],[8,9]],[[6782,9406],[11,0],[8,-6],[-1,-9],[-16,3],[0,-4],[-20,8],[18,8]],[[6892,9527],[-3,-6],[17,0],[7,-6],[8,2],[4,-4],[-9,-2],[-11,-5],[-9,1],[1,-6],[-11,1],[-3,5],[15,7],[-20,-1],[0,8],[14,6]],[[6976,9527],[9,-4],[-6,-10],[-10,-6],[-8,4],[-3,6],[12,2],[-3,6],[9,2]],[[6658,9531],[6,-6],[9,2],[2,-4],[7,4],[2,-10],[12,6],[-4,4],[12,0],[3,-8],[-11,-4],[13,0],[-5,-8],[-11,3],[-6,-7],[-17,0],[-3,6],[9,0],[-6,4],[-14,-6],[-7,8],[-12,8],[7,2],[-1,6],[15,0]],[[7005,9545],[-3,-8],[-8,0],[-1,6],[12,2]],[[7322,9551],[-9,-10],[2,-4],[-9,-2],[-3,4],[10,14],[9,-2]],[[7429,9565],[12,-2],[-19,-6],[-19,-12],[0,-2],[-26,-16],[-8,-2],[-4,-8],[-18,-2],[-7,-2],[-16,4],[-3,4],[-9,-2],[-3,6],[12,0],[1,6],[9,0],[-7,4],[7,10],[14,6],[17,0],[12,4],[0,6],[13,2],[0,-2],[17,0],[25,4]],[[6937,9569],[11,-6],[4,2],[29,-10],[-1,-14],[-13,-6],[-6,0],[-7,-4],[-7,2],[-35,0],[-11,6],[1,6],[-12,12],[9,-2],[11,2],[-3,6],[18,8],[12,-2]],[[7588,9608],[8,-3],[-11,-5],[-5,2],[8,6]],[[7577,9608],[-4,-7],[9,-3],[-28,-2],[-15,-6],[15,8],[13,3],[4,4],[-11,-1],[6,4],[11,0]],[[7203,9616],[-9,-2],[2,8],[6,0],[1,-6]],[[7205,9642],[5,-6],[-16,4],[4,8],[7,-6]],[[7084,9672],[9,-2],[-4,-4],[-5,6]],[[7130,9688],[6,-8],[-15,4],[9,4]],[[6934,9781],[8,-4],[-13,-2],[5,6]],[[7357,9779],[6,-4],[8,2],[3,-8],[-7,0],[-3,-6],[-20,4],[0,-8],[-12,4],[14,8],[0,8],[11,0]],[[7474,9791],[20,-4],[14,0],[9,-10],[-3,-10],[5,-4],[11,4],[-4,-6],[12,0],[5,10],[17,0],[3,-6],[8,0],[-6,-12],[-20,-8],[0,-9],[-10,-3],[-6,8],[-5,-2],[-10,4],[-5,8],[-16,-6],[-12,11],[-11,-3],[-23,0],[-2,-4],[15,-4],[20,-12],[-13,-1],[-1,-3],[-18,-1],[-4,5],[-13,6],[-6,12],[-10,9],[-9,3],[-2,8],[-8,0],[1,10],[9,2],[0,6],[13,-4],[12,2],[0,-4],[13,-4],[12,2],[5,6],[13,4]],[[6842,9652],[-5,2],[-7,-2],[-12,10],[-10,-2],[-8,-8],[-20,-2],[-16,2],[0,-4],[-11,4],[-13,2],[0,6],[8,4],[11,14],[14,-2],[15,0],[11,-6],[8,4],[-13,2],[6,6],[3,10],[-4,2],[3,11],[5,0],[5,10],[27,6],[8,-8],[-3,-8],[5,-6],[26,-9],[22,-10],[12,-2],[5,-4],[12,0],[7,4],[16,0],[16,4],[-30,0],[-16,-4],[-21,8],[-15,13],[-12,2],[-3,7],[4,5],[19,4],[1,8],[13,4],[9,7],[15,1],[0,8],[-10,3],[5,8],[18,7],[-14,2],[16,6],[-3,4],[17,0],[0,-4],[15,2],[11,-6],[26,4],[3,-6],[9,0],[-3,8],[-10,0],[1,6],[8,6],[14,-4],[6,8],[6,-6],[10,0],[1,-12],[-5,-8],[4,-6],[-14,-10],[-14,2],[3,-9],[16,-4],[0,-12],[-4,-3],[2,-8],[-3,-8],[-18,2],[-4,-3],[-10,3],[-6,-9],[27,-2],[3,-4],[-20,0],[-15,-6],[25,2],[13,-8],[-2,-4],[-17,-2],[9,-2],[-3,-12],[-16,-8],[21,-2],[-3,8],[12,10],[11,0],[-6,-6],[6,-8],[-5,-2],[-11,0],[-3,-2],[6,-8],[-7,-2],[12,-14],[-4,-2],[-12,0],[-3,6],[-2,-9],[-21,-15],[1,-8],[5,-8],[-16,0],[4,-5],[-13,-1],[-1,-6],[8,-4],[3,3],[19,3],[7,6],[17,4],[-17,0],[1,11],[14,13],[13,0],[20,6],[10,-2],[0,-5],[8,5],[-1,6],[9,-6],[8,0],[-1,7],[-11,3],[-6,5],[-9,-1],[-14,6],[2,6],[12,4],[2,8],[6,4],[8,-4],[1,-6],[9,-2],[14,8],[3,8],[16,2],[20,-10],[5,-12],[-7,-2],[2,-9],[11,5],[16,-4],[0,-6],[-23,-8],[27,2],[8,-6],[-26,-7],[2,-3],[17,4],[-3,-4],[8,-8],[-21,3],[-6,8],[-15,-8],[-16,-5],[-1,-3],[-21,-7],[-2,-4],[34,11],[23,5],[3,-6],[-30,-8],[5,-3],[45,12],[-1,-11],[5,-4],[-2,-13],[12,8],[2,9],[9,2],[4,-4],[17,4],[-8,1],[-7,5],[16,8],[2,8],[8,-2],[-3,-10],[13,2],[0,8],[9,4],[4,6],[7,0],[13,8],[14,0],[-4,-13],[-13,-5],[-14,-11],[-14,-8],[-14,-4],[-6,1],[-22,-17],[2,-4],[12,2],[-5,-6],[3,-6],[19,22],[12,0],[7,-6],[15,2],[-7,-10],[5,-2],[1,-8],[-8,-10],[-16,-2],[-9,-6],[-9,-2],[-10,6],[-23,-2],[-10,4],[-16,-2],[-13,2],[18,-6],[1,-14],[4,-7],[11,13],[10,-6],[5,0],[6,-6],[16,0],[6,4],[3,-6],[11,-2],[4,4],[14,-1],[-12,-11],[7,-10],[-15,2],[-15,0],[-15,-8],[-12,-4],[-14,-9],[13,-3],[-8,-4],[9,-4],[0,4],[25,0],[0,4],[10,-9],[10,4],[0,-8],[-6,-3],[-11,1],[-7,3],[-8,-3],[-12,0],[-1,-6],[-9,-6],[0,-4],[-23,-2],[2,12],[4,5],[-15,1],[-11,10],[-10,-4],[6,-3],[-2,-9],[9,0],[2,-8],[-15,-6],[-4,0],[-17,-8],[22,0],[12,6],[8,-4],[-10,-4],[4,-4],[-9,-10],[-14,-10],[19,6],[16,12],[13,2],[-3,-6],[-10,-4],[11,-2],[-12,-4],[-5,-8],[-30,-23],[22,9],[18,12],[5,0],[17,10],[-5,-6],[0,-8],[13,2],[-7,-6],[-1,-10],[-10,-4],[10,-10],[9,0],[2,-4],[10,-5],[-5,-3],[-12,6],[-10,-3],[1,-7],[7,-6],[-7,-6],[-5,12],[-8,0],[-3,-10],[2,-9],[-17,7],[-12,3],[-2,-6],[10,-6],[-4,-10],[-10,-4],[-15,-2],[18,-10],[-5,-12],[4,-4],[-5,-6],[11,-4],[4,-6],[-6,-5],[22,-11],[-21,2],[-5,-3],[-7,7],[2,-7],[-19,-1],[-1,-6],[11,-12],[-1,-6],[8,-2],[7,-9],[5,0],[-7,-10],[8,-10],[-11,0],[1,10],[-8,10],[-8,0],[-2,-12],[-11,0],[1,8],[-15,4],[-2,-6],[-16,3],[7,-9],[-1,-4],[13,-6],[-5,-4],[7,-12],[-10,-2],[7,-12],[-2,-4],[-11,-2],[3,-6],[-8,-6],[-15,2],[7,-6],[12,-4],[2,-4],[-7,-8],[5,-10],[-21,1],[-4,-4],[14,1],[3,-10],[6,4],[0,-10],[4,-8],[-8,-4],[1,4],[-10,7],[-2,7],[-11,2],[-1,-5],[-11,-13],[4,8],[-7,6],[10,11],[-6,1],[-6,12],[-15,3],[-10,-3],[-5,-12],[-9,8],[-22,-4],[3,6],[-11,10],[-1,10],[19,0],[8,4],[-9,4],[10,6],[-8,0],[7,12],[15,-2],[17,2],[0,8],[-8,0],[8,10],[-3,4],[-9,-2],[-15,2],[7,4],[-4,6],[15,-10],[6,0],[4,8],[-8,2],[-2,9],[-7,5],[5,7],[8,4],[7,-2],[7,6],[-3,6],[14,16],[-1,4],[4,16],[9,10],[5,14],[8,8],[14,39],[-1,4],[-7,-8],[-2,4],[-9,-4],[-11,0],[-6,4],[13,12],[-11,0],[5,8],[2,12],[11,22],[-8,2],[-5,-4],[1,-8],[-6,-2],[-10,-18],[-3,8],[12,26],[21,10],[15,20],[-5,2],[-10,-18],[-6,2],[-7,-10],[-4,4],[-26,-41],[0,8],[10,15],[12,26],[-4,8],[13,10],[-2,6],[-9,-10],[-8,-4],[0,-4],[-26,-20],[-6,-4],[-3,8],[2,6],[-14,2],[2,10],[-8,6],[1,4],[15,-2],[-5,8],[-12,0],[-12,2],[-11,-4],[-8,2],[-2,4],[-13,6],[11,-14],[17,-6],[10,2],[5,-16],[12,-6],[0,-18],[-8,0],[0,14],[-10,-6],[-15,-2],[0,16],[-7,-6],[0,-8],[-4,-16],[4,-5],[-17,-13],[-3,4],[-12,0],[-3,9],[7,5],[-7,4],[-5,-12],[-10,0],[2,-21],[-11,-7],[-1,8],[-5,6],[-37,2],[-4,19],[-5,-3],[-15,2],[-2,-3],[-11,7],[6,10],[-1,6],[25,4],[17,-4],[13,0],[-1,4],[-9,-2],[-9,2],[5,4],[25,4],[2,2],[-20,-4],[-15,0],[1,12],[12,2],[-17,0],[-10,6],[10,4],[-16,0],[-2,-8],[15,-4],[-8,-4],[1,-6],[-11,0],[-13,-6],[-11,-12],[-6,4],[5,4],[2,12],[-9,8],[-8,-8],[-9,2],[-23,-4],[10,-4],[-3,-4],[-12,0],[-3,-2],[-10,2],[0,4],[-12,0],[-10,2],[-1,6],[9,2],[4,4],[-22,-2],[-18,6],[-13,2],[5,18],[-15,0],[13,6],[4,7],[-4,4],[9,2],[-4,4],[-16,0],[8,16],[11,4],[17,2],[50,1],[3,1],[14,-4],[19,-13],[5,5],[-8,0],[-1,8],[14,-5],[20,0],[-9,5],[43,16],[10,-2],[7,-18],[5,-5],[4,-16],[8,3],[-7,2],[8,7],[-10,3],[0,10],[-4,4],[14,-1],[4,-7],[2,8],[14,0],[-14,3],[15,9],[14,2],[4,6],[6,-1],[6,-11],[6,4],[21,-4],[4,-8],[-4,-1],[9,-5],[-1,-11],[11,-3],[2,12],[18,6],[-15,0],[-5,6],[-1,10],[4,5],[-4,7],[14,8],[7,0],[3,-6],[13,-2],[-6,6],[4,10],[-3,6],[9,-2],[35,0],[21,-8],[8,2],[-23,6],[-2,6],[-14,6],[-32,-2],[-8,-4],[-20,4],[10,4],[5,6],[-4,14],[-13,-2],[-11,-14],[-26,6],[-7,6],[7,4],[19,3],[-6,3],[-6,-4],[-16,5],[1,8],[12,3],[10,-5],[-9,10],[-30,-6],[-11,2],[-9,0],[-4,18],[5,-2],[1,10],[22,5],[-31,1],[-9,8],[4,4],[20,0],[6,8],[-15,-6],[-14,2],[12,20],[-8,0],[-14,-12],[-10,-2],[6,-8],[-14,-12],[-14,8],[3,10],[14,2],[-5,8],[-11,-4],[-14,0]],[[7360,9828],[16,-11],[-6,0],[-13,7],[3,4]],[[7435,9834],[29,-10],[-8,-1],[-1,-8],[-5,4],[-8,-2],[-9,9],[-9,2],[-1,4],[12,2]],[[7167,9747],[-14,10],[-2,8],[9,6],[-4,8],[10,2],[-1,12],[9,2],[9,10],[13,8],[3,-8],[0,-24],[16,0],[16,-16],[2,10],[-11,8],[-15,2],[-2,10],[2,12],[5,0],[2,17],[7,3],[1,9],[-4,4],[4,6],[-6,10],[16,14],[-7,1],[-2,5],[11,0],[10,4],[13,0],[9,-4],[6,-8],[1,15],[6,-4],[27,-7],[7,6],[22,-2],[-3,-4],[15,-1],[-10,-5],[5,-8],[16,-6],[-4,-1],[-8,5],[-2,-9],[6,-3],[-5,-5],[7,-7],[-5,-4],[9,-19],[-10,-2],[6,-10],[11,2],[-16,-8],[-2,6],[-21,0],[-22,10],[3,4],[-6,6],[-8,0],[-9,7],[3,-9],[8,-4],[2,-12],[10,-4],[4,-6],[15,-2],[4,-10],[-11,-12],[-10,2],[-6,-6],[-7,6],[-15,4],[-19,-4],[21,-2],[7,-5],[13,-3],[15,2],[2,-10],[13,3],[-2,-7],[14,0],[-6,-9],[1,-7],[-15,-4],[7,0],[3,-10],[-14,1],[-10,-3],[-10,3],[0,-7],[10,-1],[-5,-7],[8,-3],[14,2],[-9,-8],[6,-4],[-7,-4],[-6,-12],[5,-8],[-8,-2],[-11,2],[14,4],[-32,-6],[-19,8],[-10,-4],[-9,6],[18,-2],[-20,4],[-9,-2],[5,-8],[17,-2],[0,-4],[-12,-4],[-10,6],[-11,-2],[-6,2],[-12,0],[0,4],[-13,4],[-7,10],[-3,14],[-12,-2],[11,4],[-8,11],[-2,7],[7,8],[-4,5],[3,12],[-8,-1],[0,-9],[-12,5],[4,9],[11,6]],[[7548,9906],[5,-12],[-11,-6],[-3,6],[6,2],[-4,8],[7,2]],[[7536,9930],[-6,-2],[-14,6],[-12,-2],[11,-4],[14,-12],[6,-10],[-22,2],[-31,-4],[-1,-2],[25,-2],[12,2],[8,-4],[-4,-12],[-21,-7],[-1,-5],[-14,-2],[-16,-17],[5,-5],[11,1],[8,-7],[8,6],[6,-11],[-10,-1],[-14,-10],[-6,6],[-7,-2],[-10,3],[-25,3],[0,6],[-17,-4],[-3,-5],[-11,-7],[-28,4],[2,7],[-15,-1],[10,14],[-1,8],[-5,2],[-5,10],[27,-5],[-1,9],[-11,0],[9,4],[-8,6],[5,6],[14,0],[4,4],[-4,12],[5,0],[6,20],[-14,4],[1,10],[15,5],[7,6],[-13,1],[9,5],[15,-1],[8,12],[9,1],[-5,7],[14,7],[12,0],[7,-11],[-5,-16],[-7,-8],[7,-3],[11,7],[5,5],[6,19],[15,4],[1,-8],[6,-3],[8,4],[7,-4],[12,4],[3,-4],[11,0],[-4,-4],[4,-5],[23,-1],[0,-3],[-32,-1],[-11,-4],[4,-6],[12,0],[9,-5],[-4,-6],[2,-10],[-8,0],[-13,4]],[[4110,5435],[-13,-3],[-17,8],[-26,0],[-3,4],[-18,0],[1,-6],[-7,-3],[-30,-4],[-3,5],[-28,-4],[-1,4],[-25,0],[-9,6],[-32,-6],[-19,-8],[-9,0],[-13,8]],[[3875,5516],[31,-6],[37,0],[12,-2],[17,2],[8,-2],[12,4],[25,-6],[17,-12],[22,-8],[-8,6],[14,-4],[12,-8],[23,-4],[18,-10],[10,-2]],[[4370,6002],[-8,20],[-22,13],[-16,4],[-7,4],[-39,-14],[-46,-6],[-31,-9],[-21,-4],[-3,13],[-7,10],[-3,14],[-8,0],[-8,10],[-6,2],[3,8],[-37,8],[-9,-12],[-12,0],[-10,-6],[-7,2],[-17,-4],[-11,2],[-15,-7],[-7,0],[-17,-5],[-16,0],[-13,10],[-20,-4],[-5,-5],[6,-8],[-30,1],[-3,-2],[-16,1],[-5,-5],[-16,-2],[-24,-12],[5,-3],[-7,-6],[-11,2]],[[3864,6139],[-10,7],[17,12],[-11,8],[2,7],[-5,3],[-28,-15],[-23,1],[-6,2],[-23,-2],[-5,14],[3,18],[25,-2],[18,2],[16,-2],[23,10],[21,6],[16,0],[5,4],[-2,8],[-14,2],[14,14],[15,10],[-3,2],[-7,21],[7,6],[31,6],[-2,8],[10,6],[10,12],[7,4]],[[4656,6430],[10,-10],[9,-2],[15,6],[19,4],[13,-2],[7,-12],[15,-2],[25,0],[7,8],[1,6],[20,0],[8,-8],[27,2],[8,4],[25,2],[7,-6],[-2,-4],[6,-9],[13,-9],[-10,-8],[8,-7],[11,0],[11,7],[8,-9],[7,4],[11,2],[11,-2],[9,-10],[23,-2],[12,2],[7,0],[11,10],[13,-6],[16,4],[8,-4],[12,0],[11,-6]],[[5376,5996],[-7,-6],[-26,-2],[-11,-10],[-13,-4],[-10,-2],[-17,-8],[-23,-18],[-6,-2],[-25,-16],[-7,0],[-6,-6],[-26,-7],[-12,0],[-44,-11],[-25,6],[-20,10],[-36,8],[-33,-4],[-9,8],[-1,8],[-7,12],[-7,4],[8,-8],[4,-10],[-2,-15],[17,0]],[[5023,5923],[-6,0],[2,9],[4,-9]],[[2658,6188],[9,-4],[0,-4],[-16,-10],[-6,4],[1,8],[12,6]],[[2600,6186],[8,-4],[6,6],[4,-6],[16,-4],[0,-2],[-40,0],[6,10]],[[2600,6196],[-4,0],[4,8],[0,-8]],[[2663,6315],[32,-6],[9,-6],[3,4],[21,-6],[-14,-4],[-6,4],[-9,-6],[-19,-2],[-12,6],[-16,0],[10,10],[1,6]],[[2292,6347],[7,-4],[5,4],[28,0],[6,-8],[-5,-6],[-8,4],[2,-6],[-8,-4],[-16,10],[-6,-6],[-12,0],[-6,6],[13,10]],[[2427,6373],[-6,-4],[3,8],[3,-4]],[[2649,6420],[5,-4],[-14,-1],[9,5]],[[2435,6422],[0,-16],[-5,-23],[-9,2],[2,-4],[-8,-2],[6,-4],[-12,-4],[-3,2],[-19,-2],[-17,6],[-9,2],[-18,8],[3,3],[-2,10],[6,7],[24,5],[15,-2],[6,4],[-5,8],[3,4],[-6,2],[13,6],[12,4],[20,-10],[3,-6]],[[2227,6543],[3,-4],[15,-1],[10,-7],[7,2],[2,-6],[9,-4],[12,2],[11,-6],[11,-13],[-12,-2],[-19,-2],[0,-4],[36,-2],[4,-6],[-12,-8],[-3,-22],[-8,-8],[-15,-6],[-11,-2],[-1,-6],[-8,-6],[-13,-2],[-16,0],[-3,4],[-7,0],[-5,8],[-7,-2],[-18,6],[1,4],[-11,16],[-9,-2],[-8,4],[-20,12],[-8,0],[-21,8],[-10,6],[3,4],[10,-2],[8,4],[1,6],[26,9],[11,12],[18,4],[6,4],[10,2],[12,-3],[11,8],[8,1]],[[2069,6537],[16,-6],[9,3],[3,-5],[-15,-2],[-3,6],[-11,-4],[-17,1],[0,5],[18,2]],[[2057,6553],[8,-4],[13,0],[0,-4],[-24,-8],[-6,2],[-22,0],[-12,0],[0,-4],[-17,-6],[-20,-2],[-11,0],[-8,8],[8,6],[13,2],[29,2],[12,6],[37,2]],[[2748,6625],[5,-6],[-11,2],[6,4]],[[2347,6638],[18,0],[7,-7],[-11,-8],[-17,2],[-3,-6],[9,-6],[-15,-8],[-13,0],[-12,6],[-9,6],[-2,6],[14,4],[3,2],[21,2],[-2,5],[12,2]],[[2683,6744],[8,-6],[-2,-4],[-15,-2],[-4,8],[13,4]],[[2651,6767],[-5,1],[0,7],[11,-6],[-6,-2]],[[2544,6784],[18,-1],[9,-4],[12,0],[20,-6],[12,-4],[7,-9],[-8,-10],[1,-6],[-18,-6],[-34,-2],[-15,12],[-10,4],[-15,13],[6,15],[11,-1],[4,5]],[[2685,6813],[10,-10],[2,6],[20,-10],[0,-6],[-6,-2],[-18,2],[-13,16],[5,4]],[[2072,6801],[7,-2],[-7,-10],[-21,0],[2,6],[19,6]],[[2076,6815],[-8,-2],[1,6],[7,-4]],[[2038,6821],[5,-6],[-9,0],[4,6]],[[2520,6940],[6,-6],[0,-6],[-4,-8],[-6,2],[-4,12],[8,2],[0,4]],[[2550,6942],[-3,6],[5,0],[10,-10],[1,-6],[-4,-12],[-10,-14],[-9,-8],[-14,-6],[-10,-6],[-2,-9],[9,-10],[3,-24],[8,-10],[12,-10],[5,2],[-1,-14],[-19,-12],[-8,-8],[-8,0],[-17,-4],[-15,2],[-6,8],[2,4],[-18,10],[6,8],[-1,6],[7,8],[-1,8],[-8,12],[3,4],[-4,12],[7,19],[18,18],[10,1],[30,-5],[6,9],[-18,3],[9,2],[1,8],[8,10],[10,0],[6,8]],[[2541,6958],[11,-10],[-12,2],[1,8]],[[1924,6962],[8,-8],[-9,-2],[-5,6],[6,4]],[[2574,7019],[11,-4],[3,-15],[-10,-10],[0,-6],[-12,-28],[-15,4],[9,2],[-11,4],[-3,4],[11,4],[-11,2],[-2,6],[18,0],[4,6],[-9,6],[3,6],[-4,5],[9,8],[12,-6],[1,7],[-4,5]],[[2051,7019],[3,-4],[-10,-2],[7,6]],[[2344,7075],[9,-4],[-6,-2],[-3,6]],[[2816,7132],[6,-2],[-3,-5],[-8,5],[5,2]],[[2676,6708],[29,10],[11,4],[15,0],[4,4],[28,10],[12,-2],[16,4],[28,-6],[-19,-6],[6,-2],[27,4],[35,0],[14,-12],[-17,-12],[-1,-6],[4,-6],[-6,-8],[0,-6],[-24,-12],[-2,-2],[-17,-7],[-20,-7],[-15,-1],[-2,-3],[-28,-6],[-6,1],[-13,8],[-6,0],[10,-13],[-2,-11],[-4,-2],[15,-10],[-17,0],[2,-16],[-7,0],[-6,-6],[-12,-6],[-19,4],[-6,-2],[0,-6],[-6,-2],[-9,-12],[-16,-6],[-3,-8],[-6,-4],[5,-6],[-8,4],[-9,-10],[-4,0],[-8,-10],[-8,0],[-9,-4],[-12,-2],[-7,-8],[-14,4],[-7,-4],[-21,-7],[-7,4],[-5,-6],[-7,10],[6,0],[-21,19],[0,6],[15,14],[10,-2],[6,4],[-1,14],[9,12],[13,4],[-8,8],[-10,0],[8,10],[23,8],[-6,2],[18,6],[16,2],[0,4],[12,4],[14,9],[29,2],[18,4],[10,5],[3,4],[11,3],[-3,4],[-14,-7],[-4,1],[-14,-6],[-14,4],[-8,-8],[-20,0],[-5,2],[-13,2],[-31,-7],[-14,0],[-8,3],[2,13],[-10,9],[0,4],[-7,6],[-9,0],[-2,8],[-6,8],[-10,2],[0,-10],[11,-10],[2,-8],[-4,-12],[-6,-4],[-12,2],[0,-11],[-7,-10],[-9,-6],[0,-6],[-9,-6],[-3,-6],[-9,-4],[-12,8],[-8,-2],[-4,6],[6,8],[-3,4],[6,15],[-8,8],[-1,12],[-10,0],[-7,-6],[-9,4],[-6,-2],[-5,8],[-4,-2],[-13,4],[4,-14],[-4,-6],[-18,-2],[-21,4],[-32,-8],[-11,0],[-22,-2],[-34,-7],[-10,0],[7,5],[0,4],[11,4],[10,6],[10,10],[-3,8],[-7,2],[-8,-4],[-26,-10],[-18,-1],[-15,5],[-11,12],[-11,8],[3,12],[27,0],[7,6],[2,18],[-8,-4],[-1,-10],[-9,-2],[-21,0],[-9,-4],[-22,6],[-7,4],[-2,8],[-22,10],[-12,18],[6,0],[-9,6],[-10,0],[-5,2],[2,11],[-3,8],[16,4],[13,6],[6,-1],[6,5],[12,-4],[-3,16],[9,-6],[9,2],[4,-4],[12,-1],[20,-8],[17,-16],[18,-5],[19,-1],[9,2],[-32,5],[-17,15],[-34,19],[-12,4],[2,6],[18,8],[-12,0],[-14,-12],[-31,0],[-16,-6],[9,14],[-27,8],[0,4],[11,4],[-11,4],[-6,4],[1,12],[-5,6],[-9,-18],[-7,0],[-5,-8],[-10,-6],[-1,12],[8,10],[-3,6],[-16,10],[-4,-10],[9,2],[-2,-8],[-9,4],[-9,-10],[-6,4],[-14,-2],[7,-4],[-3,-6],[5,-16],[-2,-20],[-10,-6],[-8,6],[-9,0],[-13,4],[-12,6],[-18,4],[-10,0],[-3,4],[-22,0],[-26,14],[-8,-4],[-9,2],[-13,16],[-5,0],[9,6],[-6,6],[-3,10],[-12,8],[-10,0],[-3,6],[-14,0],[-6,-8],[-4,2],[4,6],[-1,11],[9,3],[-8,8],[5,5],[15,2],[17,-3],[3,-4],[22,-3],[-6,8],[-11,4],[-8,6],[-2,14],[1,14],[15,8],[20,4],[8,-10],[-2,-4],[28,-16],[-2,-4],[10,-4],[0,-8],[15,-4],[3,-6],[9,-7],[7,-1],[7,-7],[16,12],[13,-4],[10,-18],[3,8],[6,0],[-15,7],[0,8],[-11,10],[-12,-4],[-11,6],[9,-1],[3,5],[-9,6],[-2,6],[-12,20],[2,2],[15,-2],[9,6],[12,2],[25,-16],[9,2],[-4,6],[7,4],[-12,8],[-12,2],[-3,8],[-31,14],[-22,10],[-9,-2],[12,12],[-1,6],[7,11],[1,10],[-3,12],[20,0],[16,-9],[9,-1],[7,-10],[6,-4],[6,-8],[0,-17],[13,-8],[14,4],[13,-6],[27,-8],[4,-8],[9,0],[29,-20],[18,14],[9,2],[2,-4],[-14,-20],[-10,-8],[7,-2],[6,-8],[5,-2],[-5,18],[15,8],[0,6],[21,2],[0,6],[-8,8],[3,4],[18,-6],[11,-18],[4,2],[21,-8],[3,-14],[8,10],[3,-10],[6,-4],[-1,-12],[7,-5],[6,-1],[-6,9],[3,7],[-7,6],[6,6],[7,-4],[3,4],[-15,4],[-22,14],[-18,8],[-9,20],[-14,6],[7,0],[-12,10],[-3,8],[3,6],[14,-6],[2,7],[5,0],[10,12],[2,6],[-10,0],[-7,-6],[-16,2],[0,13],[-4,7],[4,4],[-17,16],[-14,10],[6,6],[15,2],[-4,10],[26,-2],[28,12],[11,12],[-8,10],[-4,2],[7,4],[16,-4],[8,2],[9,5],[16,-1],[4,-6],[-6,-4],[17,-6],[4,-4],[13,-2],[12,-6],[5,-12],[9,-10],[1,-12],[19,-2],[8,2],[10,-4],[5,0],[11,-8],[9,-14],[12,-10],[3,-6],[15,-7],[-5,-3],[-4,-13],[5,-4],[-1,-6],[5,-12],[-4,-6],[2,-6],[-2,-20],[-5,-6],[6,-4],[6,-20],[-5,-22],[-9,-23],[-10,-2],[-15,-8],[-10,2],[-13,-6],[4,-4],[-6,-6],[5,-6],[14,10],[0,6],[6,-6],[9,4],[24,0],[7,-2],[11,-10],[-8,-16],[-14,-4],[13,-10],[10,-12],[10,-8],[8,0],[0,8],[7,-6],[-8,-2],[-3,-7],[8,-5],[-5,-6],[-26,-1],[-28,-15],[-6,-5],[11,2],[17,9],[21,6],[11,2],[20,-4],[11,2],[14,0],[9,-4],[-3,-10],[9,-5],[-43,-20],[9,0],[0,-4],[16,6],[18,4],[5,4],[16,6],[15,-8],[11,-8],[6,0],[8,-4],[4,2],[27,-6],[7,-2],[11,4],[22,-10],[-6,-10],[29,-4],[12,8],[23,6],[-18,-10]],[[2717,7158],[6,-4],[18,4],[6,0],[-12,-8],[-12,0],[-9,4],[3,4]],[[2261,7150],[3,-4],[-10,0],[-3,4],[10,0]],[[2898,7259],[-2,-4],[15,-7],[13,-2],[5,-8],[-3,-4],[-13,2],[-23,10],[-3,4],[3,7],[8,2]],[[3053,7305],[7,-4],[1,-13],[-5,-1],[-12,6],[0,12],[9,0]],[[3287,7351],[18,-4],[-14,-6],[-16,8],[12,2]],[[3016,7368],[10,-7],[-1,-4],[-19,-2],[-5,8],[14,2],[1,3]],[[3095,7379],[5,-3],[-11,-5],[-2,4],[8,4]],[[3169,7391],[7,-1],[1,-6],[-5,-5],[-5,3],[2,9]],[[3075,7410],[12,-4],[-3,-4],[-13,0],[4,8]],[[3090,7414],[0,-7],[-6,1],[6,6]],[[3112,7419],[6,-1],[-1,-11],[14,-4],[-7,-5],[-18,1],[-5,3],[1,12],[4,-2],[6,7]],[[3053,7426],[6,-2],[-9,-4],[3,6]],[[3080,7442],[18,-2],[-8,-8],[-13,0],[-5,6],[8,4]],[[3065,7444],[-4,-8],[-3,6],[7,2]],[[3217,7492],[6,-4],[-12,2],[6,2]],[[3413,6059],[11,8],[8,14],[10,6],[-1,2],[-11,0],[-13,-18],[-6,-6]],[[3192,6143],[9,7],[16,8],[3,6],[-4,2],[-25,0],[14,10],[33,12],[12,2],[10,-2],[2,-4],[6,6],[26,14],[25,-2],[11,2],[13,-2],[14,-8],[42,4],[3,8],[71,16],[18,0],[5,2],[32,2],[2,4],[-17,-2],[-22,0],[-28,-8],[-13,0],[-24,-4],[-15,0],[-12,-6],[-13,0],[-19,-6],[-14,0],[-4,-2],[-6,6],[-9,-2],[-9,2],[3,4],[-5,4],[-26,0],[-13,0],[-9,2],[-9,0],[9,6],[-1,6],[8,10],[24,12],[14,10],[23,19],[3,8],[22,12],[19,16],[3,0],[27,16],[-10,2],[-9,6],[-18,4],[-12,-4],[-7,0],[-13,6],[-2,4],[-9,2],[-29,4],[-2,-2],[-75,0],[-48,6],[-1,-4],[13,-6],[12,-2],[7,0],[46,-4],[26,0],[23,2],[31,0],[14,-6],[31,-4],[2,-6],[-17,-14],[-11,-4],[-2,-6],[-7,-2],[-19,-12],[-8,-1],[-30,-19],[-9,4],[-7,-2],[7,-13],[-21,-12],[-4,-8],[12,-6],[-24,-8],[-18,-12],[-3,10],[-9,2],[-20,-16],[-17,-4],[-3,-4],[-19,-4],[6,-6],[-12,-6],[-1,-4],[-24,-11],[-12,-11],[-7,7],[-21,-7],[-19,-16],[-15,-9],[-13,2],[-5,-6],[-6,4],[-13,2],[-18,0],[3,-2],[26,-6],[2,-6],[-22,-16],[-6,-10],[-20,-12],[-2,-6],[-12,-2],[0,-4],[-15,-8],[-13,-2],[-4,-6],[-21,-8],[-7,0],[-20,-8],[-35,-9],[-7,-3],[-6,12],[-8,3],[-27,3],[-13,6],[-7,0],[-3,-5],[-18,13],[15,8],[0,6],[9,6],[6,6],[-15,-2],[-8,-6],[-10,-16],[-7,-2],[-21,0],[-6,4],[-15,0],[-15,6],[-23,0],[1,2],[-17,6],[-8,-2],[-15,2],[0,2],[-26,10],[-14,12],[-25,16],[-1,8],[-6,8],[-13,2],[-9,7],[3,8],[-5,12],[11,4],[29,0],[15,6],[10,-4],[21,0],[2,4],[11,-2],[11,-5],[-2,-8],[36,-5],[26,-12],[3,5],[-22,9],[-9,0],[-16,7],[-4,7],[7,4],[19,4],[8,-2],[13,6],[10,2],[13,6],[20,6],[4,6],[16,6],[8,0],[9,6],[24,-4],[17,-14],[6,2],[18,-2],[3,-4],[29,0],[11,2],[24,-2],[8,4],[28,0],[18,2],[18,0],[1,4],[-25,0],[-12,4],[-19,-4],[-3,4],[-10,-4],[-10,2],[-17,-6],[-16,-2],[-18,8],[-14,0],[-5,6],[-13,4],[-15,8],[-21,2],[-15,-4],[-9,2],[-7,-2],[-6,8],[0,-8],[-10,-4],[-5,-6],[-41,-20],[-13,0],[-14,6],[-29,-8],[-8,4],[-25,0],[0,6],[-9,4],[-20,-2],[-2,-4],[-7,0],[-2,-8],[-9,0],[-6,4],[0,8],[-5,-4],[-20,2],[-17,-2],[-20,10],[-31,2],[-15,-4],[-8,6],[-11,0],[-10,-6],[-9,-6],[-16,2],[-29,2],[-7,4],[-6,0],[-15,6],[-11,12],[6,10],[-6,4],[14,-2],[0,8],[8,4],[14,-4],[6,2],[1,8],[-8,6],[2,2],[17,-2],[14,2],[0,5],[10,3],[25,3],[18,0],[4,-4],[14,1],[16,-3],[10,0],[5,7],[10,-3],[10,3],[12,-3],[2,8],[7,-4],[22,0],[5,4],[10,2],[2,10],[11,-4],[23,-14],[13,-4],[2,-7],[8,-4],[9,4],[9,9],[7,-1],[11,-10],[-7,-6],[7,-4],[21,2],[1,10],[-6,-2],[0,10],[-6,-3],[-20,4],[-2,6],[-10,2],[-2,7],[6,5],[13,-1],[9,-7],[27,2],[6,-8],[1,9],[6,5],[15,-1],[15,7],[10,-8],[12,1],[16,-3],[-3,4],[-19,4],[-24,6],[-8,0],[-14,4],[-40,8],[0,6],[9,16],[34,-2],[3,-4],[8,10],[13,-2],[19,2],[9,4],[2,4],[19,-2],[23,-2],[11,4],[6,14],[8,4],[18,2],[6,6],[-20,4],[-12,-10],[-14,-6],[-1,-10],[-9,0],[-9,4],[-18,-2],[-1,4],[-16,0],[-2,2],[-12,0],[2,4],[23,12],[15,6],[21,0],[2,4],[-14,7],[-15,-2],[-20,0],[-11,-3],[-16,1],[-12,-5],[-19,0],[-15,-6],[-10,4],[-8,-2],[-19,-8],[-6,4],[-7,-2],[-5,8],[-8,-4],[-9,11],[20,2],[8,3],[0,5],[10,2],[5,-6],[10,0],[7,-4],[11,4],[-5,3],[11,4],[-8,5],[-19,-2],[-10,6],[17,12],[-3,6],[5,4],[10,0],[0,12],[10,12],[24,-8],[-15,12],[-14,0],[4,8],[0,8],[9,2],[3,14],[7,-2],[2,6],[7,2],[31,0],[2,2],[18,0],[32,2],[16,-24],[37,-12],[9,-2],[7,2],[14,-4],[7,-4],[0,6],[17,0],[4,6],[13,0],[6,-2],[9,0],[16,6],[34,6],[17,0],[1,4],[-12,2],[2,4],[-19,-4],[-9,0],[-8,-4],[-28,-4],[-1,0],[-26,-8],[-7,4],[-9,0],[-9,6],[-14,0],[-20,14],[-5,8],[2,8],[5,-2],[6,7],[-21,8],[-13,1],[-33,-7],[3,-4],[-12,0],[-14,20],[-8,-5],[-12,1],[-12,12],[9,4],[-1,4],[16,12],[6,0],[6,6],[13,2],[17,8],[7,16],[27,2],[8,-2],[21,4],[9,4],[12,0],[4,-4],[25,-2],[18,0],[6,-8],[8,-2],[11,-12],[8,2],[4,-4],[15,-4],[13,-6],[8,2],[6,12],[17,0],[8,2],[26,2],[11,4],[19,0],[3,2],[16,0],[-11,6],[-9,0],[-51,-10],[-6,-4],[-4,4],[-22,-2],[-14,0],[-17,6],[-8,14],[-6,2],[-1,6],[-16,0],[-8,6],[-4,0],[-19,6],[-36,-4],[-13,0],[-8,4],[-9,2],[-11,8],[3,9],[-6,2],[14,12],[36,14],[6,8],[10,4],[-6,10],[-9,4],[-15,0],[0,6],[18,16],[12,0],[15,2],[10,6],[15,-4],[10,4],[21,4],[8,4],[19,0],[13,-14],[16,-6],[15,-12],[15,-4],[13,-6],[3,-4],[14,-6],[11,10],[24,8],[-6,4],[-15,-4],[-43,8],[-22,16],[-7,0],[-22,14],[-3,6],[20,10],[9,6],[-3,7],[14,4],[20,0],[24,6],[-10,4],[-12,-4],[-21,-2],[-16,-6],[1,-6],[-9,-7],[-19,-4],[6,0],[-12,-6],[-10,0],[-15,-4],[-9,2],[-16,-6],[0,2],[-18,-4],[-4,8],[-19,-4],[-8,6],[-23,4],[-11,-4],[-16,-2],[-44,0],[-8,4],[13,4],[-8,6],[11,9],[-10,0],[7,8],[18,4],[2,7],[20,-1],[-5,6],[5,2],[-3,6],[21,0],[0,6],[16,0],[-7,-12],[13,4],[18,0],[16,6],[17,0],[-3,2],[7,6],[18,0],[16,-2],[10,2],[27,10],[5,6],[39,16],[4,12],[14,12],[0,4],[-16,2],[-16,-8],[-6,-8],[-24,-8],[-4,-8],[-30,-18],[-21,-8],[-19,2],[-18,-4],[-9,4],[12,4],[-25,0],[-12,2],[-3,8],[9,6],[21,2],[12,4],[-2,6],[-15,4],[8,12],[-3,4],[-8,-8],[-7,-2],[-3,-8],[-13,-6],[-22,-4],[-3,-4],[-24,-4],[-1,-2],[-23,-12],[-9,-6],[-20,-4],[-24,-2],[-15,-2],[-16,10],[-6,16],[-3,-12],[-6,0],[-7,14],[-3,14],[7,-6],[3,14],[13,-2],[-10,10],[-6,0],[-3,8],[11,14],[9,5],[-11,4],[-26,-4],[-11,4],[-6,4],[0,10],[-9,10],[3,8],[-3,10],[3,2],[-3,8],[17,22],[0,22],[8,4],[-5,6],[14,-2],[0,8],[-6,7],[12,4],[5,-4],[13,10],[12,-10],[16,-2],[12,-7],[1,-6],[24,-4],[-6,-6],[8,-4],[20,4],[6,-4],[5,4],[-8,4],[6,4],[11,-6],[-2,-14],[15,-8],[10,2],[12,-10],[8,-2],[5,-6],[5,4],[-7,8],[2,4],[-10,14],[13,0],[0,-6],[9,2],[8,-8],[-2,-6],[12,0],[-4,8],[7,-2],[9,8],[7,-6],[9,4],[17,-4],[-6,4],[8,2],[5,-6],[6,6],[16,-6],[18,0],[10,8],[-4,10],[-16,2],[-49,2],[-5,2],[-16,0],[-12,-4],[-16,4],[-2,-4],[-13,0],[-9,-4],[-12,6],[-12,0],[-7,8],[-9,-2],[-3,9],[13,0],[9,-3],[-5,10],[-14,0],[-19,4],[-6,3],[-9,10],[3,8],[-31,22],[-18,6],[-18,4],[-10,-4],[-4,2],[1,10],[9,2],[-3,8],[22,20],[-3,8],[6,6],[12,-2],[2,4],[14,7],[17,1],[13,-6],[-3,-4],[10,2],[21,-4],[4,-6],[12,0],[-9,8],[15,2],[-7,5],[1,6],[-10,-2],[3,8],[-10,10],[-17,2],[-8,-2],[-38,2],[-19,10],[-23,2],[-8,4],[0,4],[9,8],[-6,4],[9,14],[1,10],[-6,10],[-8,24],[7,9],[-6,15],[6,4],[12,-3],[16,0],[17,10],[11,0],[3,-3],[16,0],[6,5],[5,-4],[19,2],[15,-6],[-10,-12],[2,-8],[11,2],[-5,-9],[12,-4],[11,-6],[-6,-8],[3,-4],[-5,-8],[15,-12],[21,-10],[12,-10],[14,0],[9,6],[-12,2],[-14,14],[14,6],[9,-4],[-6,-4],[21,2],[3,8],[-18,2],[14,12],[3,14],[-2,9],[-18,2],[3,4],[-9,6],[-13,2],[-21,2],[5,6],[-8,3],[-9,13],[12,2],[-10,5],[9,7],[-2,4],[9,12],[26,10],[28,-6],[4,-8],[10,8],[12,-4],[2,-4],[-8,-6],[11,-4],[-5,-6],[2,-7],[12,-8],[2,-7],[18,-2],[9,-3],[19,-1],[2,-3],[13,0],[5,-4],[13,-3],[4,6],[-6,6],[3,6],[12,2],[-1,6],[10,4],[-6,2],[0,8],[15,14],[9,-4],[9,0],[13,-6],[39,-12],[14,-8],[2,-5],[7,-5],[13,-2],[21,-8],[24,0],[7,-4],[34,-8],[5,4],[-24,11],[2,5],[-5,4],[-22,4],[-25,2],[-16,5],[-8,13],[-25,12],[-13,0],[-34,4],[0,8],[-11,6],[6,6],[6,-2],[24,0],[-5,6],[20,-2],[6,-12],[11,-4],[6,-4],[12,-4],[18,0],[19,2],[3,2],[33,4],[1,-4],[16,-2],[14,-10],[10,-2],[10,-8],[14,-2],[15,-6],[5,-5],[23,0],[17,-16],[14,-17],[22,-21],[7,10],[-17,19],[1,5],[-13,8],[-3,7],[-22,9],[-11,0],[-4,8],[-17,7],[-10,-4],[-3,8],[-12,6],[-12,2],[-16,10],[-13,4],[6,4],[16,0],[4,4],[9,2],[9,6],[0,12],[-9,-10],[-6,0],[2,12],[-33,0],[-2,2],[-12,2],[-5,8],[-20,4],[-15,0],[-11,3],[-19,2],[6,7],[-13,5],[-12,12],[-21,-1],[7,7],[-10,12],[-9,4],[-13,-2],[-12,0],[-29,6],[3,10],[8,4],[-12,6],[-20,4],[-12,14],[10,2],[-6,4],[8,8],[-2,4],[11,-2],[-2,6],[14,4],[23,-10],[9,-8],[10,0],[-1,-6],[12,-4],[9,-12],[6,-2],[-5,8],[6,8],[19,0],[6,-8],[8,2],[17,-6],[6,8],[12,0],[-7,4],[6,8],[4,-4],[-3,11],[14,7],[-8,6],[-3,-2],[-7,5],[-14,4],[-1,4],[25,2],[12,-2]],[[4068,7041],[-5,-6],[10,-8],[-14,-8],[-2,-6],[-10,-3],[-7,-6],[13,6],[13,3],[14,10],[14,3],[18,8],[13,9],[6,2],[22,16],[36,14],[39,18],[30,8],[7,-2],[41,4],[-2,-12],[6,-6],[15,2],[23,0],[6,2],[30,4],[24,8],[12,2],[9,6],[10,-4],[24,2],[8,-4],[-13,-10],[-17,-6],[-14,-8],[-22,-14],[-6,-8],[-11,-4],[-21,-12],[-4,-10],[-6,-2],[3,-10],[11,-9],[-16,4],[-19,1],[-37,-13],[-2,-12],[-13,-6],[-9,2],[-12,0],[-17,4],[-14,0],[-7,-6],[18,2],[13,-6],[13,2],[9,-4],[0,-4],[-15,-14],[-8,-2],[-11,-8],[-4,-6],[-25,0],[-12,2],[-21,0],[-15,-2],[-12,4],[-20,0],[-19,6],[-19,0],[-32,-8],[-6,-8],[-9,2],[-4,-12],[-17,2],[-7,-4],[-2,-6],[-14,-4],[6,-4]],[[4246,5434],[9,-7],[14,4],[0,5],[8,-4],[-2,-5]],[[4079,5553],[-11,0],[-17,6],[-14,18],[-3,6],[-20,-2],[-12,8],[3,8],[-9,4],[-3,6],[3,8],[-10,6],[17,4],[6,4],[-27,10],[-3,-8],[-8,8],[-17,6],[-28,-2],[-11,4],[-16,-2],[-8,11]],[[4577,5696],[-8,2],[17,-12],[7,2],[2,-6],[-8,-2],[10,-6],[8,4],[-1,8],[15,-2],[-2,-8],[9,-7],[12,-1]],[[6304,6565],[-9,-8],[1,-8],[-13,-4],[2,-6],[-17,-8],[2,-4],[-11,-4],[-2,-4],[-9,-1],[-5,-10],[-12,-4],[0,-8],[-7,0],[1,-6],[-8,-4],[-6,-10],[1,-6],[-15,-6],[-10,-6],[3,-8],[9,0],[-6,-4],[1,-10],[4,-4],[-5,-17],[3,-11],[-6,0],[-3,-9],[-9,-3],[3,-3],[-6,-4],[2,-8],[-15,-14],[-17,-8],[-10,-8],[-14,-4],[-2,-10],[-11,-2],[-18,-18],[-17,-10],[-21,-6],[-17,-5],[-10,-11],[-8,3],[-17,-1],[-29,-21],[-13,0]],[[4088,5478],[-11,4],[-11,8],[-23,4],[-10,4],[-16,12],[-17,4],[-31,0],[-3,4],[-23,0],[-6,2],[-14,0],[2,4],[-13,5],[3,10],[-7,-4],[6,-2],[-2,-6],[10,-3],[-16,-2],[-21,8],[-5,0]],[[3862,3147],[-14,0],[-5,-6],[31,-8],[4,-8],[14,4],[8,-6],[1,-8],[-6,0],[-3,-6],[3,-2],[-3,-6],[13,0],[7,-4],[-4,-6],[13,2],[5,-2],[-11,-2],[8,-3],[6,-11],[-20,-4],[-4,-3],[-6,6],[-10,-4],[-11,4],[2,8],[-9,11],[-6,2],[3,10],[-16,0],[0,4],[-13,0],[-8,2],[-8,-4],[-14,0],[-6,6],[12,6],[-3,4],[-10,0],[-8,8],[12,2],[6,4],[-1,8],[19,-4],[11,2],[7,4],[14,0]],[[4057,3242],[6,-4],[13,2],[4,-6],[4,4],[27,-2],[3,-6],[8,-2],[5,2],[34,0],[11,-4],[20,0],[1,-6],[9,-4],[4,-6],[0,-8],[-7,-7],[-16,-10],[6,-2],[11,4],[-5,4],[9,0],[5,-4],[2,-8],[18,0],[16,-6],[-6,-2],[0,-4],[7,-4],[7,-12],[1,-10],[15,-4],[0,-4],[-10,-10],[4,-4],[25,2],[12,6],[28,2],[3,4],[19,8],[21,-2],[6,-2],[20,-2],[14,2],[16,-4],[-6,-6],[-11,-2],[0,-6],[-8,0],[-10,-12],[-10,-8],[1,-8],[-11,-2],[-12,-10],[-17,-4],[-19,-11],[-11,-2],[-3,-10],[-14,2],[-10,-6],[-10,0],[-14,-8],[-4,-8],[0,-10],[-14,-6],[-14,-2],[-22,-12],[-6,-2],[-6,-6],[-18,-8],[-17,-4],[-6,2],[-13,0],[-8,-12],[15,-6],[-16,4],[-20,2],[-13,8],[-23,2],[-3,-4],[-8,-4],[8,8],[-12,18],[23,6],[8,-2],[7,12],[-4,8],[-12,-2],[-5,-6],[-9,-4],[-3,-6],[-27,-14],[2,4],[-8,2],[-3,6],[-8,6],[2,4],[-9,2],[-13,-2],[-6,-2],[0,6],[-4,4],[-13,-2],[-1,8],[7,10],[-6,8],[-18,10],[1,6],[-25,12],[-2,8],[-7,4],[-1,5],[-26,12],[-1,4],[25,12],[0,4],[14,0],[3,6],[-20,-6],[3,12],[-9,6],[-2,4],[-10,2],[-1,4],[14,6],[0,8],[8,12],[6,12],[-12,12],[3,5],[-8,0],[-1,12],[12,2],[3,-2],[29,2],[2,6],[12,2],[1,-4],[24,2],[9,8],[11,-6],[19,0],[-6,2],[10,8],[17,4]],[[5345,3068],[-6,3],[11,-1]],[[5350,3070],[-5,-2]],[[5354,3082],[-8,1]],[[5354,3073],[-24,8],[5,2],[19,-1]],[[5367,3081],[-13,-8]],[[5341,3085],[-4,2]],[[5337,3087],[-1,0]],[[5336,3087],[-2,2]],[[5334,3089],[-6,4]],[[5260,2952],[-4,4],[-9,24],[4,4],[-1,6],[-13,2],[0,2],[-12,2],[-2,-4],[-14,-2],[-5,2],[-13,-4],[-26,6],[-1,6],[-8,2],[2,14]],[[5158,3016],[-11,8],[-20,8],[6,8],[-13,2],[-4,8],[5,2],[12,10],[-22,4],[-21,12],[-12,3],[31,18],[-17,8],[-6,0],[-5,4],[3,10],[-19,-6],[-7,10],[-11,0],[0,4],[13,6],[-1,2],[-15,-4],[-3,2],[4,10],[8,0],[11,4],[0,4],[9,6],[-2,6],[8,0],[-3,6]],[[5076,3171],[35,4],[15,0],[2,-14],[5,-6],[26,-12],[13,2],[5,-8],[53,-18],[24,-16],[12,-4],[21,-12],[12,-2],[4,-6],[20,-8],[20,-5]],[[5343,3066],[-7,-4],[-7,-10],[-1,-8],[9,-2],[1,-4],[12,-6],[-9,-4],[-15,-12],[9,-6],[-8,-4],[2,-6],[9,-4],[5,-6],[28,-6],[-3,-6],[5,-10],[-12,4],[-12,2],[-6,-8],[-9,0],[-7,4],[-19,0],[-14,-6],[-8,-8],[-10,-4],[-16,0]],[[5343,3066],[21,-10],[5,-4],[9,0],[21,-6],[85,-30],[18,0]],[[5460,2972],[-30,-2],[-10,-6],[0,-8],[-9,-6],[-14,-5],[1,-8],[-6,2],[-4,-6]],[[5388,2933],[-23,-6],[-8,4],[-31,-10],[-9,-4],[-16,0]],[[5301,2917],[-11,2],[-10,18],[5,8],[-23,3],[-2,4]],[[5350,3070],[5,-4],[-1,7]],[[5502,3016],[-10,0],[-79,26],[-28,10],[-11,0],[-29,16]],[[5558,2885],[-10,-4],[1,-6],[6,0],[-14,-8],[-13,4],[-3,4],[-8,2],[-2,4],[-13,2],[-6,-6],[-34,2],[-15,4],[-7,-6],[-17,0],[-4,6],[-14,2],[-9,2],[3,6],[14,6],[-13,6],[-11,22],[-1,6]],[[4133,1695],[2,-4],[-15,-2],[4,6],[9,0]],[[4152,1701],[-1,8],[4,4],[12,0],[9,9],[10,4],[7,0],[9,-7],[11,3],[5,-11],[14,-6],[12,-12],[8,6],[11,4],[-7,2],[-6,8],[12,9],[1,4],[10,2],[9,6],[-9,4],[4,10],[18,6],[10,0],[9,6],[5,0],[7,-10],[19,4],[8,4],[11,2],[9,-2],[7,2],[17,-6],[-2,-14],[2,-8],[7,0],[16,6],[23,2],[24,6],[-2,-10]],[[4465,1736],[-5,-6],[4,-4],[-14,-11],[-9,-2],[-4,-10],[-14,-2],[-6,-10],[4,-6],[-3,-6]],[[4418,1679],[6,-4],[-11,2],[1,-8],[-11,-2],[-2,-8],[-14,0],[1,-22],[-30,-6],[-26,2],[-6,-6],[-8,0],[-19,18],[0,-6],[-8,12],[-13,2],[-23,2],[-7,-6],[-22,0],[-12,-2],[-7,-6],[-21,-2],[-15,2],[-20,10],[-20,12],[-20,16],[-11,16],[4,4],[8,-4],[10,-2],[-2,-4],[16,2],[2,-6],[15,4],[5,-4],[7,8],[-12,0],[-1,8]],[[4465,1736],[6,0],[15,-10],[26,2],[14,6]],[[4526,1734],[16,-8],[2,-7],[14,-6],[14,-10],[2,-10],[12,-16],[-2,-6],[11,2],[21,-8],[-4,-8]],[[4612,1657],[-17,2],[-10,-2],[-3,4],[-19,2],[-4,-6],[-1,6],[-12,0],[-3,-4],[-17,-2],[-9,-6],[-5,-12],[-20,-8],[-19,-2],[-7,-4]],[[4466,1625],[-18,-2],[-17,2],[6,-4],[1,-12],[-18,-2],[-4,-9],[20,-4],[6,-6],[-3,-10],[-6,-2],[3,-10],[15,4],[17,0]],[[4468,1570],[-3,-10],[3,-6],[19,-4],[-3,-4],[-13,-2],[-18,4],[-11,-4],[-10,6],[-8,-4],[-14,0],[-2,-6],[-5,-2],[-9,6],[-10,-2],[-4,4],[-13,0],[-8,4],[0,4],[-11,-6],[-13,2],[-17,-6],[-7,-8],[13,-6],[-5,-6],[-17,4],[-21,2],[-10,0],[-7,-4],[0,-6],[-8,4],[-18,0],[-33,12],[-10,6],[-15,-2],[-11,4],[17,6],[2,6],[-7,18],[-10,12],[8,6],[11,-2],[7,2],[7,9],[16,4],[9,16],[13,-6],[-12,-12],[16,2],[3,-2],[8,2],[-1,6],[-6,4],[15,0],[10,-4],[10,-8],[12,-4],[11,2],[5,8],[20,0],[4,6],[28,2],[-12,2],[7,6],[21,4],[12,0],[-5,4],[12,8],[-9,12],[8,2],[8,12],[8,0],[3,12]],[[4466,1625],[10,0],[28,-10],[-6,-8],[21,4],[5,-9],[8,-10]],[[4532,1592],[2,-2],[-14,0],[-25,-4],[-22,-10],[-5,-6]],[[4612,1657],[-4,-12],[-7,-2]],[[4601,1643],[-10,-12],[-6,-2],[-1,-10],[-10,-10],[-3,-13],[3,-2]],[[4574,1594],[-7,0],[-8,-4],[-22,-4],[-5,6]],[[4623,1625],[16,-8],[5,2],[14,-4],[21,-2],[2,-10],[15,0],[0,2],[10,6],[11,-4],[16,8],[-4,4],[9,4],[12,0],[16,12],[8,10],[24,12],[19,12],[21,14],[11,4],[17,-6]],[[4866,1681],[-2,-10],[3,-6],[-5,-6],[2,-4],[-5,-6],[8,-4],[7,-12],[10,-6],[1,-8]],[[4885,1619],[-3,-4],[-14,2],[-14,-2],[-1,-4],[-40,6],[-23,2],[-15,-16],[-5,-17],[4,-6],[-12,0],[-3,-8],[16,-16],[21,-10],[-3,-4],[8,-6],[-2,-10],[-6,-4],[-12,0]],[[4781,1522],[-16,-2],[-16,-8],[-17,4],[-14,0],[-7,4],[-14,-4],[-2,2]],[[4695,1518],[-18,22],[-16,12],[-10,12],[-12,8],[-23,12],[-8,6],[6,6],[13,5],[1,8],[-7,8],[2,8]],[[4601,1643],[9,-4],[1,-4],[7,2],[7,-10]],[[4625,1627],[-5,-6],[2,-8],[5,-4],[-5,-10],[-18,-5],[-11,2],[-9,-4],[-10,2]],[[4695,1520],[-2,0]],[[4693,1520],[2,0]],[[5237,1482],[3,0],[9,8],[6,0],[-4,12],[0,8],[11,0],[1,6],[28,-2],[7,-4]],[[5298,1510],[0,-4],[-6,-2],[-3,-6]],[[5289,1498],[1,-10],[5,-4]],[[5295,1484],[-5,-2],[-13,-11],[-8,-4],[-18,-2]],[[5251,1465],[-4,4]],[[5247,1469],[-10,13]],[[5237,1482],[-3,2],[-23,0],[-11,8],[-7,2],[5,6],[-15,2],[-2,14],[-7,4]],[[5174,1520],[11,4],[12,10]],[[5197,1534],[10,-2],[8,2],[7,0],[11,4],[20,0],[15,4],[13,-10],[6,4],[9,-2],[15,-6]],[[5311,1528],[6,2],[4,-4],[14,-8]],[[5335,1518],[-17,-8],[-8,4],[-12,-4]],[[4994,1578],[-31,4],[-4,4],[-10,0],[-3,4],[-10,4],[-13,15],[-10,4],[-4,4],[-12,2],[-12,0]],[[4866,1681],[38,-4],[5,2],[16,-8],[13,-2],[19,-14],[24,-8],[17,0],[22,-16],[16,-18],[13,-10],[12,-5]],[[5061,1598],[-1,-22],[-47,-2],[2,6],[-14,4],[-7,-6]],[[5297,1752],[24,4],[26,-8],[5,2],[17,-6],[15,-12],[-8,-6],[7,-7],[8,-2],[8,-8],[-6,-18],[8,-6],[23,2],[11,-2],[7,-4],[-18,-20],[30,2],[1,-2],[-12,-16],[-8,2],[0,4],[-11,-2],[1,-10],[-14,2],[-2,-6],[7,-10],[-3,-4],[12,-12],[24,-7]],[[5449,1602],[-15,1],[-9,-7],[-10,0],[-15,-4],[-10,6],[-10,0],[-3,-6],[5,-2],[-2,-6],[-14,4],[-9,6],[-10,2]],[[5347,1596],[-5,6],[-14,3],[3,6],[21,14],[-2,8],[6,2],[1,10],[-13,12],[-14,-4],[-16,2],[0,4]],[[5314,1659],[-1,4],[7,8],[2,12],[-4,16],[5,8],[-8,15],[9,3],[-17,9],[-20,12],[10,6]],[[5297,1752],[-22,4],[10,8],[-4,6],[-7,4]],[[5274,1774],[13,2],[1,6],[9,4],[2,4],[11,4],[17,-4],[-1,6],[7,0],[-1,6],[13,2],[7,8],[11,4],[-8,8],[1,4],[15,4],[12,0],[5,12],[-11,13],[1,4],[-10,2],[-2,4],[-16,6],[-5,6],[3,4],[-9,14],[8,4],[-11,8],[25,16]],[[5743,1707],[-3,-6],[-15,-4],[7,-6],[2,-12],[9,-4],[0,-4],[-9,0],[-5,-2],[10,-4],[4,-4],[-4,-8],[13,-6],[0,-4],[-23,-2],[-3,-8],[18,-2],[-10,-8],[-1,-6],[8,2],[4,-2],[-2,-8],[11,-11],[-11,-12],[-17,-6],[-7,-4],[-17,-14],[-13,-2]],[[5689,1560],[0,4],[-14,4],[4,4],[-5,10],[-12,-4],[-9,-6],[-10,-2],[2,6],[-10,2],[-36,4],[-3,-6],[-13,4],[8,6],[-3,6],[23,0],[1,7],[-14,8],[-6,8],[-12,6],[-28,-6],[-6,-2],[-12,0]],[[5534,1613],[-13,-6],[-1,-4],[-7,2],[-3,-6],[-8,4],[-12,-9],[-12,2]],[[5478,1596],[-2,7],[-6,2],[-11,-4],[-10,1]],[[5463,1580],[0,-8],[11,2],[32,10],[12,15],[-5,0]],[[5513,1599],[2,6],[4,-3],[7,9],[8,2]],[[5689,1560],[-29,-2],[-33,-10],[-30,-12],[-35,-10],[-12,0],[-10,-4],[-20,-4],[-4,-2],[-17,4],[-21,-2],[-14,2],[-17,4],[-3,6],[11,4],[4,6],[-18,8],[10,6],[1,4],[-17,8],[-3,4],[4,4],[-2,12],[13,-4],[2,4],[14,-6]],[[5324,1574],[11,-4],[2,4],[18,4],[9,4],[-7,2],[-10,6],[0,6]],[[5478,1596],[1,-10],[-6,0],[-6,-6],[-5,0],[-11,6],[-5,-4],[-6,4],[-8,0],[3,-10],[-5,-6],[18,-12],[-10,-10],[17,-10],[-17,-6],[-8,-12],[-9,-6],[-27,-10],[-8,0],[-6,-6],[-24,-8],[-10,-2]],[[5346,1488],[-7,8],[11,2],[1,4],[8,2],[-11,8],[0,4],[-13,2]],[[5311,1528],[9,6],[2,6],[7,2],[-2,4],[8,-2],[4,4],[-9,8],[-9,0],[-11,4],[-4,4],[4,6],[14,4]],[[5463,1580],[6,0],[3,4],[6,0],[9,6],[-3,4],[8,0],[9,8],[12,-3]],[[4141,2911],[0,20],[-6,8],[-4,13],[11,11],[6,0],[3,-5],[-6,-3],[8,-7],[4,-9],[9,8],[0,15],[5,8],[12,4],[14,4],[9,6],[11,12],[14,10],[28,10],[6,4],[-1,14],[14,10],[19,6],[13,0],[19,10],[5,0],[14,6],[4,-4],[12,0],[11,4],[10,-8],[17,4],[9,0],[25,4],[4,5],[16,2],[2,2]],[[4458,3075],[9,2],[15,-15],[45,-16],[0,-6],[-7,-10],[-8,-2],[-13,-10],[1,-10],[-6,-12],[-21,-6],[-15,-8],[-12,-18],[23,2],[-10,-4],[-12,1],[-12,-16],[2,-4],[12,2],[5,-8],[-2,-4]],[[4452,2933],[-6,-10],[-11,-4],[-21,2],[-20,-2],[-2,-6],[-7,-8],[1,-12],[3,-2],[-18,-10],[-12,2],[-18,0],[-15,-2],[-5,2],[-9,-4],[-9,2],[-3,6],[-13,0],[-2,-4],[-17,-6],[-23,-10],[-5,2],[-11,0],[-14,8],[-17,-18],[-7,0],[-9,6],[4,12],[-8,4],[5,8],[-7,4],[-12,-2],[-6,-4],[-6,10],[-1,8],[5,4],[-15,2]],[[4458,3075],[5,6],[14,2],[37,10],[13,2],[21,6],[17,8],[14,4],[11,-2],[8,2],[12,8],[7,-2],[1,-4],[10,-4],[4,-6],[10,-4],[5,-10],[-12,-4],[-5,-5],[3,-5],[15,-7],[2,-6],[-15,-6],[2,-4],[-8,-4],[-2,-8],[3,-2],[-6,-6],[0,-8],[6,10],[1,14],[7,4],[-2,4],[12,4],[4,6],[-14,10],[3,5],[13,6],[6,10],[-16,6],[-16,12],[-7,2],[-6,12],[1,6],[-7,8],[-26,8],[-2,6],[10,4],[13,-2],[14,-4],[6,2],[5,-12],[18,-4],[22,4],[12,2],[9,-8],[9,-2]],[[4699,3139],[1,-4],[-11,-4],[3,-10],[-12,-10],[11,-8],[6,2],[5,-6],[-5,-12],[5,-9],[13,-4],[1,-6],[-4,-10],[5,-6],[-5,-4],[6,-2],[-5,-20],[0,-8],[5,-2],[-3,-10],[9,-8],[-11,-4],[5,-8],[18,-2],[8,-8],[0,-12],[8,-21],[-8,-4],[-4,-24],[-7,-14],[3,-8],[10,-2],[15,0],[1,-8],[-9,-2],[29,-14],[-12,-10],[-7,-14],[7,-4]],[[4770,2839],[-20,0],[-31,-6],[-13,-5],[-17,-14],[-8,-2],[-22,-2],[-14,-6],[-15,4],[-5,8],[-7,0],[-8,13],[-29,12],[-13,6],[0,8],[4,4],[-7,4],[-3,6],[-15,2],[-2,-2],[-22,-2],[-23,-6],[-21,0],[-6,2],[-2,6],[4,6],[-7,10],[4,12],[11,6],[4,10],[-13,8],[4,6],[-9,-2],[-17,8]],[[5301,2917],[2,-6],[-9,-12],[-10,-8],[14,-12],[0,-10],[-29,6],[-29,-2],[-4,-2],[-15,-2],[-15,-10],[-8,0],[-16,-6],[-22,-2],[-12,-6],[-13,12],[-21,-6],[-11,2],[0,8],[-7,-6],[-10,-4],[-6,2],[-19,-8],[-5,4],[-13,4],[-10,-4],[-15,4],[-26,-8],[-3,4],[-3,-12]],[[4986,2837],[-10,-4],[-14,-11],[-7,3],[-14,-7],[-3,4],[-7,0],[-18,5],[-10,-5],[-15,0],[-10,2],[-12,-4],[-8,5],[-12,16],[1,4],[-6,4],[5,4],[4,8],[-33,-4],[-25,-10],[-13,0],[-9,-8]],[[4699,3139],[17,-2],[0,-10],[11,-6],[23,-4],[22,2],[8,-2],[17,0],[19,2],[14,-4],[14,0],[27,6],[44,12],[18,6],[5,-8],[10,-8]],[[4948,3123],[-13,-12],[-11,-2],[-4,-16],[8,-4],[-2,-6],[-5,2],[-7,-8],[6,-7],[12,-2],[3,2],[26,-10],[2,-4],[15,-4],[0,-8],[-5,-10],[3,0],[-5,-14],[2,-14],[11,-6],[23,-4],[5,-2],[8,4],[2,4],[13,-2],[7,2],[5,6],[10,2],[10,0],[9,6],[2,-2],[-5,-10],[5,0],[7,-6],[-4,-14],[-8,-6],[-14,-8],[-10,-8],[8,-6],[3,3],[20,-3],[11,7],[3,-9],[15,1],[3,11],[14,0],[2,4],[-21,18],[-1,4],[12,2],[-1,6],[15,4],[-4,6],[14,0],[16,6]],[[4948,3123],[1,2],[32,-14],[3,0],[-30,12],[-18,12],[17,10],[11,4],[24,2],[52,14],[36,6]],[[3703,2639],[13,-2],[0,-6],[-7,-6],[-11,0],[5,14]],[[4986,2837],[8,0],[7,-5],[-5,-3],[0,-11],[-18,-8],[-17,-12],[1,-2],[-8,-8],[8,-4],[14,-4],[2,-10],[-14,-2],[0,-6],[-9,-6],[7,-8],[3,-8],[6,-6],[-9,-6]],[[4962,2728],[-22,-22],[-12,-4],[-15,2],[-32,-9],[2,-4],[-8,-2],[-13,4],[-5,-8],[-5,-4],[0,-8],[-11,-8],[2,-8],[9,-4],[6,-16],[-4,-8],[6,-10],[-3,-2],[7,-6],[-7,-2],[-7,-8],[-5,-15],[2,-3],[-14,-4],[-1,-3],[-16,-2],[-13,0],[-8,-4],[-20,0],[-6,2],[-19,-10],[1,-6],[-7,-4],[-7,6],[-19,0],[-8,2],[-14,-10],[-6,4],[-3,-4],[-25,2],[-9,6],[-12,-4],[-3,-6],[-8,-4],[-12,-10],[-2,-12],[8,-6],[-11,-2],[2,-6],[-5,-2],[7,-20],[-18,0],[-14,-14],[-7,0],[-2,-5],[-7,-1]],[[4569,2466],[-5,2],[-17,0],[1,-4],[-14,-2],[-3,-6],[4,-3],[-6,-8],[-6,6],[-21,0],[-9,-4],[-14,-2],[-27,-6],[-22,-2],[-9,-2],[-17,-2],[-9,4],[-11,16],[-30,35],[-8,6],[20,-8],[29,2],[1,4],[-12,-4],[-16,6],[-14,-4],[-10,4],[-2,6],[17,30],[16,20],[35,16],[-1,20],[8,5],[-5,-8],[4,-1],[18,4],[-5,5],[11,0],[11,6],[1,-6],[6,6],[5,0],[19,16],[11,0],[21,12],[11,-4],[2,2],[-14,2],[-16,-2],[-19,-10],[-18,-2],[-18,-2],[-11,-12],[-18,-2],[-6,2],[-20,24],[-19,16],[-13,10],[-28,22],[-8,14],[17,8],[2,-4],[12,4],[2,6],[-9,-2],[0,6],[8,9],[-2,8],[-22,24],[-6,12],[9,6],[4,-2],[20,-2],[8,2],[22,4],[10,12],[14,2],[8,6],[7,2],[4,6],[14,4],[-12,0],[-8,-8],[-14,-6],[-12,2],[-12,-4],[-5,-6],[-12,-4],[-9,2],[4,6],[-16,6],[-2,4],[-4,-12],[-18,-8],[-22,0],[-21,6],[-2,0],[-27,6],[-6,-4],[-22,-2],[-12,-4],[-32,2],[-23,-6],[-4,-8],[3,-4],[-48,4],[-15,0],[-10,-4],[-4,-6],[-2,6],[-9,-4],[17,-6],[-28,-2],[-28,-6],[-21,-16],[9,-4],[-4,-4],[-15,-4],[-12,-9],[5,-6],[-5,-10],[5,-4],[8,2],[4,-6],[-3,-10],[-4,-2],[-5,4],[-17,-2],[-5,-10],[-11,-4],[-10,6],[0,8],[4,6],[-18,10],[-31,10],[-12,2],[-10,0],[-13,-14],[-17,-8],[-7,-2],[-1,6],[-10,2],[-15,-4],[-10,-8],[-5,6],[-13,2],[-15,0],[-9,-18],[-25,4],[-10,8],[6,6],[10,4],[-1,8],[11,4],[7,10],[10,4],[1,7],[-6,2],[5,10],[6,-2],[9,4],[11,0],[6,14],[12,0],[8,4],[7,12],[16,12],[12,0],[16,18],[21,2],[13,10],[11,2],[19,-2],[11,4],[10,-4],[27,12],[11,8],[3,6],[10,0],[6,4],[6,9],[17,8],[7,8],[28,0],[17,14],[16,8],[3,4],[15,6],[5,10],[10,8],[1,12]],[[5284,2750],[-9,8],[-19,2],[-2,-2],[-18,-6],[-7,0],[-11,-4],[0,-10],[-12,0],[-4,-8],[-40,0],[-16,4],[-6,8],[-13,2],[-13,0],[-20,8],[-9,0],[-11,2],[-9,-2],[-5,-8],[-8,-6],[-36,-8],[-41,-6],[-13,4]],[[5204,2353],[-22,10],[-17,-2],[-2,-2],[-13,-2],[-9,-6],[-9,-2],[-5,-4],[-12,-1],[-5,1],[-15,-8],[-6,4],[-12,0],[-4,4],[-11,-2],[-12,0],[-12,-6],[6,-2],[-13,-2],[-5,-3],[-7,-12],[-14,-10],[-18,-2],[-17,-10],[-15,2],[-8,10],[-17,6],[-7,-4],[-12,0],[-4,-8],[-9,-2],[-16,-10],[-6,-8],[-20,-2],[-1,-6],[7,-6],[-16,0],[-24,10],[-17,4],[0,4],[-20,6],[-14,-6],[-4,-10]],[[4767,2276],[-6,-2],[-9,10],[-2,10],[-7,6],[3,6],[-6,2],[2,10],[-14,2],[-7,4],[3,4],[-40,16],[8,15],[-1,10],[18,2],[7,12],[-2,8],[10,4],[-4,8],[-12,0],[-7,-6],[-13,-2],[-6,-10],[-23,0],[0,-4],[-14,-4],[-2,4],[-10,0],[-1,4],[-11,8],[-6,14],[0,4],[7,8],[-2,4],[-2,20],[-18,8],[-14,0],[-33,0],[-5,2],[-12,-2]],[[4536,2451],[-2,9],[13,3],[0,5],[22,-2]],[[3847,2010],[0,0]],[[3847,2010],[0,0]],[[3844,2010],[-8,-8],[-1,-4],[-12,-4],[-11,6],[-3,6],[12,2],[-3,8]],[[3818,2016],[16,0],[10,-6]],[[4767,2276],[21,-12],[5,-6],[-30,-8],[-15,2],[-28,-16],[-10,-6],[4,-5],[11,-3],[3,-8],[-7,-9],[18,-8],[9,-6],[-11,0],[-6,-4],[-7,2],[-13,-8],[-1,-4],[-8,-6],[8,-8],[-5,-10],[7,-6],[-7,-8],[4,-6],[-6,-12],[6,-6],[-5,-12],[3,-4],[-3,-8],[4,-4],[1,-11],[4,-8],[-16,-10]],[[4697,2058],[-7,-10],[-8,0],[-2,-10],[-20,4],[3,6],[-10,0],[-18,6],[-7,6],[-7,2],[-14,6],[-16,2],[-6,-4],[-11,-4],[-11,-10],[-15,2],[-1,2],[-12,2],[-13,10],[-34,-18],[-5,-6],[-14,-2],[-4,-6],[-17,-6],[-8,0],[-20,12],[-12,2],[-10,-6],[-17,-2],[-12,-8],[-19,0],[-7,-4],[-10,4],[-6,-2],[-22,-18],[3,-4],[-13,-6],[-17,-2],[-2,4],[-8,-2],[0,-4],[-8,0],[-1,-6],[-15,-2],[0,-8],[-10,0],[-5,-2],[-15,2],[-2,-2],[-18,2],[-8,4],[5,4],[-3,4],[-12,-2],[-3,-12],[-12,-1],[-13,1],[-4,2],[-4,-7],[-11,-6],[-15,3],[-2,6],[-13,1],[-2,3],[-11,-6],[-16,8],[-8,-4],[-14,4],[-17,0],[-4,-4],[-13,2],[-5,-2],[-12,10],[-14,-6],[-14,4],[-18,-2],[-5,6],[-4,-6],[-14,-2]],[[3928,1980],[-10,14],[-12,0],[-14,4],[-12,0],[1,-4],[-16,-4],[-11,6]],[[3854,1996],[-6,6],[6,2],[-5,8],[-12,4],[-7,-2],[-19,4],[6,8],[0,6],[-11,8],[-1,8],[-5,0],[6,12],[12,-2],[3,4],[24,0],[10,6],[19,-2],[6,2],[26,-2],[6,6],[14,0],[5,-4],[12,-4],[23,0],[22,8],[11,10],[14,5],[4,10],[6,-3],[14,1],[17,10],[12,8],[8,2],[27,22],[14,4],[9,-8],[12,0],[6,4],[9,-2],[30,14],[14,4],[15,10],[12,4],[14,2],[20,8],[10,4],[8,10],[9,4],[5,10],[10,2],[8,7],[3,6],[6,2],[6,6],[12,10],[3,8],[10,8],[8,20],[7,12],[8,6],[4,8],[8,8],[-4,10],[6,2],[0,8],[6,5],[-3,7],[9,19],[11,16],[9,4],[1,6],[-7,32],[2,8],[5,2],[2,-4],[7,-4],[3,-34],[-1,28],[1,8],[23,-2],[20,10],[8,-2],[13,6],[19,14],[10,2],[7,-6],[6,2],[2,6]],[[3242,1671],[9,0],[-11,-8],[-12,0],[14,8]],[[3220,1709],[15,-4],[10,-6],[-10,-2],[0,4],[-9,-6],[-18,2],[-5,6],[13,6],[4,0]],[[3182,1830],[6,-2],[-5,-4],[3,-16],[-17,4],[-3,6],[11,4],[-5,2],[3,6],[7,0]],[[3844,2010],[3,0]],[[3847,2010],[7,-6],[-6,-4],[6,-4]],[[3928,1980],[9,-6],[-1,-6],[4,-11],[11,0],[9,-4],[9,-10],[4,-6],[12,-4],[6,2],[6,-6],[0,-18],[-6,-6]],[[3991,1905],[-25,-2],[-12,-4],[-9,2],[-19,-8],[-5,-10],[-12,-4],[-14,2],[-4,6],[-20,-10],[-8,0],[-1,-6],[-7,-4],[-10,2],[-19,8],[-5,0],[-15,-6],[-9,0],[-22,-10],[6,-2],[-1,-10],[-9,-2],[4,-7],[12,0],[0,-6],[6,-4],[0,-8],[5,-10],[-7,-2],[-7,-10],[5,-6],[14,0],[0,-6],[-6,-2],[-10,0],[-18,2],[-16,-4],[0,8],[-6,2],[-12,-4],[-18,0],[-7,10],[-35,0],[-11,-10],[-1,-10],[7,-16],[-18,0],[-1,4],[-16,4],[-25,0],[-11,-4],[-1,-4],[9,-6],[9,0],[1,-4],[-7,0],[-17,2],[-1,-8]],[[3592,1748],[1,-14],[-14,2],[-17,-6],[-3,8],[8,4],[-2,4],[-15,4],[15,-6],[-9,-8],[3,-8],[5,0],[23,6],[12,-6],[-6,-4],[6,-7],[2,-6],[-8,-2],[6,-6],[14,-8],[-7,-16],[-14,0],[-11,-6],[-13,4],[-9,-4],[-25,0],[-10,-4],[-15,0],[-12,2],[-12,4],[-13,4],[-7,-4],[-43,0],[-11,14],[-7,0],[-2,-6],[-11,-2],[-9,4],[-9,-6],[-15,0],[-15,8],[-6,-4],[6,-8],[18,-4],[-8,-2],[5,-4],[-6,-2],[2,-6],[-12,0],[-5,-6],[-12,8],[0,16],[-16,4],[3,6],[-12,4],[-14,0],[-17,6],[-7,6],[25,2],[16,-4],[8,14],[-2,6],[16,0],[9,7],[17,8],[10,0],[31,-4],[13,10],[2,4],[-5,10],[3,14],[-12,16],[3,4],[-3,10],[-11,14],[-9,6],[-15,-2],[-15,2],[-9,-2],[-1,4],[-13,2],[-20,-2],[-1,4],[-37,2],[-8,-4],[-5,2],[-29,-10],[-10,4],[-5,-4],[-7,2],[5,6],[5,2],[1,6],[-8,4],[7,6],[5,-2],[7,6],[0,5],[-7,4],[-9,0],[22,10],[12,-2],[24,4],[1,4],[12,4],[4,4],[24,2],[3,6],[9,4],[-3,2],[7,4],[18,2],[9,-4],[12,2],[-3,4],[7,0],[6,4],[0,4],[18,-2],[15,2],[4,6],[18,0],[3,4],[-6,6],[6,6],[-9,0],[-1,6],[20,10],[-8,2],[2,4],[-10,2],[2,6],[11,4],[0,5],[14,2],[1,-3],[30,-3],[7,-5],[13,4],[15,0],[3,-6],[6,-2],[-10,-10],[4,-4],[17,2],[9,-2],[33,10],[17,10],[-8,3],[6,8],[8,0],[10,-4],[-2,-5],[9,-4],[15,0],[11,2],[20,-2],[11,2],[-15,2],[4,5],[-10,8],[9,10],[19,6],[19,0],[12,4],[3,6],[6,0],[9,8],[7,2],[8,14],[10,4],[-9,6],[17,6],[2,6],[21,-10],[14,0],[13,-10],[-2,-10],[9,-2]],[[3791,1615],[8,-2],[12,2],[4,-6],[-4,-4],[-11,4],[-11,-2],[2,8]],[[3991,1905],[6,0],[9,-4],[14,0],[-4,14],[21,2],[14,4],[16,2],[9,-6],[10,0],[12,6],[13,0],[24,-4],[11,4],[10,0],[1,-6],[17,-2],[1,-4],[10,-4],[15,2],[1,-12],[-10,-2],[-1,-4],[8,-4],[10,0],[-7,-6],[4,-4],[-11,-12],[-6,-2],[-1,-10],[10,-1],[-5,-7],[-6,-3],[1,-12],[9,-4],[2,-10]],[[4198,1816],[-10,0]],[[4188,1816],[-1,0]],[[4187,1816],[-4,-2]],[[4183,1814],[-2,-2]],[[4181,1812],[-1,-4],[-7,2],[-13,-6],[3,-10],[-8,0],[5,-4],[-10,-6],[7,-6],[-5,-18],[-17,-2],[-26,-8],[-4,-12],[-6,-2],[-6,-8],[-10,-2],[-6,-5],[-6,0],[-11,5],[-11,0],[-15,6],[8,4],[3,4],[-11,8],[-9,0],[9,-6],[-11,-10],[4,-7],[6,0],[18,-10],[8,-6],[0,-4],[-22,-6],[-24,-2],[-22,4],[-63,6],[-19,-8],[-32,4],[-16,-4],[-24,0],[-22,-6],[-9,-4],[-11,-10],[10,-12],[4,0],[-6,-8],[-5,-2],[-7,-10],[8,-4],[-9,-4],[-12,-8],[0,-6],[-20,0],[-2,2],[-18,0],[-4,-8],[4,-2],[-17,0],[-6,-8],[-5,4],[-19,0],[3,2],[-12,4],[-10,-2],[-5,4],[-6,-2],[-11,2],[-14,-2],[-4,-4],[-12,-8],[-11,-2],[-13,-11],[8,-4],[-23,-4],[-2,-6],[-7,-4],[-14,-2],[-17,8],[-11,0],[-12,6],[-20,-2],[-32,10],[-16,0],[-5,3],[0,6],[12,2],[-3,12],[-12,16],[-18,2],[-22,2],[-6,6],[-6,-2],[1,4],[-6,4],[11,4],[3,6],[14,-2],[15,0],[4,-2],[-10,-2],[8,-6],[30,-2],[2,8],[-11,2],[5,6],[23,0],[6,-2],[18,-2],[16,0],[0,-4],[9,-10],[14,2],[23,0],[11,4],[-23,0],[-26,6],[16,4],[1,6],[15,-2],[0,2],[9,6],[13,-4],[0,-8],[9,2],[14,0],[-21,4],[13,8],[13,0],[6,8],[17,0],[12,-10],[20,-6],[8,0],[-20,2],[-1,6],[-10,8],[20,8],[-31,-2],[-14,-4],[1,12],[12,0],[-25,8],[3,2],[0,10],[8,7],[-4,2],[4,6],[12,2],[8,10],[17,6],[-16,-2],[-6,-8],[-9,-4],[-4,0],[-11,-6],[-13,8],[-1,10]],[[4183,1814],[-2,-2]],[[4188,1816],[-1,0]],[[4697,2058],[9,0],[12,-8],[16,-2],[4,-4],[1,-10],[-13,-8],[6,-2],[-1,-6],[20,-2],[20,-8],[14,0],[-12,-10],[3,-6],[8,0],[14,-12],[6,-2],[-13,-6],[-1,-5],[-10,-8],[6,-8],[-9,-10],[-22,-16],[4,-4],[-7,-4],[-10,-10],[9,-8],[0,-8],[-10,2],[-8,-6],[2,-12],[-4,-2],[-4,-14],[13,-4],[-4,-3],[4,-14],[-3,-4],[-20,-16],[-5,0],[-11,-8],[-10,-2],[-7,-6],[-12,-16],[3,-8],[-6,-8],[-8,-2],[-9,-10],[-1,-10]],[[4651,1748],[-10,8],[0,4],[-17,6],[-30,2],[-25,-6],[0,-6],[6,-4],[4,-10],[-6,-12],[-12,4],[-6,-4],[-10,6],[-19,-2]],[[4152,1701],[-36,2],[-10,6],[-2,10],[4,11],[9,10],[-4,6],[22,10],[18,4],[2,8],[5,8],[-9,8],[10,6],[4,6],[-4,8],[4,4],[17,0],[7,4],[-1,4],[10,0]],[[5274,1774],[-35,-2],[-43,-2],[-43,12],[-24,-18],[-1,-10]],[[5128,1754],[-24,-4],[-28,2],[-2,12],[-7,6],[-7,0],[-5,4],[-14,-2],[-6,6],[4,6],[-14,8],[-5,-6],[-21,-12]],[[4999,1774],[-1,4],[-14,8],[-10,0],[2,-6],[-5,-4],[-3,-8],[-25,-8],[-14,-6],[-11,-6],[-12,-4],[4,-6],[-11,2],[-12,-2],[-4,-10],[-6,-3],[-19,-6]],[[4858,1719],[-5,3],[-3,12],[-5,2],[-23,0],[-5,4],[-20,6],[-15,2],[-11,-6],[-11,0],[-34,-4],[-8,-6],[5,-2],[-6,-8],[-8,-5],[-14,0],[-16,2],[-1,11],[-4,6],[-13,8],[-5,-2],[-5,6]],[[4858,1719],[-3,-2],[12,-16],[3,-16],[-4,-4]],[[4623,1625],[2,2]],[[4999,1774],[-1,-8],[5,-12],[12,-8],[-1,-4],[8,-6],[3,-8],[-15,-6],[-6,4],[-14,-1],[16,-8],[1,-4],[15,-8],[12,-14],[7,-6],[14,-2],[22,-20],[6,-12],[16,-12],[5,-8],[12,-6],[8,4],[0,-10]],[[5124,1619],[11,-10],[-2,-13],[4,-8]],[[5137,1588],[-27,-2],[-10,8],[-11,4],[-8,0],[-12,4],[-8,-4]],[[5128,1754],[8,4],[1,-4],[8,-2],[4,-10],[10,0],[9,-8],[1,-12],[7,0],[6,-11],[26,-14],[3,-8]],[[5211,1689],[8,-14],[-3,-4],[-11,-4]],[[5205,1667],[-12,0],[-10,-6],[5,-2],[-17,-4],[-19,-8],[1,-14],[-8,-2],[-3,4],[-5,-10],[-13,-6]],[[5314,1659],[-7,-6],[-14,-2],[-1,4],[11,8],[-18,8],[0,6],[-11,4],[-9,-4],[-18,16],[-8,12],[-15,8],[-8,-4],[7,-12],[-12,-8]],[[4695,1520],[0,-2]],[[4781,1522],[3,-2],[0,-10],[14,-8],[30,12],[11,2],[23,0],[11,-2],[4,2],[20,0],[5,4],[12,-2],[7,-8],[-5,-6],[19,-6],[2,-4]],[[4937,1494],[-15,-6],[-3,-8],[-12,-1],[6,-3],[1,-7],[-21,11],[-29,-9],[-14,2],[-20,-8]],[[4830,1465],[-20,-4],[-9,6],[-21,2],[-7,-6],[-4,2],[-14,2],[-3,-4],[-18,4],[-4,9],[-24,14],[3,2],[-9,14],[-7,14]],[[4994,1578],[-7,-6],[-4,-10],[4,-4],[3,-12],[15,-4],[0,-6],[16,0],[8,4],[9,-6],[9,0],[2,-10],[-5,-4],[4,-4],[0,-8],[-5,-4],[-17,-4],[6,-8]],[[5032,1492],[-27,0],[-26,8],[-9,0],[-23,-2],[-10,-4]],[[5137,1588],[13,-22],[15,-2],[5,-6],[-2,-6],[5,-6],[13,4],[7,-4],[5,-6],[-1,-6]],[[5174,1520],[-12,8],[0,6],[-23,-4],[-12,0],[1,-4],[-11,0],[-3,-6],[-11,0],[-8,-6],[9,-10],[-4,-4],[3,-6]],[[5103,1494],[-12,0],[-16,4],[-30,-4],[-4,-8],[-5,0],[-4,6]],[[5205,1667],[8,-18],[0,-6],[-5,-4],[1,-10],[5,-6],[-4,-6],[-10,-4],[0,-10],[12,-4],[-2,-5],[14,-2],[12,2],[7,-6],[19,-6],[9,0],[16,6],[17,0],[12,-4],[8,-10]],[[5103,1494],[23,-2],[12,-4],[16,-17],[2,-8],[9,-8],[26,0],[9,6],[16,2]],[[5216,1463],[13,-10],[-1,-4]],[[5228,1449],[-6,-12],[11,0],[-2,-8],[4,0],[0,-18],[-13,0],[-16,-6],[-2,4],[-4,-6],[-7,-2],[3,-8]],[[5196,1393],[-16,-4],[-6,2],[-3,-6],[-13,2],[-1,-4],[-8,6],[-3,-6],[-9,4],[-10,2],[-23,-10],[-8,0],[-28,2],[-31,-2],[-4,4],[-14,2],[-23,0],[-23,4],[-6,0],[-47,6],[-15,-2],[-19,6],[-3,6],[-14,10],[-4,8],[-13,10],[-9,0],[0,4],[-12,6],[-10,2],[-12,8],[0,4],[21,8]],[[5247,1469],[3,-4]],[[5250,1465],[-19,0],[6,-2],[-10,-8]],[[5227,1455],[-11,8]],[[5228,1449],[11,-4],[7,-6],[16,0],[6,-6],[-7,-12],[0,-16],[2,-4],[-18,-6],[-18,0],[-13,4],[-10,-2],[-8,-4]],[[5250,1465],[7,-8],[-4,-14],[4,-4],[-9,0],[-9,6],[-8,4],[-4,6]],[[5295,1484],[6,-2],[-2,-3],[10,-1],[-6,-7],[-4,-8],[-8,-2],[4,-4],[-20,-14],[-9,6],[-11,2],[4,6],[-7,2],[-1,6]],[[5346,1488],[-15,-6],[-12,-3],[-19,0],[-10,9],[-1,10]],[[2991,4345],[7,-6],[-4,-2],[-2,-12],[11,-18]],[[3003,4307],[-14,-6],[-10,2],[2,6],[-24,-2],[-9,-6],[-7,0],[-8,15],[-12,-1],[0,6],[11,4],[-22,4],[-2,2],[-16,2],[-2,-4],[-17,-8],[-11,6],[-15,-6],[-22,3],[-6,5],[-17,2],[-11,-4],[-1,-3],[-11,-3],[-1,-4],[-13,0]],[[2765,4317],[-11,0],[-4,7],[-14,-4],[-28,-3],[0,4],[-7,0],[-21,4],[5,6],[-2,6]],[[2683,4337],[9,6],[16,4],[6,6],[22,6],[27,6],[33,10],[15,-8],[42,0],[5,-4],[19,6],[4,-4],[15,4],[-1,8],[7,2],[13,-6],[17,4],[4,-4],[9,2],[15,-12],[13,-8],[12,0],[-1,-4],[7,-6]],[[2992,4379],[12,-4],[0,-6],[-9,0],[-2,4],[-11,-2],[0,6],[10,2]],[[2316,4087],[6,-8],[-15,-12],[6,-8],[-6,0],[-8,-7],[-7,0],[-13,6],[-6,-7],[-1,-11],[12,-14],[-14,0],[3,-14],[-4,-10],[-18,-2],[-16,2],[-12,-2],[-7,6],[-12,4]],[[2204,4010],[-6,8],[-9,6],[1,12],[9,8],[-6,14],[3,13],[-11,8],[-9,12],[-2,8],[-7,4],[-2,8],[-6,4],[0,8],[-6,-6],[-4,-8],[-10,-6],[-14,0],[-6,6],[0,-8],[-9,4],[-13,0],[-13,10],[0,6],[-7,0],[-4,6],[7,6],[0,8],[-12,2],[-2,-4],[-18,4],[0,4],[-7,2],[-18,14],[-2,11],[-11,0],[0,7],[-9,3]],[[2001,4184],[-4,2],[3,8],[-5,8],[6,6],[-9,0],[0,6],[-12,8]],[[1980,4222],[11,4],[-2,4],[36,22],[38,8],[28,8],[45,8]],[[2136,4276],[97,21],[22,-19],[8,-6],[15,-6]],[[2278,4266],[3,-14],[-3,-4],[7,-4],[-4,-6],[3,-8],[16,-8],[-3,-4],[16,-2],[2,-10],[-11,0],[-7,-10],[15,-3],[1,-12],[31,-18],[-1,-10],[-17,-2],[8,-6],[-5,-2],[3,-6],[-8,0],[-11,-6],[8,-10],[-11,-2],[0,-6],[-9,0],[-2,-6],[-11,-2],[8,-10],[20,-8]],[[2515,4795],[-8,-4],[-3,-9],[7,0],[1,-14],[-3,-8],[-17,-16],[2,-8],[-6,-10],[9,-6],[10,-2],[13,4],[40,0],[17,-4],[1,-8],[-7,-12],[1,-8],[-7,-8],[1,-8],[-9,-4],[-5,-9],[2,-6],[8,-6],[15,2],[9,-10],[17,2],[9,-2],[11,-8],[23,-22],[12,-22],[7,-6],[12,-6],[17,2],[4,-4],[-2,-6],[6,-10],[15,-4],[12,-9],[10,-12],[14,0],[4,6],[8,-6],[8,2],[-2,5],[19,-3],[13,-8],[7,0],[12,-12],[20,-24],[0,-10],[-4,-20],[2,-8],[-9,-9],[-7,-3],[-2,-6],[-15,-7],[-8,0],[-11,-11],[-9,-3],[-31,0],[-17,-8],[0,-4],[-17,0],[-18,-4],[-3,-6],[-34,-14],[-14,-8]],[[2645,4373],[-14,2],[-14,10]],[[2617,4385],[0,6],[20,4],[0,-4],[14,2],[-2,12],[-9,0],[-9,4],[0,6],[6,4],[11,19],[-11,4],[-3,5],[9,3],[-6,4],[6,6],[8,2],[-14,6],[-15,-6],[-22,2],[-9,4],[-8,-4],[-5,4],[-9,4],[-12,-8],[-10,10],[-13,4],[1,10]],[[2535,4488],[-3,12],[-10,6],[6,8],[20,-2],[36,0],[12,4],[1,6],[-19,16],[-6,-4],[-20,9],[-4,-5],[-19,0],[-14,7],[-3,28],[-6,0],[-6,8],[15,8],[-2,10],[10,14],[-6,6],[-10,0],[-9,4],[-10,12],[-18,10],[2,4],[-36,8],[-15,0],[-12,8],[-4,9],[-12,6],[0,10],[-7,8],[-16,2],[-14,14],[-9,2],[-9,14],[-10,8],[0,8],[8,2],[27,18],[-1,4],[12,10],[9,4],[13,0],[21,11],[21,6],[17,3],[-6,8],[24,-1],[19,-6],[12,2],[11,-12]],[[2535,4488],[-43,-2],[6,-6],[-15,4],[-14,0],[6,-4],[-9,2],[-21,0],[-8,12],[-25,-2],[-3,6],[-25,-2],[-31,-4],[0,-6],[-13,-8],[-21,-2],[-3,4],[-12,2],[-17,4],[4,-6],[-24,-2],[-9,4],[-8,-4],[-12,4],[-2,-4],[-14,10],[-23,-4],[-4,-8],[-14,-4],[-4,-4],[-12,0],[-23,6],[-40,0],[-15,-4]],[[2087,4470],[-2,12],[6,16],[14,6],[1,6],[-15,14],[-3,19],[-11,14],[-1,6],[-10,7],[-7,15],[7,8],[-16,16],[-2,6],[-20,10]],[[2028,4625],[1,6],[-8,0],[-7,16],[1,6],[-18,2],[0,6],[-11,13],[8,20],[-2,12]],[[1992,4706],[0,0]],[[1992,4706],[-8,8],[4,6],[-5,6],[-12,4],[-10,10],[5,6],[14,2],[4,4],[14,20],[0,20],[12,1],[10,8],[27,-1],[1,5],[-5,8],[-2,26],[-3,12],[-6,4],[6,14],[-9,0]],[[2029,4869],[9,6],[-3,8],[13,0],[11,4],[1,6],[6,0],[11,4],[11,0],[12,-2],[7,-8],[37,-2],[4,-4],[13,0],[15,4],[3,4],[13,4],[6,-4],[10,0],[3,-2],[16,0],[18,-10],[17,2],[8,-6],[14,-2],[11,-8],[9,0],[15,-8],[25,4],[3,2],[18,0],[10,2],[9,8],[12,6],[12,0],[7,-4],[6,-6],[12,-8],[13,0],[15,-4],[9,-6],[13,0],[0,-8],[11,-6],[1,-6],[6,-4],[8,0],[10,-8],[1,-21],[-5,-1]],[[2313,4952],[21,-4],[24,0],[4,-2],[19,-2],[2,-5],[-8,-7],[0,-6],[-8,-19],[-6,-2],[-8,7],[0,10],[10,6],[-4,8],[-21,0],[-6,3],[-14,-1],[-25,-6],[-2,4],[-21,0],[12,12],[10,0],[21,4]],[[2982,4030],[-4,-6],[-2,6],[6,0]],[[3009,4054],[-15,-6],[7,-2],[-1,-4],[-13,2],[-8,-4],[-10,-12],[-2,-6],[-10,-8],[-6,-6],[-9,-2],[-3,-6],[-6,-4],[-10,4],[4,-6],[-7,-8],[-10,-2],[0,8],[-8,0],[-9,6],[-9,-6],[6,0],[3,-14],[-4,2],[-7,-10],[-15,-4],[-2,8],[-6,-2],[-4,12],[-9,4],[-33,0],[-4,2],[-21,0],[-7,-2],[0,-4],[-13,0],[-5,-2],[-27,0],[-7,-2],[-15,2],[-9,8],[0,4],[17,2],[-5,10],[6,12],[-13,-6],[-2,-8],[-7,-2],[-3,-8],[-9,-2],[0,-6],[16,2],[5,-4],[-5,-6],[-14,-6],[-37,-17],[-6,-7],[1,-5],[15,-12],[3,-8],[0,-14],[-5,-14],[-11,-12],[-2,-6],[5,-8],[-6,-2],[-5,-12],[-17,-10],[-18,-8],[-14,-4],[-8,-6],[-6,-10],[-9,0],[-30,-9],[-9,-10],[-25,-8],[-21,-10],[-6,6],[-14,0],[-8,8],[-13,4],[6,6],[21,0],[-9,9],[-11,4],[-4,-1],[-13,1],[-6,3],[-20,-3],[-6,3],[-16,0],[-10,7],[-8,1],[-7,9],[0,8],[-10,4],[-14,2],[-26,0],[-11,-4],[-1,4],[-13,2],[-14,8],[-9,2]],[[2264,3863],[-11,10],[-11,14],[-15,14],[18,4],[-7,10],[3,16],[-14,-2],[-1,9],[-12,1],[-9,13],[0,6],[14,-2],[5,4],[-13,12],[-21,6],[-4,6],[10,8],[2,8],[-5,6],[11,4]],[[2316,4087],[13,4],[11,-2],[1,4],[15,-2],[9,-8],[16,2],[5,8],[10,-2],[6,4],[3,-4]],[[2405,4091],[0,0]],[[2405,4091],[6,-4],[0,-6],[12,-4],[-2,-3],[18,-3],[1,-4],[12,0],[14,4],[-5,-4],[3,-9],[12,-3],[10,4],[20,2],[1,4],[16,2]],[[2523,4067],[0,0]],[[2523,4067],[3,8]],[[2526,4075],[0,0]],[[2526,4075],[3,8],[-4,4],[-8,2],[9,6],[3,8],[15,-2],[16,2],[14,6],[11,-4],[15,2],[3,14],[-11,6],[7,0]],[[2599,4127],[9,-2],[9,8],[14,-4],[5,-8],[4,2],[11,-6],[7,4],[6,8],[21,-4],[17,2],[3,-2]],[[2705,4125],[2,0]],[[2707,4125],[10,-14],[11,-8],[4,4],[13,2],[15,-2],[8,6],[5,10],[12,0],[9,-2],[-1,6],[15,0],[11,4],[6,-6],[11,0],[10,4],[3,-10],[7,0]],[[2856,4119],[0,0]],[[2856,4119],[9,-2],[-6,-4],[6,-2],[5,-8],[63,26],[11,-14],[34,-16],[15,-28],[16,-17]],[[2686,3990],[-7,-4],[1,-10],[8,10],[-2,4]],[[2087,4470],[-2,-8],[11,-8],[6,4],[3,-6],[-27,-22],[-10,-21],[26,-26],[12,-6],[47,-28],[-17,-73]],[[1980,4222],[-10,-6],[-6,4],[-9,0],[-16,-4],[-8,4],[-17,4],[-11,0],[1,4],[-17,4],[0,4],[-9,0],[-9,-6],[-20,-2],[-3,8],[-22,4],[1,6],[-12,0],[-9,4],[0,-4],[-14,-6],[-9,0],[-5,-10],[-12,-4],[-3,4],[-11,2],[-1,4],[-14,0],[0,-4],[-8,-2],[-6,4],[-7,0],[-1,-6],[-8,-4],[-25,2],[-1,-2],[-11,0],[-18,-4],[-6,6],[3,6],[-19,2],[-9,2],[-19,2],[-6,8]],[[1594,4246],[16,8],[1,6],[-14,6],[10,8],[6,2],[-2,6],[-6,0],[-9,6],[17,-2],[0,8],[6,1],[-3,9],[18,8],[-13,5],[1,8],[-16,12],[-1,12],[-8,2],[16,12],[-16,2],[-1,2],[-14,2],[3,6],[-5,6],[10,8],[-6,6],[6,8],[-8,6],[-8,2],[8,7],[-3,8],[15,9],[17,1],[31,8],[3,12],[-3,8],[17,-2],[12,6],[7,4],[-4,8],[-15,8],[9,12],[0,6]],[[1668,4506],[14,2],[11,10],[0,18],[28,4]],[[1721,4540],[0,0]],[[1721,4540],[6,-6],[18,-2],[13,-4],[15,2],[15,11]],[[1788,4541],[0,1]],[[1788,4542],[0,-1]],[[1788,4541],[0,1]],[[1788,4542],[5,4],[-3,5],[16,2],[0,10],[10,14],[-1,6],[-11,0],[-5,8],[27,8],[4,0]],[[1830,4599],[0,0]],[[1830,4599],[5,6],[11,2],[18,0],[6,-4],[-1,-4],[12,-6],[5,2],[15,0],[0,4],[13,0],[12,8],[1,6],[25,0],[6,-6],[12,0],[13,-8],[5,6]],[[1988,4605],[1,0]],[[1989,4605],[3,-2],[9,4],[7,0],[2,4],[10,0],[3,-4],[5,18]],[[2264,3863],[-2,-4],[-14,-2],[0,-4],[-9,-10],[-17,2],[0,14],[-9,4],[-12,-2],[-11,0],[6,-20],[0,-12],[-3,-5],[-16,-1],[-4,-7],[-30,1],[-15,-1],[-9,-4],[-11,13],[-6,-1],[-5,4],[-15,1],[0,-4],[9,-4],[-12,0],[-11,-8],[-14,0],[0,-5],[-6,0],[-10,5],[-21,-8],[-14,0],[-5,3],[-21,4],[-3,-10],[-10,-2],[-3,-4],[-7,2],[-11,-4],[-3,6],[-9,2],[-13,15],[-9,0],[-6,11],[9,0],[3,11],[-6,4],[1,4],[10,-2],[4,6],[-9,8],[-6,8],[0,6],[12,-2],[0,8],[8,0],[0,10],[10,6],[-5,20],[-10,8],[-12,4],[-6,9],[-8,-1],[-6,3],[-8,-2],[-3,6],[-17,0],[-6,-10],[-6,-1],[-2,-6],[-9,3],[-6,-3],[-16,15],[-21,0],[-11,10],[-12,4],[0,8],[-14,0],[-5,16],[-7,8],[-1,8],[-7,8],[-16,0],[-12,4],[-1,4],[-10,2],[0,8],[8,2],[1,-6],[8,0],[-1,6],[7,2],[2,6],[-8,10],[2,6],[-6,2],[0,11]],[[1715,4059],[21,4],[6,4],[3,12],[6,6],[10,6],[3,8],[8,6],[-3,18],[7,2],[6,12],[22,0],[9,-8],[25,4],[5,-8],[13,0],[11,4],[0,14],[3,8],[8,0],[-3,12],[11,0],[4,6],[11,4],[2,9],[14,4],[10,-8],[10,0],[2,-4],[13,-5],[11,11],[11,-2],[27,6]],[[1329,4595],[6,-2],[-3,-10],[-9,-6],[3,-10],[46,-1],[22,1],[0,-8],[-6,-4],[-1,-8],[16,-9],[-14,0],[9,-8],[16,6],[11,0],[12,2],[-6,-6],[12,-4]],[[1443,4528],[0,0]],[[1443,4528],[13,-8],[9,-8],[20,-4],[1,-8],[8,4],[17,-2],[9,-4],[14,0],[11,8],[37,0],[15,10],[14,-4],[5,4],[18,2],[13,-2],[3,-6],[18,-4]],[[1594,4246],[-15,-4],[-3,-4],[-22,0],[-7,-8],[0,-10],[-13,0],[0,-4],[-14,4],[-6,-2],[-15,0],[-11,-4],[-8,-6],[0,-6],[-14,0],[6,-5],[-6,-5],[-14,6],[-12,-4],[-5,-4],[-9,3],[-6,-3],[-11,3],[-6,-3],[-12,4],[3,-10],[-13,2],[-12,-4],[-4,-5],[-27,-6],[-7,6],[-13,-8],[-11,0],[3,-4],[-13,-2],[-19,0],[-17,2],[-28,-8],[-12,0],[-3,2],[-39,2],[-3,-8],[-20,-6],[-12,0],[-12,-4],[-8,-4],[-14,-2],[-12,-8],[-10,6],[-12,0],[-3,6],[5,2],[-11,4],[-8,8],[-8,-2],[3,6],[-6,0],[3,10],[-6,0],[-6,16],[-8,5],[-6,2],[11,12],[0,6],[6,6],[-11,4],[5,6],[-1,6],[7,4],[0,6],[6,2],[-3,8],[14,2],[11,4],[6,6],[-8,6],[-7,8],[-22,-4],[-18,0],[-13,0],[-3,8],[-15,2],[-11,6],[-39,0],[-6,7],[0,12],[-12,0],[0,6],[-14,-2]],[[908,4313],[9,4],[0,6],[-11,0],[2,4],[-3,10],[-11,-6],[-18,-4],[-2,-4],[-14,0],[-3,4],[-14,-2],[-11,10],[-18,0],[-11,10],[-14,-10],[-17,2],[-7,-4],[1,6],[-5,12],[-15,4],[-20,2],[-14,8],[-6,8],[15,10],[-1,4],[-8,0],[-3,4],[-9,2],[1,6],[11,-2],[16,2],[12,0],[26,24],[11,5],[20,0],[11,-13],[20,0],[7,-2],[2,-8],[32,-4],[5,8],[25,11],[14,0],[9,4],[12,0],[17,11],[19,7],[23,-6],[21,2],[16,5],[-2,-8],[22,3],[5,-4],[7,1],[5,9],[-8,2],[-1,18],[4,4],[-4,8],[12,14],[8,0],[-2,4],[12,0],[31,14],[3,8],[11,4],[0,4],[13,12],[0,5],[13,10],[0,8],[-9,14],[0,6],[6,6],[-3,24],[6,4],[14,4],[26,0],[8,2]],[[1207,4619],[8,0],[12,-14],[0,-8],[14,-6],[5,2],[29,-2],[5,6],[15,2],[3,-2],[17,0],[14,-2]],[[2765,4317],[2,-12],[-5,-5],[7,-3],[9,-9],[-10,-4],[-11,0],[-10,-4],[-2,-6],[-7,-4],[0,-6],[-18,2],[-23,8],[-14,-4],[-10,6],[-8,-2]],[[2665,4274],[0,10],[-13,-6],[-16,2],[1,6],[8,0],[-12,15],[-12,4]],[[2621,4305],[9,11],[15,9],[20,16]],[[2665,4341],[18,-4]],[[2665,4274],[-16,-4],[-1,-4],[7,-6],[8,-12],[-4,-8],[5,-8],[-1,-6],[-6,0],[-11,-12]],[[2646,4214],[-4,10],[-8,4],[0,4],[-10,0],[-4,6],[0,10],[-20,6],[-6,4],[-14,0],[-3,-6],[6,-4],[-9,-4],[-15,2],[-11,14]],[[2548,4260],[4,16],[17,6],[9,10],[12,7],[7,0],[3,4],[14,2]],[[2614,4305],[7,0]],[[3003,4307],[3,-6],[13,-4],[2,-9],[13,-4],[10,-8],[2,-8],[-8,-12],[3,-10],[9,-4],[2,-14],[4,0],[3,-14],[9,-6],[10,-4],[9,2],[2,-4],[-8,-8],[5,-12],[-5,-9],[-9,-2],[-5,-12],[-6,0],[-17,-6],[0,-6],[6,-2],[0,-4],[9,-4],[2,-8],[-2,-8],[6,-4],[-3,-8],[-21,0],[-9,-12],[0,-6],[8,2],[3,-8],[-12,-2],[-6,-16],[4,-1],[-20,-12]],[[2856,4119],[0,0]],[[2707,4125],[-2,0]],[[2599,4127],[-2,10],[20,8],[-5,6],[14,2],[-2,8],[2,8],[8,0],[6,4],[-3,8],[26,4],[4,12],[-10,3],[1,10],[-12,4]],[[2548,4260],[-20,0],[-6,-4],[-22,2],[-5,-4],[-6,8],[-6,2],[6,4],[-3,8],[-4,0]],[[2482,4276],[4,8],[-3,10],[-5,11],[17,2],[9,10],[19,0],[0,12]],[[2523,4329],[29,-4],[10,0],[4,-6],[11,1],[1,-11],[18,0],[0,4],[10,0],[-3,-4],[11,-4]],[[2526,4075],[0,0]],[[2523,4067],[0,0]],[[2405,4091],[0,0]],[[2278,4266],[10,6],[16,-2],[9,2],[6,-4],[5,6],[6,-2],[44,2],[6,-6],[10,0],[-6,-10],[27,0],[9,4],[-2,-6],[17,-2],[11,8],[-9,2],[0,6],[17,-2],[19,8],[9,0]],[[2617,4385],[-20,-4],[0,-4],[-16,0],[-3,6],[-13,-6],[4,-6],[9,-4],[-16,-4],[-5,-8],[-11,-8],[-23,-14],[0,-4]],[[2645,4373],[-5,-14],[-12,-10],[37,-8]],[[1992,4706],[0,0]],[[1989,4605],[-1,0]],[[1830,4599],[0,0]],[[1721,4540],[0,0]],[[1443,4528],[0,0]],[[1329,4595],[15,24],[4,4],[10,0],[8,2],[2,8],[15,2],[4,8],[-9,14],[10,2],[-5,7],[-2,8],[19,-4],[9,2],[3,6],[9,-4],[13,0],[8,-5],[13,4],[-9,7],[0,6],[-12,6],[-2,4],[-7,4],[9,2],[9,10]],[[1443,4712],[12,-4],[25,0],[15,2],[27,2],[20,4],[-2,6],[27,12],[4,8],[-9,6],[1,10],[11,8],[14,0],[6,2],[5,16],[7,7],[11,22],[5,14],[0,10],[-6,10],[15,-2],[20,-12],[11,-4],[25,-6],[35,-2],[28,0],[15,2],[62,0],[22,4],[-2,6],[6,4],[-3,4],[28,6],[32,2],[5,4],[-8,10],[14,-8],[16,4],[29,-2],[14,2],[17,6],[24,4],[8,0]],[[1715,4059],[-11,8],[0,7],[-11,1],[-6,4],[-13,0],[2,4],[-6,8],[4,6],[-10,6],[-14,-2],[-3,4],[11,4],[-15,0],[-6,6],[-15,2],[2,4],[-7,4],[-10,-2],[-3,8],[-20,-2],[0,6],[-17,2],[-10,6],[-12,-4],[-15,-6],[0,-4],[-13,-8],[-1,-8],[-14,-10],[-19,-8],[-3,-4],[6,-6],[-9,-4],[-12,-2],[-5,-5],[-8,0],[-3,-5],[-10,-4],[-16,1],[-17,3],[6,-15],[0,-12],[-18,0],[-13,-10],[4,-4],[10,-2],[10,-4],[15,-2],[-2,-6],[-7,-6],[20,0],[0,-4],[17,-16],[-13,-2],[-4,-4],[12,-4],[0,-8],[-6,-10],[-15,-2],[-14,2],[-2,4],[-9,-4],[0,-2],[-11,-4],[-12,2],[-14,-4],[0,-4],[-14,-2],[12,-6],[-1,-4],[-22,0],[2,-15],[15,-8],[-11,-2],[-6,-6],[6,-4],[-10,-8],[1,-8],[-6,-2],[-11,-10],[-9,-4],[-14,2],[-5,10],[11,0],[6,-2],[7,8],[-13,2],[-1,6],[10,0],[8,16],[-11,4],[-9,-4],[-9,0],[-14,-14],[-14,-4],[6,-2],[6,-8],[8,2],[5,-4],[-2,-6],[10,-2],[-2,-6],[-11,-4],[-5,4],[0,6],[-10,-4],[0,-2],[-11,-2],[0,6],[-13,8],[-12,0],[-7,-6],[-13,-4],[-1,6],[10,8],[11,2],[-12,4],[-3,-4],[-12,2],[-21,-2],[-4,2],[14,8],[3,6],[-33,-2],[-12,-8],[-12,-2],[0,-8],[-4,0],[0,-6],[-7,-4],[-12,0],[-18,8],[-12,0],[-6,4],[-8,-8],[-7,2],[-2,-6],[-8,4],[-12,0],[-6,6],[0,8],[-20,-2],[-13,2],[-4,6],[-12,4],[0,10],[-7,6],[-14,4],[-9,9],[-9,3],[-6,-6],[-5,0],[-3,11],[-6,0],[-3,4],[3,8],[-8,-2],[-6,2],[-11,-2],[-31,0],[-3,5],[-14,-3],[-40,0],[-6,-5],[-23,5],[-25,10],[5,4],[-5,4],[0,18],[-1,12],[-11,6],[0,16],[11,8],[-20,0],[-5,8],[-14,0],[-3,-4],[-9,0],[-5,6],[-26,0],[-14,8],[-1,6],[-10,12],[-9,3],[-6,9],[-9,1],[-2,10],[-4,2],[-12,-2],[-6,2],[-11,-2],[-5,4],[-16,4],[-18,20],[-16,12],[-37,20],[-28,14],[1,6],[8,-2],[7,8],[-27,7],[-5,4],[10,4],[50,0],[-1,7],[22,1],[-8,6],[9,2],[33,0],[13,2],[3,12],[-3,4],[28,24],[6,12],[13,-2],[22,4],[17,-12],[9,2],[3,-4],[17,4],[17,0],[6,-2],[34,0],[11,-2],[26,10],[-7,6],[13,12],[7,0],[12,6],[0,8],[3,2],[11,0],[15,4],[8,0],[0,9],[9,4],[14,0],[17,7],[14,1]],[[1207,4619],[-3,0],[-11,8],[5,6],[-5,2],[7,10],[-7,10],[14,9],[0,5],[-12,3],[9,9],[5,9],[17,8],[15,12],[8,2],[3,4],[15,-2],[13,-4],[17,10],[12,-8],[9,8],[5,8],[14,2],[1,-4],[10,2],[-7,-18],[19,2],[0,6],[6,6],[22,-2],[15,2],[29,0],[10,-2],[1,-10]]],"transform":{"scale":[0.0010413964569965448,0.0010997111696688644],"translate":[-8.650007225938275,49.8647494628352]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment