Skip to content

Instantly share code, notes, and snippets.

@vsapsai
Last active August 29, 2015 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vsapsai/8888013 to your computer and use it in GitHub Desktop.
Save vsapsai/8888013 to your computer and use it in GitHub Desktop.
All features.

Demonstrate all features present in ukraine_map_data/ukraine.json.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
svg {
background-color: rgb(191, 216, 242);
}
.country {
fill: #eee;
}
.country.UKR {
/*fill: #cdc;*/ /* Na zielonej Ukrainie */
fill: #fff;
}
.country-boundary {
fill: none;
stroke: #aaa;
}
.region {
fill: none;
}
.region-boundary {
fill: none;
stroke: #777;
stroke-dasharray: 2,2;
stroke-linejoin: round;
}
.region-label {
fill: #888;
fill-opacity: .8;
font-size: 15px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;
text-anchor: middle;
}
.coastline, .river, .lake {
stroke: rgb(83, 168, 231);
}
.coastline, .river {
fill: none;
}
.lake {
fill: rgb(191, 216, 242);
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
var width = 900,
height = 600;
var geometry_center = {"latitude": 48.360833, "longitude": 31.1809725};
var geography_center = {"latitude": 49.0275, "longitude": 31.482778};
var svg = d3.select("body").append("center").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("ukraine.json", function(error, ukraine_data) {
var projection = d3.geo.conicEqualArea()
.center([0, geometry_center.latitude])
.rotate([-geometry_center.longitude, 0])
.parallels([46, 52]) // vsapsai: selected these parallels myself, most likely they are wrong.
.scale(4000)
.translate([width / 2, height / 2]);
var path = d3.geo.path()
.projection(projection);
var countries = topojson.feature(ukraine_data, ukraine_data.objects.countries);
svg.selectAll(".country")
.data(countries.features)
.enter().append("path")
.attr("class", function(d) { return "country " + d.id; })
.attr("d", path);
svg.append("path")
.datum(topojson.mesh(ukraine_data, ukraine_data.objects.countries, function(a, b) { return a !== b; }))
.attr("class", "country-boundary")
.attr("d", path);
svg.append("path")
.datum(topojson.mesh(ukraine_data, ukraine_data.objects.countries, function(a, b) { return a === b; }))
.attr("class", "coastline")
.attr("d", path);
var water_group = svg.append("g")
.attr("id", "water-resources");
var rivers = topojson.feature(ukraine_data, ukraine_data.objects.rivers);
water_group.selectAll(".river")
.data(rivers.features)
.enter().append("path")
.attr("class", "river")
.attr("name", function(d) { return d.properties.name; })
.attr("d", path);
// Add lakes after rivers so that river lines connect reservoirs, not cross them.
var lakes = topojson.feature(ukraine_data, ukraine_data.objects.lakes);
water_group.selectAll(".lake")
.data(lakes.features)
.enter().append("path")
.attr("class", "lake") // Note: not necessary a lake, it can be a reservoir.
.attr("name", function(d) { return d.properties.name; })
.attr("d", path);
var regions = topojson.feature(ukraine_data, ukraine_data.objects.regions);
// -- areas
svg.selectAll(".region")
.data(regions.features)
.enter().append("path")
.classed("region", true)
.attr("id", function(d) { return d.id; })
.attr("d", path);
// -- boundaries
svg.append("path")
.datum(topojson.mesh(ukraine_data, ukraine_data.objects.regions, function(a, b) { return a !== b; }))
.classed("region-boundary", true)
.attr("d", path);
// -- labels
svg.selectAll(".region-label")
.data(regions.features)
.enter().append("text")
.attr("transform", function(d) { return "translate(" + projection(d.properties.label_point) + ")"; })
.classed("region-label", true)
.selectAll("tspan")
.data(function(d) { return d.properties.localized_name.ua.split(" "); })
.enter().append("tspan")
.attr("x", "0")
.attr("dy", function(d, i) { return i > 0 ? "1.1em" : "0"; })
.text(function(d) { return d + " "; });
});
d3.select(self.frameElement)
.style("width", width + "px")
.style("height", height + "px");
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"BGR","properties":{"name":"Bulgaria"},"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]]},{"type":"Polygon","id":"BLR","properties":{"name":"Belarus"},"arcs":[[35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,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]]},{"type":"Polygon","id":"HUN","properties":{"name":"Hungary"},"arcs":[[201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224]]},{"type":"Polygon","id":"MDA","properties":{"name":"Moldova"},"arcs":[[225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,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,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,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]]},{"type":"Polygon","id":"POL","properties":{"name":"Poland"},"arcs":[[-200,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,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471]]},{"type":"Polygon","id":"ROU","properties":{"name":"Romania"},"arcs":[[472,473,474,475,476,477,478,479,-481,-482,-483,-484,484,485,-487,487,-489,489,490,491,492,493,-495,-496,496,497,-499,-500,-501,501,-503,-504,-505,505,506,-508,-509,509,510,-512,512,513,514,-35,-34,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,-6,-5,-4,-3,515,-517,517,-519,519,-521,521,522,523,524,-526,526,527,528,-530,530,-532,532,-534,534,535,536,-538,538,539,540,-223,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,-226]]},{"type":"Polygon","id":"RUS","properties":{"name":"Russia"},"arcs":[[588,589,590,591,592,593,594,595,596,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,636,637,638,639,640,641,642,643,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,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,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,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,-36,809]]},{"type":"Polygon","id":"SRB","properties":{"name":"Serbia"},"arcs":[[-540,-539,537,-537,-536,-535,533,-533,531,-531,529,-529,-528,-527,525,-525,-524,-523,-522,520,-520,518,-518,516,-516,-2,810]]},{"type":"Polygon","id":"SVK","properties":{"name":"Slovakia"},"arcs":[[-471,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,-225,829]]},{"type":"MultiPolygon","id":"UKR","properties":{"name":"Ukraine"},"arcs":[[[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,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,-514,-513,511,-511,-510,508,507,-507,-506,504,503,502,-502,500,499,498,-498,-497,495,494,-494,-493,-492,-491,-490,488,-488,486,-486,-485,483,482,481,480,-480,-479,-478,-477,-476,-475,-474,-473,-406,-405,-404,-403,-402,-401,-400,-399,-398,-397,-396,-395,-394,-393,-392,-391,-390,-389,-388,-387,-386,-385,-384,-383,-382,-381,-380,-379,-378,-377,-376,-375,-374,-373,-372,-371,-370,-369,-368,-367,-366,-365,-364,-363,-362,-361,-360,-359,-358,-357,-356,-355,-354,-353,-352,-351,-350,-349,-348,-347,-346,-345,-344,-343,-342,-341,-340,-339,-338,-337,-336,-335,-334,-333,-332,-331,-330,-329,-328,-327,-326,-325,-324,-323,-322,-321,-320,-319,-318,-317,-316,-315,-314,-313,-312,-311,-310,-309,-308,-307,-306,-305,-304,-303,-302,-301,-300,-299,-298,-297,-296,-295,-294,-293,-292,-291,-290,-289,-288,-287,-286,-285,-284,-283,-282,-281,-280,-279,-278,-277,-276,-275,-274,-273,-272,-271,-270,-269,-268,-267,-266,-265,-264,-263,-262,-261,-260,-259,-258,-257,-256,-255,-254,-253,-252,-251,-250,-249,-248,-247,-246,-245,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,-227,-588,-587,-586,-585,-584,-583,-582,-581,-580,-579,-578,-577,-576,-575,-574,-573,-572,-571,-570,-569,-568,-567,-566,-565,-564,-563,-562,-561,-560,-559,-558,-557,-556,-555,-554,-553,-552,-551,-550,-549,-548,-547,-546,-545,-544,-543,-542,-222,-221,-220,-219,-218,-217,-216,-215,-214,-213,-212,-211,-210,-209,-208,-207,-206,-205,-204,-203,-202,-829,-828,-827,-826,-825,-824,-823,-822,-821,-820,-819,-818,-817,-816,-815,-814,-813,-812,-470,-469,-468,-467,-466,-465,-464,-463,-462,-461,-460,-459,-458,-457,-456,-455,-454,-453,-452,-451,-450,-449,-448,-447,-446,-445,-444,-443,-442,-441,-440,-439,-438,-437,-436,-435,-434,-433,-432,-431,-430,-429,-428,-427,-426,-425,-424,-423,-422,-421,-420,-419,-418,-417,-416,-415,-414,-413,-412,-411,-410,-409,-408,-407,-199,-198,-197,-196,-195,-194,-193,-192,-191,-190,-189,-188,-187,-186,-185,-184,-183,-182,-181,-180,-179,-178,-177,-176,-175,-174,-173,-172,-171,-170,-169,-168,-167,-166,-165,-164,-163,-162,-161,-160,-159,-158,-157,-156,-155,-154,-153,-152,-151,-150,-149,-148,-147,-146,-145,-144,-143,-142,-141,-140,-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-126,-125,-124,-123,-122,-121,-120,-119,-118,-117,-116,-115,-114,-113,-112,-111,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-82,-81,-80,-79,-78,-77,-76,-75,-74,-73,-72,-71,-70,-69,-68,-67,-66,-65,-64,-63,-62,-61,-60,-59,-58,-57,-56,-55,-54,-53,-52,-51,-50,-49,-48,-47,-46,-45,-44,-43,-42,-41,-40,-39,-38,-37,-809,-808,-807,-806,-805,-804,-803,-802,-801,-800,-799,-798,-797,-796,-795,-794,-793,-792,-791,-790,-789,-788,-787,-786,-785,-784,-783,-782,-781,-780,-779,-778,-777,-776,-775,-774,-773,-772,-771,-770,-769,-768,-767,-766,-765,-764,-763,-762,-761,-760,-759,-758,-757,-756,-755,-754,-753,-752,-751,-750,-749,-748,-747,-746,-745,-744,-743,-742,-741,-740,-739,-738,-737,-736,-735,-734,-733,-732,-731,-730,-729,-728,-727,-726,-725,-724,-723,-722,-721,-720,-719,-718,-717,-716,-715,-714,-713,-712,-711,-710,-709,-708,-707,-706,-705,-704,-703,-702,-701,-700,-699,-698,-697,-696,-695,-694,-693,-692,-691,-690,-689,-688,-687,-686,-685,-684,-683,-682,-681,-680,-679,-678,-677,-676,-675,-674,-673,-672,-671,-670,-669,-668,-667,-666,-665,-664,-663,-662,-661,-660,-659,-658,-657,-656,-655,-654,-653,-652,-651,-650,-649,-648,-647,-646,-645,-644,-643,-642,-641,-640,-639,-638,-637,-636,-635,-634,-633,-632,-631,-630,-629,-628,-627,-626,-625,-624,-623,-622,-621,-620,-619,-618,-617,-616,-615,-614,-613,-612,-611,-610,-609,-608,-607,-606,-605,-604,-603,-602,-601,-600,-599,-598,-597,-596,-595,-594,-593,-592,-591,-590,-589]]]}]},"regions":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"crimea","properties":{"name":"Crimea","localized_name":{"ua":"Автономна Республіка Крим"},"label_point":[34.2,45.45]},"arcs":[[1277,923,1278,925,1279,1280,1281,929,1282,1283,932,1284,1285,935,1286,937,1287,1288,940,1289,942,1290,944,1291,946,1292,948,1293,1294,951,1295,953,1296,1297,956,1298,958,1299,960,1300,962,1301,1302,965,1303,967,1304,969,1305,1306,1307,973,1308,1309,976,1310,1311,1312,980,1313,1314,983,1315,985,1316,1317,1318,989,1319,991,1320,1321,994,1322,996,1323,1324,1325,1000,1326,1002,1327,1328,1005,1329,1007,1330,1331,1010,1332,1333,1013,1334,1015,1335,1336,1018,1337,1338,1021,1339,1340,1024,1341,1026,1342,1028,1343,1030,1344,1032,1345,1346,1035,1347,1037,1348,1349,1350,1351,1352,1043,1353,1354,1355,1047,1356,1049,1357,1051,1358,1053,1359,1360,1056,1361,1058,1362,1363,1364,1062,1365,1064,1366,1066,1367,1368,1369,1370,1071,1371,1372]]},{"type":"MultiPolygon","id":"mk","properties":{"name":"Mykolayiv","localized_name":{"ua":"Миколаївська область"},"label_point":[31.95,47.55]},"arcs":[[[1373,1374,1375,1122,1376,1377,1125,1378,1127]],[[1379,1380,1381,1144,1382,1383,1147,1384,1149,1385,1151,1386,1387,1154,1388,1156,1389,1390,1159,1391,1161,1392,1393,1164,1394,1166,1395,1168,1396,1170,1397,1398,1399,1174,1400,1401,1177,1402,1179,1403,1181,1404,1183,1405,1185,1406,1187,1407,1189,1408,1191,1409,1410,1411,1195,1412,1413,1414]]]},{"type":"Polygon","id":"cn","properties":{"name":"Chernihiv","localized_name":{"ua":"Чернігівська область"},"label_point":[31.9,51.3]},"arcs":[[1415,1416,1417,1418,-111,-110,-109,1419,-1421,1421,-104,1422,-101,-100,-99,1423,1424,1425,-96,1426,-93,-92,1427,-1429,1429,1430,-85,1431,1432,-79,-78,1433,-76,-75,-74,-73,1434,1435,-70,-69,1436,-67,-66,1437,1438,1439,-62,1440,1441,-57,-56,1442,1443,-51,-50,-1445,1445,1446,1447,1448,-44,1449,1450,1451,-40,1452,-38,1453,1454,-807,1455,-805,1456,-803,1457,1458,-800,1459,-798,1460,1461,-795,1462,1463,-792,1464]]},{"type":"Polygon","id":"rv","properties":{"name":"Rivne","localized_name":{"ua":"Рівненська область"},"label_point":[26.6,50.95]},"arcs":[[1465,1466,1467,1468,1469,1470,1471,1472,-184,1473,1474,1475,-180,1476,-178,1477,-176,1478,-174]]},{"type":"Polygon","id":"cv","properties":{"name":"Chernivtsi","localized_name":{"ua":"Чернівецька область"},"label_point":[26.3,48.25]},"arcs":[[1479,1480,1481,-247,1482,-245,1483,-243,1484,-241,1485,-239,1486,1487,1488,1489,-234,1490,-232,1491,-230,1492,-228,1493,1494,1495,1496,-585,1497,1498,-582,1499,1500,1501,1502,-577,1503,-575,1504,1505]]},{"type":"Polygon","id":"if","properties":{"name":"Ivano-Frankivs'k","localized_name":{"ua":"Івано-Франківська область"},"label_point":[24.8,48.7]},"arcs":[[1506,-1505,-574,1507,-572,1508,-570,1509,1510]]},{"type":"Polygon","id":"km","properties":{"name":"Khmel'nyts'kyy","localized_name":{"ua":"Хмельницька область"},"label_point":[27,49.8]},"arcs":[[1511,1512,-1480,1513,-1467]]},{"type":"Polygon","id":"lviv","properties":{"name":"L'viv","localized_name":{"ua":"Львівська область"},"label_point":[24.1,49.9]},"arcs":[[-1469,1514,-1511,1515,-463,1516,1517,-460,1518,-458,1519,1520,1521,1522,1523,1524,1525,1526,-449,1527,1528,-446,1529,-444,1530,-442,1531,1532,1533,-438,1534,1535,-435,1536,1537]]},{"type":"Polygon","id":"te","properties":{"name":"Ternopil'","localized_name":{"ua":"Тернопільська область"},"label_point":[25.55,49.3]},"arcs":[[-1514,-1506,-1507,-1515,-1468]]},{"type":"Polygon","id":"uz","properties":{"name":"Transcarpathia","localized_name":{"ua":"Закарпатська область"},"label_point":[23.15,48.33]},"arcs":[[-1516,-1510,-569,1538,-567,1539,-565,1540,1541,-562,1542,-560,1543,-558,1544,-556,1545,1546,-553,1547,-551,1548,-549,1549,-547,1550,1551,-544,1552,1553,-221,1554,1555,1556,-217,1557,-215,1558,1559,1560,1561,-210,1562,-208,1563,-206,1564,1565,1566,-202,-829,1567,-827,1568,-825,1569,-823,1570,1571,-820,1572,1573,-817,1574,-815,1575,-813,1576,-470,1577,-468,1578,-466,1579,1580]]},{"type":"Polygon","id":"volyn","properties":{"name":"Volyn","localized_name":{"ua":"Волинська область"},"label_point":[24.8,51.2]},"arcs":[[-1470,-1538,1581,-433,1582,-431,1583,1584,-428,1585,-426,1586,-424,1587,-422,1588,-420,1589,-418,1590,1591,-415,1592,1593,-412,1594,-410,1595,1596,1597,1598,-197,1599,-195,1600,-193,1601,-191,1602,1603,-188,1604]]},{"type":"Polygon","id":"ck","properties":{"name":"Cherkasy","localized_name":{"ua":"Черкаська область"},"label_point":[31.6,49.21]},"arcs":[[1605,1606,1607,1608]]},{"type":"Polygon","id":"kr","properties":{"name":"Kirovohrad","localized_name":{"ua":"Кіровоградська область"},"label_point":[32.1,48.5]},"arcs":[[1609,-1415,1610,1611,-1607,1612]]},{"type":"Polygon","id":"kiev","properties":{"name":"Kiev","localized_name":{"ua":"Київська область"},"label_point":[30.7,50.3]},"arcs":[[-1418,1613,-1609,1614,1615,1616,-137,1617,-135,1618,1619,-132,1620,1621,1622,1623,1624,1625,-125,1626,-123,1627,1628,-120,1629,-118,1630,1631,-115,1632,1633]]},{"type":"MultiPolygon","id":"od","properties":{"name":"Odessa","localized_name":{"ua":"Одеська область"},"label_point":[30.5,47]},"arcs":[[[830,1634,1635]],[[-1414,1636,1637,1638,1199,1639,1640,1202,1641,1204,1642,1643,1644,1208,1645,1646,1647,1212,1648,1214,1649,1216,1650,1651,1219,1652,1653,1654,1223,1655,1225,1656,1227,1657,1229,1658,1231,1659,1233,1660,1661,1236,1662,1238,1663,1240,1664,1242,1665,1244,1666,1667,1668,1669,1670,1250,1671,1252,1672,1254,1673,1674,1257,1675,1259,1676,1261,1677,1263,1678,1679,1266,1680,1268,1681,1682,1271,1683,1684,1685,1686,1276,1687,1688,-510,1689,1690,-506,1691,503,1692,499,1693,-497,495,1694,1695,1696,1697,1698,-491,1699,1700,-488,486,-486,-485,1701,482,1702,480,-480,-479,1703,-477,-476,-475,-1705,1705,1706,-405,1707,-403,1708,-401,1709,1710,1711,-397,1712,1713,-394,1714,1715,1716,-390,1717,-388,1718,-386,1719,1720,-383,1721,-381,1722,-379,1723,1724,1725,1726,-374,1727,1728,-371,1729,-369,1730,-367,1731,-365,1732,-363,1733,1734,-360,1735,1736,1737,-356,1738,1739,-353,1740,-351,1741,-349,1742,-347,1743,-345,1744,-343,1745,1746,-340,1747,-338,1748,-336,1749,-334,1750,1751,-331,1752,1753,-328,1754,1755,-325,1756,-323,1757,-321,1758,1759,-318,1760,1761,1762,-314,1763,1764,-311,1765,-309,1766,1767,-306,1768,1769,-303,1770,1771,-300,1772,-298,1773,-296,1774,-294,1775,1776,1777,1778,-289,1779,-287,1780,1781,-284,1782,1783,-281,1784,-279,1785,1786,-1611]]]},{"type":"Polygon","id":"vn","properties":{"name":"Vinnytsya","localized_name":{"ua":"Вінницька область"},"label_point":[28.7,48.9]},"arcs":[[-1615,-1608,-1612,-1787,-277,1787,1788,-274,1789,1790,-271,1791,-269,1792,-267,1793,1794,-264,1795,-262,1796,1797,-259,1798,-257,1799,-255,1800,-253,1801,-251,1802,-249,-1481,-1513,1803]]},{"type":"Polygon","id":"zt","properties":{"name":"Zhytomyr","localized_name":{"ua":"Житомирська область"},"label_point":[28.4,50.5]},"arcs":[[-1616,-1804,-1512,-1466,-173,1804,-171,1805,-169,1806,1807,-166,1808,-164,1809,-162,1810,-160,1811,-158,1812,1813,1814,1815,-153,1816,1817,1818,1819,-148,1820,-146,1821,1822,1823,1824,-141,1825,-139,1826]]},{"type":"Polygon","id":"sm","properties":{"name":"Sumy","localized_name":{"ua":"Сумська область"},"label_point":[34.3,50.95]},"arcs":[[1827,1828,-1416,1829,-790,1830,-788,1831,-786,1832,-784,1833,-782,1834,-780,1835,-778,1836,1837,1838,-774,1839,-772,1840,1841,-769,1842,-767,1843,-765,1844,1845,1846,1847,1848,-759,1849,-757,1850,1851,-754,1852,1853,-751,1854,-749,1855,-747,1856,-745,1857,-743,1858,1859,-740,1860,-738,1861,-736,1862,-734,1863,1864,1865,1866,1867,-728,1868,-726,1869,-724,1870,1871,-721,1872,1873]]},{"type":"Polygon","id":"dp","properties":{"name":"Dnipropetrovs'k","localized_name":{"ua":"Дніпропетровська область"},"label_point":[35.2,48.38]},"arcs":[[1874,1875,1876,-1878,1878,1879,-1380,-1610,1880]]},{"type":"Polygon","id":"dn","properties":{"name":"Donets'k","localized_name":{"ua":"Донецька область"},"label_point":[37.8,48]},"arcs":[[1881,-601,1882,1883,1884,-597,1885,1886,1887,-593,1888,1889,1890,1891,847,1892,849,1893,1894,1895,853,1896,1897,1898,1899,-1876,1900,1901]]},{"type":"Polygon","id":"kh","properties":{"name":"Kharkiv","localized_name":{"ua":"Харківська область"},"label_point":[36.6,49.6]},"arcs":[[1902,-1901,-1875,1903,-1828,-718,1904,1905,-715,1906,-713,1907,1908,-710,1909,-708,1910,1911,1912,1913,-703,1914,-701,1915,1916,-698,1917,-696,1918,-694,1919,-692,1920,1921,1922,1923,-687]]},{"type":"Polygon","id":"lg","properties":{"name":"Luhans'k","localized_name":{"ua":"Луганська область"},"label_point":[38.95,49.1]},"arcs":[[-1902,-1903,1924,-685,1925,-683,1926,1927,-680,1928,-678,1929,-676,1930,1931,-673,1932,1933,1934,1935,-668,1936,-666,1937,1938,-663,1939,1940,-660,1941,1942,-657,1943,1944,-654,1945,-652,1946,-650,1947,1948,1949,1950,-645,1951,-643,1952,1953,-640,1954,-638,1955,-636,1956,-634,1957,-632,1958,1959,1960,1961,1962,-626,1963,-624,1964,-622,1965,-620,1966,1967,1968,1969,1970,-614,1971,-612,1972,1973,-609,1974,-607,1975,1976,1977,-603]]},{"type":"Polygon","id":"pl","properties":{"name":"Poltava","localized_name":{"ua":"Полтавська область"},"label_point":[33.9,49.7]},"arcs":[[-1904,-1881,-1613,-1606,-1614,-1417,-1829]]},{"type":"Polygon","id":"zp","properties":{"name":"Zaporizhzhya","localized_name":{"ua":"Запорізька область"},"label_point":[35.8,47.15]},"arcs":[[-1900,1978,857,1979,1980,1981,1982,862,1983,1984,865,1985,867,1986,1987,1988,1989,872,1990,1991,1992,876,1993,1994,879,1995,1996,1997,1998,884,1999,886,2000,2001,2002,2003,898,2004,900,2005,902,2006,904,2007,906,2008,908,2009,910,2010,2011,-1879,1877,-1877]]},{"type":"MultiPolygon","id":"ks","properties":{"name":"Kherson","localized_name":{"ua":"Херсонська область"},"label_point":[33.8,46.55]},"arcs":[[[2012,834,2013,836,2014,838]],[[-2002,2015,2016,889,2017,891,2018,2019,894,2020,2021]],[[2022,840,2023,842,2024,844,2025,846]],[[-2012,2026,913,2027,915,2028,917,2029,919,2030,921,2031,-1373,2032,1073,2033,1075,2034,2035,1078,2036,2037,1081,2038,2039,2040,1085,2041,2042,1088,2043,1090,2044,2045,1093,2046,1095,2047,2048,1098,2049,2050,1101,2051,1103,2052,1105,2053,1107,2054,1109,2055,1111,2056,2057,1114,2058,2059,1117,2060,1119,2061,-1374,2062,2063,1130,2064,2065,1133,2066,2067,2068,1136,2069,1138,2070,1140,2071,1142,2072,-1381,-1880]]]}]},"lakes":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"name":""},"arcs":[[2073]]},{"type":"Polygon","properties":{"name":""},"arcs":[[2074]]},{"type":"Polygon","properties":{"name":""},"arcs":[[2075]]},{"type":"Polygon","properties":{"name":"Kiyevskoye"},"arcs":[[2076]]},{"type":"Polygon","properties":{"name":"Kakhovka Reservoir"},"arcs":[[2077]]},{"type":"Polygon","properties":{"name":"Kremenchuk Reservoir"},"arcs":[[2078]]},{"type":"Polygon","properties":{"name":"Syvash"},"arcs":[[2079]]}]},"rivers":{"type":"GeometryCollection","geometries":[{"type":"MultiLineString","properties":{"name":"Dnipro (Dnieper)"},"arcs":[[2080,2081,1444,2082,50,51,2083,54,55,2084,57,2085,60,2086,2087,2088,2089,69,70,2090,2091,73,2092,2093,2094,80,2095,83,2096,86,2097,89,1428,2098,2099,94,2100,2101,2102,2103,102,2104,104,2105,1420,106,2106,2107,110,111,2108,2109],[2110],[2111],[2112],[2113,1877,2114],[2115]]},{"type":"MultiLineString","properties":{"name":"Danube"},"arcs":[[2116,2117,537,2118,2119,2120,533,2121,531,2122,529,2123,2124,2125,525,2126,2127,2128,2129,520,2130,518,2131,516,2132,2133,4,2134,6,2135,8],[2136],[9,2137,11,2138,2139,2140,15,2141,17,2142,19,2143,2144,22,2145,24,2146,2147,27,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,1704,474,2158,476,477,478,2159]]},{"type":"LineString","properties":{"name":"Bratul Chillia"},"arcs":[2160,2161,511,2162,2163,508,507,2164,504,503,502,2165,500,499,498,2166,495,494,2167,2168,2169,2170,1699,488,2171,486,2172,2173,483,482,481,480,2174,2175]},{"type":"LineString","properties":{"name":"Bratul Sfintu Gheorghe"},"arcs":[2176]},{"type":"LineString","properties":{"name":"Bratul Sulina"},"arcs":[2177]},{"type":"LineString","properties":{"name":"Borcea"},"arcs":[2178]}]}},"arcs":[[[3757,150],[-1,-14],[-1,-129],[0,-7],[-2833,0]],[[922,0],[0,1],[-4,13],[0,24],[-4,14],[-4,8],[-14,13],[-6,9],[-4,11],[-4,13],[-3,14],[-2,13],[0,9],[2,18],[-1,8],[-12,24],[-6,29],[3,23],[6,25],[4,33],[1,31],[1,6],[5,14],[1,5],[1,16],[0,31],[1,13],[6,15],[11,7],[14,4],[8,2],[10,1],[5,11],[4,15],[5,13],[10,6],[9,-1],[8,2],[6,17],[0,9],[-3,23],[-1,10],[1,12],[5,32],[-1,0],[-1,3],[0,6],[1,6],[1,2],[7,14],[7,19],[4,7],[20,15]],[[1019,668],[100,-112],[17,-12]],[[1136,544],[21,-5],[10,-7],[10,-8],[4,-32]],[[1181,492],[-8,-33],[-16,-15]],[[1157,444],[-10,-2],[-19,-10],[-9,-2],[-9,-10]],[[1110,420],[-6,-24],[-11,-80],[0,-24],[6,-20],[12,-17],[14,-6]],[[1125,249],[62,9],[37,6]],[[1224,264],[14,10],[16,5],[18,16],[42,10]],[[1314,305],[74,-7]],[[1388,298],[50,-45],[13,-4],[8,-2],[39,14]],[[1498,261],[10,-3]],[[1508,258],[27,-26],[162,-67],[5,-2]],[[1702,163],[82,6],[10,1],[8,4],[26,33]],[[1828,207],[17,8],[15,-3],[76,-46],[20,-13]],[[1956,153],[22,-5],[98,11]],[[2076,159],[55,-32],[60,-8]],[[2191,119],[19,-8]],[[2210,111],[16,-15],[1,-1]],[[2227,95],[16,-21],[17,-16]],[[2260,58],[20,-5],[11,5],[19,14]],[[2310,72],[7,2],[3,1]],[[2320,75],[21,-2],[11,2],[8,7],[9,4]],[[2369,86],[11,7],[9,10],[8,12]],[[2397,115],[8,10]],[[2405,125],[29,1],[3,1],[19,13],[11,30]],[[2467,170],[1,4],[15,26],[14,14]],[[2497,214],[22,46],[4,15],[4,13],[56,68]],[[2583,356],[4,16],[8,21],[17,31],[16,15]],[[2628,439],[38,16],[36,26]],[[2702,481],[10,3],[39,9],[93,23],[15,9]],[[2859,525],[9,2],[5,2]],[[2873,529],[9,9],[5,2],[21,0],[17,9]],[[2925,549],[44,43],[55,9],[12,13],[34,-35],[49,-16],[9,-9]],[[3128,554],[12,2],[0,-1],[8,-10],[-2,-24],[10,-18],[26,-21],[5,-8],[9,-26],[5,-6],[89,1],[28,14],[10,-6],[9,-32],[3,-7],[19,-41],[30,12],[32,30],[26,5],[11,-30],[21,-123],[16,-20],[96,-73],[99,-28],[67,6]],[[5012,9999],[21,-24],[8,-21],[13,-52],[10,-22],[14,-19],[15,-14],[14,-7],[11,-2],[4,-8],[1,-14],[4,-17],[7,-13],[5,-5],[5,-9],[4,-20],[0,-45],[-10,-21],[-31,-25],[5,-16],[21,-39],[13,-43],[7,-13],[16,-21],[7,-11],[-2,-10],[-7,-3],[-17,6],[-7,-1],[2,-3],[6,-14],[-8,-5],[-4,-8],[1,-10],[6,-11],[11,-10],[0,-26],[-2,-32],[-1,-27],[4,-12],[5,-9],[3,-12],[0,-19],[-2,-14],[-5,-13],[-6,-11],[-6,-7],[14,-29],[8,-12],[8,-9],[8,-4],[16,-4],[8,-6],[-5,-9],[-4,-14],[-1,-15],[2,-15],[3,-11],[4,-6],[24,-23],[6,-15],[2,-21],[-1,-32]],[[5239,9042],[-54,-4],[-81,23]],[[5104,9061],[-43,-1],[-36,-21],[-10,-17]],[[5015,9022],[-7,-22],[-7,-17],[-11,-7],[-11,6],[-22,26],[-11,9]],[[4946,9017],[-18,3],[-64,-5],[-11,-6],[-8,-11]],[[4845,8998],[3,-18],[-2,-5]],[[4846,8975],[-1,-5],[-1,-5],[-2,-6]],[[4842,8959],[14,-2],[4,-15],[-4,-13],[-12,-2],[-3,7],[-3,1]],[[4838,8935],[-3,-2]],[[4835,8933],[-4,-4],[-3,-6],[-1,-7]],[[4827,8916],[0,-5],[0,-4]],[[4827,8907],[-5,-9],[-5,-8]],[[4817,8890],[-6,-6],[-6,-6],[-13,-7],[-1,-4]],[[4791,8867],[2,-7],[2,-4]],[[4795,8856],[0,-8],[-6,-12]],[[4789,8836],[-4,-6]],[[4785,8830],[-4,-3]],[[4781,8827],[-14,2]],[[4767,8829],[-4,-2]],[[4763,8827],[-2,-7]],[[4761,8820],[0,-10]],[[4761,8810],[-1,-9],[-10,-7]],[[4750,8794],[-3,-7]],[[4747,8787],[-2,-7]],[[4745,8780],[-3,-3]],[[4742,8777],[-1,-4]],[[4741,8773],[-10,-19],[-3,-8],[-2,-3],[0,-4]],[[4726,8739],[4,-10],[0,-17]],[[4730,8712],[-8,-12],[-11,-9]],[[4711,8691],[-5,-10]],[[4706,8681],[9,-6]],[[4715,8675],[4,-1]],[[4719,8674],[0,-8],[-5,-8]],[[4714,8658],[-2,-12]],[[4712,8646],[-1,-13]],[[4711,8633],[-2,-10]],[[4709,8623],[-5,-4],[-15,0]],[[4689,8619],[-6,-3]],[[4683,8616],[3,-14]],[[4686,8602],[-5,-23],[2,-14]],[[4683,8565],[-3,-5]],[[4680,8560],[-4,-8],[-2,-3]],[[4674,8549],[1,-4],[2,-10]],[[4677,8535],[-6,-4]],[[4671,8531],[-13,-17]],[[4658,8514],[0,-8]],[[4658,8506],[9,-11]],[[4667,8495],[4,-4]],[[4671,8491],[0,-6]],[[4671,8485],[-4,-2],[-2,-2]],[[4665,8481],[-1,-2],[-3,-2]],[[4661,8477],[0,-7]],[[4661,8470],[6,-10]],[[4667,8460],[15,-6]],[[4682,8454],[8,-6]],[[4690,8448],[-4,-11],[-2,-5],[-4,-5]],[[4680,8427],[6,-7]],[[4686,8420],[4,-7]],[[4690,8413],[2,-7]],[[4692,8406],[-2,-9]],[[4690,8397],[2,-13],[4,-8]],[[4696,8376],[5,-5],[5,-3]],[[4706,8368],[0,-8],[-7,2]],[[4699,8362],[-5,-2]],[[4694,8360],[-3,-8],[-1,-13]],[[4690,8339],[2,-13]],[[4692,8326],[3,-2]],[[4695,8324],[5,-1]],[[4700,8323],[6,-6],[2,-7]],[[4708,8310],[4,-30]],[[4712,8280],[3,-6],[3,-6]],[[4718,8268],[0,-6],[-6,-3]],[[4712,8259],[3,-30]],[[4715,8229],[-13,-20],[-14,-14]],[[4688,8195],[-1,-16],[-9,-21]],[[4678,8158],[-1,-2]],[[4677,8156],[-1,-25]],[[4676,8131],[0,-1]],[[4676,8130],[-2,-7],[-5,-1]],[[4669,8122],[-3,10]],[[4666,8132],[-6,8],[-6,6],[-6,2]],[[4648,8148],[-6,-1],[-8,3],[-10,23]],[[4624,8173],[-7,9],[-7,2],[-13,0]],[[4597,8184],[-7,4],[-7,8],[-14,27],[-3,11]],[[4566,8234],[1,1],[4,22],[1,9],[0,11],[-1,8],[-1,7]],[[4570,8292],[-3,7],[-6,8]],[[4561,8307],[-23,17],[-7,10],[-17,34],[-13,14]],[[4501,8382],[-14,5]],[[4487,8387],[-65,-3],[-10,-4]],[[4412,8380],[-29,-21]],[[4383,8359],[-5,-1],[-8,7]],[[4370,8365],[-5,1],[-6,-6],[-7,-21],[-5,-7]],[[4347,8332],[-9,-3],[-42,10]],[[4296,8339],[-6,12],[-4,16]],[[4286,8367],[-7,19],[-8,8]],[[4271,8394],[-11,2],[-10,-2]],[[4250,8394],[-9,-6],[-10,-12]],[[4231,8376],[-7,-14],[-7,-12]],[[4217,8350],[-10,-7],[-13,-1],[-6,-5]],[[4188,8337],[-4,-13]],[[4184,8324],[-7,-26],[-7,-17]],[[4170,8281],[-9,0],[-21,12],[-10,-5]],[[4130,8288],[-13,-15],[-6,-8],[-9,-5]],[[4102,8260],[-11,9]],[[4091,8269],[-6,19],[-3,23],[-6,21]],[[4076,8332],[-9,16],[-8,8],[-3,12],[4,28]],[[4060,8396],[-2,28],[-5,17]],[[4053,8441],[-16,34],[-9,38],[-6,13]],[[4022,8526],[-11,10],[-19,7]],[[3992,8543],[-10,-1],[-9,-4],[-9,-13]],[[3964,8525],[-11,-34],[-9,-14]],[[3944,8477],[-12,-6],[-29,-1],[-13,-4],[-15,-11]],[[3875,8455],[-15,-17],[-13,-23],[-9,-29],[-1,-18]],[[3837,8368],[1,-40],[-3,-16],[-8,-14],[-5,11],[-3,20]],[[3819,8329],[-4,13],[-6,1],[-6,-5]],[[3803,8338],[-6,-5],[-8,6]],[[3789,8339],[-5,11],[-3,15]],[[3781,8365],[-7,59],[-1,22],[-4,14]],[[3769,8460],[-12,7],[-42,13]],[[3715,8480],[-12,0],[-13,-6],[-23,-23],[-12,-16]],[[3655,8435],[-6,-5],[-6,4],[-2,8],[-5,29],[-3,12],[-6,9]],[[3627,8492],[-14,12],[-5,8]],[[3608,8512],[-4,12]],[[3604,8524],[0,9],[0,9],[-2,11]],[[3602,8553],[-7,11],[-9,1],[-11,-7]],[[3575,8558],[-10,-13],[-9,-20]],[[3556,8525],[-15,-41],[-11,-15]],[[3530,8469],[-9,-4],[-45,0],[-9,3]],[[3467,8468],[-9,7]],[[3458,8475],[-28,43],[-10,8],[-10,-2]],[[3410,8524],[-9,-12],[-6,-18],[-3,-21],[0,-14]],[[3392,8459],[1,-11],[1,-12]],[[3394,8436],[-2,-14],[-3,-7]],[[3389,8415],[-22,-42]],[[3367,8373],[-4,-7],[-8,-1]],[[3355,8365],[-6,4]],[[3349,8369],[-8,8],[-6,10]],[[3335,8387],[-2,6]],[[3333,8393],[-1,3],[15,53],[4,27],[-6,22],[-7,6],[-26,1],[-51,29],[-16,1],[-9,-7]],[[3236,8528],[-13,-20],[-10,-7],[-9,-1],[-28,7]],[[3176,8507],[-19,-9]],[[3157,8498],[-10,-2],[-6,9]],[[3141,8505],[3,18],[7,23],[1,18],[-14,5],[-11,-2],[-9,1]],[[3118,8568],[-7,10],[-4,21]],[[3107,8599],[0,28],[2,23]],[[3109,8650],[-3,16],[-13,11],[-19,6]],[[3074,8683],[-41,2],[-47,-24],[-31,8],[-88,55]],[[2867,8724],[-102,4],[-6,5],[-6,12]],[[2753,8745],[-1,10],[1,10],[0,7]],[[2753,8772],[-5,4],[-109,7]],[[2639,8783],[-14,9],[-30,38],[-14,4]],[[2581,8834],[-32,-1],[-99,26],[-39,-11],[-64,2],[-90,2]],[[2257,8852],[-79,30],[-21,-1],[-21,-10],[-42,-31],[-131,-30],[-9,1]],[[1954,8811],[-29,10],[-116,-13]],[[1809,8808],[-9,-6],[-10,-14],[-17,-36],[-8,-21],[-11,-69],[-13,-26],[-52,-52],[-70,-89]],[[1619,8495],[-19,-4]],[[1600,8491],[-13,17],[-13,23]],[[1574,8531],[-18,11],[-12,1],[-33,14]],[[1511,8557],[-11,1],[-45,-17]],[[1455,8541],[-6,-5]],[[1449,8536],[-4,-7],[-6,-14]],[[1439,8515],[0,-8],[2,-9],[13,-51]],[[1454,8447],[1,-10],[-2,-17]],[[1453,8420],[-4,-3],[-4,5]],[[1445,8422],[-2,14],[-7,6],[-7,4],[-6,16],[3,0],[4,0],[-11,25],[-4,15],[-1,15],[2,29],[0,10],[-6,9],[0,8],[4,0],[3,3],[6,10],[-2,5],[-3,7],[-1,7],[1,3],[5,3],[-1,7],[-3,7],[-2,6],[3,24],[1,12],[2,7],[8,13],[10,9],[9,12],[5,25],[-9,16],[-7,20],[5,8],[2,23],[6,5],[0,5],[-1,1],[-1,0],[-1,1],[3,12],[0,35],[3,19],[9,30],[6,13],[7,8],[-5,18],[-7,40],[-4,14],[0,12],[-2,12],[-6,6],[-4,2],[-3,7],[-2,9],[-3,8],[-9,8],[-22,-1],[-9,4],[-13,36],[2,4],[1,12],[-2,8],[-7,-10],[-3,5],[-5,5],[-2,5],[-6,-11],[-5,1],[-4,6],[-6,4],[-6,-4],[-2,2],[4,10],[0,7],[-10,1],[-29,15],[-6,9],[-7,-4],[-34,13],[-10,9],[4,19],[-2,14],[-5,11],[-3,4],[-4,4],[-1,0],[21,62],[9,19],[18,32],[57,121],[41,48],[41,33],[78,31],[62,59],[18,32],[7,45],[-1,32],[-4,129],[-1,8],[-2,6],[-2,6],[0,11],[1,9],[5,14],[2,7],[-1,8],[-4,30],[0,7],[1,7]],[[1586,9999],[3426,0]],[[759,5111],[11,-3]],[[770,5108],[1,0],[1,0],[4,8]],[[776,5116],[16,9],[15,-3]],[[807,5122],[17,-12],[-7,-33]],[[817,5077],[0,-17],[13,2],[3,-1],[4,-9],[0,-11]],[[837,5041],[-2,-12],[1,-15]],[[836,5014],[5,-21]],[[841,4993],[23,-54],[3,-5]],[[867,4934],[3,-1]],[[870,4933],[4,1],[3,5],[2,1]],[[879,4940],[2,1],[2,-1]],[[883,4940],[9,-5],[8,-3],[7,1],[9,7],[2,0]],[[918,4940],[2,0],[2,-2],[34,-69]],[[956,4869],[6,-22],[7,-34],[8,-25],[2,-4]],[[979,4784],[1,-1],[6,6],[34,0],[9,4]],[[1029,4793],[7,8],[8,3],[8,-7],[2,-5],[16,-15]],[[1070,4777],[14,-20],[6,-12],[5,-14],[3,-20]],[[1098,4711],[-1,-11],[-3,-10]],[[1094,4690],[-1,-17],[-8,-15]],[[1085,4658],[4,-13]],[[1089,4645],[17,-21]],[[1106,4624],[-8,-14],[-12,-33],[-7,-11],[-19,-11],[-7,-8],[-5,-14],[0,-9],[2,-7],[1,-8],[-4,-12],[-3,-3],[-10,-1],[-9,-7],[-6,-7],[-11,-23],[-14,-19],[-17,-11],[-18,-4],[-16,4],[-34,28],[-14,-5],[-8,-42],[-5,-8],[-6,-4],[-7,-1],[-22,5],[-6,0],[-8,-5],[-8,-7],[-6,-9],[-10,-24],[-3,-5],[-8,-9],[-4,-7],[-1,-8],[-2,-19],[-1,-9],[-12,-26],[-1,-7],[-1,-8],[0,-7],[-1,-1],[-2,-8],[-4,-4],[-2,-3],[-23,-9],[-29,-34],[-14,-23],[-9,-26],[2,-33],[4,-37],[0,-35],[-9,-30],[-21,-9],[-8,-8],[-9,-15],[-18,-41],[-2,-12],[-6,-38],[-2,-10],[-6,-16],[-1,-12],[-1,-12],[2,-10],[0,-9],[-3,-14],[-4,-8],[-10,-15],[-5,-11],[-2,-9],[-2,-19],[-3,-9],[-10,-15],[-23,-24],[-10,-15],[-18,-34],[1,-4],[1,-5],[4,-3],[4,-2],[3,-4],[4,-12],[1,-1],[-2,-1],[-9,-53],[-4,-8],[-21,-27],[-2,-1],[-1,-3],[0,-13],[0,-13],[2,-11],[0,-12],[-4,-13],[-5,-7],[-17,-7],[-10,-14],[-6,-17],[-10,-43],[-2,-5],[-1,-6],[-1,-6],[-1,-7],[1,-3],[2,-2],[1,-2],[12,-14],[-1,-21],[-9,-20],[-9,-8],[-13,-3],[-5,-13],[0,-4],[-4,-14],[-9,-20],[-10,-8],[-17,2],[-10,-4],[-8,-14],[-2,-20],[-2,-41],[-6,-19],[-8,-16],[-6,-17],[-1,-22],[13,-41],[3,-23],[-11,-13],[-19,-1],[-9,-6],[-8,-14],[-5,-23],[-2,-48],[-4,-20],[-5,-16],[-5,-6],[-13,0],[-3,-2],[-23,-43],[-8,-5],[-9,12],[-3,7],[-4,3],[-4,0],[-4,-3],[-9,-1],[-18,12],[-8,3],[-3,-2],[-7,-6],[-5,0],[-3,2],[-9,12],[-4,3],[-9,1],[-10,-4],[-5,-5],[-4,-3],[-19,-24],[-2,-6],[1,-10],[4,-24],[0,-9],[-4,-5],[-4,1],[-5,2],[-3,-2],[-3,-8],[0,-13],[0,-2],[-3,-11],[-7,-12],[-9,-8],[-26,-8],[-3,0],[-6,3],[-5,5],[-13,20],[-19,12],[-4,2]],[[0,2733],[0,2512]],[[0,5245],[5,3],[29,3],[98,35],[8,0],[7,-6],[14,-19],[6,-3],[15,-2],[25,-24],[17,-2],[12,2],[13,-4],[13,-9],[10,-14],[11,-4],[36,26],[16,5],[8,-5],[6,-8],[5,-3],[7,6],[6,11],[2,12],[4,10],[9,8],[8,2],[16,1],[24,11],[7,-3],[15,-14],[9,-5],[4,-5],[3,-10],[4,-20],[3,-8],[8,-5],[17,1],[8,-3],[4,-12],[6,-44],[4,-12],[26,-61],[11,-19],[12,-14],[15,-8],[14,2],[24,19],[20,5],[14,12],[7,4],[24,2],[9,4],[8,1],[28,-4],[8,4],[9,10],[8,17]],[[3581,1980],[-13,24],[-3,11],[0,36],[-1,3],[-1,2],[-2,6],[-7,23],[-11,13],[-26,23],[6,12],[7,11],[8,9],[6,4],[16,0],[6,5],[-3,14],[1,17],[-4,107],[-4,10],[-8,25],[-7,32],[-2,31],[2,6],[7,7],[1,5],[-1,4],[-4,14],[-1,7],[0,9],[2,8],[1,8],[-2,9],[-3,7],[-1,6],[-1,12],[-11,54],[-2,15],[1,10],[6,37],[0,6],[-3,3],[0,6],[1,5],[4,4],[3,15],[1,6],[8,36],[3,26],[5,25],[-1,9],[-3,7],[-3,7],[-8,22],[-1,9],[5,4],[5,2],[2,6],[-2,18],[2,7],[4,4],[6,3],[4,4],[6,8],[6,22],[1,4],[-1,13],[-2,22],[2,7],[5,3],[2,5],[3,32],[3,5],[3,3],[1,0],[3,6],[-4,15],[7,5],[2,8],[1,9],[0,33],[-1,9],[-1,1],[-2,-1],[-2,2],[-6,19],[-1,9],[1,40],[2,8],[4,4],[-4,18],[2,15],[5,13],[3,12],[0,14],[-1,12],[0,4],[-5,29],[-26,82],[0,20],[-19,51],[-7,29],[0,9],[1,13],[0,7],[-5,11],[0,13],[0,12],[-8,8],[4,16],[0,3],[-1,16],[-10,38],[-6,18],[-14,29],[-1,1],[-4,18],[-9,-7],[-10,7],[-11,11],[-11,3],[-1,16],[-5,8],[-14,13],[-14,25],[-4,5],[-5,2],[-2,3],[3,8],[0,7],[-20,17],[-5,12],[5,3],[1,4],[-2,7],[-1,8],[-1,1],[-5,29],[-12,23],[-5,14],[0,13],[-9,26],[-5,8],[-12,4],[-3,4],[-4,5],[-5,5],[-12,4],[-4,3],[-6,16],[-11,41],[-5,7],[-1,2],[-7,7],[4,33],[-8,11],[1,12],[2,11],[2,8],[4,5],[-3,10],[-6,9],[-7,6],[-6,4],[-1,-1],[-12,1],[-3,2],[-2,3],[-2,2],[-4,1],[-5,7],[-3,15],[-3,29],[-2,1],[-5,1],[-1,1],[-1,5],[0,10],[-1,4],[-1,6],[-2,14],[-1,6],[-1,3],[-14,8],[-13,21],[-31,62],[-10,28],[-5,23],[11,4],[0,6],[-2,8],[0,11],[-1,9],[0,2],[-3,4],[-8,9],[-2,5],[-2,9],[-5,16],[-7,15],[-5,7],[16,16],[-4,9],[-5,3],[-5,3],[-5,6],[0,6],[-1,33],[1,5],[-9,15],[-10,9],[-5,10],[8,17],[0,5],[0,2],[-3,2],[-10,12],[6,8],[3,10],[-1,9],[-5,10],[-6,-6],[-4,15],[-7,13],[-11,-8],[-2,3],[-1,4],[0,4],[-1,4],[10,7],[0,8],[-12,11],[-12,15],[-8,21],[-3,26],[1,6],[5,9],[0,6],[-2,6],[-4,5],[-4,3],[-6,-7],[-9,4],[-13,12],[0,7],[10,0],[5,8],[0,10],[-16,9],[-4,11],[-2,12],[-6,8],[-4,-6],[-5,-12],[-5,-3],[-2,18],[-3,8],[-19,30],[-5,-4],[-11,20],[-8,6],[-19,-6],[-9,3],[-5,16],[-5,-11],[-5,1],[-11,15],[-11,-1],[-22,-16]],[[2845,4956],[1,9],[3,16]],[[2849,4981],[5,13],[15,15],[2,14]],[[2871,5023],[3,9],[9,-6]],[[2883,5026],[6,-11],[5,-13]],[[2894,5002],[6,-11],[9,-6]],[[2909,4985],[9,1],[5,7],[2,14],[0,20]],[[2925,5027],[-2,21],[-3,12]],[[2920,5060],[-1,10]],[[2919,5070],[5,10],[3,1]],[[2927,5081],[8,-5],[3,0],[4,6]],[[2942,5082],[1,8],[2,7],[5,2],[15,-10]],[[2965,5089],[16,-20],[16,-15],[17,5],[5,7],[3,-1]],[[3022,5065],[3,-3],[5,1],[6,-2],[2,3]],[[3038,5064],[0,5],[-2,6],[0,4]],[[3036,5079],[0,7],[-1,9],[0,8]],[[3035,5103],[5,3],[5,-3]],[[3045,5103],[10,-9],[50,-29],[15,-1]],[[3120,5064],[18,14],[2,5]],[[3140,5083],[25,48]],[[3165,5131],[17,13],[9,-3]],[[3191,5141],[13,-19],[7,-4]],[[3211,5118],[7,6],[29,37],[10,22]],[[3257,5183],[19,0],[6,2],[12,12],[10,-2],[1,-28]],[[3305,5167],[10,-7],[58,1]],[[3373,5161],[15,-11],[30,-34]],[[3418,5116],[7,-11],[10,-22]],[[3435,5083],[5,-12]],[[3440,5071],[4,-5],[10,-25]],[[3454,5041],[19,-11]],[[3473,5030],[17,-3],[24,-5],[10,-7]],[[3524,5015],[7,-13],[3,-19],[-9,-42],[6,-8]],[[3531,4933],[11,-1],[7,3]],[[3549,4935],[14,19],[8,2],[3,-18]],[[3574,4938],[2,-20],[5,-12],[8,-4]],[[3589,4902],[11,4],[10,8]],[[3610,4914],[7,10],[8,8],[21,4]],[[3646,4936],[8,-2],[5,-8],[1,-20],[-3,-22],[-5,-10]],[[3652,4874],[-7,-7],[-7,-13]],[[3638,4854],[-3,-15],[1,-15],[5,-9]],[[3641,4815],[10,3],[7,13]],[[3658,4831],[5,16],[6,13]],[[3669,4860],[10,2],[8,-8],[4,-14]],[[3691,4840],[0,-16],[-8,-14]],[[3683,4810],[13,-42],[6,-8],[9,-11]],[[3711,4749],[5,1]],[[3716,4750],[2,10],[0,18],[2,18],[1,4]],[[3721,4800],[9,39],[10,7]],[[3740,4846],[15,-1],[43,-27],[32,-1],[17,-4],[13,-14]],[[3860,4799],[3,-8],[1,-8]],[[3864,4783],[0,-7],[1,-7],[8,-28]],[[3873,4741],[1,-28],[1,-6],[3,-7],[8,-11],[3,-8]],[[3889,4681],[9,-25],[15,-25],[10,-12],[7,-8]],[[3930,4611],[14,-9],[17,5]],[[3961,4607],[20,41],[15,11]],[[3996,4659],[8,0],[7,-4]],[[4011,4655],[5,-8],[6,-14]],[[4022,4633],[4,-17],[4,-36],[3,-16],[7,-7],[18,-9]],[[4058,4548],[5,-5],[-2,-15],[-7,-15]],[[4054,4513],[-8,-14],[-6,-12]],[[4040,4487],[-4,-19],[0,-11]],[[4036,4457],[4,-7],[16,-9],[6,-9],[2,-11]],[[4064,4421],[-5,-14],[-14,-27],[-3,-33],[1,-38]],[[4043,4309],[-5,-40],[-12,-32]],[[4026,4237],[-12,-25],[-6,-28]],[[4008,4184],[6,-43]],[[4014,4141],[3,-9],[1,-5]],[[4018,4127],[7,-32],[4,-11]],[[4029,4084],[9,-10],[5,6]],[[4043,4080],[4,12],[8,5],[6,-6]],[[4061,4091],[9,-22],[14,-15],[3,-11],[2,-13],[4,-11]],[[4093,4019],[6,-6],[8,-2],[7,-5]],[[4114,4006],[6,-14],[2,-17]],[[4122,3975],[1,-15],[1,-15],[2,-5]],[[4126,3940],[4,-12],[7,-8]],[[4137,3920],[7,-6],[7,-1]],[[4151,3913],[8,4],[8,12]],[[4167,3929],[3,15],[2,16]],[[4172,3960],[5,16],[9,2]],[[4186,3978],[9,-1],[9,-5],[8,-11]],[[4212,3961],[6,-18],[4,-25]],[[4222,3918],[1,-24],[-5,-19],[-12,-9]],[[4206,3866],[-2,-23],[5,-56]],[[4209,3787],[-3,-26],[-6,-13]],[[4200,3748],[-10,-4],[-13,-2],[-1,-3]],[[4176,3739],[-1,-4],[1,-3],[1,-3],[14,-42],[4,-7],[5,7],[4,14]],[[4204,3701],[6,12],[8,1]],[[4218,3714],[6,-7],[6,-11]],[[4230,3696],[3,-14]],[[4233,3682],[1,-17],[-4,-14]],[[4230,3651],[-6,-10],[-5,-12],[-3,-39],[-2,-15],[-1,-2],[0,-14]],[[4213,3559],[4,-12],[3,-1]],[[4220,3546],[11,2],[5,-4],[7,-13]],[[4243,3531],[4,-5],[8,-5]],[[4255,3521],[15,-2],[7,-4]],[[4277,3515],[7,-12],[11,-28],[9,-9],[15,-4],[13,2],[13,-2],[14,-18],[2,-7]],[[4361,3437],[4,-20],[2,-5]],[[4367,3412],[4,-1]],[[4371,3411],[4,5],[5,3],[5,-5]],[[4385,3414],[1,-7],[0,-23]],[[4386,3384],[0,-9],[2,-8]],[[4388,3367],[5,-15],[2,-9],[1,-19]],[[4396,3324],[-4,-66]],[[4392,3258],[-2,-13],[-2,-9]],[[4388,3236],[-2,-10],[0,-14],[2,-11]],[[4388,3201],[6,-22],[1,-10],[-6,-23]],[[4389,3146],[-10,-3],[-8,-2]],[[4371,3141],[2,-23],[6,-13]],[[4379,3105],[21,-14]],[[4400,3091],[1,-3],[2,-10],[1,-2]],[[4404,3076],[3,2]],[[4407,3078],[6,5],[3,0],[3,-4],[4,-7]],[[4423,3072],[5,-18],[-3,-10]],[[4425,3044],[21,-26],[8,-15]],[[4454,3003],[5,6]],[[4459,3009],[7,2],[7,-2]],[[4473,3009],[6,-6],[-11,-33]],[[4468,2970],[-12,-19],[-21,-6]],[[4435,2945],[-55,5],[-7,-2]],[[4373,2948],[-8,-8],[-18,-24],[-9,-2]],[[4338,2914],[-9,16],[-1,8],[0,20],[0,10]],[[4328,2968],[-3,9]],[[4325,2977],[-9,24],[-25,37]],[[4291,3038],[-6,16],[0,-30],[-5,-15],[-9,-6],[-14,0],[-3,-7],[3,-26]],[[4257,2970],[-4,-18],[-6,-10],[-8,-4],[-8,1]],[[4231,2939],[-7,7],[-6,14]],[[4218,2960],[-6,23],[-7,9],[-7,4],[-14,5],[-7,4]],[[4177,3005],[-3,8]],[[4174,3013],[-1,8],[1,8]],[[4174,3029],[3,8],[2,8],[1,7]],[[4180,3052],[-1,7],[-2,7]],[[4177,3066],[-11,3],[0,-1]],[[4166,3068],[-10,-8]],[[4156,3060],[-8,-15],[-21,-49]],[[4127,2996],[-5,-1],[-9,20]],[[4113,3015],[-11,37],[-6,3]],[[4096,3055],[-8,-22],[-2,-13],[2,-21]],[[4088,2999],[0,-10],[-3,-13],[-3,-2]],[[4082,2974],[-3,2],[-5,-4]],[[4074,2972],[-17,-29],[-11,-10]],[[4046,2933],[-7,11],[-1,11],[4,10]],[[4042,2965],[4,10],[3,10]],[[4049,2985],[1,12],[-1,90],[-3,23]],[[4046,3110],[-7,15]],[[4039,3125],[-1,0],[-9,0]],[[4029,3125],[-41,-36]],[[3988,3089],[-9,-6],[-16,-9],[-35,-37]],[[3928,3037],[-10,-24],[-2,-30],[3,-39],[8,-50]],[[3927,2894],[1,-17],[-3,-19],[-3,-15]],[[3922,2843],[0,-15],[8,-16]],[[3930,2812],[0,-1],[16,-23],[12,-18]],[[3958,2770],[2,-23],[-5,-25]],[[3955,2722],[-11,-29],[-16,-28]],[[3928,2665],[-3,-17]],[[3925,2648],[1,-26],[8,-47]],[[3934,2575],[-1,-21],[-12,-8]],[[3921,2546],[-81,-34],[-8,-9]],[[3832,2503],[-5,-15]],[[3827,2488],[0,-18],[6,-37]],[[3833,2433],[2,-18],[0,-21]],[[3835,2394],[-4,-14]],[[3831,2380],[-6,-9],[-8,-8],[-14,-5]],[[3803,2358],[-3,-5]],[[3800,2353],[-1,-6],[2,-10],[0,-11]],[[3801,2326],[-1,-10]],[[3800,2316],[-13,-11],[-31,-5]],[[3756,2300],[-7,-20],[1,-8],[2,-12]],[[3752,2260],[-3,-9],[-13,-6]],[[3736,2245],[-8,-9]],[[3728,2236],[-5,-9],[-11,-26],[-4,-12]],[[3708,2189],[5,-8],[7,-6],[6,-10]],[[3726,2165],[2,-15],[1,-15]],[[3729,2135],[2,-15],[7,-14]],[[3738,2106],[-13,-9],[-2,-4],[-1,-2]],[[3722,2091],[-2,-7],[0,-3]],[[3720,2081],[1,-2]],[[3721,2079],[3,-36],[-3,-13],[-9,-7]],[[3712,2023],[-30,2],[-35,15]],[[3647,2040],[-33,4],[-25,-30]],[[3589,2014],[-4,-13],[-3,-13]],[[3582,1988],[-1,-8]],[[1445,8422],[0,-7]],[[1445,8415],[4,-15],[7,-7]],[[1456,8393],[8,-4],[7,-7]],[[1471,8382],[-7,-21]],[[1464,8361],[0,-7],[19,-39]],[[1483,8315],[4,-13],[-5,-4]],[[1482,8298],[-4,-7],[0,-11]],[[1478,8280],[3,-15],[-9,-4],[-8,-13],[-6,-16]],[[1458,8232],[-3,-14],[3,-22],[7,-6]],[[1465,8190],[9,0],[8,-7],[26,-81]],[[1508,8102],[11,-19],[23,-21]],[[1542,8062],[22,-33]],[[1564,8029],[5,-13],[-7,-5]],[[1562,8011],[-2,-10],[7,-21],[12,-27]],[[1579,7953],[4,-15],[6,-44]],[[1589,7894],[0,-7],[-2,-8]],[[1587,7879],[3,-5],[6,-3]],[[1596,7871],[6,-6],[5,-11]],[[1607,7854],[1,-9],[1,-9]],[[1609,7836],[2,-14],[7,-17],[32,-42],[38,-31],[6,-13]],[[1694,7719],[-5,-19],[-15,-4]],[[1674,7696],[-15,0]],[[1659,7696],[-9,-6],[-13,10]],[[1637,7700],[-13,-3],[-10,-11]],[[1614,7686],[-6,-19],[1,-20]],[[1609,7647],[7,-14],[11,-7]],[[1627,7626],[13,-2],[0,-7]],[[1640,7617],[-6,-18],[6,-17],[13,-11],[12,-5],[-2,-24],[3,-22],[12,-42]],[[1678,7478],[-11,-27],[5,-51]],[[1672,7400],[3,-14],[3,-3],[-1,-2]],[[1677,7381],[-6,-12],[-8,-14],[-30,-23]],[[1633,7332],[-2,-13]],[[1631,7319],[1,-20],[-1,-14]],[[1631,7285],[-2,-12],[-10,-35]],[[1619,7238],[-24,-14],[-85,-2],[-16,-7],[-8,-6],[-6,-9]],[[1480,7200],[-5,-16],[-6,-28],[0,-2],[-7,-14],[-36,-58]],[[1426,7082],[-14,-16]],[[1412,7066],[-25,-28],[-21,-24],[-107,-170]],[[1259,6844],[-14,-32],[-17,-20]],[[1228,6792],[-18,-30],[-51,-109]],[[1159,6653],[-19,-30],[-2,-8],[-4,-22],[-2,-7]],[[1132,6586],[-4,-6],[-9,-5]],[[1119,6575],[-4,-4],[-4,-8],[-29,-77],[-8,-12],[-5,-3],[-10,-3],[-5,-7]],[[1054,6461],[-3,-9],[-8,-34]],[[1043,6418],[-36,-70],[-11,-41]],[[996,6307],[9,-38],[3,-16]],[[1008,6253],[3,-45],[1,-12],[2,-6],[6,-15],[10,-15],[2,-9],[2,-16],[7,-98]],[[1041,6037],[-2,-15],[-8,-33]],[[1031,5989],[-6,-37],[-8,-23]],[[1017,5929],[-2,-13],[3,-6]],[[1018,5910],[2,2],[6,12]],[[1026,5924],[7,-8],[-2,-1],[15,-16]],[[1046,5899],[13,-27],[9,-9],[21,-18]],[[1089,5845],[6,-11],[0,-9]],[[1095,5825],[-5,-21],[0,-14]],[[1090,5790],[2,-10],[7,-20]],[[1099,5760],[1,-2]],[[1100,5758],[1,-3],[-6,-17],[-9,6]],[[1086,5744],[-10,14],[-9,6],[-5,3]],[[1062,5767],[-8,18],[-5,7],[-5,1]],[[1044,5793],[-11,-5],[-16,2],[-10,-2]],[[1007,5788],[-10,2],[-12,12]],[[985,5802],[-17,29],[-10,4]],[[958,5835],[-9,-14]],[[949,5821],[-17,12],[-36,2],[-17,8],[-24,36],[-9,6],[-26,-2],[-22,10],[-3,4],[-1,7],[1,7],[0,8],[-5,8],[-4,1],[-11,-2],[-5,1],[-5,3],[-16,15],[-32,9],[-14,15],[-3,33],[-6,38],[-13,32],[-17,24],[-25,19],[-17,23],[-8,7],[-10,-2],[-8,-11],[-6,-12],[-5,-5],[-7,9],[-16,36],[-8,12],[-4,2],[-8,-2],[-3,0],[-5,5],[-8,13],[-5,4],[-9,4],[-33,-6],[-7,-4],[-9,-5],[-7,3],[-17,-6],[-7,0],[-46,19],[-26,21],[-6,2],[-9,-9],[-14,-32],[-8,-11],[-10,-2],[-7,7],[-7,11],[-8,9],[-8,1],[-18,-6],[-8,-5],[-9,-16],[6,-9],[10,-10],[6,-16],[-4,-10],[-8,-3],[-10,0],[-7,-2],[-10,-14],[-15,-33],[-10,-13],[-11,-6],[-9,2],[-7,9],[-8,11],[-9,10],[-7,2],[-8,-1],[-10,2],[-8,8],[-41,74],[-7,2],[-18,-4],[-10,2],[-4,0],[-5,-4],[-7,-14],[-6,-8],[-11,-5],[-10,3],[-10,8]],[[0,6150],[0,3849],[1586,0]],[[3581,1980],[6,-12]],[[3587,1968],[1,0],[11,2],[13,-12]],[[3612,1958],[9,-20]],[[3621,1938],[-2,-21],[14,-58],[9,-26],[10,-11]],[[3652,1822],[8,-4],[16,-15]],[[3676,1803],[42,-17],[38,-33]],[[3756,1753],[62,-22]],[[3818,1731],[18,3],[14,1]],[[3856,1739],[-6,-4]],[[3848,1759],[13,-10],[-5,-10]],[[3845,1763],[3,-4]],[[3842,1789],[-1,-8],[2,-10],[2,-8]],[[3842,1789],[14,11],[-1,16],[0,15]],[[3855,1831],[13,5],[7,-4]],[[3887,1818],[-12,14]],[[3887,1818],[11,-3],[6,-7]],[[3920,1786],[-9,9],[-7,13]],[[3920,1786],[11,6],[2,8]],[[3933,1800],[2,20]],[[3935,1820],[3,9],[3,5],[4,1]],[[3945,1835],[10,1]],[[3955,1836],[7,5],[23,32],[19,9]],[[4019,1899],[-7,-11],[-8,-6]],[[4023,1902],[-4,-3]],[[4023,1902],[11,1],[3,3]],[[4037,1906],[1,8]],[[4042,1921],[-4,-7]],[[4049,1931],[-7,-10]],[[4059,1940],[-10,-9]],[[4059,1940],[8,0],[7,-2]],[[4084,1938],[-10,0]],[[4088,1941],[-4,-3]],[[4096,1951],[-4,-6],[-4,-4]],[[4096,1951],[3,6],[4,4]],[[4103,1961],[5,-1]],[[4113,1955],[-5,5]],[[4153,1947],[-35,6],[-5,2]],[[4153,1947],[65,-38],[22,-31],[5,-5],[11,-16],[7,-36]],[[4263,1821],[3,-41],[-6,-31]],[[4262,1742],[-2,7]],[[4262,1742],[1,-7],[-1,-8]],[[4262,1727],[-2,-8]],[[4260,1719],[-5,1],[-12,0],[0,-7],[7,-16],[5,-19],[8,-14],[15,-3],[-10,-18],[-6,-29],[-4,-94],[-2,-18],[-6,-30],[-2,-15],[0,-17],[-2,-16],[-3,-10],[3,-23],[-11,-29],[5,-20],[-3,-13],[-3,-4],[-5,-1],[-5,-5],[-6,-16],[-4,-5],[-9,8],[-5,-2],[-5,-4],[-4,-2],[-91,-23],[-58,-6],[-16,-9],[-47,-52],[-14,-22],[-12,-28],[-3,8],[1,16],[-7,19],[-3,17],[11,7],[11,3],[17,15],[19,7],[10,12],[9,19],[2,24],[-2,13],[-6,14],[-14,24],[2,-17],[1,-8],[0,-12],[-7,3],[-7,-8],[-6,-3],[-5,16],[-2,19],[-1,64],[4,20],[22,13],[6,14],[-5,11],[-20,22],[-6,4],[-14,0],[-15,8],[-5,-1],[-1,-6],[-2,-9],[-2,-10],[-6,-4],[-10,-1],[-5,-3],[-17,-27],[-5,-12],[-2,-22],[0,-7],[5,-5],[1,-7],[-1,-6],[-2,-3],[-2,-2],[-1,-3],[1,-10],[3,-8],[4,-5],[10,-8],[23,-38],[-6,-11],[-3,-2],[-4,-2],[5,-6],[2,-1],[0,-8],[-6,-6],[-1,-10],[4,-11],[6,-9],[-4,-5],[-6,-2],[-21,-2],[-5,-3],[-28,-28],[-5,-7],[-4,-15],[-1,-14],[3,-6],[7,9],[-2,-13],[-9,-5],[-2,-15],[2,-17],[4,-5],[24,8],[11,10],[11,17],[9,20],[-6,22],[32,-17],[7,-9],[2,-18],[-4,-21],[-8,-17],[-10,-6],[8,18],[7,20],[2,18],[-11,10],[0,-8],[3,-7],[-1,-3],[-8,-4],[-7,7],[-3,1],[-2,-3],[-2,-5],[-2,-8],[-9,-10],[-15,-26],[-8,-7],[-23,-19],[-6,-9],[8,24],[2,11],[-7,2],[-6,-2],[-5,-8],[-1,-14],[6,0],[-3,-10],[2,-9],[4,-6],[6,-4],[-18,-9],[-7,-10],[0,-17],[2,5],[3,5],[1,5],[7,-7],[6,-8],[-4,-14],[-6,-27],[-3,-29],[2,-21],[4,-2],[3,8],[3,12],[3,25],[5,9],[9,10],[14,31],[8,14],[8,6],[9,4],[6,12],[5,14],[4,21],[-3,-21],[-4,-18],[-30,-96],[-22,-28],[-42,-92],[-5,-24],[-2,-13],[-6,7],[-7,-5],[-6,-9],[-5,-12],[-3,-13],[-1,-15],[-1,-40],[2,-13],[8,-23],[6,-34],[2,-15],[-2,-10],[3,-7],[-6,6],[-6,-3],[-4,-8],[-3,-10],[3,-20],[8,-86],[8,-55],[0,-6],[-1,-9],[-4,-10],[-2,-20],[-7,-31],[-1,-14],[-12,-37],[-2,-10],[-7,-58],[-3,-10],[-1,-10],[2,-10],[-2,-10],[-1,-11],[0,-11],[0,-11],[-2,-11]],[[1019,668],[0,1]],[[1018,736],[-2,-51],[3,-16]],[[1018,736],[-3,14],[-9,7],[-20,5]],[[941,824],[12,-27],[16,-22],[17,-13]],[[941,824],[-8,31],[-1,8]],[[933,880],[-1,-17]],[[933,880],[0,8],[-2,8],[-10,14],[-2,9]],[[919,919],[1,14],[1,14],[2,10],[3,5]],[[926,962],[4,2],[17,1],[6,5],[4,10],[1,19],[3,17]],[[961,1016],[7,11],[9,5],[9,-1]],[[1023,1002],[-10,4],[-17,18],[-10,7]],[[1023,1002],[9,3],[11,8],[8,13]],[[1051,1026],[2,19],[-23,43],[-7,8],[-37,8]],[[986,1104],[-15,12],[-16,21],[-32,59],[-7,6],[-9,3]],[[891,1200],[5,6],[11,-1]],[[891,1200],[-16,-29],[-9,-9],[-20,-8],[-7,-8],[-2,-17],[-53,-156],[-6,-10],[-11,-5],[-10,2],[-11,8]],[[729,1018],[4,-7],[5,-30],[8,-13]],[[729,1018],[-5,5],[-5,8]],[[716,1039],[3,-8]],[[716,1039],[-2,14],[0,7],[-1,7],[-13,52],[-5,7],[-15,4],[-42,36],[-8,2],[-8,-3],[-17,-12],[-20,-7],[-25,0]],[[560,1146],[-22,11],[-17,28],[-5,19]],[[516,1204],[-2,19],[-4,17],[-9,13]],[[464,1253],[28,4],[9,-4]],[[464,1253],[-40,7],[-7,6],[-8,28],[-9,11]],[[400,1305],[-8,5],[2,15],[4,12],[6,8],[12,8],[27,-3],[13,4],[19,8],[7,9],[1,21],[-4,17],[-6,10],[-17,10],[-11,10],[-23,6],[-10,12],[-1,6],[2,7],[-2,5],[-8,1],[-6,2],[-1,9],[2,11],[4,9],[4,4],[12,1],[5,3],[6,8],[1,5],[0,7],[2,15],[2,5],[4,7],[1,5],[0,5],[0,8],[0,7],[-1,1],[4,9],[4,6],[5,4],[5,1],[6,8],[2,13],[-2,15],[-4,8],[-12,22],[-12,16],[-13,12],[-49,25],[-20,1],[-8,5],[-16,18],[-7,14],[-16,38],[-8,9],[-4,-2],[-8,-13],[-4,-3],[-6,2],[-4,6],[-4,7],[-5,6],[-22,16],[-16,12],[-7,10],[-18,38],[-30,44],[-15,36],[-7,11],[-8,6],[-8,4],[-7,7],[-3,15],[11,14],[6,11],[2,15],[-6,24],[-14,38],[-2,17],[4,27],[5,19],[2,10],[1,15],[0,55],[1,11],[2,10],[0,10],[-4,10],[-6,5],[-5,-4],[-4,-9],[-3,-12],[-6,-8],[-6,-3],[-6,2],[-6,9],[-4,14],[-11,22],[-4,12],[-1,7],[-1,3],[-1,22],[-1,9],[-4,7],[-8,8],[-3,5],[-15,44],[-8,12],[-8,6],[-18,3]],[[0,2454],[0,279]],[[1106,4624],[9,4]],[[1115,4628],[9,9],[3,14]],[[1127,4651],[-4,22]],[[1123,4673],[4,13],[7,0]],[[1134,4686],[9,-5],[7,-8]],[[1150,4673],[7,-7]],[[1157,4666],[8,-4],[7,2]],[[1172,4664],[20,24]],[[1192,4688],[6,18],[11,50]],[[1209,4756],[9,22],[9,7],[11,-3],[32,-17],[8,-9]],[[1278,4756],[19,-35],[23,-29],[10,-19],[3,-2],[4,-1]],[[1337,4670],[3,1],[4,2]],[[1344,4673],[1,0],[0,1]],[[1345,4674],[1,-1],[1,0]],[[1347,4673],[30,-23],[10,1],[1,2],[2,2]],[[1390,4655],[3,5],[2,6]],[[1395,4666],[2,7],[5,6]],[[1402,4679],[5,3],[18,5],[8,-5]],[[1433,4682],[30,-5],[19,-10]],[[1482,4667],[11,-2],[32,2],[8,-6],[24,-34],[3,-17],[10,1]],[[1570,4611],[47,29]],[[1617,4640],[15,-1],[7,-8],[24,-10],[9,-7]],[[1672,4614],[17,-25],[8,-2]],[[1697,4587],[1,1]],[[1698,4588],[27,-17],[10,0]],[[1735,4571],[31,24],[23,1]],[[1789,4596],[18,24],[11,9]],[[1818,4629],[9,1],[27,-10],[26,1],[9,-4],[4,-3]],[[1893,4614],[18,-17],[11,-14],[8,-14],[3,-17],[0,-14]],[[1933,4538],[2,-13],[9,-15],[15,-15]],[[1959,4495],[38,-23],[7,-9]],[[2004,4463],[5,-12],[16,-44],[11,-26]],[[2036,4381],[9,-9],[15,4]],[[2060,4376],[6,2],[35,9],[29,20]],[[2130,4407],[20,29]],[[2150,4436],[45,115],[20,21],[228,39],[30,19]],[[2473,4630],[25,5],[14,9]],[[2512,4644],[8,3],[22,-4]],[[2542,4643],[30,14],[34,0]],[[2606,4657],[10,0],[22,16],[5,11]],[[2643,4684],[10,36]],[[2653,4720],[6,11],[12,16]],[[2671,4747],[6,10],[7,23]],[[2684,4780],[7,33],[5,34]],[[2696,4847],[0,24],[3,35]],[[2699,4906],[4,-3],[8,-1]],[[2711,4902],[8,4],[16,12],[8,3],[22,2],[7,2],[59,21],[14,10]],[[8239,3727],[-7,29],[-2,33],[3,32]],[[8233,3821],[9,25],[9,9]],[[8251,3855],[10,8],[10,10]],[[8271,3873],[6,16],[2,21]],[[8279,3910],[-5,12],[-7,5]],[[8267,3927],[-8,1],[-18,-4]],[[8241,3924],[-9,2],[-6,11],[1,17]],[[8227,3954],[6,19],[14,29],[12,33],[2,30]],[[8261,4065],[-1,76],[6,37],[9,37],[12,31],[16,16],[97,21],[12,8]],[[8412,4291],[9,12],[17,30]],[[8438,4333],[9,10],[7,2]],[[8454,4345],[16,-10],[10,2],[5,17]],[[8485,4354],[4,45],[8,48],[12,42],[16,30]],[[8525,4519],[22,14],[74,-5]],[[8621,4528],[1,0],[25,-26],[10,-4],[9,1]],[[8666,4499],[19,8],[67,10],[10,-3]],[[8762,4514],[16,-16],[8,-6]],[[8786,4492],[10,0],[20,9]],[[8816,4501],[11,-6]],[[8827,4495],[14,-3],[28,9],[14,-2]],[[8883,4499],[47,-19],[15,5],[12,18],[7,26],[4,31],[0,6],[-3,15],[0,8],[1,9],[5,16],[2,9]],[[8973,4623],[1,16],[-1,11]],[[8973,4650],[-6,23],[-5,12]],[[8962,4685],[-4,6],[-1,5]],[[8957,4696],[4,10],[5,5],[25,8]],[[8991,4719],[4,-1]],[[8995,4718],[1,1],[0,10]],[[8996,4729],[-7,33],[1,25]],[[8990,4787],[6,21],[23,67],[9,16]],[[9028,4891],[22,26],[8,14]],[[9058,4931],[7,19],[1,21]],[[9066,4971],[-7,18],[-10,3],[-24,-13]],[[9025,4979],[-10,-2],[-32,31]],[[8983,5008],[32,41]],[[9015,5049],[8,16],[11,15],[-5,10]],[[9029,5090],[-3,14]],[[9026,5104],[-5,27],[-15,49]],[[9006,5180],[-5,6]],[[9001,5186],[-4,9],[-2,16]],[[8995,5211],[3,1],[4,0],[4,2]],[[9006,5214],[2,9],[0,3]],[[9008,5226],[-1,4],[-1,6]],[[9006,5236],[-1,8],[-4,28]],[[9001,5272],[-9,18],[-12,11],[-55,11]],[[8925,5312],[-9,-6],[-18,-1],[4,26]],[[8902,5331],[29,144]],[[8931,5475],[4,8],[11,7]],[[8946,5490],[4,10],[3,12],[4,12]],[[8957,5524],[9,16],[10,7]],[[8976,5547],[11,1]],[[8987,5548],[52,-31],[18,3],[21,25]],[[9078,5545],[9,18]],[[9087,5563],[6,21],[1,21]],[[9094,5605],[-9,17],[-12,3],[-9,-13]],[[9064,5612],[-8,-16],[-10,-8],[-6,3],[-9,17]],[[9031,5608],[-5,7],[-5,1],[-16,-3]],[[9005,5613],[-37,12],[-11,8],[-6,10],[-3,15]],[[8948,5658],[-7,19],[-8,13]],[[8933,5690],[-9,9],[-7,13],[4,54],[8,8],[23,-2]],[[8952,5772],[38,20],[15,0]],[[9005,5792],[13,-3],[8,0]],[[9026,5789],[5,6]],[[9031,5795],[2,11],[1,30]],[[9034,5836],[3,15],[10,26],[12,18]],[[9059,5895],[28,28],[9,16]],[[9096,5939],[15,36],[9,11]],[[9120,5986],[11,9],[4,11]],[[9135,6006],[0,38],[7,36]],[[9142,6080],[1,19],[-5,17],[-22,38],[-18,43],[-10,32]],[[9088,6229],[-3,33],[9,35]],[[9094,6297],[8,12],[18,15],[7,15]],[[9127,6339],[3,22],[-6,9],[-1,2],[-46,19],[-9,0],[-11,-6],[-28,-42]],[[9029,6343],[-12,-10],[-14,-9],[-14,-4]],[[8989,6320],[-12,1],[-10,6]],[[8967,6327],[-24,35]],[[8943,6362],[-19,13],[-16,7],[-15,15]],[[8893,6397],[-11,36],[-8,46],[-5,24]],[[8869,6503],[-6,11]],[[8863,6514],[-27,5],[-9,5]],[[8827,6524],[-17,17]],[[8810,6541],[-17,-5],[-18,-13]],[[8775,6523],[-19,-6],[-17,6]],[[8739,6523],[-14,13],[-10,22]],[[8715,6558],[-26,99],[-1,1],[-12,15]],[[8676,6673],[-18,-9],[-8,-14],[-14,-32],[-9,-12],[-8,-3],[-44,-4],[-13,18],[-11,26],[-16,22],[-48,21],[-29,30]],[[8458,6716],[-3,5],[-2,9]],[[8453,6730],[-1,17],[-4,21]],[[8448,6768],[0,3]],[[8448,6771],[-1,-3],[-12,-6]],[[8435,6762],[-4,-4],[-4,-3]],[[8427,6755],[-23,7],[-34,-9]],[[8370,6753],[-17,9],[-11,11],[-8,5],[-20,3]],[[8314,6781],[-10,6],[-5,12],[-14,61],[-7,12],[-8,2],[-13,-3]],[[8257,6871],[-30,4],[-7,-3]],[[8220,6872],[-5,-32],[3,-49]],[[8218,6791],[-2,-46],[-22,-23],[-5,1]],[[8189,6723],[-8,9]],[[8181,6732],[-5,1],[-6,-3],[-21,-19]],[[8149,6711],[-10,-10],[-2,7],[0,16],[-8,20]],[[8129,6744],[0,2],[-15,39],[-14,26],[-16,21]],[[8084,6832],[-18,17],[-37,25]],[[8029,6874],[-17,18],[-44,101]],[[7968,6993],[-17,24],[-3,8]],[[7948,7025],[-1,11]],[[7947,7036],[2,11],[4,26],[-1,44]],[[7952,7117],[-14,23]],[[7938,7140],[-41,30],[-8,28],[-6,34]],[[7883,7232],[-7,28],[-9,7],[-47,-9]],[[7820,7258],[-14,-8],[-27,-41]],[[7779,7209],[-14,-16]],[[7765,7193],[-67,-28],[-34,7]],[[7664,7172],[-30,-3],[-31,-17],[-77,-67]],[[7526,7085],[-6,-8],[-4,-10],[-8,-23],[-4,-8]],[[7504,7036],[-9,-9],[-10,-2],[-11,3],[-10,6],[-7,8]],[[7457,7042],[-1,9]],[[7456,7051],[1,11],[1,23]],[[7458,7085],[1,5],[-1,2],[-7,7],[-4,3]],[[7447,7102],[-15,5],[-13,13]],[[7419,7120],[-10,4],[-10,8]],[[7399,7132],[-4,2],[-6,0],[-3,-3]],[[7386,7131],[-9,-13],[-11,-11]],[[7366,7107],[-11,-7]],[[7355,7100],[-11,-1],[-10,8]],[[7334,7107],[-47,109],[-13,10]],[[7274,7226],[-3,20],[-13,10],[-81,9],[-44,-7]],[[7133,7258],[-8,-4],[-7,-8],[-9,-19]],[[7109,7227],[-5,-8]],[[7104,7219],[-5,-2],[-8,-1]],[[7091,7216],[-4,-2],[-8,-14]],[[7079,7200],[-5,-14],[-6,-11],[-3,-1]],[[7065,7174],[-8,-4],[-10,1]],[[7047,7171],[-10,4],[-9,7]],[[7028,7182],[-9,9]],[[7019,7191],[-10,17],[-3,17]],[[7006,7225],[-1,19],[-4,25],[-6,18]],[[6995,7287],[-8,10],[-10,5]],[[6977,7302],[-10,2],[-16,10],[-10,26]],[[6941,7340],[-22,129]],[[6919,7469],[-1,14],[8,12],[36,24],[-11,20]],[[6951,7539],[-1,24],[1,26],[-4,30],[-4,10]],[[6943,7629],[-5,7],[-12,10]],[[6926,7646],[-6,10],[-1,11],[1,13]],[[6920,7680],[-1,15],[-4,13]],[[6915,7708],[-9,19],[-4,13],[0,16]],[[6902,7756],[1,14],[-1,12],[-5,14]],[[6897,7796],[-6,6],[-11,3]],[[6880,7805],[-4,7],[-1,11]],[[6875,7823],[0,7],[0,22],[-2,12]],[[6873,7864],[25,7],[7,9],[4,19],[-4,11],[-9,7]],[[6896,7917],[-9,5],[-16,1],[-31,-10],[-16,2],[-14,19],[-9,35]],[[6801,7969],[-11,97],[-4,16]],[[6786,8082],[-6,10],[-9,5],[-9,-2]],[[6762,8095],[-10,-6],[-9,-2],[-9,7],[-8,7]],[[6726,8101],[-8,-2],[-21,-18],[-38,-24]],[[6659,8057],[-33,-10],[-34,3],[-8,4]],[[6584,8054],[-7,10],[-4,16],[-2,16]],[[6571,8096],[-3,15],[-7,9]],[[6561,8120],[-14,3],[-30,-7]],[[6517,8116],[-15,8]],[[6502,8124],[-33,17],[-18,4],[-16,-6]],[[6435,8139],[-17,-21]],[[6418,8118],[-9,-6],[-11,4]],[[6398,8116],[-33,20],[27,27]],[[6392,8163],[18,29],[12,35]],[[6422,8227],[-4,36],[-9,-7]],[[6409,8256],[-8,0]],[[6401,8256],[-8,2],[-7,5],[-7,6]],[[6379,8269],[-9,13],[-5,9]],[[6365,8291],[-2,9],[2,6]],[[6365,8306],[11,3],[3,6],[2,11],[-2,9],[-1,10]],[[6378,8345],[-1,11]],[[6377,8356],[1,10],[5,19],[1,11]],[[6384,8396],[-2,23],[-3,18]],[[6379,8437],[-6,16],[-20,31],[-3,9],[-2,10]],[[6348,8503],[-2,21],[-2,8],[-7,7],[-16,6]],[[6321,8545],[-6,11],[5,25]],[[6320,8581],[18,15]],[[6338,8596],[79,27],[27,-1]],[[6444,8622],[9,3],[18,30],[-1,44]],[[6470,8699],[-12,42],[-7,10]],[[6451,8751],[-11,16],[-9,9]],[[6431,8776],[-16,25],[-8,8]],[[6407,8809],[-5,0],[-9,-6]],[[6393,8803],[-6,3]],[[6387,8806],[1,2],[-2,15]],[[6386,8823],[-1,5],[-3,4],[-6,6],[-3,4],[-17,32]],[[6356,8874],[-10,10],[-23,0]],[[6323,8884],[0,9],[4,16]],[[6327,8909],[-2,18],[-9,23]],[[6316,8950],[-6,18]],[[6310,8968],[-2,21],[-2,35],[-1,18]],[[6305,9042],[0,6]],[[6305,9048],[8,24],[0,12],[-2,10],[-2,10]],[[6309,9104],[-5,12],[-7,18],[-8,12],[-30,28],[-6,12],[-12,36],[-9,17]],[[6232,9239],[-19,18],[-9,12],[-8,19]],[[6196,9288],[-3,14]],[[6193,9302],[-6,10],[-11,6]],[[6176,9318],[-21,1],[-22,-5],[-40,-27],[-32,-44],[-10,-2]],[[6051,9241],[-8,17],[3,40]],[[6046,9298],[-9,18],[-7,-5]],[[6030,9311],[-7,-8],[-6,-7],[-9,-1]],[[6008,9295],[-7,5]],[[6001,9300],[-1,2],[-12,11]],[[5988,9313],[-8,3],[-30,-1],[-45,13],[-7,-2],[-7,-8],[-12,-21],[-6,-8]],[[5873,9289],[-9,-4],[-5,-4],[-5,-15]],[[5854,9266],[-4,-6],[-4,-1]],[[5846,9259],[-6,5],[-4,0],[-9,-6],[-48,-60],[-8,-6]],[[5771,9192],[-8,1],[-14,16]],[[5749,9209],[-8,5],[-14,0]],[[5727,9214],[-27,-10]],[[5700,9204],[-14,-1],[-92,69]],[[5594,9272],[-22,-10],[-40,21]],[[5532,9283],[-19,-6],[-7,-36]],[[5506,9241],[3,-12],[8,-22],[2,-9],[-3,-12]],[[5516,9186],[-5,-6],[-6,-5]],[[5505,9175],[-4,-7],[-4,-18],[-6,-65],[-14,-41],[-20,-23],[-64,-42],[-9,-1]],[[5384,8978],[-28,10],[-17,-2]],[[5339,8986],[-25,-18],[-7,-2],[-9,8],[-2,16]],[[5296,8990],[0,20]],[[5296,9010],[-3,17],[-10,15],[-16,4]],[[5267,9046],[-28,-4]],[[5012,9999],[4987,0],[0,-9999],[-1070,0],[-1,5],[-3,10],[-7,9],[-19,13],[-7,10],[-21,48],[-54,87],[-31,79],[-29,54],[-99,135],[-13,24],[-13,32],[-7,13],[-11,5],[-5,8],[-10,38],[-5,13],[-9,10],[-10,6],[-21,6],[-9,5],[-8,12],[-38,81],[-8,14],[-8,8],[-20,11],[-48,43],[-132,36],[-5,12],[-5,8],[-33,2],[-19,20],[-11,33],[-10,35],[-11,29],[-17,20],[-4,9],[-3,37],[-5,2],[-16,-9],[-5,3],[-7,10],[-19,35],[-8,9],[-2,8],[1,4],[2,5],[3,6],[0,7],[-1,5],[-27,54],[-5,7],[-10,5],[-20,23],[-10,8],[5,-26],[9,-20],[6,-20],[-1,-21],[-9,-14],[-15,-3],[-15,4],[-12,6],[-24,21],[-12,8],[-15,-1],[-8,-11],[-3,-2],[-4,1],[-15,10],[-7,7],[-6,3],[-4,-8],[-10,10],[-7,13],[-5,15],[-7,14],[-24,21],[-7,12],[-9,33],[-16,72],[-11,22],[0,8],[8,17],[-2,20],[-9,20],[-44,67],[-12,7],[-7,2],[-8,5],[-6,5],[-7,12],[-18,10],[-15,19],[-40,19],[-51,47],[-19,5],[-9,-2],[-18,-10],[-10,-2],[-8,3],[-28,26],[-23,38],[-3,9],[-1,8],[-3,7],[0,8],[4,9],[4,2],[52,-2],[11,4],[16,18],[10,8],[5,1],[16,-1],[5,2],[6,10],[10,4],[28,23],[8,10],[4,6],[3,9],[1,13],[-2,9],[-4,6],[-5,3],[-2,-4],[-72,-26],[-5,9],[-5,20],[-4,23],[0,14],[8,11],[6,-17],[3,-25],[4,-13],[4,4],[0,10],[-1,12],[1,11],[3,5],[5,5],[9,4],[0,7],[-14,0],[-6,4],[-11,18],[-5,0],[-5,-4],[-6,-3],[-9,-10],[-18,-43],[-10,-6],[0,15],[7,28],[10,26],[60,55],[7,-9],[7,-2],[7,0],[8,-2],[80,-81],[19,-12],[11,-3],[3,-5],[-3,-11],[-6,-11],[-2,-2],[-2,-10],[-2,-29],[0,-5],[-4,-3],[-12,-3],[-3,-5],[1,-11],[2,-8],[3,-5],[5,-1],[11,2],[26,12],[22,1],[10,4],[4,14],[4,9],[30,-6],[-8,16],[-13,8],[-27,6],[-13,-1],[-7,1],[-5,7],[-4,15],[3,6],[87,2],[11,-6],[5,-17],[6,12],[17,5],[7,8],[7,11],[20,22],[7,9],[0,-9],[-7,-29],[6,3],[9,10],[3,2],[5,-1],[9,-5],[5,-2],[4,-2],[4,-7],[3,-10],[0,-10],[-3,-6],[-5,-4],[-11,-4],[12,-11],[8,8],[7,19],[5,20],[1,-5],[2,-8],[3,-6],[2,-3],[4,-1],[2,-1],[3,-2],[18,-9],[5,-1],[4,2],[3,5],[1,5],[-4,5],[-7,14],[-2,5],[-2,4],[-2,0],[-1,2],[2,9],[1,4],[4,4],[1,3],[2,-1],[8,19],[2,8],[1,8],[1,4],[5,2],[0,7],[-5,-3],[-8,-9],[-6,-2],[3,27],[-3,13],[-4,11],[-2,22],[5,-3],[9,-9],[5,-4],[0,8],[-8,8],[-13,23],[-6,5],[0,11],[7,52],[-1,21],[-3,6],[-6,6],[-5,5],[-5,2],[-4,4],[-3,20],[-4,5],[-6,-7],[1,-17],[6,-15],[12,-5],[0,-8],[-9,-6],[-4,-1],[0,-8],[2,-5],[2,-6],[1,-8],[1,-10],[1,1],[1,-3],[1,-3],[0,-5],[-1,-4],[-2,0],[-2,0],[-1,0],[0,-52],[-6,-29],[-4,-11],[-5,-2],[-7,7],[-4,10],[0,12],[4,36],[0,33],[-4,63],[1,35],[3,37],[3,19],[3,10],[9,6],[4,-8],[-2,-12],[-8,-8],[13,-7],[5,-12],[9,-15],[3,1],[2,18],[7,-4],[3,-2],[-1,13],[-4,5],[-4,3],[-4,8],[-4,15],[0,6],[3,3],[42,56],[17,18],[7,3],[6,9],[7,21],[8,36],[7,37],[12,117],[8,43],[10,31],[15,21],[30,17],[25,4],[3,-3],[-4,-5],[-19,-15],[-4,-5],[-3,-9],[10,8],[6,0],[3,-8],[-1,-12],[-9,-23],[-3,-12],[-2,-21],[2,-8],[8,-3],[7,1],[1,-6],[0,-18],[-3,-22],[-9,-21],[-18,-34],[-7,-26],[6,-15],[12,-3],[10,11],[-6,16],[1,15],[11,28],[11,62],[0,12],[5,6],[6,15],[5,20],[3,43],[4,11],[4,8],[3,13],[0,44],[3,20],[9,8],[9,4],[10,7],[9,4],[11,-7],[22,-45],[17,-11],[25,-39],[9,-8],[8,-5],[17,-1],[5,1],[10,4],[5,1],[6,-5],[5,-3],[5,2],[3,11],[3,22],[2,25],[-3,18],[-6,11],[-120,111],[-7,14],[-2,25],[-4,20],[-9,15],[-16,18],[-44,77],[-17,20],[-9,5],[-36,1],[-4,-2],[-3,-7],[1,-13],[15,-10],[4,-4],[-10,-15],[-12,8],[-30,52],[-20,47],[-6,10],[-11,13],[-6,31],[-5,35],[-12,51],[-4,33],[-6,30],[-12,18],[0,8],[3,-1],[0,2],[0,3],[1,2],[14,-14],[20,-25],[19,-18],[14,7],[20,-14],[26,2],[26,13],[15,17],[16,32],[9,11],[11,5],[22,1],[9,4],[8,9],[14,26],[5,4],[4,-7],[4,-16],[1,-5],[7,-24],[4,-8],[69,-31],[52,7],[8,6],[3,20],[-6,19],[-9,15],[-6,8],[-18,16],[-20,12],[-20,1],[-18,-14],[-1,-6],[-2,-13],[-2,-6],[-2,23],[-2,15],[-1,13],[2,7],[11,13],[3,6],[1,10],[-2,23],[1,10],[6,13],[9,15],[11,11],[7,5],[37,-15],[9,2],[17,10],[38,5],[10,4],[25,20],[18,7],[7,12],[13,28],[8,13],[8,4],[17,-3],[9,4],[9,9],[16,23],[21,38],[11,9],[3,6],[4,5],[6,1],[4,-4],[4,-13],[4,-5],[6,1],[5,5],[4,6],[3,3],[51,-19],[8,4],[4,16],[4,44],[3,17],[10,15],[20,8],[10,9],[-16,17],[-12,-3],[-11,-17],[-12,-26],[-7,9],[-1,12],[5,30],[-9,5],[-2,8],[1,34],[2,11],[4,1],[4,1],[3,5],[1,9],[-1,32],[-7,27],[-17,7],[-20,2],[-13,11],[-9,-6],[-8,3],[-9,7],[-6,3],[-7,-5],[-12,-16],[-3,0],[-13,-13],[-17,3],[-15,-4],[-7,-34],[2,-21],[2,-12],[-3,-6],[-21,-3],[-6,-7],[-6,-7],[-6,-5],[-9,-2],[-26,2],[-25,-14],[-17,-4],[-17,-10],[-9,-2],[-34,0],[2,-5],[1,-3],[1,-3],[3,-4],[0,-7],[-11,0],[-13,4],[-11,10],[-7,15],[8,7],[7,24],[6,5],[4,7],[9,28],[4,10],[15,12],[85,17],[7,5],[8,13],[7,15],[-1,10],[-4,2],[-4,-8],[-6,-19],[-3,-4],[-5,-1],[-8,1],[-75,-19],[-19,-12],[-16,-20],[-9,-31],[-2,-6],[-4,-2],[-6,-5],[-5,-8],[-2,-10],[-4,-13],[-10,-7],[-76,-16],[-19,-11],[-4,-5]],[[922,0],[-922,0],[0,2454]],[[949,5821],[-4,-18],[-3,-24],[-3,-24],[1,-18]],[[940,5737],[-8,-10]],[[932,5727],[-17,-4],[-9,-9]],[[906,5714],[-10,-45]],[[896,5669],[-5,-19],[-1,-5]],[[890,5645],[0,-14]],[[890,5631],[-1,-6],[-4,-10]],[[885,5615],[-11,-14],[-4,-8]],[[870,5593],[-1,-2]],[[869,5591],[-3,-13],[0,-8]],[[866,5570],[1,-9],[1,-36]],[[868,5525],[-1,-7],[-4,-12],[-4,-9],[-4,-5]],[[855,5492],[-4,-7],[-1,-14]],[[850,5471],[1,-23]],[[851,5448],[-3,-23],[-6,-19],[-8,-15],[-5,-6]],[[829,5385],[-13,-6],[-5,-6]],[[811,5373],[-4,-7],[-5,-17],[-3,-8],[-30,-37],[-7,-18]],[[762,5286],[-1,-21],[6,-43],[-2,-17],[-5,-17],[-1,-77]],[[0,5245],[0,905]],[[4329,2143],[-36,-25],[23,21],[10,12],[4,10],[2,10],[6,4],[7,2]],[[4345,2177],[7,3],[7,9],[13,24]],[[4372,2213],[8,11],[73,108],[24,20],[-102,-154],[-46,-55]],[[5646,2617],[67,-15],[32,11]],[[5745,2613],[13,-1],[15,-18]],[[5773,2594],[19,14],[11,2],[5,-12],[5,-8],[21,3],[6,-13]],[[5840,2580],[-8,-14]],[[5832,2566],[-196,51],[4,6]],[[5640,2623],[2,0],[4,-6]],[[5419,2719],[7,-7],[-11,3],[-19,15]],[[5396,2730],[-170,58],[-73,44],[-14,21],[-13,33]],[[5126,2886],[-4,17],[-4,27],[0,20]],[[5118,2950],[8,-5]],[[5126,2945],[8,-45],[7,-32]],[[5141,2868],[11,-22]],[[5152,2846],[19,-17],[150,-58]],[[5321,2771],[60,-24],[38,-28]],[[8239,3727],[0,-1],[-9,-14]],[[8230,3712],[-25,-55],[-16,-12],[10,34],[0,17]],[[8199,3696],[-12,7],[-15,20],[-2,-2],[-3,-3],[-12,-12],[-4,-3],[-18,11]],[[8133,3714],[-12,5],[-5,-5]],[[8116,3714],[-42,11],[-50,-28]],[[8024,3697],[-20,-1],[-60,17],[-16,-10]],[[7928,3703],[-30,-48]],[[7898,3655],[-49,-109],[-12,-37],[-7,-17],[-11,-8],[2,27],[-10,21],[-16,13]],[[7795,3545],[-16,5],[-9,-4],[-21,-26]],[[7749,3520],[-54,-33],[-8,-3],[-5,-4]],[[7682,3480],[-15,-20]],[[7667,3460],[-6,-5],[-16,-9],[-24,-38],[-15,-4],[4,-25]],[[7610,3379],[-7,-24],[-9,-24],[-4,-25],[-4,-29],[-8,-29]],[[7578,3248],[-12,-17],[-11,5],[0,8],[3,0]],[[7558,3244],[9,-7],[9,30]],[[7576,3267],[6,38],[0,19]],[[7582,3324],[-4,5],[-17,31]],[[7561,3360],[-7,6],[-15,9]],[[7539,3375],[-7,8]],[[7532,3383],[-8,-8],[-8,1]],[[7516,3376],[-13,7],[-7,-4]],[[7496,3379],[-6,-8],[-3,-7],[-4,-4]],[[7483,3360],[-31,0],[-19,-18]],[[7433,3342],[-23,-7],[-15,-12]],[[7395,3323],[-14,-16],[-31,-53]],[[7350,3254],[-9,-24],[-3,-31],[-3,0]],[[7335,3199],[0,16],[-2,3],[-5,-4],[-4,-3]],[[7324,3211],[-1,-6],[0,-2]],[[7323,3203],[-2,9],[1,5]],[[7322,3217],[0,7],[0,5]],[[7322,3229],[-5,5],[-1,2]],[[7316,3236],[-4,13],[-3,5]],[[7309,3254],[-3,4],[-9,7],[-9,-1],[-17,-6]],[[7271,3258],[-34,8],[-63,-19]],[[7174,3247],[-11,0],[-35,-31]],[[7128,3216],[-26,-23],[-13,-18]],[[7089,3175],[-38,-70],[-15,-22],[-55,-44]],[[6981,3039],[-9,-10],[-7,-13],[-14,-31],[-7,-11]],[[6944,2974],[-17,-18],[-7,-11]],[[6920,2945],[-44,-116]],[[6876,2829],[-2,-5],[-8,-13]],[[6866,2811],[-25,-77],[-12,-26],[-10,-19]],[[6819,2689],[-19,-10]],[[6800,2679],[-12,-15],[-16,-6],[-11,-13],[-17,-14],[-9,5]],[[6735,2636],[2,10]],[[6737,2646],[14,27],[17,16]],[[6768,2689],[-2,4],[-2,11]],[[6764,2704],[49,24]],[[6813,2728],[24,20],[12,41],[12,19]],[[6861,2808],[4,19],[14,38]],[[6879,2865],[17,28],[7,17]],[[6903,2910],[1,27]],[[6904,2937],[-8,-14],[-8,-11]],[[6888,2912],[-9,-1],[-11,15],[-4,24],[3,28],[9,40]],[[6876,3018],[-4,4],[-7,1],[-5,2]],[[6860,3025],[-3,3]],[[6857,3028],[-6,9],[-8,8]],[[6843,3045],[-6,15]],[[6837,3060],[-4,19],[-2,19]],[[6831,3098],[-10,-20]],[[6821,3078],[3,-22],[9,-19]],[[6833,3037],[4,-15],[2,-14]],[[6839,3008],[3,-8],[1,-9]],[[6843,2991],[-2,-16],[-4,-12]],[[6837,2963],[-15,-26],[-28,-67],[-2,-3]],[[6792,2867],[-14,-26],[-20,-20]],[[6758,2821],[-44,-18],[-5,0]],[[6709,2803],[-5,3],[-3,7],[-1,8],[-1,4]],[[6699,2825],[-5,-4],[-3,-10]],[[6691,2811],[-1,-12],[-1,-10]],[[6689,2789],[-20,-15],[-2,-5],[-8,-18],[-3,-10]],[[6656,2741],[0,-11],[1,-9],[2,-17],[3,-68]],[[6662,2636],[2,-16]],[[6664,2620],[4,-16],[17,-130]],[[6685,2474],[4,-14],[6,-12],[4,-14],[25,-105]],[[6724,2329],[40,-127]],[[6764,2202],[134,-318],[69,-78],[17,-2]],[[6984,1804],[83,37],[9,10]],[[7076,1851],[13,22],[2,11]],[[7091,1884],[1,9],[2,7]],[[7094,1900],[6,3],[3,3],[7,17]],[[7110,1923],[2,5],[1,19]],[[7113,1947],[4,20]],[[7117,1967],[7,16],[7,7]],[[7131,1990],[11,-1],[1,-11]],[[7143,1978],[-3,-16]],[[7140,1962],[-3,-19],[4,-13]],[[7141,1930],[8,-11],[35,-34]],[[7184,1885],[18,-10],[17,6]],[[7219,1881],[14,29],[6,32],[2,5]],[[7241,1947],[12,12],[10,16]],[[7263,1975],[10,6],[53,-1]],[[7326,1980],[7,6],[8,10],[7,-3],[4,-13],[-4,-20]],[[7348,1960],[6,1],[4,5],[4,6]],[[7362,1972],[5,4],[9,-3]],[[7376,1973],[15,-16],[9,-4]],[[7400,1953],[27,10],[10,-3]],[[7437,1960],[12,-24],[7,-12],[8,4]],[[7464,1928],[8,14],[8,2]],[[7480,1944],[7,-7],[7,-13],[8,-36]],[[7502,1888],[3,-25],[-3,-12]],[[7502,1851],[-15,-6]],[[7487,1845],[-6,-1],[-5,3],[-14,12]],[[7462,1859],[-11,2],[-9,-3]],[[7442,1858],[-6,-11]],[[7436,1847],[-2,-21],[2,-8],[3,-4],[1,-5]],[[7440,1809],[-3,-9],[-4,-4]],[[7433,1796],[-11,-1],[-4,-2]],[[7418,1793],[-6,-14],[-5,-22]],[[7407,1757],[-4,-23],[-4,-63],[0,-23]],[[7399,1648],[2,-22],[13,-23],[6,-16],[-1,-16]],[[7419,1571],[-6,-10],[-33,-20],[-42,-3]],[[7338,1538],[-5,-2],[-5,-5],[-1,-6],[-3,-19]],[[7324,1506],[-2,-5],[-9,-4],[-41,15]],[[7272,1512],[-27,27],[0,-8],[-14,10]],[[7231,1541],[-11,-17]],[[7220,1524],[-7,-24],[-7,-13],[-36,4]],[[7170,1491],[-32,-10],[-9,7],[-5,24]],[[7124,1512],[-2,11]],[[7122,1523],[-14,27],[-6,9]],[[7102,1559],[-30,31]],[[7072,1590],[-34,21],[-20,6]],[[7018,1617],[-20,0],[-19,-7]],[[6979,1610],[-17,-13],[-25,-32],[-4,-9]],[[6933,1556],[-1,-13],[-2,-8],[-2,-8]],[[6928,1527],[2,-12],[3,-4]],[[6933,1511],[13,-10],[0,-7]],[[6946,1494],[-6,-4],[-15,1]],[[6925,1491],[-8,-4],[-5,-12]],[[6912,1475],[-1,-14],[3,-32],[-22,28],[-2,-4],[-5,-5]],[[6885,1448],[-3,-5],[-11,11]],[[6871,1454],[-8,-9],[-11,-35]],[[6852,1410],[-8,-12],[-21,-8],[-8,-6],[-11,-35]],[[6804,1349],[-10,-46],[-13,-33],[-20,5],[-5,11],[-4,15]],[[6752,1301],[-6,13],[-9,5]],[[6737,1319],[-16,2],[-4,-2]],[[6717,1319],[-6,-4]],[[6711,1315],[-3,-6],[-4,-6],[-3,-5]],[[6701,1298],[-9,-2],[-15,6],[-7,-8],[-7,-5]],[[6663,1289],[-32,9],[-17,-10],[-33,-36]],[[6581,1252],[-17,-13],[-38,-13]],[[6526,1226],[-15,-11],[-12,-20]],[[6499,1195],[0,3]],[[6499,1198],[0,3],[0,1]],[[6499,1202],[-2,0],[-19,-43],[-2,-7],[-5,-10],[-16,-45]],[[6455,1097],[-18,-77],[-4,-14],[-4,-2],[-11,2]],[[6418,1006],[-6,0],[-5,1],[-3,-1],[-2,-4]],[[6402,1002],[0,-3]],[[6402,999],[0,-4],[-1,-4]],[[6401,991],[-10,-26],[-6,-8]],[[6385,957],[-22,-7],[-5,-12]],[[6358,938],[-5,-16],[-6,-18]],[[6347,904],[-5,-8],[-16,-18]],[[6326,878],[-6,-4],[-11,-2],[-50,-39]],[[6259,833],[-10,-2],[-10,3],[-29,19],[-6,-1],[-10,-5]],[[6194,847],[-5,-2],[-31,2]],[[6158,847],[-9,4],[-35,27]],[[6114,878],[-7,9],[-2,20]],[[6105,907],[-3,10]],[[6102,917],[-14,30],[-6,7],[-8,-1]],[[6074,953],[-10,-5],[-10,-1],[-8,11],[-6,10],[-50,58]],[[5990,1026],[-3,13],[-1,12]],[[5986,1051],[2,-3]],[[5988,1048],[14,5],[4,4]],[[6006,1057],[10,12],[4,2],[10,-1],[5,1],[4,4]],[[6039,1075],[7,4],[24,0],[9,7]],[[6079,1086],[-6,4],[-15,4],[-5,6],[0,16],[4,13]],[[6057,1129],[5,12],[4,11],[2,17]],[[6068,1169],[0,11],[-5,22],[-3,29],[-2,16],[-5,14]],[[6053,1261],[4,5],[2,3],[1,6]],[[6060,1275],[3,22],[4,19],[7,13],[18,11]],[[6092,1340],[5,13]],[[6097,1353],[3,18],[2,21]],[[6102,1392],[0,24],[-6,42]],[[6096,1458],[-1,18]],[[6095,1476],[-1,6],[-8,27],[-2,9]],[[6084,1518],[-2,28],[-7,43]],[[6075,1589],[-12,25]],[[6063,1614],[-31,34],[-26,37],[-8,6]],[[5998,1691],[-19,-4]],[[5979,1687],[-18,-11],[-16,-16],[-11,-5]],[[5934,1655],[-5,10]],[[5929,1665],[-4,15],[-10,9],[-21,9]],[[5894,1698],[-7,11]],[[5887,1709],[-16,33],[-12,11]],[[5859,1753],[-4,9],[-5,16]],[[5850,1778],[-4,5],[-9,6]],[[5837,1789],[-4,4],[-31,43],[-16,18]],[[5786,1854],[-19,12],[-70,10],[-10,-3]],[[5687,1873],[-7,-8],[-17,-29]],[[5663,1836],[-6,-6],[-34,0],[-10,5],[-16,14],[-10,2]],[[5587,1851],[-13,58],[-2,15]],[[5572,1924],[7,28],[14,25],[55,67]],[[5648,2044],[9,4],[10,2],[9,4]],[[5676,2054],[7,7],[7,8]],[[5690,2069],[4,8],[3,8],[4,5],[7,2]],[[5708,2092],[4,-1],[9,-6],[6,-1]],[[5727,2084],[6,3],[1,9]],[[5734,2096],[-1,10],[-1,8]],[[5732,2114],[1,9],[2,6],[3,7]],[[5738,2136],[14,23],[32,35],[105,78],[6,8]],[[5895,2280],[3,13],[-3,4],[-4,3]],[[5891,2300],[-4,7],[1,11],[4,6]],[[5892,2324],[4,-5],[8,-16]],[[5904,2303],[16,-15],[17,3]],[[5937,2291],[34,34],[16,12]],[[5987,2337],[3,6]],[[5990,2343],[14,25],[7,5]],[[6011,2373],[20,20],[7,5],[3,-2]],[[6041,2396],[8,-10]],[[6049,2386],[6,-2],[5,1]],[[6060,2385],[11,5]],[[6071,2390],[11,23],[10,10],[5,3]],[[6097,2426],[5,1],[5,-2],[5,-4]],[[6112,2421],[4,-6],[2,-6]],[[6118,2409],[2,-6],[5,-1],[10,3],[1,12],[-1,26],[1,19],[7,-5],[8,7],[16,6],[8,8]],[[6175,2478],[-9,12],[-9,7]],[[6157,2497],[-26,12],[-12,-2]],[[6119,2507],[-5,-3],[-3,-7],[-4,-3]],[[6107,2494],[-5,7],[8,18]],[[6110,2519],[4,12],[-1,6]],[[6113,2537],[-6,3],[0,9]],[[6107,2549],[2,11],[4,9]],[[6113,2569],[-1,8],[-6,36]],[[6106,2613],[-1,12]],[[6105,2625],[5,11],[5,13],[-2,15],[-14,43]],[[6099,2707],[-8,12],[-12,-7],[-10,-14],[-8,-16]],[[6061,2682],[-1,-15],[13,-13]],[[6073,2654],[0,-8],[-13,-2]],[[6060,2644],[-11,-6],[-5,-13]],[[6044,2625],[9,-23],[-4,1]],[[6049,2603],[-10,6]],[[6039,2609],[-29,1],[-3,5],[-15,31]],[[5992,2646],[-12,17],[-13,4]],[[5967,2667],[-9,-21]],[[5958,2646],[-2,5],[-2,2]],[[5954,2653],[-3,-1],[-3,2],[8,12],[5,14]],[[5961,2680],[-1,12],[-10,5]],[[5950,2697],[-37,-8]],[[5913,2689],[4,14],[1,14],[5,74]],[[5923,2791],[-11,-19],[-8,-29]],[[5904,2743],[-9,-27],[-15,-12],[-4,-1]],[[5876,2703],[-5,-6],[-5,0]],[[5866,2697],[-5,3],[-10,12]],[[5851,2712],[-27,22],[4,-31],[-6,-14],[-49,-14],[-6,0],[-4,2]],[[5763,2677],[-4,4],[-3,1]],[[5756,2682],[-11,-1],[-4,1]],[[5741,2682],[-25,14],[-11,1]],[[5705,2697],[-7,-3],[-18,-13],[-58,-17],[-5,-3]],[[5617,2661],[-5,-5],[-7,-13]],[[5605,2643],[-4,-4],[-19,-5]],[[5582,2634],[-93,43]],[[5489,2677],[-10,12],[-6,-1]],[[5473,2688],[-3,1],[-1,5],[-1,13]],[[5468,2707],[-1,5]],[[5467,2712],[-2,8],[-2,15],[-2,6]],[[5461,2741],[9,13],[2,6]],[[5472,2760],[2,11],[-14,-10]],[[5460,2761],[-13,-3],[-12,4]],[[5435,2762],[-20,12],[-7,2]],[[5408,2776],[-6,5]],[[5402,2781],[-17,37],[-13,18]],[[5372,2836],[-15,-9],[-23,19],[-39,47]],[[5295,2893],[-1,-12],[2,-14]],[[5296,2867],[1,-12],[-3,-5]],[[5294,2850],[-30,1],[-8,5]],[[5256,2856],[-7,8],[-7,11],[-2,16],[6,15]],[[5246,2906],[9,11],[8,6],[10,2]],[[5273,2925],[25,-9],[36,10],[4,5]],[[5338,2931],[24,36],[6,2]],[[5368,2969],[6,-1]],[[5374,2968],[3,4],[-4,13]],[[5373,2985],[-21,46],[-8,4],[-17,-2],[-20,5]],[[5307,3038],[-65,42]],[[5242,3080],[-11,5],[-10,1]],[[5221,3086],[-7,-6],[-7,-12],[-3,-6]],[[5204,3062],[-1,-8],[-1,-10],[1,-34],[-11,45],[-4,7],[-6,4],[-55,87]],[[5127,3153],[-7,25],[15,-19],[12,-21]],[[5147,3138],[7,-5]],[[5154,3133],[81,10],[16,-8]],[[5251,3135],[27,-26],[1,-1]],[[5279,3108],[5,-3],[40,0],[40,-14]],[[5364,3091],[27,7],[9,0]],[[5400,3098],[51,-18],[26,-26],[19,-7],[20,3]],[[5516,3050],[18,12],[13,22]],[[5547,3084],[-9,19],[13,28],[32,43],[9,9]],[[5592,3183],[22,4],[8,9],[7,12]],[[5629,3208],[7,8],[7,10]],[[5643,3226],[6,18],[-12,-8]],[[5637,3236],[-12,-15],[-13,-10],[-11,3],[-62,-56],[-35,-7]],[[5504,3151],[-30,27],[-8,18],[-2,3]],[[5464,3199],[-6,-3],[-7,-15],[-5,-3],[-5,-1],[-9,-5],[-5,-1],[-11,-22]],[[5416,3149],[-6,11],[-7,38],[-8,9]],[[5395,3207],[-28,9],[-8,6]],[[5359,3222],[-7,12],[-7,18]],[[5345,3252],[-6,21],[-3,18],[-1,20]],[[5335,3311],[-5,16],[-5,15]],[[5325,3342],[-4,18],[-2,44],[8,33],[13,31],[9,37],[3,21]],[[5352,3526],[-1,17],[-5,10],[-23,7]],[[5323,3560],[-5,9],[2,14],[14,32],[4,12],[-3,7]],[[5335,3634],[-13,3],[-20,-6],[-9,2]],[[5293,3633],[-7,12],[13,44]],[[5299,3689],[1,26],[-6,28],[-7,9],[-6,3],[-5,4],[-3,16],[-2,21],[0,11]],[[5271,3807],[-1,8],[-7,11]],[[5263,3826],[-27,21]],[[5236,3847],[-5,13],[3,21],[-1,8]],[[5233,3889],[-5,3],[-2,-4],[-6,-19],[-2,-6],[3,-12],[8,-12],[8,-9],[21,-8],[5,-13]],[[5263,3809],[0,-62]],[[5263,3747],[2,-6],[11,-4]],[[5276,3737],[3,-5],[3,-5]],[[5282,3727],[2,-2],[6,-9],[-4,-17]],[[5286,3699],[-6,-18],[-4,-7]],[[5276,3674],[-3,-48]],[[5273,3626],[14,-11],[21,5]],[[5308,3620],[16,-4]],[[5324,3616],[-14,-25],[-6,-16]],[[5304,3575],[-2,-18],[3,-19]],[[5305,3538],[9,-3],[10,5]],[[5324,3540],[10,10],[2,-23],[-5,-32]],[[5331,3495],[-8,-28]],[[5323,3467],[-10,-12],[-12,-5]],[[5301,3450],[-10,-16],[-6,-23]],[[5285,3411],[1,-28],[17,-37],[2,-8],[-3,-47],[1,-18]],[[5303,3273],[2,-8]],[[5305,3265],[1,-7],[-4,-14],[-4,-6],[-10,-12]],[[5288,3226],[-6,-4],[-20,-6],[-20,4]],[[5242,3220],[-45,28],[-28,-4]],[[5169,3244],[-8,-7],[-4,-14]],[[5157,3223],[-5,-13],[-10,-3]],[[5142,3207],[-4,3],[-6,10]],[[5132,3220],[-4,2],[-10,-1],[-5,1]],[[5113,3222],[-4,3],[-2,16]],[[5107,3241],[5,18],[25,68],[7,23],[0,10]],[[5144,3360],[5,8],[22,50],[-6,14]],[[5165,3432],[-4,-6],[-3,-16],[-3,-13],[-4,-4]],[[5151,3393],[-9,-6],[-3,-4]],[[5139,3383],[-3,-6],[-9,-22],[-1,-4],[-1,-3]],[[5125,3348],[-5,-2],[-6,5],[-7,9],[-7,26]],[[5100,3386],[-5,14]],[[5095,3400],[-7,4],[5,-26]],[[5093,3378],[1,-7],[1,-15]],[[5095,3356],[3,-7],[4,-3],[15,-19]],[[5117,3327],[1,-8]],[[5118,3319],[-3,-13],[-9,-22]],[[5106,3284],[0,-4],[-8,-9]],[[5098,3271],[-15,-40],[-6,-9]],[[5077,3222],[-9,-3],[-21,-18]],[[5047,3201],[-7,-8],[-6,5],[-13,3],[-6,6]],[[5015,3207],[-4,-8]],[[5011,3199],[-8,10],[-33,13]],[[4970,3222],[-13,0],[-23,-12],[-25,-5]],[[4909,3205],[-20,-10],[-10,-2],[-4,-5]],[[4875,3188],[-11,-14]],[[4864,3174],[-4,0],[-5,4]],[[4855,3178],[-6,-4],[-28,-30],[-5,-2],[-20,7]],[[4796,3149],[-5,0],[-5,-8],[-14,-30]],[[4772,3111],[-3,-9],[2,-14]],[[4771,3088],[8,-27],[3,-22],[2,0],[3,-5]],[[4787,3034],[2,-6],[-2,-3]],[[4787,3025],[-1,-2],[-2,-6]],[[4784,3017],[-1,-6],[-5,-32]],[[4778,2979],[-1,-4],[-19,-41],[-8,-11],[-25,3]],[[4725,2926],[-4,-7],[2,-5],[11,-12],[3,-9],[1,-11],[-2,-10],[-14,-43]],[[4722,2829],[-32,-74],[-11,-30]],[[4679,2725],[-6,-15],[-7,-6]],[[4666,2704],[-4,-9]],[[4662,2695],[-10,-42],[-4,-14],[-57,-88]],[[4591,2551],[-51,-109],[-27,-42],[-30,-39],[1,14],[-3,60]],[[4481,2435],[-4,2],[-4,-7]],[[4473,2430],[-3,-10],[-3,-12]],[[4467,2408],[-1,-29],[-1,-7]],[[4465,2372],[-2,-7],[0,-5]],[[4463,2360],[-1,-4]],[[4462,2356],[-4,-1],[-1,2],[-2,4],[-3,2],[-1,-5],[-4,-3],[-22,27],[-11,8]],[[4414,2390],[-10,-8],[-4,-21],[-1,-27]],[[4399,2334],[-3,-24],[-4,13]],[[4392,2323],[-5,9],[0,8],[3,11],[-2,6]],[[4388,2357],[-4,-2],[-4,-15],[0,-18]],[[4380,2322],[2,-14],[4,-11],[4,-8]],[[4390,2289],[-3,-29],[-3,10],[-3,7]],[[4381,2277],[-10,12]],[[4371,2289],[-1,4],[0,5],[0,3],[-4,2]],[[4366,2303],[-3,-2]],[[4363,2301],[-1,-5],[-1,-5]],[[4361,2291],[-1,-2],[-11,-1]],[[4349,2288],[-13,-4],[-10,-10]],[[4326,2274],[-3,-22],[4,-14],[6,-7],[12,-7]],[[4345,2224],[7,-12],[3,-8],[-2,-3]],[[4353,2201],[-8,-6],[-7,-10]],[[4338,2185],[-8,-6],[-10,7],[-1,-7],[-1,-2]],[[4318,2177],[0,-3],[2,-9]],[[4320,2165],[-7,-6]],[[4313,2159],[-13,-7],[-6,-9]],[[4294,2143],[1,28],[-5,28],[-9,23],[-10,8],[1,8],[-3,51],[3,17],[3,8],[1,6],[-4,12]],[[4272,2332],[-2,6],[-2,2]],[[4268,2340],[-1,2],[-10,13],[-3,5],[-2,9],[-2,-1]],[[4250,2368],[-2,-5],[-1,-8],[1,-8]],[[4248,2347],[7,-14]],[[4255,2333],[1,-5],[-2,-8]],[[4254,2320],[-8,-19],[-3,-12]],[[4243,2289],[0,-17],[1,-8]],[[4244,2264],[2,-7],[4,-13]],[[4250,2244],[-16,-19],[-3,-42]],[[4231,2183],[1,-51],[-5,-48],[12,-10],[7,-3],[9,-2],[8,3],[7,8],[12,19]],[[4282,2099],[-6,-12],[-15,-38]],[[4261,2049],[-6,-9],[-5,-4],[-3,-10]],[[4247,2026],[-2,-10],[-3,-5],[-7,-4]],[[4235,2007],[0,-9],[7,-25]],[[4242,1973],[4,-8],[5,-6]],[[4251,1959],[5,1],[2,10]],[[4258,1970],[-1,13]],[[4257,1983],[1,11],[8,3]],[[4266,1997],[0,-25]],[[4266,1972],[1,-5],[3,1]],[[4270,1968],[2,4]],[[4272,1972],[0,4],[4,-2]],[[4276,1974],[4,1],[3,-4],[2,-18]],[[4285,1953],[3,16],[2,18]],[[4290,1987],[4,8],[7,-13]],[[4301,1982],[3,-17]],[[4304,1965],[1,-21],[-4,-14]],[[4301,1930],[-9,1]],[[4292,1931],[6,-11],[4,-20]],[[4302,1900],[2,-24],[1,-45]],[[4305,1831],[-1,-9],[-1,-9]],[[4303,1813],[-4,-15],[-1,-9]],[[4298,1789],[-6,-25],[0,-11]],[[4292,1753],[0,-9],[0,-2],[0,-1]],[[4292,1741],[-9,-14],[-8,-7]],[[4275,1720],[-8,-4],[-7,3]],[[6744,2264],[20,-62]],[[6984,1804],[83,36],[9,11]],[[7091,1884],[0,9],[3,7]],[[7094,1900],[7,3],[2,4],[7,16]],[[7110,1923],[1,5],[2,19]],[[7117,1967],[6,16],[8,7]],[[7131,1990],[12,-2],[0,-10]],[[7140,1962],[-3,-20],[4,-12]],[[7141,1930],[7,-11],[36,-34]],[[7219,1881],[14,28],[6,32],[2,6]],[[7263,1975],[9,6],[54,-1]],[[7326,1980],[7,7],[7,9],[8,-4],[3,-12],[-3,-20]],[[7362,1972],[5,3],[9,-2]],[[7400,1953],[28,11],[9,-4]],[[7464,1928],[8,13],[8,3]],[[7502,1888],[4,-26],[-4,-11]],[[7487,1845],[-6,0],[-5,1],[-14,13]],[[7462,1859],[-11,3],[-9,-4]],[[7436,1847],[-3,-21],[2,-8],[3,-4],[2,-5]],[[7433,1796],[-10,-1],[-5,-2]],[[7418,1793],[-6,-15],[-5,-21]],[[7399,1648],[3,-23],[12,-23],[6,-16],[-1,-15]],[[7338,1538],[-5,-3],[-4,-4],[-2,-7],[-3,-18]],[[7272,1512],[-26,27],[0,-8],[-15,10]],[[7220,1524],[-8,-24],[-7,-13],[-35,4]],[[7170,1491],[-33,-10],[-9,8],[-4,23]],[[7122,1523],[-14,28],[-6,8]],[[7072,1590],[-33,21],[-21,6]],[[6979,1610],[-17,-14],[-25,-32],[-4,-8]],[[6933,1556],[-1,-12],[-2,-10],[-2,-7]],[[6928,1527],[2,-11],[3,-5]],[[6946,1494],[-6,-5],[-15,2]],[[6925,1491],[-7,-4],[-6,-12]],[[6885,1448],[-2,-5],[-12,11]],[[6871,1454],[-9,-9],[-10,-35]],[[6852,1410],[-9,-12],[-20,-7],[-7,-7],[-12,-35]],[[6752,1301],[-6,12],[-9,6]],[[6737,1319],[-15,1],[-5,-1]],[[6711,1315],[-4,-6],[-2,-6],[-4,-5]],[[6663,1289],[-33,9],[-17,-10],[-32,-36]],[[6581,1252],[-18,-12],[-37,-14]],[[6526,1226],[-15,-10],[-12,-21]],[[6499,1198],[0,2],[0,2]],[[6455,1097],[-18,-78],[-5,-13],[-4,-3],[-10,3]],[[6418,1006],[-7,0],[-5,1],[-1,-1],[-3,-4]],[[6402,999],[0,-3],[-1,-5]],[[6385,957],[-21,-7],[-6,-12]],[[6358,938],[-4,-16],[-7,-18]],[[6347,904],[-5,-9],[-16,-17]],[[6259,833],[-9,-2],[-11,2],[-30,20],[-6,-1],[-9,-5]],[[6158,847],[-5,2],[-4,1],[-35,28]],[[6114,878],[-7,10],[-2,19]],[[6102,917],[-14,29],[-5,8],[-9,-1]],[[5990,1026],[-4,13],[0,12]],[[5986,1051],[0,1],[2,-4]],[[6006,1057],[10,13],[5,1],[10,-1],[5,0],[3,5]],[[6039,1075],[7,3],[23,1],[10,7]],[[6057,1129],[6,11],[4,12],[1,17]],[[6053,1261],[5,5],[0,3],[2,6]],[[6060,1275],[3,21],[5,20],[5,14],[6,2],[13,8]],[[6097,1353],[2,18],[3,21]],[[6102,1392],[-1,24],[-5,42]],[[6095,1476],[-1,7],[-9,26],[-1,9]],[[6084,1518],[-1,27],[-8,44]],[[6063,1614],[-31,33],[-26,39],[-8,5]],[[5979,1687],[-18,-12],[-17,-15],[-10,-5]],[[5929,1665],[-4,16],[-10,7],[-21,10]],[[5887,1709],[-16,34],[-12,10]],[[5850,1778],[-5,5],[-8,6]],[[5837,1789],[-3,4],[-31,42],[-17,19]],[[5687,1873],[-8,-8],[-16,-29]],[[5587,1851],[-12,58],[-3,15]],[[5572,1924],[7,29],[13,23],[56,68]],[[5648,2044],[9,5],[11,0],[8,5]],[[5676,2054],[8,6],[6,9]],[[5690,2069],[5,8],[2,7],[3,6],[8,2]],[[5727,2084],[6,4],[1,8]],[[5734,2096],[-2,9],[0,9]],[[5732,2114],[1,8],[2,6],[3,8]],[[5895,2280],[2,12],[-1,5],[-5,3]],[[5892,2324],[5,-5],[7,-16]],[[5937,2291],[33,34],[17,12]],[[5990,2343],[14,26],[7,4]],[[6011,2373],[20,21],[6,4],[4,-2]],[[6049,2386],[6,-3],[5,2]],[[6071,2390],[12,23],[9,9],[5,4]],[[6097,2426],[5,2],[4,-3],[6,-4]],[[6112,2421],[4,-5],[2,-7]],[[6175,2478],[-8,12],[-10,7]],[[6119,2507],[-5,-4],[-4,-6],[-3,-3]],[[6110,2519],[5,12],[-2,6]],[[6113,2537],[-6,4],[0,8]],[[6107,2549],[3,11],[3,9]],[[6113,2569],[-1,7],[-6,37]],[[6105,2625],[5,12],[5,11],[-2,17],[-8,21]],[[6105,2686],[15,25],[5,26],[-4,40],[4,8],[21,-23],[19,-3],[22,9],[20,-6],[22,-21],[24,-25],[21,-24],[17,-15],[19,-12],[18,-11],[26,-5],[18,11],[16,-3],[18,-15],[13,-15],[15,0],[13,-15],[7,-27],[7,-22],[8,-22],[11,-18],[14,-17],[19,-5],[7,19],[5,13],[18,-5],[14,2],[20,3],[21,-8],[22,-22],[14,-23],[9,-34],[0,-32],[0,-43],[2,-27],[10,-20],[28,-12],[22,-27],[17,-27],[11,-6],[11,12]],[[5279,3108],[-16,-41]],[[5263,3067],[-21,13]],[[5242,3080],[-10,4],[-11,2]],[[5204,3062],[-2,-8],[-1,-10],[1,-34],[-11,46],[-3,5],[-7,5],[-54,87]],[[5127,3153],[-8,25],[15,-19],[13,-21]],[[5154,3133],[81,9],[16,-7]],[[5829,4645],[6,-7],[0,-7],[-3,-10],[-4,-20],[0,-6],[1,-4],[3,-2],[3,0],[2,0],[3,1],[2,-1],[3,-3],[5,-10],[2,-6],[-1,-4],[-1,-4],[-1,-2],[-2,-5],[-1,-5],[-1,-24],[0,-5],[-1,-4],[-1,-3],[-1,-6],[-1,-8],[0,-58],[1,-7],[1,-5],[2,-3],[2,-2],[2,-4],[2,-7],[3,-13],[0,-6],[-2,-3],[-20,-3],[-18,-8],[-2,-2],[-4,-4],[-2,-3],[0,-4],[0,-3],[3,-9],[8,-22],[3,-12],[1,-5],[1,-6],[1,-11],[0,-6],[-1,-5],[-3,-6],[-5,-9],[-1,-3],[-2,-5],[-2,-8],[0,-4],[2,-4],[1,-2],[4,-2],[39,-9]],[[5855,4237],[-1,-10],[0,-12],[0,-8],[1,-4],[0,-4],[1,-2],[1,-3],[8,-9],[2,-5],[1,-3],[1,-3],[-1,-4],[-1,-4],[-1,-7],[-1,-4],[0,-3],[1,-2],[0,-1],[0,-2],[2,-9],[1,-3],[2,-4],[0,-3],[0,-3],[0,-5],[0,-4],[0,-8],[-1,-10],[-1,-4],[1,-3],[0,-5],[1,-3],[0,-3],[2,-6],[1,-4],[0,-4],[-1,-3],[-2,-3],[-4,-3],[-9,0],[-3,0],[-2,1],[-2,3],[-1,3],[-2,14],[-4,16],[-2,3],[-2,0],[-1,-1],[-1,-6],[-1,-10],[-2,-5],[-7,-15],[-2,-5],[-1,-4],[1,-3],[0,-2],[1,-4],[2,-3],[0,-3],[2,-2],[2,-2],[2,-2],[4,-1],[15,0],[2,-1],[2,-2],[2,-3],[10,-34],[0,-4],[1,-7],[0,-6],[0,-3],[0,-4],[-1,-9],[-5,-20],[-2,-13],[-1,-8],[0,-5],[0,-4],[1,-3],[1,-4],[2,-9],[10,-28],[1,-4],[-1,-3],[-2,-8],[-1,-5],[-1,-4],[-1,-4],[-1,-2],[-4,0],[-3,1],[-6,6],[-2,1],[-3,-1],[-2,-3],[-14,-25],[-2,-3],[-4,-2],[-6,-2],[-11,0],[-2,2],[-5,9],[-2,2],[-1,-2],[-3,-6],[-4,-18],[-13,-39],[-7,-18],[-2,-4],[0,-3],[0,-4],[0,-3],[1,-3],[1,-5],[0,-10],[1,-3],[1,-2],[3,-1],[7,2],[3,-1],[2,-1],[26,-25],[22,-32],[1,-2],[0,-4],[-1,-4],[-1,-3],[-4,-10],[-8,-15],[-1,-2],[-1,-3],[-1,-3],[0,-4],[0,-2],[0,-2],[-12,13],[-4,4],[-2,5],[-3,6],[-1,3],[-1,1],[-2,-1],[-2,-2],[-5,-7],[-2,-6],[-1,-4],[0,-13],[1,-8],[0,-3],[1,-3],[1,-3],[2,-2],[3,0],[16,0],[2,-1],[2,-2],[1,-3],[1,-3],[0,-3],[-2,-5],[-4,-3],[-20,-8],[-6,-6],[-10,-17],[-5,-4],[-45,-12],[-2,-1],[-2,-6],[-1,-4],[1,-3],[2,-3],[1,-1],[2,-2],[4,-2],[10,-2],[25,5],[4,-2],[4,-4],[2,0],[5,0],[2,0],[1,-3],[-4,-6],[-9,-7],[-36,-19],[-1,-3],[-2,-1],[-3,-1],[-23,2],[-25,-6],[-5,0],[-1,0],[-3,2],[0,3],[-2,2],[-2,3],[-2,9],[-2,3],[-2,2],[-1,3],[-11,5],[-3,2],[-1,2],[-2,3],[-3,1],[-19,-1],[-5,1],[-3,3],[-2,2],[-4,0],[-2,2],[-2,3],[-1,2],[-2,2],[-2,0],[-2,-2],[-1,-5],[0,-15],[0,-5],[-1,-5],[-1,-4],[-1,-3],[-1,-2],[-3,-3],[-3,-1],[-17,-3],[-4,2],[-3,3],[-1,3],[-2,6],[-1,3],[-3,1],[-2,1],[-10,-2],[-16,-6],[-3,-3],[-3,-7],[-3,-5],[-5,-25],[-1,-4],[-2,-2],[-4,-2],[-12,2],[-27,15],[-5,1],[-7,-2],[-2,-2],[-3,-3],[-4,-6],[-2,-5],[-1,-4],[-5,-21],[-5,-13],[0,-3],[-4,-5],[-3,-5],[-8,-5],[-15,-7],[-5,0],[-6,4],[-7,6],[-3,2],[-2,0],[-4,-1],[-3,-2],[-8,-9],[-4,-6],[-7,-3],[-24,1],[0,-5],[0,-1]],[[5332,3321],[-1,6],[-6,15]],[[5352,3526],[0,16],[-5,12],[-24,6]],[[5323,3560],[-4,9],[1,13],[14,34],[3,11],[-2,7]],[[5293,3633],[-8,11],[14,45]],[[5271,3807],[-2,8],[-6,11]],[[5236,3847],[-4,12],[1,22],[0,8]],[[5233,3889],[-5,4],[-1,-5],[-7,-18],[-2,-6],[4,-13],[6,-12],[10,-9],[21,-8],[4,-13]],[[5263,3747],[1,-6],[12,-4]],[[5282,3727],[2,-3],[6,-7],[-4,-18]],[[5286,3699],[-7,-18],[-3,-7]],[[5273,3626],[14,-10],[21,4]],[[5324,3616],[-14,-24],[-6,-17]],[[5304,3575],[-3,-18],[4,-19]],[[5324,3540],[9,9],[3,-23],[-5,-31]],[[5323,3467],[-11,-12],[-11,-5]],[[5285,3411],[0,-28],[18,-38],[2,-6],[-4,-48],[2,-18]],[[5305,3265],[0,-7],[-4,-14],[-3,-7],[-10,-11]],[[5288,3226],[-5,-4],[-21,-7],[-20,5]],[[5242,3220],[-46,28],[-27,-4]],[[5157,3223],[-5,-14],[-10,-2]],[[5142,3207],[-3,3],[-7,10]],[[5113,3222],[-5,3],[-1,16]],[[5144,3360],[6,8],[20,50],[-5,14]],[[5151,3393],[-8,-7],[-4,-3]],[[5125,3348],[-6,-3],[-6,6],[-5,9],[-8,26]],[[5095,3400],[-7,5],[5,-27]],[[5095,3356],[3,-6],[5,-4],[14,-19]],[[5118,3319],[-3,-14],[-9,-21]],[[5098,3271],[-16,-40],[-5,-9]],[[5077,3222],[-10,-3],[-20,-18]],[[5047,3201],[-6,-9],[-7,5],[-14,4],[-5,6]],[[5011,3199],[-8,9],[-32,14]],[[4971,3222],[-8,59],[0,20],[2,5],[1,8],[0,6],[-1,7],[-2,10],[-3,85],[-2,9],[-8,11],[-6,6],[-2,2],[-1,3],[-5,20],[-4,8],[-3,5],[-19,22],[-4,7],[-4,13],[-3,23],[-1,10],[1,5],[1,1],[24,3],[2,0],[2,3],[4,13],[2,3],[3,2],[1,0],[3,-1],[2,-1],[3,-4],[2,-1],[2,0],[5,3],[28,2],[2,1],[3,3],[2,9],[1,3],[2,3],[10,7],[1,1],[1,3],[3,13],[2,16],[2,7],[3,5],[2,3],[3,7],[1,7],[0,7],[0,11],[5,18],[-1,7],[0,5],[-2,3],[-3,1],[-7,0],[-3,2],[-1,3],[-2,5],[-2,8],[-1,5],[-1,5],[-1,2],[-5,7],[-3,4],[-1,5],[-2,10],[-2,5],[-2,3],[-4,0],[-5,-2],[-6,-5],[-2,-1],[-2,0],[-2,0],[-2,2],[-5,7],[-4,3],[-12,5],[-1,2],[-3,3],[-2,4],[0,4],[0,4],[0,9],[1,8],[1,4],[3,2],[1,1],[5,2],[4,3],[2,2],[6,10],[2,5],[1,7],[0,10],[-2,6],[-3,12],[-1,3],[-1,1],[-1,1],[-2,1],[-37,-13],[-15,-10],[-2,1],[-2,2],[-6,13],[-1,3],[-2,1],[-19,1],[-26,7],[-5,16],[-8,27],[-22,102],[-2,18],[6,23],[3,17],[1,9],[1,12],[0,7],[0,6],[0,1],[4,3],[1,2],[1,4],[0,4],[1,10],[-2,23],[-2,6],[-7,13],[-5,14],[-3,6],[-3,4],[-16,0],[-2,3],[-1,3],[2,3],[1,6],[0,8],[-1,19],[-2,8],[-2,3],[-26,-9],[-2,-3],[-1,-3],[-1,-4],[-2,-18],[-3,-7],[-1,-3],[-1,-2],[-3,0],[-2,2],[-2,4],[-3,8],[-2,19],[-2,5],[-2,2],[-17,1],[-3,0],[-3,2],[-6,8],[-2,2],[-3,0],[-2,-1],[-4,-8],[-8,-8],[-4,-4],[-2,-1],[-2,1],[-3,3],[-2,3],[-2,3],[-2,1],[-2,0],[-21,-6],[-3,2],[-1,2],[-5,7],[-2,3],[-11,8],[-4,6],[-2,6],[-2,4],[-1,9],[-3,14],[-1,5],[0,3],[0,4],[1,5],[4,10],[0,4],[1,5],[-1,7],[0,4],[-2,4],[-6,7],[-6,10],[-2,5],[0,4],[1,4],[1,3],[5,7],[2,3],[1,3],[0,2],[0,5],[-2,16],[-3,5],[-2,3],[-13,8],[-5,4],[-6,11],[-3,5],[-1,4],[-1,5],[0,3],[-11,115],[-1,5],[-2,4],[-9,15],[-4,11],[-3,4],[-1,2],[-2,2],[-12,5],[-2,3],[-2,3],[0,3],[-1,10],[1,4],[0,4],[3,9],[1,4],[0,3],[0,4],[0,14],[0,6],[-1,4],[-6,6],[0,2],[0,4],[3,4],[3,2],[15,11],[7,-1],[2,1],[3,5],[2,2],[2,1],[3,-1],[2,-1],[3,-1],[2,1],[2,3],[0,5],[0,5],[-2,3],[-6,6],[-1,3],[-1,5],[-1,19]],[[4554,4825],[14,-1],[4,2],[2,6],[3,18],[3,5],[71,0],[5,-2],[4,0],[3,-1],[21,-12],[18,-5],[5,0],[2,1],[2,3],[1,3],[2,8],[0,4],[5,4],[5,4],[22,11],[5,2],[14,-4],[14,0],[6,-1],[4,-3],[1,-3],[0,-4],[1,-4],[2,-3],[5,-4],[3,1],[2,3],[3,13],[1,4],[2,3],[4,4],[4,1],[3,0],[2,-2],[1,-2],[2,-3],[1,-3],[0,-4],[1,-4],[1,-5],[2,-3],[6,-3],[3,-1],[4,0],[1,1],[2,3],[2,3],[2,5],[4,4],[15,7],[3,2],[2,4],[1,3],[0,4],[2,9],[3,6],[6,6],[17,8],[9,3],[34,-5],[7,-4],[9,-2],[4,-1],[2,-3],[1,-2],[1,-4],[1,-29],[1,-3],[1,-3],[4,-4],[10,-4],[2,-3],[1,-1],[0,-4],[0,-16],[0,-4],[1,-3],[1,-3],[1,-3],[1,-1],[1,-2],[4,-3],[44,-10],[3,1],[9,9],[7,4],[2,-1],[2,-3],[1,-3],[0,-3],[2,-4],[4,-3],[3,-1],[2,1],[2,2],[4,3],[6,3],[25,3],[3,-1],[1,-2],[1,-3],[1,-3],[1,-8],[-2,-22],[-1,-4],[-1,-5],[-1,-6],[-1,-1],[0,-4],[0,-4],[2,-3],[3,-2],[3,0],[2,1],[2,2],[1,5],[0,4],[0,13],[1,5],[1,4],[4,4],[3,-1],[1,-2],[2,-4],[3,-1],[2,0],[7,1],[2,2],[2,3],[0,3],[0,11],[0,4],[1,4],[2,2],[2,3],[8,5],[3,-1],[2,-2],[6,-11],[3,-2],[4,-3],[6,2],[3,-2],[4,-1],[4,-6],[3,-1],[3,0],[18,5],[4,-1],[3,-2],[1,-3],[3,-18],[2,-6],[1,-4],[0,-4],[0,-4],[0,-4],[-1,-4],[-1,-5],[-1,-3],[-2,-2],[-5,-6],[-19,-13],[-2,-2],[0,-2],[1,-4],[6,-17],[1,-1],[14,-39],[6,-11],[6,-8],[2,-1],[12,4],[3,-1],[2,-2],[3,-5],[1,-6],[1,-5],[0,-4],[0,-3],[1,-4],[2,-2],[1,-4],[10,-17],[1,-4],[0,-3],[1,-4],[0,-4],[0,-4],[-1,-4],[-1,-3],[-8,-19],[-2,-3],[0,-3],[0,-5],[0,-3],[0,-3],[5,-9],[0,-3],[0,-4],[0,-4],[0,-4],[0,-5],[0,-5],[0,-5],[3,-6],[3,-1],[2,-1],[40,1],[3,0],[1,2],[1,4],[1,4],[1,4],[2,3],[6,0],[16,-3],[4,-2],[6,-8],[10,-9],[2,-2],[2,-3],[1,-2],[4,-13],[1,-6],[3,-5],[3,-4],[10,-8],[5,-3],[4,-1],[5,1],[4,3],[2,2],[3,5],[5,12],[6,18],[10,26],[2,3],[1,3],[2,2],[4,2],[17,4],[8,-1],[5,-3],[13,-13],[8,-12],[2,-1],[3,1],[5,3],[5,3],[2,-1],[3,-1],[2,-2],[30,-18],[5,-1],[81,20],[2,2],[1,2],[1,4],[0,17],[0,3],[1,9],[1,3],[1,3],[10,2],[1,2],[2,2],[-1,4],[-1,2],[-1,3],[-2,2],[-1,4],[0,4],[1,8],[0,5],[-1,3],[-3,9],[-1,4],[0,3],[0,4],[1,3],[1,3],[1,2],[5,2],[13,2],[2,1],[1,3],[1,3],[0,4],[0,8],[0,4],[-2,1],[-8,3],[-2,1],[-2,2],[-1,4],[-1,3],[0,3],[0,5],[1,5],[1,3],[1,4],[1,4],[1,2],[2,3],[4,4],[6,5],[19,5],[9,6],[2,-1],[3,-1],[0,-3],[4,-9],[2,-4],[3,-3],[5,-3],[2,-1],[3,1],[2,3],[0,3],[2,9],[1,3],[2,3],[15,4],[1,2],[2,2],[1,3],[0,2],[0,1],[0,1],[-2,10],[0,8],[0,4],[0,5],[1,3],[3,3],[2,4],[6,2],[5,0],[12,-3],[3,0],[9,10],[3,1],[2,-2],[0,-3],[1,-4],[1,-7],[1,-4],[1,-3],[2,-6],[9,-15],[0,-3],[1,-2],[0,-2],[1,-3],[-1,-14],[0,-3],[2,-4],[7,-8]],[[6000,9301],[-2,-5],[-3,-18],[-2,-17],[-1,-6],[-6,-12],[-2,-8],[-1,-8],[-2,-20],[-1,-8],[-5,-10],[-11,-18],[-3,-12],[3,-51],[1,-10],[2,-2],[20,-10],[3,-2],[10,-15],[9,-17],[5,-7],[1,-3],[1,-3],[1,-4],[1,-3],[2,-2],[2,-1],[15,-2],[2,-2],[1,-2],[0,-5],[-1,-5],[-1,-6],[-3,-12],[-3,-5],[-2,-2],[-10,-4],[-11,-2],[-6,1],[-2,1],[-3,2],[-1,3],[-1,3],[0,3],[-2,2],[-2,0],[-2,-2],[-2,-3],[-1,-7],[0,-35],[0,-5],[-1,-4],[-2,-7],[-3,-3],[-1,-4],[-2,-1],[-1,-4],[3,-2],[8,-18],[1,-11],[-5,-13],[-26,-12],[-11,-2],[-7,-4],[-17,-21],[-5,-4],[-21,2],[-9,-4],[4,-13],[0,-7],[-12,-4],[-6,-16],[-4,-17],[-9,-7],[-6,-9],[-8,-20],[-5,-25],[3,-22],[3,-9],[5,-24],[3,-8],[4,-7],[25,-36],[-1,-12],[-7,-15],[-1,-11],[1,-9],[3,-4],[2,-3],[3,-1],[2,-3],[0,-4],[2,-43],[2,-5],[1,-3],[3,-3],[2,-2],[1,-3],[0,-3],[-1,-3],[-2,-2],[-8,-4],[-2,-3],[-1,-7],[0,-14],[2,-6],[1,-5],[10,-12],[1,-3],[2,-2],[0,-4],[-1,-4],[-7,-13],[-1,-2],[-2,1],[-3,2],[-14,10],[-1,0],[-1,-2],[4,-22],[1,-4],[-1,-4],[-2,-6],[-2,-3],[-3,-2],[-1,-2],[-2,-5],[0,-8],[2,-17],[2,-6],[3,-5],[3,-6],[0,-2],[0,-3],[-2,-3],[-1,-3],[-1,-5],[-1,-6],[1,-8],[1,-6],[0,-6],[-2,-6],[-2,-4],[-2,-3],[-4,-2],[-11,-4],[-5,0],[-3,2],[-2,2],[-3,1],[-1,3],[-1,3],[-4,13],[-1,3],[0,1],[-1,3],[-3,1],[-3,1],[-3,-1],[-1,-2],[-2,-3],[-3,-11],[0,-3],[0,-3],[0,-3],[2,-7],[4,-12],[3,-7],[1,-5],[2,-1],[3,-1],[5,0],[2,-1],[2,-2],[1,-3],[1,-4],[0,-6],[-2,-9],[-2,-6],[0,-6],[3,-6],[1,-3],[6,-8],[1,-3],[1,-3],[-2,-5],[-1,-3],[-1,-4],[-1,-5],[2,-13],[1,-5],[0,-4],[-2,-4],[-2,-2],[-13,-10],[-1,-4],[-1,-7],[1,-12],[0,-7],[-2,-8],[-2,-3],[-2,-3],[-24,-11],[-2,-3],[-1,-7],[1,-15],[2,-8],[1,-7],[0,-5],[-1,-7],[-1,-4],[-11,-27],[-1,-4],[0,-3],[3,-3],[17,-7],[19,-12],[2,-2],[3,0],[10,3],[1,0],[2,-1],[2,-3],[0,-4],[0,-4],[-3,-4],[-6,-7],[-1,-4],[0,-3],[2,-3],[2,-4],[5,-4],[9,-7],[24,-8],[3,0],[2,3],[2,3],[9,29],[2,3],[3,0],[5,-3],[5,-3],[2,-3],[1,-4],[-4,-13],[-7,-18],[-3,-5],[-2,-3],[-7,-12],[-1,-3],[0,-5],[0,-4],[1,-4],[1,-3],[10,-12],[1,-4],[1,-6],[-1,-11],[-1,-24],[1,-4],[0,-8],[-1,-6],[-1,-8],[-5,-9],[-2,-4],[-3,-1],[-2,-2],[-2,-3],[-1,-6],[-11,-61],[0,-11],[-1,-19],[1,-11],[0,-9],[2,-4],[4,-8],[6,-7],[4,-2],[3,-4],[1,-5],[0,-6],[-1,-7],[-4,-8],[-4,-5],[-3,-3],[-3,-5],[-2,-7],[-1,-11],[0,-16],[-1,-6],[-1,-4],[-3,-4],[-5,-5],[-2,-3],[0,-4],[0,-7],[1,-8],[1,-4],[0,-5],[-1,-13],[-4,-25],[-16,-67]],[[5842,7381],[-18,-50],[-6,-13],[-12,-7],[-5,-5],[-3,-4],[-2,-5],[-3,-13],[-2,-3],[-3,-3],[-8,-4],[-10,-10],[-3,-4],[-3,-5],[-2,-11],[-3,-9],[-2,-5],[-2,-2],[-5,-3],[-16,-1],[-8,-4],[-40,-31],[-17,0],[-2,2],[-1,2],[-1,3],[-2,3],[-5,0],[-18,-5],[-47,2],[-11,6],[-1,1],[-1,2],[-2,6],[-2,7],[0,3],[-1,4],[0,4],[-2,7],[-1,2],[-2,2],[-2,2],[-3,0],[-7,0],[-4,-1],[-14,-16],[-2,0],[-3,1],[-2,5],[-2,3],[-3,5],[-2,3],[-3,0],[-12,0],[-29,-20],[-1,-3],[-2,-1],[-3,-6],[-10,-23],[-5,-8],[-5,-6],[-4,-2],[-3,0],[-3,1],[-3,5],[-2,1],[-28,0]],[[5413,7180],[-28,26],[-3,4],[-3,6],[1,3],[2,2],[3,5],[2,3],[1,2],[2,4],[0,5],[-2,2],[-1,2],[-6,1],[-5,-1],[-3,0],[-5,2],[-7,5],[-4,3],[-1,4],[-2,2],[-1,3],[0,4],[0,3],[0,6],[0,5],[-1,6],[-1,5],[-2,2],[-12,14],[-1,6],[0,4],[0,4],[3,7],[6,10],[0,1],[1,1],[1,1],[2,1],[9,-3],[1,0],[3,2],[0,2],[1,4],[1,4],[1,14],[-2,16],[-1,6],[-3,3],[-20,0],[-6,1],[-2,1],[-4,5],[-5,8],[-16,33],[-6,6],[-14,18],[-5,5],[-4,4],[-10,-3],[-9,-4],[-3,-2],[-2,-2],[0,-3],[0,-4],[0,-4],[-1,-4],[-1,-3],[-3,-5],[0,-4],[0,-3],[0,-3],[0,-4],[0,-3],[-2,-2],[-4,-3],[-2,-2],[-2,-3],[0,-4],[-3,-6],[-2,-2],[-1,-3],[-3,-1],[-2,-1],[-20,3],[-2,0],[-3,-1],[-1,-2],[-3,-2],[-2,-5],[-4,-5],[-1,-3],[-3,-2],[-5,0],[-2,-1],[-2,-3],[-2,-2],[-5,-9],[-2,-2],[-1,-1],[-4,-1],[-5,1],[-3,-1],[-2,-1],[-4,-5],[-1,-2],[-3,-1],[-3,0],[-28,10],[-2,0],[-2,-1],[-2,-2],[-2,-1],[-5,-9],[-5,-6],[-36,13],[-10,2],[-6,0],[-2,-3],[-3,-2],[-6,-1],[-2,1],[-3,2],[-5,5],[-3,2],[-5,0],[-3,2],[-3,1],[-2,2],[-1,2],[-1,4],[-2,2],[-1,4],[0,5],[1,9],[0,5],[-1,6],[-3,2],[-3,1],[-9,0],[-4,2],[-2,1],[-14,21],[-1,2],[-1,3],[0,4],[0,4],[1,9],[1,2],[2,2],[5,-1],[2,1],[2,3],[2,2],[1,3],[2,8],[1,4],[0,5],[0,4],[-2,11],[-1,14],[-2,7],[-3,6],[-2,6],[-7,10],[-11,13],[0,2],[0,2],[0,10],[-1,5],[-2,2],[-3,1],[-7,1],[-6,2],[-3,2],[-2,4],[1,4],[0,4],[2,3],[0,5],[-1,4],[-4,5],[-1,4],[-2,5],[-2,6],[-2,3],[-3,2],[-2,0],[-3,-2],[-1,-2],[-6,-7],[-3,0],[-4,-2],[-6,-1],[-25,3],[-6,0],[-4,-3],[-8,-9],[-3,-1],[-5,1],[-23,8],[-2,-1],[-2,-2],[-3,-10],[-2,-3],[-2,-3],[-5,0],[-3,1],[-2,2],[-3,7],[-2,5],[-6,6],[-4,3],[-3,1],[-13,-6],[-5,1],[-3,2],[-2,2],[0,5],[1,3],[1,3],[7,17],[4,15],[3,12],[1,8],[3,23],[0,4],[-2,3],[-4,6],[-15,17],[-5,4],[-25,14],[-4,3],[-3,3],[-1,4],[-1,3],[0,5],[0,4],[0,4],[1,5],[2,18],[3,19],[0,8],[0,4],[-1,5],[-1,6],[-1,4],[0,3],[-1,4],[-3,4],[-12,16],[-4,3],[-4,1],[-2,0],[-5,0],[-5,3],[-6,7],[-3,2],[-2,2],[-3,-1],[-2,-1],[-1,-2],[-3,-4],[-2,-1],[-5,0],[-3,1],[-1,4],[0,3],[-2,32],[1,66],[1,9],[8,59],[0,8],[0,9],[-1,7],[-6,21],[-1,6],[1,5],[2,2],[2,0],[10,0],[2,0],[2,2],[1,3],[0,4],[-1,8]],[[4676,8130],[1,0],[0,26]],[[4715,8229],[-2,30],[6,3],[-1,6]],[[4714,8274],[4,-6]],[[4714,8274],[-1,6],[-5,30]],[[4700,8323],[-5,0],[-3,3]],[[4699,8362],[7,-1],[0,7]],[[4706,8368],[-5,4]],[[4701,8372],[-5,4]],[[4690,8397],[3,9],[-3,7]],[[4680,8427],[4,4]],[[4690,8448],[-4,-12],[-2,-5]],[[4690,8448],[-8,5],[-15,7]],[[4667,8460],[-5,10],[0,7],[1,3],[2,1]],[[4671,8485],[0,7],[-4,3]],[[4667,8495],[-10,11],[0,8],[14,17]],[[4674,8549],[3,3],[3,8]],[[4689,8619],[14,0]],[[4703,8619],[5,3],[3,11]],[[4714,8658],[5,9],[0,7]],[[4706,8681],[5,9],[11,11],[8,11]],[[4730,8712],[-1,17]],[[4729,8729],[-3,10]],[[4741,8773],[2,3],[2,4]],[[4745,8780],[2,6],[3,8]],[[4761,8820],[2,6],[4,3]],[[4767,8829],[14,-3],[4,4]],[[4792,8860],[3,-4]],[[4792,8860],[-1,6],[0,5],[14,6],[7,6],[5,7]],[[4817,8890],[6,8],[4,9]],[[4827,8907],[1,3],[-1,6]],[[4827,8916],[1,6],[4,7],[3,4]],[[4838,8935],[3,-2],[2,-6],[13,1],[4,15],[-5,13],[-13,3]],[[4842,8959],[1,6],[1,5],[2,5]],[[4846,8975],[3,5],[-4,18]],[[4946,9017],[12,-10],[20,-25],[11,-6],[11,7],[9,18],[6,21]],[[5104,9061],[82,-23],[52,4],[29,4]],[[5267,9046],[16,-5],[11,-14],[2,-17]],[[5296,8990],[2,-17],[8,-6],[9,1],[24,18]],[[5384,8978],[9,0],[63,43],[21,24],[14,41],[6,63],[4,20],[4,6]],[[5516,9186],[3,13],[-1,8],[-10,22],[-2,12]],[[5506,9241],[7,37],[19,5]],[[5594,9272],[91,-68],[15,0]],[[5727,9214],[14,1],[8,-6]],[[5749,9209],[13,-16],[9,-1]],[[5846,9259],[4,2],[4,5]],[[5854,9266],[6,15],[4,3],[9,5]],[[5988,9313],[12,-12]],[[3333,8393],[-16,-3],[-10,-9],[-5,-2],[-5,-3],[-1,-2],[-2,-7],[-2,-9],[-1,-20],[1,-10],[0,-6],[7,-10],[3,-6],[1,-2],[1,-4],[0,-4],[-1,-4],[-1,-4],[-3,0],[-2,0],[-3,2],[-18,23],[-1,4],[-2,2],[-1,4],[-1,6],[-3,6],[-2,4],[-1,1],[-2,2],[-3,1],[-2,-1],[-2,-3],[-1,-7],[-5,-48],[0,-13],[1,-9],[7,-9],[2,-3],[0,-3],[0,-5],[0,-6],[-3,-10],[-2,-5],[-1,-3],[-4,-8],[-3,-1],[-2,-2],[-26,-9],[-1,-2],[-1,-3],[1,-5],[14,-45],[1,-2],[1,-2],[0,-8],[0,-4],[0,-6],[-2,-7],[-4,-12],[-3,-5],[-2,-4],[-10,-8],[-2,-3],[-2,-3],[-1,-3],[-6,-26],[-2,-7],[-2,-4],[-2,-3],[-2,-2],[-3,-8],[-2,-4],[-1,-5],[0,-8],[-1,-23],[-1,-9],[-3,-7],[-2,-5],[-3,-4],[-5,-7],[-1,-2],[-2,-5],[-5,-20],[-3,-6],[-2,-3],[-11,-8],[-18,-6],[-2,-1],[-3,-3],[-1,-2],[-1,-5],[-5,-21],[0,-1],[-4,-4],[0,-2],[0,-3],[3,-9],[5,-14],[1,-4],[1,-6],[0,-10],[1,-6],[2,-3],[3,-5],[2,-3],[0,-4],[-2,-7],[-2,-2],[-4,-4],[-1,-3],[1,-5],[1,-4],[6,-11],[3,-7],[0,-8],[-1,-11],[-7,-51],[-1,-6],[1,-7],[1,-12],[1,-6],[1,-5],[1,-3],[4,-13],[9,-20],[2,-4],[1,-6],[2,-7],[0,-4],[0,-7],[-3,-11],[-10,-41],[-4,-9],[-9,-16],[-2,-6],[-4,-20],[-3,-11],[-1,-2],[-1,-3],[1,-5],[2,-10],[2,-4],[2,-3],[9,-7],[2,-3],[1,-2],[1,-4],[-3,-17],[-17,-28]],[[3112,7383],[-22,8],[-3,3],[-3,4],[0,4],[0,5],[0,6],[0,5],[-2,9],[-3,3],[-3,3],[-8,-1],[-3,-2],[-2,-2],[0,-3],[-3,-8],[-2,-12],[-1,-3],[-3,-2],[-1,-1],[-11,-5],[-9,-5],[-3,-5],[-8,-9],[-3,-6],[-3,-4],[-4,-4],[-4,-2],[-3,-1],[-5,2],[-10,8],[-10,5],[-3,0],[-2,-1],[-10,-11],[-32,-20],[0,-2],[-2,-3],[-1,-4],[-1,-4],[-1,-4],[1,-4],[1,-8],[0,-4],[0,-4],[-2,-6],[-2,-1],[-3,-1],[-2,0],[-11,8],[-5,0],[-3,-1],[-1,-5],[-1,-4],[0,-8],[-2,-5],[-1,-6],[-5,-7],[-3,-4],[-2,-5],[0,-5],[-2,-6],[-4,-7],[-20,-24],[-1,-4],[-1,-4],[1,-7],[0,-2],[-1,-4],[-1,-3],[-1,-3],[-2,-4],[-22,-23],[-3,-5],[-4,-10],[-3,-10],[-3,-5],[-4,-5],[-17,-18],[-1,-3],[-6,-12],[-3,-6],[-8,-11],[-3,-4],[-4,-2],[-11,-1],[-3,0],[-6,2],[-4,0],[-7,-1],[-4,-2],[-3,-3],[-7,-9],[-3,-5],[-19,-44],[-8,-15],[-10,-9],[-23,-15]],[[2666,6970],[-1,32],[-1,4],[-3,5],[-3,3],[-5,6],[-1,5],[0,5],[1,4],[0,4],[2,8],[3,7],[0,2],[5,6],[1,5],[1,6],[0,6],[-1,4],[-3,4],[-3,1],[-1,-1],[-4,-8],[-5,-4],[-13,-8],[-3,-1],[-2,0],[-3,1],[-31,21],[-5,2],[-3,1],[-2,0],[-3,-1],[-2,-1],[-13,-10],[-4,0],[-7,2],[-13,7],[-6,2],[-4,0],[-12,-12],[-43,-69],[-3,-4],[-7,-6],[-54,-6],[-8,-3],[-4,-3],[-7,-10],[-2,-4],[-6,-4],[-3,0],[-2,2],[-3,6],[-2,3],[-3,0],[-2,-2],[-10,-14],[-3,-3],[-3,-2],[-4,0],[-1,1],[-3,4],[-3,2],[-12,5],[-10,6],[-11,6],[-6,0],[-3,-1],[-2,-3],[-1,-4],[-2,-16],[-1,-10],[1,-3],[1,-3],[0,-4],[2,-2],[6,-7],[1,-3],[1,-2],[0,-5],[-4,-9],[0,-4],[-2,-4],[-3,-5],[-13,-12],[-2,-4],[-1,-3],[0,-4],[0,-5],[1,-8],[0,-4],[-1,-10],[0,-5],[-1,-4],[-2,-1],[-3,5],[-3,3],[-6,2],[-3,-1],[-2,-4],[0,-4],[-1,-16]],[[2264,6822],[-34,29],[-43,58],[-5,8],[-3,27],[0,4],[-1,9],[1,18],[3,26],[0,6],[-1,5],[-10,15],[-1,7],[0,5],[0,3],[14,19],[3,6],[1,4],[1,3],[1,6],[0,8],[-3,14],[-1,8],[-2,4],[-2,3],[-2,1],[-5,3],[-4,0],[-2,0],[-5,-2],[-13,-11],[-4,-2],[-6,-1],[-9,1],[-7,5],[-2,11]],[[2123,7122],[27,38],[10,17],[5,12],[4,4],[4,3],[4,1],[7,4],[2,7],[1,5],[0,5],[-1,3],[0,3],[-3,1],[-8,3],[-3,2],[-2,2],[-11,31],[-4,8],[-7,10],[-8,8],[-2,3],[-1,2],[-2,5],[1,4],[2,1],[3,0],[9,-1],[2,0],[3,1],[1,2],[2,2],[2,2],[3,8],[7,20],[1,2],[-1,3],[-1,2],[-4,5],[-13,16],[-2,3],[-1,5],[0,4],[1,5],[1,3],[4,6],[2,2],[3,2],[1,0],[22,-8],[36,-6],[3,1],[4,2],[5,7],[2,5],[2,5],[0,5],[0,4],[0,5],[-1,4],[-1,3],[-1,7],[-6,16],[0,5],[0,6],[2,4],[2,1],[34,-6],[3,1],[3,1],[1,4],[0,3],[-2,3],[-10,9],[-2,3],[-1,5],[1,7],[4,7],[1,6],[1,4],[-3,10],[-1,5],[1,5],[2,1],[2,-1],[6,-10],[6,-6],[10,-5],[12,-4],[3,0],[5,2],[14,13],[16,9],[18,14],[9,11],[10,6],[25,1],[6,-1],[2,-2],[7,-10],[9,-17],[1,-2],[1,-3],[-1,-4],[0,-3],[1,-3],[2,-2],[19,-5],[2,0],[3,-3],[3,-4],[10,-15],[3,-5],[4,-2],[2,0],[5,0],[3,2],[2,4],[4,35],[1,5],[1,3],[2,4],[3,5],[4,9],[0,3],[0,4],[0,9],[0,3],[0,5],[-2,20],[2,42],[0,3],[0,4],[0,4],[3,8],[3,4],[2,2],[2,2],[21,24],[3,3],[3,2],[3,0],[2,0],[9,-4],[5,1],[2,2],[2,2],[3,6],[0,4],[0,2],[-1,2],[-4,3],[-11,8],[-1,2],[-1,4],[2,8],[5,12],[12,16],[2,5],[1,3],[1,4],[0,5],[0,4],[-1,4],[-1,3],[-3,3],[-1,4],[-2,3],[-8,8],[-1,3],[-2,3],[0,5],[2,8],[2,4],[3,3],[33,7],[4,1],[3,3],[7,7],[1,5],[1,5],[-1,8],[0,12],[0,4],[-1,3],[-2,4],[-2,2],[0,3],[-1,4],[-1,8],[-1,4],[-1,3],[-7,18],[-8,13],[-4,5],[-2,2],[-2,0],[-5,0],[-4,-1],[-2,-1],[-5,-6],[-2,-1],[-2,-1],[-12,8],[-3,2],[-1,2],[0,6],[2,30],[1,6],[2,2],[33,10],[4,4],[5,8],[4,11],[2,6],[0,7],[1,11],[0,5],[-1,4],[0,3],[-2,4],[-24,34],[-35,24],[-2,3],[-1,2],[-3,6],[-9,16],[-13,16],[-2,3],[-2,3],[-1,3],[0,3],[0,9],[-1,3],[-1,3],[-1,2],[-2,1],[-9,7],[-4,3],[-2,3],[0,3],[-3,6],[-1,4],[1,8],[2,11],[4,24],[0,9],[-1,3],[-2,-2],[-6,-8],[-3,-3],[-2,-1],[-3,0],[-6,0],[-3,0],[-3,2],[-1,2],[-2,2],[-1,4],[-1,3],[-1,4],[-1,1],[-3,1],[-1,-1],[-3,-2],[-2,-4],[-2,-10],[-2,-3],[-3,-5],[-2,-2],[-2,-1],[-3,-1],[-2,1],[-10,6],[-6,1],[-6,-1],[-6,-2],[-4,-2],[-7,-5],[-1,-3],[-1,-3],[-1,-4],[-3,-12],[-1,-3],[-2,-3],[-2,0],[-2,0],[-3,0],[-2,3],[-1,2],[-1,3],[-3,6],[0,3],[-1,4],[0,5],[3,39],[0,5],[-1,12],[0,9],[0,14],[3,18],[0,9],[0,4],[0,5],[-1,4],[-5,29],[-1,8],[0,5],[0,17],[1,6],[2,5],[2,6],[3,5],[9,11],[2,5],[4,11],[1,7],[0,5],[0,3],[-2,3],[-2,2],[-2,2],[-8,4],[-2,2],[-2,2],[0,5],[-1,3],[-1,4],[-1,2],[-2,0],[-5,-2],[-3,0],[-5,1],[-3,2],[-2,2],[-1,3],[-1,3],[-1,4],[0,4],[0,14],[-2,21],[1,18],[2,22],[1,10],[1,7],[5,11],[22,46],[17,20],[3,5],[6,13],[4,14],[2,5],[1,6],[0,3],[-1,4],[-1,4],[-1,3],[-1,7],[-1,6],[-1,7],[0,8],[0,5],[2,4],[0,3],[3,3],[2,1],[6,6],[2,3],[-1,1],[-2,1],[-43,5],[-6,5],[-2,18]],[[2347,8849],[63,-1],[40,12],[99,-28],[32,2]],[[2581,8834],[15,-4],[30,-38],[13,-9]],[[2639,8783],[108,-7],[6,-4]],[[2753,8745],[5,-11],[7,-5],[102,-5]],[[2867,8724],[88,-56],[31,-6],[47,22],[41,-1]],[[3074,8683],[20,-6],[11,-10],[4,-17]],[[3107,8599],[4,-22],[7,-9]],[[3141,8505],[6,-8],[10,1]],[[3176,8507],[27,-7],[11,1],[10,7],[12,20]],[[2735,5230],[11,19],[8,-5],[23,9],[8,-8],[13,-17],[3,-8],[8,-30],[6,-14],[6,-9],[8,-5],[11,-2],[7,8],[-7,36],[5,16],[5,1],[3,-5],[3,-7],[1,-4],[5,-2],[15,2],[10,4],[-1,11],[-8,12],[-8,8],[-18,8],[-8,7],[-1,12],[9,12],[10,-4],[18,-20],[7,-4],[6,-1],[6,6],[3,17],[-2,7],[-9,15],[-2,8],[3,10],[5,0],[5,-6],[3,-11],[2,-18],[4,-12],[7,1],[6,17],[1,12],[-3,16],[2,8],[4,7],[5,2],[6,-4],[5,-5],[-4,-21],[3,-21],[6,-16],[9,-7],[12,3],[6,10],[5,11],[7,13],[9,7],[10,-1],[18,-6],[6,-11],[3,-4],[2,2],[1,4],[4,1],[5,0],[10,-5],[20,-4],[4,2],[3,5],[6,14],[2,4],[16,0],[5,-3],[10,-10],[6,-3],[5,1],[5,2],[3,4],[3,9],[1,14],[-4,4],[-4,1],[-4,5],[-1,14],[9,3],[19,-6],[5,-5],[3,-6],[4,-5],[7,1],[4,7],[7,18],[5,5]],[[3195,5350],[19,-9],[13,-20],[9,-26],[7,-33],[10,-68],[4,-11]],[[3257,5183],[-11,-23],[-27,-36],[-8,-6]],[[3191,5141],[-8,3],[-18,-13]],[[3140,5083],[-3,-5],[-17,-14]],[[3045,5103],[-5,2],[-5,-2]],[[3036,5079],[1,-4],[0,-6],[1,-5]],[[3022,5065],[-4,1],[-4,-8],[-18,-4],[-16,15],[-15,20]],[[2965,5089],[-16,10],[-5,-2],[0,-7],[-2,-8]],[[2942,5082],[-4,-7],[-4,1],[-7,5]],[[2927,5081],[-3,0],[-5,-11]],[[2920,5060],[3,-13],[2,-20]],[[2909,4985],[-9,5],[-6,12]],[[2883,5026],[-9,5],[-3,-8]],[[2849,4981],[-4,-16],[0,-9]],[[2845,4956],[-14,-11],[-58,-20],[-8,-3],[-23,-1],[-7,-4],[-15,-11],[-9,-4]],[[2711,4902],[-8,2],[-4,2]],[[2699,4906],[-4,-35],[1,-24]],[[2684,4780],[-7,-22],[-6,-11]],[[2671,4747],[-13,-16],[-5,-11]],[[2643,4684],[-5,-10],[-21,-17],[-11,0]],[[2606,4657],[-35,0],[-29,-14]],[[2542,4643],[-22,3],[-8,-2]],[[2512,4644],[-15,-10],[-24,-4]],[[2150,4436],[-20,-28],[0,-1]],[[2060,4376],[0,1],[0,13],[0,5],[1,24],[1,3],[22,76],[2,8],[0,4],[0,5],[-1,4],[0,4],[-1,3],[-4,13],[-1,8],[-1,4],[0,22],[0,4],[-1,4],[0,3],[-1,4],[-8,12],[-1,4],[0,3],[-5,17],[-1,8],[0,18],[-2,19],[0,5],[1,3],[1,10],[1,8],[21,61],[3,8],[1,19],[0,4],[3,5],[3,6],[8,9],[5,2],[8,5],[2,1],[3,2],[23,43],[5,6],[4,4],[3,0],[2,2],[2,2],[1,4],[-1,5],[-2,6],[-1,4],[0,4],[0,4],[0,9],[0,4],[0,4],[1,4],[2,5],[3,5],[7,8],[7,6],[6,3],[3,5],[45,88],[35,43],[18,12],[18,9],[22,3],[9,0],[6,-2],[10,-6],[4,-4],[4,-3],[2,-1],[3,0],[3,2],[2,3],[3,6],[1,9],[3,28],[2,94],[0,12],[-12,51],[-5,31],[-1,12],[0,5],[1,5],[2,8],[2,5],[5,9],[5,8],[17,21]],[[2388,5402],[6,-7],[11,-5],[20,-3],[4,-6],[4,-25],[5,-6],[5,3],[3,8],[0,9],[4,10],[12,13],[7,-9],[6,-17],[7,-9],[10,-19],[2,-7],[0,-9],[0,-4],[23,-13],[7,-1],[8,2],[7,8],[6,21],[6,8],[12,-9],[4,0],[3,6],[1,17],[3,6],[7,5],[5,-5],[1,-15],[-1,-20],[0,6],[-4,-34],[0,-12],[6,-16],[7,-11],[9,-6],[8,0],[6,14],[-7,17],[-4,11],[-1,12],[0,15],[0,5],[14,-1],[6,-14],[-1,-31],[2,-29],[15,-15],[27,9],[8,-1],[6,-3],[12,-11],[15,-10],[13,-1],[12,7]],[[1957,6267],[37,-88],[8,-21],[8,-35],[2,-7],[3,-11],[0,-5],[0,-3],[-3,-7],[-1,-3],[-1,-5],[0,-4],[1,-4],[1,-3],[1,-4],[2,-8],[1,-19],[1,-13],[1,-4],[1,-3],[2,-4],[9,-6],[1,0],[2,-4],[2,-8],[1,-10],[2,-8],[0,-4],[0,-4],[0,-4],[0,-5],[-1,-5],[-1,-3],[0,-3],[-2,-3],[-7,-9],[-2,-3],[-1,-2],[0,-5],[0,-3],[0,-3],[3,-15],[1,-3],[0,-5],[-1,-5],[-1,-8],[0,-5],[0,-5],[1,-4],[1,-3],[1,-3],[1,-3],[3,-2],[4,-1],[3,2],[1,2],[3,2],[3,5],[3,1],[1,1],[3,-1],[9,-6],[14,-4],[3,-3],[2,-4],[2,-7],[1,-5],[1,-6],[0,-9],[0,-4],[1,-4],[0,-3],[2,-3],[0,-4],[0,-3],[0,-4],[-2,-3],[-1,-3],[-2,-2],[-2,-2],[-2,0],[-3,0],[-5,3],[-13,10],[-6,2],[-2,0],[-3,-1],[-2,-1],[-1,-3],[-1,-4],[-1,-4],[1,-3],[0,-4],[2,-3],[0,-1],[5,-6],[15,-9],[4,-5],[2,-7],[1,-6],[1,-7],[2,-9],[6,-17],[7,-8],[9,-1],[19,6],[7,-3],[25,-22],[4,-7],[0,-10],[-3,-18],[0,-11],[3,-11],[11,-26],[6,-8],[4,6],[2,14],[0,12],[2,8],[3,8],[4,8],[10,12],[6,3],[6,-1],[0,-8],[-5,-12],[-4,-27],[-2,-29],[1,-19],[12,19],[11,-1],[25,-18],[-10,-14],[-26,-12],[-5,-17],[6,-28],[12,6],[23,36],[8,2],[3,-4],[2,1],[1,16],[-1,13],[-2,9],[3,6],[9,1],[6,-2],[5,-5],[6,-3],[8,3],[1,5],[0,7],[0,7],[4,3],[2,-1],[8,-6],[4,-1],[-4,-15],[-3,-7],[-3,-7],[5,-11],[10,-12],[11,-9],[8,-4],[12,-3],[8,-6],[14,-20],[13,-11],[2,-4],[5,-16],[0,-7],[-3,-2],[-2,-8],[0,-9],[-1,-3],[2,-1],[4,-9],[4,-12],[-2,-8],[-3,-6],[-1,-6]],[[2036,4381],[-11,27],[-15,43],[-6,12]],[[1959,4495],[-16,15],[-7,15],[-3,13]],[[1893,4614],[1,13],[5,37],[2,12],[24,55],[1,5],[0,5],[-16,34],[-32,48],[-3,8],[-1,5],[-3,9],[-1,7],[0,6],[0,4],[1,4],[1,4],[2,7],[2,6],[4,8],[0,8],[0,4],[0,3],[-10,24],[-9,26],[-1,4],[-2,4],[-30,43],[-10,11],[-4,6],[-4,9],[-3,3],[-4,2],[-11,1],[-2,1],[-2,2],[0,6],[-1,8],[-1,13],[-2,6],[-2,4],[-6,7],[-3,5],[-2,1],[-1,1],[-2,-1],[-2,-2],[-2,-11],[-1,-4],[-3,-5],[-3,-6],[-3,-4],[-3,-2],[-4,-2],[-11,-3],[-12,0],[-14,5],[-3,2],[-4,4],[-5,9],[-3,7],[-2,5],[0,3],[-4,32],[-1,13],[0,10],[4,26],[1,4],[0,4],[0,5],[0,4],[0,8],[-2,7],[0,4],[-1,7],[1,7],[1,9],[0,6],[0,7],[-2,4],[-2,3],[-3,0],[-2,0],[-2,-2],[-23,-23],[-9,-6],[-21,-5],[-9,-10],[-8,-13],[-1,-2],[-5,-4],[-4,-2],[-3,0],[-4,1],[-5,3],[-2,3],[-2,4],[-1,4],[0,4],[1,5],[1,7],[1,5],[1,3],[1,8],[0,6],[-1,7],[-4,11],[-2,6],[-2,4],[-1,3],[-4,4],[-2,2],[-2,2],[-6,0],[-4,3],[-4,3],[-26,33],[-3,6],[-1,4],[-1,4],[0,4],[0,5],[1,10],[0,5],[-1,9],[-2,5],[-2,2],[-5,3],[-6,0],[-6,0],[-5,-1],[-8,-4],[-3,0],[-4,2],[-9,10],[-28,53],[-19,13],[-18,8]],[[1411,5450],[19,117],[0,9],[-2,12],[0,3],[-1,4],[-3,6],[-4,10],[-2,6],[0,5],[0,4],[2,7],[11,78],[2,9],[8,8],[10,14],[2,2],[8,11],[3,9],[4,13],[12,56],[0,3],[3,4],[2,5],[8,10],[8,6],[5,4],[8,2],[46,-11],[24,2],[3,3],[4,3],[10,13],[4,2],[2,1],[6,-1],[17,-11],[3,1],[6,4],[21,23],[4,2],[3,1],[5,-1],[21,-10],[3,-1],[5,1],[23,14],[5,2],[11,-2],[10,5],[5,2],[20,18],[18,10],[5,2],[3,0],[3,0],[3,-1],[1,-2],[4,-1],[5,1],[8,5],[5,5],[3,5],[1,3],[1,4],[0,4],[0,4],[-1,3],[-8,17],[-4,8],[-5,-4],[-10,1],[-10,5],[-3,5],[-2,25],[0,4],[1,5],[2,4],[2,6],[1,5],[0,4],[-1,4],[0,2],[-2,3],[-4,3],[-3,1],[-2,0],[-3,-2],[-9,-13],[-3,-2],[-1,-2],[-3,0],[-2,0],[-2,1],[-2,4],[-1,2],[-1,4],[0,6],[1,6],[1,4],[2,3],[9,5],[5,1],[11,1],[6,2],[6,4],[2,5],[5,10],[16,23],[1,5],[1,4],[0,4],[-2,2],[0,3],[-16,14],[-1,2],[1,7],[2,10],[14,34],[3,8],[1,5],[0,4],[0,4],[-1,4],[-2,7],[-3,9],[-1,3],[1,6],[2,7],[4,12],[2,6],[3,3],[2,2],[3,0],[17,-6],[5,0],[35,15],[6,-1],[5,-2],[5,-3],[4,-4],[10,-13],[3,-4],[1,-2],[2,-1],[2,0],[5,1],[2,0],[2,-2],[4,-3],[2,-2],[3,-1],[7,1]],[[3112,7383],[7,-5],[2,-4],[7,-13],[7,-6],[2,-5],[3,-10],[1,-6],[3,-5],[4,-3],[3,-3],[10,-3],[2,-2],[2,-2],[-1,-3],[-1,-3],[-1,-2],[-11,-9],[-4,-4],[-3,-5],[-2,-3],[-1,-3],[-1,-3],[-1,-4],[-9,-49],[-1,-4],[0,-5],[2,-4],[1,-3],[4,-4],[4,-2],[13,-4],[4,-3],[2,-3],[1,-5],[2,-11],[2,-6],[3,-4],[5,-7],[19,-17],[16,-17],[4,-4],[1,-2],[1,-4],[-1,-4],[-3,-6],[0,-3],[0,-4],[2,-2],[3,-1],[5,2],[2,-1],[3,-3],[2,-8],[3,-6],[4,-4],[9,-3],[3,-2],[1,-2],[2,-4],[1,-4],[1,-14],[0,-4],[3,-2],[2,-1],[21,-4],[3,1],[2,2],[1,3],[1,4],[3,11],[1,3],[2,3],[2,2],[1,8],[2,2],[2,3],[2,0],[4,0],[2,-3],[2,-5],[1,-10],[0,-6],[-2,-25],[0,-5],[1,-4],[1,-5],[4,-7],[7,-12],[5,-12],[1,-4],[1,-4],[0,-9],[-1,-4],[-2,-3],[-5,-4],[-1,-1],[-1,-4],[0,-4],[1,-4],[6,-8],[1,-2],[1,-4],[-1,-5],[-6,-11],[-2,-8],[-2,-6],[-1,-4],[0,-3],[0,-3],[0,-4],[2,-3],[3,-5],[10,-6],[1,-1],[2,-4],[2,-5],[0,-9],[0,-13],[-1,-4],[-1,-4],[-2,-2],[-7,-3],[-3,-1],[-1,-2],[-2,-3],[-3,-6],[-1,-2],[-3,-2],[-1,-1],[-3,-1],[-3,0],[-23,5],[-2,-1],[0,-3],[1,-6],[14,-36],[1,-7],[1,-3],[0,-4],[-1,-3],[0,-2],[-3,-1],[-8,-1],[-3,-1],[-2,-3],[0,-4],[-1,-24],[1,-4],[3,-4],[18,-10],[2,-2],[2,-4],[1,-5],[0,-3],[0,-4],[0,-5],[-1,-3],[0,-3],[1,-5],[2,-6],[13,-23],[5,-12],[1,-8],[1,-8],[1,-3],[1,-2],[2,-4],[2,-5],[96,-42]],[[3426,6552],[-8,-15],[-6,-3],[-9,0],[-2,-2],[0,-2],[1,-2],[9,-9],[1,-3],[0,-4],[-3,-7],[-3,-7],[-5,-5],[-1,-2],[-3,-1],[-2,0],[-12,4],[-3,0],[-1,-3],[-2,-2],[-4,-14],[-1,-4],[0,-4],[1,-6],[1,-4],[2,-2],[12,-9],[4,-4],[3,-4],[4,-5],[2,-6],[0,-4],[1,-4],[0,-3],[-1,-7],[-1,-8],[-15,-42],[-4,-9],[-1,-3],[0,-4],[0,-4],[2,-3],[5,-8],[2,-3],[0,-5],[-1,-6],[-5,-9],[-3,-3],[-3,0],[-4,3],[-3,1],[-2,0],[-3,-1],[-1,-1],[-2,-5],[-2,-8],[-1,-15],[2,-7],[1,-6],[13,-14],[2,-3],[1,-2],[0,-4],[-3,-3],[-6,-6],[-1,-3],[-1,-4],[-1,-5],[1,-7],[2,-4],[1,-2],[3,-2],[2,-2],[4,-1],[28,0],[2,-1],[2,-4],[0,-2],[2,-7],[3,-14],[0,-4],[0,-3],[-3,-3],[-14,-8],[-1,-1],[-1,-3],[-1,-4],[1,-7],[2,-4],[2,-6],[0,-4],[1,-12],[1,-4],[1,-3],[2,-2],[2,-1],[8,-4],[1,-1],[2,-3],[1,-3],[0,-5],[0,-5],[-1,-6],[0,-4],[0,-4],[2,-8],[1,-2],[6,-11],[2,-6],[1,-4],[0,-4],[-2,-5],[-3,-8],[-3,-6],[-2,-6],[0,-8],[0,-5],[0,-4],[1,-4],[2,-3],[5,-11],[1,-3],[2,-3],[0,-5],[0,-3],[0,-8],[0,-9],[0,-4],[1,-4],[1,-7],[2,-7],[1,-4],[-1,-4],[-2,-4],[-5,-4],[-3,-1],[-15,-2],[-11,-7],[-4,-5],[-9,-17],[-2,-4],[-3,-1],[-2,-1],[-5,2],[-6,3],[-4,4],[-9,11],[-5,3],[-9,2],[-3,1],[-4,4],[-7,9],[-7,5],[-12,3],[-3,-2],[-4,-6],[-9,-28],[-1,-2],[-2,-2],[-3,0],[-20,4],[-12,0],[-2,-3],[-3,-6],[-3,-13],[-2,-7],[-2,-6],[0,-5],[0,-8],[-1,-5],[-3,-5],[-8,-5],[-2,-3],[0,-2],[-1,-5],[-3,-11],[-1,-5],[0,-3],[-2,-3],[-2,-2],[-4,-4],[-4,-7],[-2,-3],[-1,-1],[-2,-3],[-2,-5],[-2,-14],[-2,-4],[-1,-4],[0,-6],[1,-10],[2,-5],[1,-4],[3,-6],[1,-2],[1,-5],[-1,-4],[-3,-5],[-2,-3],[-5,-4],[-1,-3],[-1,-4],[0,-6],[2,-6],[0,-5],[5,-13],[3,-17],[3,-15],[0,-8],[1,-57],[3,-15],[3,-14],[2,-7],[1,-2],[1,-4],[1,-2],[0,-5],[-2,-4],[-4,-1],[-5,1],[-1,-1],[-2,-4],[1,-10],[1,-11],[0,-5],[1,-5],[-1,-25],[-3,-26],[-11,-58]],[[2735,5230],[-7,25],[-4,14],[-2,9],[1,4],[3,2],[1,0],[3,2],[1,4],[-1,3],[-7,6],[-4,7],[-3,2],[-9,8],[-2,3],[-5,5],[0,6],[0,4],[0,3],[5,10],[0,2],[0,3],[0,6],[0,6],[-1,1],[-2,-1],[-2,-5],[-3,-1],[-2,0],[-5,5],[-1,4],[0,4],[1,5],[0,5],[-1,3],[-3,2],[-2,0],[-4,1],[-4,4],[-6,7],[-1,5],[-1,6],[0,5],[1,4],[2,12],[0,4],[1,4],[-1,22],[0,3],[1,4],[2,8],[0,6],[0,5],[-2,4],[-6,10],[-2,5],[0,4],[1,3],[3,6],[1,4],[0,6],[1,4],[2,1],[6,1],[1,2],[2,4],[-1,3],[-1,2],[-10,6],[-2,3],[-2,2],[-7,15],[0,6],[0,4],[1,34],[2,14],[1,6],[-1,3],[-3,2],[-1,0],[-5,-3],[-4,1],[0,3],[0,3],[0,4],[1,4],[1,3],[1,4],[1,6],[0,10],[-1,5],[-1,5],[-4,9],[0,4],[1,3],[4,4],[2,2],[0,6],[0,6],[-3,8],[0,5],[2,2],[6,3],[2,6],[1,2],[-2,6],[-5,14],[-2,11],[-1,6],[0,6],[1,4],[1,2],[3,6],[5,7],[2,4],[1,5],[1,7],[0,5],[0,5],[-1,3],[-6,24],[-2,6],[0,5],[1,9],[1,4],[2,12],[1,5],[-1,5],[-1,3],[-5,9],[-1,4],[-3,7],[0,6],[0,6],[3,17],[0,11],[0,7],[0,6],[1,4],[2,3],[2,3],[1,1],[5,4],[6,4],[2,3],[1,5],[0,11],[0,6],[1,5],[2,9],[2,8],[0,5],[-1,3],[-5,12],[-2,3],[-1,5],[-2,8],[0,5],[0,6],[2,13],[0,5],[0,6],[-4,20],[0,10],[0,12],[-1,6],[0,4],[-2,2],[-12,13],[-2,4],[-1,5],[-4,29],[-5,19],[-8,26],[-3,12],[0,7],[0,5],[0,3],[0,3],[7,24],[1,2],[1,2],[2,3],[1,2],[13,10],[1,2],[2,4],[1,3],[2,13],[1,28],[2,8],[1,4],[1,3],[1,3],[1,3],[6,7],[2,3],[1,5],[2,10],[0,6],[-1,5],[-1,2],[-1,3],[-14,15],[-1,3],[-2,5],[-3,7],[0,6],[0,5],[0,5],[3,6],[1,3],[1,3],[6,6],[1,7],[1,10],[1,21],[0,10],[0,7],[-1,3],[-2,7],[-1,3],[-2,2],[-11,14],[-2,3],[-1,5],[-2,9],[-1,5],[1,5],[1,5],[1,7],[1,12],[0,7],[0,5],[-1,4],[-2,3],[-1,3],[-1,2],[-7,6],[-3,4],[-2,8],[-1,5],[1,4],[2,14],[2,7],[0,5],[-1,4],[-2,11],[-4,17],[-1,5],[1,3],[1,3],[1,3],[2,3],[1,2],[4,4],[27,13],[1,3],[2,5],[1,10],[-2,4],[-2,2],[-6,1],[-4,1],[-2,4],[-3,4],[-1,4],[1,4],[2,1],[8,7],[3,3],[1,3],[1,4],[2,13],[-1,4],[-1,4],[-6,6],[-2,3],[-2,3],[-1,5],[0,4],[1,2],[3,2],[17,2],[5,2],[2,3],[2,3],[1,9],[1,6],[-1,4],[-1,3],[-1,2],[-4,5],[-4,4],[-16,7],[-3,2],[-1,3],[0,1],[2,3],[10,7]],[[2264,6822],[0,-8],[0,-5],[1,-2],[1,-3],[3,-5],[1,-3],[10,-10],[2,-2],[2,-3],[1,-7],[1,-3],[6,-11],[1,-3],[1,-3],[1,-4],[0,-4],[-1,-4],[-2,-4],[-5,-1],[-7,-1],[-2,-2],[-3,-4],[-1,-9],[-1,-5],[1,-4],[1,-7],[1,-3],[1,-3],[0,-5],[0,-4],[-1,-3],[-1,-4],[-1,-3],[-3,-4],[-3,-4],[-9,-6],[-4,-2],[-7,-1],[-3,-1],[-8,-9],[-4,-2],[-10,-3],[-16,-14],[-3,-2],[-34,-9],[-5,-4],[-5,-1],[-21,-4],[-3,-2],[-2,-4],[-2,-7],[-3,-19],[0,-4],[0,-4],[0,-4],[4,-10],[7,-17],[2,-4],[1,-3],[0,-4],[0,-4],[0,-5],[-1,-3],[-2,-4],[-3,-4],[-10,-10],[-3,-1],[-5,-1],[-5,1],[-2,0],[-2,3],[-2,3],[0,3],[-3,0],[-2,-3],[-3,-4],[-10,-30],[-2,-7],[-1,-4],[-3,-11],[-12,-36],[-3,-4],[-80,-68],[-5,-1],[-4,0],[-2,0],[-7,1],[-3,-3],[-1,-5],[-3,-35],[-1,-13],[-6,-20]],[[1411,5450],[-12,7],[-4,1],[-25,-4],[-9,0],[-14,5],[-5,2],[-3,4],[-2,2],[-1,4],[-1,2],[0,5],[0,5],[0,5],[-2,6],[-4,6],[-4,1],[-1,0],[-2,-2],[-8,-16],[-2,-2],[-3,-2],[-3,-1],[-1,2],[-1,2],[0,1],[0,4],[0,4],[-1,12],[0,3],[-2,5],[-2,1],[-1,-1],[-5,-6],[-4,-2],[-6,-1],[-22,3],[-4,2],[-5,4],[-3,5],[-2,5],[-10,24],[-11,42],[-3,9],[-5,7],[-3,3],[-4,1],[-12,-3],[-20,-9],[-4,-4],[-3,-1],[-4,0],[-7,0],[-4,2],[-3,2],[-1,2],[-3,6],[-1,4],[0,4],[-1,5],[-4,6],[-16,21],[-11,21],[-3,6],[-2,6],[0,12],[-1,5],[1,8],[0,4],[1,9],[4,13],[0,9],[-9,15],[-8,8]],[[1099,5760],[-8,20],[-1,10]],[[1090,5790],[1,15],[4,20]],[[1089,5845],[-21,17],[-8,10],[-14,27]],[[1026,5924],[-7,-12],[-1,-2]],[[1018,5910],[-4,6],[3,13]],[[1017,5929],[7,23],[7,37]],[[1031,5989],[8,32],[2,16]],[[1041,6037],[-7,97],[-1,17],[-4,9],[-10,15],[-6,15],[0,5],[-2,12],[-3,46]],[[1008,6253],[-4,16],[-8,38]],[[996,6307],[12,41],[35,70]],[[1043,6418],[7,34],[4,9]],[[1119,6575],[8,5],[5,6]],[[1132,6586],[1,7],[5,21],[2,10],[19,29]],[[1228,6792],[18,20],[13,32]],[[1412,7066],[1,0],[13,16]],[[1480,7200],[6,8],[8,6],[17,8],[83,2],[25,14]],[[1619,7238],[10,36],[2,11]],[[1631,7285],[1,13],[-1,21]],[[1633,7332],[29,23],[10,13],[5,13]],[[1677,7381],[0,2],[-1,3],[-4,14]],[[1678,7478],[0,1]],[[1678,7479],[4,7],[5,5],[6,2],[5,0],[6,-4],[3,-20],[5,-5],[6,-3],[4,-9],[3,-9],[4,-9],[6,-4],[8,-3],[5,-7],[0,8],[8,2],[4,4],[6,2],[11,2],[3,2],[1,2],[2,3],[3,6],[1,2],[2,3],[2,1],[1,0],[3,0],[4,-4],[5,-6],[8,-13],[3,-6],[1,-6],[-1,-4],[0,-3],[2,-4],[13,-19],[3,-2],[2,-1],[5,0],[9,5],[2,0],[5,-2],[3,-1],[1,-2],[15,-23],[2,-7],[1,-4],[0,-3],[0,-4],[0,-4],[-1,-4],[-2,-3],[-1,-3],[-4,-5],[-4,-3],[-22,-9],[-3,-2],[-2,-1],[-1,-3],[-1,-3],[1,-4],[0,-3],[2,-3],[19,-22],[3,-5],[1,-3],[0,-4],[0,-4],[-1,-7],[0,-5],[0,-3],[2,-3],[3,-2],[7,1],[3,1],[3,3],[1,3],[1,4],[0,4],[0,8],[0,5],[1,3],[2,2],[2,0],[3,-2],[3,-5],[2,-4],[1,-7],[3,-3],[3,-1],[15,-2],[4,0],[1,-3],[2,-4],[1,-5],[0,-3],[0,-5],[3,-5],[19,-17],[6,-6],[2,-6],[-1,-9],[1,-4],[1,-3],[2,-3],[1,-2],[5,-1],[23,-4],[7,1],[5,2],[4,4],[4,3],[5,2],[10,3],[29,-7],[6,2],[4,3],[-1,12],[0,4],[1,3],[5,-2],[6,-4],[13,-14],[10,-7],[13,5],[3,0],[2,-1],[2,-2],[3,-3],[2,-3],[2,-3],[1,-5],[1,-12],[-1,-29]],[[1818,4629],[-11,-8],[-18,-25]],[[1735,4571],[-10,1],[-27,16]],[[1697,4587],[-9,2],[-16,25]],[[1672,4614],[-10,7],[-22,10],[-8,9],[-15,0]],[[1570,4611],[-10,0],[-2,16],[-25,35],[-7,5],[-33,-3],[-11,3]],[[1433,4682],[-9,4],[-16,-4],[-6,-3]],[[1395,4666],[-3,-6],[-2,-5]],[[1347,4673],[-1,1],[-1,0]],[[1345,4674],[-1,-1]],[[1337,4670],[-3,1],[-4,3],[-11,18],[-21,29],[-20,35]],[[1209,4756],[-11,-49],[-6,-19]],[[1172,4664],[-8,-2],[-7,4]],[[1150,4673],[-7,7],[-9,6]],[[1134,4686],[-7,-1],[-4,-12]],[[1127,4651],[-4,-14],[-8,-9]],[[1115,4628],[-9,-5],[-17,22]],[[1085,4658],[8,16],[1,16]],[[1094,4690],[2,10],[2,11]],[[1098,4711],[-3,19],[-4,16],[-7,12],[-14,19]],[[1029,4793],[-9,-5],[-33,0],[-6,-5],[-2,1]],[[956,4869],[-35,70],[-1,0],[-2,1]],[[918,4940],[-3,0],[-8,-6],[-8,-2],[-7,2],[-9,6]],[[883,4940],[-2,0],[-2,0]],[[879,4940],[-1,-1],[-5,-5],[-3,-1]],[[867,4934],[-4,5],[-22,54]],[[836,5014],[0,15],[1,12]],[[817,5077],[7,32],[-17,13]],[[807,5122],[-16,4],[-15,-10]],[[776,5116],[-4,-7],[-1,0],[-1,-1]],[[762,5286],[7,17],[31,38],[2,7],[5,17],[4,8]],[[829,5385],[6,6],[7,14],[5,21],[4,22]],[[850,5471],[2,14],[3,7]],[[868,5525],[-1,37],[-1,8]],[[866,5570],[0,9],[3,12]],[[870,5593],[3,8],[12,14]],[[885,5615],[4,9],[1,7]],[[890,5645],[0,5],[6,19]],[[906,5714],[8,9],[18,4]],[[940,5737],[0,17],[1,25],[4,25],[4,17]],[[958,5835],[9,-4],[18,-29]],[[1007,5788],[10,1],[17,-1],[10,5]],[[1062,5767],[5,-2],[8,-7],[11,-14]],[[1086,5744],[10,-7],[5,17],[-1,4]],[[1678,7479],[-11,40],[-5,23],[4,24],[-13,4],[-12,12],[-7,16],[6,19]],[[1627,7626],[-12,7],[-6,14]],[[1614,7686],[11,11],[12,3]],[[1637,7700],[13,-11],[9,7]],[[1674,7696],[14,4],[6,19]],[[1609,7836],[-1,10],[-1,8]],[[1596,7871],[-6,4],[-3,4]],[[1589,7894],[-5,44],[-5,15]],[[1562,8011],[7,6],[-5,12]],[[1542,8062],[-24,22],[-10,18]],[[1508,8102],[-26,80],[-7,8],[-10,0]],[[1458,8232],[6,17],[8,11],[8,6],[-2,14]],[[1478,8280],[1,11],[3,7]],[[1483,8315],[-18,40],[-1,6]],[[1471,8382],[-6,7],[-9,4]],[[1456,8393],[-7,8],[-4,14]],[[1445,8415],[-1,7],[5,-4],[4,2]],[[1453,8420],[2,16],[-1,11]],[[1439,8515],[5,14],[5,7]],[[1455,8541],[46,17],[10,-1]],[[1574,8531],[13,-22],[13,-18]],[[1619,8495],[69,89],[53,51],[14,27],[11,69],[6,21],[18,35],[10,16],[9,5]],[[1809,8808],[117,12],[28,-9]],[[2257,8852],[90,-3]],[[5381,7061],[4,0],[5,0],[3,-1],[1,-4],[4,-7],[2,-11],[6,-12],[3,-3],[0,-4],[2,-4],[1,-8],[2,-5],[3,-6],[3,-2],[10,-3],[5,-3],[1,-1],[1,-2],[8,-18],[4,-2],[2,0],[5,3],[3,4],[3,4],[3,3],[1,1],[2,0],[3,-1],[3,-4],[1,-4],[1,-6],[0,-12],[-1,-5],[-2,-4],[-16,-8],[-1,-2],[0,-7],[10,-48],[1,-5],[4,-4],[3,-2],[11,-6],[2,-1],[3,0],[7,3],[2,0],[3,-1],[21,-62],[3,-7],[2,-2],[11,-10],[1,-4],[2,-5],[0,-9],[0,-7],[-1,-6],[-3,-22],[-1,-4],[1,-6],[1,-19],[-1,-6],[-2,-4],[-2,-2],[-1,-1],[-3,1],[-4,3],[-3,0],[-1,-1],[-2,-2],[-2,-3],[0,-3],[0,-8],[4,-11],[17,-44],[8,-16],[2,-2],[2,-2],[2,-1],[2,1],[5,4],[2,0],[2,0],[2,-1],[2,-2],[7,-10],[3,-7],[2,-5],[1,-2],[1,-2],[3,0],[1,0],[5,4],[1,1],[3,-2],[15,-18],[2,-3],[0,-6],[1,-12],[0,-7],[-1,-27],[1,-4],[1,-5],[3,-5],[3,-2],[50,-29],[3,-5],[1,-7],[1,-31],[2,-5],[2,-7],[2,-5],[2,-3],[12,-13],[1,-3],[2,-4],[3,-20],[1,-5],[-1,-7],[-1,-12],[0,-6],[-2,-4],[-2,-2],[-10,-10],[-2,-2],[-1,-2],[-2,-3],[-18,-46],[0,-5],[1,-7],[4,-11],[5,-11],[3,-5],[18,-36],[2,-6],[19,-77],[1,-8],[1,-19],[-2,-49]],[[5715,6023],[-5,-31],[-1,-3],[-10,-45],[-1,-3],[1,-4],[2,-6],[6,-7],[1,-2],[2,-3],[1,-2],[1,-4],[3,-12],[4,-26],[1,-12],[0,-28],[1,-7],[0,-3],[0,-3],[2,-9],[1,-3],[8,-33],[1,-3],[2,-3],[8,-2],[3,-2],[0,-3],[0,-4],[0,-5],[-2,-5],[-3,-5],[-20,-26],[-4,-5],[-2,-5],[-3,-4],[-3,-2],[-8,1],[-6,4],[-2,2],[-3,2],[-1,2],[-12,13],[-5,3],[-3,1],[-3,-1],[-3,-5],[-2,-4],[-1,-5],[-2,-3],[-2,-7],[-4,-9],[-9,-11],[-2,-1],[-4,-1],[-6,1],[-4,1],[-2,2],[-6,7],[-4,4],[-3,0],[-2,-1],[-4,-5],[0,-4],[-1,-4],[0,-5],[0,-4],[0,-3],[-2,-4],[-3,-2],[-7,0],[-3,2],[-2,2],[-1,4],[0,3],[-1,20],[-2,11],[-2,6],[-1,3],[-17,36],[-4,10],[0,3],[0,4],[0,25],[0,4],[-1,4],[-2,1],[-3,0],[-4,-6],[-6,-8],[-2,-2],[-3,-1],[-6,0],[-8,2],[-5,3],[-2,2],[-1,3],[-1,3],[0,4],[-1,4],[-2,2],[-4,5],[-1,2],[0,4],[0,8],[0,4],[-1,3],[-2,2],[-2,0],[-3,-1],[-7,-9],[-5,-2],[-6,-8],[0,-4],[-1,-4],[1,-3],[0,-3],[0,-5],[0,-2],[-1,-3],[-3,-1],[-7,3],[-5,2],[-3,1],[-2,-1],[-4,-4],[-1,-4],[-8,-20],[-4,-11],[-6,-16],[-2,-3],[-1,-3],[-17,-15],[-4,-5],[-1,-4],[-3,-7],[0,-4],[1,-3],[1,-3],[2,-2],[1,-3],[1,-3],[0,-4],[-1,-5],[0,-5],[-3,-17],[-1,-4],[-2,-3],[-5,-2],[-7,-1],[-4,1],[-3,3],[-1,4],[-1,2],[-3,0],[-12,-3],[-4,1],[-1,2],[0,3],[0,2],[-3,2],[-2,2],[-2,1],[-3,-2],[-8,-13],[-3,-2],[-21,-11],[-6,-6],[-4,-5],[-2,-8],[-4,-5],[-5,-9],[-3,-6],[-2,-4],[-5,-2],[-5,2],[-3,4],[-2,6],[-2,17],[-1,6],[-2,5],[-1,6],[-2,4],[-3,3],[-14,15],[-36,20],[-4,1],[-16,1],[-3,-1],[-3,-4],[-3,-9],[-2,-7],[-2,-5],[-5,-3],[-27,2],[-15,7],[-4,1],[-4,-3],[-4,-7],[-2,-7],[-1,-7],[0,-14],[2,-20],[0,-20],[-1,-7],[-1,-12],[-3,-6],[-2,-4],[-12,-16],[-5,-8],[-1,-5],[-2,-6],[-1,-6],[-1,-12],[-4,-16],[-3,-5],[-7,-6],[-14,-6],[-10,-7],[-10,-6],[-6,1],[-3,-1],[-5,-8],[-2,-2],[-3,2],[-1,3],[-3,10],[-1,2],[-1,2],[-2,2],[-7,4],[-6,2],[-8,-2],[-2,1],[-11,5],[-6,1],[-16,-1],[-4,-2],[-22,-20],[-8,-4],[-19,0],[-3,-1],[-4,0],[-2,1],[-3,2],[-5,7],[-8,7],[-14,6],[-11,2],[-8,4],[-6,2],[-23,-3],[-5,3],[-4,0],[-17,-6],[-5,-1],[-4,1],[-2,3],[-2,6],[-2,1],[-4,0],[-6,-1],[-4,1],[-3,2],[-2,2],[-2,1],[-3,0],[-7,0],[-5,2],[-4,0],[-5,-2],[-16,-13],[-14,-21],[-11,-11],[-4,-8],[-1,-6],[3,-6],[0,-3],[1,-4],[0,-3],[-1,-3],[-4,-30],[-1,-4],[-4,-6],[-17,-23],[-4,-8],[-2,-6],[1,-3],[2,-1],[9,-7],[3,-2],[1,-2],[1,-4],[0,-21],[0,-9],[-2,-8],[-3,-4],[-5,-3],[-34,-6],[-2,1],[-2,2],[-1,2],[-1,4],[-2,6],[-2,2],[-2,2],[-9,2],[-11,-1],[-3,-2],[-3,-3],[-3,-7],[-1,-6],[-1,-5],[-1,-9],[0,-4],[-1,-4],[-1,-4],[-60,-48],[-3,-7],[-1,-2],[-2,0],[-4,0],[-6,2],[-4,3],[-2,3],[-1,4],[-2,2],[-1,2],[-3,1],[-4,0],[-5,-5],[-13,-15],[-11,-19],[-6,-3],[-15,2]],[[4454,5165],[-7,11],[-4,5],[-3,2],[-2,1],[-3,0],[-2,0],[-5,-2],[-22,-15],[-4,-1],[-2,0],[-2,3],[0,4],[0,7],[1,4],[1,3],[8,11],[2,2],[3,7],[1,5],[1,7],[1,3],[1,0],[1,0],[1,0],[2,2],[3,4],[2,6],[1,2],[1,3],[0,5],[0,4],[0,4],[-3,15],[-7,21],[-8,16],[-5,12],[-3,13],[-2,6],[-1,8],[0,31],[0,3],[-2,4],[-3,3],[-20,13],[-15,16],[-3,5],[-3,5],[-1,5],[-1,5],[1,10],[1,6],[3,3],[7,7],[2,2],[1,3],[0,3],[-2,4],[-2,2],[-2,2],[-4,3],[-2,4],[-4,9],[-4,3],[-2,1],[-13,-1],[-17,3],[-1,2],[-3,9],[-8,65],[-3,10],[-1,1],[-12,6],[-2,1],[-1,3],[-1,4],[-2,5],[-1,9],[0,5],[1,5],[3,2],[5,6],[1,5],[0,5],[-1,8],[-2,5],[-1,4],[-3,5],[-2,2],[-2,2],[-3,2],[-8,-1],[-1,2],[-2,1],[-3,5],[-2,3],[-9,7],[-1,3],[-1,3],[2,4],[2,2],[1,5],[4,15],[2,4],[3,3],[2,0],[2,2],[1,5],[-1,12],[-1,2],[0,1],[-2,4],[-1,3],[-2,2],[-3,2],[-2,1],[-14,1],[-3,1],[-4,4],[-2,2],[-1,3],[-1,4],[-1,4],[0,8],[1,7],[1,7],[5,12],[3,2],[2,2],[16,14],[8,5],[2,5],[0,5],[0,10],[0,7],[0,5],[2,5],[3,3],[9,6],[1,4],[1,5],[-2,11],[-1,6],[-1,6],[0,4],[2,6],[3,7],[0,5],[-1,5],[-2,7],[-3,3],[-2,3],[-7,6],[-2,1],[0,8],[11,19]],[[4278,5986],[17,-8],[3,-3],[1,-4],[-1,-2],[-1,-2],[-2,-2],[-2,-2],[-1,-4],[1,-7],[1,-6],[4,-5],[9,-12],[8,-4],[27,4],[12,0],[3,2],[2,4],[-1,11],[0,4],[0,3],[2,4],[1,2],[7,10],[3,6],[4,9],[1,5],[2,11],[2,3],[1,3],[6,5],[10,11],[5,2],[15,1],[5,1],[2,2],[5,11],[4,7],[3,2],[3,-1],[4,-1],[14,-2],[2,-2],[5,-3],[2,-2],[4,0],[2,1],[1,4],[-1,3],[-1,3],[-3,9],[-1,2],[-1,2],[1,4],[2,4],[2,4],[7,5],[3,6],[5,9],[3,1],[2,0],[10,-6],[2,-2],[0,-3],[0,-3],[-6,-13],[-1,-8],[-1,-3],[0,-4],[1,-4],[1,-1],[2,-3],[82,-25],[2,-2],[1,-2],[1,-2],[0,-4],[-1,-5],[1,-4],[2,-4],[5,-4],[4,0],[3,2],[0,4],[9,58],[3,12],[1,3],[0,5],[0,8],[0,9],[2,8],[1,5],[2,4],[5,5],[3,1],[4,0],[2,0],[3,-2],[2,-3],[3,-4],[2,-2],[2,-6],[1,-4],[2,-3],[2,-3],[2,-1],[1,1],[16,8],[2,2],[5,7],[3,1],[1,-1],[14,-12],[2,1],[2,2],[2,7],[6,18],[2,4],[2,0],[2,-1],[4,-5],[3,-2],[6,-1],[6,4],[5,0],[2,0],[3,-3],[1,-2],[9,-24],[1,-4],[3,-2],[2,-1],[3,1],[8,7],[15,7],[2,3],[5,8],[3,4],[4,4],[3,-1],[7,-5],[5,1],[2,2],[5,7],[5,4],[3,1],[3,-1],[0,-4],[1,-3],[2,-4],[3,-2],[6,-2],[3,4],[3,6],[0,4],[-1,13],[1,4],[0,4],[1,3],[12,31],[1,3],[3,6],[8,9],[3,3],[4,10],[4,7],[12,16],[2,6],[4,5],[19,20],[2,3],[1,3],[2,5],[8,28],[2,6],[4,6],[15,14],[3,5],[0,2],[1,4],[1,13],[-1,4],[0,4],[-1,3],[-1,4],[-3,1],[-5,3],[-2,2],[-2,2],[-1,4],[0,3],[1,13],[1,4],[2,3],[6,8],[1,4],[6,24],[4,14],[1,4],[1,4],[0,4],[-1,3],[-2,7],[0,3],[1,4],[0,4],[7,16],[1,3],[4,39],[0,4],[-1,3],[-1,3],[-2,2],[-2,3],[-1,2],[0,4],[0,4],[1,3],[0,2],[6,16],[0,4],[1,4],[-2,3],[-1,2],[-5,4],[0,3],[-1,2],[0,4],[1,3],[5,8],[1,3],[4,14],[4,7],[2,3],[3,2],[17,3],[36,37],[4,2],[6,1],[17,0],[5,2],[8,4],[3,1],[3,0],[2,-1],[2,-3],[1,-2],[1,-3],[1,-4],[0,-4],[0,-4],[1,-2],[2,-3],[2,-3],[1,-2],[2,-2],[1,-4],[1,-3],[0,-9],[0,-3],[1,-3],[4,-5],[2,-6],[2,-3],[2,-2],[2,1],[1,2],[1,3],[0,10],[2,5],[3,6],[2,1],[2,0],[2,-1],[2,-3],[3,-2],[3,-1],[6,0],[3,1],[3,3],[1,3],[1,3],[1,4],[2,10],[0,6],[1,4],[1,5],[2,2],[2,0],[3,-1],[2,-4],[0,-3],[0,-4],[0,-22],[0,-3],[1,-3],[3,-2],[43,-12],[3,1],[2,1],[2,6],[4,14],[5,12],[9,13],[1,2],[0,5],[1,3],[-1,12],[1,3],[1,4],[12,23],[5,14],[2,8],[0,8],[1,10],[-1,7],[0,8],[0,3],[-1,4],[1,3],[1,5],[2,3],[2,1],[18,8],[4,3],[3,4],[1,3],[0,4],[-1,7],[-4,14],[0,7],[-1,8],[-1,9],[0,3],[-1,4],[-3,13],[0,4],[1,5],[5,6],[14,16],[3,6],[2,6],[2,11],[3,6],[1,0],[5,-2],[3,-1],[6,1],[3,2],[3,2],[10,15],[2,6],[3,6],[1,4],[1,4],[0,4],[-1,4],[-2,3],[-2,6],[-2,2],[-3,6],[-1,1],[0,3],[0,3],[0,4],[0,4],[0,4],[2,6],[3,5],[5,9],[2,4],[2,2],[5,3],[2,0],[6,-1],[3,-1],[5,-4],[3,-4],[7,-4]],[[6241,5601],[-12,-27],[-3,-13],[0,-5],[-1,-4],[-2,-5],[-4,-5],[-4,-9],[-2,-5],[-5,-3],[-3,-10],[-3,-17],[-1,-4],[-2,-3],[-1,-3],[-4,0],[-2,1],[-1,2],[-1,10],[-2,8],[0,3],[0,4],[0,5],[0,3],[-1,4],[-3,0],[-2,-5],[-3,-8],[-2,-4],[-3,-2],[-2,2],[0,5],[1,13],[0,4],[-1,3],[-2,2],[-3,1],[-3,0],[-2,0],[-2,-2],[-2,-3],[-9,-18],[-3,-2],[-3,-1],[-2,0],[-3,2],[-2,2],[0,4],[-1,7],[-1,4],[-1,2],[-2,3],[-3,2],[-3,0],[-2,0],[-3,-1],[-19,-23],[-2,-1],[-4,1],[-1,1],[-1,4],[-2,2],[-1,3],[-2,1],[-3,0],[-2,-4],[-4,-5],[-6,-16],[0,-6],[0,-4],[1,-7],[1,-3],[2,-3],[2,-2],[4,-4],[1,-2],[1,-4],[1,-2],[3,-11],[1,-3],[2,-1],[2,-2],[26,-7],[2,-2],[10,-11],[3,-1],[3,-1],[27,-3],[2,-2],[1,-2],[1,-3],[0,-5],[1,-3],[2,-3],[2,-1],[18,-7],[2,-2],[1,-2],[-1,-5],[-2,-5],[-7,-7],[-3,-2],[-4,-2],[-2,0],[-3,-1],[-3,-3],[-17,-26],[-3,-5],[-50,-35],[-1,-2],[-1,-1],[-2,-2],[-12,-21],[-4,-2],[-2,0],[-1,6],[-1,1],[-40,-24],[-14,-13],[-1,-4],[-2,-5],[0,-8],[0,-5],[1,-4],[0,-3],[1,-2],[1,0],[0,-1],[5,0],[1,-1],[0,-3],[-1,-8],[0,-4],[2,-7],[10,-35],[0,-4],[-2,-4],[-2,-4],[-2,-4],[-1,-6],[1,-10],[1,-2],[2,-3],[2,-1],[2,-2],[1,-3],[0,-4],[0,-4],[0,-4],[3,-22],[1,-56],[1,-8],[0,-1],[1,-2],[0,-2],[2,-2],[6,-3],[2,-2],[1,-4],[0,-3],[0,-4],[-5,-50],[0,-5],[-3,-4],[-6,-2],[-3,-1],[-4,0],[-2,-1],[-3,-4],[-5,-15],[-1,-2],[-19,-28],[-4,-7],[-2,-4],[-3,-1],[-6,-2],[-3,0],[-2,1],[-2,2],[-1,2],[-2,3],[-1,3],[-1,3],[-2,1],[-3,0],[-1,-2],[-2,-7],[-2,-7],[-20,-32],[-1,-4],[-4,-15],[-3,-17],[-2,-2],[-2,-2],[-3,2],[-2,2],[0,4],[-1,11],[0,4],[0,3],[1,5],[0,2],[1,3],[1,3],[0,3],[-3,28],[-1,4],[-2,2],[-1,0],[-2,0],[-2,-4],[-2,-19],[-3,-12],[-1,-10],[0,-7],[1,-8],[0,-8],[0,-9],[-1,-4],[-1,-9],[-2,-3],[-3,-3],[-11,-5],[-18,2],[-3,-2],[-4,-3],[-7,-8],[-4,-6],[-4,-7],[-4,-12],[-2,-7],[-6,-6],[-4,-1],[-3,-4],[-2,-3],[-5,-28],[-6,-35]],[[4554,4825],[-97,8],[-17,12],[-9,21],[-7,27],[-7,23],[-6,-4],[-2,-1],[-6,-6],[-4,-2],[-2,1],[-3,2],[-6,10],[-3,1],[-2,-1],[-2,-2],[-2,-7],[-11,-30],[-2,-3],[-3,-2],[-2,0],[-2,1],[-2,3],[-6,10],[-1,3],[-2,4],[-8,9],[-3,2],[-2,1],[-2,-1],[-8,-4],[-11,-4]],[[4314,4896],[-1,9],[1,4],[1,4],[3,6],[1,4],[0,5],[0,3],[-1,3],[0,3],[0,3],[1,6],[0,1],[0,1],[-1,3],[-3,1],[-1,2],[-12,4],[-3,2],[-1,2],[-1,2],[-1,4],[1,3],[1,3],[9,20],[3,8],[4,16],[0,4],[1,9],[0,9],[0,4],[-1,3],[0,3],[0,3],[1,3],[2,4],[2,4],[16,23],[10,19],[2,6],[5,12],[4,6],[8,11],[2,1],[5,0],[6,-2],[3,-4],[0,-4],[0,-5],[0,-4],[0,-3],[1,-4],[2,-6],[1,-3],[3,-18],[1,-3],[1,-4],[1,-2],[4,1],[5,7],[10,21],[6,17],[3,3],[2,3],[16,3],[6,7],[12,23]],[[5715,6023],[116,-85],[49,-55],[3,-5],[3,-5],[8,-21],[2,-7],[1,-3],[0,-3],[5,-12],[3,-4],[3,-3],[44,-7],[2,-2],[1,-9],[2,-3],[4,-3],[11,-5],[3,-5],[0,-4],[0,-3],[-2,-2],[-3,-1],[-6,-3],[-2,-2],[-1,-3],[1,-7],[0,-4],[-1,-4],[-1,-4],[-1,-2],[-1,-2],[-4,-4],[-1,-2],[1,-2],[0,-2],[8,-9],[2,-2],[7,-17],[2,-3],[1,-2],[1,-4],[8,-8],[2,-4],[2,-2],[1,-3],[2,-1],[1,0],[5,3],[1,4],[2,5],[1,3],[5,0],[6,-3],[15,-10],[5,-6],[2,-5],[4,-4],[21,-13],[4,-5],[2,-5],[2,-3],[2,-1],[5,1],[4,3],[2,3],[5,14],[3,1],[4,0],[17,-13],[4,-4],[4,-8],[2,-3],[3,-13],[2,-7],[0,-3],[1,-4],[1,-2],[1,0],[4,4],[1,4],[1,5],[2,18],[2,5],[0,3],[3,3],[5,1],[9,1],[4,3],[3,2],[1,4],[15,4],[13,-21],[8,-3],[16,-1],[8,-2],[8,-6],[3,-6],[9,-22]],[[5413,7180],[-11,-46],[-8,-17],[-1,-2],[-1,-3],[1,-5],[1,-3],[1,-4],[0,-3],[-1,-6],[-1,-3],[-12,-27]],[[4278,5986],[-5,15],[-5,3],[-7,-1],[-6,0],[-3,2],[-2,3],[-1,5],[-3,10],[-9,19],[-6,21],[-2,4],[-2,3],[-2,1],[-13,4],[-5,1],[-7,6],[-2,5],[-2,4],[0,8],[-1,6],[-2,7],[-8,21],[0,3],[0,7],[0,4],[1,1],[0,2],[1,2],[1,3],[1,3],[2,3],[23,22],[1,2],[2,4],[1,4],[0,9],[0,14],[-2,8],[-11,33],[0,6],[0,4],[0,3],[1,3],[2,1],[3,2],[2,2],[2,2],[0,2],[1,3],[1,13],[0,8],[-1,4],[-1,4],[-19,14],[-3,3],[-3,4],[-3,8],[-2,5],[-1,6],[-1,11],[1,9],[0,5],[0,3],[1,5],[5,13],[1,5],[1,5],[1,7],[-1,5],[-2,3],[-3,4],[-3,3],[-23,5]],[[4161,6437],[2,15],[0,3],[3,3],[8,5],[1,4],[2,5],[0,6],[1,8],[0,5],[-1,5],[-2,2],[-1,1],[-3,0],[-11,-3],[-6,-1],[-6,2],[0,3],[0,2],[4,6],[2,6],[4,10],[0,6],[2,7],[2,14],[0,7],[0,5],[-3,8],[-1,5],[-1,10],[1,4],[0,3],[4,4],[2,2],[3,0],[6,-1],[2,2],[3,3],[3,8],[3,3],[1,0],[4,0],[3,0],[3,0],[16,20],[15,10],[4,4],[5,7],[2,3],[7,3],[3,2],[1,2],[2,3],[7,15],[4,10],[2,6],[2,3],[13,9],[3,5],[11,16],[2,7],[1,6],[0,4],[-1,3],[-27,65],[0,4],[-1,4],[0,7],[1,4],[3,5],[1,4],[1,2],[-7,39],[-1,10],[0,7],[1,5],[2,3],[1,1],[1,1],[15,6],[4,3],[3,4],[3,11],[0,5],[-1,5],[-2,6],[0,14],[0,7],[-2,5],[-1,3],[-7,5],[-2,2],[-1,3],[-1,3],[-2,3],[0,4],[-1,3],[1,14],[0,4],[0,5],[-1,12],[3,42],[0,10],[-2,6],[-6,2],[-2,2],[-2,3],[-1,2],[-4,11],[-6,20],[-1,3],[-1,3],[-2,2],[-3,1],[-3,1],[-6,-1],[-2,3],[-2,6],[-2,17],[-6,22],[-3,29],[-2,5],[0,2],[-1,4],[-2,2],[-1,4],[-6,11],[-3,4],[-3,2],[-2,1],[-20,-1],[-3,-1],[-17,-11],[-3,-1],[-3,1],[-3,2],[-3,9],[0,4],[2,3],[10,2],[2,1],[3,3],[1,3],[1,4],[0,4],[-1,2],[-8,6],[-2,4],[-1,4],[1,3],[3,2],[1,0],[9,-3],[2,0],[3,2],[2,3],[1,2],[1,4],[4,21],[0,5],[0,3],[0,1],[0,3],[-1,2],[-1,3],[-5,4],[-3,3],[-1,8],[0,5],[1,4],[5,0],[3,2],[1,3],[1,2],[4,21],[3,11],[-1,5],[-1,3],[-8,9],[-2,2],[-2,4],[-2,6],[0,4],[1,4],[4,14],[4,12],[14,29],[4,15],[2,2],[1,3],[15,12],[2,4],[2,4],[3,10],[1,6],[0,5],[-7,37],[-1,14],[-2,8],[-1,3],[-1,3],[-3,5],[-5,3],[-7,1],[-17,-3],[-1,1],[-3,2],[-1,5],[0,4],[9,75],[0,6],[-1,6],[-1,2],[-12,19],[-26,58],[-1,3],[-2,2],[-3,0],[-2,2],[-3,5],[-2,15],[1,7],[1,3],[15,0],[3,-1],[2,-2],[4,-4],[1,-2],[3,-2],[2,0],[2,7],[0,8],[-1,24],[0,8],[0,6],[0,6],[1,4],[3,7],[6,13],[1,8],[1,4],[-1,5],[0,4],[-1,2],[-1,4],[-4,5],[-1,2],[-5,4],[-11,6],[-3,1],[-1,3],[-1,2],[-2,8],[-1,3],[-1,4],[0,3],[-3,5],[-15,19],[-8,8],[-5,3],[-2,1],[-3,-2],[-1,-2],[-10,-22],[-1,-3],[-1,-1],[-2,2],[-1,2],[-1,7],[-3,15],[-5,56],[-8,46],[1,4],[1,2],[6,0],[5,2],[9,7],[15,15],[6,9],[5,12],[5,14],[1,8],[1,12],[1,40],[0,8],[-1,3],[0,1],[-2,1],[-1,0],[-4,-4],[-1,-1],[-3,1],[-1,2],[-1,3],[-4,8],[0,1]],[[4117,8272],[13,16]],[[4170,8281],[7,18],[7,25]],[[4188,8337],[7,4],[11,3],[11,6]],[[4217,8350],[8,12],[6,14]],[[4250,8394],[11,2],[10,-2]],[[4271,8394],[7,-8],[8,-19]],[[4286,8367],[4,-17],[6,-11]],[[4296,8339],[43,-10],[8,3]],[[4347,8332],[4,7],[9,21],[6,6],[4,-1]],[[4370,8365],[7,-7],[6,1]],[[4412,8380],[11,4],[64,3]],[[4501,8382],[13,-15],[17,-34],[6,-10],[24,-16]],[[4561,8307],[6,-7],[3,-8]],[[4566,8234],[3,-12],[15,-25],[5,-9],[8,-4]],[[4624,8173],[11,-23],[6,-3],[7,1]],[[4648,8148],[7,-2],[6,-6],[5,-8]],[[4669,8122],[5,2]],[[4674,8124],[2,6]],[[4345,2177],[6,2],[8,11],[13,23]],[[4372,2213],[9,11],[73,108],[23,21],[-101,-155],[-47,-55]],[[4971,3222],[-1,0]],[[4970,3222],[-12,0],[-25,-12],[-24,-5]],[[4909,3205],[-19,-10],[-10,-3],[-5,-4]],[[4864,3174],[-4,1],[-5,3]],[[4855,3178],[-6,-3],[-27,-31],[-6,-3],[-20,8]],[[4772,3111],[-3,-10],[2,-13]],[[4787,3034],[2,-7],[-2,-2]],[[4787,3025],[-1,-3],[-2,-5]],[[4784,3017],[-2,-6],[-4,-32]],[[4725,2926],[-4,-6],[3,-6],[10,-11],[4,-10],[0,-12],[-3,-9],[-13,-43]],[[4722,2829],[-33,-73],[-10,-31]],[[4679,2725],[-6,-14],[-7,-7]],[[4662,2695],[-10,-41],[-4,-16],[-57,-87]],[[4481,2435],[-4,3],[-4,-8]],[[4467,2408],[-2,-29],[0,-7]],[[4465,2372],[-2,-6],[0,-6]],[[4462,2356],[-3,-2],[-1,3],[-4,3],[-2,2],[-2,-4],[-3,-4],[-22,29],[-11,7]],[[4414,2390],[-11,-8],[-3,-22],[-1,-26]],[[4399,2334],[-2,-24],[-5,13]],[[4388,2357],[-4,-3],[-3,-14],[-1,-18]],[[4390,2289],[-3,-30],[-3,10],[-3,8]],[[4371,2289],[-1,3],[1,6],[-1,4],[-4,1]],[[4363,2301],[-2,-5],[0,-5]],[[4349,2288],[-13,-3],[-10,-11]],[[4345,2224],[7,-11],[4,-9],[-3,-3]],[[4353,2201],[-8,-5],[-7,-11]],[[4318,2177],[0,-4],[2,-8]],[[4313,2159],[-13,-8],[-6,-8]],[[4272,2332],[-3,6],[-1,2]],[[4250,2368],[-3,-5],[0,-9],[1,-7]],[[4255,2333],[2,-5],[-3,-8]],[[4254,2320],[-8,-18],[-3,-13]],[[4243,2289],[-1,-17],[2,-8]],[[4244,2264],[3,-7],[3,-13]],[[4250,2244],[-16,-20],[-3,-41]],[[4282,2099],[-6,-11],[-15,-39]],[[4247,2026],[-2,-11],[-4,-4],[-6,-4]],[[4242,1973],[4,-9],[5,-5]],[[4251,1959],[6,1],[1,10]],[[4257,1983],[1,10],[8,4]],[[4266,1972],[1,-4],[3,0]],[[4272,1972],[0,3],[4,-1]],[[4285,1953],[3,17],[2,17]],[[4290,1987],[3,8],[8,-13]],[[4304,1965],[0,-21],[-3,-14]],[[4292,1931],[6,-12],[4,-19]],[[4302,1900],[2,-23],[1,-46]],[[4303,1813],[-5,-15],[0,-9]],[[4298,1789],[-5,-25],[-1,-11]],[[4292,1753],[0,-10],[1,-1],[-1,-1]],[[4292,1741],[-9,-15],[-8,-6]],[[4260,1719],[2,7],[1,8],[-1,9],[-2,6]],[[4260,1749],[6,30],[-3,42]],[[4153,1947],[-36,6],[-4,2]],[[4113,1955],[-5,4],[-5,2]],[[4096,1951],[-4,-5],[-4,-5]],[[4084,1938],[-9,0],[-8,3],[-7,-1],[-11,-9]],[[4042,1921],[-3,-8],[-2,-7]],[[4019,1899],[-6,-11],[-9,-6]],[[4004,1882],[-18,-9],[-25,-32]],[[3961,1841],[-5,-5],[-11,-1]],[[3945,1835],[-5,-1]],[[3940,1834],[-3,-5],[-2,-9]],[[3933,1800],[-2,-7],[-11,-7]],[[3920,1786],[-9,8],[-7,14]],[[3842,1789],[0,-8],[0,-9],[3,-9]],[[3848,1759],[14,-10],[-6,-10]],[[3756,1753],[-39,33],[-41,17]],[[3598,1970],[14,-12]],[[3598,1970],[-10,-1],[-1,-1]],[[3587,1968],[-6,13],[1,7]],[[3589,2014],[24,30],[34,-4]],[[3712,2023],[10,8],[1,12],[-2,36]],[[3720,2081],[0,2],[2,8]],[[3722,2091],[0,2],[4,4],[12,9]],[[3738,2106],[-6,14],[-3,15]],[[3726,2165],[-6,9],[-8,7],[-4,8]],[[3708,2189],[4,13],[10,25],[6,9]],[[3736,2245],[13,7],[3,8]],[[3752,2260],[-2,11],[-2,9],[8,20]],[[3756,2300],[31,4],[13,12]],[[3801,2326],[-1,11],[0,10],[0,6]],[[3803,2358],[13,5],[10,8],[5,9]],[[3835,2394],[0,22],[-2,17]],[[3833,2433],[-7,37],[1,18]],[[3832,2503],[9,9],[80,34]],[[3934,2575],[-9,47],[0,26]],[[3928,2665],[16,29],[11,28]],[[3955,2722],[6,25],[-3,23]],[[3958,2770],[-13,18],[-15,24]],[[3930,2812],[-8,17],[0,14]],[[3927,2894],[-7,50],[-5,39],[4,30],[9,24]],[[3928,3037],[34,36],[17,11],[9,5]],[[4029,3125],[10,0]],[[4046,3110],[3,-22],[0,-90],[0,-13]],[[4042,2965],[-3,-11],[0,-11],[7,-10]],[[4074,2972],[6,4],[2,-2]],[[4088,2999],[-2,22],[1,12],[9,22]],[[4096,3055],[6,-4],[11,-36]],[[4127,2996],[21,48],[8,16]],[[4156,3060],[9,8],[1,0]],[[4166,3068],[11,-2]],[[4180,3052],[-1,-8],[-2,-6],[-3,-9]],[[4174,3029],[0,-8],[0,-8]],[[4177,3005],[7,-5],[15,-4],[6,-3],[6,-10],[7,-23]],[[4231,2939],[9,-2],[7,6],[6,10],[4,17]],[[4291,3038],[24,-37],[10,-24]],[[4328,2968],[1,-10],[-1,-21],[1,-6],[9,-17]],[[4373,2948],[8,2],[54,-5]],[[4468,2970],[12,33],[-7,6]],[[4473,3009],[-8,2],[-6,-2]],[[4454,3003],[-8,14],[-21,27]],[[4423,3072],[-4,6],[-3,6],[-3,0],[-6,-6]],[[4404,3076],[-2,2],[-1,11],[-1,2]],[[4379,3105],[-7,13],[-1,23]],[[4371,3141],[8,1],[10,4]],[[4388,3201],[-1,11],[0,13],[1,11]],[[4388,3236],[3,9],[1,13]],[[4396,3324],[0,20],[-3,7],[-5,16]],[[4388,3367],[-1,7],[-1,10]],[[4385,3414],[-5,4],[-4,-2],[-5,-5]],[[4367,3412],[-2,6],[-4,19]],[[4277,3515],[-7,5],[-15,1]],[[4255,3521],[-8,4],[-4,6]],[[4220,3546],[-3,2],[-4,11]],[[4213,3559],[1,14],[0,3],[1,13],[5,40],[5,12],[5,10]],[[4230,3651],[4,15],[-1,16]],[[4230,3696],[-5,11],[-7,7]],[[4218,3714],[-8,-2],[-6,-11]],[[4176,3739],[1,2],[12,3],[11,4]],[[4209,3787],[-4,55],[1,24]],[[4206,3866],[12,10],[5,17],[-1,25]],[[4212,3961],[-7,11],[-10,6],[-9,0]],[[4186,3978],[-9,-1],[-5,-17]],[[4167,3929],[-9,-13],[-7,-3]],[[4151,3913],[-8,2],[-6,5]],[[4126,3940],[-2,4],[-2,16],[0,15]],[[4114,4006],[-8,5],[-6,2],[-7,6]],[[4061,4091],[-7,6],[-7,-6],[-4,-11]],[[4029,4084],[-4,12],[-7,31]],[[4018,4127],[-1,4],[-3,10]],[[4014,4141],[-1,0],[0,1],[-5,42]],[[4008,4184],[5,28],[13,25]],[[4043,4309],[-1,37],[2,33],[15,29],[5,13]],[[4036,4457],[0,12],[4,18]],[[4040,4487],[5,12],[9,14]],[[4058,4548],[-18,8],[-6,9],[-5,15],[-4,37],[-3,16]],[[4022,4633],[-5,13],[-6,9]],[[3996,4659],[-14,-11],[-21,-41]],[[3930,4611],[-6,8],[-10,11],[-15,26],[-10,25]],[[3889,4681],[8,10],[39,28],[10,10],[5,12],[7,10],[3,5],[8,7],[6,6],[1,2],[1,4],[0,4],[0,4],[-4,26],[-1,8],[1,4],[1,2],[2,3],[13,8],[4,1],[4,1],[5,-3],[2,-2],[2,-4],[2,-2],[8,-12],[7,-5],[1,-3],[5,-8],[3,-5],[24,-14],[9,-7],[3,-1],[43,2],[44,29],[7,0],[2,-2],[2,-3],[18,-17],[6,-3],[36,-3],[26,4],[4,3],[2,1],[3,-1],[4,-4],[2,0],[2,3],[8,35],[1,7],[0,5],[-1,3],[-2,3],[-9,18],[-3,7],[-1,3],[1,5],[2,4],[6,5],[4,-1],[3,-1],[5,0],[4,1],[27,23]],[[3873,4741],[-7,28],[-2,6],[0,8]],[[3864,4783],[-2,8],[-2,8]],[[3740,4846],[-11,-7],[-8,-39]],[[3721,4800],[0,-4],[-4,-18],[0,-18],[-1,-10]],[[3711,4749],[-9,10],[-6,10],[-13,41]],[[3691,4840],[-5,15],[-6,7],[-11,-2]],[[3658,4831],[-8,-13],[-9,-3]],[[3641,4815],[-6,10],[-1,14],[4,15]],[[3652,4874],[5,9],[3,22],[0,21],[-5,8],[-9,2]],[[3610,4914],[-10,-9],[-11,-3]],[[3589,4902],[-8,3],[-5,12],[-2,21]],[[3549,4935],[-8,-3],[-10,1]],[[3524,5015],[-10,8],[-25,4],[-16,3]],[[3454,5041],[-11,25],[-3,5]],[[3435,5083],[-10,21],[-7,12]],[[3373,5161],[-59,-1],[-9,7]],[[3426,6552],[42,8],[31,-7],[16,3],[40,16],[44,2],[5,2],[9,7],[3,-1],[5,-1],[22,-15],[4,-1],[5,0],[10,2],[8,4],[0,1],[3,5],[9,22],[1,3],[5,1],[41,0],[5,-2],[12,-10],[2,-4],[2,-2],[2,-3],[1,-1],[11,3],[6,4],[9,7],[2,2],[2,0],[35,-9],[5,1],[1,1],[2,1],[0,3],[2,3],[3,16],[6,16],[2,3],[2,3],[6,6],[10,7],[5,3],[3,4],[2,4],[1,3],[2,8],[1,8],[2,3],[4,1],[29,-6],[3,-1],[2,-3],[1,-4],[-1,-4],[-1,-4],[1,-5],[3,-6],[7,-11],[3,-6],[1,-4],[-1,-6],[0,-3],[0,-4],[0,-4],[1,-3],[0,-4],[0,-4],[0,-9],[0,-4],[1,-2],[0,-3],[8,-25],[4,-8],[2,-3],[0,-2],[14,-15],[2,-4],[-1,-3],[-22,-43],[-3,-6],[0,-4],[-1,-3],[0,-3],[0,-2],[2,-3],[9,-9],[2,-5],[1,-6],[1,-3],[0,-3],[1,-4],[6,-15],[1,-3],[0,-3],[-1,-3],[-1,-4],[-5,-7],[-1,-3],[-1,-3],[1,-4],[1,-2],[2,-3],[3,-3],[4,-3],[10,-3],[18,2],[33,-8],[50,5],[9,-2],[2,0],[2,2],[1,5],[1,9],[0,5],[0,4],[4,3],[6,4],[20,3],[7,-1],[5,3],[5,4],[15,20],[1,4],[1,2],[5,4],[12,0]],[[3335,8387],[6,-9],[8,-9]],[[3355,8365],[8,2],[4,6]],[[3389,8415],[2,7],[3,14]],[[3394,8436],[-1,11],[-1,12]],[[3410,8524],[11,2],[9,-7],[28,-44]],[[3467,8468],[8,-3],[46,-1],[9,5]],[[3556,8525],[10,20],[9,13]],[[3602,8553],[1,-10],[0,-10],[1,-9]],[[3608,8512],[5,-9],[14,-11]],[[3627,8492],[6,-10],[2,-11],[5,-29],[4,-8],[6,-4],[5,5]],[[3655,8435],[12,17],[24,22],[11,6],[13,0]],[[3715,8480],[42,-12],[12,-8]],[[3781,8365],[4,-15],[4,-11]],[[3789,8339],[7,-6],[7,5]],[[3803,8338],[7,5],[6,-1],[3,-13]],[[3819,8329],[3,-19],[5,-11],[9,13],[1,16],[0,40]],[[3875,8455],[14,11],[15,4],[28,0],[12,7]],[[3964,8525],[9,12],[9,6],[10,0]],[[3992,8543],[19,-6],[11,-11]],[[4022,8526],[6,-12],[10,-39],[15,-34]],[[4053,8441],[6,-17],[1,-28]],[[4076,8332],[5,-21],[5,-23],[5,-19]],[[4102,8260],[10,6],[5,6]],[[7065,7174],[0,-6],[-1,-4],[-1,-5],[-1,-3],[-2,-4],[-1,-2],[-4,-2],[-3,-1],[-8,-1],[-9,2],[-15,7],[-3,-1],[-4,-2],[-8,-5],[-14,-1],[-14,4],[-2,-1],[-1,-2],[0,-4],[2,-3],[3,-6],[1,-3],[-1,-2],[-2,-1],[-4,1],[-32,29],[-5,4],[-2,1],[-3,0],[-3,-1],[-2,-4],[-1,-6],[0,-5],[0,-16],[0,-4],[0,-4],[-2,-3],[-3,-2],[-3,1],[-3,2],[-11,10],[-3,2],[-3,-1],[-4,-3],[-6,-8],[-1,-5],[0,-4],[2,-3],[0,-3],[0,-1],[-1,-3],[-2,-2],[-2,-1],[-15,5],[-1,-1],[-3,-3],[-3,-6],[-1,-5],[-1,-4],[1,-3],[2,-7],[0,-3],[0,-5],[-1,-3],[-1,-3],[-4,-2],[-17,-4],[-5,0],[-3,1],[-3,3],[-9,7],[-7,2],[-6,0],[-3,-2],[-3,-3],[-5,-10],[-3,-6],[-2,-6],[0,-4],[-1,-5],[-2,-2],[-3,-2],[-3,2],[-7,7],[-3,-2],[-3,-4],[-7,-12],[-2,-6],[0,-5],[1,-4],[0,-3],[0,-3],[-1,-5],[-1,-2],[-3,-2],[-4,2],[-5,4],[-6,7],[-3,5],[-2,3],[-1,2],[-2,0],[-2,-2],[-4,-15],[-3,-10],[-2,-4],[-3,-5],[-17,-13]],[[6701,6963],[-44,14],[-13,-2],[-10,-14],[-9,-6],[-2,0],[-4,2],[-7,8],[-3,3],[-3,1],[-3,-4],[-2,-3],[-1,-4],[-2,-10],[0,-4],[-1,-3],[-2,-4],[-2,-2],[-1,-3],[-2,-1],[-17,-1],[-45,10],[-8,-2],[-8,-4],[-3,-3],[-6,-8],[-2,-1],[-2,1],[-1,5],[0,5],[0,4],[0,5],[-2,5],[-4,6],[-1,6],[-1,6],[2,12],[2,5],[1,1],[10,2],[3,2],[1,1],[1,2],[2,2],[1,2],[1,4],[1,4],[0,4],[0,4],[0,5],[-1,3],[-2,6],[-1,3],[-1,1],[-1,2],[-17,18],[-3,6],[-1,5],[0,4],[-2,3],[-4,6],[-2,4],[0,4],[-1,8],[0,3],[-1,4],[-1,2],[-3,3],[-3,0],[-5,-1],[-3,-4],[-1,-3],[-2,-3],[-2,-2],[-2,2],[-4,5],[-2,4],[-1,4],[-1,8],[-1,27],[0,4],[0,5],[2,8],[4,10],[1,4],[0,4],[0,4],[-1,4],[-1,6],[-3,5],[-3,6],[-20,26],[-16,26],[-11,22],[-2,7],[-2,7],[0,8],[0,52],[1,22],[-1,5],[0,2],[-2,3],[-16,8],[-3,-1],[-1,-3],[-1,-4],[-3,-5],[-4,-3],[-10,-3],[-4,-3],[-3,-3],[-3,-2],[-10,-3],[-2,-4],[0,-3],[0,-8],[0,-1],[0,-3],[-2,-3],[-3,-1],[-9,4],[-4,1],[-3,-3],[-3,-2],[-2,-4],[0,-4],[0,-3],[0,-4],[0,-3],[0,-4],[-3,-1],[-3,0],[-36,23],[-15,18],[-6,11],[-6,11],[-3,2],[-4,0],[-16,-6],[-23,-16],[-2,-2],[-2,-2],[0,-4],[0,-2],[0,-1],[0,-1],[15,-13],[1,-3],[1,-3],[-4,-4],[-8,-3],[-19,-2],[-12,-4],[-6,-9],[-3,0],[-5,1],[-34,24],[-143,42],[-2,3],[-13,8],[-4,4],[-3,3],[-1,3],[-2,2],[-5,0],[-7,0],[-12,-6],[-5,-6],[-3,-4],[-1,-4],[-1,-3],[-1,-4],[-2,-3],[-6,-1],[-44,8],[-17,15]],[[6000,9301],[1,-1]],[[6008,9295],[8,1],[7,6],[7,9]],[[6046,9298],[-4,-40],[9,-17]],[[6176,9318],[12,-6],[5,-10]],[[6196,9288],[7,-19],[10,-13],[19,-17]],[[6309,9104],[3,-10],[0,-10],[0,-12],[-7,-24]],[[6305,9042],[2,-18],[0,-35],[3,-21]],[[6316,8950],[10,-23],[1,-18]],[[6327,8909],[-4,-15],[0,-10]],[[6323,8884],[24,0],[9,-10]],[[6386,8823],[2,-14],[-1,-3]],[[6393,8803],[8,6],[6,0]],[[6407,8809],[9,-8],[15,-25]],[[6451,8751],[6,-10],[13,-42]],[[6444,8622],[-27,0],[-79,-26]],[[6320,8581],[-4,-26],[5,-10]],[[6321,8545],[16,-7],[6,-6],[3,-7],[2,-22]],[[6348,8503],[1,-11],[4,-7],[20,-33],[6,-15]],[[6379,8437],[4,-18],[1,-23]],[[6384,8396],[-1,-12],[-4,-18],[-2,-10]],[[6378,8345],[2,-10],[0,-9],[0,-11],[-5,-6],[-10,-3]],[[6365,8291],[4,-9],[10,-13]],[[6379,8269],[6,-6],[9,-5],[7,-2]],[[6409,8256],[9,8],[4,-37]],[[6422,8227],[-11,-35],[-19,-29]],[[6398,8116],[12,-3],[8,5]],[[6435,8139],[17,6],[16,-4],[34,-17]],[[6517,8116],[30,8],[14,-4]],[[6571,8096],[2,-17],[4,-16],[7,-9]],[[6659,8057],[37,23],[22,20],[8,1]],[[6726,8101],[8,-6],[9,-9],[10,3],[9,6]],[[6786,8082],[4,-15],[11,-98]],[[6896,7917],[8,-7],[5,-12],[-5,-17],[-5,-10],[-26,-7]],[[6875,7823],[1,-10],[4,-8]],[[6897,7796],[6,-14],[0,-13],[-1,-13]],[[6902,7756],[1,-16],[2,-13],[10,-19]],[[6915,7708],[4,-14],[1,-14]],[[6920,7680],[-1,-14],[0,-10],[7,-10]],[[6926,7646],[12,-9],[5,-8]],[[6951,7539],[10,-20],[-36,-23],[-6,-13],[0,-14]],[[6941,7340],[10,-25],[15,-11],[11,-2]],[[6995,7287],[7,-18],[3,-26],[1,-18]],[[7006,7225],[2,-17],[11,-17]],[[7028,7182],[9,-8],[10,-3]],[[7047,7171],[10,-2],[8,5]],[[6736,5918],[16,-4],[7,2],[1,2],[3,0],[3,-1],[4,-6],[4,-3],[4,-1],[11,4],[2,0],[12,-4],[9,0],[3,0],[7,-6],[14,-15],[4,-5],[2,-5],[1,-7],[1,-3],[2,-4],[30,-36],[2,-6],[2,-5],[2,-4],[13,-13],[2,-4],[8,-17],[7,-10],[27,-23],[7,-9],[10,-15],[3,-3],[3,-1],[6,1],[10,3],[2,0],[24,-6],[3,0],[1,2],[2,2],[3,1],[3,-2],[8,-9],[2,-4],[2,-2],[4,-2],[13,1],[4,-1],[3,-3],[4,-5],[4,-3],[4,0],[2,2],[4,4],[5,0],[19,-9],[9,-6],[5,-5],[5,0],[3,0],[2,2],[2,3],[4,2],[3,0],[5,3],[1,1],[8,9],[7,7],[23,12],[5,5],[4,-2],[6,-6],[14,-18],[4,-9],[1,-7],[0,-4],[0,-4],[0,-4],[4,-7],[8,-15],[1,-2],[1,-3],[-1,-3],[-1,-4],[-5,-13],[-2,-3],[-1,-2],[-12,-10],[-4,-5],[-2,-2],[-1,-4],[1,-2],[2,-2],[16,2],[2,-2],[4,-3],[7,-10],[4,-3],[12,-6],[4,-4],[2,-6],[-1,-4],[3,-5],[4,-5],[10,-9],[4,-5],[3,-5],[3,-9],[2,-4],[13,-13],[3,-6],[0,-4],[-1,-4],[-1,-1],[-3,-5],[-9,-9],[-2,-2],[0,-5],[-2,-3],[0,-4],[0,-4],[2,-3],[18,-19],[11,-18],[34,-41],[5,-11],[1,-3],[1,-3],[-1,-4],[-1,-3],[-5,-18],[-2,-3],[0,-4],[0,-4],[2,-3],[7,-9],[8,-12],[1,-3],[0,-3],[-1,-2],[0,-3],[-13,-22],[-1,-3],[-1,-3],[1,-3],[4,-8],[3,-1],[2,0],[4,5],[5,7],[1,3],[2,0],[3,-1],[2,-2],[4,-5],[2,-3],[3,0],[4,3],[8,8],[1,5],[0,3],[-4,5],[-1,2],[-1,3],[1,4],[8,20],[33,61],[8,9],[2,1],[4,0],[8,-5],[21,-17],[7,-10],[2,-4],[3,-7],[1,-2],[4,-3],[5,-1],[17,2],[4,3],[5,7],[8,9],[27,6]],[[7546,5347],[1,-11],[0,-3],[1,-4],[1,-4],[1,-3],[2,-2],[2,0],[17,4],[2,0],[1,-1],[2,-3],[0,-3],[0,-4],[-3,-3],[-3,-4],[-2,-3],[-5,-14],[-2,-3],[-2,-2],[-2,-4],[-1,-6],[0,-20],[0,-6],[1,-3],[1,-1],[2,-1],[14,2],[3,2],[2,3],[0,3],[2,4],[3,23],[1,5],[2,8],[2,3],[3,1],[20,3],[5,-1],[3,-3],[0,-2],[1,-4],[1,-3],[1,-11],[1,-24],[-1,-3],[-1,-4],[-3,-5],[-5,-4],[-7,-4],[-1,-2],[-1,-4],[1,-10],[1,-4],[0,-1],[1,-3],[0,-3],[-1,-4],[-2,-3],[-5,-4],[-1,-3],[-2,-4],[0,-33],[2,-4],[3,-5],[1,-3],[-3,-5],[-1,-3],[-11,-8],[-2,-2],[-1,-4],[0,-9],[0,-5],[3,-14],[1,-31],[0,-6],[-3,-23],[0,-5],[1,-4],[0,-4],[2,-2],[1,-2],[2,-1],[2,1],[5,3],[4,1],[2,0],[3,0],[2,-1],[1,-4],[0,-2],[1,-4],[1,-3],[2,-1],[10,-2],[3,-2],[1,-3],[1,-3],[0,-12],[1,-7],[1,-7],[2,-7],[4,-41],[0,-3],[0,-4],[0,-3],[2,-11],[0,-5],[-1,-5],[-3,-6],[-6,-10],[-5,-4],[-3,-3],[-4,-1],[-3,-3],[-1,-3],[-1,-7],[0,-5],[0,-4],[3,-30],[1,-7],[5,-19],[1,-7],[2,-16],[0,-4],[-1,-3],[0,-4],[-4,-7],[-4,-8],[-11,-15],[-6,-6],[-5,-3],[-2,2],[-17,13],[-17,7],[-3,2],[-2,3],[-1,2],[-2,10],[-1,3],[-2,2],[-2,3],[-27,13],[-2,1],[-3,-1],[-16,-6],[-8,0],[-2,-1],[-2,-1],[-2,-2],[-3,-2],[-1,-4],[-2,-6],[-1,-10],[-1,-62],[0,-5],[2,-13],[0,-13],[2,-5],[2,-4],[9,-1],[2,-2],[2,-3],[2,-2],[0,-4],[0,-3],[4,-13],[3,-9],[0,-3],[0,-3],[-2,-2],[-5,-1],[-16,0],[-2,-1],[-3,-2],[-4,-4],[-3,-2],[-8,0],[-1,-2],[-2,-4],[-1,-6],[0,-4],[-1,-4],[1,-5],[0,-4],[3,-3],[4,-4],[6,-2],[3,-4],[2,-4],[2,-24]],[[7476,4515],[-85,-20],[-2,2],[-2,1],[-2,6],[-2,3],[-2,2],[-2,1],[-3,0],[-2,-1],[-4,-3],[-5,-6],[-2,-5],[-3,-8],[-4,-3],[-4,-2],[-11,-1],[-5,2],[-3,2],[-5,8],[-2,1],[-2,2],[-11,1],[-3,1],[-1,2],[-1,3],[0,4],[-1,3],[-1,16],[-1,3],[-1,3],[-1,2],[-2,1],[-3,0],[-2,-1],[-3,-2],[-4,-6],[-2,-5],[-3,-8],[-1,-3],[-4,-2],[-21,-4],[-4,1],[-1,3],[-1,2],[-2,3],[-5,2],[-1,3],[0,3],[-1,5],[-1,2],[-4,4],[-2,3],[0,4],[0,4],[1,3],[1,2],[3,-1],[3,-2],[3,-5],[2,-1],[3,1],[2,6],[2,4],[3,19],[3,11],[1,4],[0,4],[0,3],[-1,3],[0,4],[0,3],[0,5],[1,6],[0,3],[0,2],[-1,0],[-13,-2],[-3,2],[0,1],[-1,2],[-1,3],[-2,2],[-1,1],[-3,1],[-2,1],[0,4],[0,12],[0,3],[-1,15],[-1,7],[-1,4],[-1,3],[-1,2],[-3,1],[-7,2],[-1,2],[-1,2],[-1,4],[1,3],[1,4],[1,2],[7,11],[2,4],[1,3],[0,4],[0,4],[-1,2],[-3,1],[-3,-1],[-15,-16],[-3,-1],[-2,-1],[-5,0],[-2,3],[-2,3],[1,9],[-1,3],[-2,10],[0,4],[0,4],[0,4],[1,14],[1,4],[-1,4],[0,3],[-2,2],[-3,2],[-2,1],[-5,0],[-28,-10],[-25,-16],[-6,-1],[-3,1],[-8,17],[-1,2],[-2,3],[-3,1],[-22,7],[-2,2],[-2,3],[-6,11],[-4,8],[-1,3],[-2,2],[-2,2],[-2,2],[-6,0],[-13,-2],[-20,-9],[-4,-3],[-7,-9],[-11,-17],[-5,-5],[-6,-4],[-4,-2],[-4,0],[-1,1],[-7,6],[-73,20],[-30,24],[-10,3],[-5,1],[-25,-7],[-8,-3]],[[6816,4808],[4,-1],[4,2]],[[6816,4808],[-12,8],[-5,2],[-9,-1],[-9,-2],[-3,-4],[-4,-3],[-8,-2],[-5,0],[-4,2],[-5,-4],[-8,-6],[-15,-20],[-12,-12],[-26,0],[-3,2],[-2,2],[0,3],[-1,3],[-1,8],[-1,8],[0,6],[0,6],[0,3],[-2,2],[-1,1],[-3,1],[-2,0],[-3,-2],[-2,-4],[-3,-9],[0,-6],[0,-4],[3,-11],[2,-9],[0,-2],[0,-1],[-1,-5],[-1,-3],[0,-5],[-1,-26],[-1,-3],[-2,-3],[-6,-7],[-2,-3],[-1,-6],[0,-5],[0,-4],[2,-2],[2,0],[5,-1],[3,0],[1,-3],[1,-2],[0,-3],[0,-6],[0,-3],[1,-4],[1,-3],[1,-4],[1,-2],[2,-3],[4,-3],[18,-7],[2,-2],[1,-3],[1,-2],[2,-7],[0,-5],[0,-4],[-1,-4],[-2,-5],[-1,-4],[-5,-4],[-21,-7],[-3,-2],[-12,-17],[-3,-5],[-2,-8],[0,-5],[-1,-5],[1,-4],[0,-4],[0,-3],[1,-4],[3,-5],[36,-34],[3,-4],[1,-2],[0,-1],[0,-4],[-1,-4],[-1,-4],[-4,-12],[-2,-7],[0,-5],[0,-3],[0,-4],[1,-3],[0,-4],[0,-5],[-1,-13],[0,-4],[0,-3],[3,-2],[8,-3],[11,-3],[3,-1],[1,-3],[1,-3],[0,-5],[-5,-49],[-4,-17],[-3,-31],[-4,-18],[-6,-27],[-1,-5],[0,-3],[1,-3],[1,-3],[9,-11],[3,-5],[1,-3],[1,-3],[0,-4],[0,-5],[-3,-22],[-1,-3],[-2,-9],[-3,-5],[-1,-1],[-5,-2],[-31,3],[-47,14],[-40,26],[-23,5],[-5,-1],[-64,-47],[-59,-19],[-54,-29]],[[6373,4125],[-21,-4],[-46,7],[-73,36],[-10,-1],[-60,-24],[-45,-4],[-6,1],[-1,3],[-2,11],[-1,3],[-2,4],[-2,4],[-4,1],[-10,-2],[-3,1],[-2,3],[-1,4],[-1,10],[-2,7],[0,3],[1,4],[1,4],[3,10],[1,3],[0,3],[-1,4],[-2,5],[-3,5],[-3,2],[-3,1],[-28,-9],[-2,-2],[-2,-1],[-1,-2],[0,-4],[0,-3],[1,-8],[0,-4],[0,-3],[-1,-5],[-1,-2],[-2,-3],[-4,-2],[-50,-16],[-1,-1],[-2,-2],[-2,-3],[0,-3],[0,-3],[-1,-4],[0,-2],[-2,0],[-2,-4],[-4,0],[-2,1],[-5,5],[-5,6],[-3,5],[-2,3],[0,3],[-1,4],[-2,10],[-2,7],[-4,3],[-7,4],[-35,12],[-4,4],[-7,10],[-1,1],[-36,16]],[[6241,5601],[4,-5],[52,-57],[4,0],[6,1],[4,-1],[2,-2],[5,-8],[4,-3],[7,-5],[25,-6],[14,-12],[15,-27],[6,-2],[13,14],[10,14],[2,3],[1,3],[1,3],[0,4],[-1,2],[-2,3],[-2,2],[-2,2],[-2,3],[-1,3],[0,4],[0,4],[0,4],[2,3],[9,17],[5,4],[3,4],[1,3],[-1,16],[-1,4],[0,3],[-1,4],[-1,3],[-1,3],[-14,19],[-1,4],[0,3],[0,3],[0,5],[0,13],[0,5],[1,4],[5,14],[7,30],[1,3],[1,5],[4,3],[5,7],[8,4],[6,1],[3,2],[3,4],[0,3],[-1,4],[-2,1],[-5,0],[-2,1],[-1,0],[0,1],[-1,2],[0,3],[1,4],[1,2],[2,4],[11,14],[7,10],[6,14],[1,3],[1,4],[0,5],[-1,6],[0,5],[1,5],[3,1],[2,0],[5,-4],[84,55],[16,4],[38,18],[5,2],[3,4],[5,9],[4,7],[4,4],[3,3],[3,0],[12,0],[3,1],[4,5],[3,1],[3,0],[13,-7],[1,-3],[2,-2],[-1,-4],[-1,-2],[-3,-5],[-1,-3],[-1,-3],[0,-4],[2,-2],[3,-3],[5,0],[4,2],[2,1],[1,4],[2,4],[0,9],[2,6],[2,5],[3,6],[4,2],[2,2],[3,0],[5,-4],[5,-3],[14,-14]],[[8621,4528],[-74,4],[-22,-13]],[[8485,4354],[-4,-17],[-10,-2],[-17,10]],[[8454,4345],[-8,-1],[-8,-11]],[[8438,4333],[-18,-30],[-8,-12]],[[8261,4065],[-3,-30],[-10,-33],[-15,-30],[-6,-18]],[[8227,3954],[0,-17],[6,-11],[8,-2]],[[8241,3924],[17,4],[9,-1]],[[8279,3910],[-1,-21],[-7,-16]],[[8271,3873],[-9,-10],[-11,-8]],[[8251,3855],[-8,-9],[-10,-25]],[[8233,3821],[-3,-31],[3,-34],[6,-29]],[[8230,3712],[-25,-56],[-16,-12],[10,34],[0,18]],[[8133,3714],[-12,4],[-5,-4]],[[8116,3714],[-42,10],[-50,-27]],[[8024,3697],[-20,-2],[-60,17],[-16,-9]],[[7898,3655],[-49,-108],[-11,-38],[-9,-18],[-10,-6],[3,26],[-11,20],[-16,14]],[[7795,3545],[-16,4],[-8,-3],[-22,-26]],[[7749,3520],[-54,-34],[-4,0]],[[7691,3486],[-13,40],[-1,4],[0,4],[1,5],[1,3],[2,4],[1,2],[14,20],[2,2],[2,4],[3,2],[2,0],[2,-2],[5,-4],[1,-1],[3,0],[2,1],[2,1],[7,9],[1,5],[-1,6],[-10,25],[1,1],[1,5],[4,6],[5,7],[1,3],[0,4],[0,5],[-4,6],[-2,3],[-7,7],[-8,13],[-1,2],[-2,0],[-2,-1],[-1,-3],[-3,-7],[-1,-2],[-1,-1],[-2,2],[-16,20],[-2,5],[-2,7],[-6,31],[-3,12],[-8,20],[-2,4],[-1,3],[-9,8],[-20,13],[-4,4],[-12,18],[-2,5],[-1,3],[0,4],[2,3],[1,2],[3,1],[25,3],[4,3],[2,1],[1,3],[1,3],[0,5],[-1,26],[-1,8],[-1,6],[-7,23],[-2,8],[-1,11],[2,5],[1,3],[4,3],[2,1],[2,0],[2,-2],[1,-1],[2,-3],[2,-1],[5,0],[2,-1],[2,-2],[2,-3],[1,-1],[5,-3],[9,-3],[11,1],[16,10],[2,1],[2,4],[0,3],[0,4],[0,11],[0,5],[1,4],[1,3],[4,11],[1,4],[2,3],[2,10],[1,7],[2,4],[2,2],[3,4],[2,0],[2,1],[1,0],[2,-1],[3,-1],[2,-2],[1,-3],[4,-5],[1,-3],[2,-6],[1,-3],[1,-3],[1,-2],[1,1],[2,1],[4,3],[2,3],[1,3],[0,4],[0,4],[-1,5],[-1,9],[1,4],[0,4],[1,4],[1,8],[5,14],[0,6],[0,9],[0,3],[1,5],[8,20],[1,3],[0,4],[0,3],[-4,1],[-8,0],[-19,5],[-3,-1],[-2,-1],[-1,-7],[-1,-4],[-2,-1],[-2,1],[-4,3],[-8,22],[-2,3],[-37,50],[-11,24],[-4,5],[-20,19],[-4,2],[-3,-1],[-12,-14],[-4,-6],[-1,-1],[-5,5],[-8,11],[-18,31],[-8,11],[-6,5],[-14,-10],[-4,-1],[-3,2],[-1,4],[0,6],[0,6],[1,10],[1,4],[-1,4],[0,3],[-9,2],[-2,2],[-2,4],[-1,5],[-1,10],[2,3],[2,3],[4,1],[4,4],[2,1],[0,3],[-1,2],[-3,3],[-11,4],[-4,4],[-2,6],[-7,27],[-13,44],[-1,7],[-1,15],[-1,8],[-1,3],[-1,2],[-4,0],[-11,-4],[-6,0],[-5,2],[-5,4],[-3,12],[-1,44]],[[7546,5347],[-7,24],[-1,12],[1,30],[0,19],[-1,8],[-7,47],[-1,12],[0,8],[1,5],[1,4],[3,3],[2,1],[5,0],[6,-2],[15,-11],[5,-2],[22,-3],[3,1],[5,7],[5,8],[6,9],[2,1],[4,3],[5,2],[3,0],[6,-2],[44,-35],[1,-2],[2,-1],[1,-3],[3,-2],[5,0],[3,1],[1,4],[0,4],[0,4],[-1,3],[-2,2],[-10,7],[-2,2],[-1,1],[0,3],[-1,3],[0,4],[2,4],[5,12],[3,4],[3,2],[3,-2],[5,-3],[3,-1],[4,0],[3,2],[1,3],[1,4],[1,5],[1,6],[1,7],[2,4],[3,3],[2,1],[3,0],[2,-1],[3,-2],[1,-1],[5,-9],[0,-3],[2,-3],[3,-2],[2,-1],[3,-1],[3,1],[11,4],[3,3],[2,3],[0,3],[-2,19],[1,4],[1,5],[2,7],[3,3],[3,1],[3,2],[1,4],[2,9],[3,10],[1,3],[18,19],[3,3],[13,0],[6,2],[2,3],[2,4],[0,3],[-1,4],[-1,3],[-2,6],[-1,4],[0,3],[0,4],[1,9],[0,3],[-1,4],[-4,4],[-2,2],[0,4],[0,4],[8,20],[3,4],[2,3],[11,7],[3,3],[2,5],[0,4],[0,6],[1,6],[4,11],[2,5],[3,3],[105,98],[4,6],[1,4],[-1,4],[-5,14],[-2,3],[-2,1],[-2,1],[-10,-1],[-18,4],[-5,2],[-2,2],[-2,2],[-1,2],[14,38],[4,4],[2,2],[45,1],[59,-25],[22,1],[7,2],[3,3],[1,4],[1,5],[0,3],[1,11]],[[8067,5991],[6,-1],[4,-4],[5,-7],[4,-5],[2,-6],[2,-3],[2,-2],[3,0],[8,-2],[3,-2],[2,-2],[0,-7],[-1,-3],[-3,-1],[-12,-1],[-3,-2],[-1,-2],[-1,-5],[-2,-12],[0,-6],[1,-3],[4,-4],[20,-13],[13,-13],[2,-1],[3,0],[2,0],[2,3],[12,16],[2,2],[3,1],[18,-1],[3,-1],[1,-3],[0,-5],[-3,-28],[0,-7],[0,-5],[0,-3],[0,-8],[0,-5],[-1,-4],[-2,-3],[-1,-4],[-4,-7],[-2,-4],[1,-8],[2,-13],[14,-49],[0,-3],[0,-1],[0,-1],[-1,-4],[-1,-3],[-2,-2],[-2,-2],[-8,-1],[-1,0],[-1,-3],[0,-3],[0,-4],[-1,-3],[-3,-1],[-5,0],[-2,-1],[-2,-2],[-2,-3],[0,-4],[-1,-4],[0,-5],[1,-2],[2,-3],[3,0],[3,-1],[3,-4],[5,-7],[3,-3],[2,-1],[53,-5],[19,-9],[1,-11],[5,-25],[2,-10],[0,-8],[0,-16],[1,-4],[2,-4],[4,-4],[6,-2],[3,-1],[6,-2],[2,-3],[0,-4],[0,-7],[0,-6],[0,-6],[1,-6],[4,-12],[2,-11],[1,-8],[-1,-5],[-2,-8],[-3,-6],[-6,-13],[-1,-4],[0,-4],[-1,-4],[0,-3],[0,-6],[1,-3],[0,-3],[2,0],[9,2],[3,1],[2,-2],[1,-3],[0,-7],[-2,-4],[0,-4],[-8,-15],[-11,-14],[-2,-5],[-1,-2],[-1,-3],[-1,-4],[-1,-4],[0,-4],[2,-27],[2,-16],[0,-2],[0,-4],[-1,-8],[0,-5],[1,-5],[6,-22],[0,-7],[0,-6],[0,-4],[-4,-12],[0,-5],[-1,-4],[2,-4],[2,-4],[5,-5],[6,-4],[6,-3],[3,-2],[1,-3],[1,-6],[0,-4],[-1,-8],[0,-4],[0,-1],[-2,-5],[-1,-8],[-2,-13],[0,-8],[0,-8],[1,-5],[3,-5],[7,-7],[4,-3],[3,-1],[3,0],[2,-1],[6,-6],[2,-1],[3,0],[3,2],[1,2],[3,5],[1,3],[4,-1],[2,-5],[6,-14],[2,-8],[1,-6],[0,-3],[1,-4],[2,-4],[2,-4],[11,-12],[4,-10],[6,-20],[1,-5],[0,-3],[-1,-3],[0,-3],[-1,-4],[-1,-2],[-2,-3],[-2,-2],[-2,0],[-21,-6],[-2,-1],[0,-1],[-2,-3],[0,-3],[1,-3],[1,-8],[3,-13],[2,-13],[1,-5],[3,-3],[6,-4],[7,-3],[46,7],[3,-1],[2,-3],[3,-10],[2,-9],[1,-11],[3,-10],[6,-26],[1,-3],[1,-4],[0,-4],[-2,-8],[0,-9],[0,-4],[0,-4],[3,-5],[10,-9],[59,-34],[27,-24],[1,-4],[2,-5],[0,-9],[0,-6],[-2,-5],[-4,-9],[-2,-8],[-1,-4],[0,-4],[-1,-4],[2,-7],[5,-8],[11,-16],[6,-5],[4,-3],[34,1],[44,-16],[1,-6],[2,-9],[-2,-36],[0,-9],[3,-8],[1,-4],[3,-3],[4,-5],[0,-7],[1,-7],[-8,-55],[-1,-9],[0,-1]],[[8149,6711],[1,-7],[1,-9],[8,-26],[1,-3],[3,-6],[2,-2],[1,-3],[9,-7],[1,-4],[0,-3],[-2,-4],[-3,-1],[-2,-1],[-10,-1],[-10,-4],[-8,-7],[-2,-4],[-1,-2],[0,-3],[1,-4],[0,-2],[20,-22],[1,-4],[0,-3],[-2,-4],[-3,-2],[-6,-5],[-1,-3],[-2,-2],[-1,-5],[-1,-3],[-1,-5],[-2,-8],[-2,-1],[-1,0],[-11,5],[-3,-1],[-2,-2],[-2,-3],[-2,-5],[-6,-14],[-1,-3],[0,-6],[1,-5],[1,-2],[3,-1],[13,8],[2,0],[3,0],[1,-2],[2,-3],[1,-1],[1,-4],[0,-1],[0,-3],[0,-30],[0,-13],[0,-5],[0,-3],[0,-4],[-1,-5],[-3,-6],[-6,-10],[0,-6],[-5,-18],[-2,-5],[-3,-4],[-3,-3],[-2,-2],[-1,-2],[0,-3],[0,-6],[4,-15],[1,-3],[2,-6],[2,-2],[0,-4],[-1,-2],[-3,-3],[-1,-2],[0,-5],[5,-22],[0,-3],[0,-4],[0,-5],[-3,-6],[-2,-3],[-9,-9],[-2,-4],[-2,-3],[-2,-16],[-2,-18],[-3,-10],[-3,-5],[-2,-2],[-7,-3],[-2,-1],[-2,-2],[-5,-14],[-2,-3],[0,-4],[1,-6],[2,-4],[5,-8],[0,-3],[2,-7],[2,-7],[1,-7],[-3,-54],[0,-13],[1,-8],[2,-1],[9,-2],[2,-2],[3,-1],[2,-3],[1,-3],[1,-2],[1,-4],[0,-5],[-2,-8],[-6,-16],[-6,-11],[-13,-13],[-12,-15]],[[6736,5918],[2,7],[0,8],[0,13],[-2,12],[-3,11],[-1,6],[-10,24],[0,4],[0,5],[0,5],[2,10],[3,10],[4,9],[24,40],[2,1],[2,2],[3,0],[2,-1],[2,-2],[3,-1],[2,-6],[1,-3],[6,-7],[5,-4],[2,-1],[46,-6],[10,3],[25,19],[7,8],[15,24],[11,30],[12,23],[1,4],[-1,5],[-5,11],[0,4],[2,6],[0,3],[-1,4],[-4,4],[-6,5],[-2,4],[-1,7],[-3,10],[-2,7],[0,6],[1,5],[1,6],[1,3],[1,3],[2,2],[8,3],[4,2],[2,1],[3,0],[27,-10],[2,0],[2,1],[2,7],[2,3],[3,1],[7,1],[3,1],[1,2],[0,2],[0,2],[-1,8],[-5,7],[-10,8],[-8,13],[-9,8],[-2,3],[-1,7],[1,3],[3,1],[22,0],[10,3],[1,1],[3,2],[-2,9],[-3,15],[-21,58],[-2,7],[-2,7],[0,3],[1,4],[1,2],[4,4],[2,1],[0,4],[0,3],[-2,11],[-1,4],[-1,2],[-4,2],[-14,0],[-2,-1],[-2,-3],[-2,-3],[-1,-8],[-1,-4],[-2,-2],[-2,0],[-6,1],[-24,11],[-2,1],[-2,4],[0,6],[-1,4],[-1,2],[-14,4],[-2,2],[-2,4],[-1,7],[-1,13],[-1,4],[-1,5],[-9,9],[-3,3],[-2,4],[-1,7],[-3,17],[-1,6],[0,15],[2,30],[-1,8],[-1,7],[-1,4],[-2,5],[-8,11],[-3,4],[-2,0],[-4,0],[-2,0],[-2,-1],[-6,-6],[-2,-1],[-3,0],[-6,1],[-28,21],[-3,4],[-6,12],[-3,4],[-3,3],[-20,-1],[-6,2],[-2,2],[-3,1],[-4,5],[-4,8],[-2,3],[-2,1],[-9,4],[-2,2],[-3,4],[-5,12],[-1,3],[-3,4],[-1,6],[-4,29],[0,3],[-7,30],[0,2],[5,12],[5,9],[20,30],[3,6],[1,9],[2,14],[-1,58],[-4,15]],[[7079,7200],[7,13],[5,3]],[[7091,7216],[9,1],[4,2]],[[7109,7227],[9,20],[7,6],[8,5]],[[7274,7226],[14,-10],[46,-109]],[[7334,7107],[11,-7],[10,0]],[[7366,7107],[10,11],[10,13]],[[7399,7132],[10,-9],[10,-3]],[[7419,7120],[13,-14],[15,-4]],[[7447,7102],[4,-2],[7,-7],[1,-4],[-1,-4]],[[7458,7085],[-1,-24],[-1,-10]],[[7457,7042],[7,-9],[11,-5],[10,-2],[11,1],[8,9]],[[7526,7085],[78,67],[30,16],[30,4]],[[7664,7172],[34,-8],[67,29]],[[7779,7209],[28,40],[13,9]],[[7883,7232],[7,-35],[7,-28],[41,-29]],[[7952,7117],[1,-45],[-4,-24],[-2,-12]],[[7948,7025],[4,-8],[16,-24]],[[7968,6993],[44,-102],[17,-17]],[[8029,6874],[37,-24],[18,-18]],[[8084,6832],[15,-20],[15,-28],[15,-39],[0,-1]],[[8149,6711],[21,20],[5,2],[6,-1]],[[8189,6723],[5,-2],[22,23],[2,47]],[[8220,6872],[7,2],[30,-3]],[[8257,6871],[12,3],[10,-2],[5,-11],[15,-61],[6,-13],[9,-6]],[[8370,6753],[34,8],[23,-6]],[[8435,6762],[11,6],[2,3]],[[8448,6768],[3,-21],[2,-17]],[[8453,6730],[3,-9],[2,-5]],[[8676,6673],[12,-14],[1,-1],[26,-100]],[[8715,6558],[11,-22],[13,-13]],[[8739,6523],[18,-6],[18,6]],[[8775,6523],[18,12],[17,6]],[[8827,6524],[9,-6],[27,-4]],[[8869,6503],[5,-25],[7,-45],[12,-36]],[[8893,6397],[14,-15],[17,-6],[19,-14]],[[8967,6327],[9,-6],[13,-1]],[[8989,6320],[15,5],[13,7],[12,11]],[[9127,6339],[-7,-14],[-18,-17],[-8,-11]],[[9094,6297],[-9,-34],[3,-34]],[[9142,6080],[-6,-36],[-1,-38]],[[9135,6006],[-4,-10],[-11,-10]],[[9096,5939],[-9,-15],[-28,-29]],[[9034,5836],[-1,-31],[-2,-10]],[[9026,5789],[-8,-1],[-13,4]],[[9005,5792],[-15,1],[-38,-21]],[[8952,5772],[-24,2],[-7,-9],[-3,-53],[5,-13],[10,-9]],[[8933,5690],[9,-13],[6,-19]],[[9005,5613],[16,4],[6,-2],[4,-7]],[[9064,5612],[9,12],[12,-1],[9,-18]],[[9094,5605],[0,-21],[-7,-21]],[[9078,5545],[-20,-24],[-20,-4],[-51,31]],[[8976,5547],[-10,-8],[-9,-15]],[[8946,5490],[-12,-7],[-3,-8]],[[8902,5331],[-5,-26],[19,2],[9,5]],[[9001,5272],[4,-27],[1,-9]],[[9006,5236],[0,-6],[2,-4]],[[9008,5226],[0,-4],[-2,-8]],[[9006,5214],[-4,-3],[-5,1],[-2,-1]],[[8995,5211],[1,-17],[5,-8]],[[9006,5180],[15,-48],[5,-28]],[[9029,5090],[4,-9],[-10,-17],[-8,-15]],[[8983,5008],[33,-31],[9,2]],[[9066,4971],[-2,-20],[-6,-20]],[[9058,4931],[-7,-14],[-23,-26]],[[9028,4891],[-8,-16],[-25,-67],[-5,-21]],[[8990,4787],[0,-25],[6,-33]],[[8996,4729],[-1,-10],[0,-1]],[[8991,4719],[-25,-7],[-5,-5],[-4,-11]],[[8962,4685],[5,-11],[6,-24]],[[8973,4650],[1,-10],[-1,-17]],[[8883,4499],[-14,1],[-29,-8],[-13,3]],[[8816,4501],[-20,-8],[-10,-1]],[[8786,4492],[-9,6],[-15,16]],[[8762,4514],[-10,2],[-68,-9],[-18,-8]],[[7691,3486],[-4,-1],[-5,-5]],[[7667,3460],[-5,-5],[-16,-9],[-26,-38],[-15,-3],[5,-26]],[[7610,3379],[-6,-23],[-10,-24],[-5,-27],[-3,-29],[-8,-28]],[[7578,3248],[-11,-17],[-13,5],[0,8],[4,0]],[[7558,3244],[10,-7],[8,30]],[[7582,3324],[-4,4],[-17,32]],[[7561,3360],[-7,7],[-15,8]],[[7532,3383],[-7,-8],[-9,1]],[[7496,3379],[-6,-7],[-4,-8],[-3,-4]],[[7483,3360],[-30,0],[-20,-18]],[[7433,3342],[-23,-8],[-15,-11]],[[7395,3323],[-14,-17],[-31,-52]],[[7335,3199],[0,15],[-2,5],[-4,-5],[-5,-3]],[[7324,3211],[0,-6],[-1,-2]],[[7323,3203],[-3,10],[2,4]],[[7322,3229],[-5,6],[-1,1]],[[7316,3236],[-4,12],[-3,6]],[[7271,3258],[-34,7],[-63,-18]],[[7174,3247],[-11,1],[-35,-32]],[[7128,3216],[-26,-24],[-13,-17]],[[7089,3175],[-38,-69],[-15,-22],[-55,-45]],[[6944,2974],[-17,-19],[-7,-10]],[[6876,2829],[-3,-5]],[[6873,2824],[-5,5],[-1,1]],[[6867,2830],[12,35]],[[6879,2865],[17,27],[7,18]],[[6904,2937],[-7,-14],[-9,-11]],[[6876,3018],[-3,4],[-8,0],[-5,3]],[[6857,3028],[-6,10],[-8,7]],[[6837,3060],[-5,18],[-1,20]],[[6821,3078],[4,-22],[8,-19]],[[6839,3008],[3,-9],[1,-8]],[[6837,2963],[-16,-26],[-27,-68],[-2,-2]],[[6792,2867],[-16,5],[-5,7],[0,18],[0,5],[-2,21],[-1,8],[1,4],[0,4],[3,13],[0,4],[-1,6],[-11,77],[-3,8],[-3,5],[-13,0],[-3,1],[-2,2],[-7,7],[-4,2],[-7,6],[-10,14],[0,1],[-2,0],[-22,-3],[-6,2],[-3,1],[0,1],[0,1],[0,11],[0,4],[1,4],[1,1],[2,3],[2,3],[0,5],[0,6],[-1,3],[-3,2],[-22,3],[-16,-1],[-4,2],[-2,2],[-2,3],[-1,3],[0,5],[-1,3],[-11,28],[-2,6],[-1,3],[-1,4],[0,4],[0,3],[1,5],[3,6],[5,8],[1,4],[0,3],[1,4],[-1,4],[0,7],[-2,10],[-3,10],[-2,4],[-3,3],[-11,2],[-3,2],[-3,2],[-9,10],[-2,1],[-2,-1],[-2,-1],[-4,0],[-4,2],[-2,4],[-1,4],[-1,11],[0,4],[1,4],[1,3],[1,3],[2,1],[2,2],[2,1],[13,0],[2,1],[3,2],[1,1],[1,4],[1,3],[3,6],[4,4],[4,4],[2,1],[0,3],[2,3],[3,13],[0,4],[2,4],[3,6],[1,3],[0,3],[1,25],[0,4],[1,4],[2,2],[1,1],[5,3],[12,7],[2,3],[1,5],[0,8],[-2,17],[-2,7],[-1,5],[-2,3],[-3,2],[-2,1],[-5,1],[-3,1],[-4,4],[-1,4],[-1,4],[-5,34],[-2,6],[-2,3],[-1,3],[-23,12],[-4,3],[-6,7],[-2,2],[-2,2],[-11,3],[-4,3],[-1,3],[-1,4],[-1,16],[-2,10],[0,5],[-2,4],[-2,1],[0,1],[-6,3],[-5,2],[-1,4],[-1,3],[-1,8],[-1,35],[-7,51],[-2,4],[-3,3],[-5,4],[-5,3],[-1,4],[-1,5],[0,6],[-3,15],[0,7],[-1,9],[0,4],[2,22],[0,4],[0,3],[-4,30],[0,3],[0,4],[1,4],[1,3],[2,3],[1,3],[1,4],[0,9],[-1,4],[-1,4],[-7,7],[-3,5],[-1,5],[-1,4],[0,4],[1,9],[0,4],[1,4],[2,4],[1,1],[7,5],[2,2],[2,3],[0,4],[-1,2],[-1,3],[-2,1],[-2,1],[-31,-5],[-5,-3],[-1,-3],[-1,-3],[-1,-4],[0,-4],[-1,-4],[-3,-6],[-1,-3],[-2,-8],[-1,-3],[-3,-1],[-2,-1],[-3,0],[-2,2],[-6,5],[-3,2],[-6,-1],[-2,-2],[-6,-7],[-3,-2],[-3,-1],[-3,1],[-3,2],[-1,4],[0,3],[-1,16],[0,4],[-2,5],[-4,17],[-24,120],[-12,50]],[[5646,2617],[67,-14],[32,10]],[[5773,2594],[20,14],[11,1],[5,-11],[4,-7],[22,2],[5,-13]],[[5832,2566],[-195,51],[3,6]],[[6873,2824],[-7,-13]],[[6866,2811],[-25,-78],[-11,-25],[-11,-19]],[[6800,2679],[-11,-15],[-16,-6],[-11,-14],[-19,-13],[-8,5]],[[6737,2646],[15,27],[16,16]],[[6768,2689],[-2,5],[-2,10]],[[6813,2728],[23,20],[14,41],[11,19]],[[6861,2808],[5,19],[1,3]],[[5419,2719],[6,-7],[-10,4],[-19,14]],[[5126,2886],[-3,17],[-5,28],[0,19]],[[5126,2945],[8,-46],[7,-31]],[[5152,2846],[18,-17],[151,-58]],[[6792,2867],[-13,-26],[-21,-20]],[[6709,2803],[-6,4],[-2,5],[0,9],[-2,4]],[[6691,2811],[0,-12],[-2,-10]],[[6656,2741],[-1,-11],[2,-8],[3,-18],[2,-68]],[[6664,2620],[5,-17],[16,-129]],[[6724,2329],[20,-65]],[[6105,2686],[-6,21]],[[6061,2682],[-1,-16],[13,-12]],[[6060,2644],[-12,-6],[-4,-13]],[[6044,2625],[9,-22],[-4,0]],[[6039,2609],[-28,0],[-5,6],[-14,31]],[[5992,2646],[-12,18],[-13,3]],[[5958,2646],[-3,5],[-1,2]],[[5954,2653],[-3,0],[-2,1],[7,11],[5,15]],[[5961,2680],[-1,13],[-10,4]],[[5913,2689],[4,15],[1,12],[5,75]],[[5923,2791],[-11,-18],[-8,-30]],[[5876,2703],[-5,-5],[-5,-1]],[[5851,2712],[-27,21],[5,-30],[-7,-15],[-49,-12],[-6,0],[-4,1]],[[5763,2677],[-4,5],[-3,0]],[[5741,2682],[-26,14],[-10,1]],[[5617,2661],[-5,-6],[-7,-12]],[[5605,2643],[-4,-5],[-19,-4]],[[5489,2677],[-10,11],[-6,0]],[[5473,2688],[-2,1],[-1,5],[-2,13]],[[5467,2712],[-1,8],[-3,14],[-2,7]],[[5472,2760],[1,11],[-13,-10]],[[5435,2762],[-21,12],[-6,2]],[[5402,2781],[-18,37],[-12,18]],[[5295,2893],[0,-12],[1,-14]],[[5294,2850],[-30,2],[-8,4]],[[5256,2856],[-8,8],[-5,11],[-3,17],[6,14]],[[5273,2925],[26,-9],[34,10],[5,5]],[[5338,2931],[24,35],[6,3]],[[5374,2968],[3,3],[-4,14]],[[5307,3038],[-44,29]],[[5279,3108],[5,-2],[40,0],[40,-15]],[[5364,3091],[27,8],[9,-1]],[[5516,3050],[18,11],[13,23]],[[5547,3084],[-8,19],[12,27],[33,45],[8,8]],[[5629,3208],[8,8],[6,10]],[[5643,3226],[5,18]],[[5648,3244],[-11,-8]],[[5504,3151],[-31,27],[-7,19],[-2,2]],[[5416,3149],[-7,10],[-5,39],[-9,9]],[[5359,3222],[-7,11],[-7,19]],[[5335,3311],[-3,10]],[[4642,2719],[5,-7],[3,-3],[1,-4],[0,-7],[-1,-12],[-4,-9],[-3,-7],[-1,-6],[-3,-5],[-11,-17],[-4,-4],[-5,4],[-4,8],[-26,89],[-12,28],[-18,24],[-33,21],[-10,2],[-8,7],[-31,56],[-6,16],[-1,8],[-1,12],[1,7],[2,6],[1,8],[5,17],[36,23],[6,0],[4,-3],[4,-5],[2,-7],[-3,-20],[4,-22],[8,-19],[7,-12],[9,-3],[3,16],[1,27],[3,26],[5,-15],[3,-19],[2,-22],[0,-21],[4,-14],[28,-25],[4,-8],[2,-5],[1,-6],[2,-11],[0,-9],[-1,-7],[-1,-8],[-1,-8],[4,-14],[28,-41]],[[5082,6564],[2,27],[5,51],[-1,28],[-7,59],[1,24],[6,33],[0,37],[13,-11],[6,-3],[3,3],[3,11],[6,8],[8,0],[6,-8],[-5,-17],[7,-16],[10,-18],[6,-23],[2,-95],[5,-28],[-5,-5],[-5,2],[-4,4],[-5,-1],[-4,-9],[-7,-29],[-4,-6],[-21,-29],[-14,-9],[-7,20]],[[6544,5278],[-23,-39],[-14,7],[-10,18],[3,21],[-1,13],[-8,8],[-9,11],[-13,-1],[-13,0],[-8,16],[3,26],[-3,20],[-17,3],[-14,8],[-2,25],[-7,13],[-17,4],[-12,28],[-11,18],[-16,-1],[-11,12],[-16,8],[-15,6],[-11,12],[-8,10],[-6,8],[-8,-11],[-12,-5],[-4,18],[-7,27],[-11,17],[-17,18],[-16,4],[-4,12],[-17,14],[-13,8],[-10,11],[-13,9],[-10,-9],[-2,-9],[-4,14],[-14,21],[-16,7],[-16,16],[-13,19],[-15,34],[23,6],[15,-12],[21,-17],[26,-23],[17,-11],[8,-3],[10,-10],[15,-2],[16,-6],[15,-17],[21,-20],[17,-18],[10,-13],[27,13],[20,4],[5,8],[1,24],[6,20],[8,-15],[-4,-37],[-10,-30],[1,-18],[12,7],[9,13],[8,9],[12,5],[8,-8],[-8,-6],[-9,-10],[9,-13],[12,1],[8,-1],[6,-22],[0,-22],[2,-24],[3,-14],[17,-15],[12,-21],[12,-17],[29,-29],[24,-20],[19,-38],[23,-33],[5,-34]],[[4619,7726],[2,14],[0,15],[-1,16],[6,5],[0,18],[-2,22],[2,20],[-8,8],[-8,40],[-11,10],[-55,9],[-8,5],[1,6],[14,2],[4,2],[6,10],[6,2],[6,-2],[6,-4],[6,0],[6,6],[-2,3],[-1,3],[-1,4],[-2,5],[6,8],[2,-5],[4,-4],[5,-1],[4,2],[3,5],[0,7],[0,7],[1,11],[7,18],[8,1],[9,-3],[9,9],[3,10],[-1,10],[-4,9],[-4,4],[-7,3],[-1,7],[3,15],[1,3],[4,2],[3,5],[2,12],[1,9],[5,7],[10,10],[6,-1],[3,-7],[3,-9],[4,-6],[4,3],[15,20],[-1,-21],[-3,-17],[-4,-13],[-2,-12],[-1,-54],[-2,-14],[4,5],[5,0],[4,-7],[3,-14],[-1,-10],[-2,-12],[-12,-42],[-3,-23],[0,-24],[5,-26],[-4,-16],[-2,-26],[2,-30],[4,-24],[-5,-22],[-6,-84],[-5,-32],[-5,-21],[-7,-31],[-2,-33],[8,-25],[0,-8],[2,-10],[0,-11],[-5,-7],[-3,5],[-18,25],[-8,7],[-10,15],[-10,20],[-5,15],[-1,8],[1,18],[-10,26],[0,14],[3,43],[2,12],[4,13],[7,37],[9,26]],[[6065,3437],[8,6],[4,12],[2,15],[3,14],[9,14],[1,1],[3,15],[4,45],[3,12],[9,23],[2,10],[-2,12],[-7,-5],[-9,0],[-9,5],[-4,10],[4,9],[17,-1],[8,10],[-3,8],[3,13],[7,19],[3,12],[2,-12],[0,-12],[-2,-12],[0,-16],[11,16],[42,85],[5,15],[2,15],[-2,18],[-4,8],[-13,12],[5,4],[3,-1],[3,-3],[5,0],[29,19],[37,64],[15,37],[7,38],[-12,30],[6,5],[6,2],[5,3],[2,9],[-2,15],[-4,12],[-4,9],[-2,7],[-15,32],[-3,16],[15,0],[-3,10],[-7,10],[-3,9],[-2,12],[-1,32],[0,9],[1,13],[2,7],[3,0],[7,-17],[7,-4],[9,4],[12,10],[19,23],[13,6],[11,-11],[14,-32],[7,-11],[8,-4],[25,0],[18,36],[0,7],[-12,24],[-3,11],[5,10],[11,3],[3,-11],[1,-19],[4,-18],[7,12],[5,1],[14,-13],[13,-7],[3,-5],[4,-14],[2,-3],[4,0],[4,2],[29,30],[2,4],[-7,23],[9,5],[28,2],[29,10],[10,-2],[9,-9],[18,-24],[106,-34],[21,0],[20,11],[16,21],[27,56],[9,26],[10,38],[6,43],[-2,38],[-17,46],[-3,16],[13,26],[2,-12],[6,-21],[2,-7],[2,-8],[11,-14],[3,-7],[1,-13],[3,-10],[5,-17],[3,-18],[3,-31],[4,-17],[4,-11],[12,-19],[6,-14],[3,-14],[6,-36],[4,-15],[4,-6],[9,-9],[3,-7],[1,-10],[0,-18],[2,-8],[-3,-7],[2,-15],[-7,-10],[-10,-9],[-4,-14],[2,-26],[2,-13],[-2,-4],[-12,11],[-6,9],[-4,4],[-6,0],[-5,-2],[-10,-9],[-6,-2],[-36,6],[-10,-7],[-9,-24],[-8,-5],[-10,-3],[-24,-19],[-20,-1],[-16,14],[-27,45],[-19,18],[-5,8],[-10,29],[-3,4],[-12,3],[-38,26],[-14,8],[-19,-7],[-30,-30],[-20,-11],[-39,-5],[-15,-14],[-6,-16],[-5,-19],[-7,-16],[-9,-7],[-33,-7],[-62,7],[-18,-7],[-7,-11],[-3,-15],[0,-47],[17,10],[34,-1],[21,25],[3,-2],[1,-6],[-1,-4],[-2,-3],[-7,-14],[-2,-5],[3,-11],[15,-19],[5,-14],[-19,6],[-39,26],[-19,-9],[-7,-11],[-6,-14],[-5,-17],[-3,-40],[-3,-14],[-36,-66],[-4,-10],[-4,-19],[-8,-13],[-11,-10],[-8,-13],[-4,-16],[-3,-21],[-4,-20],[-7,-8],[-9,-6],[-39,-67],[-2,-7],[-3,-18],[-1,-19],[0,-10],[9,-10],[12,-3],[25,1],[0,-7],[-10,1],[-39,-13],[-9,-8],[-6,-13],[-6,-18],[21,0],[10,-5],[-1,-14],[-4,-3],[-10,7],[-5,-4],[-2,-2],[-2,-1],[-5,0],[-2,-2],[-3,-12],[-43,-4]],[[5895,5812],[-10,-38],[0,-8],[12,-37],[3,-15],[-7,2],[-4,7],[-3,11],[-4,10],[-7,9],[-5,1],[-25,-8],[-25,-19],[-15,-5],[46,37],[5,5],[3,10],[0,10],[-2,9],[-1,10],[3,14],[-4,10],[-5,4],[-11,0],[-6,3],[-14,12],[-34,-27],[-5,2],[-4,10],[-11,9],[-11,5],[-10,1],[-19,-13],[-10,-2],[-9,7],[-3,22],[-14,32],[-31,56],[-66,73],[-33,15],[-5,10],[-4,11],[-9,12],[-16,18],[-61,33],[-19,17],[-40,61],[-15,12],[-15,5],[-6,8],[-19,47],[-7,12],[-9,1],[-39,52],[18,5],[10,8],[4,12],[3,21],[8,3],[10,-5],[8,-8],[13,-20],[16,-38],[15,-15],[33,-15],[18,0],[16,15],[25,-25],[6,-4],[5,-5],[14,-26],[6,-6],[7,-4],[17,-32],[8,-8],[27,-14],[19,-19],[8,-2],[11,2],[3,-2],[2,-5],[2,-8],[3,-7],[5,-3],[6,-2],[15,-10],[9,-3],[9,0],[9,2],[7,5],[7,8],[0,7],[-29,32],[-7,12],[0,6],[1,7],[0,6],[-2,2],[-1,1],[-7,7],[-19,30],[5,9],[6,16],[8,33],[6,38],[5,8],[19,7],[5,-9],[8,-20],[2,-3],[-3,-15],[-20,-49],[22,-5],[55,-40],[-5,-17],[-6,-14],[-2,-9],[11,-4],[12,0],[6,-4],[4,-13],[9,-41],[6,-15],[8,-10],[9,-4],[11,-8],[5,-17],[8,-40],[8,-12],[22,-27],[5,-8],[20,-62],[3,-4],[9,-6],[3,-5],[11,-31],[0,-5],[-9,-37],[-4,-5]],[[6924,1816],[9,-7],[8,-4],[8,-5],[6,-14],[-10,-19],[-6,-7],[-7,-4],[-9,6],[-7,13],[-5,12],[-5,6],[-53,31],[-9,9],[-3,8],[-8,6],[-8,4],[-6,0],[-8,-4],[-5,-4],[-5,0],[-27,34],[-6,11],[-13,41],[-7,10],[0,7],[6,5],[16,6],[6,7],[2,5],[6,7],[2,7],[2,11],[-1,3],[-2,3],[-8,73],[-2,14],[-11,17],[-3,13],[-2,15],[-4,8],[-5,4],[-5,7],[-12,44],[-5,6],[-24,-4],[-7,4],[-4,6],[-5,16],[-4,8],[-3,2],[-12,5],[4,10],[8,12],[3,8],[0,5],[-10,-2],[-17,-16],[-10,-3],[-17,9],[-9,3],[-10,-5],[8,19],[10,22],[5,23],[-7,23],[-12,8],[-12,-8],[-11,-13],[-13,-8],[3,13],[6,19],[1,15],[2,11],[4,8],[6,6],[6,1],[1,2],[15,4],[3,-2],[3,10],[2,11],[-1,12],[-3,14],[-12,-24],[-8,-9],[-19,-6],[-8,-7],[-47,-71],[-19,-15],[-21,-7],[0,8],[14,14],[5,8],[3,8],[2,13],[4,11],[6,4],[3,6],[2,25],[4,6],[7,1],[5,4],[5,4],[4,5],[4,7],[7,17],[2,6],[3,16],[-1,8],[-1,6],[-1,10],[-5,6],[-33,19],[0,-7],[9,-16],[5,-11],[2,-10],[-5,-12],[-7,1],[-8,4],[-3,-3],[-1,-10],[-4,-13],[-9,-21],[-6,-3],[-5,10],[-7,26],[6,16],[4,5],[-8,7],[-10,-4],[-8,-14],[-3,-22],[-1,-26],[-3,-10],[-2,7],[0,26],[-3,0],[-1,-7],[-2,-4],[-3,-2],[-4,-2],[1,4],[2,4],[1,5],[-1,9],[-12,-22],[1,11],[4,17],[1,13],[2,5],[10,8],[4,4],[1,21],[-6,12],[-10,8],[-7,11],[3,1],[9,6],[-11,27],[-6,10],[-8,-2],[-2,-5],[-2,-18],[-3,-5],[-4,-1],[-5,2],[-5,5],[-3,5],[-2,16],[1,17],[-1,7],[-17,-41],[-6,-3],[-5,14],[6,12],[-8,8],[-21,10],[-3,-8],[-2,5],[-3,5],[-3,3],[-4,2],[-2,2],[-4,5],[-3,1],[-1,-3],[-1,-5],[1,-5],[1,-2],[6,-4],[26,-36],[5,-9],[3,-12],[0,-23],[-2,-18],[-7,-5],[-7,-1],[-6,-9],[-12,20],[-5,14],[-2,18],[8,-6],[7,0],[6,4],[4,9],[0,7],[-25,37],[-16,13],[-19,44],[-9,11],[-9,4],[-22,1],[-6,-3],[2,-7],[9,-13],[5,-3],[5,2],[3,-2],[3,-11],[-10,-6],[0,-9],[4,-12],[2,-13],[-3,-12],[-8,2],[-7,9],[-2,5],[-4,4],[-2,10],[-3,10],[-6,5],[-4,-5],[-5,-10],[-5,-7],[-8,-1],[3,8],[-2,7],[-1,3],[0,5],[9,5],[-4,18],[-18,35],[5,8],[2,11],[0,28],[-3,7],[-20,12],[0,-35],[-2,-17],[-6,-7],[-21,19],[-4,7],[-21,61],[-4,8],[-5,8],[0,6],[13,0],[8,-5],[7,7],[6,11],[7,10],[7,2],[10,-3],[8,-7],[4,-11],[2,-3],[5,-2],[10,1],[5,2],[7,6],[6,0],[27,-19],[9,-3],[5,-10],[12,-45],[6,-10],[3,-2],[1,-5],[1,-6],[1,-1],[3,0],[1,3],[1,2],[5,3],[3,4],[3,3],[5,-1],[0,-3],[0,-7],[2,-8],[1,-5],[2,-1],[5,1],[3,0],[9,-4],[6,0],[-1,8],[-2,11],[-4,25],[-4,5],[-5,1],[-4,4],[-8,9],[0,7],[12,-4],[5,3],[2,13],[2,9],[5,-2],[6,-9],[3,-10],[0,-7],[-3,-23],[3,-12],[3,-4],[0,6],[19,33],[-16,25],[-6,14],[-3,15],[0,28],[2,17],[5,7],[9,-4],[15,-20],[11,-28],[24,-77],[2,-8],[2,-13],[-1,-26],[1,-12],[5,-5],[4,12],[4,26],[3,27],[0,15],[-5,5],[-11,3],[-3,6],[0,8],[4,6],[4,6],[1,6],[4,-2],[28,-24],[32,-40],[17,-7],[15,17],[3,17],[2,10],[3,3],[5,-3],[6,-8],[5,-11],[2,-11],[0,-29],[-1,-11],[-5,-14],[-1,-10],[-3,-14],[-6,14],[-5,21],[-2,10],[-5,-7],[-6,-18],[-3,-10],[-2,18],[1,5],[2,7],[-1,4],[-5,1],[-16,-21],[-4,-19],[0,-19],[5,-16],[9,-12],[-4,-12],[-4,2],[-5,8],[-7,2],[-5,-7],[-5,-16],[-2,-14],[4,-7],[13,1],[11,-3],[5,-10],[-5,-24],[10,-4],[15,30],[19,-14],[9,16],[25,79],[2,13],[-2,20],[-4,20],[-2,21],[2,22],[15,24],[21,-4],[21,-20],[13,-21],[3,-13],[4,-19],[1,-18],[-6,-9],[-4,4],[-6,15],[-3,4],[-12,2],[-18,-9],[-6,-5],[-4,-11],[9,-7],[8,-15],[6,-17],[2,-15],[14,-22],[4,-4],[4,6],[2,10],[2,11],[6,2],[5,-10],[4,-22],[3,-25],[1,-19],[0,-23],[2,-11],[3,-9],[2,-3],[5,-7],[2,-2],[3,-3],[-1,-6],[-2,-5],[-1,0],[-1,0],[-5,-7],[-1,0],[0,-6],[1,-6],[2,-4],[1,1],[-9,-57],[-1,-11],[2,-4],[5,1],[5,2],[4,5],[3,6],[3,9],[1,8],[2,7],[3,5],[5,-1],[5,-7],[5,-10],[3,-8],[4,-17],[6,-40],[5,-18],[16,-44],[1,-9],[1,-4],[7,-20],[1,-13],[4,-5],[4,-4],[4,-4],[4,-11],[9,-32],[12,-27],[3,-10],[20,-37],[98,-226],[3,-5],[6,-1],[4,-4],[3,-8],[3,-10],[4,-7]],[[4440,9999],[0,-1],[-4,-6],[-3,-8],[-2,-8],[2,-7],[4,-6],[7,-7],[0,-6],[-2,-4],[-2,-6],[-1,-8],[-2,-8],[3,-9],[6,-10],[1,-9],[1,-31],[2,-13],[4,-11],[-10,0],[0,-8],[11,-11],[4,-16],[4,-18],[7,-13],[-1,-4],[0,-1],[-1,0],[-1,-2],[7,-16],[4,-10],[1,-11],[-1,-11],[-3,-2],[-3,5],[-2,8],[-3,0],[0,-12],[2,-9],[7,-15],[3,8],[0,-5],[1,-4],[1,-2],[2,-4],[10,10],[8,-20],[8,-27],[7,-15],[6,-4],[15,-18],[3,-7],[-1,-5],[-2,-6],[-1,-7],[1,-12],[2,0],[11,-6],[-5,-13],[-2,-5],[-3,-4],[5,-14],[5,-15],[-17,6],[-3,-6],[4,-21],[3,-9],[3,-3],[2,-6],[1,-16],[16,-11],[-1,-9],[3,-7],[4,-4],[5,-2],[6,-3],[2,-8],[2,-7],[3,-4],[8,-7],[-2,-16],[-11,-28],[28,-21],[4,-1],[11,1],[2,-4],[-1,-19],[1,-6],[10,-15],[14,-9],[30,-6],[0,-7],[-9,-16],[-2,-39],[-8,-4],[0,-7],[4,-6],[9,-18],[6,-6],[5,17],[4,-10],[2,-18],[0,-9],[7,-6],[5,-15],[9,-31],[4,-6],[14,-13],[6,-2],[10,-2],[1,-5],[-2,-8],[-2,-14],[4,-11],[8,-13],[5,-15],[-2,-17],[1,-6],[6,-15],[0,-4],[-3,-2],[2,-4],[5,-5],[3,-3],[4,1],[9,8],[3,-2],[1,-8],[-7,-14],[2,-10],[2,-12],[5,-23],[4,-13],[-1,-10],[0,-9]],[[4791,8867],[1,-7]],[[4795,8856],[0,-7],[-6,-13]],[[4781,8827],[-15,1],[-3,-1]],[[4761,8810],[-2,-9],[-9,-7]],[[4747,8787],[-3,-7],[-2,-3]],[[4741,8773],[-10,-18],[-3,-8],[-2,-3],[0,-4],[3,-11]],[[4729,8729],[1,-16],[-9,-12],[-10,-10]],[[4711,8691],[-6,-9],[10,-7]],[[4715,8675],[3,-1],[0,-8],[-5,-8],[-1,-12]],[[4709,8623],[-6,-4]],[[4703,8619],[-14,-1],[-6,-2]],[[4686,8602],[-6,-22],[3,-15]],[[4683,8565],[-3,-4],[-4,-8],[-3,-3],[2,-4],[2,-11]],[[4677,8535],[-6,-3],[-13,-18]],[[4658,8506],[8,-11],[5,-4]],[[4671,8485],[-5,-2],[-1,-1],[-2,-3],[-2,-2]],[[4661,8470],[5,-10],[16,-6]],[[4684,8431],[-5,-5],[7,-6]],[[4686,8420],[4,-6],[2,-8]],[[4690,8397],[2,-12],[4,-8],[5,-5]],[[4701,8372],[4,-3],[0,-8],[-6,2],[-5,-3]],[[4694,8360],[-4,-7],[0,-14]],[[4690,8339],[1,-13],[4,-2]],[[4700,8323],[5,-6],[3,-7]],[[4712,8280],[2,-6]],[[4712,8259],[3,-29],[-13,-20],[-14,-15]],[[4688,8195],[-2,-16],[-8,-21]],[[4676,8131],[-2,-7]],[[4674,8124],[-7,-3],[-6,1],[-2,-2],[-3,-5],[0,-5],[-2,-7]],[[5088,6808],[-16,10],[-19,3],[-19,-7],[-41,-36],[-13,-4],[-13,4],[-7,5],[-16,20],[-7,4],[-22,4],[-13,6],[-12,13],[-22,34],[-24,60],[-10,13],[-30,20],[-38,39],[-10,19],[-16,49],[-9,14],[-5,27],[-8,30],[-10,26],[-11,11],[-7,15],[-2,66],[-3,15],[-18,36],[-3,10],[-2,12],[-1,28],[1,2],[1,17],[1,7],[-2,6],[-4,2],[-4,1],[-3,2],[0,10],[1,7],[4,14],[2,13],[0,8]],[[5296,6334],[-29,9],[-11,14],[-13,30],[-7,15],[-10,13],[-6,6],[-7,3],[-19,3],[-5,2],[-4,4],[-19,27],[-22,19],[-5,8],[-15,33],[-6,10],[-2,2],[-9,5],[-2,3],[-4,7],[-2,2]],[[6063,5746],[-80,76],[-16,7],[-51,6],[-3,1],[-9,8]],[[6793,4511],[5,48],[1,16],[0,15],[-4,31],[0,10],[2,17],[7,15],[4,15],[0,20],[-4,12],[-24,38],[-2,6],[-7,29],[-2,6],[4,17],[8,8],[10,3],[7,1],[6,-1],[12,-9]],[[6824,4809],[3,5],[1,9],[-1,6],[-4,11],[-2,6],[-1,10],[0,9],[1,8],[3,9],[9,17],[2,7],[1,11],[-1,11],[-1,11],[-2,10],[-7,22],[-8,19],[-5,20],[-2,29],[0,25],[0,13],[-2,8],[-2,3],[-8,5],[-3,4],[-2,5],[-3,6],[-1,7],[-2,8],[-2,26],[-3,11],[-4,8],[-11,6],[-13,15],[-3,1],[-11,-3],[-5,1],[-13,7],[-37,9],[-4,-1],[-18,-9],[-14,3],[-13,11],[-25,29],[-62,35],[-5,6]],[[5648,3244],[19,17],[26,14],[25,6],[96,78],[2,1],[3,-1],[8,-7],[13,-2],[11,6],[35,34],[7,4],[7,1],[7,-1],[5,-3],[12,-11],[11,-10],[13,-4],[13,2],[12,6],[13,12],[12,17],[5,9],[3,11],[5,9],[6,7],[13,7],[7,0],[22,-8],[6,-1]],[[0,1317],[7,-1],[14,3],[17,19],[6,1],[13,-4],[7,-6],[0,-13],[-5,-52],[0,-12],[3,-13],[5,-10],[13,-12],[6,-12],[17,-38],[10,-19],[9,-11],[30,-8],[26,12],[50,47],[41,10],[11,15],[4,4],[7,1],[12,-1],[6,4],[3,9],[4,12],[5,11],[15,20],[22,18],[23,12],[19,2]],[[400,1305],[8,-10],[8,-29],[8,-5],[40,-8]],[[501,1253],[8,-13],[4,-17],[3,-19]],[[516,1204],[4,-19],[17,-27],[23,-12]],[[560,1146],[25,1],[20,7],[17,12],[8,3],[8,-2],[42,-36],[15,-4],[4,-8],[13,-52],[4,-28]],[[719,1031],[4,-8],[6,-5]],[[746,968],[10,-7],[10,-2],[11,5],[6,10],[54,156],[3,17],[6,8],[19,7],[9,9],[17,29]],[[907,1205],[8,-3],[7,-7],[32,-57],[17,-21],[15,-13]],[[986,1104],[37,-7],[7,-8],[23,-43],[-2,-20]],[[1051,1026],[-8,-14],[-11,-8],[-9,-2]],[[986,1031],[-10,1],[-9,-5],[-6,-11]],[[961,1016],[-3,-18],[-2,-17],[-4,-11],[-6,-4],[-16,-1],[-4,-3]],[[926,962],[-4,-4],[-2,-10],[-1,-15],[0,-14]],[[919,919],[2,-8],[9,-15],[2,-8],[1,-8]],[[932,863],[0,-8],[9,-31]],[[986,762],[20,-4],[9,-7],[3,-15]],[[1019,669],[100,-112],[17,-13]],[[1136,544],[21,-4],[20,-15],[4,-33]],[[1157,444],[-11,-2],[-18,-9],[-10,-3],[-8,-10]],[[1125,249],[99,15]],[[1314,305],[1,0],[-4,0],[3,0]],[[1388,298],[50,-46],[20,-5],[40,14]],[[1508,258],[27,-25],[167,-70]],[[1702,163],[92,8],[8,4],[26,32]],[[1828,207],[16,9],[16,-3],[96,-60]],[[2076,159],[54,-32],[61,-8]],[[2210,111],[17,-16]],[[2260,58],[20,-4],[11,5],[19,13]],[[2310,72],[10,3]],[[2369,86],[10,7],[10,11],[8,11]],[[2405,125],[31,2],[20,14],[11,29]],[[2467,170],[0,4],[16,27],[14,13]],[[2583,356],[3,16],[8,21],[17,32],[17,14]],[[2628,439],[37,16],[37,26]],[[2702,481],[141,35],[16,9]],[[2859,525],[10,2],[4,2]],[[2873,529],[9,10],[5,2],[21,0],[17,8]],[[2925,549],[44,44],[55,9],[11,13],[35,-35],[48,-17],[10,-9]],[[3128,554],[19,18],[12,15]],[[3159,587],[70,-19],[9,4],[9,9],[8,11],[4,10],[4,7],[25,24],[17,11],[39,-1],[19,5],[10,10],[16,22],[68,28],[16,16],[12,25],[25,100],[5,8],[19,26],[5,13],[-1,16],[-2,23],[-4,19],[-4,8],[-9,3],[-11,7],[-11,9],[-6,10],[-1,8],[5,4],[3,10],[0,38],[3,11],[3,25],[0,10],[-2,6],[-24,45],[-9,8],[-11,3],[-9,6],[-8,13],[-7,19],[-4,20]],[[3430,1217],[4,13],[-3,9],[-7,5],[-8,2],[-7,8],[-5,18],[-2,18],[2,8],[7,12],[12,25],[9,28],[-2,21],[7,26],[2,33],[-2,31],[-7,21],[15,51],[2,17],[3,13],[13,33],[2,17],[0,9],[-4,17],[-2,9],[0,48],[2,19],[30,107],[2,9],[3,10],[6,48],[2,15],[6,12],[9,9],[9,6],[10,2],[9,-3],[20,-13],[7,1],[4,8],[4,21],[5,8]],[[3587,1968],[11,2]],[[3621,1938],[-3,-21],[14,-57],[9,-27],[11,-11]],[[3818,1731],[17,3]],[[4260,1720],[2,7]],[[4262,1727],[0,7],[0,8]],[[4260,1749],[5,31],[-2,41]],[[4263,1821],[-8,37],[-10,16],[-6,4],[-21,32],[-65,37]],[[4108,1960],[-6,1],[-4,-5],[-2,-5]],[[4074,1938],[-8,2],[-7,0]],[[4038,1914],[-2,-7],[-2,-3],[-11,-2]],[[4004,1882],[-19,-8],[-24,-33]],[[3961,1841],[-6,-5]],[[3955,1836],[-10,0],[-5,-2]],[[3940,1834],[-3,-4],[-3,-9],[-1,-21]],[[3904,1808],[-7,7],[-10,3]],[[3875,1832],[-8,4],[-12,-5]],[[3855,1831],[-1,-15],[1,-16],[-13,-11]],[[3850,1735],[-15,-1]],[[3835,1734],[4,-8],[19,-21],[1,-6],[-1,-7],[0,-6],[5,-3],[1,3],[6,10],[3,3],[9,0],[7,-5],[10,-13]],[[3899,1681],[3,-5],[19,-17],[15,-20],[30,-24],[11,-4],[26,-32],[15,-12],[9,15],[-4,1],[-6,4],[-3,1],[0,8],[11,13],[6,4],[7,-6],[10,-20],[1,-9],[0,-19],[-5,-3],[-2,-5],[2,-8],[3,-5],[4,-3],[3,-3],[24,-5],[6,4],[-1,-3],[-2,-2],[0,-2],[2,-7],[2,-4],[1,-2],[4,-2],[-2,-10],[-1,-4],[3,-3],[4,-6],[2,-7],[2,-21],[4,2],[4,8],[3,4],[4,-3],[4,-10],[4,-2],[2,3],[3,6],[4,5],[5,1],[-4,-11],[-2,-12],[2,-9],[6,-5],[2,3],[12,19],[7,4],[7,-3],[32,-28],[40,-60]],[[3899,1681],[3,2],[26,14],[11,2],[5,-4],[9,-15],[5,-4],[220,-7],[4,3],[6,9],[3,2],[2,2],[5,5],[2,1],[4,-2],[2,-4],[1,-5],[1,-4],[15,-7],[35,-8],[13,-13]],[[3159,587],[16,35],[10,11],[6,1],[8,-2],[5,1],[4,3],[2,6],[4,4],[23,6],[83,61],[5,5],[2,0],[14,43],[3,7],[4,5],[16,10],[34,8],[13,18],[10,34],[6,17],[8,7],[11,5],[8,14],[6,21],[-1,26],[-2,9],[-3,7],[-3,4],[-6,2],[-6,5],[2,12],[4,12],[2,4],[1,3],[4,9],[1,5],[0,7],[-1,7],[-2,8],[1,10],[1,8],[3,6],[4,5],[-3,12],[-2,9],[-1,8],[0,12],[5,9],[1,6],[-4,3],[-1,1],[-9,10],[-2,7],[-2,14],[-1,5],[-15,36],[-1,13],[6,16]]],"transform":{"scale":[0.0021502150215021503,0.0009400940094009399],"translate":[20.5,43.6]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment