Skip to content

Instantly share code, notes, and snippets.

@tomgp
Last active August 14, 2023 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tomgp/143761fbf4fee2bef7bf to your computer and use it in GitHub Desktop.
Save tomgp/143761fbf4fee2bef7bf to your computer and use it in GitHub Desktop.
topojson neighborhoods

A quick example showing how to find and draw adjacent areas from a topojson file.

Neighbourhoods/ neighborhoods, whatever

<!DOCTYPE html>
<meta charset="utf-8">
<title>topojson neighbourhood</title>
<style>
body{
font-family: sans-serif;
}
svg{
border:1px solid #000;
}
path {
fill: #FFF;
stroke: #000;
stroke-linejoin: round;
}
#in .selected{
fill:#0FF;
}
#out .selected{
fill:#0FF;
}
#in path:hover{
fill:#F0F;
cursor: pointer;
}
.vis{
display:inline-block;
margin-right: 50px;
}
</style>
<body>
<div id="in" class="vis">
<h2>Select a constituency</h2>
</div>
<div id="out" class="vis">
<h2>See its neighbourhood</h2>
</div>
</body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
var width = 300,
height = 300,
neighbors = [],
wales;
var projection = d3.geo.albers()
.center([-3.5, 52.54])
.rotate([0, 0])
.parallels([50, 60])
.scale(6000)
.translate([width / 2, height / 2]);
var path = d3.geo.path()
.projection(projection);
var svgIn = d3.select("#in").append("svg")
.attr("width", width)
.attr("height", height);
var svgOut = d3.select("#out").append("svg")
.attr("width", width)
.attr("height", height);
d3.json('wales.topojson', ready);
function drawNeighbours(index){
var neighborhood = neighbors[index];
var subset = topojson.feature(wales, wales.objects.constituencies).features //create a subset of the features baed on a neighbourhood list
.filter(function(d,i){
return (neighborhood.indexOf(i) > -1) || index == i;
});
svgOut.select("g").remove();
svgOut.append("g")
.attr("class", "counties")
.selectAll("path")
.data(subset)
.enter()
.append("path")
.attr({
"d":path,
'id':function(d){return 'sub-'+d.id;}
});
}
function highlight(id){ //highlight all pats for a given constituency ID
d3.selectAll('path')
.classed('selected',function(d){
return d.id == id;
});
}
function ready(error, walestopo) {
wales = walestopo; //assign the topology to a global var for convenience
neighbors = topojson.neighbors(wales.objects.constituencies.geometries); //get the lists of neighbours
svgIn.append("g")
.attr("class", "counties")
.selectAll("path")
.data(topojson.feature(wales, wales.objects.constituencies).features)
.enter().append("path")
.attr({
"d":path,
'id':function(d){return d.id;}
})
.on("click",function(d,i){
drawNeighbours(i);
highlight(d.id);
});
}
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"constituencies":{"type":"GeometryCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"geometries":[{"type":"Polygon","properties":{"NAME":"Aberavon Co Const","CODE":"W07000049"},"id":"W07000049","arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35]]},{"type":"MultiPolygon","properties":{"NAME":"Aberconwy Co Const","CODE":"W07000058"},"id":"W07000058","arcs":[[[36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52]],[[53]]]},{"type":"Polygon","properties":{"NAME":"Alyn and Deeside Co Const","CODE":"W07000043"},"id":"W07000043","arcs":[[54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87]]},{"type":"Polygon","properties":{"NAME":"Arfon Co Const","CODE":"W07000057"},"id":"W07000057","arcs":[[88,89,90,91,92,93,94,95,96,97,98,-40,99,-38,100,101,102,103,104,105,106,107,108,109,110,111]]},{"type":"Polygon","properties":{"NAME":"Blaenau Gwent Co Const","CODE":"W07000072"},"id":"W07000072","arcs":[[112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128]]},{"type":"Polygon","properties":{"NAME":"Brecon and Radnorshire Co Const","CODE":"W07000068"},"id":"W07000068","arcs":[[129,130,131,132,133,134,135,-119,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223]]},{"type":"Polygon","properties":{"NAME":"Bridgend Co Const","CODE":"W07000073"},"id":"W07000073","arcs":[[-35,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244]]},{"type":"Polygon","properties":{"NAME":"Caerphilly Co Const","CODE":"W07000076"},"id":"W07000076","arcs":[[245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295]]},{"type":"Polygon","properties":{"NAME":"Cardiff Central Boro Const","CODE":"W07000050"},"id":"W07000050","arcs":[[296,297,298,299,300,301,302,303,304,305,306,307]]},{"type":"Polygon","properties":{"NAME":"Cardiff North Boro Const","CODE":"W07000051"},"id":"W07000051","arcs":[[308,309,310,311,312,313,314,315,316,-265,317,-263,318,-261,319,320,321,322,323,324,325,326,327,328,329,330,331,-297,332,333,334,335,336,337]]},{"type":"Polygon","properties":{"NAME":"Cardiff West Boro Const","CODE":"W07000079"},"id":"W07000079","arcs":[[338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,-313,355,-311,356,-309,357,-337,358,359,-334,360,-307,361,362,363,364,365,366]]},{"type":"MultiPolygon","properties":{"NAME":"Carmarthen East and Dinefwr Co Const","CODE":"W07000067"},"id":"W07000067","arcs":[[[367,-169,368,-167,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,-181,453,-179,454,-177,455,-175,456,-173,457,-171]],[[458]]]},{"type":"Polygon","properties":{"NAME":"Clwyd South Co Const","CODE":"W07000062"},"id":"W07000062","arcs":[[459,460,461,462,463,464,465,466,467,468,469,470,471,-85,472,-83,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512]]},{"type":"Polygon","properties":{"NAME":"Clwyd West Co Const","CODE":"W07000059"},"id":"W07000059","arcs":[[513,-42,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,-87,539,540,-470,541,-468,542,-466,543,-464,544,545,546,547]]},{"type":"Polygon","properties":{"NAME":"Cynon Valley Co Const","CODE":"W07000070"},"id":"W07000070","arcs":[[548,549,-140,550,551,552,553,554,555,556,557,558,559,560,561,562,-282,563,564,565,566,567,568,569,-143]]},{"type":"MultiPolygon","properties":{"NAME":"Delyn Co Const","CODE":"W07000042"},"id":"W07000042","arcs":[[[-528,570,571,-63,572,-61,573,-59,574,-57,575,-55,576,-538,577,-536,578,-534,579,-532,580,-530,581]],[[-65,582]],[[-67,583]]]},{"type":"MultiPolygon","properties":{"NAME":"Gower Co Const","CODE":"W07000046"},"id":"W07000046","arcs":[[[584,585]],[[586,587]],[[588,589,590,591,592,593,-390,594,-388,595,-386,596,-384,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633]],[[634,635]]]},{"type":"Polygon","properties":{"NAME":"Islwyn Co Const","CODE":"W07000077"},"id":"W07000077","arcs":[[636,-293,637,-291,638,639,-288,640,641,642,-129,643,-127,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,-246,676,-295]]},{"type":"MultiPolygon","properties":{"NAME":"Llanelli Co Const","CODE":"W07000045"},"id":"W07000045","arcs":[[[-402,677,-400,678,-398,679,-396,680,-394,681,-392,682,-593,683,-591,684,-635,685,-587,686,-585,687]],[[-589,688]]]},{"type":"Polygon","properties":{"NAME":"Merthyr Tydfil and Rhymney Co Const","CODE":"W07000071"},"id":"W07000071","arcs":[[-558,689,-556,690,-554,691,-552,692,-139,693,-137,-118,694,-116,695,-114,696,-642,697,-286,698,-284,699,-562,700,-560,701]]},{"type":"Polygon","properties":{"NAME":"Monmouth Co Const","CODE":"W07000054"},"id":"W07000054","arcs":[[702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,-121,772,-135,773,-133,774,775,-130,776,-223,777,-221,778,-219,779,-217,780,-215,781,-213,782,-211,783,-209,784,-207,785,-205,786,787,788,789,790,-199]]},{"type":"Polygon","properties":{"NAME":"Montgomeryshire Co Const","CODE":"W07000063"},"id":"W07000063","arcs":[[791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,-460,860,-197,861,-195,862,-193,863,864,-190,865,-188,866,-186,867,868,869,870]]},{"type":"Polygon","properties":{"NAME":"Neath Co Const","CODE":"W07000069"},"id":"W07000069","arcs":[[871,-382,872,-380,873,-378,874,875,-375,876,-373,877,878,-164,879,-162,880,-160,881,-158,882,883,-155,884,-153,885,-151,886,-149,887,888,-146,889,-568,-13,890,-11,891,-9,892,-7,893,-5,894,895,896,897,898,899,-609,900,-607,901,-605,902,-603,903,-601,904,-599]]},{"type":"Polygon","properties":{"NAME":"Newport West Co Const","CODE":"W07000056"},"id":"W07000056","arcs":[[905,906,907,908,-324,909,-322,910,-258,911,-256,912,-254,913,914,-251,915,-249,916,917,-673,918,919,-670,920,-668,921,922,923,924,925,926,927,928,929,930,931,932,933,-729,934,-727,935,-725,936,937,-722,938,-720,939,-718,940,-716,941,942,-713,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961]]},{"type":"Polygon","properties":{"NAME":"Ogmore Co Const","CODE":"W07000074"},"id":"W07000074","arcs":[[962,963,964,965,966,967,968,-235,969,-233,970,-231,971,-229,972,-227,973,974,-33,975,976,977,-29,978,979,-26,980,-24,981,982,-21,983,984,-18,985,-16,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022]]},{"type":"Polygon","properties":{"NAME":"Pontypridd Co Const","CODE":"W07000075"},"id":"W07000075","arcs":[[1023,1024,1025,1026,1027,1028,1029,-1017,1030,-1015,1031,-1013,1032,1033,-1010,1034,-1008,1035,-1006,1036,-1004,1037,-1002,1038,1039,-999,1040,-997,1041,1042,-994,1043,-992,1044,1045,1046,1047,1048,-565,1049,-280,1050,-278,1051,-276,1052,1053,-273,1054,-271,1055,-269,1056,-267,1057,-316,1058,1059,1060,-351,1061,-349,1062,1063,-346,1064,-344,1065,-342,1066,-340,1067,1068,1069,1070,1071,1072,1073,1074,1075]]},{"type":"Polygon","properties":{"NAME":"Rhondda Co Const","CODE":"W07000052"},"id":"W07000052","arcs":[[1076,-990,1077,-988,1078,-14,-567,1079,-1048,1080,-1046]]},{"type":"Polygon","properties":{"NAME":"Swansea East Boro Const","CODE":"W07000048"},"id":"W07000048","arcs":[[-898,1081,-896,1082,-3,1083,-1,1084,1085,1086,1087,1088,-616,1089,-614,1090,-612,1091]]},{"type":"Polygon","properties":{"NAME":"Swansea West Boro Const","CODE":"W07000047"},"id":"W07000047","arcs":[[-1088,1092,-1086,1093,-633,1094,-631,1095,1096,-628,1097,1098,-625,1099,-623,1100,1101,-620,1102,-618,1103]]},{"type":"Polygon","properties":{"NAME":"Torfaen Co Const","CODE":"W07000053"},"id":"W07000053","arcs":[[1104,-654,1105,1106,-651,1107,-649,1108,1109,-646,1110,-125,1111,-123,1112,-771,1113,-769,1114,-767,1115,-765,1116,-763,1117,-761,1118,-759,1119,-757,1120,-755,1121,1122,-752,1123,-750,1124,-748,1125,-746,1126,1127,1128,-742,1129,-740,1130,1131,1132,-736,1133,1134,-733,1135,1136,1137,-933,1138,-931,1139,-929,1140,-927,1141,-925,1142,-923,1143,-666,1144,-664,1145,-662,1146,-660,1147,-658,1148,-656]]},{"type":"Polygon","properties":{"NAME":"Vale of Clwyd Co Const","CODE":"W07000060"},"id":"W07000060","arcs":[[-516,1149,-571,-527,1150,-525,1151,-523,1152,-521,1153,-519,1154,1155]]},{"type":"Polygon","properties":{"NAME":"Vale of Glamorgan Co Const","CODE":"W07000078"},"id":"W07000078","arcs":[[-244,1156,-242,1157,-240,1158,1159,1160,-967,1161,-965,1162,-963,1163,-1022,1164,1165,1166,1167,-1029,1168,-1027,1169,-1025,1170,-1076,1171,1172,-1073,1173,-1071,1174,1175,1176,-367,1177,-365,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189]]},{"type":"Polygon","properties":{"NAME":"Wrexham Co Const","CODE":"W07000044"},"id":"W07000044","arcs":[[1190,-482,1191,-480,1192,1193,-477,1194,-475,-81,1195,-79,1196,-77,1197,-75,1198,-73,1199,1200,-70,1201,1202,-512,1203,1204,-509,1205,-507,1206,-505,1207,-503,1208,1209,-500,1210,1211,-497,1212,-495,1213,-493,1214,-491,1215,1216,-488,1217,-486,1218,-484]]},{"type":"Polygon","properties":{"NAME":"Dwyfor Meirionnydd Co Const","CODE":"W07000061"},"id":"W07000061","arcs":[[1219,1220,-461,-860,1221,-858,1222,1223,1224,-854,1225,-852,1226,1227,-849,1228,-847,1229,1230,-844,1231,-842,1232,-840,1233,-838,1234,-836,1235,-834,1236,-832,1237,-830,1238,1239,-827,1240,-825,1241,1242,-822,1243,1244,1245,1246,1247,-816,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,-98,1258,-96,1259,1260,-93,1261,-91,1262,-89,1263,-111,1264,-109,1265,1266,-106,1267,-104,1268,-102,1269,1270,-53,1271,-51,1272,-49,1273,-47,1274,1275,-44,1276,-548,1277,-546]]},{"type":"MultiPolygon","properties":{"NAME":"Ceredigion Co Const","CODE":"W07000064"},"id":"W07000064","arcs":[[[1278,-447,1279,-445,1280,-443,1281,-441,1282,1283,-438,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,-1257,1309,-1255,1310,-1253,1311,1312,-1250,1313,-814,1314,1315,1316,-810,1317,-808,1318,-806,1319,-804,1320,-802,1321,-800,1322,-798,1323,-796,1324,1325,-793,1326,-871,1327,-869,1328,-184,1329,-182,1330,-452,1331,1332,-449]],[[1333,1334]]]},{"type":"MultiPolygon","properties":{"NAME":"Ynys Mon Co Const","CODE":"W07000041"},"id":"W07000041","arcs":[[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]]]},{"type":"MultiPolygon","properties":{"NAME":"Newport East Co Const","CODE":"W07000055"},"id":"W07000055","arcs":[[[-961,1343]],[[-959,1344,1345,-956,1346,1347,-953,1348,1349,1350,-949,1351,1352,1353,-945,1354,-711,1355,-709,1356,-707,1357,1358,-704,1359]]]},{"type":"MultiPolygon","properties":{"NAME":"Cardiff South and Penarth Boro Const","CODE":"W07000080"},"id":"W07000080","arcs":[[[-1189,1360,1361,-1186,1362,-1184,1363,-1182,1364,-1180,1365,-363,1366,1367,1368,-303,1369,-301,1370,-299,1371,-331,1372,-329,1373,-327,1374,1375,-908,1376,-906,1377]],[[1378]]]},{"type":"MultiPolygon","properties":{"NAME":"Carmarthen West and South Pembrokeshire Co Const","CODE":"W07000066"},"id":"W07000066","arcs":[[[1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,-421,1405,-419,1406,-417,1407,-415,1408,-413,1409,-411,1410,-409,1411]],[[1412]],[[1413]],[[1414]],[[-407,1415]],[[-405,1416,1417]]]},{"type":"Polygon","properties":{"NAME":"Preseli Pembrokeshire Co Const","CODE":"W07000065"},"id":"W07000065","arcs":[[-1334,1418,-1308,1419,-1306,1420,-1304,1421,-1302,1422,-1300,1423,-1298,1424,-1296,1425,-1294,1426,1427,-1291,1428,-1289,1429,1430,-1286,1431,1432,1433,-434,1434,-432,1435,1436,-429,1437,-427,1438,-425,1439,-423,1440,-1404,1441,-1402,1442,-1400,1443,1444,1445,1446,1447,1448,-1393,1449,-1391,1450,-1389,1451,-1387,1452,-1385,1453,1454,-1382,1455,-1380,1456,1457]]}]}},"arcs":[[[5343,1158],[3,0],[-3,9],[10,37],[-1,7],[0,7],[15,23],[6,11],[5,6],[9,14],[6,7],[3,8],[4,6],[-2,6],[2,3],[0,5],[-3,1],[-2,4],[1,1],[0,8],[0,4],[0,1],[-1,4],[1,0],[0,3],[5,2],[11,1],[0,2],[8,-1],[0,5],[2,8],[5,4],[2,7],[2,4],[4,2],[1,1],[1,-1],[1,2],[-4,3],[3,8],[2,2],[-3,8],[3,1],[2,2]],[[5441,1393],[3,2],[6,2]],[[5450,1397],[3,5],[5,3]],[[5458,1405],[13,-5]],[[5471,1400],[-2,-4],[7,-3],[-1,-6],[13,-3],[7,1],[-1,-10],[-1,-2],[6,-8],[11,3],[5,3],[12,1],[5,-2],[3,0],[1,-1],[7,-17],[4,-4],[0,-2],[5,-5],[-6,-12],[9,-8],[-14,-17],[10,0],[5,-2],[5,-2],[24,-18],[16,-12],[5,-1],[0,1],[4,-2],[15,0],[-1,8],[5,0]],[[5629,1276],[7,-10],[2,-3]],[[5638,1263],[-3,1],[3,-4]],[[5638,1260],[1,-1],[7,-2]],[[5646,1257],[3,2],[1,4],[1,3],[2,0],[6,-2],[4,1],[3,2],[3,-5],[2,0],[3,-1],[4,1],[3,-3],[4,1],[2,0],[-2,-3],[-1,-3],[10,2],[8,1],[5,-1],[9,-5],[6,-1],[3,0],[9,3],[4,1],[4,-1],[12,-7],[9,0],[1,-3],[-2,-5],[0,-3],[-1,-2],[0,-4],[2,-5],[2,-2],[3,-11],[6,-8],[-3,-7],[-2,-1],[2,-8],[58,1],[1,14],[20,11],[7,6],[3,0],[3,10]],[[5863,1229],[5,6],[6,-6]],[[5874,1229],[8,-7],[1,-1],[2,-8],[7,0],[8,1],[11,-3],[3,-1]],[[5914,1210],[10,0],[3,4]],[[5927,1214],[0,2],[1,3],[9,8],[2,1],[2,0],[5,1],[17,6],[1,2],[0,5],[-1,1],[2,5],[2,2],[8,2],[-5,7],[-2,4],[-7,11],[5,2],[4,2],[6,4],[8,6],[3,1],[4,1],[7,5],[11,-2],[34,2],[60,68],[3,11],[7,8],[4,7],[0,1],[8,10],[7,9],[2,3],[1,5],[6,4],[4,5],[5,0],[1,1],[16,14],[29,13],[25,15],[6,4],[2,3],[2,-1],[12,22],[45,32],[3,6],[5,4],[7,3],[1,3],[10,7],[4,5],[10,9],[4,7],[22,16],[8,5],[3,7],[21,21],[14,8],[30,13],[27,-4],[40,-29]],[[6497,1610],[-11,-53],[15,-39],[-19,-24],[7,-21],[-15,-21],[-5,-13],[29,-27],[6,-12],[15,-37],[6,-8],[40,-35],[8,-37]],[[6573,1283],[-2,-4],[-11,-21]],[[6560,1258],[-56,12],[-56,-17],[-2,-17],[-159,24],[-6,0],[-14,1],[-10,-1],[2,3],[-61,11],[-58,-86],[-4,-10],[-3,-7],[-6,-13],[7,-3],[3,-8],[0,-5],[0,-3],[-3,-3],[-4,-8],[-1,-7],[-1,-3],[-1,0],[-7,-22],[5,-4],[9,-2],[4,-3],[0,-8],[0,-1],[-1,-4],[-2,-8],[1,-3],[5,-3],[1,-2]],[[6142,1058],[-4,0],[-1,1]],[[6137,1059],[-5,1]],[[6132,1060],[-10,5],[-12,3],[-10,1]],[[6100,1069],[-10,0],[-2,-1],[0,-2],[-2,-4]],[[6086,1062],[0,-5],[-2,-6],[0,-7],[-1,-1],[-1,-1],[-5,-9],[-1,-10],[16,-38],[13,-4],[22,-29],[14,-20],[34,-14],[1,-8],[7,-2],[4,-4],[4,-2],[7,-7],[1,-5],[1,-1],[5,-2]],[[6205,887],[5,-4],[7,-1]],[[6217,882],[6,-3],[0,-4]],[[6223,875],[-1,0],[-1,-2],[-4,-3],[-6,-8],[1,-6],[3,-3],[2,-3],[9,-6],[0,-1],[8,-3],[5,-6],[1,-3],[-1,-2],[0,-5],[2,-2],[1,-4],[-1,-2],[1,-3],[-3,-5],[1,-3],[-3,-3],[-1,-2],[1,-2],[-2,-1]],[[6235,797],[1,-2],[-1,-1]],[[6235,794],[1,-3],[-2,-2],[1,-1],[0,-2],[-3,-2],[0,-5],[-3,-3],[0,-1]],[[6229,775],[0,-3],[-2,-2],[-1,0]],[[6226,770],[0,-2],[-3,-1]],[[6223,767],[1,-1]],[[6224,766],[-4,-3],[0,-6]],[[6220,757],[-2,-4],[-6,-3]],[[6212,750],[-15,-1]],[[6197,749],[-1,0],[-6,0],[-12,0]],[[6178,749],[-19,4]],[[6159,753],[-13,-1],[-5,-2],[-9,-1],[-6,-1],[-8,1],[-4,-3],[0,-1],[-1,-1],[-2,1],[-4,-1],[-2,1],[-4,0],[0,-3],[-5,-4],[-3,-7],[-5,-2],[-7,2],[-5,1],[-8,-4],[-1,-2],[-3,-2],[-1,-2],[2,-6],[4,-3],[-5,-3],[0,-2],[-3,-2],[-2,-1],[-2,-3],[-8,-6],[-3,0],[-3,-2],[-4,2],[-2,0],[-1,1],[-22,8],[-2,0],[-3,4],[-21,5],[-17,1],[0,-1],[-22,-4],[-4,0],[-7,2],[-20,7],[-9,7],[-12,6],[-8,9],[-4,-1],[-9,0],[-2,-1],[-2,-3],[-12,-1],[-3,-2],[1,-5],[-2,0],[-1,-1]],[[5855,727],[-26,66],[-42,81],[-33,47],[14,-1],[13,-9],[6,2],[2,7],[-4,16],[-13,11],[-10,10],[-17,4],[-2,-11],[-3,-10],[-29,25],[-65,35],[-35,36],[-59,93],[-9,8],[3,2],[4,2],[21,5],[6,-3],[5,3],[0,4],[-6,19],[-13,0],[-11,15],[-11,-13],[-24,-7],[-2,-5],[-47,11],[-119,-12],[-6,0]],[[4882,8344],[-2,3],[-3,0]],[[4877,8347],[-2,5],[2,2],[0,2],[1,2],[0,8],[4,10],[0,4],[-3,8],[-2,3],[-2,9],[-8,5]],[[4867,8405],[3,4],[5,4],[0,2],[-8,2]],[[4867,8417],[-3,3],[-2,-3],[-5,-4],[-9,-5],[-5,-1],[-5,1],[-5,0],[-8,-2],[-6,-1],[-6,16],[-3,4],[2,2],[-1,1],[6,13],[0,6],[7,6],[2,3],[-1,1],[1,0],[3,4],[-3,3],[0,2],[7,1],[1,1],[2,2],[0,1],[3,4],[-1,1],[1,0],[1,11],[5,4],[0,5],[2,1],[1,3],[6,5],[4,2],[0,2],[-2,3],[-1,1],[-3,3],[-3,2],[4,-1],[3,-2],[4,-2],[0,-2],[4,-1],[7,-1],[0,1],[2,0],[0,1],[2,0],[2,-1],[0,-1],[19,-2],[9,-2],[1,0],[1,3],[3,2],[4,-1],[3,0],[1,1],[3,1],[3,-1],[8,0],[10,8],[3,1],[0,5],[-2,3],[-2,1],[-7,1],[-4,-3],[-13,-1],[-3,-1],[-6,-2],[-7,-3],[-6,-2],[-3,0],[-11,-1],[-9,1],[-4,-2],[-7,1],[-1,0],[-1,-1],[-2,0],[-1,1],[-2,2],[-1,1],[46,92],[26,20],[35,33],[20,4],[10,2],[49,22],[27,67],[-6,47],[38,38],[1,5],[3,6],[5,5],[5,5],[8,2],[16,4],[6,3],[10,7],[5,6],[10,24],[3,12],[0,13],[1,24],[-3,6],[-6,3],[-11,10],[-30,7],[-115,57],[-11,7],[-4,8],[-1,1],[-1,3],[-2,0],[-1,6],[-2,6],[-9,5],[-5,1],[-5,2],[-2,4],[2,1],[-1,2],[-3,2],[-3,3],[-1,0],[0,1],[-1,2],[-1,3],[-4,3],[-5,3],[0,1],[-2,3],[-1,0],[-1,4],[-6,9],[-2,1],[-22,-16],[-8,7]],[[4904,9115],[115,76],[16,5],[3,0],[5,3],[27,8],[7,2],[5,2],[24,8],[31,6],[20,3],[8,2],[18,6],[-3,0],[15,4],[4,3],[24,8],[14,8],[9,6],[183,60],[98,0],[1,-9],[-5,-1],[3,-6],[5,-6],[12,-7],[17,-10],[20,-13],[19,-11],[14,-13],[11,-15],[-6,-15],[-28,-19],[-14,-8],[-12,-9],[-4,-12],[3,-20],[11,-14],[20,-15],[39,-28],[-17,19],[-24,26],[-5,12],[2,14],[3,6],[29,22],[24,23],[7,15],[1,10],[-2,12],[-8,16],[-63,32],[1,2],[1,1],[3,-2],[1,1],[0,-1],[1,-1],[1,1],[-1,1],[1,3],[-1,-1],[0,2],[-3,1],[1,1],[-2,2],[-5,5],[-1,2],[1,1],[-1,0],[1,2],[-6,7],[1,1],[-6,5],[-2,3],[-7,7],[1,1],[-4,3],[-3,1],[-6,1],[-27,64],[-11,9],[-2,17],[-6,21],[-9,27],[-4,4],[-8,5],[-29,10],[-18,18],[-36,17],[-7,2],[-9,18],[69,-6],[73,-17],[57,-27],[2,-2],[2,0],[1,-3],[1,-1],[4,-4],[9,-3],[39,-37],[73,31],[81,-21],[45,-32]],[[5836,9440],[0,-1],[-2,-2],[-1,-2],[-5,-1],[-5,-5],[-10,-4],[-1,3],[-1,0],[0,2],[-4,0],[0,-4],[-1,-4],[-4,-2],[0,-8],[3,-4],[-2,-4],[3,-1],[3,-3],[0,-2],[-2,-1],[1,-2],[1,-1],[0,-3],[3,-1],[-3,-3],[3,-7],[0,-8],[-3,-3],[2,-4],[3,-2],[-5,-7],[-4,0],[0,-2],[-5,-12],[-1,-3],[1,0],[-21,-23],[-9,-7],[9,-9],[-2,-2],[8,-4],[3,-1],[1,-2],[9,-2],[-3,-1],[3,-5],[4,-4],[4,-1],[2,0],[0,-2],[4,-2],[0,-2],[4,0],[2,5],[6,-2],[-1,-1],[3,-2],[5,0],[4,3],[4,-3],[-1,-2],[1,0],[0,-1],[6,-6],[0,-2],[6,-4],[2,-11],[-3,-3],[-4,-3],[-2,-2],[-1,-3],[0,-6],[2,-4],[0,-4],[-3,-7],[-3,-2],[-3,-1],[17,-11],[-7,-7],[-2,0],[-5,-2],[-3,-5],[-1,-3],[2,-2],[2,-5],[-2,-19],[4,-2],[0,-2],[0,-2],[1,-2],[2,-3],[3,-2],[0,-3],[4,-7],[2,0],[3,-3],[9,0],[3,-3],[4,-1],[3,1],[4,-2],[5,-4],[1,-4],[4,-1],[4,-2],[12,-5],[3,-7],[1,-5],[-3,-9],[2,-5],[0,-3],[-1,-2],[-4,-4],[-3,-6],[-3,-3],[1,0],[2,-10],[2,-3],[-6,-18],[0,-4],[-1,-2],[0,-1],[0,-1],[0,-3],[-1,0],[1,0],[1,-4],[8,-10],[0,-4],[7,-6],[5,-8],[-5,0],[-6,-8],[-4,-2],[0,-1],[-3,0],[-1,-7],[-1,-3],[-2,-1],[8,-6],[0,-2],[2,-2],[6,0],[1,-1],[6,-4],[-11,-75],[5,-7],[-5,-15],[-4,-1],[-2,1],[-3,-3],[-1,-13],[-1,-1],[0,-1],[3,-5],[-2,-3],[2,0],[-1,-3],[1,-17],[3,-2],[3,-7],[1,-2],[2,-1],[6,0],[4,0],[0,-1],[-7,-16],[1,-9],[-4,-2],[0,-4],[-5,-5],[2,-9],[1,-13],[3,-2],[4,-8],[4,-2],[0,-2],[2,-1],[0,-3],[2,-1],[-1,-2],[1,0],[3,-2],[4,0],[3,-5],[7,-8],[6,-3],[-1,-2],[-3,0],[-2,2],[-4,-3],[-2,2],[-4,0],[-3,-2],[-4,-2],[-4,-3],[-2,-1],[-2,-1],[-5,-1],[0,1],[-2,-2],[-2,0],[-1,-3],[1,-1],[-4,-4],[1,-2],[2,-1],[0,-2],[7,-10],[2,-2],[2,-3],[2,-1],[4,-6],[3,-1],[1,-4],[-5,-10],[4,-3],[23,3],[-2,-3],[14,-2],[2,-3],[5,-5],[3,3],[3,1],[6,-1],[1,-1],[9,-4],[4,3],[3,0],[0,-2],[-1,0],[0,-1],[2,-2],[1,0],[-1,-2],[3,-3],[2,-4],[0,-2],[3,-3],[3,-7],[-1,-2],[2,-8],[2,-2],[0,-1],[1,-3],[3,-1],[2,-3],[3,-1],[3,-3],[2,-6],[1,-2],[1,-2],[0,-3],[1,-2],[-1,-2],[2,-3],[-2,-7],[1,-2],[0,-4],[1,-2],[-3,-5],[0,-9],[-5,-2],[-1,-1],[0,-4],[1,-2],[0,-2],[5,-2],[2,-3],[0,-2],[8,-6],[1,-2],[0,-5],[-1,-2],[0,-6],[-1,-4],[0,-20],[-5,-4],[12,-17],[8,-18],[2,-16],[0,-8],[-29,-24],[-16,-124],[-6,-1],[-1,-6],[5,-5],[-2,-9],[-8,-7],[0,-3],[1,-3],[-1,-9],[-3,-6],[-6,-3],[0,-1],[2,-3],[-1,-3],[-2,-1],[0,-1],[0,-2],[-4,-3],[0,-2],[-1,-2],[-1,-4],[1,-2],[2,-8],[1,-1],[1,-7],[2,-2],[1,-3],[1,-5],[-2,-1],[5,-6],[1,-5],[4,2],[2,-1],[3,-2],[12,0],[6,-2],[5,-2],[6,-5],[3,-1],[1,1],[4,-1],[11,1],[0,1],[2,1],[7,2],[2,0],[3,-2],[2,2],[1,-2],[2,0],[2,1],[1,2],[4,-1],[1,2],[5,-2],[1,-2],[6,-4],[1,-1],[0,-3],[1,-1],[0,-1],[3,-3],[-3,-5],[3,-6],[0,-2],[2,-1],[1,-3],[-1,-4],[2,-2],[2,-1],[-1,-2],[-1,0],[0,1],[-1,0],[-1,-4],[-3,-1],[1,-3],[-1,0],[1,-3],[-1,-1],[1,-1],[-1,-4],[-4,1],[-10,-2],[-20,-9],[4,-6],[5,-5],[-2,-5],[14,0],[3,-1],[0,-1],[4,-4],[5,-1],[5,3],[3,-5],[8,-7],[3,-1],[40,-26],[21,-7],[-9,-6],[-11,-19],[-7,-16],[-9,-9],[-11,-10],[0,-4],[4,-6],[-23,-35],[-4,-14],[-4,-17]],[[6094,7866],[25,-23]],[[6119,7843],[-11,0],[-33,2]],[[6075,7845],[-33,-2],[-58,-12]],[[5984,7831],[-7,-3],[-55,-19]],[[5922,7809],[-32,-14]],[[5890,7795],[-19,-11],[-17,-13]],[[5854,7771],[-15,-14],[-21,-29]],[[5818,7728],[-6,-6],[-10,-9],[-12,-6],[-17,-7]],[[5773,7700],[-9,-2],[-22,0],[-10,-2],[-18,-7],[-27,-4],[-13,-15],[-44,-11],[-25,5],[-33,17],[-15,19],[-5,22]],[[5552,7722],[-27,1],[-3,7]],[[5522,7730],[1,6],[-1,8],[-30,38],[2,14],[-113,59],[-13,8],[-2,7],[-3,1],[-2,0],[-7,5],[-6,1],[-5,4],[-1,0],[-3,0],[-9,4],[-6,-2],[-7,-1],[1,10],[2,4],[8,13],[5,4],[-3,8],[2,16],[5,11],[9,9],[3,7],[-9,-1],[-7,3],[-4,0],[-7,4],[-5,4],[-4,5],[-1,6],[-4,23],[-17,2],[-9,-1],[-21,5],[-14,4],[-8,-12],[-6,1],[-12,-1],[-9,1],[-10,-4],[-7,-3],[-9,-8],[-19,1],[-4,3],[-7,1],[-2,-1],[-3,2],[-2,-5],[-11,-6],[-5,-1],[-6,-5],[-4,3],[-7,-2],[-4,-1],[-7,-6],[-8,-2],[-4,-3],[-7,-2],[-8,-3],[0,1],[-6,-1],[0,-1],[-4,-2],[-2,-2],[-83,0],[1,2],[-4,4],[-2,5],[-9,2],[-10,3],[-6,13],[1,15],[-2,9],[12,16],[2,10],[-9,8],[-3,4],[-7,16],[0,8],[-9,17],[5,10],[5,4],[5,7],[2,14],[-2,9],[2,11],[0,6],[10,13],[2,5],[3,1],[3,5],[6,4],[8,7],[11,7],[10,12],[3,9],[3,6],[-1,2],[2,3],[-1,18],[-3,1],[-1,3],[-12,7],[-4,6],[0,4],[-5,5],[-4,2],[-6,6],[-9,2],[-7,0],[-2,1],[1,2],[-1,2],[1,0],[0,5],[-1,1],[2,1],[-1,3],[6,8],[0,4],[2,1],[6,7],[2,4],[-4,0],[-3,-2],[-4,0],[-3,1],[-1,-2],[-4,0],[-1,-1],[-4,-1],[-4,1],[-3,-3],[-5,1],[-2,2],[0,5],[-4,2],[-6,-2],[-5,3],[-9,0],[-6,5],[-3,1],[-2,3],[-4,3],[-2,4],[-3,1],[-1,2],[-2,3],[-6,-2],[-3,1],[-2,-1]],[[5570,9308],[0,2],[4,-5],[1,-1],[-3,2],[-2,2]],[[8036,8451],[3,2],[4,1],[3,-1],[16,1],[8,3],[5,0],[3,-1],[3,-1],[1,3],[3,1],[5,-2],[2,1],[8,1],[3,1],[3,2],[2,3],[1,3],[2,0],[-1,1],[8,4],[15,-2],[2,4],[3,0],[0,1],[-1,3],[3,3],[0,2],[3,3],[2,-1],[1,0],[2,4],[2,0],[1,3],[2,1],[1,3],[4,2],[1,0],[0,1],[1,2],[-1,2],[4,2],[0,3],[1,0],[1,-2],[2,2],[3,2],[1,2],[-1,2],[0,2],[3,1],[2,1],[3,0],[2,4],[4,1],[2,1],[8,3],[1,2],[1,2],[-1,2],[-4,-2],[-2,1],[0,1],[-2,1],[-3,0],[-2,1],[-1,2],[4,4],[-3,3],[0,2],[2,3],[2,-4],[1,0],[0,-1],[1,-3],[4,-3],[4,0],[7,2],[1,2],[7,3],[4,3],[1,-1],[8,3],[6,1],[6,2],[3,-1],[3,3],[4,1],[12,0],[3,-1],[5,-5],[3,-1],[0,-2],[9,-3],[7,1],[12,0],[1,0],[0,-1],[1,-1],[1,0],[2,-1],[1,-2],[0,-2],[3,-1],[1,-2],[2,-1],[8,-5],[1,0],[5,-1],[3,-2],[5,-1],[1,-1],[6,0],[4,2],[0,1],[5,2],[-1,-1],[2,0],[5,3],[0,-3],[9,5],[5,7],[3,3],[4,6],[2,6],[1,3],[2,2],[1,3],[2,0],[2,4],[12,-4],[6,-3]],[[8402,8561],[2,1],[4,0],[7,0]],[[8415,8562],[1,0],[1,-1]],[[8417,8561],[14,1],[4,-4]],[[8435,8558],[2,0],[2,1],[3,-1],[3,-2],[1,-3],[4,0],[10,-3],[2,0],[2,2],[2,-3],[2,0],[0,-3],[2,0],[2,2],[3,-6],[1,-2],[2,1],[1,0],[-1,-1],[0,-1],[3,0],[2,-1]],[[8483,8538],[3,1],[1,-2],[-1,-1],[3,-3],[1,0]],[[8490,8533],[2,2],[-2,2],[1,3]],[[8491,8540],[-3,5],[-6,1]],[[8482,8546],[-1,3],[-2,-1],[-2,1],[-1,1],[1,4],[-4,2],[-1,1],[-8,6],[0,1],[-2,4],[1,2],[-1,5],[-4,3],[-2,3],[-1,0],[-2,3],[-2,1],[-3,4],[1,1],[3,0],[1,1],[7,0],[-1,3],[2,1],[-1,4],[1,1],[1,2],[-1,2],[1,1],[-1,2],[1,4],[2,4],[5,3],[7,0],[-5,9],[-12,8],[-2,4],[0,3],[-9,-6],[-10,3],[-17,2],[-19,7],[-11,3],[-16,3],[-11,1],[0,1],[1,1],[-2,1],[1,1],[-7,0],[1,4],[1,1],[-8,1],[-1,7],[3,0],[-6,8],[-4,-1],[-1,7],[-8,2],[0,5],[10,-1],[-18,11],[-3,0],[-1,0],[-3,3],[0,1],[-9,9],[-3,0],[-7,11],[4,0],[-2,5],[1,0],[-1,3],[-4,7],[7,2],[1,-1],[5,3],[7,3],[-4,13],[-2,0],[0,5],[11,3],[8,1],[0,2],[-3,3],[3,1],[-4,5],[-3,5],[-3,2],[-2,2],[-1,2],[1,0],[-3,2],[-9,-6],[-3,3],[-2,3],[-5,-4],[-1,1],[-2,5],[10,3],[-1,2],[3,2],[0,1],[1,-1],[-3,2],[-2,1],[2,5],[9,-1],[3,9],[2,1],[4,5],[2,1],[-1,1],[2,1],[1,0],[1,2],[2,-1],[0,2],[5,1],[1,4],[-2,1],[2,0],[-1,1],[2,0],[2,5],[2,1],[-1,1],[2,1],[0,5],[1,3],[2,2],[3,0],[2,3],[2,1],[3,1],[2,2],[1,1],[0,-1],[1,0],[3,2],[1,1],[2,1],[2,-1],[1,2],[5,1],[0,2],[3,0],[-1,1],[2,1],[0,1],[0,1],[0,2],[4,1],[0,3],[7,0],[1,9],[-1,1],[-8,-1],[-1,5],[-2,6],[-1,0],[-7,-1],[-7,-4],[-3,8],[-1,-1],[-7,6],[-6,4],[2,2],[-3,3],[-3,0],[-3,3],[5,3],[-4,5],[-2,5],[-5,0],[-9,4],[-5,1],[0,2],[-6,4],[-5,3],[-4,0],[1,1],[-1,18],[2,3],[1,8],[2,10],[-1,3],[2,1],[3,2],[6,9],[0,2],[3,6],[13,33],[3,3],[2,4],[10,7]],[[8348,9059],[1,-1],[4,5]],[[8353,9063],[1,2]],[[8354,9065],[10,-5],[11,-7],[22,-19],[25,-9],[8,-5],[8,-6],[8,-3],[24,-14],[14,-5],[26,2],[-60,27],[9,26],[-18,-3],[-10,-2],[-23,18],[25,37],[15,2],[11,1],[-19,16],[-14,6]],[[8426,9122],[29,23]],[[8455,9145],[94,-4],[39,-18],[65,-39],[37,-22],[22,-14],[29,-22],[26,-15],[44,-33],[31,-18],[17,-9],[15,-9],[18,-31],[28,-36],[8,-7],[22,-9],[12,-11],[3,-5],[11,-9],[7,-29],[1,-17],[-2,-9],[-1,-4],[-7,-9],[-14,-10],[-3,-7],[-2,-1],[0,-1],[-23,-10],[-38,-20],[-9,9],[-9,-6],[-8,0],[-5,-2],[-4,-1],[-6,-3],[-5,-5],[-2,1],[-16,-6],[-5,-2],[-14,-12],[-8,4],[-7,1],[-3,0],[-5,-7],[-11,-10],[-7,0],[-7,-1],[-9,-4],[-9,6],[1,2],[-4,3],[-3,-2],[-5,-1],[-5,-5],[-3,2],[-4,1],[-3,-2],[1,-1],[-7,-1],[0,-4],[-3,-3],[0,-2],[-7,-4],[4,-3],[3,-1],[10,-1],[6,-2],[2,-2],[2,-1],[2,-5],[3,-3],[0,-2],[-1,-1],[1,-2],[3,-3],[2,0],[2,-5],[7,5],[9,3],[-1,7],[3,-2],[1,1],[59,-88],[-23,2]],[[8797,8559],[-8,6],[-2,0],[-15,-6]],[[8772,8559],[-1,0],[-2,-1],[-6,-3],[-5,-1],[-2,-2],[-5,3],[-3,0],[-3,-2],[-9,-2],[-1,-1],[-10,0],[-2,-1],[-2,2],[-2,0],[-2,-3],[-6,-2],[-3,0],[-1,1],[-5,0],[-6,-3]],[[8696,8544],[-5,-5]],[[8691,8539],[1,-5],[-3,-4]],[[8689,8530],[-3,-1],[0,-3]],[[8686,8526],[-7,-5]],[[8679,8521],[-4,-1],[-8,-4],[-3,-1],[2,-6],[1,-1],[1,-4],[-1,0],[4,-7],[-7,-3],[-3,-1],[3,-6],[-3,-2],[-1,-3],[1,-2],[0,-6],[-6,-7],[-7,-4],[-1,-2],[-2,-2],[-3,-6],[-3,0]],[[8639,8453],[-5,-8]],[[8634,8445],[-6,-5],[-6,2],[-4,0],[-2,-2],[0,-3],[-2,-3],[-13,-9],[-3,-1],[-4,0],[-4,-7],[-5,-2],[-6,1],[-4,-2],[2,-8],[-1,-10],[3,-5],[2,-5],[1,-10],[-1,-13],[-4,1],[-2,3],[2,2],[1,3],[-2,1],[-1,4],[-1,2]],[[8574,8379],[-6,3],[-1,-1]],[[8567,8381],[-1,3],[-6,-1],[-2,-2],[-6,0],[2,-2],[-6,0],[-2,-3]],[[8546,8376],[-6,-3],[-1,-6]],[[8539,8367],[1,-5],[3,-1],[-4,-5]],[[8539,8356],[-4,-3],[-5,-2],[-5,0]],[[8525,8351],[0,-1],[0,-1],[-2,-1],[-2,-2],[-4,-2],[-25,-8]],[[8492,8336],[-29,-11],[-15,-1],[-10,1]],[[8438,8325],[-1,2],[-2,-1],[-1,2],[-1,0],[-3,2],[-1,2],[-1,1],[-7,7],[-2,5],[-3,1],[-5,-2],[-2,0],[-2,-1],[-2,0],[-3,-1],[-2,0],[-5,-2],[-6,-3],[-2,0],[-1,-3],[-1,0],[-2,-2],[-4,-2],[-6,-3],[-2,-2],[-2,0],[-2,-2],[-3,-1],[0,-2],[-5,-5],[-13,-6],[-8,-1],[-3,-3],[-2,0],[-1,-4],[-3,-2],[-2,-3],[-7,-1],[-1,-2],[-2,1],[-5,-1],[-7,-4],[-5,0],[-5,-1],[-2,-2],[-4,-2],[-1,-1],[-5,-2],[-2,-4],[-2,-1],[-2,0],[-1,-3],[-5,-3],[0,-2],[-2,-1],[-5,-2],[-2,0],[-2,-1],[-2,0],[-2,0],[-3,-1],[-2,1],[-9,-3],[-2,1],[-8,1],[-2,0],[-4,1],[0,1],[-8,5],[-5,-1],[-3,-3],[-11,-2]],[[8199,8264],[-2,-2]],[[8197,8262],[-3,0],[-10,5],[-5,-1],[-9,1],[-10,9],[-6,6],[5,15],[-2,1],[-3,6],[-5,13],[-4,5],[-4,-2],[-6,2],[2,2],[-3,1],[0,1],[-3,3],[5,2],[-2,0],[-1,2],[-2,0],[0,2],[-1,0],[-2,1],[2,1],[1,3],[1,1],[-4,3],[-1,2],[1,6],[-1,3],[-4,3],[-3,0],[-3,2],[0,2],[-3,1],[0,3],[4,3],[-1,2],[2,2],[0,2],[1,0],[-1,2],[2,2],[0,1],[2,2],[-2,2],[3,1],[0,1],[1,1],[4,7],[0,2],[-1,3],[4,2],[-1,1],[-2,0],[0,1],[3,2],[-1,4],[4,3],[0,2],[1,2],[-7,1],[-2,1],[-4,0],[-2,-1],[-5,3],[-12,2],[-9,-1],[-2,1],[-22,4],[-25,12]],[[8046,8438],[-6,6],[-4,7]],[[3814,8122],[-1,6],[-1,1],[-2,1],[-3,-1],[-8,3],[-5,0],[-6,-2],[-9,0],[-13,-5],[-3,0],[-4,3],[-3,1],[-4,-2],[-1,-4],[-8,-4],[2,-2],[0,-2],[-2,-3],[-4,-1]],[[3739,8111],[-6,0],[-4,-2],[-3,2],[-6,7],[-1,2],[0,2]],[[3719,8122],[-1,2],[-4,2]],[[3714,8126],[-2,3],[-2,1],[-4,1],[-1,1]],[[3705,8132],[4,2],[3,5],[1,7],[-2,3],[-8,7],[2,2],[3,8],[-3,7],[2,6],[2,3],[-2,7],[1,13],[-2,2],[-1,-2],[-7,3],[4,2],[3,4],[3,3],[3,0]],[[3711,8214],[1,2],[3,0]],[[3715,8216],[4,3],[-1,4]],[[3718,8223],[2,1]],[[3720,8224],[-3,4],[-9,3]],[[3708,8231],[-8,3],[-5,-5],[-9,-6],[-4,2],[-3,5],[-2,1],[-14,3],[-1,1],[-12,0]],[[3650,8235],[-1,2],[1,1],[1,0],[1,-2],[1,0],[-2,6],[1,4],[-1,2],[0,-3],[-1,0],[-2,6],[1,1],[2,-1],[-1,4],[-2,1],[0,2],[2,1],[-1,1],[0,3],[1,2],[-1,4],[2,8],[0,2],[1,3],[4,5],[1,5],[1,0],[-2,2],[1,7],[0,5],[0,4],[1,0],[1,1],[-1,1],[0,5],[-2,7],[-3,13],[-6,9],[-3,9],[-4,8],[-1,2],[-8,16],[1,23],[11,57],[25,20],[23,-10],[3,-2],[10,-32],[8,-16],[0,-2],[2,-6],[2,0],[3,-7],[7,8],[3,2],[12,8],[3,12],[7,9],[28,56],[4,21],[70,67],[1,0],[6,2],[6,1],[-6,0],[-6,-2],[6,6],[13,3],[7,3],[2,0],[0,4],[3,4],[5,5],[5,4],[3,-2],[0,2],[15,16],[2,4],[5,10],[20,17],[1,4],[35,19],[67,23],[49,54],[18,28],[3,2],[6,1],[12,10],[-1,1],[3,3],[0,2],[5,8],[-2,-5],[2,-2],[3,7],[-3,1],[4,1],[-1,4],[-3,4],[0,6],[2,7],[30,49],[76,73],[5,2],[3,2],[10,6],[7,2],[15,2],[11,-2],[15,2],[9,3],[10,7],[5,5],[7,8],[15,11],[9,9],[10,7],[5,2],[82,20],[119,8],[3,0],[9,-8],[17,-1],[7,-1],[25,-12],[28,-7],[48,25],[82,32],[88,18],[14,9]],[[4867,8417],[8,-3],[-6,-6],[-2,-3]],[[4877,8347],[-4,-2],[0,-3]],[[4873,8342],[-2,-3],[1,-2],[-1,-2],[-2,-2],[-1,-1],[-3,-2],[-3,-4],[-3,-1],[-1,-2],[2,-1],[-1,-2],[-6,-18],[-1,0],[-1,-2],[-2,0],[0,1],[-2,0],[-5,-4],[-5,-2],[-5,-3],[-1,-3],[-9,-5]],[[4822,8284],[-1,-4],[-1,-1],[-6,-2],[-5,0]],[[4809,8277],[-9,4],[-10,2],[-3,1],[-6,0],[-3,-1],[-3,2],[-14,0],[-5,-2],[-5,0],[-4,-1],[-2,1],[-10,-1],[-7,2],[-10,-5],[-9,-2],[-8,1],[-9,0],[-11,2],[-7,0],[-4,1],[-13,-2],[-8,0]],[[4649,8279],[-15,-8],[-4,-6],[-1,-4],[2,-5],[3,-3]],[[4634,8253],[3,-6],[6,-3],[0,-1],[-2,-1],[-7,-9],[-8,-6],[-3,-7],[-5,-5],[-2,-3],[0,-4],[-2,-3],[1,-2],[-2,-1],[2,-2],[1,-4],[0,-6],[1,-2],[-1,-3],[1,-9],[0,-2],[-3,-1],[4,-3],[0,-1],[-1,-7],[1,-8],[-2,-3],[3,-2],[1,-5],[-2,-3],[0,-2],[2,-5],[2,0],[1,-2],[1,-2],[-2,-3],[9,-5],[-71,-49],[-3,3],[-5,1],[-2,-1],[-5,1],[-5,2],[-3,0],[-4,-3],[0,2],[-19,7],[-2,-5],[-4,-3],[-8,1],[-5,2],[-10,3],[-4,1],[-3,-1],[-3,1],[-2,2],[-12,1],[-4,-3],[0,1],[-6,1],[-10,-1],[-15,-3],[-17,-7],[-3,-3],[-7,5],[-2,2],[-3,1],[-2,0],[-9,-9],[-3,-1],[-6,1],[-11,8],[-24,-10],[-5,-5],[-2,-1],[-4,-5],[-9,6],[-8,-1],[-9,8],[-8,4],[1,5],[-3,5],[-7,5],[-2,5],[0,5],[3,3],[-55,-2],[-6,-18],[-9,-7],[-6,-2],[-3,-2],[-9,-1],[-2,-1],[0,-1],[-5,-3],[-4,-7],[0,-3],[-3,-3],[-5,-2],[-3,0],[-19,-4],[-6,-3],[-5,-1],[-6,-5],[-3,-2],[-30,-20],[-9,0],[-30,-23],[-8,5],[-5,2],[-1,2],[0,3],[-8,6],[-26,0],[-5,0],[-5,-1],[-5,1],[-4,0],[-12,4],[-6,4],[-5,4],[-6,4],[-4,5],[-2,4],[1,1],[-2,2],[-1,3],[-4,2],[-1,3],[-2,-1],[-7,1],[-22,-30],[-19,-25],[-12,-12],[-8,-11],[-8,-3],[3,-7],[-5,-2],[-9,0],[-3,1],[-3,0],[1,-2]],[[3865,7956],[-2,-1],[-9,-2],[-1,1]],[[3853,7954],[-8,6],[-6,6]],[[3839,7966],[-3,4],[-4,-1],[-3,1],[-1,5],[-1,0],[-5,15],[-1,9],[1,13],[6,17],[10,17],[-6,6],[-1,-1],[-5,1],[-5,3],[-3,1],[-4,-2],[-2,3],[-2,6],[-2,2],[0,1],[-1,3],[1,2],[-3,5],[1,5],[-1,2],[3,3],[0,1]],[[3808,8087],[13,9],[1,3],[0,4],[-1,1],[-1,5],[2,1]],[[3822,8110],[2,3],[-2,3]],[[3822,8116],[3,1],[-6,2],[-5,3]],[[7842,1684],[5,-30]],[[7847,1654],[-1,0],[-2,10],[-12,18],[0,1],[3,14],[-9,6],[-16,4],[-2,5],[0,7],[-2,5],[-4,4],[-11,5],[-14,10],[-8,6],[-1,-1],[-3,4],[-7,2],[-7,3],[5,6],[0,3],[-6,3],[-2,1],[0,2],[-16,-4],[0,5],[-1,3],[-1,1],[-1,3],[-2,1],[0,3],[-5,6],[-1,1],[-6,9],[0,1],[-1,1],[1,2],[1,1],[0,1],[2,1],[1,5],[2,4],[2,1],[-2,3],[-2,3],[-3,4],[-6,1],[-3,3],[-4,1]],[[7703,1832],[-1,2],[-13,-1]],[[7689,1833],[-8,-2],[-2,12],[1,10],[-1,5],[-4,4],[-7,19],[11,7],[-3,8],[-15,19]],[[7661,1915],[0,4],[-1,2],[-4,3]],[[7656,1924],[-5,2],[-1,0],[-3,1],[-2,3],[-5,4],[-9,1],[-3,-2],[-2,1],[0,3],[2,3],[-3,3],[-2,3],[-17,-6],[-3,2],[0,4],[-2,3],[-2,7],[-2,-1],[-2,3],[-2,2],[-3,0],[-3,9],[-1,9],[1,4],[-1,0],[-1,4],[-4,5],[-6,3],[1,6],[-2,2],[-3,0],[-4,3],[-9,0],[-2,8],[-4,13],[-4,-1],[-5,-1],[-6,-1],[-5,-3],[-8,-13],[-2,-3],[-3,-1]],[[7519,2003],[6,58],[94,94],[168,-64],[114,6],[6,1],[10,-4],[6,-1],[31,1]],[[7954,2094],[139,15],[0,-4]],[[8093,2105],[8,-2],[3,-3],[10,-3],[5,-4],[0,-5],[2,-3],[1,-3],[-2,-4],[-3,-2],[-1,-7],[0,-2],[5,-2],[8,-3],[7,-7],[0,-1],[-2,0],[-2,-1],[-2,0],[-1,-2],[-4,-2],[-16,0],[1,-3],[-1,-2],[-2,0],[2,-3],[3,-2],[-1,-1],[1,-5],[1,-3],[4,-1],[7,0],[-2,-4],[-5,0],[-3,-1],[-4,-3],[-4,0],[-1,-3],[-2,-1],[-3,-4],[-5,-2],[9,0],[6,-2],[10,1],[8,-3],[9,-2],[15,0],[7,-3],[6,-5],[12,-1]],[[8177,1996],[3,-1]],[[8180,1995],[-1,-3],[-5,-1],[-4,-3],[-26,-26],[76,-73],[66,-48],[-34,-13],[0,-5],[-1,-1],[2,-12],[7,-5],[3,-2],[1,0],[0,-1],[2,-2],[0,-3],[5,-6],[0,-7],[-4,-10],[1,-2],[-1,-5],[1,-5],[4,-6],[8,-4],[3,-4],[1,-3],[-2,-10],[-3,-13],[-3,-3],[-12,-8],[6,-30],[4,-5],[1,-3],[1,-5],[-1,-6],[-3,-6],[0,-3],[2,-5],[8,-5],[4,-2],[-16,-10],[1,-6],[2,-3],[6,-8],[-7,-62],[-3,-5]],[[8269,1547],[-16,-16],[-2,-3],[-1,-3]],[[8250,1525],[4,-3]],[[8254,1522],[-10,-8],[-1,-3],[1,-11],[3,-4],[-6,-4]],[[8241,1492],[0,-3],[-2,-1],[-3,-3],[-3,-3],[-2,0],[-10,-10],[3,-3],[4,-2],[-2,-5],[-1,0],[-2,-2],[-4,-1],[1,-1],[-3,0],[0,-1],[-2,-1],[-2,0],[-1,-3]],[[8212,1453],[-10,-2],[-9,-1],[-19,-1],[-5,2],[-4,3],[-3,5],[-1,4],[2,6],[4,4]],[[8167,1473],[20,14],[-4,3],[15,14],[4,4],[1,3],[0,3],[-5,7],[-5,5],[-10,7],[-4,2],[-13,2],[-8,2],[-22,12],[-2,3],[-1,3],[2,15],[0,8],[-1,5],[-1,3],[-2,3],[-5,-1],[-6,1],[-5,0],[-4,1],[-3,4],[-9,7],[-2,6],[-2,0],[-4,-3],[-3,0],[-2,-1],[-5,-2],[-2,-1],[-1,0],[-1,-1],[-5,-3],[0,-1],[-12,-4],[-4,-4],[-7,9],[-7,13],[-4,5],[-6,2],[-2,6],[-3,1],[1,0],[-2,1],[-1,1],[-3,0],[-10,8],[4,2],[-3,3],[1,2],[-5,4],[-2,4],[-5,-2],[2,6],[-1,0],[-1,4],[-4,1],[0,2],[-2,3],[-2,-1],[-6,6],[1,1],[1,1],[0,1],[-4,6],[-1,-1],[-3,3],[-27,53],[-60,53],[-13,-11],[-6,-2],[-2,2],[-2,-1],[-2,-2],[-3,-4],[-3,-1],[0,-3],[-5,-2],[0,-1],[3,-3],[1,-1],[5,-5],[0,-6],[2,-8],[5,-12],[6,-7],[2,-8],[5,-6],[1,-2],[-1,-4],[3,-8],[-2,3],[-4,-1],[-1,1],[-2,-1],[-3,-2],[-8,-2],[-1,-1],[-2,-4],[-4,0],[-2,-1],[-4,-8],[-11,8],[-5,1]],[[8426,2331],[-7,-2],[-1,-2],[-3,-4],[-13,-5],[-6,-4],[-3,-7],[4,-5],[-1,-2],[-10,-6],[-5,-2],[-4,-4],[-4,-1],[0,-2],[1,-3],[-4,-2],[-1,-4],[-7,-1],[-7,-5],[-8,-2],[-2,-2],[-3,0],[-3,-1],[-5,-1],[-2,1],[-4,-1]],[[8328,2264],[-7,-4],[-4,-4]],[[8317,2256],[-3,-7],[0,-5]],[[8314,2244],[3,-5],[2,-3],[3,-2],[1,-8],[4,-1],[1,-2],[-7,0],[-9,2],[-10,3],[-4,-1],[-2,-2],[-2,-6],[0,-5],[4,-12],[5,-9],[2,-1],[0,-3],[-1,-2],[-2,0],[-5,0],[-7,1],[-4,3],[-8,10],[-5,3],[-8,5],[-16,2],[-5,5],[-3,5],[-10,0],[3,-8],[-6,-2],[-2,4],[-4,-1],[1,-3],[-1,-2],[2,-1],[0,-5],[-1,0],[-6,-4],[-5,5],[-2,-1],[-2,2],[-2,-3],[-6,-4],[4,-3],[0,-3],[-1,1],[-5,-2],[-6,3],[-4,-2],[-3,-3],[-4,-15],[-1,0],[-3,-4],[-4,1],[-4,-3],[4,-4],[0,-2],[-5,0],[-5,2],[-4,-3],[-2,-2],[-4,-2],[-7,-1],[3,-3],[3,-1],[5,-8],[-3,-7],[-7,-9],[-5,-2],[-15,-4],[-6,-5],[-1,1],[-12,-6]],[[8108,2112],[-3,-1],[-8,-1]],[[8097,2110],[-4,-1]],[[8093,2109],[-17,-1],[-122,-14]],[[7519,2003],[-26,-1],[-65,-18],[-64,-3],[-33,6],[-2,1],[-11,-1],[0,4],[-4,8],[-2,2],[6,6],[-1,12],[2,1],[-4,22],[-6,12],[-10,10],[-6,7],[-10,19],[-20,-7],[-10,5],[0,2],[-5,0],[-1,1],[-4,4],[-3,-1],[-1,2],[0,3],[-5,3],[-1,3],[-3,1],[-1,1],[-2,-2],[-5,-1],[-3,1],[0,1],[-1,-1],[-17,-6],[-5,-1],[-1,-1],[-5,0],[-3,0],[-1,1],[-2,-1],[-2,0],[0,-1],[-2,2],[-2,0],[-1,1],[-3,1],[0,1],[-1,-1],[0,3],[-1,2],[-3,2],[0,1],[-2,0],[-4,3],[0,4],[-1,1],[1,1],[-2,0],[1,3],[-3,4],[1,2],[-1,4],[1,2],[-2,2],[2,4],[3,2],[1,-1],[1,1],[2,6],[6,6],[-1,4],[0,3],[-55,43],[-19,-30],[-23,-19],[-11,-6],[1,-3],[-4,-3],[-1,-4],[-3,-1],[-1,-3],[-2,-1],[-6,-4],[-4,-1],[-10,-8]],[[7034,2119],[-9,-8],[-2,1]],[[7023,2112],[-6,-1],[-2,0]],[[7015,2111],[2,4]],[[7017,2115],[-1,5],[-7,8],[0,2]],[[7009,2130],[2,1],[0,2],[-8,6],[-1,5],[-6,3],[-6,5]],[[6990,2152],[-2,4],[-6,3],[-2,2],[-7,3],[-8,5],[-9,9],[-5,-3],[-6,-3],[-4,1],[-6,-2],[-6,0],[-6,0],[-5,-1],[6,-14],[0,-11],[-3,-5],[-6,-7],[-7,-12],[-1,-7],[-2,-12],[-1,-15],[-2,-4],[-7,-6],[-3,-2],[-21,-10],[-9,-2],[-13,-4],[-52,-23],[-8,-6],[-6,-7],[-12,-5],[-8,-7],[-22,-8],[-12,-7],[-7,-5],[-3,-1],[-7,-9],[-14,-7],[2,-2],[0,-1],[-3,-4],[-6,-3],[-3,-2],[-5,-2],[-4,5],[-4,0],[-7,-4],[-4,-3],[-10,-2],[-3,-2],[3,-7],[3,0],[5,-3],[1,-3],[3,-5],[4,-1],[3,-3],[0,-4],[-3,-3],[2,-4],[1,-4],[-7,-3],[-2,-1],[-13,-2],[-11,4],[-4,-2],[-3,4],[-2,4],[-5,2],[-6,-1],[-5,1],[-2,-1],[-2,1],[-4,0],[-3,1],[-7,0],[-5,-3],[-1,-3],[-4,-1],[-1,0],[-4,3],[-1,0],[-3,-2],[0,-4],[-6,-6],[2,-2],[2,-2],[0,-1],[-6,-1],[-2,-1],[-1,-6],[-3,-6],[0,-5],[-7,-13],[0,-2],[4,-4],[1,-3],[-3,-4],[-7,-5],[-6,1],[-2,-1],[-3,-2],[0,-4],[-3,-2],[-5,0],[-7,-4],[-8,-2],[-5,-4],[-4,-2],[-14,-3],[-12,-3],[-4,-5],[-4,-3],[-8,-1],[1,-5]],[[6468,1813],[-2,-3]],[[6466,1810],[-3,-2],[-5,6]],[[6458,1814],[-7,9],[0,2]],[[6451,1825],[-5,4],[4,8],[0,5]],[[6450,1842],[-1,4],[-11,9]],[[6438,1855],[0,2],[5,4],[0,2],[-5,9]],[[6438,1872],[1,11],[-8,7]],[[6431,1890],[-5,0],[-1,3],[1,4],[-5,0]],[[6421,1897],[-4,5],[-2,1]],[[6415,1903],[-2,-1],[0,-4],[-2,-2],[-3,0]],[[6408,1896],[-11,-3],[-5,-1],[-8,0]],[[6384,1892],[-3,3],[-3,1],[-5,4],[-8,4],[-2,-2],[-2,1],[-2,2],[-3,2],[-7,-1],[-4,0],[-5,1],[-3,-2]],[[6337,1905],[-1,-2],[-1,0],[-2,3],[-4,2]],[[6329,1908],[-3,-1],[-4,0],[-3,6]],[[6319,1913],[-5,3],[-8,2],[-3,4],[-2,0],[-9,-3],[-5,1],[-1,1],[1,4],[-2,3],[-6,3],[0,4],[-1,2],[-3,1],[-13,2],[-1,1],[0,2],[-5,1],[-3,2],[-2,0],[-1,-1],[-5,-1],[-6,6],[-5,1],[-2,3],[0,3]],[[6232,1957],[-1,2],[-2,-1]],[[6229,1958],[-4,1],[-2,-2],[-4,1],[-30,-1],[0,4],[1,1],[-8,0],[-9,-1],[-7,1],[0,6],[-15,-11],[-6,-2],[-3,-2],[-9,0],[-10,-13],[-15,-6],[-4,-1],[-2,1],[-13,6],[-6,0],[-53,-9],[-11,-3],[-7,-3],[-15,-1],[-5,0],[-7,-2],[-2,2],[-13,-5],[-11,-2]],[[5959,1917],[-9,-3],[-5,-3],[-18,-20]],[[5927,1891],[-10,-8],[11,-4],[7,-9],[-2,0],[-3,-1],[-1,-4],[0,-3],[2,-3],[-8,-2],[-3,-7],[3,0],[-2,-7],[-4,-9],[-2,-6],[-1,0],[0,-3],[-4,1],[-4,-1],[-1,-1],[-6,-1],[-6,-2],[-1,-1],[4,-1],[-7,-9],[-2,-4],[-5,-4],[-10,2],[-9,2],[-1,-1],[0,-4],[-9,1],[-8,-3],[-7,1],[-3,1],[-7,0],[-8,3],[-3,-1],[-19,5],[-7,0],[-28,10],[-4,6],[-7,9],[3,2],[6,1],[-1,10],[4,4],[-4,6],[2,4],[0,8],[-2,2],[-2,2],[-1,2],[-3,-1],[-1,5],[0,9],[-2,6],[-7,8],[-4,2],[-5,5],[-6,3],[-9,7],[-4,1],[-5,7],[-9,5],[-9,12],[-1,0],[-4,-1],[-3,-2],[-5,-2]],[[5680,1938],[-5,1],[-2,2],[-2,7]],[[5671,1948],[-5,9],[-1,6],[-4,2],[-6,3]],[[5655,1968],[-1,2],[0,5]],[[5654,1975],[-4,3],[-1,2],[0,4]],[[5649,1984],[-2,6],[5,4],[-2,6]],[[5650,2000],[1,7],[4,6]],[[5655,2013],[0,2],[3,10],[6,7],[2,5],[6,6],[12,7],[4,7],[4,4],[1,2],[-2,3],[4,7],[0,5],[4,1],[7,0],[4,0],[10,7],[1,4],[3,1],[1,10],[1,3],[1,7],[3,-2],[2,1],[-2,6],[2,3],[6,5],[4,4],[1,6],[4,2],[-1,3],[0,5],[-1,5],[-2,5],[-1,2],[-2,5],[0,4],[-1,4],[2,4],[1,5],[6,9],[0,3],[7,7],[2,8],[1,6],[3,2],[6,6],[1,5],[-1,4],[5,6],[3,10]],[[5775,2244],[7,13],[8,9]],[[5790,2266],[9,7],[2,1],[2,-1],[1,1],[1,5],[4,2],[1,3],[4,2],[-2,4],[1,2],[5,2],[7,0],[3,2],[5,2],[4,2],[1,4],[1,0],[7,1],[2,-2],[2,0],[3,3],[2,3],[0,2],[3,-1],[3,3],[2,-1]],[[5863,2312],[2,1],[1,1],[-1,2]],[[5865,2316],[2,2],[3,4],[-1,2],[-1,2],[5,2]],[[5873,2328],[1,5],[2,1]],[[5876,2334],[1,1],[4,0],[4,3],[8,4],[2,-1],[2,0],[3,-2],[3,1],[2,2],[2,-1],[2,1],[4,4],[0,5],[2,0],[1,2],[4,1],[2,6],[4,3],[2,4],[9,11],[3,3],[6,2],[3,3],[6,7],[1,3],[13,11],[1,1],[2,3],[0,1],[1,1],[-1,10],[2,1],[1,4],[5,3],[8,4],[1,-1],[14,23],[-16,69],[3,5],[5,3],[3,5],[2,2],[3,3],[1,3],[-1,2],[-1,0],[-1,1],[-5,3],[-1,1],[-6,2],[-1,0],[-4,1],[-2,1],[-2,-1],[-2,1],[-1,-1],[-8,3],[-6,3],[-1,2],[-2,-1],[0,4],[-2,-1],[-1,1],[-2,0],[0,1],[-4,3],[0,4],[1,1],[-1,3],[2,2],[0,2],[1,0],[0,2],[3,-1],[2,1],[0,1],[3,2],[3,9],[-3,3],[6,5],[1,5],[-2,3],[1,4],[-1,2],[3,4],[-2,2],[1,2],[-1,2],[1,2],[3,0],[1,1],[0,2],[-2,2],[2,2],[0,2],[-3,0],[-1,1],[2,3],[3,9],[3,3],[3,-1],[1,-1],[3,1],[0,4],[2,3],[1,3],[-2,4],[-3,3],[2,1],[0,2],[3,0],[1,1],[0,2],[-3,2],[2,2],[-4,1],[-7,-1],[1,4],[-3,2],[-1,1],[4,7],[1,5],[-2,21],[2,3],[5,5],[13,7],[11,9],[5,2],[10,2],[5,-1],[9,-3],[8,-2],[11,1],[-5,9],[-3,0],[-11,3],[9,26],[1,0],[-1,2],[-1,1],[-2,1],[0,2],[-2,1],[-1,1],[-3,1],[1,2],[-2,3],[-3,1],[-1,2],[-2,2],[-2,7],[0,5],[-13,5],[-1,3],[30,41],[8,5],[4,3],[-5,5],[9,6],[7,7],[3,2],[8,6],[1,3],[-1,3],[-6,5],[-2,1],[-2,6],[-4,1],[-2,1],[3,7],[-1,1],[10,7],[1,5],[3,2],[8,7],[2,3],[3,2],[1,2],[1,0],[2,1],[5,6],[8,6],[1,3],[3,2],[0,2],[2,4],[-1,2],[-2,3],[0,3],[1,1],[1,1],[2,1],[0,3],[8,2],[2,2],[1,0],[1,1],[2,1],[7,5],[2,1],[2,2],[4,1],[1,1],[3,0],[2,2],[0,2],[7,4],[2,3],[3,2],[-1,3],[2,0],[3,6],[2,1],[0,2],[-1,3],[-1,1],[1,1],[-1,1],[2,4],[8,8],[-1,1],[3,6],[-1,2],[2,2],[6,4],[-2,1],[0,9],[2,2],[0,4],[-5,7],[-3,0],[-3,-2],[-4,-1],[-1,1],[-4,-1],[-3,0],[-6,5],[-1,5],[0,2],[3,6],[1,3],[3,4],[2,2],[3,6],[12,12],[-5,1],[1,3],[2,1],[1,-1],[13,7],[7,5],[1,4],[-2,7],[0,5],[8,8],[14,7],[7,1],[7,4],[5,-1],[6,9],[10,9],[-2,1],[-2,1],[2,2],[-4,4],[-4,5],[-10,5],[-4,0],[-9,9],[1,1],[-3,1],[-4,2],[-7,6],[-5,7],[5,7],[-5,3],[-4,3],[-3,2],[3,5],[0,2],[-4,1],[-11,6],[-3,6],[-5,4],[-22,5],[-9,-1],[3,3],[0,2],[-3,4],[-7,3],[-4,8],[-2,7],[11,5],[13,15],[-1,1],[-1,-2],[-6,3],[1,1],[24,13],[7,20],[-1,4],[-6,1],[-3,-1],[-8,2],[-12,-3],[-12,0],[-13,-1],[-15,8],[-6,5],[-15,5],[-4,2],[-10,0],[-3,3],[-4,4],[-2,1],[-3,3],[-2,1],[-5,5],[1,1],[-4,3],[-6,3],[-2,0],[-7,2],[-30,6],[-2,0],[-8,4],[-12,-1],[-5,0],[-7,1],[-3,-1],[-2,0],[3,5],[3,2],[-1,4],[0,3],[-2,6],[-1,10],[-3,10],[-20,3],[3,2],[1,2],[2,0],[1,3],[2,1],[1,2],[6,5],[1,5],[3,3],[2,4],[5,3],[4,4],[5,2],[2,2],[3,1],[4,3],[1,1],[4,2]],[[5997,3515],[5,9]],[[6002,3524],[-2,2],[-1,4],[2,3],[-4,7],[-4,12],[1,14],[-16,19],[-4,-4],[-4,-5],[0,-1],[-1,-1],[-1,2],[-2,1],[-1,3],[-4,5],[0,3],[-1,2],[-22,8],[-5,3],[-12,1],[-5,-1],[-9,4],[-5,1]],[[5902,3606],[-10,4],[-3,3]],[[5889,3613],[-4,2],[-2,2],[-3,2],[-2,7],[-1,1],[-2,3],[-2,1]],[[5873,3631],[-4,4],[-13,2]],[[5856,3637],[-7,1],[-13,0]],[[5836,3638],[2,9],[6,2],[13,10],[8,4],[18,12],[11,11],[2,4],[1,2],[-1,7],[-4,6],[-1,5],[1,5],[-2,13],[-5,2],[-4,5],[2,14],[-1,6],[1,9],[-4,5],[-4,2],[-1,3],[-1,9],[4,13],[-1,2],[-4,4],[-6,6],[-2,10],[0,3],[4,4],[1,3],[-3,18],[5,6],[1,4],[-1,9],[-2,3],[2,2],[-4,5],[-4,9],[2,7],[-1,4],[-3,4],[2,3],[-1,3],[6,3],[-1,6],[0,6],[-2,2],[1,6],[4,5],[5,3],[3,2],[3,6],[2,6],[-3,6],[-2,1],[-3,5],[-5,3],[-3,4],[-5,3],[-4,6],[2,3],[1,5],[3,5],[0,13],[3,4],[4,3],[0,5],[3,6],[0,5],[1,3],[2,6],[5,6],[-4,6],[-5,3],[-5,5],[-3,6],[0,11],[2,3],[0,3],[1,4],[2,4],[2,10],[11,13],[2,6],[3,2],[4,1],[1,2],[-1,5],[1,2],[1,3],[-2,4],[0,3],[-3,4],[0,4],[-2,2],[-8,1],[-1,3],[-4,1],[-1,1],[-6,0],[3,7],[-1,2],[0,3],[3,3],[4,2],[-2,4],[0,7],[-3,4],[-1,4],[2,2],[0,2],[4,1],[-1,1],[2,3],[5,6],[2,1],[1,6],[3,-1],[-2,2],[1,1],[1,1],[1,1],[-3,2],[-1,1],[1,1],[-2,2],[0,2],[-1,1],[-2,1],[-3,0],[-1,-1],[-2,0],[0,-1],[-4,2],[-1,1],[-1,0],[-1,1],[-2,5],[-1,0],[-2,3],[-3,1],[-4,2],[1,1],[-1,0],[0,1],[-2,2],[1,1],[3,3],[-1,3],[1,3],[8,2],[5,4],[14,17],[0,8],[6,8],[2,4],[-3,6],[-2,5],[2,0],[0,1],[2,0],[1,1],[4,0],[1,1],[1,0],[1,1],[1,-1],[0,2],[2,-1],[2,1],[1,0],[0,1],[5,-1],[4,1],[0,2],[4,1],[1,5],[4,2],[2,-1],[-1,3],[3,2],[2,5],[4,4],[2,1],[0,2],[5,2],[3,-2],[7,-5],[2,-1],[1,0],[0,2],[1,0],[8,0],[4,-1],[0,3],[2,-3],[1,1],[1,2],[4,6],[0,1],[4,2],[1,2],[3,0],[10,3],[11,-1],[7,-2],[4,0],[12,4],[7,0],[-6,4],[-17,17],[-13,18],[-27,18],[-8,12],[-2,0],[-2,0],[-2,-2],[-2,-1],[-2,1],[-2,2],[-9,0],[-3,3],[1,1],[-4,2],[-4,4],[-2,1],[0,3],[3,3],[-3,1],[0,1],[3,3],[3,1],[2,2],[-1,3],[-2,0],[1,3],[1,1],[3,0],[2,3],[-3,3],[0,2],[4,3],[2,5],[2,1],[3,-2],[2,1],[2,2],[0,3],[2,1],[1,1],[-2,7],[-3,2],[0,2],[2,2],[-1,2],[0,3],[-2,3],[1,4],[-1,2],[-3,2],[2,3],[-5,2],[-1,3],[1,7],[-2,3],[-6,1],[-1,1],[-3,-2],[0,1],[-2,0],[0,1],[-2,1],[0,1],[-2,1],[0,2],[-4,2],[-4,1],[-5,0],[-6,2],[-5,1],[-2,3],[1,4],[-3,1],[-2,-1],[-1,0],[-1,2],[-3,0],[0,2],[-2,1],[1,2],[2,0],[1,2],[0,2]],[[5894,4554],[-5,9],[-3,2],[1,2]],[[5887,4567],[39,33],[1,1],[-1,1],[0,1],[2,1],[108,78],[4,-2],[2,0],[2,-2],[1,1],[2,0],[0,-2],[3,0],[2,-1],[5,1],[2,2],[2,-2],[2,2],[5,-1],[2,0],[4,-2],[4,0],[3,-1],[0,-1],[2,0],[2,-1],[2,0],[2,4],[1,-3],[1,-1],[4,1],[6,0],[6,3],[3,-1],[3,0],[0,3],[2,1],[8,1],[4,-1],[0,3],[5,4],[-1,1],[3,3],[4,0],[2,1],[4,-1],[1,1],[0,2],[2,1],[3,-1],[0,-2],[4,3],[2,-2],[3,1],[4,1],[6,3],[1,3],[5,1],[4,0],[1,3],[7,-1],[8,6],[1,-1],[0,-1],[5,1],[1,-1],[2,0],[8,5],[-4,2],[-4,5],[-3,1],[-4,3],[0,4],[-2,3],[1,2],[0,4],[-1,1],[-1,1],[-1,0],[-1,-2],[-1,0],[-2,5],[0,1],[2,1],[-2,1],[0,1],[3,1],[0,2],[-5,0],[-6,5],[-5,2],[-2,0],[0,2],[3,1],[2,5],[-4,3],[-2,0],[1,1],[0,2],[-3,0],[-2,-2],[-1,0],[0,3],[-2,2],[-2,0],[-1,-1],[-2,-1],[0,5],[-3,-1],[-1,3],[-3,0],[0,-2],[-1,1],[0,1],[1,1],[0,1],[-2,0],[-2,-1],[0,2],[-11,3],[0,3],[-1,3],[-29,23]],[[6109,4813],[4,3],[3,6],[1,2],[-2,1],[0,1]],[[6115,4826],[2,2],[-1,2],[0,2],[1,0],[0,1],[2,1],[1,1],[2,1],[0,1],[-2,2],[2,1],[-1,2],[2,0],[-2,2],[2,2],[1,3],[-1,2],[2,1],[-1,1],[2,2],[-1,1],[-1,3],[2,1],[-1,1],[1,1],[-2,2],[1,1],[0,1],[1,1],[-2,3],[3,1],[2,-1],[-1,2],[0,1],[3,1],[7,6],[21,7],[19,11],[41,-18],[12,-6],[25,-4],[4,-8],[-3,-1],[2,-16],[12,-9],[6,-6],[2,0],[2,-2],[3,0],[0,-1],[3,0],[9,-5],[6,0],[10,-2],[1,1],[5,-2],[2,1],[14,-5],[2,1],[2,0],[5,-1],[1,-1],[2,0],[1,1],[1,-3],[3,0],[0,-2],[4,-1],[5,-5],[2,0],[2,1],[1,-1],[-1,-1],[4,-3],[3,0],[2,-2],[3,0],[4,-4],[2,1],[3,0],[1,-1],[0,-2],[3,-4],[9,-4],[1,1],[2,-1],[3,-4],[4,0],[0,-3],[1,-1],[4,0],[3,-2],[4,1],[1,-3],[5,1],[9,-5],[3,1],[5,-2],[1,-2],[2,1],[-1,2],[1,1],[6,-2],[4,1],[3,-1],[4,-3],[3,0]],[[6466,4764],[4,-1],[5,0],[5,4]],[[6480,4767],[-3,5],[-3,1],[-2,4],[-4,3],[-4,2],[-1,4],[-4,6],[2,2],[0,2],[-5,6],[-1,3],[-1,4],[6,14],[-3,9],[2,2],[1,0],[7,1],[2,-1],[3,0],[5,1],[6,3],[7,0],[5,1],[16,-1],[11,-2],[12,5],[26,47],[11,12],[17,16],[1,6],[30,23],[24,9],[11,3],[4,0],[3,17]],[[6661,4974],[-2,4],[3,7],[10,9],[11,-2]],[[6683,4992],[1,0],[8,1],[5,-1],[4,1],[4,1],[7,2],[5,0],[1,0],[2,0],[2,0],[2,0],[7,2],[3,1],[2,3],[2,1],[3,5],[6,6],[9,-2],[15,-6],[16,-11],[4,-2],[11,-2],[8,0],[2,-2],[3,0],[0,-2],[-3,-2],[4,-5],[8,-11],[1,0],[1,0],[1,-4],[2,-3],[4,0],[2,-1],[1,-4],[0,-9],[0,-4],[3,-5],[-1,0],[2,-3],[1,-6],[2,-1],[5,-2],[3,4],[8,1],[16,-4],[5,-4],[3,-1],[4,1],[6,0],[2,1],[6,1],[1,1],[2,1],[3,2],[7,3],[4,6],[5,0],[4,4],[3,0],[5,0],[6,0],[6,2],[6,4],[11,11],[4,11],[6,1],[2,2],[11,1],[11,2],[12,1],[10,2],[7,4],[6,-1],[8,2],[5,13],[16,12],[6,2],[3,3],[1,0],[4,3],[0,2],[5,5],[-2,4],[15,7],[2,5],[-2,4],[1,3],[2,0],[0,2],[2,0],[24,51],[10,9],[4,8],[3,0],[1,0],[1,-3],[3,2],[4,-1],[2,1],[3,0],[4,2],[8,2],[6,-3],[4,0],[2,1],[2,0],[2,1],[4,1],[1,3],[2,1],[2,0],[2,2],[5,1],[-2,1],[-5,1],[-5,5],[-17,11]],[[7169,5146],[18,14],[3,1],[12,3]],[[7202,5164],[13,7],[7,1]],[[7222,5172],[12,-1],[1,-1],[4,1],[5,2],[6,-1],[3,-2],[2,2],[7,2],[2,3],[3,0],[1,0],[3,0],[3,3],[1,1],[1,-1],[2,1],[-1,1],[1,1],[2,0],[3,-1],[3,0],[2,1],[6,-2],[2,1],[1,1],[5,2],[1,2],[1,-1],[3,0],[1,-1],[1,0],[2,-3],[1,0],[4,-5],[0,-1],[3,-3],[1,-4],[3,-1],[2,-1],[1,-2],[1,-1],[6,-1],[-1,-3],[1,0],[4,0],[0,-1],[1,0],[5,1],[0,1],[4,0],[3,3],[3,1],[4,3],[1,-1],[4,-1],[2,1],[5,-1],[0,-1],[0,-1],[2,0],[-1,-1],[2,-1],[-1,-2],[1,0],[1,-2],[2,0],[0,-1],[2,0],[2,-4],[2,-1],[0,-3],[2,0],[3,-5],[3,-1],[2,-4],[3,2],[2,3],[3,0],[4,3],[0,2],[2,2],[-1,2],[2,3],[3,3],[2,4],[2,1],[3,-1],[5,3],[3,0],[0,-1],[2,1],[0,1],[0,2],[4,3],[2,4],[2,1],[1,6],[4,3],[1,2],[4,2],[5,-4],[4,0],[2,-2],[3,0],[6,-3],[6,-2],[8,3],[7,1],[5,2],[4,-1],[7,-3],[5,1],[6,3],[6,5],[0,8],[4,-2],[2,1],[4,3],[10,9],[7,2],[5,0],[5,1],[2,1],[5,1],[3,1],[1,-1],[4,2],[2,5],[2,10],[7,4],[9,8],[16,10],[50,7],[6,7],[4,6],[5,1],[5,0],[5,2],[8,0],[13,3],[6,0],[2,-1],[2,1],[0,-1],[3,0],[8,3],[6,0],[3,-1]],[[7732,5280],[1,-2],[0,-3]],[[7733,5275],[6,-4],[4,-2],[1,1],[2,-2],[1,1],[0,-1],[2,0],[1,-1],[0,1],[2,0],[2,-1],[0,-1],[1,0],[1,0],[2,-3],[1,1],[2,-2],[1,1],[18,-9],[7,-6],[9,-2],[5,2]],[[7801,5248],[11,-2],[-1,-2]],[[7811,5244],[1,-1],[4,-8],[1,-6]],[[7817,5229],[-3,0],[-1,0],[1,-1],[-2,-1],[-5,-8],[1,0],[-3,-7],[-1,-5],[2,-2],[0,-3],[1,-2],[-2,-3],[2,-2],[-3,-4],[0,-3],[-2,2],[-1,-1],[-1,-6],[2,-3],[-3,-3],[2,-2],[1,-4],[5,-3],[0,-4],[1,-1],[1,0],[2,2],[3,-1],[3,1],[4,-1],[5,-2],[0,-2],[-5,-3],[0,-4],[4,-5],[-3,-3],[-2,-3],[-1,-3],[2,-1],[1,-3],[-3,-2],[-1,-4],[1,-3],[-2,-1],[1,-4],[0,-3],[19,-6],[2,-2],[0,-2],[4,-5],[6,-3],[5,-9],[2,-4],[-1,-1],[0,-1],[3,-2],[-1,-2],[4,-4],[-2,-4],[3,-1],[12,-3],[3,-1],[3,1],[1,-3],[8,-4],[0,1],[6,0],[6,-3],[3,1],[3,-2],[5,-2],[5,-1],[13,-3],[7,-1],[2,-3],[1,-3],[8,-4],[5,-2],[9,0],[2,0],[6,-5],[4,-1],[4,-1],[-2,-2],[0,-2],[3,-2],[1,-1],[3,0],[1,0],[12,-5],[5,-2],[3,0],[8,-4],[1,-2],[4,-1],[1,-2],[16,-9],[0,-2],[1,-2],[3,0],[2,-2],[-1,-3],[2,-2],[-2,-2],[4,-2],[2,-2],[3,-2],[9,-1],[7,-4],[0,-2],[2,-3],[7,-2],[8,-1],[2,-7],[3,-3],[-2,-7],[-3,-2],[1,-3],[0,-2],[-2,-3],[-4,-2],[0,-2],[1,-8],[3,-3],[10,1],[2,-3],[3,-6],[4,-1],[0,-2],[5,-7],[8,-2],[8,4],[4,0],[5,-4],[18,-2],[4,-1],[2,1],[25,-9],[4,1],[12,-4],[3,0],[2,-2],[0,-2],[3,0],[1,-1],[4,-7],[0,-3],[3,-4],[14,-8],[4,-5],[4,-2],[6,0],[7,-1],[24,-1],[2,-3],[8,-6],[2,-3],[1,-1],[1,1],[2,-1],[2,-3],[5,0],[2,-1],[3,-7],[4,-4],[1,-2],[-1,0],[-1,-2],[1,-3],[2,-7],[3,-4],[1,0],[2,1],[1,2],[2,1],[5,-3],[0,-5],[9,-7],[1,-3],[4,-2],[0,-3],[8,-7],[11,-4],[1,0],[3,-2],[3,-1],[1,0],[1,-1],[4,0],[2,-3],[2,0],[3,-3],[18,-5],[5,0],[1,-2],[11,-4],[8,-3],[0,-2],[6,-2],[0,-4],[4,-1],[0,-1],[0,-1],[7,-3],[3,-1],[1,-1],[3,-1],[2,0],[1,-10],[-1,-6],[7,-4],[13,-6],[5,0],[4,-2],[5,0],[5,0],[3,1],[4,-1],[2,1],[2,0],[2,-1],[2,0],[0,-1],[3,-1],[3,-1],[10,-2],[20,-11],[4,0],[13,3],[3,2],[10,2],[5,0],[8,2],[13,4],[17,-2],[7,2],[13,3],[12,4],[11,4],[1,2],[5,0],[11,-3],[6,1],[4,2],[2,2],[-3,5],[13,3],[7,1],[10,-1],[2,-2],[6,-3],[3,1],[0,4],[6,0],[3,-1],[1,-3],[2,-1],[7,4],[2,0],[1,-3],[3,0],[2,1],[2,5],[1,0],[4,6],[3,0],[3,-6],[5,3],[2,-1],[4,2],[0,2],[2,3],[3,-1],[0,2],[5,-1],[7,4],[3,-1],[2,-2],[2,0],[2,-5],[1,-2],[0,-1],[5,-5],[4,2],[2,0],[5,-1],[15,-1],[4,-1],[3,-3],[2,-5],[2,1],[1,-3],[5,0],[3,0],[2,3],[3,-1],[3,0],[5,-2],[1,-1],[-2,0],[0,-6],[-4,-9],[-2,-8],[1,0],[-8,-10],[0,-3],[-3,-3],[-2,-5],[-3,-4],[-4,-16],[-5,-5],[-7,-5],[-7,-7],[-2,-9],[2,-4],[0,-2],[-8,-2],[-6,2],[-6,0],[-9,-6],[-13,-1],[-5,-3],[-9,-3],[-6,-8],[-11,-8],[0,1],[-6,0],[-7,2],[-3,3],[-5,0],[-6,0],[-7,-1],[-7,0],[-6,-6],[-8,-7],[-3,-5],[0,-3],[-2,-1],[2,-5],[0,-6],[-3,-12],[-2,-6],[-3,-13],[1,-11],[4,-7],[4,-6],[3,-9],[0,-7],[-3,-16],[-1,-1],[-2,-2],[-6,-8],[-3,-6],[0,-5],[-2,-2],[-1,-4],[0,-5],[2,-6],[-3,-7],[-10,-1],[-4,-4],[-2,-4],[-3,0],[-5,-3],[1,-3],[3,-2],[-1,-2],[2,-3],[3,-1],[1,-1],[-2,-2],[2,-1],[0,-4],[1,-2],[-1,-2],[1,-3],[-1,0],[-1,-3],[-3,-2],[1,-1],[-2,-1],[-1,-7],[-4,-3],[-1,0],[0,-1],[1,-1],[-1,-1],[3,-6],[6,-1],[2,-1],[3,1],[3,0],[3,-2],[0,-1],[-2,1],[-1,-2],[2,0],[0,-1],[3,-1],[2,2],[2,-2],[2,1],[3,-3],[11,-3],[1,1],[6,-2],[-1,1],[1,1],[3,0],[1,0],[3,-2],[2,0],[0,3],[4,2],[2,-2],[0,-4],[3,-1],[-1,-2],[1,-3],[4,-1],[3,1],[0,-3],[3,0],[-1,3],[0,1],[1,0],[1,-1],[2,-2],[2,3],[1,0],[6,-2],[1,-1],[1,0],[1,2],[4,1],[1,0],[-2,-2],[0,-1],[3,0],[2,1],[2,-1],[3,0],[1,0],[2,0],[2,1],[8,0],[2,1],[1,-2],[3,1],[2,-3],[1,1],[-1,3],[2,0],[1,-2],[2,0],[1,1],[-2,0],[0,1],[2,1],[7,-1],[1,0],[-2,0],[1,-1],[2,-1],[0,2],[3,-1],[0,1],[2,-1],[3,0],[0,2],[7,1],[2,0],[1,1],[3,-2],[8,1],[2,0],[7,3],[2,-2],[2,0],[0,-2],[2,1],[-1,-6],[8,-2],[0,2],[4,-1],[2,-1],[0,-1],[4,1],[2,-2],[4,0],[1,1],[7,-2],[-1,-1],[3,1],[5,-2],[6,-2],[2,-4],[5,-2],[-13,0],[-1,1],[-5,1],[-1,1],[-2,0],[-1,4],[-6,-5],[-3,-1],[-3,-2],[-6,-3],[-17,-3],[3,-15],[1,-3],[1,-1],[-3,-1],[0,-3],[1,-1],[-2,-4],[-1,-1],[-1,1],[-2,0],[1,-2],[-2,-1],[-2,0],[0,-1],[-2,-1],[-1,1],[0,1],[-2,0],[-2,0],[0,-1],[-2,0],[-2,1],[-1,-1],[-1,1],[0,-1],[1,-2],[-2,1],[-2,-2],[-2,2],[-3,-1],[-2,-2],[-8,-2],[-1,-1],[-3,-1],[-2,1],[-2,-2],[-2,0],[-2,4],[4,2],[-2,3],[-1,-1],[-3,5],[-2,-1],[-6,1],[-7,-2],[-3,1],[-3,0],[-2,1],[-6,-3],[-1,-2],[-2,1],[-3,-3],[-3,0],[-1,-2],[-3,0],[-6,1],[-5,2],[0,2],[-7,0],[0,-2],[-1,0],[-2,0],[0,2],[-1,-1],[-1,1],[-3,2],[-2,4],[-5,7],[-11,-1],[-16,1],[-13,-4],[-9,-5],[-12,-4],[-8,0],[-3,-1],[-6,-5],[-6,-1],[-4,-3],[-6,-1],[-2,-3],[-4,-3],[-3,0],[-11,0],[-5,-3],[-6,0],[-7,-3],[-8,-1],[-5,-3],[-3,-8],[-3,-4],[-5,1],[-12,-2],[-3,1],[-4,-1],[-5,-6],[0,-2],[-3,-7],[-4,-1],[4,-7],[2,-3],[6,-4],[0,-2],[-2,-1],[0,-1],[-2,0],[-1,-1],[-2,0],[-6,-3],[-1,-2],[-4,-1],[1,-1],[21,4],[2,-1],[-1,-1],[3,-2],[1,-3],[-1,-6],[0,-1],[-3,-6],[-6,-4],[5,-7],[0,-7],[-5,3],[0,1],[-2,0],[0,-3],[-2,0],[0,2],[-2,1],[-3,-1],[-5,2],[-7,-2],[-3,-1],[-2,0],[-1,-1],[0,1],[-1,-1],[-2,0],[-1,-2],[-1,1],[-1,-1],[-1,1],[-5,-2],[-1,-2],[-3,-2],[-1,0],[-5,-3],[-3,1],[-2,-1],[0,2],[-4,-1],[-2,0],[-7,0],[0,2],[-8,-2],[-2,-2],[-3,0],[-2,2],[-1,1],[1,0],[-1,2],[-12,-4],[-8,-1],[-4,-6],[0,-2],[5,-9],[0,-2],[4,-5],[5,-8],[-3,-3],[-4,0],[3,-5],[0,-1],[-1,-3],[0,-5],[-6,-10],[1,-2],[3,0],[0,-3],[-5,-6],[-5,-4],[-4,-5],[-5,-3],[-1,-10],[-2,-5],[10,-2],[7,-3],[5,0],[0,-9],[-1,-2],[-4,4],[-5,-1],[-7,0],[-16,-13],[-6,-2],[-4,-1],[-8,-6],[-5,-8],[-5,-4],[-7,-2],[-3,-1],[-12,-10],[-7,-4],[-13,-3],[-2,-1],[-3,2],[-4,1],[5,-7],[0,-3],[3,-7],[3,-3],[1,-3],[3,-2],[3,-8],[3,-6],[0,-8],[2,-5],[-1,-6],[2,-2],[0,-4],[-6,-14],[1,-6],[-1,-2],[0,-3],[-1,-1],[1,-1],[3,-1],[2,-1],[3,1],[1,-1],[-1,-1],[-1,-5],[-4,-5],[0,-3],[-1,-2],[-15,-11],[-3,-5],[-10,-1],[-7,-3],[-4,0],[-8,-7],[-8,-4],[-5,-3],[1,-2],[3,-2],[-3,0],[0,-12],[-28,-13],[-8,-4],[-1,-13],[-1,-4],[7,-1],[4,-2],[2,-3],[5,-3],[3,-5],[13,-1],[2,-5],[3,-1],[7,0],[2,1],[3,-2],[3,1],[3,-2],[3,-1],[5,-6],[4,-1],[3,0],[5,2],[1,0],[7,-6],[2,-5],[0,-1],[1,-1],[3,0],[1,2],[3,-1],[2,1],[0,1],[2,0],[0,-1],[6,0],[0,2],[5,2],[0,2],[1,0],[-1,1],[0,1],[3,1],[1,1],[5,0],[0,1],[3,-1],[0,4],[0,1],[-2,0],[0,1],[3,1],[1,-2],[2,0],[0,3],[-1,1],[1,1],[7,4],[0,2],[5,0],[1,5],[-1,2],[3,3],[0,1],[3,1],[-1,1],[7,-1],[9,-3],[1,-4],[2,-1],[2,0],[5,-3],[6,0],[5,-3],[3,-4],[8,-5],[-4,-12],[-10,-10],[-11,-8],[-19,-19],[-39,-19],[-6,-2],[-1,0],[-9,0],[-33,-10],[-32,-13],[-15,-2],[-18,0],[-18,-5],[-5,0],[-7,1],[-14,-1],[6,-21],[-4,-2],[-2,1],[-5,-10],[-16,-7],[-1,-9],[-1,-1],[8,-5],[1,-4],[5,-4],[2,-5],[2,-1],[0,-2],[1,-1],[6,-1],[5,0],[4,2],[2,1],[1,1],[3,0],[1,2],[11,1],[3,-3],[4,-1],[2,-2],[4,-6],[2,0],[2,-1],[2,0],[4,-1],[3,1],[1,-1],[2,1],[1,-1],[4,0],[6,2],[9,-3],[5,-4],[3,-1],[1,-1],[11,-3],[1,-1],[3,-1],[2,-1],[5,-2],[1,0],[0,-5],[2,-1],[0,-2],[4,-1],[-9,-8],[-2,-5],[1,-10],[6,-15],[5,-8],[0,-5],[-3,-5],[-5,-2],[-5,-1],[-19,-1],[-15,-3],[-5,1],[-5,1],[-6,-2],[-5,-4],[6,-44],[3,-8],[1,-1],[2,-3],[0,-4],[3,-10],[-1,-3],[-6,-9],[-5,-10],[-4,-10],[-9,-12],[-2,-7],[8,-3],[4,-5],[2,0],[0,-2],[4,-1],[-2,-3],[0,-4],[4,-1],[1,-7],[3,-1],[0,-1],[-3,-2],[0,-1],[1,-2],[5,-4],[2,-4],[-2,-6],[0,-2],[6,-7],[0,-2],[2,-1],[1,-3],[7,-1],[5,-2],[4,0],[2,-1],[-1,-5],[4,0],[1,-3],[2,0],[7,-6],[0,-4],[1,-3],[3,-3],[3,-2],[2,-2],[5,-2],[4,-1],[3,0],[4,-2],[3,-5],[2,0],[1,0],[3,-5],[1,-1],[1,-3],[2,-1],[1,-2],[2,1],[1,0],[3,-4],[0,-2],[3,-1],[1,-3],[10,-5],[2,-4],[4,-1],[1,-2],[-1,-1],[-6,-4],[1,-2],[-3,-1],[0,-6],[7,-10],[1,-1],[2,-3],[1,0],[2,-4],[3,-1],[5,-6],[-1,-2],[3,-2],[1,-3],[1,-4],[-3,-6],[-2,-2],[-2,-4],[-4,-4],[-1,-3],[-4,-3],[-1,-2],[-6,-10],[-2,-9],[1,-4],[0,-8],[-3,-3],[-7,-8],[-15,-20],[8,-9],[11,-10],[13,-12],[8,-5],[7,-7],[1,-6],[1,-13],[6,-18],[2,-11],[7,-8],[3,-8],[10,-16],[12,-8],[12,-18],[11,-13],[3,-12],[0,-13],[1,-3],[4,-4]],[[8431,2927],[-16,-15],[-10,-12],[-4,-3],[-8,-13],[-3,-5],[0,-3],[-5,2],[-4,-1],[-3,1],[-2,2],[-5,-2],[-6,-6],[-1,-4],[-3,-2],[-2,-4],[-25,-22],[19,-29],[24,-19],[-13,-14],[-8,-4],[-11,-7],[3,-5],[3,-2],[2,-4],[3,-3],[0,-2],[2,-2],[-2,-8],[2,-4],[4,-3],[1,-9],[6,-6],[1,-4]],[[8370,2715],[1,-1],[7,-11]],[[8378,2703],[4,-6],[1,-5]],[[8383,2692],[-4,-4],[-7,-3]],[[8372,2685],[-3,-4],[1,-8],[1,-3],[2,-2],[4,-1]],[[8377,2667],[1,-4],[2,0]],[[8380,2663],[5,-4],[2,-5],[-2,-2],[0,-3]],[[8385,2649],[3,-8],[1,-1]],[[8389,2640],[4,1],[2,-3],[2,0]],[[8397,2638],[3,-4],[5,-3],[12,-4]],[[8417,2627],[5,-1],[4,-4],[2,-3],[6,-3],[2,-2]],[[8436,2614],[8,-1],[6,1],[4,-5]],[[8454,2609],[2,-5],[2,-1],[-1,-11]],[[8457,2592],[1,-4],[2,-1],[3,-1],[6,0]],[[8469,2586],[11,-3],[6,-1]],[[8486,2582],[12,-6],[0,-2],[-1,-2]],[[8497,2572],[1,-7],[-2,-7],[1,-2],[4,-2],[1,-3],[-1,-1],[-3,-1],[0,-1],[4,-6],[2,-3],[6,-2],[3,-2],[3,-2],[5,-2],[2,-4],[1,-3],[-3,-10],[8,-5],[0,-5],[3,-1],[1,-2],[0,-6],[0,-3],[4,0],[2,-3],[-1,-6],[-3,-5]],[[8535,2478],[-6,1],[-4,-3],[0,-3],[3,-6]],[[8528,2467],[-1,-8]],[[8527,2459],[4,-4],[3,-9],[-1,-2],[-5,-2]],[[8528,2442],[-2,-4],[-5,-3],[0,-3],[0,-4]],[[8521,2428],[-1,-2],[-8,0]],[[8512,2426],[-13,-2],[-3,-4],[-4,1],[-5,2],[-13,-1],[-4,1],[-2,-2],[-4,-1],[-6,-4],[-4,0],[-2,-6],[-2,-2],[-3,1],[-2,4],[-3,2],[-5,-5],[-10,-6],[-3,-4],[-7,-2],[-4,1],[0,-2],[-1,-5]],[[8412,2392],[-4,-8],[1,-5],[11,-8]],[[8420,2371],[18,-24],[8,-6],[-6,-2]],[[8440,2339],[-2,-2],[-12,-6]],[[6159,753],[5,-1]],[[6164,752],[0,-4],[3,-4]],[[6167,744],[3,-1],[0,-1],[6,0],[0,-11],[-3,-8],[1,0],[1,-4],[-4,-15],[2,-7],[4,-7],[-3,-2],[11,-9],[5,-3],[4,-2],[0,-1],[5,-6],[6,-4],[4,-3],[6,-4],[6,-2],[8,-4]],[[6229,650],[6,1],[19,9]],[[6254,660],[2,0]],[[6256,660],[5,2],[3,2],[1,2],[2,1]],[[6267,667],[3,0],[4,2],[21,11],[-1,0],[4,1],[29,15],[19,8],[1,1],[18,6],[16,4],[10,1]],[[6391,716],[9,3],[22,3],[49,3]],[[6471,725],[11,-5],[3,-5],[0,-4],[2,-1],[5,3],[1,-1],[2,-2],[9,-1],[-1,5],[22,-6],[-2,5],[1,5],[14,0],[-1,2],[1,2],[2,1],[0,-2],[8,0],[16,1],[21,3],[14,0],[18,-2],[14,-4],[0,9],[1,1],[1,0],[0,3],[5,5],[12,-2],[6,1]],[[6656,736],[11,-1],[6,-3]],[[6673,732],[0,-1],[9,-1],[3,-1],[1,2],[7,0],[3,-5],[5,1],[3,-3],[-4,-2],[-4,-1],[0,-2],[5,-3],[0,-4],[-4,-2],[2,-7],[-4,0],[14,-12],[-13,-1],[-1,-4],[0,-4],[1,-6],[6,-7],[0,-4],[-2,-4],[-8,-7],[5,0],[6,-3],[7,1],[1,-2],[-1,-3],[0,-5],[5,-1],[3,-5],[2,0],[8,1],[1,1],[1,0],[2,1],[1,-1],[1,0],[2,-4],[4,0],[1,-1],[0,-2],[1,-3],[2,0],[6,3],[1,4],[3,-3],[3,0],[1,1],[7,-1],[-7,-5],[-5,-3],[4,-2],[9,-1],[-3,-5],[-3,-1],[-4,-4],[4,0]],[[6760,611],[11,-6],[4,-4]],[[6775,601],[0,-3],[-1,-3],[-3,-3],[-12,-8]],[[6759,584],[-3,-4],[-4,-1]],[[6752,579],[-1,-2],[-4,-2],[-4,2]],[[6743,577],[-1,0],[-3,-3],[-4,-1],[-1,-2],[-3,-1],[-3,0],[-4,2],[-2,0],[-8,-7],[-5,-1],[-11,4],[-3,0],[1,-1],[3,-5],[6,-8],[4,-5],[3,-1],[-8,-3],[-2,-3],[0,-2],[-4,-1],[4,-8],[-14,-4],[-10,-4],[-8,-1],[-12,-5],[10,-5],[5,-2],[7,-5],[2,-4],[2,-10],[3,-3],[-1,-2],[0,-5],[-1,-2],[-1,-1],[0,-1],[0,-3],[-2,-3],[-82,55],[-12,-2],[-7,-3],[-26,-9],[-19,-9],[-12,-9],[-8,-2],[-4,-2],[-8,-1],[-2,-3],[-5,-1],[-7,-5],[-16,-4],[-14,-1],[-4,-1],[-1,1],[-1,3],[-3,1],[-4,0],[-4,1],[0,1],[2,4],[-1,1],[-3,-1],[-4,-2],[-2,1],[-7,-2],[-1,-1],[-2,-1],[-4,-1],[-7,-6],[-8,1],[-8,-4],[-12,-2],[-5,-3],[-8,-3],[-3,-7],[-4,-3],[-15,-8],[-6,-4],[-12,-5]],[[6333,435],[-19,-3],[-8,-2],[-7,-5]],[[6299,425],[-8,-5],[-1,-1]],[[6290,419],[0,-3],[-1,-2],[-6,-2]],[[6283,412],[-5,0]],[[6278,412],[4,5],[24,14],[16,10],[-38,-8],[-18,-8],[-20,16],[-8,4],[-22,11],[-18,6],[-25,4],[-19,-2],[-16,-13],[-1,0],[-23,-8],[-13,5],[-14,-3],[-5,2],[-24,4],[-12,-18],[-32,13],[-7,5],[-20,10],[-11,3],[-7,6],[-6,17],[-9,40],[-11,15],[-14,13],[-16,9],[-16,6],[-15,18],[-14,6],[3,4],[12,3],[10,4],[-28,96],[-10,25],[0,1]],[[8202,1104],[7,-1],[12,-7],[2,1],[5,-4],[6,-3],[7,-3],[14,-1],[2,-2],[0,-3],[4,-4],[1,-2],[6,-4],[3,-5],[-3,-8],[0,-2],[12,-5],[2,-2]],[[8282,1049],[1,-6],[2,-3]],[[8285,1040],[4,-2]],[[8289,1038],[-9,-5],[-8,-5],[1,-2],[-5,-1],[-6,-2],[2,-2],[-9,-1],[-2,-1],[-6,-1],[-9,-3],[-5,-1],[-2,-4],[5,-3],[-7,-2],[-2,-4],[-5,-4]],[[8222,997],[-3,-1],[-1,-1],[3,-9]],[[8221,986],[-2,-8],[0,-3],[4,-11],[4,-6],[0,-6],[4,0],[11,5],[5,-1],[5,-1],[6,-3],[4,-5],[10,-6],[3,-6],[15,-8],[3,0],[4,1],[9,6],[2,0],[2,-3]],[[8310,931],[1,-7],[3,-5]],[[8314,919],[5,-5],[10,-5]],[[8329,909],[5,-4]],[[8334,905],[8,-1],[2,-1],[1,-2],[0,-4],[-1,-3],[-3,-4]],[[8341,890],[-3,-5],[-3,-4]],[[8335,881],[-2,-7],[-3,-4]],[[8330,870],[-9,-1],[-5,1],[-4,3],[-1,4],[-1,4],[-2,1],[-9,-3],[-5,-3],[-1,-3],[1,-4],[12,-9],[2,-5],[-9,-6],[-13,0],[-5,-1],[-5,-4],[-2,-4],[1,-4],[-1,-8],[-2,-2],[-5,-1],[-1,-1]],[[8266,824],[-1,-6],[4,-5],[0,-2],[-2,-3],[-3,-2],[-3,-5],[-2,-1],[-15,-2],[-1,-1],[0,-7],[-6,-5],[-2,1]],[[8235,786],[-2,4],[-4,3],[-11,-1]],[[8218,792],[-4,-1],[-8,4],[5,3],[0,3],[3,5],[-1,1],[-11,-2],[-8,6],[-8,2],[-4,2],[-5,0],[-2,3],[2,1],[-15,3],[-8,4],[-10,-1],[-3,4],[0,4],[-3,-2],[-3,-9],[-2,-3],[-4,0],[-8,-6]],[[8121,813],[-1,-2],[-9,3]],[[8111,814],[-1,4],[-4,3],[-1,5],[-3,1],[-3,9]],[[8099,836],[-7,8]],[[8092,844],[-9,5],[-6,2],[-4,3],[-1,0],[-4,3],[-3,-3],[-8,-2],[-17,-3],[-24,-3],[-8,-3],[1,-1],[-16,-3],[-3,1],[-5,-1],[-5,1],[-2,-1],[-1,2],[-3,2],[-8,1],[-5,-2],[-9,-3],[-9,0],[-6,-2],[-2,0],[-2,2],[-11,-7],[3,-5],[-5,-3],[-16,-3],[1,-1],[-18,-4],[-2,-1],[0,-1],[-3,1],[-9,-2],[-1,1],[4,5],[0,3],[-2,0],[-12,-4],[-3,-2],[-8,-3],[-15,-3],[-5,-3],[-3,-2],[0,2],[-6,4],[-4,-2],[-5,5],[-6,3],[-2,3],[-3,-1]],[[7802,819],[-2,1],[-3,0],[-5,-2],[-1,3]],[[7791,821],[2,4],[0,6],[2,3]],[[7795,834],[1,5],[-2,8]],[[7794,847],[-3,2]],[[7791,849],[-3,1],[-2,6]],[[7786,856],[-3,9],[-6,4],[-4,13],[-14,7],[-4,5],[-3,4],[-2,1]],[[7750,899],[-2,2],[-1,0],[-2,-1],[-2,0]],[[7743,900],[-4,0],[-1,1],[-9,-1],[-5,-3],[-18,-8],[-9,-3],[-3,11],[-5,6],[-4,7],[-4,3],[-4,6],[0,7],[-6,5],[3,4],[1,0],[-3,5],[6,5]],[[7678,945],[5,3],[-1,5]],[[7682,953],[-12,19],[-4,3]],[[7666,975],[-6,1],[-12,5],[-6,5],[-9,-5],[0,-1],[-2,-2],[-1,0],[-1,-1],[-1,-3],[-3,5],[-7,6],[-6,2],[-5,1]],[[7607,988],[-5,4],[-8,14]],[[7594,1006],[-1,6],[-1,1],[-3,-1],[-2,6],[2,1],[-4,8],[2,8],[0,6],[-6,0],[0,5],[2,9],[-6,6],[-5,4]],[[7572,1065],[-1,2],[-1,1],[-3,11]],[[7567,1079],[-2,3]],[[7565,1082],[-18,43]],[[7547,1125],[9,15],[-4,6],[-10,3],[-6,5],[9,8],[-5,5],[8,0],[-2,4],[-2,1],[1,8],[-6,7],[5,6],[1,2],[-2,1],[3,5],[1,3],[-2,2],[0,1],[1,4],[0,1],[0,3],[-2,2],[1,1],[-1,1],[2,1],[1,0],[0,2],[-1,2],[-1,3],[-5,4],[0,2],[1,3],[-5,0],[-7,5],[-3,1],[-5,7],[-3,6],[-7,9]],[[7511,1264],[-6,6]],[[7505,1270],[10,3],[4,0],[1,3],[2,0],[1,2],[-1,1],[1,2],[5,5],[15,9],[1,0],[-2,2],[11,8],[1,3],[1,-1],[2,6],[-2,0],[0,3],[-1,2],[3,2],[-1,1],[4,5],[3,2],[1,1],[4,2],[-2,5],[2,1],[0,3],[-2,3],[-1,4],[2,3],[-5,5],[9,8],[1,2],[3,-2],[4,-6],[4,-3],[2,-7],[0,-5],[6,-1],[6,-5],[3,0],[2,-1],[4,1],[3,-1],[4,1],[-1,2],[2,2],[0,2],[3,6],[2,1],[-1,2],[0,4],[-1,1],[-1,6],[0,10],[2,2],[0,6],[2,1],[-1,2],[0,3],[0,2],[-1,0],[1,2],[-3,2],[-1,3],[1,1],[-1,0],[1,1],[0,6],[1,9],[-1,1],[1,1],[-4,5],[0,3],[1,3],[1,4],[6,6],[7,4],[9,9],[2,1],[8,0],[4,3],[3,0],[1,2],[5,-5],[13,12],[11,5],[7,8],[14,0],[12,2],[17,-1],[11,6],[8,3],[3,2],[-2,0],[0,1],[-1,0],[-4,4],[-7,5],[-6,7],[4,6],[0,5],[3,2],[2,2],[7,-1],[3,1],[8,6],[-1,1],[1,1]],[[7763,1526],[11,6],[12,-1]],[[7786,1531],[0,1],[1,0],[11,-1],[9,-3],[5,0],[2,1],[0,5],[3,6],[6,-4],[-2,0],[-1,-2],[0,-1],[2,-2]],[[7822,1531],[-1,-3]],[[7821,1528],[0,-4],[-3,-7]],[[7818,1517],[1,-4],[2,-2],[7,-6]],[[7828,1505],[3,-3],[5,-21]],[[7836,1481],[0,-1],[-3,-10],[1,-1],[3,-3],[0,-3],[-1,-2],[-3,-3]],[[7833,1458],[0,-2],[6,-5]],[[7839,1451],[4,-7],[7,-3],[2,-2],[0,-4],[-3,-4],[0,-4],[2,-4],[-1,-6],[0,-3],[4,-6],[0,-1],[-4,-7],[-7,-2],[-3,-4],[-6,-4],[-1,-3],[2,-4],[-1,-5],[4,-16],[-1,-3],[1,-9],[1,-1],[4,-1],[4,-4],[-6,-7],[-5,-4],[0,-2],[3,-4],[2,-3],[0,-2],[7,-4],[0,-12],[6,-5],[2,-6],[1,-3],[-3,-7],[-2,-1],[-4,-1],[-5,-4],[1,-6],[-1,-4],[-16,-7],[-8,-9],[-1,-5],[-7,-5],[-7,-2],[-1,-1],[0,-2],[0,-3],[8,-9],[-1,-4],[0,-4],[-3,-4],[-1,-3],[2,-6],[-2,-5],[-5,-5],[0,-2],[5,-5],[7,-2],[5,-4],[2,-2],[6,-10],[2,-2],[3,-2],[11,-1],[7,-2],[1,-1],[-1,-2],[-2,-2],[-9,-4],[-1,-2]],[[7837,1152],[1,-7],[3,-5],[3,-2]],[[7844,1138],[9,-3],[8,1],[7,0],[9,-2],[4,-1],[7,2],[9,-2],[8,3],[10,1],[4,1],[8,1],[11,4],[4,0],[5,-7],[10,-10],[12,-18],[11,-8],[6,-3],[4,-1],[10,-4],[21,-3],[11,-5],[13,-4],[2,1],[7,-4],[5,4],[1,3],[3,2],[11,-3],[5,-3],[8,6],[6,-1],[1,4],[8,-2],[6,1],[12,7],[3,0],[8,3],[10,6],[12,1],[10,-2],[19,-2],[4,2]],[[8186,1103],[11,1],[5,0]],[[7948,539],[2,0],[9,-3],[3,5],[1,-1],[2,0],[-4,8],[2,0],[4,4],[9,5],[7,5],[9,-7],[3,29],[23,-6],[-16,63],[-1,6],[0,36],[3,1],[0,-2],[2,0],[9,4],[-2,2],[2,1],[3,5],[1,-7],[10,-3],[2,0],[14,7],[4,12],[1,12],[2,2],[4,1],[2,3],[5,-2],[1,1],[1,-2],[5,3],[4,0],[7,-3],[1,0],[-1,4],[6,-6],[25,-6],[47,1],[14,-6],[9,-7],[5,-5]],[[8187,693],[-3,-6],[4,-7],[-6,-11],[3,-6],[-1,-1],[-10,-5]],[[8174,657],[-11,1],[-6,-4]],[[8157,654],[-4,-5],[-1,-6],[-3,-8]],[[8149,635],[1,-6],[2,-5],[0,-5]],[[8152,619],[-1,-3],[-5,-5],[-1,-5],[1,-6]],[[8146,600],[2,-4],[6,0],[3,3],[3,0],[2,-2],[-1,-3],[-7,-6],[0,-2],[1,0],[5,1],[0,-3],[-6,-9],[-1,-3],[2,-3],[5,-3],[10,-7],[2,-4],[1,-3],[-11,-8]],[[8162,544],[-9,-7],[-25,-26]],[[8128,511],[-27,-30],[-13,-10]],[[8088,471],[-12,-8],[-9,-4],[-30,-10],[-14,-5],[-6,-2],[-18,0]],[[7999,442],[0,3],[-9,10],[-5,16],[-8,13],[-4,16],[-4,3],[-12,7],[-4,5]],[[7953,515],[-4,14],[-1,10]],[[7776,606],[1,2],[5,6],[4,7]],[[7786,621],[6,9],[1,2],[-1,2],[-3,4],[-5,3],[-23,0],[-21,6],[-3,2],[-9,7],[-3,6],[-1,4]],[[7724,666],[3,5],[4,6],[2,10]],[[7733,687],[-4,31],[-1,3],[-4,2]],[[7724,723],[-11,-2],[-3,1]],[[7710,722],[-3,2],[-1,7]],[[7706,731],[-1,8],[-4,7]],[[7701,746],[41,20],[0,2],[15,18],[5,14],[4,1],[3,3],[7,7],[1,-1],[2,3],[6,3],[1,2],[6,1]],[[7792,819],[0,-1],[8,2],[2,-1]],[[8092,844],[2,-2],[2,-3],[3,-3]],[[8111,814],[10,-3],[0,2]],[[8218,792],[11,1],[4,-3],[2,-4]],[[8235,786],[2,-1],[0,-3]],[[8237,782],[4,-1],[0,-2]],[[8241,779],[5,0],[7,5]],[[8253,784],[4,0],[4,7],[6,-2],[-1,-4],[3,1],[7,-3],[-3,-8],[1,-3],[6,-1],[5,-3],[1,-3],[3,0],[5,-3],[8,-3],[0,-1],[5,-3],[7,-6],[6,-3],[0,-3]],[[8320,743],[8,-1],[1,-2],[1,-4]],[[8330,736],[-4,-9],[-4,-4],[-10,-6],[-3,-3],[-9,-6]],[[8300,708],[3,-3],[-1,-2],[-8,1],[-9,-5],[-9,-5],[-6,-2],[2,-1],[2,-3],[-2,0],[-4,3]],[[8268,691],[-4,-4],[3,-3]],[[8267,684],[-1,0],[-1,0],[-3,-3],[2,-6],[-2,0],[0,-1],[-2,0],[0,-2],[-1,0],[0,-4],[-5,-2],[-2,1],[2,6],[3,5],[-1,0],[0,2],[2,5],[-5,1],[-1,1],[0,2],[-1,1],[3,4],[4,-1],[1,3],[-6,3],[2,2],[-6,3],[-2,-1],[-8,6],[-3,-1],[0,2],[-2,2],[-2,-1],[-8,0]],[[8224,711],[-12,-3],[-5,-3],[-4,-4]],[[8203,701],[-4,-5]],[[8199,696],[-9,0],[-2,-1],[-1,-2]],[[7948,539],[-2,3],[-4,4],[-4,2]],[[7938,548],[-5,1]],[[7933,549],[-32,-3],[-10,2]],[[7891,548],[-16,3],[-8,4],[-6,1],[-12,-3],[-5,1],[-22,11]],[[7822,565],[-9,15],[-10,11]],[[7803,591],[-12,8],[-7,3],[-7,2],[-1,2]],[[7477,594],[-33,8],[-21,1]],[[7423,603],[-2,1],[-2,1],[-1,3],[-3,3],[0,2],[-1,2],[-3,1],[-1,2],[1,2],[-1,1],[1,5],[-1,7],[3,0],[6,3],[0,5],[3,3],[-4,6],[-1,2]],[[7417,652],[8,1],[-5,12]],[[7420,665],[-3,2],[-2,5],[-6,0],[1,9],[-3,9],[0,1],[-4,2],[-3,5],[-5,4]],[[7395,702],[-2,6],[1,11]],[[7394,719],[7,14],[1,0]],[[7402,733],[0,1],[2,0]],[[7404,734],[0,1],[1,1],[2,-1],[2,1],[7,1],[1,3],[3,1],[-1,1],[3,0],[2,1],[3,-1],[2,0],[1,-1],[4,-2],[0,-2],[4,-1],[1,2],[2,1],[1,-3],[2,0],[1,-1],[3,0],[2,0],[3,-1],[6,2],[2,0],[2,2],[3,-1],[2,2],[3,6],[-1,6],[4,0],[1,1],[1,2],[-2,2],[0,2],[2,1],[4,1],[-1,1],[-7,5],[5,5],[8,-1],[1,1],[0,2],[16,0],[1,-1],[6,3],[3,2],[7,2],[-6,9],[3,2],[-1,2],[3,2],[0,6],[1,1],[1,0],[2,0],[1,-1],[8,-2],[1,-1],[2,0],[2,-1]],[[7536,796],[7,-1],[2,1],[12,3]],[[7557,799],[7,-4],[3,2]],[[7567,797],[1,0],[18,6],[6,1],[0,1],[9,-1],[4,1],[9,-1],[3,1],[-1,2]],[[7616,807],[2,5],[11,-1]],[[7629,811],[4,0],[2,2],[2,0],[1,1],[3,1],[1,-1],[0,-2]],[[7642,812],[11,0],[1,-8],[4,-5]],[[7658,799],[-4,-8],[0,-3],[1,-2],[16,-12]],[[7671,774],[11,-12],[8,-5],[9,-7],[6,-11],[1,-8]],[[7706,731],[1,-7],[3,-2]],[[7724,723],[3,-1],[2,-3],[3,-21],[1,-11]],[[7724,666],[1,-5],[3,-5],[10,-8],[8,-3],[16,-4],[21,0],[6,-3],[4,-4],[0,-4],[-7,-9]],[[7776,606],[1,-2],[14,-5],[12,-8]],[[7822,565],[19,-10],[6,-2],[13,3],[5,-1],[16,-5],[10,-2]],[[7891,548],[8,-2],[11,1],[23,2]],[[7938,548],[6,-3],[4,-5],[0,-8],[5,-17]],[[7999,442],[-4,0]],[[7995,442],[-47,5],[-22,4],[-3,-4],[1,-1],[9,-4],[7,-4],[5,-8],[-3,-2],[-3,3],[-5,-3],[-4,-1],[-10,-16],[-2,-3],[-1,0],[-4,-8],[-6,-5]],[[7907,395],[-43,42]],[[7864,437],[-5,2],[-1,-1],[-8,1],[-10,-1],[-1,-1]],[[7839,437],[-15,-5],[-4,-2]],[[7820,430],[-2,-3],[-3,1],[-5,-2],[-7,0],[-12,-5],[-10,-3],[-2,0],[-6,-4],[-1,-3],[-2,-3],[0,-4],[-3,-9],[-3,-2],[-7,-2],[-4,-3],[-2,1],[1,-1],[-7,-1],[-7,1],[-4,-1],[-7,1],[-12,4],[-5,1],[-10,-1],[-19,-2],[-5,0],[-5,1],[-3,0],[-1,0],[-1,0],[-2,0],[-1,5],[-3,3],[-18,19],[-2,1],[-3,5],[-5,9],[-1,7],[-4,8],[2,1],[-1,2],[-2,1],[0,2],[-3,12],[1,0],[-1,1],[-3,7],[-17,26],[-9,11],[0,1],[-13,10],[1,1],[-3,3],[1,0],[-3,3],[-3,9],[-1,0],[-1,6],[-2,9],[-5,6],[-4,4],[-3,1],[-8,2],[0,1],[-3,0],[-3,2],[0,1],[-1,0],[0,-1],[-7,4],[-14,12],[-5,2],[-3,9],[-13,-3],[-11,-1],[-13,2]],[[5790,2266],[-8,-10],[-3,-6],[-4,-6]],[[5655,2013],[-4,-7],[0,-3],[-1,-3]],[[5649,1984],[1,-5],[4,-4]],[[5654,1975],[0,-4]],[[5654,1971],[-4,5]],[[5650,1976],[-4,1],[-1,4],[-2,1],[-2,3]],[[5641,1985],[-1,5],[-2,2]],[[5638,1992],[-4,2],[2,8],[-1,2],[0,1],[-5,2],[-2,1],[0,2],[-4,2],[-9,3],[1,2],[3,-1],[1,1],[5,6],[-4,2],[0,4],[-2,2],[-1,2],[-3,3],[1,2],[-3,1],[-3,3],[-4,0],[-2,2],[-1,0],[-2,1],[-3,1],[-4,1],[-5,4],[-1,-1],[0,-2],[-12,3],[-12,6],[-13,4],[1,1],[-3,2],[0,3],[-4,3],[-8,2],[-2,0],[-10,3],[-4,2],[-3,0],[-4,-2],[-1,1],[-5,2],[-1,-1],[0,-2],[-2,0],[-2,0],[-2,2],[-6,0],[-6,2],[-4,-2],[-6,1],[-2,-3],[-3,0],[-9,3],[-5,0],[-3,1],[-5,-3],[-1,1],[-3,2],[-5,-1],[-6,3],[-3,0],[-4,-1],[-8,-9],[-5,0],[-5,-5],[-2,-1],[-9,0],[-3,2],[-5,4],[-4,0],[-19,-8],[-2,-3],[-6,-2],[-9,-7],[-5,1],[-6,-2],[-9,-1],[-16,3],[-5,-1],[-9,-3],[0,-3],[3,0],[7,-2],[16,-9],[3,-3],[1,-3],[1,-5],[-1,-8],[0,-2],[5,-5],[3,-2],[4,-7],[2,-1],[9,-1],[2,-6],[0,-6],[-2,-2],[3,-3],[-1,-2],[0,-1],[7,-4],[3,1],[3,-3],[-1,-1],[1,-3],[-2,-1],[2,0],[0,-1],[-2,-1],[1,-2],[-4,-4],[0,-4],[1,-1],[-1,-2],[4,-6],[2,-2],[0,-2],[-3,-5],[-2,-2],[0,-6],[-3,-5],[1,-4],[-2,-3],[-1,-4],[-2,-4],[0,-2],[-2,-5],[0,-3],[-3,-2],[-4,-6],[0,-9],[1,-3]],[[5352,1878],[-10,-3],[-1,0]],[[5341,1875],[-1,1],[-2,1]],[[5338,1877],[-9,1],[0,1],[-5,-1]],[[5324,1878],[-8,2],[-4,3]],[[5312,1883],[-3,5],[-2,2],[-4,0],[-7,-2],[-18,-10],[0,2],[-5,3],[0,2],[-3,0],[0,1],[-5,-1],[-2,2],[-8,0],[-2,3],[0,7],[-2,2],[-3,1],[-4,4],[-3,0]],[[5241,1904],[-3,5],[-4,1],[-17,-10]],[[5217,1900],[-6,0],[-2,-2],[-6,3],[-6,1]],[[5197,1902],[-31,-12],[-13,-7]],[[5153,1883],[-3,2],[-11,0],[-9,-4]],[[5130,1881],[-9,-3],[-3,-7]],[[5118,1871],[-5,-8],[-1,-3],[-2,-1],[-2,-1],[-4,-1],[-3,2],[-1,0],[-2,0],[-2,0],[-1,1],[-2,-1],[-1,0],[-3,0],[-2,0],[-3,0],[-1,-1],[-1,1],[-5,-2],[-1,0],[-3,-1],[-2,1],[-6,-2],[-2,0],[-1,-2],[-4,0],[-2,1],[-2,0],[-4,2],[-4,0],[-1,0],[-3,-1],[-1,1],[-6,-1],[-2,0]],[[5033,1855],[-9,0]],[[5024,1855],[-4,2],[-1,-1],[-2,1],[-3,0],[-3,1],[-4,-1],[-3,1]],[[5004,1858],[-5,3],[-1,2]],[[4998,1863],[-1,1],[-1,5],[-2,1],[1,2],[-2,1],[0,2],[-3,2],[-1,2],[-3,0],[0,2],[-1,1],[-10,3],[-4,3],[-3,1],[-6,5],[-10,5],[-2,2],[-1,1],[-6,2],[-9,0],[-5,0]],[[4929,1904],[6,14]],[[4935,1918],[-3,3],[-4,3]],[[4928,1924],[-2,7],[4,7]],[[4930,1938],[5,6]],[[4935,1944],[2,3],[-4,8]],[[4933,1955],[2,4]],[[4935,1959],[-1,1],[-13,3]],[[4921,1963],[0,-1],[-3,0],[-8,-1],[-3,0],[-3,-1],[-3,-2],[-6,-1],[-5,-2],[-5,-4],[-4,-2],[-1,-1],[-4,-1],[-2,0],[-1,-1],[-2,0],[-2,3],[-5,-3],[-3,1],[-1,0]],[[4860,1947],[-10,-2],[-3,-1]],[[4847,1944],[1,-5],[-3,0],[0,-2],[-3,-1],[1,-1],[0,-1],[-2,-1],[0,-2],[-1,0],[-4,0],[-19,-5],[-12,-5],[-13,-4],[-5,0],[-8,3],[-5,0],[-4,0]],[[4770,1920],[-5,-2],[-3,-1],[-2,1]],[[4760,1918],[-1,-1],[-2,0],[-8,-2],[-3,-3],[-6,-4],[-8,-2],[-3,-3],[-2,0],[-1,0],[0,-1],[-2,1],[-1,-1],[-5,-3],[-2,-2],[-2,-2],[-3,-1],[-2,1],[-2,-1],[-3,0],[-3,-4],[1,-1],[-1,-2],[-2,1],[-1,-1],[-1,0],[-2,-2],[-5,-1],[0,-2],[0,-1],[-2,-5],[-1,2],[-2,0],[-6,4],[-4,1],[0,2],[-8,0],[0,-1],[-6,1],[-2,-1],[-1,4],[-4,16],[-1,12],[1,6],[5,5],[9,1],[1,-1],[1,1],[3,-2],[0,2],[-2,4],[-2,3],[3,2],[1,1],[-2,2],[-3,1],[1,2],[-4,2],[-1,-2],[-2,0],[0,3],[-2,1],[0,4],[-5,1],[1,4],[-1,3],[2,3],[0,1],[2,2],[3,5],[-3,4],[-1,3],[0,4],[2,2],[0,2],[0,2],[1,3],[-2,1],[5,6],[-5,3],[1,1],[-41,21],[-23,13],[-2,0],[-4,-2],[-5,2],[-1,-1],[-1,-3],[-3,1],[0,-2],[-2,1],[0,-2],[-4,2],[-2,-2],[-2,0],[-2,-9],[-5,1],[-4,2],[-3,4],[-3,1],[-5,0],[-4,1],[-2,-1],[-5,0],[-2,1],[-4,0],[-12,-6],[-4,0],[-3,0],[-1,-1],[-4,-1],[-7,1],[-1,0],[-6,2],[-3,-1],[-2,1],[0,-2],[-1,0],[-2,-2],[-4,-1],[-4,-2],[-1,0],[-4,-1],[1,-2],[-4,-1],[-3,-7],[-3,-2],[0,-1],[-2,0],[-2,-1],[0,-2],[-3,-1],[0,-1],[-8,-1],[-8,-3],[-5,1],[0,1],[-2,1],[-1,0],[-3,1],[-5,-1],[-1,-2],[-4,-1],[0,-2],[-3,0],[-4,-2],[0,-2],[-4,-3],[-8,0],[-7,-4],[-6,3],[-2,-1],[-9,6],[-4,6],[-3,11],[-6,7],[-2,0],[-3,-1],[-2,-3],[-6,3],[-2,-3],[-3,3],[-5,1],[4,2],[2,1],[2,3],[0,2],[4,0],[-1,3],[1,2],[3,0],[3,7],[-11,7],[-4,-2],[-4,0],[-1,-2],[-3,0],[-7,-4],[-1,-1],[-2,-2],[0,-2],[-11,-9],[-8,-3],[-5,-4],[0,-4],[-3,-2],[-11,-2],[-4,1],[-1,0],[-2,1],[-4,0],[-2,2],[-10,-2],[-7,-3],[-5,-3],[-1,-2],[-19,-10],[-5,-4],[-6,-2],[-6,-5],[-5,7],[-14,-6],[-2,2],[-6,-4],[1,-1],[-1,0],[5,-4],[-2,-2],[2,-4],[-5,-2],[3,-6],[-1,-6],[1,-2],[-2,-5],[2,-6],[-2,-4],[-3,-1],[-3,-6],[-3,-2],[-1,0],[-1,-3],[3,-3],[1,-4],[3,0],[2,-2],[2,1],[2,-1],[4,-8],[4,-1],[8,-6],[3,0],[1,-1],[-4,-3],[3,-1],[0,-1],[-2,-2],[-4,-2],[-4,-4],[-2,-1],[-4,1],[1,-3],[-4,-2],[-3,-2],[-5,0],[-2,-6],[-4,-4],[-6,0],[-1,-3],[-13,-3],[-9,-1],[-7,-3],[-4,-4],[1,-3],[-3,-5],[0,-3],[-6,-10],[2,-6],[-3,-1],[-2,-6],[-6,-8],[8,2],[-1,-2],[-7,-8],[-11,-9],[-23,-16],[1,-2],[3,-2],[-1,-1],[6,-3],[2,-5],[1,-1],[3,-4],[-3,-3],[-1,-5],[3,-4],[2,-1],[1,-1],[1,0],[0,-1],[4,-4],[1,-2],[2,-2],[12,-7],[6,-2],[2,0],[0,-1],[3,-2],[1,0],[2,-2],[-6,-2],[-8,-9],[-7,3],[-3,-3],[-3,1],[-4,-5],[-2,-1],[-6,-1],[-4,2],[-4,-8],[-4,-6],[5,-3],[0,-3],[-8,-3],[-2,-2],[-4,-2],[-2,1],[-2,-5],[-1,0],[0,-2],[-2,-1],[-4,5],[-5,-1],[0,2],[-1,2],[3,1],[-5,6],[7,5],[-8,1],[1,2],[-5,4],[-1,0],[-6,7],[-9,9],[-2,-1],[-4,6],[1,0],[-3,2],[-1,2],[-3,0],[-4,6],[2,1],[-5,1],[-4,1],[3,9],[-3,5],[1,4],[-6,1],[-9,0],[-3,2],[-3,-2],[-2,-5],[-5,2],[-2,-2],[-1,2],[-1,0],[-2,2],[-5,1],[-8,6],[-5,2],[-2,7],[1,1],[-2,5],[-2,2],[1,2],[-1,1],[0,6],[1,1],[-2,2],[2,5],[5,5],[-2,1],[-5,9],[0,2],[-3,6],[0,7],[-14,8],[-2,-2],[-2,-1],[-2,-3],[-6,0],[-1,-2],[-1,0],[0,-1],[-4,-2],[-3,0],[-2,1],[-4,0],[-2,1],[-3,-1],[0,-2],[-3,-5],[-4,0],[-2,-2],[-1,0],[-3,3],[-3,-1],[-3,3],[-6,1],[-1,1],[1,2],[-1,0],[-1,-1],[-4,2],[-1,1],[1,1],[3,1],[1,2],[-9,2],[1,2],[-3,0],[-4,2],[1,7],[-2,1],[0,4],[-3,1],[-1,2],[-19,8],[-2,0],[0,-2],[-4,1],[0,-1],[1,0],[1,-1],[1,-3],[-1,-1],[-2,-2],[-2,2],[-1,0],[-2,-1],[-3,1],[-4,0],[-5,-1],[-4,-2],[-9,-6],[-6,4],[-2,-2],[5,-4],[-2,-3],[-4,-3],[-1,-6],[-1,-4],[-9,-11],[-2,-4],[-4,-1],[-4,-5],[-3,-1],[-10,-8],[-5,-4],[2,-3],[-5,0],[-1,-1],[-3,0],[-2,2],[-2,-3],[-3,1],[-1,-2],[-2,1],[0,2],[-1,0],[-7,-3],[-17,-3],[-3,-2],[-6,-8],[-7,-6],[-2,-8],[0,-3],[4,-4],[5,-10],[0,-7],[-5,0],[-2,-2],[4,-2],[0,-13]],[[3704,1714],[-22,2],[-24,-3],[-20,2],[-1,0],[-21,5],[-54,33],[-35,58],[11,11],[22,34],[19,45],[-1,44],[-15,20],[0,9],[8,4]],[[3571,1978],[8,2]],[[3579,1980],[9,4],[19,11],[2,2],[3,6],[2,1]],[[3614,2004],[14,4],[20,7],[10,2],[10,2]],[[3668,2019],[6,0],[6,2]],[[3680,2021],[13,3],[16,5],[9,10],[2,13],[0,12],[2,15],[3,13],[2,10],[1,7]],[[3728,2109],[2,9],[1,6],[-2,7],[-2,4],[-28,23],[-2,3],[0,1],[1,4],[2,2],[15,10],[8,6],[10,7],[2,3],[0,2],[-1,2],[-9,5],[-5,4],[-3,5],[1,2],[1,1],[2,1],[3,0],[14,-5],[4,0],[3,1],[5,5],[3,6],[1,4],[-1,3],[-2,1],[-2,0],[-5,-2],[-6,0]],[[3738,2229],[-5,2],[-2,2],[-1,4]],[[3730,2237],[1,1],[2,1],[8,2],[2,2],[1,2],[-3,17],[-2,5],[-2,6]],[[3737,2273],[1,5],[7,8]],[[3745,2286],[7,5],[17,5],[9,1],[11,3],[8,0],[3,0],[11,-6],[3,0],[6,3],[5,5],[6,7],[-2,3],[-3,1],[-5,0],[-4,-3],[-3,1],[-1,1],[0,1],[1,5],[6,8],[4,2],[5,-2],[2,-8],[2,-2],[3,-1],[3,1],[10,6],[0,2],[-7,6],[-4,7],[1,2],[2,2],[10,-3],[10,-1],[7,-2],[13,-6],[2,5],[7,7],[0,3],[-1,10],[-2,5],[-2,8],[-1,3],[-2,2],[-3,7],[-1,6],[-1,4],[-7,4],[-11,6],[-7,5],[-4,4],[-4,3],[-1,2],[-3,2],[2,6],[-1,5],[4,-2],[1,1],[0,1],[-4,1],[0,4],[0,2],[4,2],[2,3],[-4,8],[0,7],[-3,10],[2,7],[-5,7],[3,3],[-1,1],[1,2],[4,1],[2,0],[0,1],[2,0],[2,2],[4,3],[2,0],[3,2],[2,1],[2,5],[7,6],[-4,3],[3,2],[-1,1],[4,3],[0,1],[3,2],[1,-1],[1,5],[1,0],[0,5],[1,2],[-14,5],[-6,3],[-1,3],[-4,0],[-5,0],[-1,-1],[-10,1],[-1,6],[5,9],[-3,6],[3,1],[3,1],[1,2],[5,5],[-4,2],[0,2],[-1,1],[0,2],[-4,4],[-6,1],[2,5],[5,5],[9,2],[7,3],[4,3],[4,4],[10,12],[7,12],[8,17],[16,20],[-1,0],[-1,3],[1,3],[-1,1],[1,1],[1,0],[-1,2],[1,1],[-2,0],[0,1],[-2,0],[0,1],[-1,0],[-1,1],[0,-2],[-3,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[4,5],[-4,4],[1,3],[-2,0],[1,1],[1,3],[6,2],[5,2],[2,6],[5,6],[1,0],[2,3],[3,4],[-2,0],[0,-1],[-4,2],[-1,1],[-9,1],[-3,-2],[-19,1],[0,1],[-2,2],[2,4],[-9,4],[-12,7],[-7,3],[-3,1],[3,4],[-3,5],[1,1],[-2,3],[2,5],[-2,4],[2,0],[1,0],[1,2],[2,0],[3,2],[3,-1],[1,-1],[3,0],[0,1],[3,0],[2,1],[1,-1],[5,1],[1,-2],[1,2],[3,-1],[2,3],[5,2],[2,3],[2,1],[1,3],[2,2],[3,5],[0,2],[2,3],[1,7],[-3,1],[0,2],[-12,-2],[1,3],[2,6],[0,2],[1,9],[-2,9],[-1,6],[-9,4],[-9,-1],[-5,-2],[-4,-2],[-7,-2],[-8,0],[-4,-5],[-13,-5],[-1,3],[2,3],[-11,0],[-7,2],[0,4],[2,1],[0,3],[-3,1],[-2,-2],[-5,4],[1,5],[-2,1],[-3,-3],[-1,1],[2,3],[-10,3],[1,3],[-1,8],[-5,9],[-4,4],[-3,1],[-9,-4],[-7,-1],[-5,0],[-5,4],[-6,2],[-2,4],[-4,3],[-6,1],[-15,-6],[-1,10],[-1,-1],[-1,22],[-41,9],[-26,-16],[-14,-6],[-1,0],[-56,7],[0,1],[-2,1],[-6,0],[-1,-1],[-3,1],[-1,1],[-1,-2],[-7,2],[-16,2],[-14,-3],[-3,1],[-10,6],[0,-4],[-3,1],[-24,0],[-13,-3],[-7,-3],[-4,-1],[-6,-4],[-9,-3],[-7,-7],[-1,-5],[-6,2],[-1,0],[-7,2],[-4,-3],[-9,-2],[-9,1],[-6,2],[-2,0],[-3,1],[-2,2],[-2,5],[-7,5],[-2,2],[-3,0],[-7,6],[-2,2],[1,2],[-1,1],[-34,-13],[-2,1],[-7,1],[-3,3],[-2,1]],[[3323,2904],[-6,0],[-5,0],[-24,-8]],[[3288,2896],[-1,-5],[-4,-1]],[[3283,2890],[-13,-7],[-6,-2]],[[3264,2881],[-7,-1]],[[3257,2880],[-3,-1],[-7,1]],[[3247,2880],[-8,-2],[-1,0],[-2,-3],[-9,-2],[-3,-2],[-5,-1],[-9,-2],[-8,1],[-5,-1],[-2,0],[-2,-1],[-5,-1],[-1,0],[-6,0],[-2,0]],[[3179,2866],[-9,0],[-1,0]],[[3169,2866],[1,-3],[-1,1],[-2,-3],[3,-2],[5,-5],[-3,-5],[4,-3],[-2,-3],[1,-1],[-2,-3],[2,-11],[0,-4],[6,-10],[2,-4],[6,-9],[3,-7],[0,-3],[-30,-2],[-15,2],[-1,0],[-2,0],[-14,1],[-16,11],[-12,10],[-7,4],[3,2]],[[3098,2819],[-23,2]],[[3075,2821],[2,7],[6,9],[2,1],[2,4],[2,3],[4,3]],[[3093,2848],[2,3],[0,1],[1,1],[-1,9]],[[3095,2862],[0,8],[4,13],[4,6],[1,3],[-3,2],[-1,3],[-1,6],[2,5],[-1,9],[-3,7],[-1,2],[-1,2],[1,1],[-2,1],[1,5],[3,6],[0,3],[-1,0],[0,1],[2,1],[0,2],[1,4],[-1,2],[-4,4],[-21,15],[-2,1],[-3,-1],[-6,-1],[-6,0],[-3,-1],[-4,0],[-4,1],[-4,3],[-4,-2],[-8,2],[-3,4],[-5,-1],[-7,3],[-4,1],[-7,3],[-1,3],[-3,6],[-2,6],[-7,10],[2,2],[-2,9],[-3,4],[-5,1],[-3,4],[-4,1],[-1,2],[-2,1],[0,3],[-4,8],[1,2],[-1,4],[-3,3],[1,1],[-2,2],[2,4],[-3,4],[-6,3],[-3,2],[-3,0],[-2,-1],[-7,4],[0,1],[-3,2],[-4,1],[-7,6],[-5,8],[-7,6],[-2,0],[-3,-1],[-1,-2],[-8,4],[-3,-1],[0,-1],[-3,0],[-1,-1],[-1,1],[0,2],[-1,0],[-2,-2],[-1,0],[-1,1],[-2,0],[-2,1],[-2,2],[-3,-1],[-2,1],[1,3],[-5,1]],[[2875,3104],[-2,5],[2,1]],[[2875,3110],[3,-3]],[[2878,3107],[1,2],[-4,5]],[[2875,3114],[-5,3],[-2,7],[1,3],[-3,8],[1,3],[-2,1],[0,10],[-1,4],[1,5],[-2,1],[-3,-1]],[[2860,3158],[-1,2],[0,1]],[[2859,3161],[-1,1],[0,2],[2,3],[3,1]],[[2863,3168],[2,-1],[1,1],[-2,3],[-3,0],[-1,2],[-1,2],[1,6],[1,3],[0,1],[-2,0],[-1,0],[1,3],[-3,1],[-2,4]],[[2854,3193],[3,2],[0,1],[-5,6]],[[2852,3202],[0,1],[-1,2],[-5,4],[0,3],[-3,1],[-5,0],[-1,2],[-2,1]],[[2835,3216],[2,1],[0,1],[-2,0]],[[2835,3218],[0,2],[-1,0],[-2,-1]],[[2832,3219],[1,-2],[-2,1],[-4,3],[-2,3],[3,0],[14,3]],[[2842,3227],[8,-1],[8,1],[2,-2],[2,-4],[3,0],[6,5],[8,0],[2,1],[6,6],[2,5],[-1,1],[-4,0],[-3,3],[-1,6],[0,6],[1,1],[5,3],[10,7],[1,0],[1,-6],[2,-6],[-1,-10],[2,-5],[3,-4],[4,-3],[8,-4],[5,0],[7,6],[5,2],[8,1],[5,-3],[3,-1],[12,2],[10,0],[11,4],[10,2],[2,0],[4,-4],[17,-11],[2,0],[8,3],[12,-1],[1,-1],[2,-6],[3,-1],[7,2],[1,1],[-1,5],[-2,3],[1,1],[2,1],[1,0],[3,-4],[2,-1],[2,0],[9,4],[8,4],[4,5],[4,3],[9,3],[3,4],[1,0],[2,-1],[3,-6],[2,-3],[3,0],[5,2],[3,0],[6,-2],[0,-1],[-3,-6],[1,-7],[3,-3],[5,-1],[5,-2],[4,-6],[1,-7],[7,-6],[15,6],[2,3],[5,-1],[6,-2],[3,1],[20,-5],[5,3],[2,0],[0,-2],[-1,-1],[-5,-3],[-9,-1],[-8,0],[-5,-2],[-1,-2],[1,-1],[6,-2],[6,-3],[4,0],[10,2],[14,6],[2,2],[0,5],[1,2],[9,8],[3,6],[5,4],[8,2],[8,1],[2,-1],[4,-4],[1,-6],[4,-1],[12,1],[5,5],[6,3],[4,0],[7,-1],[14,-5],[3,-6],[4,-2],[2,-1],[9,3],[3,0],[8,-8],[11,-6],[2,0],[6,1],[8,5],[4,1],[7,7],[8,3],[-1,-8],[2,-5],[2,-4],[12,0],[9,-3],[5,2],[2,2],[1,0],[2,-2],[1,-2],[-1,-8],[1,-5],[13,-3],[11,1],[14,7],[4,4],[9,2],[7,7],[3,5],[2,1],[6,-2],[2,-9],[2,-3],[3,-2],[5,-1],[9,2],[13,1],[4,-2],[8,-7],[2,0],[10,1],[10,-4],[6,-7],[0,-2],[-8,-15],[0,-6],[11,-2],[4,-2],[5,2],[5,2],[9,0],[8,-3],[8,-1],[1,-4]],[[3605,3142],[3,-1],[3,0],[3,2],[3,5]],[[3617,3148],[7,6],[3,8]],[[3627,3162],[8,3],[15,1],[8,2],[5,15],[2,12],[3,6],[1,8],[2,4],[8,0],[4,-8],[4,-10],[2,-1],[12,0],[7,3],[7,1],[17,-6],[8,0],[12,5],[10,5],[13,-3],[2,0],[3,1],[4,3],[1,2],[0,1],[-4,3],[-4,10],[2,13],[1,1],[6,1],[2,2],[2,4],[1,12],[3,4],[3,7],[3,1],[8,2],[12,1],[8,0],[2,-1],[3,-3],[6,4],[4,2],[1,-1],[6,-3],[3,-4],[3,-5],[-7,-5],[-3,-5],[-8,-8],[-2,-8],[0,-5],[15,-7],[9,-7],[7,-6],[4,-1],[13,1],[3,0],[4,-3],[3,-4],[2,-1],[7,-1],[1,0],[0,2],[-3,4],[0,3],[2,2],[3,1],[11,-3],[6,-3],[7,-2],[6,-4],[3,1],[7,7],[2,1],[9,-2],[12,-8],[4,1],[9,6],[5,1],[5,-1],[5,1],[1,-5],[2,-1],[3,-1],[5,3],[5,6],[4,4],[6,2],[4,-2],[5,-5],[13,-7],[2,0],[5,2],[5,3]],[[4057,3202],[5,2],[2,1],[0,1],[-3,3]],[[4061,3209],[-1,3],[6,11],[-1,5],[-3,8],[1,4],[-1,4],[1,3],[10,6],[7,1],[2,-1],[3,-1],[4,-4],[3,-1],[3,1],[0,7],[4,6],[5,2],[7,-4],[7,0],[5,2],[1,4],[-1,10],[3,10],[1,9],[2,1],[7,-5],[6,-2],[9,4],[3,5],[4,3],[0,4],[2,4],[0,1],[-5,2],[-2,1],[2,5],[31,10],[3,1],[3,-3],[-2,-3],[2,-7],[1,-7],[2,-3],[2,-3],[4,-1],[8,0],[4,1],[5,3],[9,1],[3,1],[4,4],[0,3],[3,4],[2,2],[6,0],[4,-5],[2,0],[2,1],[-2,3],[-2,4],[1,1],[5,-2],[5,-1],[8,1],[7,2],[7,6],[0,2],[-2,6],[1,2],[3,2],[2,0],[11,-3],[3,0],[5,1],[6,4],[3,4],[5,6],[1,7],[-8,7],[-6,3],[-2,2],[-1,3],[2,1],[13,3],[4,1],[-1,9],[1,1],[3,2],[3,3],[1,5],[2,6],[3,1],[4,-3],[11,-3],[4,-3],[4,4],[5,3],[2,0],[7,-3],[2,1],[1,2],[1,4],[0,1],[-7,2],[-8,0],[-7,1],[-12,6],[-10,10],[-1,2],[2,4],[3,0],[7,-3],[4,-1],[2,1],[6,11],[8,3],[5,3]],[[4367,3450],[12,14],[8,8],[7,-1]],[[4394,3471],[6,1],[12,7],[10,0],[7,-3],[8,-7],[4,1],[4,-1],[2,-4],[0,-7],[0,-1],[5,0],[4,3],[-2,4],[0,1],[8,2],[5,0],[7,1],[5,-6],[3,1],[3,5],[-6,12],[1,2],[5,3],[1,-1],[1,-3],[5,-1],[9,0],[6,4],[1,1],[9,-4],[5,-1],[4,1],[5,-1],[4,1],[1,1],[-2,4],[6,3],[4,-5],[7,-3],[2,1],[1,4],[-1,4],[3,1],[5,2],[2,3],[2,2],[11,5],[1,-1],[1,-4],[4,0],[1,1],[1,3],[0,5],[-4,4],[0,1],[9,6],[9,7],[2,0],[5,-3],[5,4],[2,0],[1,-1],[-4,-5],[1,-5],[2,-1],[3,1],[3,-1],[4,0],[0,1],[-4,2],[-2,2],[0,4],[1,1],[13,6],[1,0],[4,-4],[3,0],[2,1],[2,4],[3,1],[0,4],[-11,2],[-2,2],[-1,1],[2,2],[4,1],[3,1],[1,0],[3,-5],[6,1],[4,2],[7,-1],[3,-2],[0,-1],[-1,-4],[2,-1],[4,4],[6,3],[4,7],[3,2],[9,3],[2,2],[1,1],[7,0],[3,0]],[[4704,3556],[0,1],[-1,1],[-4,1],[1,4],[4,4],[6,1]],[[4710,3568],[2,-1],[4,-6],[1,-1],[3,1],[2,-2],[4,-1],[2,-2],[5,-2],[4,0],[6,3],[5,-1],[4,-2],[4,-3],[4,-5],[4,-3],[-4,-2],[9,-5],[4,3],[5,-3],[8,-7],[0,-3],[4,-3],[2,1],[4,-3],[19,-17],[15,-13],[28,-6],[34,12],[21,17]],[[4913,3514],[9,5],[4,2],[5,5]],[[4931,3526],[6,10],[3,4],[4,18],[5,-1],[9,3],[6,1],[14,-2],[2,3],[7,-2],[3,3],[7,-1],[10,8],[2,0],[-1,5],[0,2],[1,0],[9,15],[9,-6],[15,26],[20,13],[4,3],[9,6],[37,29],[31,21],[8,4],[6,-2],[13,-16],[6,-4],[3,-5],[2,0],[7,-9],[2,-5],[2,-2],[-5,-5],[0,-3],[0,-2],[0,-1],[2,2],[11,3],[0,1],[6,1],[0,-2],[3,0],[1,-1],[7,-3],[5,0],[2,0],[3,1],[4,-1],[15,-5],[6,-5],[0,-1],[1,-1],[0,-2],[-1,-2],[1,-1],[-1,-2],[8,-4],[2,-4],[8,-4],[8,-7],[1,0],[0,5],[2,5],[0,2],[2,0],[4,3],[4,-2],[2,1],[0,1],[1,0],[0,-1],[3,0],[2,-1],[2,0],[2,-1],[6,0],[3,0],[-3,2],[1,1],[-2,0],[0,1],[-1,2],[1,3],[6,3],[1,1],[8,1],[1,1],[1,0],[1,2],[2,1],[1,3],[3,4],[1,-1],[3,0],[1,2],[0,1],[3,0],[0,2],[2,1],[1,1],[0,1],[-1,1],[1,0],[0,2],[3,4],[1,1],[2,0],[3,3],[1,6],[2,3],[2,1],[3,0],[6,3],[8,2],[1,1],[4,1],[16,9],[0,1],[-1,13],[5,-1],[3,2],[3,2],[4,6],[7,2],[5,3],[8,0],[2,0],[1,-1],[3,2],[1,0],[2,-1],[1,0],[6,0],[2,-1],[2,0],[1,-1],[1,0],[-1,2],[3,0],[1,-1],[2,0],[0,-2],[9,-3],[0,-1],[3,-1],[2,1],[5,-2],[1,2],[3,-2],[2,-1],[3,-2],[4,-1],[7,-7],[8,-3],[4,-3],[-1,-1],[2,0],[2,-3],[8,-1],[3,-1],[7,-8],[1,0],[2,-3],[8,-6],[4,-1],[2,1],[6,-1],[4,1],[1,2],[7,-4],[1,-2],[0,-3],[1,-7],[6,-4],[0,-3],[4,-4],[4,-1],[8,-6],[4,-4],[2,-2],[9,-2],[5,-2],[9,-1],[2,-1],[5,-3],[5,-6],[6,-4],[4,4],[8,-1],[0,-1],[4,0],[0,1],[-1,0],[6,3],[2,-3],[1,-5],[2,-1],[2,-6],[8,-7],[8,-5],[0,2],[3,2],[10,-2],[9,3],[2,-2],[-15,-13],[9,-8],[-6,-8],[4,-2],[8,-2],[11,-6],[7,-1],[5,-2],[6,-6],[-1,-3],[-4,-5],[3,-1],[2,-3],[8,7],[1,3],[1,4],[1,1],[5,1]],[[5747,3538],[6,-1],[7,-3]],[[5760,3534],[6,-1],[2,2],[8,10]],[[5776,3545],[-2,3],[-1,4],[1,8],[-1,4],[1,10],[3,7],[8,5],[10,0],[6,2],[7,1],[-1,3],[7,17],[-2,7],[0,2]],[[5812,3618],[18,12],[6,8]],[[5856,3637],[12,-2],[5,-4]],[[5889,3613],[4,-4],[9,-3]],[[6002,3524],[-1,-2],[-2,-3],[0,-2],[-2,-2]],[[5876,2334],[-2,-1],[-1,-5]],[[5865,2316],[0,-3],[-2,-1]],[[3538,1970],[1,1],[1,0],[-2,-1]],[[8128,7370],[0,1],[-2,1],[0,2],[-2,0],[1,3],[-3,1],[-3,5],[-2,1],[-1,10],[-4,6],[-6,2],[-2,3],[-3,0],[0,3],[1,0],[-7,2],[-6,1],[-4,1],[-6,1],[-32,8],[-18,4],[-7,-3],[-5,-12],[-3,-3],[-19,1],[-1,-9],[-10,0],[-3,-5],[-2,-2],[-10,-1],[-12,-3],[-8,-11],[-5,-4],[-14,3],[-5,4],[-5,2],[-7,2],[1,-2],[0,-1],[-2,-4],[-5,-5],[-19,-9],[-10,-7],[1,-1],[-4,0],[-1,-2],[2,-9],[-5,-11],[-4,-5],[2,-1],[1,1],[5,-4],[-2,-2],[-4,-2],[-5,-3],[4,-5],[5,2],[-2,-10],[-25,-5],[-10,-3],[-2,2],[-7,0],[0,-8],[-3,-2],[-1,-3],[-6,-2],[-2,1],[0,-4],[-7,-7],[-1,-14],[2,-3],[-12,3],[-4,2],[-9,4],[0,-3],[-12,0],[-12,-5],[-3,4],[-7,-1],[-7,0],[-8,-2],[-1,3],[-4,0],[0,-3],[-7,1],[-12,3],[-1,-4],[-7,-4],[-2,1],[0,-1],[-4,0],[-2,2],[-13,0],[-14,1],[-7,-1],[-2,1],[-5,-1],[-1,2],[-10,6],[-16,7],[-19,6],[-18,-2],[-14,20],[-10,10],[7,11],[-4,7],[-12,5],[-7,2],[-13,1],[-22,4],[-3,2],[-8,1],[-9,-2],[-13,-6],[-8,0],[-9,3],[-1,4],[-7,1],[-25,11],[-6,5],[-16,16],[-6,2],[-18,9],[-8,0],[-24,-8],[-9,3],[-15,2],[-2,-2],[-19,9],[-17,-6],[-11,-2],[-6,4],[-19,-43],[-33,-37],[-8,-3],[-132,-40],[-145,-24],[-9,-2],[-8,-1],[-14,7],[-26,5],[-11,6]],[[6870,7249],[21,16],[3,2],[6,3],[5,7],[-1,2],[-1,5],[-7,5],[-3,8],[-9,14],[-2,11],[-8,22],[-3,12],[-6,6],[-4,4],[-2,8],[-1,7],[-3,9],[-3,3],[-3,2],[-5,2],[7,4],[7,2],[2,5],[6,4],[7,4],[1,9],[3,3],[1,0],[2,33],[36,14],[18,3],[-6,9],[3,12],[-5,2],[0,1],[2,3],[4,0],[0,4],[3,6],[3,2],[-3,4],[-1,5],[-2,4],[-2,1],[-2,-1],[-2,-3],[-1,-1],[-5,0],[-4,4],[-4,-2],[-6,1],[-1,3],[-4,1],[-5,1],[0,2],[-1,2],[-2,5],[-1,0],[-3,1],[-5,0],[-2,0],[-3,3],[-4,2],[-3,0],[-3,1],[-1,2],[1,4],[-2,0],[0,2],[3,3],[-1,1],[-7,-1],[-9,0],[0,6],[-3,0],[-5,1],[-5,9],[0,3],[-2,3],[5,4],[9,4],[6,6],[2,3],[5,3],[8,10],[-3,10],[-4,5],[6,3],[5,6],[1,-1],[5,5],[4,1],[11,8],[1,1],[2,2],[3,1],[0,1],[5,3],[1,2],[8,6],[15,19],[10,2],[2,-3],[7,3],[0,4],[22,15],[12,7],[1,0],[11,9],[4,2],[4,4],[1,4],[-5,5],[7,4],[-5,8],[1,5],[-2,3],[1,3],[-1,1],[-3,7],[-3,0],[0,2],[0,3],[2,7],[8,9],[5,1],[6,5],[5,2],[-1,2],[4,3],[0,2],[5,3],[2,6],[10,0],[1,0],[-7,5],[-3,0],[-5,-1],[-6,-4],[-7,-2],[-3,3],[-15,17],[-5,3],[-6,-1]],[[6987,7833],[-12,-4],[-7,1]],[[6968,7830],[-4,3],[-1,8]],[[6963,7841],[3,5],[2,1],[6,-2],[3,2],[-3,6],[-1,6],[-7,8],[1,2],[4,3],[0,1],[-1,3],[-3,2],[-2,4],[2,3],[6,6],[2,4],[3,-1],[3,-1],[3,-4],[0,-5],[-3,-4],[1,-1],[3,0]],[[6985,7879],[0,-2],[3,-2]],[[6988,7875],[1,0],[3,4],[6,4],[5,2],[2,1],[7,4],[2,0],[7,6],[7,3],[2,2],[3,-3],[5,-1],[3,1],[2,2],[7,4],[39,19],[11,0],[5,1],[4,-1],[4,-6],[0,-2],[2,-2],[-2,-6],[3,0],[2,-2],[6,-2],[8,3],[8,-1],[8,-2],[3,6],[3,4],[12,4],[2,2],[9,2]],[[7177,7921],[3,1],[3,1],[4,0],[4,-3]],[[7191,7920],[6,-3]],[[7197,7917],[7,-3],[3,-1]],[[7207,7913],[8,-1],[4,-1],[1,-1],[8,-3],[8,-3],[1,-4],[3,0],[1,-8],[0,-3],[-2,-1],[1,0],[0,-1],[4,-1],[0,3],[1,1],[3,-4],[7,-2],[4,-2],[1,-2],[8,5],[14,11],[14,7],[2,2],[4,7],[12,7],[1,-1],[3,-1],[8,5],[8,0],[3,-2],[18,-13],[14,7],[6,1],[6,3],[14,11],[-1,4],[8,16],[15,14],[4,0],[0,-1],[3,0],[0,-2],[3,-8],[1,-1],[-2,-5],[-3,-9],[-3,-4],[1,-6],[2,-3],[-1,-5],[2,-2],[5,0],[6,1],[11,0],[7,-2],[2,-1],[3,0],[9,-3],[0,1],[1,1],[1,1],[2,1],[1,0],[0,1],[1,1],[3,-1],[0,2],[3,1],[1,0],[0,1],[4,1],[0,-2],[3,0],[1,2],[2,0],[0,1],[3,0],[1,1],[2,-1],[3,5],[1,0],[1,2],[2,0],[2,1],[2,0],[1,3],[3,1],[5,-1],[5,4],[2,0],[5,-2],[1,2],[3,-1],[1,1],[3,5],[5,0],[2,1],[3,0],[2,1],[3,-8],[7,-6],[2,-9],[2,-1],[3,-1],[1,-3],[2,-1],[2,-3],[3,-2],[1,-3],[3,-3],[3,-5],[8,-6],[7,-10],[3,-2],[10,8],[39,18],[17,0],[67,12],[62,34],[31,0],[62,50],[7,1],[38,11],[5,-2],[6,-1],[-1,6],[-1,1],[-1,4],[8,-1],[3,3],[2,0],[1,2],[6,2],[3,0],[74,7],[10,-1],[0,1],[5,-1],[14,3],[5,-1],[3,-2],[6,-2],[5,0],[1,-2],[-2,-5],[7,-2],[2,1],[3,-3],[12,1],[12,0],[1,-2],[0,1],[1,-1],[9,-2],[4,-3],[3,-1],[4,-3],[23,-3],[23,1],[6,14],[-7,34],[-9,12],[-11,19],[-3,6],[1,4],[-13,12],[-22,10],[42,42],[14,26],[14,18],[0,4],[-3,4],[2,6],[-2,3],[0,2],[4,6],[3,4],[3,6],[-5,6],[0,2],[-1,2],[1,4],[-2,1],[-3,1]],[[8196,8259],[-1,2],[2,0]],[[8197,8261],[2,3]],[[8438,8325],[10,-1],[16,1],[28,11]],[[8525,8351],[6,0],[8,5]],[[8539,8356],[2,-3],[3,-1],[1,-10],[-4,-5],[0,1],[-4,2],[-4,-3],[-4,0]],[[8529,8337],[-5,-2],[-5,-5]],[[8519,8330],[1,-3],[-1,0],[1,-2],[5,-2],[10,0],[8,-3],[4,-6],[10,-34],[-1,-1],[-3,-2],[5,-7],[2,-7],[7,-12],[0,-11],[2,-5],[1,1],[5,-13],[5,-6],[6,-12],[3,-3],[9,-3],[2,-3],[0,-2],[4,-6],[5,-2],[4,-5],[9,-4],[2,-2],[-1,-2],[12,-9],[-7,-8],[-11,-8],[-9,-3],[-16,-4],[-4,-1],[-8,-6],[-4,-4],[-5,-6],[-2,-7],[-1,-13],[5,0],[-1,1],[12,1],[9,-2],[0,-7],[7,0],[3,-7],[12,5],[5,3],[3,-3],[4,-2],[0,-1],[2,1],[2,0],[2,-2],[0,-4],[2,-2],[1,0],[4,4],[2,-1],[1,0],[3,-2],[-1,-1],[3,-3],[2,2],[3,-1],[3,1],[2,1],[3,-2],[-1,-1],[0,-2],[2,0],[2,-2],[3,0],[1,-2],[3,-2],[0,-2],[-4,-2],[3,-1],[0,-7]],[[8670,8062],[5,-7],[5,0],[5,-2]],[[8685,8053],[7,0],[11,0]],[[8703,8053],[8,-3],[4,2],[6,1],[1,3]],[[8722,8056],[2,2],[2,0],[3,-3]],[[8729,8055],[3,-2],[5,1],[0,-1],[3,0],[1,-1],[1,-1],[1,1],[-2,2],[0,1],[2,2],[2,0],[-2,0],[0,2],[3,3],[3,-1],[0,3],[3,1],[0,2],[0,2],[-1,3]],[[8751,8072],[1,1],[2,1]],[[8754,8074],[2,-2],[3,1],[4,0],[4,3],[3,3],[7,1],[2,2],[3,0],[3,-2],[2,-5],[2,-4],[2,0],[5,1],[2,-1],[0,-3],[4,-2],[4,0],[6,6],[4,1],[1,1],[5,-1],[2,1],[3,-3],[-1,-3],[-2,-3],[1,-3],[1,-2],[6,-1],[10,-4],[4,-2],[4,-1],[6,0],[2,-2],[1,0],[0,-2],[2,-1],[1,1],[0,1],[2,0],[1,2],[7,0],[-1,3],[2,0],[-1,2],[1,1],[3,-1],[0,-2],[3,1],[1,-2],[0,-2],[0,-1],[7,3],[4,0],[3,0],[3,-2],[8,0],[1,-3],[1,0],[4,2],[2,-1],[2,0],[4,2],[3,-2],[1,-1],[4,3],[0,1],[1,1],[4,-1]],[[8932,8052],[3,2],[2,-1]],[[8937,8053],[1,-3],[2,-2]],[[8940,8048],[4,-1],[-1,3]],[[8943,8050],[8,0],[6,-1],[1,0],[1,1]],[[8959,8050],[3,-1],[1,1]],[[8963,8050],[-1,1],[-2,0],[-3,2]],[[8957,8053],[1,2],[2,0],[-1,2],[2,0],[1,-1],[1,-1],[4,3],[4,0],[3,-1],[1,1],[4,0],[1,1],[-3,1],[-2,0],[-2,1],[-2,-1],[-1,3],[2,1],[1,-1]],[[8973,8063],[2,1],[3,4]],[[8978,8068],[4,4],[0,1],[-4,-1],[1,3],[3,0],[2,-1],[-1,1],[1,3],[3,0],[1,-2],[1,2],[2,0],[2,1],[0,1],[1,0],[-1,-3],[1,-3],[-1,-1],[1,-1],[-3,0],[0,-1]],[[8991,8071],[5,0],[2,2],[1,2]],[[8999,8075],[3,-1],[1,0],[-1,2]],[[9002,8076],[3,2],[1,-1],[3,0],[0,-4]],[[9009,8073],[1,0],[1,-2],[2,-1],[3,0],[1,3],[6,1],[0,-1],[-2,-1],[-1,-2],[3,-3],[3,0],[1,-1],[2,0],[3,2],[0,1]],[[9032,8069],[1,1],[0,-4]],[[9033,8066],[1,0],[2,1],[0,-2]],[[9036,8065],[2,-1],[0,-2],[0,-2],[3,-2],[3,0],[-2,-6]],[[9042,8052],[1,-3]],[[9043,8049],[10,-5]],[[9053,8044],[6,0],[0,-3],[1,-1],[5,0],[1,2],[6,-1],[2,-1],[0,-2],[-3,-5],[-1,-3],[1,0],[2,-1],[0,-1],[-1,-1],[-1,-1],[2,-1],[1,-1],[3,1],[0,-1],[1,-1],[3,1],[2,-1],[2,-4],[3,-3],[-2,-2],[3,-2],[2,0],[1,1],[3,-1],[0,1],[1,0],[1,-1],[5,-2],[7,1],[1,2],[1,0],[2,-1],[3,0],[4,-5],[10,-4]],[[9130,8003],[4,-6],[4,-2],[4,2]],[[9142,7997],[4,7],[2,1]],[[9148,8005],[5,1],[5,0],[2,0],[2,2],[4,5]],[[9166,8013],[0,2],[-3,2],[-9,0],[-3,0],[-2,2],[-1,2],[1,7],[2,3],[4,2],[4,0],[10,-11],[3,-1],[4,2],[4,7]],[[9180,8030],[1,1],[2,1],[7,1],[1,1],[0,2]],[[9191,8036],[-6,3],[-4,0],[-8,0],[-3,1],[-2,2],[1,3],[4,5],[3,1],[8,0],[2,2],[1,4],[-1,2],[-2,2],[-9,-2],[-3,0],[-2,1],[-1,2],[0,4],[-4,6],[-1,2],[3,2],[11,1],[8,-4],[3,1],[0,3]],[[9189,8077],[-2,4],[0,4],[-5,5]],[[9182,8090],[1,4],[3,1],[4,-1]],[[9190,8094],[7,-3],[2,0],[2,0],[1,2],[1,3]],[[9203,8096],[6,2],[4,0],[4,-2],[0,-2],[9,-4],[-1,-2],[-2,-2],[0,-2],[0,-3],[4,-5],[-2,-2],[0,-2],[-2,-5],[-6,-6],[-1,-2],[-3,-2],[0,-3],[-3,-3],[-2,-3],[0,-4],[1,-3],[-1,-4],[3,-4],[-1,-1],[-3,-7],[0,-3],[-1,-3],[9,-10],[0,-5],[26,-13],[4,2],[1,3],[10,5],[6,-1],[8,-6],[-1,-3],[1,-2],[-1,-1],[3,-4],[0,-1],[4,-2],[3,-4],[1,0],[0,-1],[1,0],[1,-2],[2,0],[1,-3],[1,-1],[0,-2],[4,-6],[1,-1],[1,0],[1,-1],[-3,-3],[-3,1],[-5,0],[0,-9],[1,-6],[3,-2],[3,-8],[2,0],[1,-11],[1,-1],[2,0],[1,-4],[3,-2],[0,-5],[5,-9],[0,-2],[-4,-3],[2,-1],[-2,-2],[4,0],[1,-1],[2,-1],[3,1],[1,-1],[3,-1],[1,-1],[-1,-1],[1,0],[1,1],[3,-1],[6,-3],[4,0],[0,-3],[2,0],[0,-2],[2,-2],[2,1],[1,-2],[5,-1],[3,0],[0,-1],[2,0],[0,1],[5,0],[0,1],[5,1],[1,2],[6,-1],[1,-1],[4,0],[3,-2],[3,1],[1,-2],[2,1],[1,-1],[-1,-1],[1,0],[3,-1],[1,1],[0,-2],[3,1],[1,-3],[2,0],[-1,2],[4,0],[6,0],[1,-1],[-1,-2],[0,-2],[5,0],[2,0],[3,0],[1,1],[2,-2],[3,1],[6,-1],[2,-1],[-1,-2],[0,-1],[2,-1],[-1,0],[1,-1],[0,-1],[-1,-1],[2,-2],[2,1],[1,3],[1,1],[1,-1],[1,2],[2,1],[1,-1],[0,-1],[1,0],[0,1],[2,-2],[0,-1],[3,-2],[3,0],[1,-1],[2,2],[0,2],[1,0],[1,1],[0,1],[-2,-1],[2,4],[3,0],[1,2],[3,-2],[2,0],[1,-3],[4,0],[5,1],[1,1],[-1,3],[0,2],[-1,0],[0,-1],[-2,2],[-4,0],[-1,2],[1,2],[7,4],[0,1],[2,1],[-1,1],[3,2],[0,1],[1,0],[3,2],[2,1],[1,-1],[5,-1],[5,-6],[2,-1],[4,-1],[0,2],[2,0],[-1,1],[2,1],[-1,2],[2,1],[0,3],[1,0],[-1,-1],[1,-1],[1,1],[5,3],[1,-1],[3,1],[1,-3],[-2,0],[1,-1],[-1,0],[-2,0],[2,-4],[-1,0],[-1,-2],[3,-2],[2,1],[-1,-1],[3,-2],[6,2],[-1,1],[4,0],[3,2],[-2,1],[1,1],[2,-2],[2,1],[0,-1],[4,0],[4,2],[1,-2],[2,0],[0,-2],[1,0],[2,1],[2,-1],[0,-2],[1,-1],[2,0],[1,3],[3,0],[1,1],[2,-2],[1,1],[0,1],[-2,0],[0,1],[2,2],[1,0],[2,-2],[4,1],[1,-2],[2,-1],[1,1],[1,-2],[1,0],[3,-1],[-1,-1],[2,-2],[0,-1],[0,-1],[1,1],[0,-1],[4,-2],[0,-1],[0,-1],[2,0],[-1,-2],[3,-2],[3,0],[0,-3],[-1,-1],[0,-2],[-2,-1],[1,-4],[-1,-2],[1,-2],[-1,-2],[4,-2],[1,-2],[2,-1],[5,-2],[4,1],[14,0],[11,3],[8,0],[2,-1],[1,1],[2,-1],[1,1],[3,-1],[2,2],[8,0],[3,-2],[4,-1],[3,0],[2,-2],[1,-2],[1,0],[1,1],[1,-2],[3,0],[5,-3],[1,0],[1,-1],[1,0],[0,2],[4,-2],[3,2],[1,-2],[3,-2],[7,2],[2,-2],[4,1],[4,-1],[0,1],[1,-1],[2,0],[0,-1],[1,-1],[2,1],[2,-2],[-1,-2],[-1,0],[0,-2],[1,-1],[1,-1],[-2,-1],[3,-2],[0,-2],[-2,0],[-1,-1],[1,-2],[-1,0],[-2,-3],[-6,-2],[-1,-2],[2,-2],[-3,-3],[0,-1],[-3,-1],[0,1],[-3,-1],[2,-2],[-3,-1],[1,-2],[-2,0],[2,-2],[-1,-2],[1,-2],[2,-1],[1,-3],[-1,-1],[0,-1],[-1,-1],[1,-1],[-5,-6],[-3,-6],[-3,-2],[-5,-6],[3,-5],[6,-7],[5,-1],[13,-2],[3,-2],[2,-6],[1,-2],[-1,-7],[-5,-7],[1,-6],[2,-3],[0,-4],[3,-4],[5,-2],[2,-1],[2,-4],[0,-3],[-2,-1],[-2,-3],[-4,-5],[-6,-5],[1,-3],[-1,-1],[2,-5],[-1,-5],[2,-8],[-1,-4],[-3,-6],[4,-3],[0,-3],[3,1],[1,-1],[2,-26],[-4,-2],[-2,-2],[2,-8],[0,-11],[-2,-7],[3,-8],[0,-7],[2,-3],[0,-4],[-3,-10],[-5,-8],[-2,-5],[-16,-1],[-42,-3],[-43,1],[-76,-61],[-11,-11],[-1,2],[-10,-6],[-1,-2],[-43,-36],[1,-2],[1,-7],[-5,-7],[-1,-3],[-6,-3],[-2,0],[-1,-1],[-8,-4],[-6,-2],[-2,2],[0,2],[1,2],[-3,1],[0,4],[-2,6],[0,5],[-2,3],[-1,4],[-1,1],[-3,3],[-2,5],[0,1],[-2,2],[-9,14],[-11,5],[-3,3],[-5,3],[-2,3],[-1,4],[3,8],[0,4],[0,7],[-3,4],[-4,4],[-4,1],[-8,7],[-2,1],[-4,6],[-3,2],[-5,-1],[-5,4],[1,2],[-1,1],[-2,4],[-4,7],[-6,6],[-34,29],[1,5],[-2,1],[-2,0],[-1,5],[-10,0],[0,3],[-2,4],[-3,1],[-2,5],[-1,2],[0,1],[-4,8],[-1,5],[1,2],[4,3],[1,14],[-3,3],[-5,-2],[-3,0],[-14,8],[-5,5],[-3,1],[-3,-1],[-5,-2],[-4,-1],[-3,-1],[-3,0],[-4,-1],[-5,1],[-3,1],[-2,-1],[-8,2],[-3,0],[0,1],[-2,0],[-1,0],[-9,0],[-2,2],[-10,2],[-3,-2],[-8,-1],[-7,2],[-11,1],[-7,3],[-10,0],[-3,2],[-3,0],[-3,-1],[-8,2],[-9,9],[-5,20],[-6,-5],[-2,-4],[-3,-1],[-4,0],[-3,3],[-4,0],[-6,-1],[-6,0],[-1,-1],[-3,-1],[-2,-1],[-1,0],[-2,-3],[-1,0],[-1,-1],[-2,-1],[1,-1],[-1,-1],[-2,-2],[-2,-1],[-2,-8],[-1,-1],[-2,-8],[-3,-1],[1,-1],[-3,-2],[-5,0],[-6,-6],[-6,-3],[-3,-1],[-7,2],[-10,1],[-3,-1],[-9,3],[-6,1],[-2,2],[-6,-1],[-9,-2],[-7,-3],[-1,0],[-6,0],[-1,-2],[-2,0],[0,-15],[-6,-1],[-1,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-2,1],[0,-1],[-2,2],[0,1],[-2,1],[0,1],[-7,3],[0,1],[-1,0],[-2,2],[-3,1],[0,1],[-1,-1],[-1,2],[-2,-1],[0,1],[-1,0],[0,1],[-3,1],[-2,0],[0,1],[-2,0],[-3,1],[-3,1],[-1,1],[-9,6],[-2,0],[-5,3],[-4,1],[-2,2],[-1,-1],[-1,1],[-2,0],[-2,1],[-1,-1],[-1,4],[-1,-1],[0,1],[-1,-1],[0,1],[-2,1],[-1,-1],[-2,0],[-3,4],[-2,0],[-1,1],[-3,0],[1,1],[-2,1],[0,1],[-3,0],[0,1],[-3,1],[-1,1],[-2,0],[0,1],[-2,1],[-2,2],[-3,2],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[0,1],[-1,0],[-3,1],[1,1],[-2,1],[0,4],[-3,0],[0,2],[-2,3],[-4,1],[0,4],[2,1],[-2,2],[2,2],[0,1],[-3,1],[-5,3],[-3,-2],[-3,0],[-2,2],[0,5],[-2,2],[-2,0],[0,2],[-6,4],[-2,-1],[-3,0],[-1,-1],[-1,3],[-3,-1],[0,1],[-2,1],[0,2],[-3,3],[4,2],[2,5],[7,4],[3,7],[-7,6],[-6,8],[-7,6],[-2,2],[-2,1],[-10,-9],[-7,-9],[-1,-4],[1,-8],[-1,-4],[-3,-4],[-2,-3],[-2,-5],[-1,-1],[-12,-3],[-3,0],[-9,2],[-5,3],[-3,0],[-4,-1],[-5,-5],[-4,-2],[-14,1],[-11,0],[-5,-2],[-6,0],[-5,-2],[-1,-2],[-11,-1],[-6,-3],[-11,-32],[-3,-5],[-3,-2],[-1,0],[-5,0],[-5,2],[1,-4],[0,-3],[-1,-1],[-5,0],[-6,-5],[-1,-1],[4,-4],[-2,-1],[-5,-1],[1,-6],[-5,-1],[-5,-2],[-2,-2],[2,-3],[0,-3],[2,-2],[-3,-4],[-2,-2],[-5,-6],[1,-3],[-1,-2],[1,-1],[2,0],[3,-3],[-3,-1],[-7,-1],[-3,1],[-3,3],[-1,-1],[-3,-5],[1,-6],[-4,-3],[-4,0],[0,-7],[-1,-5],[-4,-2],[-5,-2],[-5,-5],[-10,-4],[-13,-4],[-4,2],[-4,0],[-6,4],[-2,0],[-2,-1],[-2,-4],[-3,-1],[-5,1],[-11,6],[-4,0],[-8,-1],[-6,-5],[-4,1],[-9,5],[-4,0],[-2,-1],[-6,-11],[-3,-2],[-8,-1],[-16,3],[-10,-4],[-7,0],[-6,-3],[-7,3],[-9,1],[-7,2],[-7,0],[-2,3],[-3,6],[-10,5],[-9,-1],[-8,2],[-5,0],[-6,3],[-15,-11],[-7,-9],[-3,-8],[-2,-3],[-11,-12],[-7,-4],[-2,-2],[-5,-9],[-1,-6],[-8,-18],[-3,-10],[-2,-11],[3,-14],[-4,-3],[0,-2],[-4,-4],[-1,-6],[-7,-18],[8,-13],[4,-8],[0,-5],[-2,-2],[-4,3],[-6,0],[-2,2],[-10,1],[-7,1],[-5,0],[-5,-3],[-6,-1],[-2,-1],[-13,0],[-11,4],[-5,-1],[-11,0],[-8,-3],[-12,-5],[-7,-2],[-7,-7],[-4,-7],[-2,1]],[[6137,7876],[-18,-33],[-25,23]],[[5836,9440],[33,-24],[61,-73],[59,-29],[428,9],[150,28],[208,80]],[[6775,9431],[5,-6],[4,-4],[3,-1],[5,-1],[11,-7],[3,-4],[0,-2],[4,-7],[9,-11],[-1,-1],[-3,-6],[0,-6],[-3,-3],[-13,-3],[-2,2],[-1,5],[-3,1],[-2,-1],[-3,-3],[-5,-1],[-2,-2],[0,-6],[3,-1],[1,-2],[-3,-2],[1,-1],[3,-2],[3,1],[1,-1],[-3,-8],[-4,-2],[-1,-3],[1,-6],[4,-3],[-28,-5],[6,-22],[-25,-1],[1,-5],[-5,2],[-1,-5],[-3,1],[-8,-4],[-6,-19],[-3,-6],[-1,-8],[-7,-15],[2,-2],[-1,-1],[-2,-3],[6,-1],[-5,-14],[0,-12],[15,-13],[13,-4],[1,-1],[-1,-4],[-4,-6],[-1,-4],[1,-2],[5,-3],[2,-1],[0,-3],[-3,-6],[2,-4],[-2,-4],[-4,1],[-1,-1],[-11,3],[-7,4],[-6,-7],[-2,1],[-10,-4],[5,-3],[4,-1],[0,-4],[-1,-1],[-5,0],[-3,-6],[-3,-3],[-10,3],[1,-15],[7,-3],[8,-11],[1,-4]],[[6698,9108],[3,-1],[1,-10],[4,-11],[4,-1]],[[6710,9085],[6,-3],[6,2]],[[6722,9084],[5,1]],[[6727,9085],[6,-3],[6,-1]],[[6739,9081],[10,-4]],[[6749,9077],[5,0],[2,1],[3,2],[0,6],[1,1]],[[6760,9087],[5,4],[3,1],[3,-1],[13,-10],[5,-1],[2,-1],[2,-2],[-2,-4],[1,-2],[21,-5],[4,-5],[14,-7],[4,-6],[22,-11],[6,-1],[5,-2],[2,-5],[-3,-7],[9,-7],[11,-3],[14,-7],[14,-6],[11,-7],[8,-3],[0,-3],[-3,-1],[0,-2],[3,-6],[-1,-10],[3,-3],[2,-1],[0,-1],[-3,-4],[-1,-5],[-1,-3],[-3,-2],[-5,-2],[2,-4],[0,-3],[2,-1],[-2,-1],[1,-2],[-1,-3],[-1,-5],[-2,-1],[0,-4],[-2,-1],[-1,-5],[-2,-1],[0,-2],[-2,-1],[0,-2],[1,-1],[-1,-2],[1,-4],[-3,-2],[3,-2],[2,-3],[1,0],[1,-3],[3,-1],[1,-1],[0,-3],[-3,0],[-1,-3],[1,-3],[0,-1],[1,-1],[0,-2],[2,-4],[-3,-1],[-2,-5],[-3,-12],[-4,-6],[-4,-3],[4,-2],[5,-1],[-4,-8],[-4,-6],[-3,-12],[1,-5],[0,-2],[5,-2],[-1,-1],[0,-3],[-1,-1],[9,-4],[-6,-6],[-3,-4],[-2,-4],[1,-5],[-4,-3],[-4,-3],[-1,-4],[9,-2],[-3,-3],[6,-1],[-4,-3],[0,-8],[6,-2],[-1,-3],[4,-1],[-4,-6],[6,-3],[6,-2],[0,-3],[5,-2],[1,0],[11,-4],[0,-2],[5,-8],[0,-2],[4,-1],[-3,-1]],[[6950,8714],[2,-3],[4,-1]],[[6956,8710],[4,2],[8,5],[7,-4],[9,-2],[1,1],[6,-6],[8,-5],[1,-1],[0,-1],[3,0],[12,-3],[1,2],[31,-3],[0,-6],[18,-10],[4,0],[1,1],[2,1],[7,5],[8,4],[11,8],[1,8],[7,19],[9,-1],[1,-2],[10,5],[1,-6],[2,1],[1,1],[0,-1],[2,0],[1,-3],[4,-4],[3,2],[2,-6],[2,1],[9,-4],[1,1],[3,2],[4,4],[10,12],[15,-6],[16,30],[1,0],[3,3],[4,0],[6,4],[1,4],[2,1],[3,1],[1,-1],[3,1],[2,0],[3,0],[4,0],[8,1],[0,1],[5,2],[5,-1],[4,2],[13,-2],[7,-3],[2,-1],[4,0],[15,13],[7,2],[6,9],[6,13],[8,0],[-6,-5],[-1,-2],[1,-1],[2,1],[1,0],[0,-2],[-3,-3],[7,-4],[-2,-3],[1,-2],[-2,-2],[-2,-1],[0,-6],[-1,-1],[-2,-1],[1,-3],[-2,-5],[1,-2],[0,-4],[-4,-1],[0,-2],[-4,-2],[-3,-5],[1,-7],[-2,-4],[0,-3],[10,-6],[7,2],[2,5],[9,-11],[-1,-1],[1,-1],[4,-2],[1,1],[0,-1],[0,-1],[1,-2],[2,2],[4,-2],[-2,-2],[1,-1],[0,-4],[2,-4],[4,-5],[-3,-2],[3,-10],[-1,-10],[-3,-9],[1,-8],[-5,-6],[-1,-12],[-4,-7],[-1,-5],[-3,-1],[-5,-3],[-6,1],[-1,-3],[-4,-1],[-3,-3],[-5,-6],[-1,-4],[1,-2],[-1,-3],[0,-2],[-3,-4],[0,-3],[-3,-2],[-4,-4],[-4,-2],[-8,-4],[-4,-1],[-1,-1],[-4,-9],[0,-9],[-6,-4],[-8,0],[-7,-4],[-3,0],[-2,1],[-2,-1],[-3,-13],[-1,-1],[0,-1],[-4,-1],[-3,-5],[-2,0],[-10,-2],[-5,0],[-6,2],[-1,-5],[6,-1],[6,-5],[-12,-9],[-2,-2],[-1,-6],[3,-6],[12,-10],[16,-17],[10,11],[1,5],[7,3],[4,3],[7,1],[3,-4],[20,-4],[4,-1],[1,-1],[2,0],[8,2],[4,-1],[4,-4],[2,3],[7,0],[-2,-3],[6,-5],[8,8],[16,15],[8,4],[5,2],[6,3],[3,-4],[2,-6],[1,-3],[-1,-1],[-1,-3],[4,-10],[0,-6],[1,1],[1,-2],[2,-4],[3,-2],[0,-5],[11,1],[-1,1],[2,0],[5,0],[2,-1],[3,-4],[7,1],[9,-2]],[[7427,8460],[17,7],[4,4],[10,6]],[[7458,8477],[5,4],[-3,5],[-5,12],[-7,14],[0,5],[2,5],[7,5],[7,1],[18,-1],[19,2],[3,0],[6,1],[3,-1],[-2,6],[1,1],[2,4],[4,4],[2,2],[2,1],[0,1],[1,1],[-4,3],[-1,2],[-3,0],[-12,10],[-3,4],[-4,-2],[-2,10],[-5,11],[-6,8],[-9,4],[-2,1],[-1,3],[-1,3],[2,3],[0,5],[-5,2],[-6,5],[-3,5],[-19,19],[-6,21],[6,2],[10,1],[1,1],[16,4],[11,4],[5,1],[4,3],[-7,11],[-3,8],[4,1],[-2,7],[1,-2],[4,0],[3,-1],[3,1],[3,2],[7,2],[4,7],[7,5],[8,3],[8,5],[4,2],[8,0],[7,1],[-4,4],[4,1],[-2,1],[-1,2],[-1,-1],[-7,2],[-3,0],[-3,3],[-4,9],[-2,13],[0,2],[6,0],[4,-1],[1,0],[8,1],[9,1],[15,-2],[8,2],[2,0],[10,8],[3,0],[10,4],[16,3],[6,4],[6,2],[13,7]],[[7639,8799],[8,-8],[4,-5],[0,-2],[-4,-5],[0,-3],[-12,-6],[0,-5],[2,-5],[-1,-4],[4,-5],[-7,-15],[-4,-3],[2,-5],[3,0],[11,-8],[5,-8],[3,-2],[7,-2],[6,-9],[-2,-9],[3,-2],[-1,-7],[-1,-2],[11,-3],[12,-5],[6,2],[18,-4]],[[7712,8669],[11,-5],[19,-6]],[[7742,8658],[7,0],[1,-2],[5,-2],[5,-1],[7,0],[6,3]],[[7773,8656],[6,1],[3,2],[1,1]],[[7783,8660],[3,1],[14,2],[9,-1],[3,2],[6,1],[8,-2],[3,0],[2,-1],[1,-2]],[[7832,8660],[5,-3],[2,1]],[[7839,8658],[5,2],[2,-1],[4,1],[1,2],[3,0],[6,2]],[[7860,8664],[4,0],[4,0],[5,3]],[[7873,8667],[8,1],[3,2],[5,2],[4,4],[2,5],[-1,2],[4,5],[3,1],[1,1],[4,-2],[4,1],[0,-2],[1,0],[6,-2],[4,3],[4,-6],[22,3],[5,-10],[-1,-2],[-2,-2],[0,-2]],[[7949,8669],[1,0],[4,-2]],[[7954,8667],[6,1],[0,-1],[7,1],[8,0],[22,-5],[2,-1],[-3,-6],[-1,-6],[-1,-1],[3,-7],[-3,-1],[-2,-5],[2,-4],[9,-9],[-1,-1],[-3,0],[-3,-1],[0,-8],[3,0],[-13,-10],[9,-27],[5,-2],[-3,-4],[7,-21],[7,-5],[0,-14],[13,-18],[-1,-20],[-3,-16],[7,-7],[4,-7]],[[8031,8462],[6,-14],[9,-10]],[[8197,8262],[0,-1]],[[8197,8261],[-2,0],[1,-2]],[[7207,7913],[-5,2],[-5,2]],[[7191,7920],[-5,3],[-4,0],[-5,-2]],[[6988,7875],[-3,1],[0,3]],[[6963,7841],[1,-7]],[[6964,7834],[-1,0],[-1,1],[-4,-1],[-8,-7],[-6,-1],[-2,-1],[-12,-11],[-1,0],[-3,-4],[-5,-3],[-2,0],[-1,-1],[0,-1],[-5,-2],[-1,-1],[-3,-5],[-3,-4],[-12,-7],[-8,-7],[-9,-9],[-3,-1],[0,-3],[-4,-8],[-5,0],[-1,1],[-5,2],[-9,3],[-3,1],[-1,2],[-2,2],[-5,-4],[-5,-3],[-9,-3],[-2,0],[-6,-3],[-2,-3],[-6,-1],[-2,-2],[-4,-2],[-3,-4],[-5,-5],[-6,-1],[-4,0],[-3,1],[-7,2],[-2,5],[1,6],[2,3],[-1,3],[-3,1],[-11,-5],[-6,-1],[-7,1],[1,0],[-30,11],[-16,2],[-24,12],[-9,-4],[-13,-8],[-12,-9],[-5,-6],[-29,4],[-28,-7],[-27,11],[-14,0],[-12,-7],[-36,-5],[-30,17],[-3,7],[-1,5],[-11,14],[-8,14],[-3,11],[-3,4],[-1,9]],[[6434,7829],[-3,7],[-1,3],[1,2],[0,5]],[[6431,7846],[0,8],[-8,2],[-3,0],[-2,1],[8,8],[-4,6],[0,2],[-1,1],[1,1],[0,1],[-19,16],[-8,-6],[-5,2],[3,4],[4,6],[1,5],[5,3],[4,3],[4,2],[4,7],[2,1],[-1,2],[3,2],[4,12],[3,3],[0,1],[2,5],[-2,3],[0,2],[6,7],[-1,8],[-4,0],[-2,0],[-3,0],[-6,1],[-5,-2],[-6,4],[-1,-1],[-9,-2],[-5,-2],[-9,0],[-4,-2],[-1,1],[-1,1],[-2,1],[-2,-1],[-1,-3],[-6,-2],[-2,-2],[-2,1],[-2,-1],[-2,2],[-3,1],[-6,-3],[-2,-2],[0,-1],[-4,0],[0,-1],[-4,0],[-5,-3],[-4,-1],[-7,-4],[-9,-2],[-4,-1],[0,1],[-2,2],[-7,2],[-5,-3],[-10,-4],[-14,-7],[-15,-15],[-8,-6],[-23,-10],[-7,-5],[-12,-3],[-19,-3],[-30,4],[-11,-8],[-8,-9]],[[6990,2152],[12,-8],[0,-4],[2,-2],[7,-5],[0,-2],[-2,-1]],[[7009,2130],[0,-3],[6,-6],[2,-6]],[[7015,2111],[-4,-2],[0,-5]],[[7011,2104],[-2,-6],[6,-20],[-3,-10],[-1,-6],[4,-6],[5,-10]],[[7020,2046],[4,-16],[3,-16],[6,-9]],[[7033,2005],[6,-5],[7,-8],[9,4],[2,-1],[0,-2],[-4,-5],[0,-6],[7,-4],[1,-6],[2,-4],[7,-5],[6,-3],[3,-2],[-2,-10],[-4,-9]],[[7073,1939],[2,-6],[6,-8]],[[7081,1925],[9,-9],[5,-4],[9,-2],[2,-1],[3,-11],[4,-7],[-1,-3],[-2,-5]],[[7110,1883],[6,-3],[3,-6]],[[7119,1874],[-1,-1],[1,-3],[-1,-1],[-1,0],[-1,0],[-1,-3],[-10,0],[2,-4],[6,-4],[-1,-1],[-6,-2],[-2,2],[-2,0],[-4,-3],[1,-1],[-2,-1],[-1,1],[-3,0],[-7,-5],[9,-7],[-2,-3],[-1,0],[-2,-4],[-2,1],[-4,0],[-3,-1],[-3,-7],[-3,0],[-1,1],[-2,-1],[-2,1],[-5,-1],[-4,2],[-4,0],[-1,1],[-1,1],[-2,2],[-4,2],[-2,1],[-1,-1],[-5,4],[-5,8],[-8,-1],[-12,1],[-23,-1],[-11,-3],[10,-7],[29,-23],[22,-14],[7,-11],[-3,-3],[11,-10],[29,-21],[6,-6],[13,-9],[7,-11],[13,-10],[5,-5],[5,-8],[-3,-1],[23,-44],[5,-8],[21,-19],[0,-5],[3,3],[38,-9],[12,-7],[21,-20],[17,-26],[11,-15]],[[7284,1554],[26,-27],[4,-6],[6,-9]],[[7320,1512],[3,-11],[4,-8],[2,-7],[14,-30],[2,-8],[3,-1],[6,-7],[8,-5],[9,-8],[21,-28],[1,-9],[3,-4],[11,-6],[21,-37]],[[7428,1343],[12,-15],[7,-7]],[[7447,1321],[6,0],[8,-5],[7,-1],[7,-9],[2,14],[4,3],[4,-3],[0,2],[2,2],[3,0],[0,-2],[4,0],[0,2],[11,0],[3,-6],[-1,-7],[2,-5],[0,-2],[-2,-3],[-3,-2],[-4,-4],[-2,-5],[8,-4]],[[7506,1286],[-4,-14],[4,-2],[5,-6]],[[7547,1125],[9,-22]],[[7556,1103],[-29,0],[-1,-7],[-2,-2],[-12,3],[-3,5],[-6,-2],[-10,3],[-6,-1],[-6,-2],[-1,1],[-2,-1],[-3,1],[-7,0],[-5,2],[-4,-1],[-2,-3],[-4,0],[-2,1],[5,6],[13,26],[-3,1],[-2,-3],[-5,-4],[-6,-9],[-10,-6],[-4,3],[0,1],[-2,0],[-14,9],[-8,6],[0,5],[-4,3],[-14,-7],[-2,4],[-6,5],[-5,6],[-10,6],[-4,5],[-1,3],[-2,-2],[-2,1],[-2,0],[-2,-2],[-2,1],[-1,-1],[-10,-1],[-4,-3],[1,5],[-1,0],[-6,2],[2,5],[6,5],[-3,2],[-8,11],[-2,-1],[-1,1],[-6,-7],[-4,-3],[-3,-2],[-9,7],[-7,-7],[-3,-3],[-4,6],[-8,7],[-3,1],[-15,-10],[3,-3],[-14,-9]],[[7259,1160],[-13,10]],[[7246,1170],[-1,1],[0,3],[-4,0],[-5,2],[-6,4],[-10,4],[-1,-2],[-7,2],[-1,4],[-11,14],[-18,17],[0,1],[-21,27],[-10,15],[-6,12],[1,1],[-28,38],[1,0],[1,1],[-2,2],[-21,28],[-5,-2],[-22,28],[-4,3],[4,4],[-3,3],[-29,18],[-11,8],[-9,8],[-7,8],[-5,-1],[-3,-4],[-7,3],[-3,0],[-10,6],[-8,2],[-15,0],[-14,1],[-3,2],[-17,6],[-5,5],[-6,3],[-9,2],[-10,6],[-18,6],[-7,5],[-19,7],[-3,5],[-40,37],[-30,33],[-4,-2],[-3,5],[-8,2],[-20,3],[-12,0],[-1,1],[-1,4],[-1,0],[-2,-4],[-4,4],[-10,6],[-12,6],[-5,3],[-1,3],[-4,1],[-2,4],[-2,-1],[-3,3],[-2,1],[1,2],[-4,-1],[-2,2],[-4,0],[-1,2],[-3,2],[-7,2],[-2,0],[0,2],[-1,0],[-5,1],[-9,-4],[-4,0],[-5,1],[-3,-1],[-9,1],[-3,2],[-1,0],[-3,1],[-8,2],[-9,0],[-12,3],[-7,0],[-1,-1],[-83,9]],[[6497,1610],[13,19],[-1,21],[-3,8],[-2,24],[-5,31],[-36,68],[4,5],[-6,8],[-5,4],[-2,3]],[[6454,1801],[8,7],[4,2]],[[6466,1810],[2,2],[0,1]],[[7639,8799],[-7,9],[-4,-1],[-3,2],[0,2],[0,1],[-1,2],[-12,14],[-4,2],[-10,12],[-2,0],[-3,5],[-22,2],[-15,9],[-4,1],[-2,4],[-5,1],[-6,4],[-3,3],[-7,4],[-6,8],[-1,3],[-4,2],[-2,2],[8,11],[8,6],[5,4],[1,7],[3,5],[0,3],[-1,0],[-10,2],[-7,-9],[-9,3],[-5,0],[-16,14],[2,1],[-4,1],[-6,31],[-7,12],[-5,6],[3,3],[8,-1],[3,0],[7,3],[11,14],[7,7],[8,6],[3,4],[7,2],[-1,2],[-3,3],[3,2],[1,3],[2,0],[0,2],[5,3],[0,3],[4,5],[-10,0],[-2,-1],[-3,0],[-8,1],[-3,0],[1,0],[-1,1],[-1,5],[0,5],[-16,3],[-6,0],[-6,2],[-14,1],[-12,2],[-5,1],[-11,0],[-14,-2],[0,3],[3,2],[1,3],[0,5],[-2,1],[-1,0],[-4,4],[-1,0],[-1,1],[-3,2],[0,2],[-2,0],[-1,2],[-3,1],[-3,4],[1,1],[-3,2],[0,3],[-4,3],[-3,0],[-1,2],[-2,1],[-2,4],[-3,4],[-5,2],[-1,1],[-4,3],[-5,3],[-8,4],[-2,3],[2,2],[-1,5],[-7,4],[-2,-1],[-4,1],[-23,3],[-8,0],[-3,1],[8,4],[6,4],[30,25],[15,14],[19,15],[31,22],[12,15],[-2,2],[-2,3],[-1,0],[-4,4],[-6,3],[-5,4],[-3,1],[-9,1],[-2,0],[-6,1],[-3,2],[-1,2],[-2,2],[-2,-2],[-1,0],[-2,5],[-6,2],[-2,1],[0,4],[-4,3],[-4,2],[-22,1],[-2,1],[-12,10],[1,3],[-4,12],[-2,0],[0,5],[5,3],[4,10],[1,7],[-2,4],[2,4],[-2,6],[3,6],[-1,3],[-1,2],[-6,1],[-2,0],[-3,1],[-12,3],[1,-2],[-2,-16],[-9,-5],[-8,-2],[-7,-2],[-12,0],[-12,-5],[-6,3],[3,4],[1,0],[0,2],[0,4],[-4,6],[-2,0],[-6,-4],[-3,1],[-3,7],[-5,6],[1,4],[0,6],[-2,3],[0,4],[-3,-1],[-5,-1],[-8,1],[-1,-3],[-3,-1],[-7,2],[-5,-1],[-1,1],[-4,0],[-1,2],[-1,3],[-7,1],[2,8],[2,1],[1,4],[-4,7],[17,1],[-1,7],[-4,5],[14,2],[-3,3],[6,3],[-3,2],[25,17],[-3,9],[-2,-1],[-10,-2],[-3,-1],[-9,-2],[-2,0],[-10,-4],[-10,-3],[4,-8],[-19,-9],[-2,1],[-3,10],[-2,1],[-1,3],[-3,4],[-1,1],[3,3],[0,2],[2,5],[0,3],[-3,6],[2,2],[3,2],[3,0],[4,4],[-2,1],[0,2],[1,1],[1,11],[4,5],[0,4],[9,14],[6,1],[3,-8],[5,-5],[-3,-5],[0,-4],[8,2],[6,4],[12,5],[8,6],[7,2],[8,4],[5,1],[4,9],[-1,2],[-6,12],[5,1],[7,1],[4,2],[-1,2],[4,6],[2,1],[5,-3],[1,1],[3,-2],[-1,1],[4,4],[-1,2],[3,6],[0,8],[3,-1],[0,5],[-2,-1],[-1,1],[-2,0],[0,2],[5,1],[-1,3],[-1,10],[-2,0],[-1,2],[3,0],[0,1],[-2,4],[-2,2],[-2,6],[31,5],[-9,23]],[[7320,9628],[119,4],[75,-30],[-3,-4],[-2,-12],[6,-6],[41,-25],[99,-57],[18,12],[9,-13],[-3,-3],[2,-5],[-5,-6],[5,6],[14,-10],[0,-1],[10,-9],[-1,-1],[2,0],[31,-29],[220,-112],[49,-43],[10,-7],[25,-17],[3,-11],[5,-6],[11,-4],[20,-13],[35,-24],[21,-21],[29,-5],[11,-4],[4,-11],[6,-5],[0,-6],[56,-33],[3,-11],[4,-6],[18,-8],[13,-6],[9,-4],[12,-4],[14,-4],[19,-3],[14,-12]],[[8482,8546],[7,-2],[2,-4]],[[8490,8533],[-1,0],[-3,2],[1,2],[-1,2],[-3,-1]],[[8435,8558],[-5,4],[-13,-1]],[[8415,8562],[-9,0],[-3,0],[-1,-1]],[[8036,8451],[-5,11]],[[7954,8667],[-5,2]],[[7873,8667],[-5,-3],[-8,0]],[[7839,8658],[-3,-1],[-4,3]],[[7783,8660],[-2,-2],[-3,-1],[-5,-1]],[[7742,8658],[-16,5],[-5,1],[-9,5]],[[8353,9063],[1,2]],[[8426,9122],[-35,14],[25,8],[-5,5],[2,-1],[11,-2],[31,-1]],[[4628,1445],[-4,12],[-1,9],[0,3],[8,5],[3,1],[2,0]],[[4636,1475],[-1,-24],[-2,-13],[-4,1],[-1,6]],[[4686,1517],[-1,3],[-2,1],[-1,0],[0,3],[1,2],[2,2],[11,4],[4,4],[1,3],[3,3],[2,0]],[[4706,1542],[-20,-25]],[[4714,1538],[5,-1],[10,0],[3,1],[2,2],[3,6],[0,3],[0,1]],[[4737,1550],[1,0],[-1,21],[-2,13]],[[4735,1584],[4,-2],[9,0],[2,-1],[2,-3],[0,-5],[4,-2],[2,-1],[5,1],[2,2],[1,5],[-4,6],[-9,6],[-8,4],[-4,5],[2,2],[2,0],[2,-1],[4,0],[2,1],[2,2],[0,1],[-2,5],[3,7],[-3,11],[2,7],[-2,2],[1,2],[3,0],[1,2],[-6,3],[-4,7],[0,1],[5,1],[1,2],[-5,0],[-2,1],[-1,5],[-7,7],[0,2],[3,0],[2,1],[4,0],[1,1],[0,3],[-1,2],[-1,-1],[-3,-3],[-2,0],[2,4],[-2,7],[1,3],[5,5],[3,4],[5,3],[4,16],[2,4],[4,1],[2,0],[9,-5],[8,1],[3,1],[1,1],[1,3],[1,0],[4,-4],[3,-1],[1,1],[-3,5],[0,2],[4,3],[8,4],[3,-2],[5,2],[1,1],[-2,2],[-2,1],[-2,-1],[-2,0],[0,2],[1,2],[3,0],[1,1],[-1,1],[-3,3],[0,2],[2,4],[3,1],[3,0],[8,-3],[2,1],[-1,2],[-3,2],[0,3],[-3,6],[1,1],[4,-1],[3,1],[0,1],[-3,0],[-1,3],[4,4],[0,6],[3,5],[2,2],[4,-1],[8,-4],[1,0],[0,1],[-2,1],[0,2],[1,0],[5,1],[1,0],[0,1],[-1,1],[-3,1],[-1,1],[4,1],[4,-1],[2,0],[-4,10],[1,1],[2,0],[4,-2],[3,0],[5,1],[9,8],[2,5],[6,2],[0,1],[-2,1],[0,2],[6,4],[2,3],[4,4],[1,4],[-5,2],[2,3],[3,2],[4,2]],[[4900,1839],[16,4],[4,3],[2,3],[-7,6],[-3,10]],[[4912,1865],[0,6],[-3,5],[0,3],[1,3],[1,3],[8,4],[3,3]],[[4922,1892],[7,12]],[[4998,1863],[1,-1],[5,-4]],[[5024,1855],[2,0],[7,0]],[[5118,1871],[3,7],[9,3]],[[5153,1883],[14,7]],[[5167,1890],[10,-1],[10,-4]],[[5187,1885],[4,-2],[4,-5]],[[5195,1878],[5,-12],[3,-4],[4,-3],[10,-4],[8,-7],[2,-1],[-2,-4],[-4,1],[2,-3],[-4,-2]],[[5219,1839],[0,-4],[10,-4]],[[5229,1831],[15,-4],[-2,-7],[-1,0],[-3,-3],[-1,-5],[6,-1],[3,0],[1,1],[2,-1],[5,0],[-2,-7],[1,1],[3,0],[5,-2],[1,-1],[-3,0],[-1,-2],[1,-1],[4,-2],[2,-3],[4,3],[3,-2],[-1,-1],[3,-2],[-1,-1],[10,-4],[0,-1],[6,-3],[2,-2],[1,-3],[9,-9],[8,-11],[9,-7],[12,-7],[7,-3]],[[5337,1741],[10,-10],[3,-20]],[[5350,1711],[5,-11],[0,-3],[-1,-4],[5,-3],[1,-4],[-1,-4],[-2,-2],[-1,-2],[-2,-3],[1,-1],[3,2],[1,-1],[2,4],[0,-3]],[[5361,1676],[2,-3],[-2,-6]],[[5361,1667],[0,-7],[4,-8],[-9,1],[6,-2],[5,-4],[6,-6],[2,-2],[6,-16],[3,-6],[-5,-3],[-3,-4],[-2,-2],[3,-9],[4,-2],[6,-4],[7,-4],[6,-5],[1,-5],[2,-5],[3,-2],[-12,-12],[8,-6],[0,1],[5,-4],[5,4],[16,-1],[5,3],[4,9],[2,-1],[0,-1],[6,-4],[0,-3],[4,0],[0,-2],[4,-3],[-1,-2],[4,-1],[1,-2],[6,-4],[0,1],[2,2],[5,-3],[-3,-9],[-3,0],[1,-2],[2,-1],[1,-2],[-1,-1],[0,-1],[3,2],[4,0],[6,3],[2,-1],[0,2],[6,-1],[0,7],[8,3],[6,-7],[1,0],[3,-2],[4,-2],[7,1]],[[5517,1532],[0,-3],[2,-1],[0,-1]],[[5519,1527],[-3,0],[0,-4],[-2,-2],[-2,-3],[0,-6],[-3,-7],[-1,-4]],[[5508,1501],[-5,-9],[0,-2],[2,-8]],[[5505,1482],[-3,-4],[-20,3]],[[5482,1481],[0,1],[-5,0],[-6,1],[-9,0],[-12,3],[-6,1],[-8,3],[-9,1],[-2,-1],[-2,-1],[-1,-1],[-5,-1],[-2,-2],[-8,-6],[-1,-1],[-3,-1],[-2,1],[-4,2],[-2,3],[-3,2],[-3,6],[-3,1],[-3,5],[-15,1],[-9,0],[-15,3],[-16,4],[-14,6],[-1,0],[-1,-2],[1,-10],[-3,-10],[-8,-6],[-9,-2],[0,2],[-4,3],[5,4],[2,2],[1,-1],[0,2],[-4,4],[-3,1],[5,5],[2,1],[1,0],[-1,1],[-2,7],[-3,1],[-2,0],[-2,-1],[-7,-1],[-2,2],[-1,0],[-11,-4],[-7,0],[-2,-1],[-4,1],[-4,4],[-4,-5],[-4,0],[1,-2],[-3,-4],[-7,-1],[-1,-4],[-2,-2],[-17,-9],[0,6],[-8,0],[-8,3],[-2,-1],[-3,-1],[-2,-2],[-3,-1],[-3,-1],[-3,0],[-2,-1],[-1,-1],[3,-3],[-2,-1],[-1,-3],[-2,-2],[-5,2],[-5,0],[-7,-5],[-1,-1],[5,-2],[0,-1],[-6,-6],[-5,3],[-4,-9],[-3,-1],[-1,-5],[-6,3],[-4,-8],[-2,0],[-1,-4],[-2,1],[0,-4],[-5,-5],[-2,-2],[10,-7],[-3,-3],[2,-2],[-11,-5],[0,-8],[4,-1],[0,-3],[-1,0],[-5,0],[-5,-7],[-2,-7],[4,-3],[0,-2],[-3,-3],[-1,-1],[-6,-3],[0,-1]],[[5105,1378],[-6,-4]],[[5099,1374],[-2,1],[-6,-5],[-3,0],[0,-1],[-7,-3],[-4,0],[-9,-6],[-1,-1],[-1,-4],[-1,0],[-1,-1],[-3,1],[1,-7],[-14,-2],[2,-4],[-4,0],[-4,-2],[-4,1],[-3,-2],[-7,1],[-1,1],[-5,1],[-7,0],[-6,-1],[-15,-6],[-3,-4],[-2,-3],[-2,-1],[-6,-2],[-7,0],[-4,-1],[-5,0],[-1,1],[-1,-1],[-3,0],[-1,-2],[-4,-3],[-3,1],[-2,0],[-2,-2],[-1,-1],[-2,0],[-5,-2]],[[4940,1315],[-2,-4],[-3,-2]],[[4935,1309],[-3,-1]],[[4932,1308],[-1,-2],[-8,-5]],[[4923,1301],[-3,0],[-2,-1],[-2,0],[-2,-1],[1,-2],[-4,0]],[[4911,1297],[-1,-1],[-3,3]],[[4907,1299],[-3,0],[0,2],[-3,-2],[-2,1],[-5,-1],[-3,-2]],[[4891,1297],[-8,1],[-2,-1]],[[4881,1297],[-3,0],[-2,0],[-3,-2],[-3,1]],[[4870,1296],[-4,-1],[-3,1],[-1,-1],[-2,1],[-4,0],[-1,1],[-2,0],[-2,1],[-2,-1],[-1,1],[-2,-1],[-4,1],[-1,0],[-5,3]],[[4836,1301],[-2,-2],[-4,2]],[[4830,1301],[-2,-1],[-2,1],[-1,1],[-2,-2],[-4,0],[1,1],[-1,1],[-5,0]],[[4814,1302],[0,3],[-1,0],[-5,1]],[[4808,1306],[-3,-1],[-6,1]],[[4799,1306],[-3,-1],[-2,0],[-2,-4],[7,-1],[1,-2],[10,-4],[6,-6],[2,-6],[1,-6],[1,-1],[-1,-1],[0,-3],[6,-5],[-8,-12],[0,-1],[2,-2],[1,-2],[-3,-4],[-1,-3],[1,-1],[-1,-1],[2,-2],[1,-2],[2,-1],[0,-1],[2,-1],[-3,-11],[1,-2],[-1,-3],[-6,-2],[-2,0],[-2,1],[-2,0],[-1,7],[-4,0],[0,-8],[-4,0],[-5,1],[-1,-1],[-1,0],[0,-2],[-1,-1],[-7,-3],[-5,-2],[-5,-8],[-2,-2],[-2,1],[-3,6],[-4,5],[-4,0],[-7,2],[-1,-4],[-3,-2],[2,-1],[-1,0],[-1,0],[-1,-2],[2,-1],[3,-3],[-6,-2],[-4,1],[-1,-6],[8,-2],[-4,-8],[-2,-2],[-1,-4],[-4,-4]],[[4738,1171],[-3,-13],[1,-1],[2,1]],[[4738,1158],[3,-1],[1,-1],[3,-1],[6,0]],[[4751,1155],[7,-2],[1,1],[4,0]],[[4763,1154],[6,-2]],[[4769,1152],[1,1],[2,0],[2,-1],[3,1],[4,-3],[4,1],[10,-3],[3,0],[4,1],[2,-1],[4,-3],[3,-2],[1,-1],[1,0],[-1,-3],[5,-4],[8,-11],[4,-9],[6,-7],[-1,-6],[-2,-2],[-4,-1],[-1,-4],[-2,0],[0,-2],[-2,0],[0,-1],[1,0],[1,-3],[3,-1],[4,-3],[0,1],[2,-1],[-1,-1],[0,-6],[-2,-3],[-3,-1],[1,-3],[-1,-1],[-1,-5],[-2,-1],[-1,-2],[1,-3],[0,-2],[-21,-12],[-5,-5],[-3,-9],[0,-1],[2,1],[1,0],[-1,-3],[1,-7],[10,-4],[5,-3],[6,-2],[-7,-23],[1,-4],[24,7],[16,9],[7,5],[10,3],[3,-4],[3,-1],[3,2],[3,4],[1,-1],[1,2],[8,-1],[0,-2],[7,-1],[3,-2],[5,1],[3,1],[3,0],[1,1],[5,0],[3,1],[1,0]],[[4924,1009],[17,-29],[-1,-5],[0,-21],[8,-13],[25,-7],[3,-2],[5,-5],[-2,-8],[7,-6],[5,1],[1,-1],[17,-26],[-14,-3],[-23,-6],[-24,2],[-17,6],[-24,4],[-13,-1],[-6,-3],[-1,0],[-3,-1],[0,-1],[-1,0],[-2,-2],[-3,-1],[-17,-3],[-26,-1],[-4,5],[-5,2],[-16,15],[-8,0],[-30,-9],[-23,9],[-25,4],[-12,-11],[-27,-37],[-9,7],[-18,6],[-23,2],[-22,2],[-16,9],[-18,8],[-16,-2],[-19,8],[-3,7],[-9,4],[-7,0],[3,4],[-4,16],[-29,-14],[-11,-3],[-19,-2],[-18,0],[-32,-1],[-19,-9],[-19,-9],[-37,-23],[-13,-13],[2,-9],[6,-2],[10,-7],[0,-3],[1,1],[0,-1],[0,-5],[2,-4],[10,-5],[2,-1],[0,1],[1,0],[-26,-27],[-10,-5],[-2,1],[-22,4],[-24,6],[-16,2],[-11,0],[-22,-1],[-10,5],[-34,3],[-2,-9],[-17,-2],[-14,-14],[0,-6],[9,-20],[-21,1],[-15,11],[-24,2],[-19,2],[-6,1],[-35,13],[-8,3],[-20,12],[-21,11],[-11,7],[-11,6],[-14,8],[-38,19],[-27,13],[-33,8],[-11,2],[-8,-2],[-1,-7],[-1,0],[-8,-2],[-4,-2],[-1,-1],[-4,1],[-4,7],[-5,23],[4,2],[12,9],[22,12],[11,11],[-1,8],[0,2],[20,13],[-9,52],[-34,62],[0,70],[1,1],[30,-6],[19,9],[24,21],[54,14],[14,16],[40,60],[22,24],[12,-13],[-10,-20],[-10,-13],[-6,-5],[6,-6],[-13,-18],[22,-15],[4,20],[5,2],[19,-11],[22,-19],[7,-11],[4,11],[30,8],[3,-2],[22,-7],[24,-2],[24,3],[9,-2],[3,-8],[10,9],[24,-5],[14,7],[23,1],[4,-5],[-8,-11],[3,-4],[11,5],[16,9],[13,9],[22,7],[26,11],[19,5],[21,7],[10,9],[157,33],[28,40],[13,7],[6,18],[5,4],[6,1],[18,-11],[14,3],[11,14],[-14,7],[-7,-8],[-4,6],[-12,7],[15,21],[0,17],[4,5],[10,14],[3,7],[-3,13],[-7,15],[-18,22],[35,16],[10,8],[4,14],[4,10],[4,14],[5,16],[3,9]],[[4728,1580],[-2,2],[-1,2],[0,2],[3,1],[2,-1]],[[4730,1586],[-2,-6]],[[7844,1138],[-3,2],[-3,4],[-1,5],[0,3]],[[7839,1451],[-5,5],[-1,2]],[[7836,1481],[-5,20],[-3,4]],[[7828,1505],[-9,7],[-1,5]],[[7821,1528],[3,5],[8,5]],[[7832,1538],[7,6],[7,5],[3,0],[8,-2],[3,3],[2,1],[3,3],[5,18],[-2,4],[8,2],[-10,15],[-2,5],[0,5],[-7,12],[0,3]],[[7857,1618],[3,7],[0,6],[-5,10],[-5,7],[-2,4],[-6,32]],[[8167,1473],[-3,-3],[-2,-3],[-1,-3],[1,-5],[2,-4],[3,-2],[6,-4],[5,0],[18,1],[16,3]],[[8241,1492],[7,4],[1,-2],[0,-2]],[[8249,1492],[4,-2]],[[8253,1490],[-5,-4],[0,-2]],[[8248,1484],[3,-2],[-3,-3]],[[8248,1479],[1,-1],[-2,-2],[1,-3],[3,0]],[[8251,1473],[-1,-3],[0,-2],[6,-1]],[[8256,1467],[5,1],[9,0],[1,-6],[4,0],[5,-2]],[[8280,1460],[11,-5],[7,-2],[5,0],[4,0]],[[8307,1453],[3,2],[16,13]],[[8326,1468],[11,7],[4,-2],[15,7],[11,4],[5,-5],[2,-6],[-1,-10],[7,-4],[35,-45],[-6,-17],[2,-39]],[[8411,1358],[-12,-17],[-3,-1]],[[8396,1340],[-7,6],[6,-9],[2,-8],[3,-5],[1,-6],[2,-7]],[[8403,1311],[0,-4],[-5,-4]],[[8398,1303],[-3,-1],[-4,-3],[-3,-1],[-1,-3],[-8,-6],[-12,-7],[-1,-2],[-2,0],[-6,-10],[-6,-8],[-16,-15],[-2,-4]],[[8334,1243],[-3,-3],[-16,-7]],[[8315,1233],[-9,-13],[-4,-1]],[[8302,1219],[-4,-1],[2,-3]],[[8300,1215],[1,-2],[-1,-8]],[[8300,1205],[4,-3],[5,-2]],[[8309,1200],[9,-1],[12,-5],[28,-11],[4,-29],[3,-3]],[[8365,1151],[6,-3],[4,-1]],[[8375,1147],[2,-1]],[[8377,1146],[-2,-2]],[[8375,1144],[-2,-6],[-1,-7],[-2,0],[4,-4],[0,-2],[1,-1],[3,-8],[2,-2],[6,-2],[3,-4],[12,-8],[5,-7],[3,1],[3,-2],[2,-5],[2,-2],[7,-2],[3,-1]],[[8426,1082],[19,-5],[-2,-4],[-2,-3],[-8,-4]],[[8433,1066],[-1,0],[1,-2],[-7,-3],[-7,7],[-6,-7]],[[8413,1061],[-1,-7],[-2,-2],[-2,-2]],[[8408,1050],[-4,3],[-9,-2]],[[8395,1051],[-6,0],[0,-3],[-7,-6],[-7,-10],[-4,5],[-4,2],[-4,-4],[-2,-3],[-1,-1],[-5,9],[-9,-1],[-2,-2],[-8,-2],[2,-5],[-6,-12],[0,-9],[-6,5],[-9,4],[-4,4],[-3,0],[-1,2],[-3,1]],[[8306,1025],[-7,7],[-3,0]],[[8296,1032],[-11,8]],[[8285,1040],[-3,3],[0,6]],[[8202,1104],[-11,0],[-5,-1]],[[4760,1918],[3,-1],[7,3]],[[4847,1944],[4,1],[9,2]],[[4921,1963],[12,-2],[2,-2]],[[4933,1955],[4,-7],[0,-1],[-2,-3]],[[4930,1938],[-4,-8],[2,-6]],[[4935,1918],[-8,-18],[-5,-8]],[[4912,1865],[3,-10],[2,-2],[5,-4],[-1,-1],[-5,-4],[-16,-5]],[[4735,1584],[-2,8],[-3,-6]],[[4728,1580],[-5,-10],[-9,-18],[-8,-10]],[[4686,1517],[-9,-11],[-5,-7],[-23,-9],[-13,-8],[0,-7]],[[4628,1445],[1,-6],[4,-2],[-2,-11],[-35,-36],[-31,-18],[-43,-4],[-75,7],[1,2],[-3,-2],[-71,7],[-126,56],[-2,4],[-14,8],[-12,2],[-1,0],[-49,22],[-25,-14],[-12,1],[-28,0],[-19,-8],[-18,-5],[-42,-5],[-24,-2],[-20,-2],[-15,-2],[-20,0],[-17,2],[-14,-1],[-20,2],[-18,4],[-14,-1],[-23,-11],[6,-19],[2,-2],[-29,-4],[-78,25],[-24,16],[-6,2],[-19,13],[-14,14],[-20,15],[-18,10],[-13,16],[-14,13],[-12,14],[-15,14],[-7,12],[-9,18],[-9,12],[-3,16],[-7,10],[-9,23],[-13,21],[124,-14],[32,4],[1,-2],[3,2],[23,3],[18,-5],[7,16],[-7,1],[26,32],[-51,-3],[1,9],[-3,0]],[[4714,1538],[1,1],[8,6],[14,5]],[[7119,1874],[-3,6],[-6,3]],[[7081,1925],[-7,9],[-1,5]],[[7033,2005],[-6,9],[-4,22],[-2,5],[-1,5]],[[7011,2104],[0,5],[1,1],[3,1]],[[7023,2112],[2,-1],[9,8]],[[7656,1924],[4,-3],[1,-6]],[[7689,1833],[13,1],[1,-2]],[[7847,1654],[1,-4],[9,-11],[2,-7],[1,-6],[-3,-8]],[[7832,1538],[-5,-3],[-5,-4]],[[7786,1531],[-10,1],[-3,0],[-10,-6]],[[7505,1270],[-3,3],[4,13]],[[7447,1321],[-8,8],[-7,9],[-4,5]],[[7320,1512],[-8,12],[-8,10],[-20,20]],[[8431,2927],[18,-15],[11,-7],[1,-3],[7,-7],[2,-6],[2,-1],[11,-9],[5,-2],[3,-4],[26,-15],[8,-4],[10,-8],[5,-7],[2,-8],[4,-5],[0,-4],[3,-4],[1,-4],[1,-1],[19,-5],[8,-2],[8,-5],[12,-19],[2,-3],[1,-10],[2,-4],[6,-4],[5,-5],[20,-16],[7,-13],[2,-7],[5,-7],[4,-6],[0,-9],[-5,-12],[-1,-2],[-1,-7],[1,-8],[3,-4],[4,-12],[14,-8],[8,-7],[12,-3],[20,4],[25,7],[1,0],[1,-1],[11,1],[2,2],[7,3],[3,5],[5,-4],[5,2],[2,2],[3,-1],[1,-4],[0,-3],[2,-2],[2,0],[0,-1],[3,-2],[-1,-1],[1,-2],[-2,-1],[4,-8],[-1,-7],[-6,1],[-2,-1],[3,-4],[2,-6],[0,-3],[3,-2],[3,-1],[1,-5],[-3,-1],[4,-6],[0,-4],[5,-4],[1,-2],[-4,-2],[-6,-7],[1,-2],[5,1],[0,-3],[-4,-2],[-2,1],[-2,-3],[-3,-1],[-1,-1],[2,-1],[5,-1],[3,-1],[0,-2],[1,-3],[-1,-2],[1,-3],[-1,-4],[4,-5],[1,0],[0,1],[3,1],[5,-3],[4,-2],[2,1],[5,2],[4,-1],[2,0],[3,1],[9,7],[3,1],[11,1],[16,-4],[5,1],[6,6],[1,5],[4,2],[3,2],[7,-3],[7,4],[5,-1],[3,0],[5,3],[3,4],[6,5],[5,2],[5,1],[3,1],[4,6],[1,5],[1,1],[4,0],[3,-1],[5,0],[10,-5],[3,1],[8,5],[5,4],[13,8],[1,-3],[7,3],[8,1],[2,2],[0,3],[10,7],[4,-3],[14,8],[0,2],[4,4],[2,0],[1,1],[0,2],[3,3],[1,4],[4,4],[2,-1],[3,0],[7,4],[4,-2],[2,0],[4,-1],[2,1],[3,0],[9,-2],[5,0],[4,2],[4,5],[4,3],[8,2],[3,3],[-8,18],[0,4],[3,5],[7,1],[5,2],[7,0],[3,1],[5,-2],[5,0],[7,-1],[9,-3],[2,-2],[5,-9],[3,-2],[4,-1],[2,-11],[1,-3],[4,-3],[5,-1],[8,1],[2,-1],[3,0],[9,1],[6,2],[2,2],[6,0],[5,-3],[0,-3],[3,-4],[6,-3],[4,-6],[2,-1],[7,1],[15,-1],[6,-2],[5,-6],[-1,-3],[-4,-3],[0,-4],[-3,0],[-4,-1],[-1,1],[-10,-5],[-10,-3],[-11,0],[-15,-3],[-9,-2],[-3,-3],[1,-4],[2,-5],[5,-4],[2,-1],[4,0],[2,1],[2,3],[4,1],[6,-1],[4,-1],[1,-1],[-1,-4],[5,-1],[0,3],[2,4],[-1,5],[1,1],[3,0],[7,1],[9,-1],[1,5],[3,0],[4,-2],[0,-3],[-1,-1],[6,-2],[3,5],[0,2],[-1,0],[1,2],[5,4],[4,-1],[2,-2],[3,-6],[1,-7],[10,-3],[2,-1],[-1,-12],[1,-3],[0,-3],[4,-3],[-1,-1],[-1,-1],[-1,-4],[0,-3],[1,0],[2,-2],[-1,-4],[1,-2],[6,0],[3,-3],[5,-2],[8,1],[5,-1],[7,1],[5,-1],[10,2],[8,-1],[5,-7],[5,1],[2,-1],[4,-9],[-1,-5],[3,-8],[6,-6],[3,-2],[6,-2],[7,-3],[18,-6],[9,-7],[3,-3],[1,-3],[1,-6],[-2,-4],[2,-2],[3,-1],[7,1],[7,-9],[1,-1],[8,0],[4,-1],[4,-2],[4,-6],[3,-1],[3,-2],[4,-2],[5,-2],[4,-2],[1,1],[4,-1],[1,-2],[7,1],[3,-2],[2,2],[8,-2],[3,-1],[7,-11],[3,1],[1,2],[2,-1],[4,-1],[10,-4],[5,-1],[3,-2],[4,1],[1,-1],[-2,-1],[-4,-3],[-2,0],[-1,-3],[-1,-1],[0,-2],[-7,-6],[-2,-4],[-4,-9],[-3,-2],[-4,-1],[-3,-2],[-2,-6],[3,-6],[0,-2],[-3,-5],[-5,-2],[-1,-1],[1,-4],[4,-3],[-1,-1],[-4,-2],[1,-2],[0,-3],[3,-5],[7,-6],[8,-3],[6,-4],[4,0],[5,1],[2,0],[0,-3],[3,-6],[1,-1],[4,-1],[3,-7],[6,-3],[2,-5],[0,-2],[-1,-3],[5,-2],[3,-10],[4,-1],[2,-1],[2,-8],[8,-8],[2,-3],[0,-9],[3,-8],[3,0],[6,0],[6,-2],[5,0],[2,-2],[12,-1],[6,-1],[4,-4],[5,-3],[2,-6],[2,-1],[2,0],[3,4],[1,-1],[3,-3],[0,-2],[-2,-4],[-1,-6],[-2,-4],[3,1],[7,-7],[1,-3],[2,4],[6,4],[1,3],[3,3],[2,-1],[6,3],[2,-4],[1,4],[-1,1],[1,1],[0,2],[4,3],[1,-2],[3,0],[3,-4],[8,0],[5,10],[2,8],[23,25],[1,-1],[6,-6],[-3,-3],[1,-7],[-1,-2],[0,-3],[4,-6],[1,-4],[3,-5],[0,-1],[1,-2],[4,-2],[5,-2],[4,-1],[0,-1],[4,0],[5,-2],[6,2],[6,-1],[2,3],[-1,4],[-1,11],[5,10],[1,0],[2,3],[6,-5],[5,-1],[3,-2],[6,-3],[2,3],[7,4],[2,-3],[0,-4],[5,-6],[7,-22],[2,-7],[-1,-12],[24,-4],[1,12],[2,3],[-3,2],[6,4],[2,1],[7,5],[1,-4],[11,-1],[5,-2],[6,-2],[0,-1],[20,-1],[20,-3],[11,-5],[11,-4],[5,-3],[3,-2],[2,-6],[-1,-17],[1,-3],[3,-3],[5,-2],[6,-2],[6,0],[7,0],[2,-5],[-1,-4],[-38,-6],[-2,-1],[7,-15],[-3,-5],[-5,-3],[5,-10],[1,-6],[2,-5],[0,-11],[-1,-1],[-1,-3],[-3,-2],[-7,-1],[-11,0],[-18,-6],[-1,1],[-5,-1],[-4,0],[-3,-5],[-1,-4],[-1,0],[-2,0],[-4,-2],[-1,-5],[-4,-4],[-1,-3],[-4,-3],[-2,-4],[0,-2],[4,-6],[0,-6],[3,-6],[6,-5],[1,-2],[8,-6],[5,-5],[5,-2],[1,-2],[-3,-2],[-6,-1],[-2,-2],[0,-4],[-1,-2],[1,-6],[0,-4],[-1,-4],[-1,-1],[-3,-3],[-7,-1],[4,-9],[6,-7],[-1,-5],[-8,-13],[-2,-4],[1,-5],[2,-2],[2,-6],[-1,-4],[-1,-5],[-5,-9],[-5,-6],[-7,-7],[-2,-8],[0,-4],[4,-8],[11,-15],[7,-14],[5,-7],[7,-5],[6,-2],[15,-8],[10,-9],[2,-5],[-11,-29],[-11,-14],[-4,-13],[-6,-8],[-2,-10],[0,-9],[-2,-3],[-4,-4],[-8,-5],[-40,-13],[-4,-3],[-1,-4],[1,-6],[3,-5],[10,-8],[7,-4],[5,-6],[0,-4],[-4,-7],[0,-5],[6,-21],[0,-8],[2,-6],[8,-7],[15,-9],[4,-4],[12,-15],[2,-6],[-2,-19],[-4,-4],[-3,-2],[-9,-2],[-10,0],[-3,3],[-5,6],[-4,4],[-4,2],[-6,0],[-5,-1],[-2,-2],[-1,-5],[1,-5],[2,-3],[6,-3],[21,-7],[10,-4],[5,-3],[6,-8],[5,-9],[1,-10],[-1,-11],[-3,-8],[-7,-10],[-6,-12],[1,-4],[3,-4],[3,-4],[12,-8],[24,-5],[10,-5],[6,-5],[3,-6],[-1,-4],[-1,-3],[-3,-4],[-5,-4],[-3,-1],[-31,-9],[-7,0],[-8,0],[-9,2],[-9,1],[-11,-1],[-12,-5],[-5,-3],[-1,-8],[-5,-12],[0,-8],[5,-5],[8,-4],[10,-3],[7,0],[10,2],[5,3],[6,5],[10,13],[3,2],[3,1],[4,0],[3,-1],[2,-2],[1,-5],[-1,-7],[-2,-6],[-5,-8],[-11,-15],[-21,-23],[-11,-10],[-2,-4],[-1,-6],[1,-7],[2,-2],[2,-2],[3,-2],[3,-1],[6,0],[3,1],[2,4],[3,2],[8,3],[5,-1],[5,-2],[7,-10],[2,-3],[1,-4],[0,-10],[-10,21],[7,-32],[-6,-10],[-1,-4],[0,-4],[4,-9],[12,-17],[5,-6],[15,-12],[5,-6],[-33,-32],[-84,-81],[-13,-9],[-19,-13],[-16,-16],[-1,-1],[-47,-30],[-43,-8]],[[9713,980],[-1,1],[-13,0],[0,-1],[-4,-3],[-4,3],[-6,0],[1,2],[-1,1],[4,3],[-4,3],[-14,1],[-3,4],[0,3],[-7,3],[6,10],[-1,1],[0,4],[-1,3],[2,1],[2,-1],[6,2],[-13,19],[-3,5],[-1,5],[0,14],[-3,9],[-7,-3],[-25,-5],[1,-1],[-4,-1],[-11,-5],[0,-1],[-4,-2],[-9,-7],[-1,-2],[-5,-4],[-13,-13],[-14,-11],[-4,2],[-10,-6],[-14,-7],[0,5],[6,16],[-1,10],[2,1],[-6,1],[-4,0],[-6,4],[-6,2],[-11,9],[-2,3],[-1,-1],[-1,3],[-3,-1],[-2,1],[-11,-1],[-18,2],[-10,1],[0,-4],[-4,1],[-3,1],[-8,1],[-9,-2],[-11,-4],[-2,7],[-5,-5],[-4,2],[-3,3],[1,5],[-1,0],[-2,1],[-4,-4],[-3,-2],[-2,1],[-6,1],[0,2],[-2,0],[-2,7],[-4,-1],[0,3],[-4,1],[-6,0],[-4,1],[-9,2],[-2,-5],[-4,-2],[-2,-11],[-2,-4],[-1,-5],[-2,-5],[0,-1],[-3,0],[-1,1],[-8,0],[1,13],[-10,-4],[-6,-1],[-8,9],[-5,4],[-5,-1],[-5,0]],[[9301,1066],[-1,1],[0,1]],[[9300,1068],[5,4],[4,7]],[[9309,1079],[-1,6],[5,7],[0,3],[8,1],[0,3],[3,1],[6,1],[-1,12],[-3,4],[-5,3],[1,1],[-1,3],[55,6],[13,3],[4,-1],[11,1],[7,-1],[7,-2],[5,-2],[0,3],[0,4],[1,3],[-7,3],[-8,6],[5,4],[1,1],[-1,15],[-5,1],[-3,0],[-1,-1],[-4,5],[3,4],[-2,1],[-5,2],[-1,-2],[-4,2],[0,2],[2,4],[-3,1],[-7,5],[-5,6],[-2,7],[-3,3],[-5,4],[-6,2],[-4,0],[-1,1],[-3,5],[-2,5],[-5,5],[-1,2],[-3,6],[-1,5],[-8,8],[-1,4],[-5,6],[-4,3],[-3,1],[0,1],[-2,1],[-1,-1],[-1,-1],[-4,2],[-2,3],[-4,2],[-3,7]],[[9305,1278],[2,8],[-1,1],[-9,6]],[[9297,1293],[-7,-4],[-3,-4],[-8,-1],[-7,-5],[-17,1],[-26,-14],[-4,0],[-6,-2],[-6,1],[-11,-4],[-12,-3],[-10,0],[-3,0],[-4,-3],[-7,-6],[-6,-3],[-4,-4],[-21,10],[-5,0],[-9,2],[-6,-6],[-3,0],[-4,-6],[-5,0],[-1,-1],[-1,-3],[-2,-4],[-8,-3],[-10,0],[-3,0],[-2,-2],[-1,-2],[0,-2],[6,-3],[5,-1],[3,-1],[0,-3],[-1,-2],[-2,-3],[-3,0],[-2,0],[-5,2],[-4,5],[-3,1],[-8,-7],[-2,-3],[1,-2],[4,-3],[9,-1],[2,-1],[1,-2],[-2,-2],[-5,-3],[-11,-9],[-8,-4],[-4,1],[-3,3],[-4,9],[-4,0],[-6,-2]],[[9029,1194],[-8,-15],[-2,-3],[3,-3],[7,-3],[0,-2]],[[9029,1168],[-2,-1]],[[9027,1167],[-10,-4]],[[9017,1163],[-5,0],[-4,2],[-5,5],[-9,4]],[[8994,1174],[-6,8],[-3,1],[-4,0],[-7,-4]],[[8974,1179],[-13,-12],[-7,-8]],[[8954,1159],[-9,-11],[-3,-3],[-5,-2],[-17,0],[-6,-1],[-7,-4]],[[8907,1138],[-2,-1],[-1,-2],[-2,1]],[[8902,1136],[-4,0],[1,3],[-1,2],[-1,0],[-2,-2]],[[8895,1139],[-1,1],[0,1],[3,1]],[[8897,1142],[-3,3],[3,4]],[[8897,1149],[2,1],[1,1],[-1,2],[-2,0],[-4,-1]],[[8893,1152],[-2,3]],[[8891,1155],[-3,0],[1,4]],[[8889,1159],[2,1],[3,4],[0,1],[-3,2]],[[8891,1167],[0,1],[-2,3],[-2,0],[-1,2],[-3,1],[1,1],[-1,2],[6,3]],[[8889,1180],[-1,1],[0,2],[-2,0]],[[8886,1183],[-2,-1],[0,2],[-4,3],[2,2],[-2,1],[0,1],[-10,1],[-6,0],[-6,7],[-1,0],[-2,-1],[-3,-1],[-11,-4],[-3,-1],[-2,-7],[-5,-4]],[[8831,1181],[-4,0],[-5,-6],[-2,-1],[-3,1],[-13,7],[-3,0],[-8,-2]],[[8793,1180],[-7,3]],[[8786,1183],[-6,-1],[-5,2],[-6,2],[-3,2]],[[8766,1188],[-3,0],[-2,2]],[[8761,1190],[-1,0],[0,6]],[[8760,1196],[-1,2],[-2,1],[-2,0],[-2,0]],[[8753,1199],[-1,-3],[-4,-1],[-3,1],[-4,3],[-7,4]],[[8734,1203],[-8,0],[-2,1],[-2,4],[-2,2]],[[8720,1210],[-10,2]],[[8710,1212],[-5,-1],[-1,1],[-1,2]],[[8703,1214],[1,2],[-1,3],[-5,4],[-6,-1]],[[8692,1222],[-9,3],[-4,5]],[[8679,1230],[-2,6],[-5,0],[-5,2],[-1,3],[4,3],[-1,2],[-1,1],[-6,0],[-4,2],[-2,2],[-2,4],[1,3],[0,1],[-2,1]],[[8653,1260],[-5,-1],[-2,2],[0,2],[5,6],[1,3]],[[8652,1272],[-2,2],[-4,2],[-3,5],[-4,2],[-2,2],[-1,3],[0,5],[-2,4],[1,3],[8,2],[2,2],[-3,4],[-2,8],[-5,4],[-1,8],[2,4],[-1,2],[-8,5],[1,6],[3,5],[-1,5],[-1,0]],[[8629,1355],[-3,-1],[-2,1],[0,3]],[[8624,1358],[-3,5],[0,3],[4,17]],[[8625,1383],[4,6],[0,3],[15,-8]],[[8644,1384],[10,-8],[1,2],[2,-3],[3,-1],[1,0],[0,3],[3,0],[0,2],[1,1],[3,-5],[6,3],[9,1],[-1,2],[-2,3],[2,0],[5,6],[-13,-1],[-3,0],[0,3],[2,0],[-1,5],[3,2],[-1,5],[-3,4],[2,1],[0,4],[1,1],[0,4],[1,3],[2,2],[2,0],[-2,2],[2,1]],[[8679,1426],[-1,6],[13,3]],[[8691,1435],[12,4],[9,2],[9,2],[2,-3],[0,-4],[1,-1],[-1,-5],[1,-3],[-2,-5],[1,-1],[3,1],[3,-2],[4,-1],[1,-1],[5,-1],[3,0],[3,1],[1,-1],[3,1],[3,-1],[1,-2],[5,-1],[3,-2],[1,2],[-1,2],[-2,2]],[[8759,1418],[-3,6],[2,2]],[[8758,1426],[0,2],[2,2]],[[8760,1430],[-1,1],[3,1],[-1,3]],[[8761,1435],[1,0],[1,-1],[3,4],[1,3],[0,3],[14,33],[11,17]],[[8792,1494],[8,6],[0,2]],[[8800,1502],[-2,5],[-3,3],[-2,1],[-2,1]],[[8791,1512],[-22,-4]],[[8769,1508],[-11,1],[-9,-4]],[[8749,1505],[-8,-2],[-19,0],[-5,-1],[-2,-2],[-6,-1],[-2,1],[-6,-2],[-3,0],[-6,-3],[-3,1],[-6,-1],[-7,1],[8,18],[3,14],[5,6],[3,7],[0,1],[4,-1]],[[8699,1541],[6,4],[2,3]],[[8707,1548],[3,13],[2,5],[6,6],[11,5],[4,5]],[[8733,1582],[3,2],[3,3],[0,2],[-1,4]],[[8738,1593],[2,4],[6,5],[2,5],[2,2],[-4,4],[0,3],[-3,1],[-1,3],[-4,2],[-3,2],[-2,1],[-3,4],[-2,0]],[[8728,1629],[0,1],[-1,0],[0,-1],[-2,-1]],[[8725,1628],[-1,1],[-8,3],[-12,-4],[-8,-1],[-3,1],[-1,0],[1,1],[-6,2],[0,2],[-1,-1],[-2,2],[-1,0],[-1,2],[1,1]],[[8683,1637],[-3,5]],[[8680,1642],[-3,0],[-4,3]],[[8673,1645],[-6,1],[-1,0]],[[8666,1646],[-2,-1]],[[8664,1645],[-2,0],[-1,-1]],[[8661,1644],[-6,-1],[-8,0],[-2,-2],[-4,0],[-3,-1],[-7,-4],[-3,0],[-5,2],[-3,0],[-9,0],[-15,-4],[-8,-5],[-3,2],[-3,4],[-7,12],[-9,5],[0,1],[1,1],[-2,0],[-4,4],[-4,7],[-1,4],[1,1],[4,4],[4,5],[-2,1],[2,4],[-2,1],[2,9],[3,3],[1,5],[-1,1],[10,30],[2,30],[-29,35],[1,1],[2,5],[-6,0],[-12,3],[-15,8],[2,5],[-1,0],[-2,-2],[-3,-3],[-5,5],[-8,11],[-6,6],[0,6],[-4,3],[-2,5],[-1,6],[5,3],[3,0],[5,2],[-3,7],[-1,3],[2,1],[3,1],[0,9],[4,1],[6,-1],[6,3],[-58,64],[-68,26],[-14,-2],[-4,0],[-55,15],[-36,19],[-9,4],[-28,-6],[-2,-1],[-7,1],[-4,1]],[[8236,2007],[-14,0],[-15,-5]],[[8207,2002],[-9,-1],[-3,-2],[-5,-6]],[[8190,1993],[-13,3]],[[8093,2105],[0,4]],[[8097,2110],[11,2]],[[8314,2244],[1,6],[2,6]],[[8317,2256],[3,3],[5,4],[2,0],[1,1]],[[8426,2331],[9,4],[5,4]],[[8420,2371],[-11,8],[-1,4],[4,9]],[[8512,2426],[4,0],[3,-1],[2,3]],[[8528,2442],[4,2],[2,1],[-3,9],[-4,5]],[[8528,2467],[-3,7],[1,3],[2,2],[7,-1]],[[8497,2572],[1,4],[-12,6]],[[8469,2586],[-7,0],[-3,1],[-2,5]],[[8454,2609],[-4,5],[-1,0],[-6,-1],[-7,1]],[[8417,2627],[-16,6],[-4,5]],[[8389,2640],[-4,9]],[[8380,2663],[-2,0],[-1,4]],[[8377,2667],[-5,2],[-2,2],[-1,11],[3,3]],[[8372,2685],[8,4],[3,3]],[[8383,2692],[0,4],[-1,3],[-4,4]],[[8378,2703],[-6,10],[-2,2]],[[5686,5386],[0,-3],[-2,0],[-5,-2]],[[5679,5381],[-5,1],[-4,-1],[-2,-1]],[[5668,5380],[-1,-6],[-8,-8],[-11,-5]],[[5648,5361],[-6,-5],[-3,-1],[-7,0]],[[5632,5355],[-1,7],[-3,7]],[[5628,5369],[-2,3],[-3,2],[-4,2],[-5,1]],[[5614,5377],[-10,0],[-4,1],[-4,-1],[-6,3],[-3,0],[-2,-1],[-2,0],[-2,4],[-3,2],[0,4]],[[5578,5389],[-2,1],[4,13]],[[5580,5403],[-7,3],[-1,6],[-3,3],[-5,-1],[-2,3],[2,2]],[[5564,5419],[-4,0],[-3,2],[0,3]],[[5557,5424],[4,8],[-3,5],[-9,0],[-2,2],[-2,5]],[[5545,5444],[-7,4],[-1,1],[-1,4]],[[5536,5453],[3,3],[-3,1],[-1,1],[2,3],[-1,3],[1,3],[-5,7],[1,2],[-1,1],[0,2],[1,1],[-5,7],[-2,4],[-2,1],[-1,2],[3,2],[-1,5],[3,2],[-1,3],[2,1]],[[5529,5507],[0,2],[-4,1],[-2,2]],[[5523,5512],[3,0],[-1,1],[-7,1]],[[5518,5514],[-1,2],[-3,2],[2,4]],[[5516,5522],[0,4],[-1,4],[-1,1],[1,2],[-1,2],[0,4],[-2,0],[0,4],[12,10],[1,7],[-2,1],[6,6],[5,8],[4,3],[1,2],[-1,1],[5,5],[-2,5],[1,1],[-2,0],[1,2],[-1,0],[0,1],[-3,4],[1,1],[-2,1],[-1,2],[1,2],[-2,1],[-2,1],[3,8],[0,2],[-1,2],[1,3],[1,4],[-1,2],[1,2],[-1,4],[3,5],[-2,1],[0,3],[-2,0],[0,2],[-2,0],[-2,1],[1,1],[2,0],[-3,5],[1,4],[-2,1],[1,2],[-2,1],[1,2],[-1,3],[0,3],[-2,3],[0,3],[3,1],[1,3],[-2,3],[2,2],[-4,4],[0,6],[-1,2],[1,3],[-1,5],[1,7],[-4,2],[-8,3],[-3,2],[-2,2],[-2,1],[-2,4],[-2,2],[-1,2],[-2,2],[-2,0],[-1,3],[-6,3]],[[5491,5736],[-2,3],[-3,0]],[[5486,5739],[-9,3],[-8,8],[-4,2],[-3,0]],[[5462,5752],[-2,3],[-4,2],[-4,-1]],[[5452,5756],[-6,2],[-2,-2],[-4,1]],[[5440,5757],[-11,-1],[-13,2]],[[5416,5758],[-6,-1],[-4,-1],[-4,-1],[-2,-2],[-7,1],[-7,2],[-12,-1],[-5,1],[-3,-1],[-14,-1],[-5,2],[-4,-1],[-4,1],[-7,-1],[-12,1],[-13,-5],[-1,2],[-4,0],[-1,3],[-6,-3],[-3,2],[-6,0],[-6,2],[-8,-3],[-7,5],[-2,-1],[-11,7],[-15,-8],[-33,-1]],[[5204,5756],[0,3],[-1,6]],[[5203,5765],[-4,6],[-1,5]],[[5198,5776],[-4,8],[-1,9],[2,14],[1,2],[1,1],[2,-1],[7,-4],[3,-1],[4,0],[4,1],[2,1]],[[5219,5806],[6,7],[6,3]],[[5231,5816],[14,4],[6,4]],[[5251,5824],[1,2],[-1,4],[-5,10]],[[5246,5840],[-1,2],[1,2],[5,0]],[[5251,5844],[6,-2],[10,-5],[5,0],[9,1],[8,1],[8,5],[7,1],[11,-3],[12,-6],[10,-1],[3,0],[6,6],[3,2],[12,-6],[3,0],[3,2],[-6,5],[0,3],[1,4],[5,6],[3,7],[6,7],[2,-2],[0,-3],[1,-2],[5,0],[2,-2],[1,0],[6,3],[4,4],[0,3],[-2,5],[2,8],[1,1],[5,2],[3,4],[1,6],[-10,8],[-3,2],[-1,1],[2,3],[1,0],[5,0],[4,0],[7,-1],[3,-4],[3,-1],[6,0],[8,3],[4,4],[6,10],[4,16],[5,6],[10,5],[15,2],[12,0],[8,2],[6,-3]],[[5502,5951],[14,-4],[5,-1]],[[5521,5946],[1,2],[2,4],[-1,6],[-6,10]],[[5517,5968],[1,3],[-7,4],[-5,1],[-3,1],[-7,7],[1,3],[4,5],[2,4],[6,4],[1,4],[-3,6],[0,4],[-3,6],[-1,7],[0,4],[-2,1],[-1,2],[-8,9]],[[5492,6043],[-2,6],[3,3],[6,1],[9,1]],[[5508,6054],[8,5],[-5,8],[0,2],[-4,4],[2,6],[-3,2],[0,2],[-1,4],[1,3]],[[5506,6090],[10,8],[7,2]],[[5523,6100],[2,2],[6,-2]],[[5531,6100],[5,1],[1,0],[9,4]],[[5546,6105],[3,3],[2,15],[0,3]],[[5551,6126],[-4,3],[-4,-1],[-3,0]],[[5540,6128],[-11,5],[-3,0],[-5,4],[-4,6],[-3,8],[1,7],[2,4]],[[5517,6162],[0,5]],[[5517,6167],[4,4],[6,9],[0,3]],[[5527,6183],[-2,5],[2,3]],[[5527,6191],[-1,7],[8,12]],[[5534,6210],[0,5]],[[5534,6215],[8,10],[7,3]],[[5549,6228],[7,8],[6,3],[1,3],[4,1]],[[5567,6243],[4,7],[6,6],[6,6],[8,7],[4,1]],[[5595,6270],[0,3],[2,2]],[[5597,6275],[6,2],[1,2],[-2,5]],[[5602,6284],[1,3],[2,0],[6,0],[5,2],[0,2],[-3,3],[-2,4],[0,1],[2,2],[-2,2],[1,2],[5,3],[5,1],[4,2],[11,1],[3,-1],[3,1],[1,2],[4,1],[-2,11]],[[5646,6326],[2,4],[13,3]],[[5661,6333],[4,0],[4,-1],[3,-2]],[[5672,6330],[2,-1],[1,-6],[5,-6],[6,-3]],[[5686,6314],[12,-10],[7,-1]],[[5705,6303],[3,-2],[5,-1],[11,-4],[3,2],[12,-2],[4,2],[5,-2],[13,3],[5,-1],[7,1],[6,-2],[11,-1],[7,-3],[4,7],[6,8],[4,-2],[5,-3],[11,-7],[4,-5],[0,-2],[6,0],[4,3],[-3,0],[3,8],[7,4],[0,7],[2,2],[4,5],[5,3],[9,9],[2,0],[4,4],[9,7],[1,3],[3,2],[3,1],[3,-3],[11,-5],[6,-4],[3,-1],[1,-2],[2,-1],[4,-1],[19,0],[4,2],[3,0],[7,-3],[8,-2],[7,1],[8,3],[2,0],[14,3],[0,-4],[4,0],[3,-2],[8,-7],[-2,-3],[2,-3],[2,0],[3,-2],[-2,-1],[-1,-3],[-3,-1],[-1,-4],[-4,-4],[4,-1],[5,-3],[9,0],[1,3],[2,0],[3,3],[6,3],[1,1],[-1,2],[-2,2],[-1,3],[0,3],[2,5],[14,4],[4,3],[2,2],[0,3],[-1,2],[-6,6],[-3,5],[0,3],[2,4],[10,8],[10,13],[4,6],[4,2],[2,0],[1,-2],[-1,-3],[0,-2],[3,-2],[4,1],[12,14],[6,5],[3,3],[2,0],[2,-1],[1,3],[2,1],[3,3],[0,1],[4,3],[-1,1],[2,1],[6,2],[1,-3],[6,3],[-2,-7],[4,0],[8,-2],[0,2],[6,7],[2,0],[17,-9],[8,-3],[3,4],[5,2],[7,-4],[3,-4],[6,0],[6,0],[4,-2],[9,3],[4,-1],[9,2],[1,3],[2,1],[7,1],[5,3],[2,1],[1,2],[4,7],[-1,4],[11,-3],[11,3],[7,-1],[6,1],[5,-1],[7,0],[5,-1],[6,1],[5,4],[3,-3],[3,0],[7,4],[3,1],[12,-1],[3,-1],[8,4],[4,-1],[3,0],[0,2],[4,0],[2,2],[-1,4],[3,2],[3,5],[4,1],[1,3],[3,2],[4,2],[2,2],[3,-1],[1,-1],[2,2],[4,2],[1,3],[9,3],[3,0],[5,0],[1,1],[1,3],[2,0],[4,-2],[4,1],[1,1],[0,2],[-5,4],[-2,8],[-2,3],[-1,1],[1,11],[2,4],[2,4],[5,3],[-1,4],[1,5],[1,0],[2,7],[-1,1],[0,4],[-2,0],[-2,2],[3,2],[-1,2],[2,3],[1,2],[1,2],[-1,1],[2,2],[0,2],[-1,1],[2,2],[-2,3],[2,1],[1,5],[2,2],[0,5],[1,4],[3,2],[2,6],[3,2],[4,4],[2,1],[2,5],[4,1],[2,4],[1,5],[4,6],[1,8],[22,4]],[[6483,6613],[4,2],[2,3],[1,2]],[[6490,6620],[2,8],[-1,3],[-2,1],[-11,1]],[[6478,6633],[-6,-1],[-7,7]],[[6465,6639],[-3,6],[0,4]],[[6462,6649],[1,6],[3,5],[7,6],[1,4],[-7,9],[-6,3],[-4,3],[0,7],[1,4],[-3,4],[0,4],[-5,11],[0,3],[1,2],[8,9],[2,3],[0,4],[-6,3],[-1,2],[12,17],[0,3],[-1,4],[-4,1],[1,5],[-6,11],[-3,13],[-3,7],[-4,6],[-1,5],[-5,3],[-7,8],[1,5],[6,7],[0,6],[2,5],[-22,12],[-14,5],[1,2],[-3,12],[1,5],[-4,8],[1,0],[-1,1]],[[6401,6892],[-3,7],[0,8]],[[6398,6907],[3,5],[12,11]],[[6413,6923],[5,7],[8,6],[6,9]],[[6432,6945],[10,7],[-3,18],[5,12],[-5,4],[5,5],[-2,2],[-1,4],[18,18],[5,18],[6,12],[11,19],[3,-1],[15,-6],[6,-1],[2,-1],[1,0],[2,-2],[2,0],[2,-2],[9,-4],[1,1],[0,-1],[2,0],[0,-2],[5,-2],[6,0],[4,-1],[9,-2],[3,4],[7,7],[3,7],[1,-1],[0,3],[-1,1],[-1,3],[-2,1],[-3,8],[-2,1],[1,1],[39,14],[40,12],[33,9],[11,4],[44,-4],[16,1]],[[6739,7111],[47,22],[30,37]],[[6816,7170],[11,16],[28,37],[15,26]],[[8128,7370],[3,-1],[1,0],[5,-4],[6,-2],[1,-2],[2,-1],[1,1],[2,-1],[4,-1],[1,-2],[3,-2],[8,-1],[4,-2],[4,-2],[2,-5],[0,-1],[-4,0],[-12,3],[-3,0],[-5,-1],[-3,-2],[-5,1],[-11,-2],[1,-1],[-6,-14],[0,-2],[-8,-1],[-2,-2],[-6,-4],[1,-5],[2,-4],[4,-2],[3,-3],[17,-8],[2,-2],[6,-3],[1,-2],[4,-2],[2,0],[6,0],[3,-1],[6,-6],[1,0],[2,-4],[-1,0],[3,-3],[6,-4],[4,-1],[10,0],[3,-1],[1,-1],[2,0],[3,-3],[2,-8],[-3,-5],[-6,-3],[-6,-7],[-3,-2],[1,-1],[-2,0],[-1,-3],[-4,-3],[-1,-1],[-5,-2],[-2,1],[-10,-2],[-4,-2],[-2,0],[-1,-1],[-2,0],[-1,-2],[-3,-1],[-2,-2],[1,-1],[-3,-2],[0,-2],[1,0],[-3,-3],[-2,-2],[-7,-2],[1,-2],[-2,-1],[-4,-4],[-11,-1],[0,-2],[-1,-1],[-5,1],[-3,-3],[-3,-1],[-1,-2],[1,-1],[-1,-2],[-1,0],[-2,0],[-3,-1],[0,-1],[-2,-2],[0,-1],[-3,-2],[0,-2],[-1,-1],[-3,1],[-1,-2],[2,-1],[-1,-2],[-2,0],[-2,-1],[-2,0],[-1,-2],[-5,-3],[2,-3],[-2,-3],[-4,0],[-2,-3],[11,-2],[3,-2],[3,0],[2,-2],[4,-2],[5,-3],[1,-1],[2,-4],[5,-2],[1,-2],[4,-1],[3,-3],[-2,-1],[-2,-10],[-5,-3],[-4,-4],[-2,0],[-1,-7],[-1,-1],[-3,-1],[6,-15],[3,-4],[0,-5],[-5,-3],[1,-4],[-3,-2],[-7,-1],[-4,2],[2,-1],[1,-1],[-4,-5],[-1,-7],[-7,-10],[-9,-7],[-4,-6],[-2,-7],[-10,-11],[2,-5],[-1,-5],[4,-3],[2,-6],[3,-16],[-7,-9],[-4,-10],[0,-4],[3,0],[2,-1],[3,-4],[0,-3],[5,0],[1,-2],[-1,-2],[2,-2],[0,-2],[3,-1],[1,1],[4,-2],[3,-1],[2,5],[4,4],[3,6],[2,3],[8,4],[4,-2],[3,0],[5,-6],[-1,-8],[1,-2],[-2,-1],[0,-2],[-4,-1],[2,-5],[-8,-8],[-8,-4],[-3,-2],[-8,0],[-2,-1],[-1,-3],[3,-4],[1,-9],[7,-7],[3,-6],[7,0],[2,0],[10,-1],[3,-1],[3,0],[3,-3],[6,0],[5,-2],[3,-1],[2,-3],[1,-3],[-1,-4],[2,-3],[1,-2],[5,-1],[4,6],[1,1],[2,0],[1,1],[3,-2],[4,0],[8,-3],[14,-3],[13,-5],[9,-1],[7,0],[5,-2],[7,2],[5,1],[9,-2],[4,0],[0,-5],[-2,-3],[5,-10],[4,1],[3,2],[1,3],[1,3],[8,6],[3,0],[3,-4],[2,1],[1,1],[6,3],[1,3],[-1,4],[8,6],[1,1],[-1,5],[-3,2],[0,2],[8,7],[3,1],[1,-1],[2,-1],[8,0],[18,-6],[1,2],[4,3],[11,6],[9,11],[4,2],[4,-2],[9,-2],[4,-11],[0,-10],[-1,-5],[-12,-10],[-8,-4],[-2,-3],[1,-5],[5,-9],[6,-17],[2,-3],[-4,-11],[13,0],[1,-1],[2,2],[3,1],[4,-2],[1,1],[6,-1],[1,-1],[1,-6],[10,-12],[-5,-1],[-3,-3],[-1,-2],[2,-1],[0,-4],[17,-8],[3,-1],[6,0],[3,2],[6,8],[0,1],[-2,0],[0,1],[1,6],[4,5],[4,0],[6,-3],[7,-10],[2,0],[0,-1],[2,-1],[4,0],[0,-2],[-4,-4],[-1,-2],[2,-2],[4,-1],[5,2],[0,7],[9,2],[-1,4],[3,4],[-1,3],[2,1],[3,0],[13,-1],[14,-6],[9,2],[1,-2],[-1,-1],[-6,-2],[-1,0],[-5,-3],[-5,-2],[-2,-1],[-2,-5],[3,-3],[3,-1],[5,4],[2,0],[3,-2],[1,-3],[4,-5],[4,-2],[3,3],[2,7],[3,2],[4,1],[8,-1],[4,-2],[2,6],[3,1],[3,-2],[2,-4],[5,-1],[0,-3],[3,-2],[0,-1],[9,-2],[1,-1],[0,-2],[-1,-1],[-7,-2],[-8,-4],[0,-2],[1,-2],[6,-2],[3,-1],[3,2],[1,2],[-1,4],[2,2],[9,1],[7,-1],[3,1],[3,4],[3,1],[2,-2],[0,-3],[-2,-3],[0,-2],[6,-2],[4,-3],[4,0],[2,2],[2,5],[7,3],[4,7],[3,1],[2,-1],[1,-1],[1,-3],[1,-3],[13,-8],[1,-3],[2,-5],[6,-4],[0,-3],[-2,-7],[1,-7],[-8,-9],[-1,-5],[-4,-7],[0,-6],[-1,-1],[-3,0],[-5,3],[-11,-2],[-7,-2],[-1,-2],[0,-2],[6,-3],[8,-2],[6,-11],[2,-2],[2,0],[3,1],[4,6],[6,1],[5,2],[3,1],[3,-2],[4,-5],[-1,-4],[1,-2],[3,-1],[6,1],[2,-2],[1,-3],[4,-2],[5,0],[10,-8],[8,-4],[2,0],[3,1],[1,1],[4,1],[9,-2],[2,-2],[5,-3],[0,-4],[-1,-2],[-6,-3],[-2,-3],[0,-3],[3,-3],[-1,-4],[-1,-1],[-3,0],[-5,3],[-4,1],[-3,-1],[-2,-3],[3,-11],[10,-3],[11,-9],[6,-1],[9,0],[21,0],[8,2],[8,2],[13,7],[3,-2],[2,0],[2,-1],[1,1],[-2,0],[1,1],[1,0],[1,0],[0,-2],[1,0],[0,1],[1,-2],[1,1],[-1,-1],[1,-1],[1,-3],[1,-1],[1,-2],[1,-1],[-1,-1],[1,0],[-1,-1],[1,0],[-1,-1],[2,-1],[0,-2],[10,1],[5,0],[-1,-2],[0,-4],[-3,-2],[-2,-7],[4,-1],[1,-3],[-3,-3],[-2,-4],[0,-6],[8,-1],[1,0],[9,1],[0,-3],[1,-1],[-2,-1],[2,-3],[-1,-1],[1,-1],[-1,-2],[1,0],[2,-11],[-1,-3],[-4,-2],[1,-5],[3,-1],[1,-11],[-2,-4],[-5,-1],[-10,-5],[-7,-1],[-1,1],[-21,2],[-10,2],[-8,0],[3,8],[1,9],[1,1],[-1,1],[0,2],[-1,0],[2,2],[-1,2],[1,2],[2,0],[-1,2],[2,0],[0,1],[2,1],[-1,1],[1,1],[-1,1],[1,0],[0,2],[-1,2],[0,3],[-2,3],[0,1],[1,1],[-1,0],[-1,2],[-1,0],[-1,3],[-1,0],[0,3],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-7,-1],[-2,-1],[-2,0],[-3,-5],[-3,-1],[0,-2],[-3,-3],[-1,-3],[-3,0],[0,-2],[-7,-1],[-6,2],[-6,0],[-6,-1],[-3,-2],[-3,0],[-5,-1],[-4,0],[-2,0],[-3,-5],[-4,0],[-7,-3],[-9,4],[-5,-2],[-4,0],[-4,3],[-7,4],[-12,-7],[-6,1],[-4,1],[-16,1],[1,5],[-3,7],[0,3],[-2,3],[1,2],[-4,-1],[-2,-3],[-3,-1],[2,-4],[0,-1],[1,-5],[2,-2],[-1,-3],[-6,-6],[-3,0],[-2,-1],[-2,-2],[1,-4],[-2,-4],[-3,-3],[-1,-3],[0,-9],[7,-13],[0,-1],[1,1],[5,-7],[0,-5],[-1,-5],[-1,0],[-2,-2],[0,-3],[0,-2],[2,-2],[-4,-2],[-1,-2],[-3,-2],[-3,-2],[0,-3],[-2,-5],[-5,-3],[-4,1],[0,-2],[-2,0],[-1,1],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,-4],[-1,-1],[0,-2],[-6,-3],[-1,-6],[2,-2],[-1,-5],[0,-4],[-3,-2],[-2,-9],[-3,-4],[-1,0],[-1,-2],[-4,-2],[-4,0],[-3,1],[-4,-2],[-3,0],[-3,0],[-1,1],[-2,1],[-7,-3],[-7,-2],[-8,-3],[2,-5],[4,-5],[3,-2],[2,-2],[3,-2],[1,-4],[2,-1],[0,-6],[-3,-6],[0,-3],[1,-1],[1,-4],[1,-1],[1,-2],[1,-3],[-2,-2],[0,-1],[0,-8],[-8,-12],[-3,-7],[14,1],[6,0],[6,-1],[-7,-6],[-10,-10],[0,-2],[1,-1],[1,-4],[-1,-3],[0,-8],[-2,-3],[1,-2],[-2,-2],[-1,-4],[-3,-4],[-5,-2],[-3,-4],[-1,-1],[-1,1],[-1,-3],[-4,-3],[0,-2],[-1,-1],[0,-3],[-2,-3],[1,-1],[1,-1],[1,-3],[-1,-1],[2,-8],[-1,-4],[1,0],[3,-2],[8,-2],[2,-1],[0,-3],[-3,-3],[-4,-1],[-2,-3],[-3,1],[-4,-1],[-1,1],[-1,0],[0,-2],[-3,-3],[0,-4],[-2,-1],[-1,-3],[-1,0],[-2,-4],[1,-4],[2,-4],[-1,-7],[2,-4],[-3,1],[-2,-1],[-10,0],[-4,1],[-8,0],[-5,-3],[-3,-5],[-3,-1],[-3,0],[1,-1],[-10,0],[-1,0],[-6,1],[-5,-1],[-6,2],[-2,0],[-14,-8],[-9,-3],[0,-1],[-1,1],[-1,-1],[-7,-4],[-7,-3],[-6,-4],[-7,1],[6,-5],[3,-5],[7,2],[11,-2],[8,-3],[7,-6],[11,0],[5,-7],[10,-4],[7,-5],[8,-10],[4,-4],[2,-3],[-7,-2],[-5,-1],[-5,-1],[-13,3],[-8,-7],[-9,-2],[-3,1],[-1,-2],[1,-3],[-2,-2],[-3,0],[-2,-2],[7,-3],[4,-1],[0,-1],[-1,-1],[-9,-3],[-14,-8],[-4,-1],[-5,-5],[-1,-3],[-2,-1],[-3,-10],[-3,-5],[2,-1],[-1,-2],[-1,-3],[1,-2],[2,0],[2,-3],[-2,-1],[0,-2],[-14,-8],[-4,-4],[-3,-2],[0,-3],[-18,-11],[-3,-3],[3,-3],[5,-8],[0,-3],[3,-3],[-2,-1],[8,-11],[-2,-9],[0,-6],[1,-3],[0,-1],[-3,0],[-2,-2],[-2,1],[-3,-2],[-1,0],[-3,-1],[1,-2],[-3,0],[-1,-1],[-3,2],[1,0],[0,2],[-2,0],[0,-1],[-1,-1],[-1,3],[-3,-2],[-2,1],[0,-1],[-4,-2],[-1,-2],[-4,0],[-1,-2],[-2,1],[-1,0],[-1,-1],[2,-2],[-2,0],[-1,-1],[-3,-1],[1,-1],[2,0],[-2,-3],[-2,0],[1,-2],[-1,-3],[-13,0],[-16,-22],[-1,0],[-1,3],[-3,-2],[-2,3],[-3,-2],[-3,1],[-2,-2],[2,-3],[-2,0],[0,-6],[-3,0],[-1,-2],[-1,1],[-1,-1],[0,-2],[-2,-1],[0,-1],[-1,-1],[-2,1],[-1,-1],[1,-2],[-1,-1],[-1,1],[-1,-2],[2,-1],[0,-1],[-2,-1],[-7,0],[-1,2],[-2,0],[1,1],[-2,2],[-2,-1],[0,2],[-3,0],[0,3],[-2,0],[-2,-2],[-2,-1],[-2,1],[-1,2],[-1,-1],[-1,-1],[-2,2],[0,-2],[-1,-1],[0,-1],[-2,-1],[0,2],[-3,-4],[-2,-1],[-1,0],[0,1],[-2,1],[-2,-1],[-2,1],[-3,-2],[-2,-1],[-2,1],[-2,-1],[-6,0],[0,-2],[-2,0],[0,1],[-1,-2],[-2,-1],[-6,3],[0,2],[-4,0],[-5,-1],[-3,1],[-1,-2],[1,0],[-1,-2],[1,0],[7,-6],[4,1],[5,-3],[0,-2],[-5,-2],[-9,1],[1,-1],[1,-19],[0,-3],[2,-3],[0,-2],[-1,-2],[0,-2],[-1,-1],[2,-12],[2,-2],[10,-7],[7,-14],[4,-5],[2,0],[2,-2],[6,-2],[1,-1],[0,-3],[1,-1],[4,-1],[4,-11],[16,-28],[7,-14],[11,-18],[1,-5],[5,-10],[9,-22],[6,-13],[-4,-3],[-2,0],[-1,-2],[-2,2],[-5,-5],[-5,1],[1,-3],[-2,-4],[-7,0],[-10,-5],[-7,0],[-10,-2],[-1,-2],[-7,-2],[-8,3],[-3,-3],[-6,-2],[-2,-3],[-9,-1],[-3,-3],[-3,-2],[0,-7],[3,-2],[-1,-1],[1,-2],[4,-5],[0,-6],[1,-4],[7,-5],[5,0],[1,-2],[2,1],[1,-1],[3,3],[1,-1],[2,3],[2,1],[4,1],[2,0],[1,1],[1,0],[2,-2],[2,0],[4,-2],[3,1],[1,-1],[3,0],[1,0],[3,2],[2,0],[4,1],[1,0],[-1,-2],[4,0],[1,2],[2,0],[0,1],[4,-1],[1,2],[1,-1],[2,0],[1,1],[5,0],[1,1],[2,-1],[-1,1],[2,1],[4,-1],[0,-1],[1,0],[1,1],[2,-1],[0,1],[3,2],[2,0],[1,-2],[2,1],[1,-1],[1,1],[0,2],[1,1],[1,-2],[2,1],[0,2],[2,0],[-1,1],[2,0],[2,1],[1,-1],[1,1],[3,0],[0,1],[3,-2],[0,2],[3,-1],[0,2],[4,-1],[7,0],[1,1],[3,5],[4,3],[2,0],[2,1],[3,-3],[1,1],[2,0],[0,2],[2,1],[2,2],[4,-2],[1,0],[0,1],[2,0],[1,1],[1,-1],[3,0],[0,1],[2,1],[0,1],[1,1],[2,-2],[3,1],[1,0],[2,2],[2,0],[1,1],[2,0],[0,1],[2,0],[2,-1],[1,1],[1,2],[-1,1],[2,1],[1,-2],[1,0],[-1,2],[1,0],[0,1],[2,0],[5,3],[-1,4],[1,1],[2,0],[-1,1],[1,2],[2,1],[0,1],[2,1],[-1,1],[1,1],[1,1],[-4,2],[-4,-1],[-2,2],[0,1],[1,1],[-1,2],[0,2],[-1,3],[-10,2],[-6,3],[-10,1],[-13,11],[3,5],[1,6],[0,1],[2,-1],[1,0],[-1,3],[7,0],[0,3],[17,1],[-5,13],[25,3],[17,6],[6,3],[5,1],[7,0],[2,2],[-1,4],[3,0],[1,-1],[3,0],[3,1],[0,1],[5,3],[2,0],[2,1],[1,1],[3,2],[4,-1],[1,-1],[3,0],[1,-2],[5,-2],[3,-1],[2,1],[1,1],[-1,1],[3,2],[4,7],[4,4],[11,1],[2,1],[-1,1],[7,1],[8,6],[-1,2],[2,6],[-1,4],[4,-1],[5,4],[3,-1],[0,5],[2,3],[3,0],[1,2],[-2,0],[3,6],[1,0],[2,3],[0,3],[2,1],[8,3],[7,7],[11,7],[3,0],[3,2],[25,4],[20,5],[7,1],[2,2],[4,0],[0,-1],[3,0],[3,1],[4,3],[10,1],[7,-1],[9,-4],[7,0],[3,-2],[3,-1],[0,-1],[3,-4],[1,-2],[6,-7],[0,-2],[2,0],[0,-1],[1,-1],[-1,-1],[0,-3],[3,-2],[3,0],[4,-4],[-1,-3],[0,-4],[2,-2],[1,-2],[-1,-1],[3,0],[0,-1],[3,-1],[0,-3],[2,-3],[2,-1],[-2,-4],[0,-2],[-2,0],[0,-1],[0,-1],[-1,0],[0,-3],[2,-1],[-4,-8],[1,-1],[-1,-3],[3,-1],[0,-2],[3,-1],[0,-3],[-1,-3],[0,-2],[-1,-2],[-2,0],[-2,-2],[-1,-5],[2,0],[1,-1],[1,0],[1,-2],[2,0],[5,-4],[4,-1],[4,1],[1,-1],[-1,-7],[-2,-2],[-3,-2],[-2,-3],[1,-2],[-1,-2],[-6,-6],[1,-3],[-2,-2],[-1,-3],[1,-5],[-3,-10],[-3,-6],[0,-5],[-2,-2],[1,-1],[-1,-1],[-5,-9],[0,-2],[-2,-4],[0,-3],[-3,-4],[1,-3],[-2,-4],[0,-2],[-3,-2],[0,-4],[1,-2],[5,0],[2,-2],[-6,-5],[-3,-7],[-3,0],[2,-5],[3,-3],[1,-4],[4,-3],[1,-3],[-1,-3],[0,-1],[5,-2],[1,-3],[-3,-4],[0,-3],[-8,-5],[-1,-5],[0,-3],[-7,0],[0,-1],[-2,0],[0,3],[-1,1],[-3,-1],[-3,1],[-1,-1],[-2,1],[-1,-1],[-1,0],[-1,-1],[-3,1],[0,-1],[0,1],[-2,1],[1,1],[-2,2],[1,1],[-3,0],[-2,2],[0,1],[-2,1],[-2,0],[-1,-2],[-9,0],[-2,3],[-3,0],[-2,2],[-3,0],[-1,1],[-2,1],[-1,0],[-1,0],[-2,-2],[-2,0],[0,-1],[-3,1],[0,-1],[-1,-1],[0,2],[-1,0],[-1,-1],[0,2],[-1,0],[-2,0],[0,1],[-3,0],[0,2],[-3,0],[0,1],[-1,0],[-2,1],[-1,-1],[0,1],[-5,-1],[0,-1],[-4,2],[-2,-2],[-4,-2],[0,3],[-2,0],[-4,-1],[-2,1],[5,-13],[1,-8],[-3,0],[-1,-2],[-2,-2],[-1,-5],[-3,-2],[0,-3],[-3,-7],[-4,-2],[-4,-5],[-1,-2],[3,-2],[-2,-7],[16,-9],[0,-2],[-8,-14],[-1,-7],[4,-6],[5,-1],[5,-2],[1,-3],[3,-1],[2,-5],[-32,-3],[-10,0],[1,-2],[-15,-1],[-2,-4],[-6,-1],[-22,4],[-14,1],[-14,-2],[-13,1],[-21,-2],[-27,0],[-6,-1],[-4,-1],[-7,-1],[-4,-1],[-4,1],[-9,-2],[-19,4],[-10,0],[-4,-1],[-2,1],[-6,0],[-10,2],[-36,-2],[-11,-2],[-5,-2],[-1,0],[-2,0],[-3,-2],[-2,-2],[-2,-3],[-8,-5],[-3,-6],[-11,-1],[-8,-5],[-13,-6],[-7,-1],[-17,-1],[-11,-1],[-11,1],[-6,-1],[-4,-2],[-4,-2],[-8,-7],[-2,-4],[-12,-6],[-36,-11],[-20,-14],[-29,-18],[-29,-21],[-6,-2],[-3,-1],[-50,13],[-11,-2],[2,-7],[-20,-9],[-7,-7],[-4,-2],[-4,-3],[-8,-1],[-3,-3],[-4,-2],[-4,-3],[0,-1],[-3,0],[-1,-3],[-2,-1],[-2,-4],[-2,0],[0,-1],[-2,-1],[-2,-2],[-2,0],[-2,-1],[-1,-4],[0,-1],[-2,-2],[0,-4],[-1,-1],[0,-2],[-2,-2],[-1,-1],[-2,-6],[-5,-4],[0,-2],[-2,-1],[0,-1],[-2,0],[-4,-5],[-1,0],[-2,-2],[0,-1],[-2,-1],[0,-1],[-6,-3],[-1,-2],[-3,0],[1,-1],[-5,-3],[0,-1],[-4,-1],[0,-1],[1,0],[0,-1],[-3,-1],[-3,-2],[-1,0],[0,-1],[-3,0],[-2,-3]],[[7811,5244],[0,2],[-10,2]],[[7733,5275],[0,2],[-1,3]],[[7222,5172],[-8,-1],[-12,-7]],[[7202,5164],[-7,-2],[-2,0],[-6,-2],[-18,-14]],[[6683,4992],[-11,2],[-4,-3],[-7,-8],[0,-2],[-2,-3],[2,-4]],[[6480,4767],[-6,-4],[-8,1]],[[6115,4826],[0,-1],[2,-2],[-5,-8],[-2,-1],[-1,-1]],[[6109,4813],[-3,-1]],[[6106,4812],[-2,-1],[-7,-2],[-3,0]],[[6094,4809],[-9,-4],[-10,2],[-3,-1],[-3,2],[-4,-1],[7,5],[0,4],[-1,2],[-1,9],[-2,3],[-4,3],[-3,5],[1,2],[-4,4],[0,1],[-3,5],[-1,3],[-4,5],[-1,9],[2,4],[-2,1],[0,6],[-2,4],[2,3],[-2,2],[-3,6],[1,4],[-3,2],[-1,4],[1,4],[-2,6],[1,2],[-2,1],[-3,-1],[-1,3],[-3,2],[-2,2],[-2,1],[-2,2],[-1,2],[-3,1],[-2,5],[-5,4],[1,3],[-1,3],[4,9],[0,4],[0,1],[2,-1],[3,3],[2,8],[-1,1],[2,2],[1,1],[-3,2],[-7,-1],[-6,4],[-4,1],[-1,-1],[-2,2],[2,4],[-3,0],[1,2],[0,2],[2,3],[-1,3],[3,1],[0,3],[1,0],[0,3],[-1,1],[0,1],[2,2],[0,3],[1,1],[1,1],[-1,2],[1,1],[-2,1],[-1,2],[1,2],[0,1],[-2,3],[0,2],[-2,1],[4,6],[0,3],[-2,1],[1,1],[-9,5],[-3,2],[-36,8],[-5,0],[-11,9],[-3,5],[-6,3],[-2,0],[0,1],[-2,0],[-1,0],[0,3],[-1,2],[-2,1],[-2,1],[5,8],[1,3],[6,9],[-1,0],[-1,2],[-3,0],[0,1],[-7,2],[-6,6],[-3,1],[-3,8],[-6,4],[-2,2],[-3,1],[-4,2],[-6,0],[0,1],[-6,2],[-2,0],[-9,2],[-9,5],[-8,8],[-9,2],[-6,5],[-4,2],[-2,4],[-3,0],[0,1],[-1,1],[-5,2],[-4,2],[-1,3],[-4,1],[-8,1],[-3,3],[-5,-1],[-3,2],[-1,3],[-6,-2],[-5,5],[-2,1],[-2,-1],[1,14],[8,23],[3,16],[2,6],[2,4],[12,18],[-1,5],[1,18],[-1,8],[-9,14],[1,7],[7,5],[27,3],[41,11],[6,7],[10,16],[6,14],[7,29],[-9,44],[41,15],[-11,39],[-5,2],[-10,0],[-3,1],[0,1],[-1,0],[-2,1],[-6,-2],[-5,2],[-6,-1],[0,-1],[-2,1],[-2,-1],[-1,1],[-1,0],[-1,1],[-2,-3],[-1,1],[-1,-2],[-2,0],[-2,0],[0,-1],[-2,0],[-1,-1],[-2,0],[-1,-2],[-4,-2],[1,-1],[-4,-2],[0,-1],[-2,-1],[-1,-2],[1,0],[0,-1],[-4,1],[1,-2],[-3,-1],[0,-1],[1,-1],[0,-2],[-5,0],[0,-1],[-2,0],[0,-2],[-2,1],[-2,-2],[-2,0],[-2,1],[1,-3],[-5,0],[-1,-1],[0,-1],[3,-1],[-2,-1],[-1,1],[-2,0],[-2,1],[-4,-3],[0,-1],[1,0],[-1,-2],[-3,2],[1,1],[-2,1],[-1,-2],[-4,-2],[-2,1],[-2,1],[1,-2],[0,-1],[-6,3],[-2,-2],[-4,-2],[0,-1],[-3,-1],[-2,-3],[-1,-2],[-2,-1],[-2,-4],[0,-4],[-2,-1],[0,-1],[3,0],[1,-2],[-1,-7],[-3,-5],[-2,-2],[0,-3],[1,-2],[-1,-4],[-5,-7],[-2,-3],[-7,-3],[-3,0],[-7,0],[-3,1],[-1,2],[-2,-1],[1,-2],[-1,0],[-4,1],[-11,-1],[-5,-4],[-5,2],[-4,-1],[-4,0],[-4,-2],[-2,-2],[-2,0],[-6,0],[-1,1],[-4,1],[-3,-2],[-1,0],[-8,3],[-7,3],[-4,0],[-2,-2],[-1,-2],[3,-9]],[[5167,1890],[30,12]],[[5217,1900],[14,8],[4,2],[3,-2],[3,-4]],[[5312,1883],[5,-4],[7,-1]],[[5338,1877],[2,-1],[1,-1]],[[5341,1875],[1,0],[10,3]],[[5638,1992],[2,-2],[1,-5]],[[5650,1976],[2,-2],[2,-3]],[[5654,1971],[0,-1],[1,-2]],[[5671,1948],[1,-5],[2,-3],[3,-1],[3,-1]],[[5927,1891],[19,21],[5,3],[8,2]],[[6229,1958],[2,1],[1,-2]],[[6319,1913],[3,-6],[4,0],[3,1]],[[6329,1908],[3,-1],[3,-4],[1,0],[1,2]],[[6384,1892],[13,1],[11,3]],[[6415,1903],[2,0],[2,-2],[2,-4]],[[6431,1890],[8,-6],[-1,-12]],[[6438,1855],[12,-11],[0,-2]],[[6450,1842],[0,-3],[-4,-10],[5,-4]],[[6458,1814],[5,-6],[-9,-7]],[[5927,1214],[-2,-3],[-11,-1]],[[5874,1229],[-6,6],[-5,-6]],[[5646,1257],[-5,1],[-3,2]],[[5638,1263],[-3,5],[-6,8]],[[5471,1400],[-10,3]],[[5461,1403],[2,1],[2,1],[5,1]],[[5470,1406],[8,5],[7,6],[14,26],[1,5],[-3,15],[1,5],[1,3]],[[5499,1471],[2,2],[1,5]],[[5502,1478],[3,4]],[[5505,1482],[-2,9],[5,10]],[[5519,1527],[-2,3],[0,2]],[[5361,1667],[2,5],[0,2],[-2,2]],[[5350,1711],[-2,19],[-1,2],[-10,9]],[[5229,1831],[-10,4],[0,4]],[[5195,1878],[-4,5],[-4,2]],[[8357,592],[1,0],[-6,12],[-1,0],[-7,6],[2,1],[5,-1],[2,3],[7,1],[13,5],[1,-2],[17,9],[-3,3],[-13,5],[6,2],[11,9],[5,-4],[9,7],[3,-3],[1,2],[5,3]],[[8415,650],[10,11],[-2,1]],[[8423,662],[-14,7],[-6,1],[-9,7],[-9,13],[1,0],[-3,6],[7,3],[-7,8],[3,2],[-6,7],[-3,-2],[-9,6],[-25,5],[-2,4],[-1,3],[-2,3]],[[8338,735],[-4,2],[-4,-1],[-2,6],[-8,1]],[[8253,784],[-4,-3],[-4,-2],[-4,0]],[[8237,782],[1,4],[5,5],[1,7],[1,1],[15,2],[1,1],[3,4],[5,4],[0,3],[-4,5],[1,6]],[[8330,870],[3,4],[2,7]],[[8341,890],[3,4],[1,4],[0,3],[-2,3],[-4,1],[-3,0],[-2,0]],[[8329,909],[-11,6],[-4,4]],[[8314,919],[-3,5],[-1,7]],[[8221,986],[-3,9],[1,1],[3,1]],[[8289,1038],[7,-6]],[[8296,1032],[2,0],[2,0],[6,-7]],[[8395,1051],[9,2],[4,-3]],[[8408,1050],[2,1],[3,4],[0,6]],[[8433,1066],[8,4],[1,1],[3,7],[-19,4]],[[8375,1144],[2,3],[6,-3]],[[8383,1144],[2,0],[2,-3],[2,-1],[27,1],[1,0],[5,-2],[2,0],[1,-2],[5,-4],[1,-2],[2,0],[0,-2],[1,0],[0,-1],[2,-1],[3,-5],[3,-1],[3,-4],[0,-1],[3,0],[1,-5],[2,-2],[0,-2],[3,0],[3,-2],[2,-4],[2,0],[1,-1],[3,0],[1,-2],[1,1],[3,-1],[2,1],[1,0],[3,0],[5,-2],[0,-1],[2,0],[4,-1],[6,-1],[1,-1],[-1,-1],[2,-1],[0,-1],[5,1],[0,-1],[2,0],[3,-2],[-1,-1],[1,-1],[3,1],[4,-2],[2,0]],[[8514,1085],[1,-1],[0,4]],[[8515,1088],[-2,1],[-3,3],[-4,2],[0,3],[-1,1],[10,13],[1,3],[-1,1],[0,3],[0,2],[-3,1],[-4,-1],[-1,2],[-5,3],[1,3],[-3,3],[-3,0],[-2,-2],[-2,2],[5,5],[4,11],[0,2],[1,6],[1,0]],[[8504,1155],[0,4],[3,2]],[[8507,1161],[6,1],[2,1]],[[8515,1163],[8,0],[3,-1]],[[8526,1162],[-1,-1],[4,0],[2,1],[1,-2],[4,-2],[2,2],[1,0],[0,-2],[3,0],[2,2],[0,-1],[2,1],[7,-4],[4,1],[2,-1],[1,-2],[2,0],[3,-3],[2,0],[3,-3],[0,-1],[3,0],[4,-7],[1,-1],[1,1],[0,-2],[2,-1],[1,-2],[7,-1],[1,-1],[1,1],[4,-2],[1,1],[7,-1],[7,0],[-1,5],[12,4],[1,0],[1,1],[2,1],[1,-1],[2,1],[5,5],[8,3],[1,3],[4,0],[3,1],[4,1],[4,-2],[1,1],[8,-3],[1,-1],[3,0],[3,-1],[2,1],[6,-3],[0,-1],[1,-1],[1,6],[-2,2],[0,4],[3,0],[3,-1],[2,4],[6,5],[5,3],[3,1],[5,3],[8,2],[-1,3],[0,3],[0,1],[-2,-1]],[[8713,1181],[-2,4],[3,3]],[[8714,1188],[2,0],[3,3],[4,0],[1,1]],[[8724,1192],[13,-4]],[[8737,1188],[2,-1],[5,-3],[4,1],[3,1],[6,-1],[3,0],[2,1],[2,-1],[7,0]],[[8771,1185],[7,-2],[8,0]],[[8793,1180],[10,2],[6,-2],[7,-5],[3,-1],[2,1],[3,2],[3,4],[4,0]],[[8886,1183],[2,0],[1,-3]],[[8891,1167],[2,-1],[1,-2],[-3,-4],[-2,-1]],[[8889,1159],[-1,-3],[3,-1]],[[8893,1152],[4,1],[3,-1],[0,-1],[-3,-2]],[[8897,1142],[-3,-2],[1,-1]],[[8902,1136],[2,-1],[3,3]],[[8954,1159],[20,20]],[[8974,1179],[8,4],[5,-1],[2,-1],[5,-7]],[[9017,1163],[6,2]],[[9023,1165],[2,-1]],[[9025,1164],[2,-1],[12,4]],[[9039,1167],[5,-1],[-8,-9],[-6,-11],[-19,-47],[-3,-6],[-5,-5],[-8,-5],[-20,-6]],[[8975,1077],[-7,-4],[-5,-4],[-1,-2],[1,-3]],[[8963,1064],[-4,-2],[-6,-1],[-13,-3],[-4,0],[-4,-2],[-8,-5],[-8,-3],[-7,-1],[-12,-7],[-7,-3],[-7,-5],[-7,-1],[-3,-2],[-4,-1],[-2,1]],[[8867,1029],[-8,-1],[-11,-4],[-7,-1]],[[8841,1023],[-9,1]],[[8832,1024],[-2,1],[-1,5]],[[8829,1030],[2,4],[-2,2],[2,2],[-3,8],[-1,7],[-1,4],[3,3],[1,2],[-6,2],[-19,11]],[[8805,1075],[-8,7],[-8,11],[-4,3],[-3,1],[-3,0],[-6,-3],[-1,-2]],[[8772,1092],[0,-8],[-1,-4]],[[8771,1080],[-2,-2]],[[8769,1078],[-4,-1],[-5,2],[-4,2],[-10,11],[-3,3],[-3,1],[-9,1]],[[8731,1097],[-10,-1],[-5,-1],[-4,-2],[-1,-3],[2,-2]],[[8713,1088],[6,-16],[5,-23],[0,-9],[-1,-5],[-2,-6],[-14,-18],[-1,-3],[1,-4],[2,-4],[10,-11],[7,-6],[16,-9],[6,-7],[7,-9],[5,-4],[15,-9],[3,-3],[1,-4],[0,-4],[-3,-4]],[[8776,930],[1,4],[-31,25],[19,-28],[-9,-11],[-3,-2]],[[8753,918],[-9,-2],[-3,-2],[-3,-4],[-1,-4]],[[8737,906],[1,-7],[-1,-2],[-1,-5],[5,-11],[13,-13],[8,-4],[-7,-4],[-2,2],[-20,20],[-7,-3],[18,-25],[-5,-4],[-98,-100],[-21,-31],[-218,-114],[-10,-3],[-35,-10]],[[6952,629],[-14,4]],[[6938,633],[-31,3],[-10,0],[-21,-4],[-27,-7]],[[6849,625],[-8,-1],[-14,-2]],[[6827,622],[-13,1],[-9,-4],[-16,-10]],[[6789,609],[-4,-2],[-7,0],[-3,-4]],[[6775,603],[0,-2]],[[6775,601],[-3,3],[-3,2],[-9,5]],[[6673,732],[-7,3],[-10,1]],[[6471,725],[-48,-3],[-21,-3],[-11,-3]],[[6267,667],[-2,-1],[-1,-2],[-1,-1],[-7,-3]],[[6254,660],[-17,-8],[-6,-2],[-2,0]],[[6167,744],[-3,3],[0,2],[0,3]],[[6164,752],[14,-3]],[[6197,749],[8,0],[7,1]],[[6212,750],[6,4],[2,3]],[[6220,757],[0,6],[4,3]],[[6223,767],[2,1],[1,2]],[[6226,770],[2,1],[1,4]],[[6235,794],[1,1],[-1,2]],[[6223,875],[-1,4],[-5,3]],[[6217,882],[-5,1],[-7,4]],[[6086,1062],[2,7],[12,0]],[[6100,1069],[14,-2],[10,-3],[8,-4]],[[6137,1059],[1,-1],[4,0]],[[6560,1258],[8,16]],[[6568,1274],[3,-2],[4,-1],[14,4],[30,1]],[[6619,1276],[4,-2],[11,-6],[7,-2],[7,0],[11,2],[3,0],[3,-1],[2,-2],[1,-5],[4,-5]],[[6672,1255],[-1,-5],[2,-3],[1,-1],[2,1],[1,1],[-1,1],[1,1],[3,-6],[0,-2],[32,-17],[7,-7],[10,-21],[39,-57],[4,-2],[6,-2],[5,-2],[4,-1],[7,-2],[2,-6],[5,-3],[5,-1],[1,-1],[6,-12],[7,-6],[3,0],[7,-2],[3,-1],[3,-1],[16,2],[6,0],[4,-4],[3,-8],[1,-2],[10,-7],[6,-2],[4,0],[4,-2],[3,-3],[1,1],[-1,2],[1,1],[9,-3],[5,-4],[3,-1],[6,5],[3,5],[2,2],[13,-14],[3,-4],[3,-1],[3,-1],[4,1],[14,2],[13,3],[4,-1],[7,-3],[5,0],[0,-2]],[[6991,1060],[4,-2],[6,-1],[2,1]],[[7003,1058],[2,-2]],[[7005,1056],[5,-3],[-4,-3]],[[7006,1050],[-10,0],[-6,-3],[0,-3],[-3,-1],[-4,-7],[-1,-6],[2,-7],[-13,-3],[-6,-4],[1,-7],[-1,-5],[-2,-6],[-1,-8],[0,-5],[2,-4],[0,-3],[-1,-3],[-4,-3],[0,-1],[-4,-3],[2,-2],[0,-3],[2,-4],[2,-3],[5,-6],[4,-1],[0,-4],[-1,-6],[-2,-3],[3,0],[2,-3],[-2,-1],[0,-9],[1,-5],[4,-1],[0,-2],[-3,-1],[3,-5],[-2,-6],[0,-6],[8,1],[1,-1]],[[6982,897],[-2,-6],[0,-3]],[[6980,888],[1,-3],[-1,-2]],[[6980,883],[1,-1]],[[6981,882],[5,-5],[7,-1]],[[6993,876],[14,-3],[10,-5],[2,-3],[5,-2],[8,-2]],[[7032,861],[5,-3],[1,-1],[-3,-3],[-3,-7]],[[7032,847],[0,-11],[1,-4]],[[7033,832],[5,-4]],[[7038,828],[2,-2],[7,-3],[3,0],[5,3],[3,1],[9,5]],[[7067,832],[11,-1],[5,0],[1,1],[6,1]],[[7090,833],[8,0],[5,-1],[9,3],[5,0]],[[7117,835],[3,1]],[[7120,836],[2,0],[10,9]],[[7132,845],[5,-3],[2,-4],[5,-1],[3,-4],[2,0],[9,-5],[4,-5],[5,-1],[3,-4],[15,-1],[2,-1],[2,-2],[7,-1]],[[7196,813],[5,2],[2,0],[2,-3],[3,-7],[0,-11]],[[7208,794],[-1,-4],[0,-4],[5,-19],[-3,-3],[-3,1],[0,-3],[3,-5],[-10,-3],[-3,-3],[-1,-4],[-2,-2],[0,-2],[2,-6],[5,-4],[6,-8],[0,-3],[-2,-3],[0,-1],[3,-9]],[[7207,709],[0,-6],[4,-4]],[[7211,699],[5,-4],[1,-1],[-1,-3]],[[7216,691],[-4,-4],[-5,-7],[-5,1],[-5,-1]],[[7197,680],[-6,-2],[-4,-3],[-3,-8],[0,-5]],[[7184,662],[4,-7],[-2,-3],[-2,1],[-1,1],[-14,-1],[-2,1]],[[7167,654],[-19,-2],[-10,-3],[-8,-3],[-6,-6],[-3,-7],[1,-6]],[[7122,627],[7,2],[-1,-5],[3,-8],[2,-1],[1,-6],[0,-3],[2,-4],[4,-3],[2,-3]],[[7142,596],[3,-4]],[[7145,592],[-3,-2],[-2,4]],[[7140,594],[-6,-3],[-2,5]],[[7132,596],[-3,-2],[-6,1],[-5,-1],[-8,-4],[-4,-3]],[[7106,587],[-6,2],[-2,2],[-4,6],[-7,-1],[-1,-2],[-9,-5],[-2,5],[-2,2],[-2,3],[-12,-7],[-3,4],[-9,-2],[-7,0],[0,1],[-7,3],[-11,6],[-3,7]],[[7019,611],[-10,1],[-12,1],[-13,4],[-9,3],[-23,9]],[[7199,601],[-4,-3],[-4,-5],[0,-5]],[[7191,588],[-4,-3],[-4,-7],[1,-6],[-2,-10],[-4,-4]],[[7178,558],[-3,-1],[-1,0]],[[7174,557],[-2,1]],[[7172,558],[-4,0],[-7,4],[-2,4]],[[7159,566],[-4,3],[-3,3]],[[7152,572],[-4,1],[-1,2],[1,5],[-1,9],[-2,3],[-3,4]],[[7122,627],[-1,5],[2,7],[4,5],[6,4],[9,3],[7,2],[15,1],[3,0]],[[7184,662],[0,6],[4,8],[4,3],[5,1]],[[7216,691],[1,4],[-6,4]],[[7211,699],[-4,5],[0,5]],[[7208,794],[0,9],[-4,10],[-2,2],[-6,-2]],[[7132,845],[-10,-9],[-2,0]],[[7117,835],[-5,0],[-8,-3],[-14,1]],[[7067,832],[-18,-9],[-8,2],[-3,3]],[[7033,832],[-2,5],[2,7],[-1,3]],[[7032,847],[2,5],[1,3],[3,2],[-6,4]],[[6993,876],[-5,1],[-3,1],[-4,4]],[[6980,883],[1,2],[-1,3]],[[6980,888],[0,4],[2,5]],[[7006,1050],[4,3],[-5,3]],[[7003,1058],[-4,0],[-4,1]],[[6995,1059],[6,7],[7,1],[5,3],[-1,6],[-1,2],[0,2],[1,1]],[[7012,1081],[6,5],[2,-1]],[[7020,1085],[3,-3],[0,2],[7,-9],[2,1],[1,0],[2,1],[3,-2],[2,-2],[2,-1],[11,8],[7,-3],[5,-1],[15,-7],[4,1],[-2,-10],[-3,-6],[-2,-5],[1,0],[-6,-15],[14,-6],[0,3],[3,1],[8,-2],[0,-1],[8,-1],[0,10],[1,3],[2,1],[1,6],[2,-1],[1,-1],[2,0],[1,-5],[2,-3],[5,2],[0,-1],[5,1],[-1,1],[3,1],[1,1],[30,-4],[66,10],[2,-3],[7,-1],[5,-2],[5,0],[11,1],[2,9],[4,1],[8,-1],[-1,3],[1,7],[-1,0],[-5,0],[-1,24],[1,1],[0,3],[-3,0],[-1,3],[-2,1],[0,6],[-3,0],[0,9],[-1,1],[-4,5],[3,1],[2,4],[3,2],[-3,1],[3,2],[2,4],[-7,3],[3,3],[-6,5],[8,10],[-5,3],[1,0],[-2,2]],[[7252,1156],[9,2],[-2,2]],[[7556,1103],[9,-21]],[[7567,1079],[1,-6],[4,-8]],[[7594,1006],[10,-15],[3,-3]],[[7666,975],[5,-4],[11,-18]],[[7682,953],[1,-5],[-5,-3]],[[7743,900],[5,1],[2,-2]],[[7786,856],[2,-5],[3,-2]],[[7794,847],[1,-3],[1,-6],[-1,-4]],[[7791,821],[1,-2]],[[7701,746],[-5,7],[-15,10],[-10,11]],[[7671,774],[-16,12],[-1,2],[-1,3],[5,8]],[[7658,799],[-4,6],[-1,7],[-11,0]],[[7629,811],[-12,1],[-1,-5]],[[7567,797],[-3,-2],[-2,1],[-5,3]],[[7557,799],[-12,-3],[-9,0]],[[7404,734],[-2,0],[0,-1]],[[7394,719],[-1,-11],[2,-6]],[[7420,665],[5,-11],[0,-1],[-8,-1]],[[7423,603],[-32,1],[-15,2]],[[7376,606],[-10,2],[-13,3]],[[7353,611],[-4,2],[-5,4],[0,4],[-5,0]],[[7339,621],[-1,-2]],[[7338,619],[-2,-1],[-3,0],[-4,1]],[[7329,619],[-2,-1],[-2,-3],[-13,5],[-10,-7],[-4,1],[-4,-2],[-1,-1],[-2,-5],[-3,0],[-1,2],[-15,6]],[[7272,614],[-2,10],[-8,0]],[[7262,624],[-3,-2],[0,-6]],[[7259,616],[-4,0],[-3,-1],[-4,-2],[-4,-4],[-5,-1],[-9,-2],[-3,1],[-5,1],[-4,0],[-2,0],[-1,-3],[-2,-1],[-5,0],[-3,-1],[-6,-2]],[[6995,1059],[-4,1]],[[6672,1255],[-3,4],[-1,5],[-2,3],[-6,1],[-13,-2],[-9,1],[-7,2],[-8,6],[-4,1]],[[6568,1274],[5,9]],[[7246,1170],[7,-6],[8,-6],[-9,-2]],[[7020,1085],[-2,1],[-6,-5]],[[5499,1471],[-2,-6],[3,-13],[0,-7],[-14,-27],[-7,-6],[-9,-6]],[[5461,1403],[-3,2]],[[5450,1397],[-7,-2],[-2,-2]],[[5343,1158],[-161,-17]],[[5182,1141],[-9,13],[-3,10],[-2,9],[-4,0],[-3,2],[-2,3],[-6,13],[1,3],[-5,12],[0,5],[-2,2],[1,0],[0,3],[1,0],[-1,12],[-2,0],[1,1],[-8,2],[0,3],[-1,-1],[-1,1],[-7,-5],[-14,-5],[-15,-7],[-7,-2],[-9,-2],[-15,-1],[-14,2],[4,8],[1,4],[7,10],[4,7],[1,3],[-3,4],[10,2]],[[5080,1252],[-1,2],[-12,3],[-3,2]],[[5064,1259],[-4,1],[-4,4],[-9,5],[-14,10],[-4,-6],[-6,2],[-3,2],[0,1],[-22,10],[-3,3],[-2,2],[-5,3],[2,4],[-6,1],[-11,5],[-3,-1],[0,-2],[-6,-4],[-5,6],[-6,-4],[-4,2],[-3,2],[-8,1]],[[4938,1306],[-6,0],[0,2]],[[4935,1309],[3,2],[2,4]],[[5099,1374],[3,2],[3,2]],[[5482,1481],[20,-3]],[[5064,1259],[3,-2],[10,-3],[3,-2]],[[5182,1141],[-117,-11],[-54,-19],[-50,-26],[-33,-30],[-4,-46]],[[4769,1152],[-1,1],[-2,-1],[-1,1],[-2,1]],[[4751,1155],[-7,0],[-6,3]],[[4738,1158],[-3,0],[3,13]],[[4799,1306],[6,-1],[3,1]],[[4808,1306],[6,-1],[0,-3]],[[4830,1301],[4,-2],[2,2]],[[4870,1296],[3,-1],[2,1],[2,1],[4,0]],[[4881,1297],[3,1],[7,-1]],[[4907,1299],[3,-3],[1,0],[0,1]],[[4923,1301],[9,6],[1,-1],[5,0]],[[8396,1340],[4,1],[11,17]],[[8326,1468],[-15,-13],[-4,-2]],[[8307,1453],[-4,0],[-9,1],[-14,6]],[[8256,1467],[-6,1],[-1,1],[2,4]],[[8248,1479],[3,3],[-3,2]],[[8248,1484],[0,2],[5,4]],[[8249,1492],[0,3],[-5,5],[-1,9],[1,5],[10,8]],[[8250,1525],[2,4],[17,18]],[[8180,1995],[10,-2]],[[8207,2002],[17,5],[12,0]],[[8661,1644],[1,1],[2,0]],[[8666,1646],[7,-1]],[[8680,1642],[1,-1],[2,-4]],[[8725,1628],[2,2],[1,0],[0,-1]],[[8738,1593],[1,-4],[-1,-4],[-5,-3]],[[8707,1548],[-2,-3],[-1,-2],[-5,-2]],[[8749,1505],[9,4],[11,-1]],[[8791,1512],[3,-1],[2,-2],[4,-7]],[[8800,1502],[-1,-3],[-7,-5]],[[8761,1435],[0,-3],[-2,-1],[1,-1]],[[8758,1426],[-2,-2],[3,-6]],[[8691,1435],[-13,-3],[1,-6]],[[8644,1384],[-15,8],[-1,-3],[-3,-6]],[[8625,1383],[-4,-19],[3,-6]],[[8624,1358],[0,-3],[2,-1],[3,1]],[[8652,1272],[-1,-4],[-6,-5],[1,-2],[2,-2],[5,1]],[[8679,1230],[3,-4],[2,-1],[8,-3]],[[8692,1222],[3,0],[3,1],[4,-3],[1,-2],[0,-4]],[[8703,1214],[2,-3],[5,1]],[[8720,1210],[2,-1],[3,-6],[9,0]],[[8734,1203],[12,-7],[5,0],[1,0],[0,2],[1,1]],[[8760,1196],[0,-5],[1,-1]],[[8761,1190],[2,-2],[3,0]],[[8766,1188],[5,-3]],[[8737,1188],[-8,3],[-5,1]],[[8714,1188],[-3,-4],[2,-3]],[[8526,1162],[-3,2],[-8,-1]],[[8507,1161],[-3,-2],[0,-4]],[[8515,1088],[0,-4],[-1,1]],[[8383,1144],[-6,3],[0,-1]],[[8375,1147],[-4,1],[-6,3]],[[8309,1200],[-6,3],[-3,2]],[[8300,1215],[-2,3],[4,1]],[[8315,1233],[15,6],[4,4]],[[8398,1303],[3,3],[2,1],[0,4]],[[6775,9431],[429,166],[-1,-1],[47,12],[51,16],[14,4],[5,0]],[[7458,8477],[-10,-6],[-3,-3],[-18,-8]],[[6956,8710],[-4,1],[-2,3]],[[6760,9087],[-1,-2],[1,-5],[-2,-2],[-3,-1],[-6,0]],[[6739,9081],[-7,1],[-5,3]],[[6722,9084],[-5,-2],[-2,0],[-5,3]],[[6710,9085],[-4,2],[-4,11],[0,9],[-4,1]],[[6283,412],[5,2],[2,1],[0,4]],[[6299,425],[6,4],[8,3],[20,3]],[[6743,577],[4,-2],[4,2],[1,2]],[[6752,579],[3,0],[2,2],[2,3]],[[6759,584],[13,8],[2,4],[1,7]],[[6789,609],[13,9],[11,5],[2,0],[12,-1]],[[6849,625],[33,9],[20,2],[25,-1],[11,-2]],[[6952,629],[17,-7],[17,-6],[18,-4],[15,-1]],[[7106,587],[4,4],[11,3],[8,0],[3,2]],[[7132,596],[2,-5],[6,3]],[[7140,594],[2,-4],[3,2]],[[7145,592],[2,-3],[1,-9],[-1,-4],[1,-2],[4,-2]],[[7159,566],[2,-4],[7,-4],[4,0]],[[7174,557],[4,1]],[[7191,588],[0,3],[1,4],[4,5],[3,1]],[[7259,616],[-1,6],[4,2]],[[7262,624],[8,0],[2,-10]],[[7329,619],[6,-1],[3,1]],[[7339,621],[4,0],[1,0],[0,-3],[3,-4],[6,-3]],[[7353,611],[23,-5]],[[7376,606],[23,-3],[13,0],[31,-1],[34,-8]],[[7820,430],[1,1],[18,6]],[[7864,437],[46,-45],[5,-6],[4,-6]],[[7919,380],[0,-4]],[[7919,376],[3,-5],[1,-5],[-2,-8],[-3,0],[-3,-1]],[[7915,357],[-6,3],[-6,0],[-5,-5],[-4,-2],[0,-5],[1,-2],[3,-2],[11,-3],[-1,-3],[0,-5],[-8,1],[-3,-1],[2,-3],[-1,-6],[1,-7],[-7,-15],[-2,-3],[5,-1],[7,1],[2,0],[5,0],[1,1],[5,-1],[4,-3],[5,-1],[6,-4],[-9,-8],[2,-12],[-1,-2],[1,-1],[1,-6],[-2,-7],[9,0],[-1,-4],[2,0],[3,-3],[2,1],[1,-1],[1,0]],[[7939,248],[1,-6],[0,-8],[-3,-5]],[[7937,229],[2,-8],[0,-6],[-3,-4],[-3,-2],[3,-8],[0,-11],[8,-1],[-3,-5],[1,-2],[-1,0],[0,-5],[-1,-1],[2,-2],[0,-3]],[[7942,171],[2,-3],[-1,-1]],[[7943,167],[0,-2],[-2,-1],[0,-1],[-1,-1],[0,-1],[-1,-9],[-2,0],[-1,-2],[-6,1]],[[7930,151],[-4,-2],[-2,0]],[[7924,149],[-2,-1],[-2,2]],[[7920,150],[-5,1],[-3,-1],[-21,0],[-6,0],[-30,-10],[-11,0],[-1,-2],[1,-2],[-3,-2],[0,-1],[-16,-8],[-1,0],[-4,14],[-3,6],[-6,-1],[-6,-4],[-9,-4],[3,-3],[-1,-6],[5,-5],[-1,-10],[-26,-16],[10,-10],[-2,-1],[2,-2],[-3,-9],[-5,0],[-2,-1],[1,-1],[2,-5],[3,-3],[1,0],[1,-2]],[[7784,62],[-68,-23],[-4,9],[16,14],[10,-7],[8,10],[22,22],[-28,11],[-14,-16],[-10,-11],[-4,-7],[-14,-4],[-24,-6],[-22,0],[-3,-8],[9,0],[17,0],[20,-1],[5,-11],[-78,-27],[-2,10],[6,4],[-2,8],[-10,0],[-19,-10],[-5,-8],[5,-11],[-2,0],[-2,1],[1,1],[-5,0],[-1,1],[0,2],[-2,2],[-12,6],[-5,4],[-9,6],[-10,3],[-4,1],[0,-1],[-6,2],[-5,0],[-4,2],[-5,1],[-2,-2],[-2,0],[-1,-1],[-1,0],[-1,0],[-4,1],[-33,-24],[-6,1],[-651,48],[-5,1],[-86,17],[-31,-1],[-22,-5],[-3,-1],[-22,2],[-68,32],[-68,75],[-24,28],[-5,9],[-13,13],[-33,39],[-3,5],[-13,9],[-19,21],[-134,91],[-3,13],[7,10]],[[8754,8074],[-2,-1],[-1,-1]],[[8729,8055],[-3,3],[-2,0],[-2,-2]],[[8703,8053],[-13,0],[-5,0]],[[8685,8053],[-10,3],[-5,6]],[[8519,8330],[4,4],[6,3]],[[8539,8367],[1,6],[6,3]],[[8567,8381],[2,1],[5,-3]],[[8634,8445],[2,2],[1,5],[2,1]],[[8679,8521],[2,1],[5,4]],[[8689,8530],[2,4],[0,5]],[[8691,8539],[1,1],[4,4]],[[8772,8559],[8,4],[8,2],[9,-6]],[[8797,8559],[37,-3],[4,-8],[3,-2],[10,-2],[12,-7],[16,-4],[5,-3],[1,-1],[1,-8],[2,-2],[3,-8],[0,-5],[5,-3],[1,0],[4,-1],[1,1],[2,3],[4,1],[3,-3],[7,-5],[3,0],[1,2],[2,0],[2,1],[4,0],[5,-2],[5,-5],[8,1],[3,1],[1,-3],[18,-6],[3,-2],[8,1],[1,0],[-2,-5],[5,-3],[1,-3],[3,-1],[3,-2],[3,-1],[-1,-1],[1,-1],[3,-1],[3,-2],[5,0],[2,-3],[4,0],[3,-3],[3,0],[3,-2],[2,0],[1,2],[3,0],[3,0],[4,-1],[3,-3],[3,0],[7,-2],[5,2],[3,5],[7,4],[5,0],[3,-1],[4,2],[1,2],[1,0],[2,2],[1,2],[-2,3],[1,2],[5,4],[6,3],[-1,2],[3,2],[5,2],[9,3],[0,3],[0,1],[3,1],[2,3],[3,-4],[2,-1],[4,1],[7,5],[4,1],[1,-2],[0,-3],[-2,-13],[-10,-22],[1,-11],[-2,-2],[-5,0],[-3,-1],[-1,-1],[-4,-7],[-3,-1],[-4,0],[-5,3],[-2,0],[-1,-1],[1,-9],[-5,-9],[-1,-7],[2,-1],[7,4],[9,4],[3,0],[2,-2],[-1,-4],[-3,-4],[-3,-10],[-5,-10],[-6,-6],[-2,-6],[-3,-3],[-12,-6],[-2,0],[-1,2],[-2,4],[0,2],[2,1],[7,-1],[3,1],[3,3],[-1,3],[-3,2],[-7,2],[-3,-1],[-6,-4],[-2,-2],[2,-8],[0,-10],[-2,-2],[-7,-1],[-2,-2],[-1,-2],[2,-5],[2,-3],[2,-1],[3,0],[8,4],[7,1],[6,0],[3,-2],[3,-2],[3,-5],[1,-2],[-1,-7],[3,-3],[42,-19],[6,-4],[9,-6],[1,-2],[-6,-9],[-8,-8],[0,-7],[-6,-3],[-2,-2],[-1,-2],[1,-2],[3,-2],[7,-1],[8,-2],[3,1],[2,-2],[0,-2],[-1,-2],[-8,-7],[-1,-2],[0,-5],[2,-3],[2,-1],[3,1],[9,5],[6,2],[6,-1],[5,-2],[6,-14],[2,-2],[6,-1],[0,-1],[-1,-2],[-16,-4],[-2,-2],[1,-1],[3,-2],[11,-3],[7,1],[3,-1],[4,-3],[1,-5],[4,-4],[-1,-2],[-2,-1],[-4,0],[-5,3],[-4,0],[-2,-1],[-2,-2],[-5,-3],[-2,0],[-3,2],[-5,-3],[-4,-1],[-2,-2],[4,-7],[4,-2],[6,0],[4,1],[4,4],[1,2],[3,2],[9,0],[4,-1],[2,-2],[3,-3],[0,-1],[-4,-2],[-4,-2],[-8,4],[-4,0],[-3,-2],[-1,-1],[-1,-3],[0,-3],[2,-2],[8,1],[7,-2],[11,-1],[2,0],[1,-2],[-2,-7],[-5,-4],[-2,0],[-3,5],[-2,2],[-7,-1],[-5,-2],[0,-2],[2,-3],[-2,-1],[-4,0],[-2,-1],[-3,-4],[1,-3],[2,-2],[4,1],[3,3],[0,2],[4,4],[0,1],[5,2],[2,-3],[-2,-10],[1,-5],[-8,-3],[-6,-5],[-3,-2],[-3,-3],[-4,-1],[-2,-1],[1,-4],[2,-1],[2,1],[5,2],[2,0],[0,1],[2,0],[2,0],[2,1],[1,0],[0,-2],[-3,-1],[-2,-2],[-1,-2],[1,-2],[1,0],[7,-2],[4,4],[3,1],[3,-3],[2,-4],[-4,-3],[-17,-7],[1,-2],[5,-2],[4,-3],[6,-1],[2,-3]],[[9190,8094],[-5,1],[-2,-2],[-1,-3]],[[9182,8090],[4,-4],[3,-9]],[[9191,8036],[0,-3],[-9,-1],[-2,-2]],[[9166,8013],[-1,-2],[-4,-5],[-2,0],[-8,0],[-3,-1]],[[9142,7997],[-3,-1],[-2,-1],[-2,1],[-2,2],[-3,5]],[[9053,8044],[-6,2],[-4,3]],[[9043,8049],[0,1],[-1,2]],[[9036,8065],[0,2],[-3,-1]],[[9033,8066],[0,4],[-1,-1]],[[9009,8073],[-1,5],[-2,-2],[-1,1],[0,1],[-1,0],[-2,-2]],[[8999,8075],[-2,-3],[-5,-1],[-1,0]],[[8978,8068],[-1,-3],[-2,-1],[-2,-1]],[[8957,8053],[6,-3]],[[8963,8050],[-2,-1],[-2,1]],[[8943,8050],[1,-3],[-1,0],[-3,1]],[[8937,8053],[-3,1],[-2,-2]],[[6964,7834],[4,-4]],[[6968,7830],[6,-1],[13,4]],[[6816,7170],[-30,-37],[-47,-22]],[[6432,6945],[-6,-9],[-9,-6],[-4,-7]],[[6413,6923],[-12,-10],[-3,-6]],[[6398,6907],[0,-10],[3,-5]],[[6462,6649],[1,-6],[2,-4]],[[6478,6633],[4,-1],[4,1],[5,-1],[1,-2],[-2,-10]],[[6490,6620],[-2,-4],[-5,-3]],[[5705,6303],[-7,1],[-12,10]],[[5672,6330],[-2,1],[-4,2],[-5,0]],[[5661,6333],[-12,-3],[-3,-4]],[[5602,6284],[2,-3],[-1,-4],[-6,-2]],[[5595,6270],[-5,-2],[-18,-16],[-5,-9]],[[5549,6228],[-7,-4],[-8,-9]],[[5534,6210],[-8,-12],[1,-7]],[[5527,6183],[0,-2],[-3,-6],[-3,-5],[-4,-3]],[[5517,6162],[-3,-5],[0,-6],[5,-13],[3,-3],[18,-7]],[[5551,6126],[0,-5],[-2,-12],[-3,-4]],[[5531,6100],[-6,2],[-2,-2]],[[5523,6100],[-7,-2],[-10,-8]],[[5508,6054],[-8,0],[-5,-2],[-4,-2],[-1,-1],[2,-6]],[[5517,5968],[3,-6],[3,-3],[1,-4],[-1,-5],[-2,-4]],[[5521,5946],[-19,5]],[[5251,5844],[-4,0],[-1,-1],[0,-3]],[[5246,5840],[5,-8],[1,-5],[-1,-3]],[[5251,5824],[-4,-3],[-4,-2],[-12,-3]],[[5231,5816],[-5,-3],[-4,-3],[-3,-4]],[[5219,5806],[-5,-2],[-3,0],[-4,0],[-8,6],[-2,0],[-2,-1],[-2,-18],[1,-6],[4,-9]],[[5203,5765],[1,-6],[-1,-4],[3,-6],[-2,-10]],[[5204,5739],[-3,-2]],[[5201,5737],[-2,-8],[-2,-3]],[[5197,5726],[-5,-3],[-12,-4],[-5,-1]],[[5175,5718],[-4,1]],[[5171,5719],[-3,3],[-3,7]],[[5165,5729],[-3,3],[-2,7],[-6,4],[-6,3],[-3,3]],[[5145,5749],[-11,2],[-4,-1],[-18,-6],[-15,-1]],[[5097,5743],[-18,-5]],[[5079,5738],[-60,-1],[-193,-54],[-102,-15],[-58,38],[-73,80],[-2,5],[-3,11],[-9,9],[-12,15],[-1,3],[-3,3],[0,-1],[-12,21],[-10,17],[-2,2],[-4,9],[-2,4],[-4,6],[-1,3],[-1,1],[-1,-1],[-5,9],[-2,3],[0,2],[-1,0],[-1,-1],[-4,8],[0,2],[-1,0],[0,-1],[-1,0],[-7,11],[0,2],[2,0],[-2,1],[-1,1],[-1,1],[1,-3],[-1,0],[-7,9],[-16,20],[-16,14],[-5,4],[-2,2],[10,-1],[38,-12],[22,-10],[7,0],[19,2],[10,1],[11,-2],[5,5],[-2,16],[-27,13],[-42,-6],[-12,1],[-30,10],[-10,2],[9,95],[5,9],[1,1],[0,1],[56,110],[75,90],[1,0],[1,2],[11,3],[1,3],[4,2],[1,2],[51,29],[14,14],[1,4],[15,15],[4,5],[2,11],[-2,21],[2,-2],[3,-6],[-5,14],[-1,8],[7,16],[14,8],[41,12],[107,66],[1,-3],[3,4],[6,6],[36,22],[48,50],[-15,-2],[9,11],[9,6],[6,1],[12,-2],[9,-1],[11,5],[11,8],[51,37],[8,-1],[14,11],[23,1],[34,2],[-35,7],[-18,3],[-9,-6],[-9,-5],[-26,1],[-6,-3],[-64,-39],[-15,-5],[-17,0],[-23,-5],[-2,-7],[-13,-6],[-59,-11],[-9,-4],[-12,-6],[-4,-5],[-7,-22],[-1,-3],[-17,-11],[-63,-12],[-145,141],[-7,9],[-7,6],[-17,22],[-9,10],[-6,9],[-23,30],[-59,67],[-51,50],[-7,10],[-2,2],[-26,42],[-17,46],[10,37],[0,1],[6,3],[7,1],[1,1],[13,3],[-9,-11],[1,-9],[12,-1],[7,2],[18,20],[12,11],[36,29],[18,13],[-14,1],[-8,66],[-3,6],[0,4],[-2,6],[-7,16],[3,8],[0,9],[-14,39],[-16,30],[-8,12],[1,47],[8,33],[23,20],[72,41],[23,5],[48,6],[26,2],[-6,22],[4,19],[57,32],[-22,8],[17,9],[15,16],[-17,1],[-34,-1],[-7,-2],[-3,6],[-14,-12],[-4,-2],[-23,-10],[-50,-37],[-33,7],[-3,5],[7,15],[11,14],[5,10],[5,37],[-30,-11],[-13,-3],[-11,1],[-16,3],[-12,-4],[-8,-7],[-18,-38],[-44,-26],[-102,-7],[-56,7],[-24,11],[-122,9],[-12,1],[-24,-6],[-64,-9],[-13,-3],[-16,-9],[-9,4],[-34,5],[19,-10],[0,-5],[-33,0],[-29,2],[-56,-4],[-75,-14],[-9,-4],[-17,-21],[-5,-13],[-2,-19],[-1,-7],[-12,-6],[-30,2],[-24,4],[-17,1],[-16,5],[-17,2],[-25,2],[-53,-2],[-28,-6],[-20,-6],[-9,-5],[-8,-9],[-42,1],[-77,-33],[-58,-39],[-59,-28],[-6,-5],[-3,-9],[-4,-12],[-14,-7],[-26,-20],[-18,-14],[-1,-6],[11,-6],[-27,-25],[14,-13],[3,-5],[-39,-15],[-20,-12],[-8,-11],[-14,-29],[-14,-21],[6,-12],[-1,-63],[45,-53],[-33,-27],[-24,0],[-14,-3],[-28,-14],[-5,-16],[-2,-7],[-42,5],[-33,32],[3,8],[-1,2],[2,2],[-1,1],[-2,0],[-2,-2],[-3,3],[-1,0],[9,17],[-8,5],[-30,22],[-28,23],[-11,9],[-20,11],[-9,3],[-15,6],[-25,15],[-16,7],[-36,8],[-17,5],[-15,3],[-12,-2],[-15,1],[-11,0],[-16,-5],[-24,-36],[-24,-29],[-60,-33],[-19,-11],[-4,4],[-4,10],[-5,6],[-9,2],[-24,3],[-18,1],[-12,-2],[-10,-8],[-17,-9],[-9,-1],[-9,-4],[-19,-12],[-31,3],[-5,5],[-4,5],[-39,8],[-60,0],[-3,-18],[-9,-31],[-3,0],[-1,-2],[1,-3],[-10,-10],[-9,-13],[-11,-10],[-7,-1],[-9,8],[-9,0],[-9,-5],[-27,21],[-14,5],[-11,-1],[-9,2],[0,1],[18,21],[4,22],[-2,5],[3,0],[-4,1],[1,1],[1,-1],[-2,2],[1,3],[1,-1],[1,0],[4,-2],[-1,4],[3,2],[2,1],[-2,1],[1,2],[0,1],[-2,-1],[-4,1],[-2,2],[9,8],[5,3],[3,4],[-4,7],[-5,2],[-1,1],[-2,2],[1,1],[4,0],[-2,1],[-1,1],[0,1],[2,2],[9,12],[0,1],[6,9],[2,0],[0,2],[2,1],[2,1],[1,1],[2,-2],[1,4],[2,1],[2,3],[9,-1],[-2,2],[1,0],[0,2],[3,0],[-3,2],[3,2],[-1,1],[0,1],[1,0],[3,0],[1,2],[-5,2],[0,1],[3,2],[2,-1],[3,1],[0,6],[1,1],[-4,2],[2,3],[0,2],[-1,1],[-2,-2],[-1,0],[2,2],[3,3],[1,0],[1,0],[3,-1],[2,1],[0,1],[4,2],[1,2],[0,3],[-1,1],[-1,0],[0,2],[-1,-1],[0,-2],[-3,0],[-1,1],[2,4],[1,1],[3,0],[6,6],[2,0],[1,0],[3,1],[3,2],[4,1],[4,4],[0,1],[1,0],[2,1],[-3,3],[3,2],[2,-1],[2,1],[6,0],[2,1],[2,2],[4,6],[2,6],[-3,4],[1,2],[0,1],[4,0],[0,4],[460,423],[1,0],[1,-1],[4,0],[1,-1],[11,3],[9,6],[2,1],[4,0],[-2,2],[1,2],[-1,0],[1,1],[6,4],[2,1],[5,1],[-1,2],[1,1],[1,1],[1,-1],[2,3],[-1,0],[10,5],[1,-1],[7,1],[0,2],[-1,0],[2,1],[70,5],[70,17],[13,5],[2,1],[1,1],[1,0],[1,0],[1,0],[-1,1],[15,6],[-1,-6],[0,-1],[4,-3],[9,-3],[6,-1],[23,5],[17,8],[11,6],[1,2],[3,3],[17,10],[12,8],[3,4],[2,4],[9,8],[2,3],[1,0],[-1,-1],[3,2],[13,0],[0,2],[3,-1],[18,16],[26,25],[5,8],[0,2],[3,4],[0,2],[-1,1],[1,1],[1,0],[1,0],[2,2],[27,17],[1,0],[11,-3],[4,1],[5,3],[12,14],[4,8],[86,53],[65,87],[0,-1],[9,1],[4,-1],[3,-2],[3,0],[1,0],[-1,3],[2,-4],[2,0],[11,1],[10,-3],[4,0],[-5,0],[-1,-1],[4,-1],[6,-1],[7,1],[8,5],[13,11],[3,4],[5,12],[4,3],[2,-2],[-1,2],[6,6],[12,7],[12,12],[2,1],[0,1],[9,12],[6,4],[11,5],[5,2],[3,0],[0,1],[3,3],[5,5],[4,4],[7,3],[7,6],[7,7],[4,3],[1,1],[1,-1],[1,1],[0,1],[56,28],[9,19],[4,3],[10,12],[0,3],[6,11],[1,3],[1,2],[1,4],[1,4],[-1,2],[2,2],[-1,4],[2,3],[-2,2],[1,8],[16,8],[5,0],[2,4],[2,0],[0,1],[4,14],[-1,3],[4,6],[1,5],[1,4],[-1,2],[-1,5],[3,10],[-1,5],[-1,20],[0,3],[2,0],[-2,4],[2,1],[0,2],[2,-1],[1,0],[-3,5],[1,2],[2,-1],[0,3]],[[3708,8231],[9,-2],[1,-1],[2,-4]],[[3718,8223],[1,-3],[-4,-4]],[[3715,8216],[-3,0],[-1,-2]],[[3705,8132],[0,-1],[1,-1],[2,0],[4,-1],[2,-3]],[[3719,8122],[0,-2],[0,-1],[9,-10],[2,0],[3,2],[6,0]],[[3814,8122],[6,-3],[2,0],[3,-1],[-3,-2]],[[3822,8110],[-2,-1],[1,-3],[2,-4],[-2,-5],[-13,-10]],[[3839,7966],[8,-8],[6,-4]],[[3853,7954],[2,-1],[9,2],[1,1]],[[4634,8253],[-2,2],[-3,5],[0,1],[1,4],[4,6],[15,8]],[[4809,8277],[4,-1],[5,2],[3,2],[1,4]],[[4873,8342],[1,3],[3,2]],[[4877,8347],[3,0],[2,-3]],[[5522,7730],[3,-7],[27,-1]],[[5773,7700],[20,8],[9,5],[10,10],[6,5]],[[5854,7771],[13,10],[23,14]],[[5922,7809],[62,22]],[[5984,7831],[55,12],[36,2]],[[6119,7843],[18,33]],[[6431,7846],[-1,-8],[4,-9]],[[4931,3526],[-7,-7],[-11,-5]],[[4710,3568],[-6,-1],[-3,-2],[-2,-5],[1,-1],[4,-2],[0,-1]],[[4394,3471],[-6,1],[-2,-1],[-19,-21]],[[4061,3209],[3,-4],[-1,-1],[-6,-2]],[[3627,3162],[-4,-9],[-6,-5]],[[3617,3148],[-3,-6],[-4,-1],[-3,0],[-2,1]],[[2842,3227],[-15,-3],[-5,3],[-2,6],[-7,17]],[[2813,3250],[-1,10],[-5,8],[-2,6],[-2,3],[0,11],[-3,3],[-11,7],[-4,1],[-4,0],[-7,-3],[-8,-5],[-21,3],[-9,3],[-3,2]],[[2733,3299],[-2,3],[1,7],[-2,1],[-4,1],[-12,-2]],[[2714,3309],[-9,5],[-11,3]],[[2694,3317],[-8,0],[-16,-2],[-5,-1]],[[2665,3314],[-21,0],[-3,-2],[-2,-4]],[[2639,3308],[2,-6]],[[2641,3302],[0,-3],[-3,-6],[-5,-4]],[[2633,3289],[-8,-1],[-2,0],[-3,2]],[[2620,3290],[-3,-1],[-5,-2],[-15,-3]],[[2597,3284],[-13,-7],[-4,0],[-6,3],[-6,1],[-4,3],[-7,0]],[[2557,3284],[-3,5],[-9,6],[-5,8]],[[2540,3303],[-11,7],[-4,4],[-2,4],[-1,6],[-1,3],[-5,3],[-1,2],[0,2],[4,4]],[[2519,3338],[13,5],[5,3],[1,1],[-7,6],[-1,3],[-1,5],[-3,6],[-7,4],[-3,4],[-2,4],[1,4],[-2,3],[-1,0],[-3,-1],[-8,3],[-1,3],[1,1],[-3,2],[-3,-3],[3,-5],[-2,-1],[-1,1],[-1,-1],[-1,-1],[1,-2],[0,-1],[-2,3],[-2,0],[0,-1],[1,0],[0,-2],[-2,-2],[-4,6],[-2,-2],[-4,-5],[0,-2],[1,-1],[0,-1],[1,0],[1,-4],[1,0],[0,1],[2,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[1,0],[-1,-2],[2,0],[0,-2],[-1,0],[-2,-2],[-2,-1],[-1,1],[-1,-3],[-1,-1],[1,-2],[-1,0],[0,-1],[-2,-1],[-2,1],[0,-2],[-2,-2]],[[2471,3348],[-1,-1],[2,-2],[-1,0],[-1,0]],[[2470,3345],[0,-2],[-1,-1],[1,-1],[-1,-2],[-1,0],[1,-1],[-2,0],[-1,-2]],[[2466,3336],[0,-7],[0,-4],[-4,-7]],[[2462,3318],[0,-2]],[[2462,3316],[-1,-1],[-2,-1]],[[2459,3314],[0,-1],[-6,0],[-5,-2],[-1,-1],[-2,0],[0,-2],[-1,0],[-1,-1],[-2,0],[-2,-2],[-1,-2],[-1,0],[0,-3],[-2,0],[-2,-2],[0,-3],[-2,-1],[-1,-1],[-3,-1]],[[2427,3292],[-7,0]],[[2420,3292],[-2,2],[-1,0]],[[2417,3294],[0,1],[-1,0],[-2,3],[0,2],[-2,3],[-9,6]],[[2403,3309],[-2,5],[-2,2],[-16,5],[-5,2],[0,1],[-5,-2],[-4,6],[3,4],[1,5],[-3,3],[-3,3],[-2,7],[-1,2],[3,3],[7,0],[6,3],[3,4],[7,3],[8,-1],[3,3],[2,1],[2,2],[5,2],[1,4],[3,3],[-2,4],[-1,3],[-8,10],[1,0],[3,5],[6,3],[-3,3],[-8,0],[-2,9],[-10,-1],[-7,1],[-8,4],[-7,6],[-1,2],[0,3],[4,4],[1,4],[-4,11],[1,4],[3,11],[0,11],[-1,9]],[[2371,3485],[7,-5],[5,-19],[5,-13],[-3,-16],[13,25],[8,20],[2,13],[-1,17],[-8,12],[-7,2],[-6,113],[49,19],[2,1],[31,12],[5,1],[1,1],[3,-2],[0,-1],[2,0],[3,2],[2,0],[2,1],[3,-1],[1,0],[5,-3],[6,0],[9,3],[2,2],[7,0],[8,7],[-11,8],[0,1],[6,2],[11,2],[1,0],[0,-2],[2,2],[5,1],[3,0],[1,-1],[0,-2],[1,1],[3,2],[3,0],[2,-1],[1,0],[1,-1],[1,-1],[1,2],[11,0],[1,0],[-1,-2],[1,0],[2,0],[0,-2],[4,4],[8,0],[0,-1],[1,1],[3,-1],[0,-1],[3,0],[4,0],[1,-1],[3,1],[-1,-1],[3,1],[0,-1],[2,0],[4,1],[-1,1],[93,-3],[0,-1],[1,1],[11,0],[0,-1],[3,1],[1,0],[1,0],[0,-1],[3,0],[2,0],[6,-1],[9,1],[132,-4],[0,-1],[1,0],[0,-1],[2,-2],[1,-3],[4,0],[1,0],[7,-6],[107,3],[22,9],[14,8],[10,3],[5,4],[14,8],[16,9],[13,18],[5,18],[5,9],[11,9],[8,2],[40,21],[11,5],[51,13],[74,40],[73,55],[50,48],[4,2],[4,5],[54,52],[54,29],[62,14],[7,0],[3,-3],[5,-3],[2,0],[7,-11],[7,0],[26,10],[12,10],[8,0],[7,2],[16,-7],[22,5],[21,7],[16,9],[29,18],[47,33],[11,6],[14,12],[46,32],[15,9],[19,13],[24,22],[13,5],[25,5],[23,3],[14,3],[16,4],[10,8],[11,12],[13,6],[16,8],[18,10],[18,12],[17,9],[12,9],[4,13],[0,4],[4,9],[-1,2],[1,5],[2,2],[14,7],[17,10],[9,8],[6,11],[4,14],[3,13],[8,17],[16,12],[44,18],[7,5],[3,9],[9,17],[6,16],[7,9],[4,9],[4,1],[-1,2],[5,1],[1,1],[6,8],[6,2],[4,5],[9,18],[2,2],[0,-1],[5,5],[8,4],[0,1],[1,1],[0,2],[2,1],[1,1],[5,4],[0,2],[1,0],[2,1],[0,1],[-1,0],[1,1],[-1,1],[6,3],[-1,1],[5,3],[-1,1],[3,2],[-1,2],[1,1],[-1,1],[4,2],[4,6],[1,3],[2,8],[-1,4],[4,4],[0,2],[3,3],[-2,2],[1,2],[-1,2],[4,1],[1,1],[0,1],[-1,-1],[-1,1],[3,1],[0,2],[-1,1],[2,3],[3,0],[-1,1],[-1,0],[-2,1],[4,3],[-1,0],[0,1],[8,6],[1,3],[4,2],[0,1],[-2,0],[2,1],[1,2],[4,3],[2,1],[2,-1],[1,1],[-1,1],[3,2],[1,1],[0,2],[-2,-1],[1,3],[2,0],[1,2],[1,1],[1,5],[-2,0],[2,3],[2,1],[0,1],[1,0],[0,2],[2,1],[-1,2],[0,1],[1,1],[-1,1],[2,1],[1,2],[-2,3],[2,3],[1,3],[-1,0],[0,3],[3,4],[0,3],[0,1],[4,7],[1,0],[-1,3],[45,69],[50,110],[4,29],[5,5],[4,7],[4,2],[3,3],[4,0],[3,3],[2,7],[0,11],[-5,20],[-5,4],[2,1],[3,-2],[1,0],[3,7],[0,2],[-1,1],[-2,-2],[-3,1],[4,4],[1,1],[1,-1],[0,5],[-2,7],[-3,2],[1,1],[-2,3],[-2,-2],[0,1],[-1,-1],[2,12],[2,-1],[3,1],[0,2],[2,0],[0,1],[-2,1],[-1,5],[1,1],[1,0],[7,-2],[3,-2],[2,0],[4,4],[2,5],[0,5],[-6,3],[0,-2],[-1,1],[1,4],[3,0],[0,-1],[2,-1],[1,2],[1,5],[-2,6],[-3,0],[-1,2],[-1,0],[-1,1],[1,0],[0,3],[1,2],[1,7],[3,2],[-1,2],[2,2],[-1,1],[1,0],[-1,1],[2,0],[2,6],[4,3],[2,3],[0,1],[1,1],[0,3],[1,0],[0,1],[3,3],[0,1],[2,1],[1,2],[1,-1],[0,1],[-1,6],[0,1],[-1,-1],[-2,6],[-2,6],[-1,2],[-3,1],[0,1],[2,8],[-1,1],[1,2],[-1,0],[2,3],[-1,6],[1,2],[-1,1],[3,2],[-1,1],[2,7],[-1,1],[3,7],[0,11],[1,5],[4,5],[0,3],[1,4],[-1,1],[-3,1],[-1,1],[5,0],[3,1],[4,3],[6,7],[2,7],[0,2],[1,7],[3,5],[3,9],[3,7],[-1,4],[2,0],[0,1],[2,1],[0,3],[1,2],[4,7],[4,13],[4,10],[4,5],[7,6],[1,4],[3,4],[-1,1],[2,3],[3,3],[2,-1],[1,1],[0,3],[-5,1],[1,1],[-1,1],[1,2],[2,1],[5,5],[2,-1],[1,0],[1,1],[1,0],[5,3],[-1,1],[2,2],[2,1],[-1,1],[3,0],[3,-2],[2,0],[5,4],[1,0],[3,1],[3,4],[-1,-1],[2,20],[6,6],[2,6],[-3,5],[0,22],[0,13],[-12,96],[-4,4],[4,5],[-6,13],[-3,9],[-9,17],[-2,7],[10,18],[25,4],[2,-2],[14,-15],[26,-13],[28,3],[18,-7],[39,-7],[65,19],[193,115],[0,36],[-4,0],[7,9],[-22,-5],[-14,-4],[-9,0]],[[5097,5743],[20,3],[14,4],[6,0],[8,-1]],[[5165,5729],[3,-8],[3,-2]],[[5175,5718],[6,1],[8,3],[8,4]],[[5197,5726],[2,1],[2,10]],[[5204,5739],[2,9],[0,2],[-2,4],[0,2]],[[5416,5758],[9,-1],[2,-1],[13,1]],[[5440,5757],[3,-1],[3,2],[6,-2]],[[5452,5756],[3,1],[3,-1],[4,-4]],[[5486,5739],[3,0],[2,-3]],[[5516,5522],[-2,-4],[3,-2],[1,-2]],[[5523,5512],[2,-2],[3,0],[1,-2],[0,-1]],[[5536,5453],[1,-5],[8,-4]],[[5557,5424],[0,-3],[2,-1],[5,-1]],[[5580,5403],[-4,-13],[2,-1]],[[5614,5377],[8,-2],[3,-2],[3,-4]],[[5632,5355],[9,0],[7,6]],[[5648,5361],[9,4],[4,3],[6,6],[1,6]],[[5679,5381],[7,2],[0,3]],[[6094,4809],[7,1],[5,2]],[[6109,4813],[0,0]],[[5887,4567],[-1,-2],[1,-1],[3,-1],[4,-9]],[[5836,3638],[-1,-2],[-8,-8],[-15,-10]],[[5776,3545],[-9,-11],[-7,0]],[[5760,3534],[-8,3],[-5,1]],[[2356,3510],[-5,1],[-12,8],[-4,5],[-1,3]],[[2334,3527],[21,-13],[1,-1],[0,-3]],[[3378,8593],[-2,1],[4,2],[-1,1],[-2,0],[1,2],[-2,0],[6,3],[1,-1],[1,1],[-1,2],[-1,1],[2,2],[1,3],[-2,6],[-2,3],[11,16],[1,9],[-16,29],[8,16],[29,22],[43,45],[20,46],[4,7],[5,3],[-1,8],[-5,11],[-4,6],[-4,7],[-6,13],[-21,-2],[-11,-8],[-27,-30],[-19,-13],[-8,-3],[-41,-47],[-7,-3],[-5,-3],[-14,-24],[-14,-16],[-11,-3],[-12,-3],[-2,-3],[-18,-5],[3,4],[5,6],[3,11],[-15,-5],[2,11],[-5,2],[-10,-4],[-1,16],[-9,-6],[-1,-1],[-1,1],[1,1],[-3,1],[3,5],[-2,0],[3,5],[3,11],[-4,7],[-14,8],[-3,30],[-28,28],[-5,29],[-26,-32],[-10,-6],[-12,-2],[-19,-3],[-16,-5],[-3,1],[0,1],[0,2],[-4,0],[3,5],[-4,-2],[0,1],[4,12],[2,5],[-5,10],[-3,3],[-9,2],[-11,-2],[-2,13],[1,14],[-5,36],[-8,26],[3,8],[-5,4],[-4,0],[-10,8],[4,10],[0,6],[-16,22],[-13,16],[-14,9],[-11,2],[-9,-5],[-13,0],[-1,2],[-3,3],[4,9],[-4,14],[-4,12],[8,12],[0,21],[-41,6],[-22,20],[-5,4],[-44,69],[-2,2],[-3,5],[-1,1],[-5,5],[-8,7],[18,24],[-7,4],[-10,-7],[-26,22],[1,12],[-3,9],[-26,6],[0,19],[22,50],[2,24],[22,24],[-1,6],[16,-8],[8,0],[7,2],[10,8],[3,10],[11,3],[16,11],[7,5],[15,15],[-8,15],[-51,-36],[-17,-2],[-6,1],[-5,3],[-7,0],[0,-9],[-5,-5],[-11,-3],[1,10],[0,15],[1,15],[3,21],[-4,11],[-1,0],[0,45],[18,163],[-1,8],[2,2],[-2,2],[3,3],[0,5],[3,6],[0,5],[1,1],[0,7],[-4,0],[0,2],[5,2],[0,2],[2,1],[2,5],[-1,4],[-3,3],[1,1],[-2,2],[2,4],[-30,36],[-3,14],[3,3],[-1,2],[0,3],[-1,4],[-2,1],[2,15],[0,6],[-6,5],[50,28],[168,45],[4,-2],[7,-1],[7,0],[3,2],[-1,3],[2,3],[1,1],[33,9],[3,-1],[0,2],[4,-2],[2,1],[9,-2],[2,1],[4,0],[0,1],[1,0],[1,1],[-1,3],[-3,0],[-2,1],[67,18],[4,-1],[8,-2],[6,0],[0,-1],[-1,-3],[-3,-3],[3,-3],[1,0],[4,2],[0,1],[3,3],[-1,3],[1,1],[3,0],[1,-2],[7,0],[6,-5],[-1,1],[2,1],[9,0],[3,1],[4,0],[1,1],[5,1],[1,-1],[1,-1],[0,-4],[1,-2],[1,0],[1,2],[3,0],[1,-3],[5,-3],[2,0],[1,2],[-1,2],[2,4],[0,2],[0,2],[-1,1],[-3,0],[-6,4],[-2,1],[-1,1],[1,1],[4,4],[-2,1],[0,1],[2,1],[5,-2],[2,3],[7,0],[1,1],[-1,1],[0,1],[4,2],[2,0],[0,2],[-1,2],[-2,1],[-4,1],[-4,0],[-2,-3],[-1,0],[0,1],[-2,-1],[0,2],[91,24],[26,1],[1,-2],[-2,-2],[0,-1],[3,0],[2,1],[4,0],[5,2],[3,-1],[-1,1],[5,1],[5,-1],[2,0],[3,-1],[1,1],[1,0],[-1,1],[3,0],[1,0],[22,-3],[0,-2],[-3,-3],[0,-1],[-2,-2],[2,-3],[-3,-2],[-1,-2],[4,0],[0,-1],[4,-1],[1,1],[3,-2],[0,-2],[-2,-1],[5,-3],[1,0],[4,2],[3,2],[-1,1],[3,1],[0,2],[1,0],[5,-1],[1,1],[1,5],[-3,5],[1,0],[2,-1],[3,1],[0,2],[1,-1],[0,1],[1,0],[15,-2],[1,0],[6,-1],[1,0],[7,-1],[77,-10],[-1,0],[-4,-1],[3,-1],[0,-1],[-4,0],[0,-1],[2,0],[2,0],[1,-2],[3,1],[3,-2],[3,-3],[-2,-3],[1,-3],[0,-1],[-1,-1],[1,0],[-2,-1],[2,-1],[0,-3],[1,0],[-1,-1],[2,0],[4,0],[4,-2],[-1,-1],[4,0],[1,-1],[-1,0],[-3,-1],[1,-1],[1,-1],[3,-1],[4,-1],[3,-2],[0,1],[3,-1],[4,-1],[2,-1],[-1,0],[2,0],[2,-1],[1,-3],[2,3],[2,0],[0,-1],[4,2],[1,-1],[-1,0],[2,0],[-1,1],[1,0],[-1,1],[3,-1],[0,1],[-2,1],[4,0],[-4,1],[5,0],[-1,2],[2,0],[-1,0],[3,0],[0,2],[2,-1],[-2,1],[3,0],[-1,-1],[1,0],[0,1],[3,0],[5,0],[-2,1],[1,1],[1,-1],[3,1],[1,-1],[0,1],[2,0],[0,2],[1,3],[4,-2],[3,1],[4,-1],[2,0],[0,1],[3,0],[5,2],[1,2],[0,-1],[1,1],[-1,2],[0,3],[6,1],[2,1],[5,-3],[3,-1],[1,-2],[-2,-1],[1,-1],[2,1],[2,0],[9,-3],[4,-6],[2,1],[-6,-4],[1,0],[-3,-4],[0,-1],[3,0],[0,2],[1,-1],[5,3],[-3,-1],[2,1],[-2,0],[1,1],[-1,1],[1,0],[1,-1],[3,0],[3,1],[0,1],[2,2],[4,0],[0,1],[6,1],[-1,2],[4,0],[-1,2],[1,0],[0,1],[3,0],[2,0],[1,-1],[-1,0],[4,-3],[-2,0],[1,-1],[-2,-2],[2,0],[3,0],[2,2],[1,-1],[1,1],[3,0],[6,-2],[7,-3],[2,1],[2,1],[-1,0],[1,0],[5,-2],[0,-1],[104,-46],[37,-26],[18,-59],[1,-7],[-37,-40],[-7,-9],[-19,-19],[-11,-24],[14,-4],[13,6],[26,23],[0,9],[-4,11],[0,5],[25,-2],[0,-1],[6,-7],[0,-3],[2,-3],[-1,0],[1,-5],[8,-11],[1,-2],[3,-8],[-2,-7],[5,-3],[0,-2],[4,-11],[12,-7],[10,1],[1,-2],[12,-8],[4,-6],[8,-4],[7,2],[7,1],[2,-1],[-2,-1],[0,-2],[2,-1],[4,3],[25,-11],[9,-1],[1,-3],[4,-2],[6,1],[2,-10],[-4,-3],[1,-9],[3,-5],[0,-2],[0,-3],[0,-1],[-3,-22],[-1,-30],[14,-12],[3,-11],[41,-39],[0,-1],[3,-4],[2,-10],[-2,-3],[0,-1],[3,-2],[0,-2],[2,-1],[2,-2],[7,-4],[0,-1],[-1,0],[10,-7],[13,-35],[4,-22],[-4,-7],[-7,-21],[4,-9],[7,-7],[6,-4],[15,1],[46,-9],[48,5],[86,21],[46,5],[22,11],[33,48],[22,11],[26,-6],[47,-25],[17,-6],[110,4],[52,-9],[24,-16],[-2,0],[-14,0],[-9,1],[-5,-4],[-3,-13],[0,-10],[-4,-7],[-18,-11],[-14,-8],[-7,-7],[-4,-11],[-4,-16],[-23,-35],[-17,-16],[-9,-30],[-14,-17],[-7,-9],[-15,-10],[-43,-27],[-137,-81],[-5,-6],[-18,-9],[-91,-36],[-89,-54],[-8,-8],[-20,-2],[-36,-38],[-6,-15],[-2,-1],[-14,-16],[-7,-13],[-3,-19],[0,-36],[0,-5],[-20,-9],[-35,-16],[-31,-5],[-13,-8],[-65,-51],[-12,-6],[-13,-2],[-8,-7],[-30,-35],[-9,-9],[-32,-24],[-20,-10],[-27,-6],[-26,-11],[-10,-2],[-23,-1],[-11,2],[-2,17],[-8,1],[-9,-8],[-14,-3],[-16,5],[-7,-30],[-6,-10],[15,-12],[-1,-6],[-12,0],[-13,-1],[-2,-6],[8,-12],[11,-5],[-20,-9],[-7,-2],[-5,0],[-24,6],[-40,13],[-41,19],[-59,33],[-32,8],[-19,-2],[-27,-38]],[[2745,9289],[-2,1],[-4,12],[1,7],[2,-2],[3,-18]],[[2638,9182],[1,3],[-16,32],[-10,1],[-17,25],[2,0],[0,2],[-1,2],[-4,1],[-1,1],[0,1],[2,0],[-3,1],[0,5],[1,2],[3,3],[4,1],[3,-1],[1,2],[4,1],[0,3],[-2,4],[-2,1],[-3,0],[-2,1],[0,1],[0,1],[2,0],[-2,1],[8,19],[-9,1],[-49,4],[-13,16],[-36,10],[-28,2],[-8,0],[-15,-16],[-19,-7],[-9,-2],[-13,9],[-10,5],[-17,-2],[-6,1],[-14,19],[6,4],[3,4],[3,1],[2,-1],[2,1],[2,1],[0,3],[2,2],[0,2],[-2,2],[-1,0],[0,2],[-4,-1],[2,2],[2,0],[-3,4],[2,1],[-2,1],[5,2],[-1,4],[-3,0],[3,2],[-4,0],[5,4],[3,5],[0,4],[-1,10],[-7,5],[-21,3],[-12,-2],[-10,1],[-8,8],[-4,13],[2,1],[1,2],[1,1],[-2,0],[1,1],[5,4],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[12,6],[1,-1],[0,-2],[3,2],[2,-1],[3,-1],[1,2],[0,3],[6,4],[-2,0],[1,1],[3,0],[2,1],[-3,1],[4,1],[1,3],[2,1],[0,2],[2,2],[3,2],[0,2],[2,5],[-1,2],[24,17],[2,1],[1,-2],[1,3],[3,-1],[3,1],[0,-2],[1,1],[5,0],[0,2],[3,0],[4,-2],[2,-2],[2,-1],[0,-4],[1,-3],[1,-1],[1,1],[2,-2],[2,2],[4,-1],[4,1],[2,-1],[1,2],[6,3],[3,3],[3,0],[0,-1],[2,0],[-1,-1],[2,1],[5,-2],[36,-1],[-1,-2],[1,-1],[-1,-1],[2,-1],[-1,-1],[2,1],[1,-1],[2,0],[2,3],[1,0],[0,-2],[1,0],[-1,-2],[2,-2],[-1,-1],[0,-1],[3,0],[3,4],[1,4],[1,1],[3,-4],[6,-1],[6,-3],[3,0],[5,-3],[2,1],[3,-1],[2,1],[2,0],[1,-1],[0,1],[6,-3],[4,-1],[1,3],[3,-3],[-1,-2],[5,-1],[1,-3],[-3,-6],[11,-1],[-1,-1],[2,-1],[-1,-2],[-7,-1],[0,-1],[-8,-8],[-2,-5],[-2,-5],[2,-6],[1,0],[18,20],[5,4],[3,1],[3,-1],[0,-3],[1,0],[3,0],[2,-2],[2,1],[0,4],[1,0],[0,-5],[1,-2],[4,-1],[3,-2],[2,0],[2,2],[5,0],[2,1],[2,0],[-2,-4],[1,-1],[4,1],[-1,-3],[3,-1],[-1,-1],[4,1],[1,-1],[-1,-1],[1,0],[4,2],[1,-2],[0,-2],[1,-1],[-1,-1],[0,-2],[-2,0],[0,-1],[1,-2],[4,-3],[0,-1],[-3,-1],[0,-2],[1,0],[0,-2],[2,-1],[10,-2],[12,-1],[1,2],[6,-1],[2,2],[4,0],[1,0],[36,-37],[9,-15],[-5,-4],[-18,-4],[-19,-1],[-4,-5],[16,-7],[5,-4],[-20,-6],[-15,2],[-7,-2],[-4,-7],[0,-8],[39,6],[9,0],[6,-1],[6,-3],[2,-12],[10,-11],[14,-6],[15,-8],[5,-3],[5,-26],[1,0],[-7,-8],[-12,-5],[4,-4],[11,6],[9,2],[11,-18],[33,-30],[9,-16],[-3,0],[2,-5],[6,-4],[1,-2],[4,-12],[-7,-5],[-35,-16],[-26,-6],[-18,3],[-18,7],[-6,-3],[0,-5],[-2,-8],[-51,36],[-23,34]],[[2580,9468],[1,2],[-1,3],[1,0],[2,0],[0,-1],[3,-3],[-6,-1]],[[2594,9459],[-3,-11],[8,0],[1,0],[0,-2],[-1,0],[0,-1],[-1,0],[0,1],[-15,0],[-1,-1],[2,0],[-3,0],[-3,1],[-2,0],[-1,0],[5,4],[0,10],[10,2],[4,-3]],[[4341,9019],[-1,-2],[-4,-1],[-2,-2],[-2,0],[9,5]],[[4329,9013],[0,-1],[1,-1],[0,1],[1,0],[-2,-1],[-1,1],[-1,-1],[-2,-5],[-1,-4],[-3,-7],[-3,-2],[0,-1],[-2,0],[0,-1],[-4,-1],[2,-1],[0,-1],[-3,-1],[-1,0],[-1,2],[-11,1],[-3,-1],[-7,2],[41,22]],[[4073,8798],[17,10],[0,-7],[-12,-5],[-5,2]],[[8753,918],[-12,-9],[-2,-8],[-1,-2],[-1,7]],[[8713,1088],[-2,2],[0,1],[3,3],[4,2],[13,1]],[[8731,1097],[9,-1],[5,-2],[12,-14],[4,-2],[5,-1],[3,1]],[[8771,1080],[1,5],[0,7]],[[8772,1092],[1,2],[7,3],[3,0],[3,-1],[4,-4],[10,-13],[5,-4]],[[8829,1030],[0,-5],[3,-1]],[[8832,1024],[5,-1],[4,0]],[[8841,1023],[7,1],[8,3],[5,1],[6,1]],[[8963,1064],[0,5],[4,4],[8,4]],[[8975,1077],[23,8],[7,5],[5,6],[18,47],[7,13],[9,10],[-5,1]],[[9039,1167],[-12,-4],[-2,1]],[[9023,1165],[4,2]],[[9029,1168],[0,2],[-8,3],[-2,2],[1,2],[9,17]],[[9297,1293],[9,-5],[0,-2],[-1,-8]],[[9309,1079],[-5,-7],[-4,-4]],[[9300,1068],[1,-2]],[[9713,980],[-134,-26],[-114,-64],[-1,0],[-12,-7],[-2,-1],[-13,-7],[-68,-39],[-159,-46],[-318,-18],[-49,16],[-28,33],[5,6],[-4,17],[-9,15],[-20,9],[-16,6],[-14,7],[-5,11],[1,5],[2,6],[1,6],[16,7],[4,14]],[[7920,150],[2,-2],[2,1]],[[7924,149],[2,0],[4,2]],[[7943,167],[1,1],[-2,3]],[[7937,229],[3,6],[-1,10],[0,3]],[[7915,357],[4,1],[1,-1],[3,7],[0,4],[-4,8]],[[7919,380],[-4,7],[-8,8]],[[7995,442],[26,1],[50,18],[17,10]],[[8088,471],[11,8],[29,32]],[[8128,511],[22,24],[12,9]],[[8146,600],[0,8],[1,4],[3,3],[2,4]],[[8149,635],[3,9],[0,4],[5,6]],[[8174,657],[11,5],[0,1],[-3,5],[0,2],[6,10],[-3,5],[-1,3],[5,8],[10,0]],[[8203,701],[6,5],[15,5]],[[8267,684],[-3,3],[2,1],[2,3]],[[8300,708],[24,16],[3,4],[3,8]],[[8330,736],[2,1],[3,0],[3,-2]],[[8423,662],[2,-2],[-10,-10]],[[8357,592],[-12,-4],[-63,-38],[-46,-39],[-25,-5],[8,-9],[-35,-29],[-12,-20],[-2,-6],[-1,0],[-4,-12],[-8,-13],[-10,-22],[1,-6],[-15,-22],[-26,-13],[-1,0],[10,9],[-14,17],[8,4],[22,14],[-8,9],[-54,-30],[8,20],[-19,35],[-8,-2],[8,-33],[-3,-11],[-28,-15],[-22,-6],[-2,-19],[0,-13],[3,-9],[-7,-18],[5,-12],[3,-1],[19,-3],[18,-2],[6,-5],[6,-19],[-5,-31],[-5,-16],[-3,-19],[-11,-31],[-1,-9],[1,-50],[-17,-16],[-5,-1],[-16,-11],[-14,-1],[-21,-8],[-7,0],[-40,11],[-56,6],[-18,-7],[-8,0],[-8,-4],[-4,-3],[-35,-12]],[[8064,349],[0,7],[11,8],[18,9],[5,-12],[-10,-9],[-24,-3]],[[1517,1958],[-1,1],[0,5],[1,4]],[[1517,1968],[-6,4],[2,1]],[[1513,1973],[0,1],[1,1],[3,-1],[-2,2],[3,3],[11,2],[-5,5],[6,5],[-2,3],[0,4],[-5,-1],[2,6],[-7,7],[4,0],[10,2],[12,0],[3,0],[9,-4],[13,-2],[12,-6],[1,1],[14,1],[7,1],[2,-1],[5,3],[1,10],[2,-1],[-5,5],[0,3],[-2,4],[-18,0],[-13,3],[-3,0],[-9,4],[-19,16],[-2,1],[-8,0],[0,2],[-1,0],[0,1],[1,4],[3,1],[1,1],[1,2],[7,4],[-5,6]],[[1541,2071],[-2,6],[1,1],[0,3]],[[1540,2081],[0,1],[6,4],[12,5]],[[1558,2091],[1,-1],[9,2],[4,2],[-2,1]],[[1570,2095],[4,3],[8,5],[4,1],[3,0],[5,-1]],[[1594,2103],[2,-1],[2,0],[6,-2],[1,-1],[15,-4],[16,0],[25,2],[10,0],[9,-1],[18,-4],[4,0],[5,2],[0,-1],[20,-7],[0,-2],[3,-1],[-2,-7],[7,5],[8,-4],[2,-3],[1,-4],[0,-4],[-1,-3],[0,-2],[4,-5],[7,1],[11,4],[2,0],[10,4],[6,1],[6,-1],[11,-3],[11,-1],[8,-1],[2,0],[0,1],[-2,2],[-2,3],[0,3],[-2,6],[2,5],[-1,1],[0,2],[6,5],[-1,2],[-6,5],[-8,2],[-1,-1],[-2,1],[-1,6],[3,3],[1,3],[-1,2],[0,3],[-2,2],[0,5],[-1,3],[-5,2],[-4,5],[-4,8],[0,5],[3,21],[0,1],[0,5],[0,1],[-1,4],[1,2],[0,3],[2,4],[-1,3],[3,3],[-1,2],[1,2],[1,3],[1,2],[7,5],[-1,0],[1,2],[3,1],[1,2],[2,0],[1,1],[2,3],[0,1],[3,2],[1,2],[1,0],[1,0],[0,3],[1,1],[-1,2],[1,2],[2,1],[0,4],[4,4],[1,-1],[2,3],[3,3],[2,5],[4,0],[2,-2],[4,0],[2,-2],[7,-1],[1,1],[2,1],[2,-1],[2,2],[2,-1],[2,1],[1,-1],[3,0],[2,1],[3,-1],[0,2],[2,0],[0,1],[9,1],[0,-1],[1,2],[2,-1],[5,1],[1,-1],[3,1],[0,1],[3,1],[2,0],[0,-1],[1,0],[3,-2],[5,1],[3,-2],[4,1],[2,-1],[1,0],[4,-1],[5,2],[2,1],[1,3],[4,3],[3,0],[2,3],[2,-1],[1,0],[0,2],[2,-1],[5,1],[3,-2],[1,-1],[3,0],[2,-5],[5,-1],[-1,-4],[3,2],[2,-1],[0,-2],[3,-5],[0,-3],[5,-3],[5,0],[7,-5],[2,-8],[0,-5],[1,-5],[5,-6],[-2,-3],[-10,-3],[1,-1],[3,-1],[7,-2],[2,-2],[7,-1],[1,1],[11,-2],[8,1],[6,-1],[2,1],[7,-1],[8,3],[7,0],[3,0],[7,0],[7,0],[6,8],[9,5],[19,2],[0,1],[2,2],[9,3],[16,0],[1,-1],[3,-1],[2,-3],[-2,-8],[1,-3],[-1,-1],[-3,-11],[3,-13],[2,-3],[-1,-4],[3,-2],[-2,-4],[10,5],[27,11],[6,4],[8,3],[9,2],[2,2],[9,0],[1,1],[1,-1],[9,2],[2,0],[5,0],[1,-1],[4,0],[2,-2],[2,0],[8,-5],[3,0],[2,-2],[2,0],[2,-2],[7,-2],[4,1],[10,-3],[11,2],[8,-1],[10,-1],[5,1],[7,4],[5,5],[2,3],[9,3],[2,4],[4,2],[0,2],[0,4],[1,7],[3,4],[4,3],[0,2],[1,1],[14,-4]],[[2365,2214],[1,1],[-4,2]],[[2362,2217],[-4,7],[-4,0],[-3,0],[-3,0],[-1,1],[-2,0],[-5,-2],[-7,1],[-3,-1],[-1,1],[-2,-2],[-7,-1],[-14,1],[-1,-1],[-1,1],[-1,-1],[-7,2],[-13,-1],[-3,11],[2,8],[-3,4],[0,3],[-13,4],[0,10],[7,6],[4,6],[1,4],[4,5],[3,2],[1,-1],[3,0],[2,-2],[3,0],[4,-1],[1,2],[-1,3],[0,7],[-6,6],[13,8],[4,3],[7,0],[2,0],[0,3],[0,2],[1,1],[0,4],[2,2],[-2,3],[-1,0],[0,2],[-2,0],[0,1],[-4,2],[0,2],[-2,0],[0,2],[2,2],[-3,3],[-2,5],[2,5],[2,0],[1,4],[-2,1],[0,1],[-2,1],[-2,1],[-2,2],[0,2],[-4,3],[2,3],[-2,2],[2,2],[-2,1],[1,2],[-1,2],[1,1],[2,9],[-1,5],[-4,5],[0,10],[-1,8],[-2,3],[-2,2],[-3,2],[-3,0],[-4,4],[-4,4],[-2,4],[-2,14],[-3,7],[2,8],[-1,4],[-1,1],[-6,-3],[-2,2],[-6,-2],[-1,2],[-8,-2],[-11,-1],[0,-1],[-6,1],[6,11],[0,2],[1,0],[3,4],[-5,2],[-3,0],[-7,8],[-7,-1],[-8,10],[1,0],[1,2],[3,9],[4,2],[12,3],[15,2],[2,23],[1,18],[0,4],[-1,3],[-10,13],[-9,3],[17,17],[9,4],[8,1],[0,2],[3,0],[4,4],[3,1],[3,2],[0,2],[1,0],[0,3],[1,3],[2,1],[3,1],[2,0],[2,2],[2,-2],[3,1],[0,2],[3,1],[2,-1],[4,4],[1,-1],[3,3],[3,0],[1,1],[4,3],[5,1],[5,-2],[3,2],[4,-1],[0,-1],[6,1]],[[2338,2635],[2,-1],[5,2]],[[2345,2636],[7,1],[4,1],[0,2],[2,0],[2,1],[3,0],[4,4],[4,1]],[[2371,2646],[14,9],[7,1]],[[2392,2656],[7,4],[1,3],[5,4],[1,2],[1,2],[2,4],[0,2],[3,4],[7,6],[10,-22],[12,-7],[8,-7],[9,-5],[3,0],[5,-3],[1,0],[5,-3],[0,-2],[3,-1],[8,-7],[14,-4],[4,-2],[3,-3],[4,-1],[6,1],[6,-1],[8,-3],[6,-4],[3,1],[1,0],[3,-3],[12,12],[4,1],[2,2],[6,2],[1,3],[-1,2],[3,2],[0,3],[3,0],[-4,7],[2,5],[2,4],[-3,0],[0,1],[3,2],[2,3],[1,0],[0,2],[1,-1],[5,1],[6,-2],[4,2],[5,1],[2,0],[1,1],[4,1],[1,1],[0,1],[3,1],[7,4],[13,4],[4,4],[3,1],[4,4],[3,0],[1,4],[5,3],[0,8],[4,7],[8,4],[6,4],[3,1],[2,2],[3,1],[2,2],[5,1],[1,-1],[4,-4],[1,-2],[2,-1],[4,-9],[1,-5],[3,-4],[2,-4],[12,-9],[11,-7],[6,0],[1,1],[3,1],[2,1]],[[2732,2679],[8,-2],[16,-1]],[[2756,2676],[3,1],[5,5]],[[2764,2682],[3,1],[9,1]],[[2776,2684],[1,1],[4,3]],[[2781,2688],[4,1],[1,2]],[[2786,2691],[4,2],[10,10],[12,20]],[[2812,2723],[6,15],[1,0],[6,12],[1,0],[5,6],[9,7],[7,0],[5,-1],[0,7],[4,6],[3,1],[6,2],[1,1],[4,0],[9,5],[5,1],[5,4]],[[2889,2789],[5,8],[3,1]],[[2897,2798],[12,-2],[5,1],[3,-1],[7,-6],[2,-3]],[[2926,2787],[1,0],[11,4]],[[2938,2791],[39,13],[24,3],[11,3],[0,1],[25,5],[0,1],[22,4]],[[3059,2821],[8,0],[31,-2]],[[3169,2866],[2,0],[8,0]],[[3247,2880],[6,-1],[2,0],[2,1]],[[3264,2881],[9,3],[2,2],[8,4]],[[3288,2896],[26,8],[9,0]],[[3745,2286],[-6,-7],[-2,-3],[0,-3]],[[3730,2237],[2,-5],[6,-3]],[[3728,2109],[0,2],[-7,14],[-11,22],[0,-19],[-1,-10],[-2,-13],[-2,-11],[-3,-14],[-3,-16],[0,-9],[-3,-9],[-4,-6],[-11,-6],[-28,-5],[-21,-6],[-21,-5],[-21,-10],[-32,-22],[-7,-8],[-10,-6],[-2,-1],[0,-1],[-11,-6],[-29,-52],[-21,-17],[-30,-40],[-24,-10],[-38,7],[-32,23],[-32,37],[-28,-4],[10,17],[-3,11],[-3,7],[-63,33],[-14,8],[-24,2],[-18,1],[-24,3],[-11,16],[-7,14],[-8,15],[1,-27],[17,-26],[11,-4],[22,-2],[25,-1],[44,-33],[-2,-8],[-11,-20],[-8,-7],[-7,-11],[-14,-11],[12,-16],[3,-11],[-5,-2],[-5,-9],[5,-7],[24,-8],[17,-6],[11,-9],[29,-32],[22,-9],[2,-1],[-116,-51],[-42,3],[-13,5],[-8,-2],[-14,-12],[-40,-1],[-121,16],[-130,15],[-10,-5],[-5,-5],[-56,7],[-110,-10],[-19,-4],[-20,-1],[-22,-5],[-12,-6],[-11,-2],[-7,1],[-38,-2],[-30,-9],[-49,-10],[-10,-3],[-24,-9],[-25,-10],[-19,-10],[-11,-9],[-38,-52],[0,-21],[0,-1],[2,-10],[2,-5],[7,-8],[3,-4],[8,-11],[2,-2],[8,-7],[4,-1],[1,0],[9,-2],[1,0],[-3,-1],[-3,-6],[-11,-13],[-9,-9],[-9,-1],[-8,-9],[0,-8],[-11,-11],[-6,-13],[1,-10],[-4,-5],[-2,-4],[0,-2],[-3,-7],[-1,-5],[-3,-3],[4,-7],[5,-4],[-24,-47],[-5,-6],[-11,-16],[-7,-6],[-5,-9],[-2,-6],[0,-8],[1,-1],[-26,-1],[-21,0],[-43,29],[-26,-15],[-5,-5],[-3,1],[-14,-3],[-18,-3],[-2,-4],[-2,-3],[-1,-1],[-6,-3],[-9,-8],[-3,-5],[-2,-5],[1,-6],[4,-3],[2,0],[-3,-4],[-10,0],[-30,-2],[-97,2],[-32,2],[-2,-1],[-7,0],[-2,1],[-15,-1],[-34,1],[-11,14],[-24,2],[-5,-7],[-25,-3],[-14,6],[-21,6],[-19,-2],[-32,-14],[-2,-7],[-1,0],[-3,-2],[-10,-2],[-58,-32],[-16,-18],[-7,-2],[-17,-12],[-22,-10],[-10,-11],[-2,-9],[1,-7],[2,-10],[-16,-8],[1,-6],[2,-4],[-1,-4],[0,-2],[1,0],[-13,-13],[-17,-6],[-6,0],[-8,-3],[-2,-3],[-11,-4],[-15,11],[-8,-9],[2,-9],[-6,-2],[-30,-46],[-52,-3],[-14,15],[-16,11],[-20,8],[-19,4],[-28,3],[-2,18],[-6,2],[-24,1],[-25,8],[-24,-3],[-16,-6],[-91,24],[-91,53],[34,52],[-54,95],[-55,11],[-3,4],[-5,33],[-22,4],[-13,2],[-17,2],[-19,3],[-22,6],[-16,-5],[-11,6],[-17,10],[-8,4],[-6,11],[-11,4],[-6,-4],[-10,-1],[-4,16],[-5,10],[12,18],[3,0],[-1,1],[4,-1],[2,2],[-2,1],[-1,1],[2,0],[-2,1],[142,-17],[1,-1],[1,-1],[5,-1],[0,-3],[2,-2],[5,-1],[1,1],[3,0],[5,-2],[4,-4],[4,-1],[14,1],[10,0],[12,1],[2,1],[0,2],[3,0],[6,1],[31,-3],[6,-3],[6,1],[24,-3],[-8,17],[-9,37],[-8,16],[55,1],[98,-27],[45,-6],[-2,-8],[14,-2],[8,-1],[0,-1],[4,0],[2,-1],[4,-2],[0,1],[7,-1],[14,-7],[9,-17],[-2,-9],[11,-4],[9,1],[18,3],[27,9],[8,-1],[24,-2],[19,1],[25,5],[5,-2],[9,-15],[6,0],[4,16],[19,10],[29,5],[-11,4],[-22,1],[-19,-1],[-22,4],[-8,0],[-2,-5],[-11,2],[-25,4],[-19,3],[-8,5],[-23,9],[-16,5],[-11,5],[0,1],[112,53],[9,2],[3,1],[62,10],[3,-1],[6,-1],[3,-2],[-1,-8],[1,0],[-11,-10],[11,-4],[22,-2],[17,-5],[16,0],[24,4],[-16,4],[-19,3],[-20,8],[0,9],[13,10],[1,1],[4,3],[54,9],[92,51],[24,5],[23,-29],[1,-15],[13,-4],[3,-4],[14,-14],[-2,-10],[-5,-19],[24,11],[6,-2],[8,-10],[6,-2],[2,17],[19,1],[-2,9],[-26,5],[-16,7],[8,18],[-9,8],[-16,19],[13,-5],[0,30],[-2,1],[11,2],[-6,11],[13,4],[8,-2],[23,1],[5,5],[11,2],[5,7],[-14,1],[-74,1],[-12,-8],[-50,41],[1,0],[3,4],[-3,5],[-14,4],[-4,1],[-9,7],[-21,119],[33,52],[16,-7],[-6,15],[11,9],[9,27],[4,4],[139,28],[0,19],[5,1],[-5,0],[0,17],[-29,-16],[-22,0],[-17,2],[-14,0],[-25,-8],[-43,-25],[-10,-15],[-139,-10],[0,2],[-9,21],[-3,-5]],[[1709,1962],[5,4],[11,7],[13,11],[27,1],[18,2],[-74,-25]],[[1558,1735],[-3,0],[1,2],[2,-2]],[[1517,1892],[1,1],[3,-1],[2,-1],[-6,1]],[[3668,2019],[7,1],[5,1]],[[3579,1980],[-9,-2],[1,0]],[[3571,1978],[15,12],[12,9],[16,5]],[[2356,3510],[3,-17],[12,-8]],[[2403,3309],[10,-7],[4,-8]],[[2420,3292],[3,0],[4,0]],[[2459,3314],[3,2]],[[2462,3318],[4,8],[0,10]],[[2470,3345],[1,0],[-1,2],[1,1]],[[2519,3338],[-4,-3],[0,-4],[7,-6],[1,-8],[4,-5],[13,-9]],[[2557,3284],[5,0],[7,-3],[13,-4],[2,1],[13,6]],[[2620,3290],[4,-2],[6,0],[3,1]],[[2633,3289],[4,3],[4,6],[0,4]],[[2639,3308],[1,3],[3,3],[3,0],[4,0],[8,0],[7,0]],[[2694,3317],[8,-2],[5,-2],[7,-4]],[[2714,3309],[16,1],[2,-1],[-1,-7],[2,-3]],[[2813,3250],[8,-21],[9,-11],[3,-1],[-1,2]],[[2832,3219],[1,1],[1,0],[1,-2]],[[2835,3218],[2,0],[-2,-2]],[[2852,3202],[6,-6],[-4,-3]],[[2863,3168],[-3,0],[-2,-3],[0,-2],[1,-2]],[[2859,3161],[0,-2],[1,-1]],[[2875,3114],[4,-5],[-1,-2]],[[2875,3110],[-1,-1],[1,-5]],[[3095,2862],[1,-9],[-3,-5]],[[3075,2821],[-16,0]],[[2938,2791],[-11,-4],[-1,0]],[[2897,2798],[-3,-1],[0,-2],[-5,-6]],[[2812,2723],[-13,-21],[-8,-8],[-5,-3]],[[2786,2691],[-1,-2],[-4,-1]],[[2781,2688],[-5,-4]],[[2776,2684],[-5,0],[-7,-2]],[[2764,2682],[-6,-5],[-2,-1]],[[2756,2676],[-13,1],[-11,2]],[[2392,2656],[-7,-1],[-14,-9]],[[2345,2636],[-6,-2],[-1,1]],[[2362,2217],[2,0],[2,-2],[-1,-1]],[[1594,2103],[-5,1],[-4,0],[-4,-2],[-11,-7]],[[1558,2091],[-5,-2],[-5,-2],[-6,-4],[-2,-2]],[[1540,2081],[0,-3],[-1,-3],[2,-4]],[[1513,1973],[-2,-2],[5,-1],[1,-2]],[[1517,1958],[-7,-13],[0,-7],[-47,-3],[-46,-23],[49,0],[-1,-1],[-34,-23],[-13,-7],[-14,6],[-3,8],[-1,20],[10,14],[10,13],[13,12],[-6,17],[-9,4],[-22,8],[-25,8],[-23,26],[15,-26],[17,-15],[14,-8],[14,-8],[3,-7],[-15,-16],[-10,-18],[2,-11],[5,-19],[9,-17],[9,-4],[21,5],[11,7],[18,12],[24,8],[17,-2],[16,-5],[-1,-1]],[[1517,1892],[-8,3],[-7,2],[-3,-6],[13,-5],[17,-7],[7,-17],[-11,2],[-16,-4],[17,-13],[9,-15],[1,-4],[-14,-45],[-6,0],[5,-5],[-1,-3],[15,-11],[5,-6],[-2,-4],[0,-9],[1,-3],[3,-11],[6,-7],[2,-2],[9,-3],[5,-3],[4,-2],[-8,-33],[-56,-49],[-292,-55],[-79,-3],[-3,5],[-11,10],[-25,6],[-19,3],[-19,2],[-17,4],[-7,-13],[-6,2],[-24,-4],[-3,0],[-29,3],[-4,7],[-6,0],[-7,-5],[-3,0],[-99,11],[-3,11],[-9,18],[-15,16],[-31,19],[3,9],[4,20],[2,18],[-18,-19],[-2,-11],[-2,-20],[11,-10],[-5,-7],[0,-10],[-3,-1],[-1,-2],[-4,-1],[-4,-3],[-1,-2],[-12,1],[-8,-7],[-2,-8],[-29,3],[-8,11],[-16,-2],[-10,-5],[-81,9],[-24,-8],[-7,10],[-1,13],[-2,20],[0,11],[-12,8],[1,-6],[-5,-20],[-1,-18],[-13,-16],[4,-11],[2,-2],[-8,-2],[3,-6],[-2,-8],[5,-4],[-1,-2],[-2,-1],[-2,-3],[0,-5],[1,-6],[7,-3],[12,-7],[16,-35],[-43,-42],[-35,1],[-15,15],[-1,5],[5,34],[0,30],[0,1],[-6,11],[-14,4],[-3,-1],[-42,26],[5,15],[-6,16],[-17,10],[-20,5],[-11,0],[-19,2],[-8,-1],[-45,28],[-32,8],[-5,11],[45,0],[36,6],[4,-1],[1,-2],[3,-2],[4,1],[2,-1],[5,0],[1,-2],[2,0],[6,0],[9,6],[4,5],[19,5],[10,12],[5,13],[4,16],[1,1],[23,27],[32,25],[1,0],[11,0],[2,5],[13,13],[121,20],[65,22],[2,2],[2,0],[7,-1],[0,1],[4,0],[6,-3],[4,0],[7,1],[0,1],[2,-1],[2,1],[1,1],[-2,2],[0,2],[10,4],[2,6],[3,3],[5,4],[1,2],[4,4],[3,6],[10,23],[6,21],[0,4],[2,2],[1,5],[-2,3],[1,1],[1,7],[-2,1],[0,2],[1,1],[2,1],[-2,2],[1,1],[0,3],[-2,1],[1,1],[-2,2],[1,0],[-1,3],[-1,0],[0,1],[1,2],[1,0],[0,2],[7,17],[1,20],[2,11],[2,13],[2,20],[4,20],[-7,18],[-15,25],[11,8],[-17,-1],[-12,28],[5,2],[-1,16],[-3,8],[-4,22],[-7,18],[-6,15],[-12,15],[-18,6],[-12,24],[-12,9],[-1,3],[-5,29],[-15,9],[-4,-4],[-9,-4],[-37,0],[-19,-1],[-4,-15],[-3,2],[1,2],[-2,-1],[0,1],[-1,-1],[-11,10],[-7,6],[-6,1],[-1,0],[-9,7],[-34,3],[0,1],[-3,5],[-5,4],[-30,-3],[-14,-1],[-4,1],[-14,15],[-12,-10],[-15,-1],[-16,2],[-32,18],[-3,2],[-2,0],[-30,17],[-33,-20],[-12,0],[-18,0],[-8,-1],[-15,-6],[-1,0],[-2,0],[-3,-3],[-6,-3],[-1,-2],[-2,-1],[0,-2],[-2,-1],[-4,18],[-8,0],[-12,-4],[-8,-2],[-10,1],[-8,0],[-14,-4],[-18,-9],[-14,-5],[-2,1],[-2,-3],[-1,-1],[-3,-1],[-1,-3],[-2,-1],[-1,0],[-3,0],[-2,3],[-4,0],[3,-3],[0,-3],[1,1],[0,-1],[-11,-4],[-12,-3],[-10,-3],[-14,-2],[-2,0],[1,6],[3,9],[-44,-13],[-2,-2],[-29,0],[25,18],[26,12],[0,37],[-12,21],[-8,16],[10,15],[36,18],[0,30],[-28,59],[2,1],[2,0],[2,3],[1,0],[1,1],[0,-1],[1,1],[2,-1],[1,0],[-1,1],[2,1],[3,-2],[-2,2],[1,1],[1,1],[3,-1],[1,1],[-1,1],[1,0],[5,-1],[-2,2],[3,1],[0,1],[18,7],[1,-2],[2,1],[4,-1],[-2,-7],[0,-1],[-1,-4],[2,-1],[4,3],[6,1],[2,3],[3,-3],[1,1],[1,1],[3,1],[0,1],[2,0],[5,0],[2,-2],[2,-3],[2,1],[2,-2],[0,1],[1,-2],[2,0],[3,2],[0,2],[1,1],[1,2],[4,-3],[4,-1],[2,1],[-2,1],[1,2],[-1,1],[0,1],[1,0],[-1,2],[4,1],[1,-1],[0,-2],[2,2],[2,1],[2,-1],[1,2],[1,-2],[5,1],[5,-1],[1,2],[0,-1],[1,1],[1,0],[0,2],[0,2],[2,-1],[0,1],[1,-1],[0,-1],[2,1],[3,-1],[0,1],[2,0],[0,2],[2,1],[-1,1],[4,-2],[-1,2],[1,2],[5,-2],[2,-1],[0,-2],[-1,-1],[1,0],[1,2],[4,2],[0,-1],[1,1],[1,-1],[0,1],[4,1],[4,3],[7,2],[2,2],[0,2],[-2,2],[1,0],[-2,1],[-2,2],[11,3],[1,2],[59,18],[39,32],[0,-1],[1,0],[2,-1],[0,2],[6,0],[-3,1],[2,3],[-3,0],[3,2],[1,1],[0,-1],[10,3],[1,0],[0,-2],[2,-1],[0,3],[3,1],[1,-1],[3,2],[1,0],[1,-2],[1,2],[1,1],[1,-1],[1,-1],[2,0],[1,1],[2,0],[3,1],[1,0],[1,-1],[6,0],[1,1],[2,-1],[1,1],[0,-1],[1,2],[1,1],[-2,1],[1,1],[4,2],[0,1],[1,0],[1,1],[3,2],[0,6],[3,1],[16,8],[-4,4],[-10,5],[-9,-4],[-5,1],[2,0],[1,0],[0,1],[2,1],[3,-1],[1,1],[-1,0],[2,0],[0,3],[2,0],[-1,1],[5,2],[3,-1],[1,2],[4,0],[0,-3],[2,3],[5,1],[-1,1],[1,0],[4,1],[1,6],[-1,1],[15,4],[3,5],[-4,5],[18,8],[85,10],[1,-1],[1,1],[2,0],[3,-2],[3,1],[2,-1],[-1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[3,0],[2,0],[3,2],[0,-2],[3,0],[5,3],[4,-2],[3,-1],[1,-1],[5,0],[2,2],[-2,0],[0,1],[3,1],[2,0],[2,0],[0,-1],[2,0],[0,-1],[4,0],[2,1],[-1,1],[1,1],[2,1],[-1,2],[13,0],[-4,14],[114,34],[13,9],[1,-1],[3,1],[1,1],[1,1],[2,-2],[1,1],[2,1],[3,0],[2,-1],[1,1],[4,0],[2,1],[-1,1],[3,-1],[-1,2],[4,-3],[1,1],[2,0],[0,-2],[4,0],[3,-1],[1,1],[-2,3],[1,1],[1,0],[2,1],[1,-1],[2,2],[-2,2],[6,0],[10,2],[8,5],[-1,21],[1,0],[0,1],[1,1],[0,1],[4,2],[2,-1],[-1,-1],[0,-2],[3,1],[4,-1],[1,-2],[1,1],[2,1],[4,-2],[-1,2],[2,0],[-1,2],[3,-1],[1,0],[-1,1],[4,0],[2,-2],[3,-1],[-2,-1],[4,0],[4,-2],[1,0],[1,-1],[2,2],[-1,0],[0,1],[5,-1],[2,1],[5,5],[3,3],[8,-1],[13,8],[1,21],[-6,18],[2,9],[15,28],[-6,-1],[-23,8],[-2,4],[-5,15],[-7,8],[0,6],[51,34],[6,0],[0,4],[18,12],[0,5],[-6,2],[-12,4],[0,3],[-10,7],[7,13],[-6,2],[-11,6],[-22,9],[-2,3],[3,12],[6,8],[15,14],[8,5],[3,3],[1,0],[0,1],[1,0],[1,0],[0,-1],[2,2],[0,1],[5,2],[1,0],[-1,0],[8,4],[40,7],[0,-2],[6,-1],[1,-1],[1,1],[1,0],[0,-1],[3,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-2],[-3,-2],[1,-1],[-2,-2],[1,-2],[1,0],[-1,-1],[1,0],[0,-1],[0,-1],[2,0],[2,0],[1,1],[0,1],[2,0],[1,0],[0,2],[2,0],[-1,4],[0,2],[2,0],[0,-2],[1,1],[2,1],[0,2],[2,1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[0,-1],[1,0],[1,2],[0,-3],[1,1],[2,0],[0,-4],[2,1],[1,-1],[3,1],[-1,-2],[2,0],[0,-2],[2,0],[-1,1],[1,-1],[1,1],[3,-3],[0,3],[1,2],[1,-1],[0,2],[2,0],[1,0],[0,-1],[0,2],[2,0],[1,-4],[1,2],[1,-1],[0,1],[3,0],[2,3],[1,-1],[1,0],[3,2],[3,-2],[2,0],[-1,-2],[2,2],[2,-1],[0,-2],[0,-2],[3,1],[0,-2],[2,0],[-2,-3],[2,1],[1,-1],[4,0],[-1,2],[1,0],[0,2],[1,1],[5,1],[1,-1],[-1,-2],[2,2],[0,-3],[1,1],[3,0],[0,1],[1,0],[1,-1],[-1,-2],[1,0],[2,-1],[2,2],[2,-2],[1,0],[1,0],[0,-1],[1,1],[0,-2],[-1,-1],[2,-1],[-2,-1],[0,-1],[5,2],[2,1],[1,-1],[2,0],[3,-3],[1,1],[0,2],[1,0],[-1,1],[1,1],[5,0],[0,-2],[1,-1],[1,-4],[1,0],[-2,-1],[2,0],[-3,-6],[2,1],[1,-3],[1,1],[0,-2],[1,1],[1,-2],[-1,-4],[1,-1],[2,1],[1,-1],[3,1],[2,-1],[0,2],[1,0],[-2,1],[2,1],[1,0],[-1,1],[2,0],[2,0],[-2,4],[1,0],[-1,0],[2,1],[-1,1],[2,-1],[3,1],[-2,1],[0,2],[2,-1],[-1,1],[0,1],[1,0],[-1,2],[1,1],[1,0],[2,-6],[2,0],[0,1],[4,0],[-1,4],[1,1],[1,-1],[2,0],[-1,-2],[1,0],[0,-1],[1,1],[1,-1],[0,1],[2,1],[0,-2],[1,0],[2,-2],[1,0],[3,-1],[1,-1],[0,2],[2,-1],[1,3],[-1,0],[1,1],[2,-1],[0,1],[100,-44],[-1,0],[-3,-2],[-1,-3],[1,-1],[2,3],[1,0],[-6,-8],[-7,-13],[0,-2],[-1,0],[-1,-2],[-1,0],[-9,-7],[-1,-1],[1,-1],[-2,0],[-3,-4],[-6,-6],[1,-1],[2,2],[1,0],[2,-1],[2,1],[7,0],[8,-7],[-1,-2],[1,-1],[10,3],[11,7],[-1,-1],[-9,-7],[-12,-3],[2,-7],[0,-1],[-1,1],[-1,2],[1,-4],[3,-3],[-4,2],[1,-1],[5,-3],[3,-1],[7,4],[1,0],[0,-1],[1,1],[2,-1],[1,1],[0,-1],[2,1],[3,0],[2,0],[0,-1],[2,1],[4,1],[0,-1],[2,0],[2,0],[0,-1],[2,1],[-2,-2],[2,0],[-1,-1],[2,0],[-2,-1],[2,-1],[1,-2],[-2,-1],[1,0],[0,-2],[1,-1],[2,0],[1,-1],[1,-2],[3,1],[2,-5],[1,-1],[2,0],[4,1],[0,1],[2,1],[-5,3],[6,3],[-1,4],[2,4],[-1,2],[1,1],[-4,1],[0,2],[1,0],[1,1],[4,0],[0,-1],[1,0],[-2,-1],[3,1],[-3,-1],[4,0],[5,1],[4,0],[2,1],[2,-1],[1,1],[0,-1],[1,0],[-1,-1],[3,0],[2,-2],[0,-3],[3,-1],[3,2],[-1,-3],[3,0],[2,4],[2,1],[2,0],[1,-1],[2,1],[2,0],[5,1],[-2,3],[0,1],[1,0],[0,2],[1,1],[-1,1],[2,1],[1,0],[1,0],[2,0],[1,-2],[2,1],[1,0],[1,1],[4,2],[1,-1],[1,-1],[1,2],[1,-1],[2,1],[3,-2],[1,1],[1,1],[2,0],[0,-1],[1,0],[3,3],[17,4],[1,0],[-1,1],[1,2],[-1,0],[2,0],[0,2],[2,-1],[3,1],[5,6],[2,3],[-2,0],[1,1],[-1,0],[-1,0],[2,1],[-1,0],[1,1],[7,0],[0,-1],[1,0],[-1,-2],[1,0],[3,-2],[4,-1],[3,0],[3,2],[0,2],[-1,-1],[0,1],[4,4],[0,1],[-2,0],[-1,1],[6,4],[1,-1],[3,1],[3,-1],[1,0],[0,-1],[3,-2],[3,0],[1,1],[3,-2],[1,1],[2,2],[0,1],[-3,0],[-1,1],[2,1],[-1,1],[2,2],[-3,0],[4,1],[1,-1],[0,2],[1,-1],[1,1],[-2,0],[-1,1],[2,-1],[0,1],[1,0],[0,1],[-3,0],[2,2],[-2,-1],[-1,0],[2,1],[0,1],[1,0],[1,1],[1,0],[1,-2],[2,1],[-1,-2],[2,1],[-1,-1],[3,-2],[2,-1],[1,0],[4,2],[4,0],[-1,-1],[3,-1],[0,-1],[2,-2],[2,-1],[1,-1],[2,0],[3,1],[-1,2],[-1,1],[-1,1],[2,1],[-3,1],[-2,4],[3,0],[0,2],[-3,0],[0,1],[3,-1],[0,3],[-1,0],[-1,1],[1,0],[0,1],[3,1],[-2,0],[0,1],[21,7],[-4,10],[1,0],[29,22],[1,9],[-12,15],[-11,6],[41,-6],[34,-10],[0,-1],[-1,-2],[0,-1],[4,-2],[7,0],[-1,2],[0,1],[6,-2],[7,-2],[2,-5],[-2,-1],[1,-1],[2,1],[-1,-3],[1,0],[2,2],[1,-1],[0,-1],[-1,-1],[3,-1],[0,-1],[3,0],[2,1],[3,-2],[2,2],[2,-1],[-2,-1],[3,-1],[0,3],[6,-2],[1,1],[1,-1],[2,0],[0,2],[1,-1],[1,1],[0,-1],[0,-1],[0,-4],[2,-1],[2,1],[0,5],[13,-5],[1,0],[38,-12],[81,-10],[35,20],[-3,23],[16,-1],[-17,11],[-2,15],[-5,15],[1,0],[5,10],[-3,4],[-9,7],[-6,19],[1,24],[9,9],[13,4],[3,12],[-3,4],[3,1],[2,0],[-1,-1],[3,-2],[2,2],[3,1],[7,0],[14,9],[9,5],[90,13],[7,3],[4,2],[2,0],[1,0],[13,3],[17,5],[17,13],[79,78],[3,-2],[2,0],[0,2],[-3,2],[2,2],[8,7],[10,23],[14,13],[4,11],[2,6],[12,15],[2,0],[13,7],[12,13],[2,14],[-2,2],[66,58],[1,-1],[2,-2],[-1,-2],[2,0],[2,-2],[9,-1],[4,-1],[2,1],[0,-2],[2,1],[-1,-1],[0,-1],[2,1],[0,-1],[3,1],[0,-1],[3,-1],[3,0],[4,0],[0,-4],[1,-2],[2,-1],[-1,-1],[1,-1],[0,-1],[1,-2],[2,1],[0,-2],[2,1],[5,-2],[-1,-1],[3,0],[3,-1],[14,1],[19,-7],[19,-2],[6,-1],[4,-2]]],"transform":{"scale":[0.00026626681623193315,0.0002042143619219189],"translate":[-5.310943162999905,51.3849015406565]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment