Skip to content

Instantly share code, notes, and snippets.

@joannecheng
Forked from mbostock/.block
Last active May 19, 2016 11:35
Show Gist options
  • Save joannecheng/8817038 to your computer and use it in GitHub Desktop.
Save joannecheng/8817038 to your computer and use it in GitHub Desktop.

This example uses topojson.neighbors to compute neighboring congressional districts (from the 113th congress) from geographic boundaries by detecting shared edges (arcs). The red district is the hovered district, and the orange district is the neighboring districts.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
.districts {
fill: #bbb;
}
.district-boundaries {
pointer-events: none;
fill: none;
stroke: #fff;
stroke-width: .5px;
stroke-linejoin: round;
}
.districts :hover {
fill: red;
}
.neighbor {
fill: orange;
}
</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 = 960,
height = 500;
var path = d3.geo.path();
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
d3.json("/d/8817038/us-congress-113-with-names.json", function(error, congress) {
var districts = congress.objects['113-congress'],
neighbors = topojson.neighbors(districts.geometries);
var district = svg.append("g")
.attr("class", "districts")
.selectAll("path")
.data(topojson.feature(congress, districts).features)
.enter().append("path")
.attr("d", path);
district.append("title")
.text(function(d) { return d.id; });
district
.each(function(d, i) { d.neighbors = d3.selectAll(neighbors[i].map(function(j) { return district[0][j]; })); })
.on("mouseover", function(d) {
d3.select('#district_label').text(d.properties.name + " state id: " + d.properties.stateid);
d3.select('#district_label')
.append('ul')
.selectAll('li.neighbor')
.data(d.neighbors[0]).enter()
.append('li')
.classed('neighbor', true)
.text(function(d1) {
return d1.__data__.properties.name + " state id: " + d1.__data__.properties.stateid;
});
d.neighbors.classed("neighbor", true);
})
.on("mouseout", function(d) { d.neighbors.classed("neighbor", false); });
svg.append("path")
.attr("class", "district-boundaries")
.datum(topojson.mesh(congress, districts, function(a, b) { return a !== b; }))
.attr("d", path);
});
</script>
<div id="district_label">
</div>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"113-congress":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 1"},"id":"3701","arcs":[[0,-1,1,2,3,4,5,6,-7,6,7,7,8,9,9,10,11,12,13,-14,13,14,-15,14,15,16,-17,16,-17,16,17,18,19,20,21,-22,21,22,23,24,25,26,27,-28,27,28,-29,28,29,30,-31,30,31,32,33,34,-33,35,36,-37,36,37,38,39,40,41,42,43,44,44,45,46,-47,46,47,48,-49,48,49,50,-51,50,51,52,-53,52,53,54,55,56,57,58,59,60,-61,61,62,-63,63,64,65,66,-67,66,67,68,68,68,69,70,71,72,72,72,73,74,-75,74,75,76,77,78,79,80,81,-82,81,82,-83,83,84,-85,85,86,-87,87,88,89,90,91,92,-93,92,93,94,95,96,97,98,99,-100,100,101,102,-103,102,-103,102,103,104,105,106,107,-108,108,-109,108,-105,109,-110,109,110,111,112,113,114,115,116,117,-118,117,118,119,120,121,-122,121,122,123,124,125,-126,125,126,127,-128,128,129,130,-131,130,131,-132,131,-132,131,132,-133,132,133,134,-135,134,135,136,-137,136,137,138,-139,138,139,140,141,142,143,144,-145,144,145,146,147,148,149,150,151,152,153,154,-155,154,155,156,157,158,159,-160,159,160,161,162,163,-164,163,164,165,166,-167,167,168,169,170,-171,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,-188,-187,188,189,190,191,-192,192,187,193,194,195,196,197,198,199,200,201,-202,202,203,-204,204,205,-199,206,207,208,-209,209,208,210,211,212,213,214,215,-216,215,216,217,-218,217,218,219,-220,219,220,221,222,223,224,225,226,-227,227,228,229,230,231,232,233,-234,233,234,235,236,237,238,239,240,-241,240,241,242,243,-243,244,245,246,247,248,249,250,251,-252,251,252,253,254,-254,253,255,256,257,258,259,260,261,262,262,263,264,-265,264,-265,264,265,266,267,268,269,270,271,272,-273,272,273,274,275,276,-277,276,277,278,279,-280,279,280,281,-282,281,282,-283,282,283,284,-285,284,285]]},{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 3"},"id":"3703","arcs":[[286,287,288,-289,288,-289,288,-289,288,-289,288,289,290,-291,291,292,-293,292,-293,293,-172,-171,170,-171,-170,168,-168,166,-167,-166,-165,-164,163,-164,-163,-162,-161,-160,159,-160,158,-158,-157,-156,-155,154,-155,-154,152,-152,150,-150,148,-148,146,-146,-145,144,-145,143,-143,141,140,-140,-139,138,-139,-138,-137,136,-137,-136,-135,134,-135,-134,-133,132,-133,-132,131,-132,131,-132,-131,130,-131,129,-129,127,-128,-127,-126,125,-126,-125,123,-123,-122,121,-122,-121,119,-119,-118,117,-118,-117,115,-115,113,-113,111,-111,-110,109,-110,104,-109,108,-109,107,-108,-107,-106,-105,-104,-103,102,-103,102,-103,-102,-101,99,-100,-99,97,-97,95,-95,-94,-93,92,-93,-92,-91,89,-89,87,86,-87,-86,84,-85,-84,82,-83,-82,81,-82,-81,-80,78,-78,76,-76,-75,74,-75,-74,72,72,72,-72,70,-70,68,68,68,-68,-67,66,-67,-66,64,-64,62,-63,-62,60,-61,-60,58,-58,-57,-56,54,-54,-53,52,-53,-52,-51,50,-51,-50,-49,48,-49,-48,-47,46,-47,-46,44,44,-44,42,-42,40,-40,38,-38,-37,36,-37,-36,32,34,33,-33,-32,-31,30,-31,-30,-29,28,-29,-28,27,-28,-27,25,-25,23,-23,-22,21,-22,-21,294,295,296,297,-298,298,299,300,301,-302,301,302,303,304,305,-306,305,306,307,308,-309,-308,307,309,310,311,312,313,314,315,316,-317,316,317,318,319,319,320,321,322,323,324,325,-326,325,-326,326,327,-328,327,-328,328,-329,328,329,330,-331,330,331,332,333,334,-335,334,335,336,-337,336,337,338,-339,338,339]]},{"type":"Polygon","properties":{"stateid":"25","name":"Congressional District 4"},"id":"2504","arcs":[[340,-341,341,342,-343,342,-343,343,344,-345,344,-345,345,346,347,348,349,350,351,-352,351,-352,352,353,354,355,356,357,358,359,360,361,362,363,364,365,-364,366,367,368,369,370,371,372,373,-374,374,-375,374,375,376,-377,376,-377,376,-377,376,-377,377,-378,376,378,379,-380,379,380,-380,381,382,-383,383,384,385,386,387,388,389,-390,389,-390,390,389,391,392,393]]},{"type":"Polygon","properties":{"stateid":"25","name":"Congressional District 9"},"id":"2509","arcs":[[-383,-382,379,380,-380,379,-380,-379,-377,377,-378,376,-377,376,-377,376,-377,376,-377,-376,-375,373,394,395,396,397,398,399,399,400,401,-402,401,402,403,404]]},{"type":"Polygon","properties":{"stateid":"25","name":"Congressional District 8"},"id":"2508","arcs":[[359,-359,-358,405,406,407,408,409,410,411,412,413,414,-410,415,416,417,418,-419,418,419,420,420,421,422,423,424,425,426,427,428,-403,-402,401,-402,-401,399,399,-399,397,-397,395,-395,-374,374,-375,373,-374,-373,371,-371,369,-369,367,-367,363,365,364,-364,-363,361,-361]]},{"type":"Polygon","properties":{"stateid":"51","name":"Congressional District 11"},"id":"5111","arcs":[[429,430,-430,429,431,432,-433,433,-434,432,434,435,-436,436,437,438,439,439,439,439,439,439,440,441,442,443,-444,443,444,445,-446,445,446,447,448,449,450,451,452,453,454,455,456,457,-458,457,458,459,460,461,462,463,-464,463,464,465,466,-467,467,468,469,470,471,472,473,474,-475,474,-475,474,475,-476,476,-462,-460,477,478,-479,479,478,480,481,482,483,484,-485,485,486,487,488,489,490,-491,-490,489,491]]},{"type":"Polygon","properties":{"stateid":"08","name":"Congressional District 4"},"id":"0804","arcs":[[492,493,-494,493,494,495,496,497,-498,497,498,499,500,501,-502,501,502,503,504,505,506,507,508,-509,508,509,510,511,512,513,514,515,516,517,518,519,520,-521,520,521,522,523,524,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545]]},{"type":"Polygon","properties":{"stateid":"21","name":"Congressional District 6"},"id":"2106","arcs":[[546,547,548,549,-550,549,-550,549,550,551,552,553,-554,553,554,555,556,557,558,559,-560,559,560,561,562,563,564,565,-566,565,566,567,-568,567,568,569,570,571,-572,571,572,573,574,575,576,-577,576,577,578,579,580,-581,580,-581,580,581,-582,582,581,583,-584,583,584,585,586,-587,587,588,-589,588,589,590,-591,590,591,592,593,594,-595,594,595,596,597,598,599,-600,599,600,601,602,603,604,605,-606,605,606,607,-608,607,608,609,610,611,612,-610,613,614,-615,614,-612,615,-616,615,616,617,618,-619,618,-619,619,620,621,622,623,-624,623,624,625,626,627,-628,627,628,629,630,631,631,632,633,634,635,636,637,638,-639,639,-640,638,640,-639,639,641,642,643,-644,643,644,645,-646,645,-646,645,646,647,648,-649,648,649,650,-651,650,651,652,-653,652,653,654,655,-656,655,656,657,658,659,-658,657,-658,660,661,661,662,663,664,665,666,667,-668,667,668,669,670,671,672,673,673,674,675,-676,675,676,677,677,678,679,-680,679,680,681,682,-683,682,683,684,685,686,-687,686,687,688,-689,688,689,690,-691,690,691,692,693,694,695,696,-697,696,697,698,-699,698,699,700,701,-702,702,703,704,705,706,707,708,709,-710,710,711,712,713,714,715,716,717,718,-719,718,719,720,-721,721,720,722,-723,722,723,-724,723,-724,723,724,725,726]]},{"type":"Polygon","properties":{"stateid":"01","name":"Congressional District 6"},"id":"0106","arcs":[[727,728,-729,728,729,730,-731,730,731,732,-733,732,733,734,-735,734,-735,734,735,736,-737,736,737,738,739,740,-741,740,741,742,743,744,745,746,-747,746,747,-748,747,-748,747,748,749,-750,749,750,751,-752,751,752,753,754,755,-756,755,756,757,758,759,760,761,762,763,-764,763,-764,763,764,-765,764,765,766,767,768,769,770,771,772,773,-774,773,774,775,776,777,778,779,-780,780,779,781,782,-783,782,783,784,-785,784,785,786,787,-788,787,788,789,-790,789,790,791,792,793,794,795,796,797,-798,797,798,799,800,801,802,803,-804,804,805,-806,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,-822,821,822,823,-824,823,824,825,826,827,828,829,830,831,-832,831,832,833,834,835,836]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 4"},"id":"4804","arcs":[[837,838,839,840,841,842,843,844,845,846,-847,846,847,848,849,850,851,-851,850,852,853,854,-854,855,856,-857,856,857,858,859,860,861,862,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,-875,874,-878,878,879,-880,879,880,881,882,883,884,-884,885,886,-886,883,887,888,885,-886,-889,889,890,891,892,-893,892,893,894,895,896,897,-898,898,899,-900,899,900,901,902,903,-904,904,905,906,-905,903,907,908,-909,908,909,910,911,-911,912,913,-914,914,915,-916,916,913,917,918,919,920,-921,921,-922,920,922,-921,921,923,924,925,926,927,928,929,930,931,932,933,934,-935,935,936,937,938,939,940,941,942,-943,943,944,945,946,947,-945,948,949,-950,950,951,952,953,-954,953,954,955,-956,956,957,958,959,-960,959,960,961,962,963,-962,964,965,966,-966,965,967,968,969,970,971,-969,972,973,974,975,976,977,-971,978,979,980,981,982,983,984,985,986,-987,986,987,-987,988,989,990,991,992,993,994,995,995,-994,996,997,998,999,-1000,999,1000,1001,1002,1003,1003,1004,1005,-1006,1005,1006,1007,1008,1009,-1010,1009,1010,1011,-1012,1011,1012,-1013,1012,1013,1014,1015,1016,-1016,1015,-1016,-1015,1014,-1015,1014,-1015,1017,1018,-1019,1018,1019,1020,-1021,1020,1021,1022,1023,1024,1025,1026,1027,-1028,1027,1028,1029,1029,1029,1030,-1031,1030,1031,1032,-1033,1032,1033,1034,-1035,1034,-1035,1034,-1035,1034,1035,1036,1037,1037,1038,1039,1039,1039,1039,1039,1040,1041,-1042,1041,1042,-1043,1042,1043,1044,1045,1046,1047,1048,1049,-1050,1049,1050,1051,-1052,1051,1052,1053,-1054,1053,1054,1055,-1056,1056,1057,1058,-1059,1058,1059,1060,1061,1062,1063]]},{"type":"Polygon","properties":{"stateid":"22","name":"Congressional District 5"},"id":"2205","arcs":[[1064,-1065,1064,1065,1066,1067,1068,-1069,1068,1069,1070,1071,1072,1073,-1074,1073,1074,1075,-1076,1075,1076,-1077,1076,1077,1078,-1079,1078,1079,1080,-1081,1080,1081,1082,-1083,1082,1083,1084,1085,1086,-1087,1086,1087,1088,-1089,1088,-1089,1088,1089,1090,-1091,1090,1091,1092,-1093,1092,1093,1094,-1095,1094,1095,1096,1097,1098,-1099,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,-1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,-1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,-1140,1139,1140,1141,1142,1143,1144,1145,1146,-1144,1147,1148,1149,-1150,1149,1150,1151,-1152,1151,1152,1153,1154,1155,-1156,1155,1156,1157,-1158,1157,1158,1159,-1160,1159,1160,-1161,1161,1160,1162,1163,1164,1165,1166,1167,-1168,1167,1168,-1169,1168,1169,1170,-1171,1170,1171,1172,-1173,1173,1172,1174,1175,-1176,1175,1176,1177,1178,1179,-1180,1179,1180,1181,-1182,1181,1182,1183,1184,-1185,1184,1185,1186,1187,1187,1188,1189,-1190,1189,1190,1191,1192,1193,1194,1195,1196,1197,-1198,1197,1198,1199,1200,-1200,1199,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,-1211,1210,-1213,1213,1214,1215,1216,1217,1218,1219,1220,-1221,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,-1236,1236,1235,1237,1238,-1239,1238,1239,1240,1241,1242,-1243,1242,1243,1244,1245,1246,1247,1248,1249,1250,-1251,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,-1267,1266,1267,1268,1268,1269,1270,-1271,1270,-1271,1270,-1271,1270,1271]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 2"},"id":"1302","arcs":[[1272,1273,1274,1275,1276,1277,-1278,1277,-1278,1277,-1278,1277,1278,1279,-1280,1279,1280,1281,1282,1283,1284,1285,1286,-1282,1287,1288,-1289,1288,1289,-1289,-1286,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,-1303,1303,1302,1304,1305,-1306,1305,1306,1307,1308,-1309,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,-1318,1317,1318,-1318,1319,1320,-1321,1320,1321,1322,1323,1324,-1325,1324,1325,1326,1326,1327,1328,-1329,1328,1329,1330,-1331,1330,1331,1332,1333,1334,1335,1336,-1337,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,-1348,1347,1348,1349,-1350,1349,1350,-1351,1350,1351,1352,-1353,1352,1353,1354,1355,1356,1356,1356,1357,1358,1359,1360,1361,1362,1362,1363,1364,1365]]},{"type":"Polygon","properties":{"stateid":"34","name":"Congressional District 9"},"id":"3409","arcs":[[1366,1367,1368,1369,1370,-1368,1371,1372,1373,1374,1375,1376,1377,-1376,1375,-1376,1378,1379,-1380,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,-1394,1393,1394,1395,1396,1397,1397,1398,1399,1400,1401]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 24"},"id":"3624","arcs":[[1402,1403,1404,1405,-1406,1405,1406,1407,1408,1409,-1410,1409,1410,1411,1412,1413,1413,1414,1415,-1416,1415,-1416,1415,1416,1417,1418,1419,-1420,1419,-1420,1419,1420,1421,-1422,1421,1422,1423,1424,1425]]},{"type":"Polygon","properties":{"stateid":"41","name":"Congressional District 1"},"id":"4101","arcs":[[1426,1427,1428,1429,-1430,1429,1430,1431,1432,1433,1434,1435,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,-1445,1444,1445,1446,-1447,1446,1447,1448,1449,1450,1451,1452]]},{"type":"Polygon","properties":{"stateid":"51","name":"Congressional District 9"},"id":"5109","arcs":[[1453,1454,-1455,1454,1455,1456,1457,-1458,1457,-1458,1458,1459,1460,1461,-1462,1461,1462,1463,1464,1465,1466,1467,-1468,1467,1468,1469,-1470,1469,1470,1471,1472,-1473,1472,1473,1474,-1475,1474,1475,1476,-1477,1476,1477,1478,1479,1480,1481,1482,1482,1483,1484,-1485,1484,1485,1486,-1487,1486,1487,1488,-1489,1488,-1489,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,-1503,1502,1503,1504,1505,1506,1507,1508,1509,1510,-1511,1510,1511,1512,-1513,1512,1513,1514,-1515,1514,1515,1516,1517,1518,1519,1520,1521,-1522,1521,-1522,1521,1522,1523,1524,1525,1526,1527,1528,1529,-1530,1529,1530,1531,1532,1533,1534,1535,-1536,1535,1536,1537,-1538,1537,1538,1539,1540,1541,-1540,1542,1543,-1544,1544,1545,1546,1547,-1548,1548,1547,1549,1550,-1551,1550,1551,1552,1553,1554,-1555,1555,1556,1557,1558]]},{"type":"Polygon","properties":{"stateid":"47","name":"Congressional District 4"},"id":"4704","arcs":[[1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,-1572,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,-1581,1580,1581,1582,1583,1584,1585,1586,1587,-1588,1587,1588,1589,1590,1591,1589,1592,1593,-1594,1594,1595,-1596,1595,1596,1597,1598,1599,1600,1601,1602,1603,-1604,1603,1604,1605,1606,1607,1608,1609,1610,1611,1611,1612,1613,1614,1615,-1616,1615,1616,-1617,1617,1618,-1619,1619,1620,1621,1622,1623,1624,1625,1626,-1627,1626,-1627,1626,1627,1628,1629,1630,1631,1632,-1633,1632,1633,1634,1635,1634,1636,1637,1638,1639,1640,1641,1642,1643,-1644,1643,1644,1645,-1646,1645,1646,1647,1648,1649,1650,1651,1652,-1653,1652,1653,1654,1655,1655,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,-1666,1665,1666,1667,-1668,1667,1668,1669,-1670,1670,1671,-1672,1672,-1673,1672,-1673,1672,-1673,1672,1673,1674,1675,1676,1677,1678,-1679,1678,1679,1680,1681,1682,-1683,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1692,1693,1694,1695,1696,-1697,1696,-1697,1696,1697,1698,-1699,1698,1699,1700,1701,1702,1703,1704,1705,-1706,1705,1706,1707,-1708,1707,1708,1709,-1710,1709,1710,1711,-1712,1711,-1712,1711,1712,1713,-1714,1713,1714,1715,-1716,1715,-1716,1715,1716,1717,1718,1719,-1720,1719,1720,1721,1722]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 10"},"id":"2610","arcs":[[1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,-1736,1735,1736,1737,1738,1739,-1739,1738,1740,1741,-1742,1741,1742,1743,1744,1745]]},{"type":"Polygon","properties":{"stateid":"32","name":"Congressional District 4"},"id":"3204","arcs":[[1746,-1747,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,-1772,1771,1772,1773,1774,1775,1776,1777,1778,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787]]},{"type":"Polygon","properties":{"stateid":"32","name":"Congressional District 2"},"id":"3202","arcs":[[1788,1789,1790,1791,1792,1793,-1758,1756,-1756,1754,-1754,1752,-1752,1750,-1750,1748,-1748,-1747,1746,-1747,-1788,1794,1795]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 1"},"id":"3901","arcs":[[1796,1797,1798,1799,-1800,1799,1800,1801,1802,1803,1804,-1805,1805,1806,1806,1806,1807,1808,1809,1810,1811,1812,1813,-1814,1813,1814,1815,-1816,1815,1816,1816,1817,1818,1819,1820,1821,1822,1822,1823,1824,1824,1825,1826,1827,1828,1829,-1830,1829,1830,1831,-1832,1832,1831,1833,1834,1835,1836,-1837,1837]]},{"type":"Polygon","properties":{"stateid":"27","name":"Congressional District 3"},"id":"2703","arcs":[[1838,-1839,1838,1839,1840,-1841,1840,1841,1842,1843,1844,1845,1846,1846,1847,1848,-1849,1848,1849,1850,-1851,1850,-1851,1851,1852,-1853,1853,1854,1855,-1856,1855,1856,1857,-1858,1857,1858,1859,1860,1861,1862,-1863,1863,1862,1864,1865,1866,1867,1868,1869,1870,1871,1872,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 6"},"id":"4206","arcs":[[1884,-1885,1884,1885,1886,-1887,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,-1899,1898,1899,1900,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,-1912,1912,1913,1914,1915,1916,1917,-1918,1917,1918,1919,1920,1921,1922,1923,1924,1925,-1926,1926,1927,-1928,1927,-1928,1927,-1928,1927,1928,1929,-1930,1929,1930,1931,1932,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,-1943,1943,1944,1945,1946,1946,1946,1946,1946,1946,1946,1947,1948,1948,1949,1950,1951,-1951,1952,1953,1954,1955,1956,1957,1958,-1959,1959,1960,-1961,1960,-1961,1961,1962,1963,1964,-1964,1963,1965,1966,-1967,1966,-1967,1966,1967,1968,1969,-1970,1969,1970,1970,1971,1972,-1973,1973,1974,-1975,1975,1976,-1977,1977,1978,-1979,1978,1979,1980,1981,1982,1983,1984,1985]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 16"},"id":"4216","arcs":[[1986,1987,1988,1989,-1989,1988,1990,1991,1992,-1983,-1982,-1981,-1980,-1979,1978,-1979,-1978,1976,-1977,-1976,1974,-1975,-1974,1972,-1973,-1972,1970,1970,-1970,1969,-1970,-1969,-1968,-1967,1966,-1967,1966,-1967,-1966,-1964,1963,1964,-1964,1962,-1962,1960,-1961,1960,-1961,-1960,1958,-1959,-1958,1957,1958,-1977,1993,1994,1995,1995,1996,1980,1997,1998,-1999,1998,1999,2000,2001,-2002,2001,2002,2003,2004,2005,2006,2007,2007,2008,2009,2010,-2011,2010,-2011,2011,2012,-2013,2012,2013,2014,-2015,2014,2015,2016,-2017,2016,2017,-2018,2017,2018,2019,2020,2021,2022,2023,2023,2024,2025,-2026,2025,2026,2027,2028,2029,2030,-2031,2030,2031,2032,-2033,2032,2033,2034,-2035,2034,2035,2036,2037,2038,2039,-2040,2040,2041,2042,-2043,2043,2044,2045,2046,2047,2048,2049,-2050,2049,2050]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 15"},"id":"4215","arcs":[[2051,2052,-2053,2052,2053,2054,2055,2056,-2057,2056,-2057,2056,2057,2058,2059,2060,2061,-2061,2062,2063,2064,2065,-2066,2066,2067,2068,1906,-1907,-1906,1904,-1904,1902,-1902,1900,1900,-1900,-1899,1898,-1899,-1898,1896,-1896,1894,-1894,1892,-1892,1890,-1890,1888,-1888,-1887,1886,-1887,-1886,-1885,1884,-1885,-1986,1984,-1984,-1983,1982,-1993,1991,-1991,-1989,1988,1989,-1989,-1988,-1987,1986,2069,2070,-2071,2071,2072,-2073,2073,2072,2074,2075,2076,-2077,2077,2078,-2079,2078,2079]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 16"},"id":"0616","arcs":[[2080,2081,2082,2083,2084,-2085,2084,2085,-2086,2085,2086,2087,2088,-2089,2088,2089,2090,2091,-2092,2091,2092,-2093,-2092,2093,2094,2095,2095,2096,-2097,2096,2097,2098,-2099,2098,2099,2100,-2101,2100,2101,2102,2103,2104,2105,-2105,2106,2107,-2108,2107,2108,2109,2110,2111,-2112,2111,2112,2113,2114,2115,2116,2117,2118,2119,-2120,2119,2120,2121,2122,-2123,2122,2123,2124,2125,2126,2127,2128,-2129,2129,2130,-2131,2130,2131,2132,2132,2133,2134,2135,2136]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 21"},"id":"0621","arcs":[[-2128,2126,-2126,2124,-2124,-2123,2122,-2123,-2122,2120,-2120,2119,-2120,-2119,2117,-2117,2115,-2115,2113,-2113,-2112,2111,-2112,-2111,2109,-2109,-2108,2107,-2108,-2107,2104,-2106,-2105,2103,-2103,2137,2138,-2139,2138,2139,2140,-2141,2140,2141,2142,-2143,2142,2143,2144,-2145,2144,2145,2146,-2147,2146,2147,2148,2149,2150,2151,2152,2153,2154,-2155,2154,2155,2156,2157,2158,2159,2160,-2161,2161,2162,2163,2164,2165,2166,2167,2168,2169,-2170,2169,-2170,2169,-2170,2169,2170,2171,2172,2173,2174,2175,-2176,2175,2176,2177,2178,2179,-2180,2179,2180,2181,2181,2182,2183,-2184,2183,2184,-2185,2184,2185,2186,-2187,2186,2187,2188,2188,2189,2190,-2191,2190,2191,2192,2193,2194,2195,2196,-2197,2196,2197,-2129]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 22"},"id":"0622","arcs":[[-2097,2096,-2097,2095,2095,-2095,-2094,2091,2092,2198,2199,2200,2201,2202,2203,2204,-2205,2204,2205,2206,2207,2208,-2209,2208,-2209,2208,2209,2210,2210,2211,2212,-2213,2212,2213,2214,2215,2216,2217,2218,2219,-2220,2219,2220,2150,-2151,-2150,2148,-2148,-2147,2146,-2147,-2146,-2145,2144,-2145,-2144,-2143,2142,-2143,-2142,-2141,2140,-2141,-2140,-2139,2138,-2139,-2138,-2102,-2101,2100,-2101,-2100,-2099,2098,-2099,-2098]]},{"type":"Polygon","properties":{"stateid":"09","name":"Congressional District 3"},"id":"0903","arcs":[[2221,2222,2223,2224,2225,2226,2227,-2228,2227,2228,-2229,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2238,2238,2239,2240,2241,-2242,2242,2243,-2244,2241,2244,2245,2246,2247,2248,2249,-2250,2249,2250,2251,-2252,2251,-2252,2251,2252,2253,-2254,2254,2253,2255,2256,2257,2258,-2259,2258,-2259,2258,2259,2260,2261,2262,-2263,2262,2263,2264,-2265,2264,2265,-2265,2266,2267,2268]]},{"type":"Polygon","properties":{"stateid":"09","name":"Congressional District 4"},"id":"0904","arcs":[[2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,-2279,2278,2279,-2226,2224,-2224,2222,-2222,2280,2281,2282,2283,2284,2285]]},{"type":"Polygon","properties":{"stateid":"09","name":"Congressional District 5"},"id":"0905","arcs":[[2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,-2298,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,-2237,2235,-2235,2233,-2233,2231,-2231,2229,-2229,2228,-2229,-2228,2227,-2228,-2227,-2280,-2279,2278,-2279,-2278,2276,-2276,2274,-2274,2272,-2272,2309]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 8"},"id":"4808","arcs":[[2310,-2311,2310,2311,2312,2313,2314,2315,2316,-2317,2316,2317,2318,2319,2320,2321,2322,2323,-2324,2323,2324,2325,2326,2327,2328,-2329,2328,2329,2330,-2331,2330,2331,2332,2333,-2334,2333,2334,2335,-2336,2335,2336,2337,2338,2339,-2340,2339,2340,2341,-2342,2341,2342,2343,2344,2345,2346,-2347,2346,2347,2348,-2349,2348,2349,2350,-2351,2350,2351,2352,-2353,2352,-2353,2352,2353,2354,2355,2356,-2357,2356,2357,2358,-2359,2358,2359,2360,-2361,2360,2361,2362,-2363,2363,2364,2365,2366,2367,2368,2369,-2370,2369,2370,2371,2372,-2373,2372,2373,-2374,2373,2374,2375,-2376,2375,2376,2377,2378,2379,2380,2381,2382,-2383,2383,2384,2385,-2386,2385,2386,2387,-2388,2387,2388,2389,2390,-2391,2390,2391,2392,2393,2394,-2393,2395,2396,2397,2398,2399,2400,2401,2402,-2403,2402,-2403,2403,2398,-2399,2404,-2405,2404,2405,2406,-2407,2406,2407,2408,2409,2410,-2411,2410,2411,2412,2413,2414,2415,2416,2417,2418,-2419,2418,2419,2420,2421,2422,2423,2424,2425,-2426,2426,2425,2427,2428,2429,2429,2430,2431,-2432,2431,2432,2433,-2434,2433,2434,2435,-2436,2435,2436,2437,2438,2439,-2440,2439,2440,2441,-2442,2441,2442,2443,-2444,2443,2444,2445,-2446,2445,2446,2447,2448,2449,-2450,2449,2450,-2451,2450,2451,2452,-2453,2452,2453,2454,-2455,2454,2455,2456,2457]]},{"type":"Polygon","properties":{"stateid":"51","name":"Congressional District 1"},"id":"5101","arcs":[[2458,2459,2460,2461,2462,2463,-2464,-2463,2464,2465,2466,2467,-2468,2467,2468,2469,2470,2471,-2472,2471,-2470,2472,2473,-2474,2473,2474,2475,2476,-2477,2476,2477,2478,2479,2480,2481,2482,2483,-476,475,-476,-475,474,-475,474,-475,473,-473,471,-471,469,468,-468,466,2484,2485,-2486,2485,2486,2487,-2488,2487,2488,2489,2490,2491,2492,2493,-2494,2493,2494,2495,2495,2496,2497,2497,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,-2507,2506,2507,2508,-2509,2509,2510,2511,2512,-2513,2513,2514,2515,2516,-2517,2516,2517,2518,-2519,2518,-2519,2518,-2519,2518,2519,-2520,2519,2520,2521,2522,2523,2524,-2523,2525,2526,2527,2528,2529,-2529,2530,2531,-2532,2531,2532,2533,2534,2535,-2536,2535,2536,2537,2538,2539,2540,2541,-2542,2542,-2543,2541,2543,2544,2545,2546,2547,2548,2549,2550,-2551,2550,2551,2552,-2553,2552,2553,2554,-2555,2554,2555,2556,-2557,2556,2557,-2557,2558,2559,-2560,2559,2560,2561,-2562,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,-2572,2572,2573,-2574,2574,2575,-2576,2575,2576,2577,-2578,2577,2578,2579,2580,2581,2582,2583,2584,-2459]]},{"type":"Polygon","properties":{"stateid":"44","name":"Congressional District 1"},"id":"4401","arcs":[[2585,-386,384,-384,382,-405,2586,2587,-2588,2588,2589,-2590,2589,2590,2591,-2592,2591,2592,2593,-2594,2593,2594,2595,2596,2597,2598]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 3"},"id":"3903","arcs":[[2599,2600,2601,2602,2603,-2604,2604,2605,-2606,2606,2607,2608,2609,-2610,2609,2610,-2602,2611,2612,2613,-2614,-2613,2614,2615,-2616,2615,-2616,2616,2613,2617,2618,2619,-2620,2620,2621,2622,-2623,2623,2624,-2625,2625,2626,2627,-2628,2628,2629,-2630,2630,2629,2631,2632,-2633,2632,2633,2634,2635,2636,-2637,2636,-2637,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,-2649,2649,2650,2651,2652,2653,-2654,2654,2655,2656,2657,2658,-2659,2658,2659,-2660,-2659,2660,2661,2662,2663,-2664,2664,2665,-2656,2666,-2667,2666,-2667,2667,-2651,2668,-2666,2669,-2650,2648,2670,-2662,2671,2672,2673,2674,2675,2676,-2677,2677,2678,2679,-2676,2680,2681,-2682,2682,2683,-2674,2684,2685,-2686,2685,2686,-2687,2686,-2683,2681,2687,2688,2689,2690,2691,2692,2693,-2691,2694,2695,-2696,2695,2696]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 12"},"id":"3912","arcs":[[2697,2698,2699,2700,2701,2702,-2699,2698,-2703,2703,2704,2705,2706,-2707,2706,-2707,2706,2707,2708,2709,2710,-2711,2710,2711,2712,-2713,2713,2714,2715,2716,2717,-2718,2717,2718,-2719,2718,2719,2720,-2641,2639,-2639,-2638,-2637,2636,-2637,2636,-2637,-2636,2634,-2634,-2633,2632,-2633,-2632,-2630,2630,2629,-2630,-2629,2627,-2628,-2627,-2626,2624,-2625,-2624,2622,-2623,-2622,-2621,2619,-2620,-2619,-2618,-2614,-2617,2615,-2616,2615,-2616,-2615,2612,2613,-2614,2613,2721,2722,-2723,2722,2723,2724,2725,2726,-2725,2727,2728,2729,2730,2731,2732]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 9"},"id":"4209","arcs":[[2733,-2734,2734,2735,2736,-2737,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,-2746,2745,2746,2747,-2748,2747,2748,2749,-2750,2749,-2750,2749,2750,-2750,2751,2752,-2753,2753,2754,2755,2756,2757,2757,2758,2759,2760,2761,-2762,2761,-2762,2761,2762,2763,2764,2764,2765,2766,2767,-2768,2767,2768,2769,2770,2771,2772,2773,2774,2775,2775,2776,2777,2778,2779,-2780,2779,2780,2781,2782,2783,2784,2785,2786,2787,-2788,2787,2788,2789,-2790,2789,2790,2791,2792,2793,2794,2795,2796,2797,2797,2798,2799,-2800,2799,2800,2801,-2802,2801,2802,2803,2804,2805,-2806,2805,2806,2807,2808,2809,-2810,2810,2809,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,-2823,2822,2823,2824,2825,-2826,2825,-2826,2826,2827,2828,2829,2830,2831,2832,-2833,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,-2850,2849,-2850,2849,2850,2851,2852,2853,2854,2855,2856,2857]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 1"},"id":"4201","arcs":[[2858,2859,2860,2861,2862,2863,2864,2865,2866,-2867,2867,2868,2869,2870,-2862,2861,-2862,-2861,2860,2871,2872,2872,2873,2874,-2875,2874,2875,-2876,2875,2876,2877,2878,2879,2880,-2881,2880,-2881,2880,2881,2882,-2883,2882,2883,2884,2885,-2886,2886,2887,2888,-2889,2888,2889,2890,-2891,2891,2892,2893,2894,-2895,2894,2895,-2896,2896,2897,2898,2899,2900,-2901,2900,-2901,2900,2901,2902,-2903,2903,2904,2905,2906,2907,2908]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 7"},"id":"4207","arcs":[[2007,2007,-2007,2005,-2005,2003,-2003,-2002,2001,-2002,2000,-2000,-1999,1998,-1999,-1998,-1981,-1997,1995,1995,-1995,-1994,1976,-1959,-1958,1957,-1958,-1957,1955,-1955,1953,-1953,1950,-1952,-1951,-1950,1948,1948,-1948,1946,1946,1946,1946,1946,1946,1946,-1946,1944,-1944,1942,-1943,-1942,1940,-1940,1938,-1938,1936,-1936,1934,-1934,1932,1932,-1932,1930,-1930,1929,-1930,-1929,-1928,1927,-1928,1927,-1928,1927,-1928,-1927,1925,-1926,-1925,-1924,-1923,1921,-1921,-1920,-1919,-1918,1917,-1918,1917,2909,2910,2911,2912,2913,2914,2915,-2916,2916,2917,2918,2919,2920,-2918,2921,2922,2923,-2924,-2923,2924,2925,-2926,2925,2926,-2927,2926,2927,-2928,2928,2929,2930,-2931,2931,2932,-2933,2932,2933,2934,-2935,2935,2936,-2937,2936,2937,2934,2938,2939,2940,-2941,2941,-2942,2940,2942,2943,2944,-2945,-2944,2943,-2944,2943,-2944,2945,2946,2947,2948,2949,2950,2951,-2950,2952,2953,-2954,2953,2954,2955,-2956,2955,-2956,2956,2957,2958,2959,2960,2961,1919,2962,-2958,2963,2964,-2965,2965,1923,2966,2967,2968,2969,2970,2971,-2884,-2883,2882,-2883,-2882,-2881,2880,-2881,2880,-2881,-2880,-2879,2877,-2877,-2876,2875,-2876,-2875,2874,-2875,-2874,2872,2872,-2872,-2861,2860,2861,-2862,2861,-2871,-2870,-2869,-2868,2866,-2867,-2866,2864,-2864,-2863,-2862,-2861,-2860,2858,-2909,2972,2973,-2974,2974,-2045,2043,2042,-2043,-2042,-2041,2039,-2040,-2039,-2038,2036,-2036,-2035,2034,-2035,-2034,-2033,2032,-2033,-2032,-2031,2030,-2031,-2030,2028,2027,-2027,-2026,2025,-2026,-2025,2023,2023,-2023,2021,-2021,2019,-2019,-2018,2017,-2018,-2017,2016,-2017,-2016,-2015,2014,-2015,-2014,-2013,2012,-2013,-2012,2010,-2011,2010,-2011,-2010,-2009]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 13"},"id":"1313","arcs":[[2975,-2976,2976,2977,2978,2979,2980,2981,-2982,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,-3001,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 14"},"id":"1214","arcs":[[3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 12"},"id":"1212","arcs":[[3039,3040,3041,3042,-3025,-3024,3022,-3022,-3021,-3020,3043,3020,3044,3045,3046,3047,3048,3049]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 13"},"id":"1213","arcs":[[-3049,3047,-3047,3045,-3045,-3021,-3044,-3019,3017,-3017,3050]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 6"},"id":"1206","arcs":[[3051,-3052,3051,3052,3053,-3054,3053,3054,3055,-3056,3055,-3056,3056,3055,3057,3058,-3059,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3072,3073,3074,3075,-3075,3076,3074,-3075,3077,3078,3079,3080,3081,3082,3083,3084,3085,-3086,3085,3086,3087,3088,3089,-3090,3089,3090,3091,-3092,3091,3092,3093,-3094,3093,3094,3095,-3096,3095,3096,3097,3098]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 14"},"id":"3914","arcs":[[3099,-3100,3100,3101,-3102,3101,-3102,3102,3103,3104,3105,3106,-3107,3107,3108,3109,3110,-3111,3111,3112,3113,-3114,3113,3114,3115,3116,3117,-3118,3117,3118,3119,3120,-3121,3121,3122,-3123,3123,-3120,3119,3124,3125,-3126,3125,3126,3127,3128,-3129,3129,3130]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 17"},"id":"4217","arcs":[[3131,3132,3133,3134,3135,-3136,3135,3136,3137,3138,3139,3140,3141,3142,3143,3143,3144,3145,-3146,3145,3146,-3147,3146,3147,3148,3149,3150,3151,3152,-3153,3152,3153,3154,-3155,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,-3171,3170,-3171,3171,3172,3173,3174,3175,3176,-3177,3176,3177,3178,3179,3180,3181,3182,-3183,3183,3184,3185,3186,-3186,3185,-3186,3187,3185,3188,3189,3190,3191,-3192,3192,3193,3194,3195,-2066,-2065,2063,-2063,2060,-2062,-2061,-2060,2058,-2058,-2057,2056,-2057,2056,-2057,-2056,2054,-2054,-2053,2052,-2053,-2052,3196]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 2"},"id":"2602","arcs":[[3197,3198,3199,-3200,3199,3200,3201,3202,3203,3204,3205,-3206,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,-3217,3216,3217,3218,3219,-3220,3220,3221,3222,-3220,3223,3224,3225,3226,3227]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 1"},"id":"1301","arcs":[[3228,3229,3230,-3231,3230,3231,-3232,3231,3232,3233,3234,3235,-3236,3235,3236,3237,-3238,3237,-3238,3237,3238,3239,-3240,3239,-3240,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3248,3249,3250,-3251,3250,3251,3252,-3253,3252,3253,3254,3255,-3256,3256,3257,3258,3259,-3259,3258,-3259,3260,-3257,3255,3261,3262,-3263,3262,3263,-3264,3263,3264,3265,3266,3267,3268,3269,3270,-3271,3271,3272,-3273,3273,3274,-3275,3274,3275,3276,3277,-3278,3278,3279,-3280,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3289,3290,3291,3292,3293,3294,-3295,3294,3295,3295,3296,-3297,-3295,3297,3298,3299,3300,3301,-3302,3301,3302,3303,3304,3305,3306,3307,3308,-3309,3308,3309,3310,3311,3312,3313,3314,-3315,3314,3315,3316,-3317,3316,3317,3318,3319,3320,-3321,3320,3321,3322,3323,3324,-3325,3324,3325,3326,-3327,3326,-3327,3326,3327,3328,-3329,3328,3329,3330,3331,3332,3333]]},{"type":"Polygon","properties":{"stateid":"28","name":"Congressional District 4"},"id":"2804","arcs":[[3334,3335,-3336,3335,-3336,3335,3336,3337,3338,3339,3340,3341,3342,3343,-3344,3343,3344,3345,-3346,3345,3346,3347,-3348,3347,3348,3349,-3350,3349,3350,3351,3351,3352,3353,-3354,3353,3354,-3355,3354,-3355,3355,3354,3356,-3357,3356,3357,3358,-3359,3358,3359,3360,3361,-3362,3361,3362,-3363,3362,3363,3364,3365,3366,-3367,3366,3367,-1183,-1182,1181,-1182,-1181,-1180,1179,-1180,-1179,1177,-1177,-1176,1175,-1176,-1175,-1173,1173,1172,-1173,-1172,-1171,1170,-1171,-1170,-1169,1168,-1169,-1168,1167,-1168,-1167,1165,-1165,1163,-1163,-1161,1161,1160,-1161,-1160,1159,-1160,-1159,-1158,1157,-1158,-1157,-1156,1155,-1156,-1155,1153,-1153,-1152,1151,-1152,-1151,-1150,1149,-1150,-1149,3368]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 11"},"id":"2611","arcs":[[3369,3370,-3371,3370,3371,-1733,3372,3373,3374,3375,-3376,3375,3376,3377,3378,-3378,3379,3380,3381,3382,3383,3384,3385,-3386,3385,3386,-3384,3387,3388,3389,3390,3391,3392]]},{"type":"Polygon","properties":{"stateid":"34","name":"Congressional District 4"},"id":"3404","arcs":[[3393,3394,-3395,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,-3405,3404,3405,3406,-3407,3407,3408,3408,3409,3410,-3411,3410,3411,3412,3413,3414,3415,3416,3417,3418,-3419,3418,3419,3420,3421,3422,3423,-3422,3424,3425,-3426,3425,3426,3427,3428,3429,-3430,3429,3430,3431,-3432,3431,-3432,3431,3432,-3433,3432,3433,3434,3434,3435,3436,3437,3438,3439,-3440,3440,-3437,3441,3442]]},{"type":"Polygon","properties":{"stateid":"34","name":"Congressional District 6"},"id":"3406","arcs":[[3443,3444,3445,-3446,3446,3447,3448,3449,3450,3451,-3452,3452,3453,3454,3455,-3420,-3419,3418,-3419,-3418,3416,-3416,3414,-3414,3412,-3412,-3411,3410,-3411,-3410,3408,3408,-3408,3406,3456,3457,3458,3459,-3460,3460,3461,3462,3463]]},{"type":"Polygon","properties":{"stateid":"34","name":"Congressional District 2"},"id":"3402","arcs":[[3464,3465,3466,3467,3468,3469,3470,3471,3472,-3473,3472,3473,-3474,3473,-3474,3473,-3474,3473,3474,3475,3476,3477,-3478,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,-3488,3488,3489,3490,3491,3492,3493,3493,3493,3494,3495,3496,-3497,-3496,3497,3498,-3499,3498,-3499,3498,3499,3496,3500,3501,3502,3503,3504]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 17"},"id":"1217","arcs":[[-3037,-3036,-3035,3034,3505,3506,3507,3508,3509,-3510,3510,3511,3512,3513,3514,3514,-3514,3513,-3514,3515,3516,-3517,3516,3517,3518,-3519,3518,3519,-3520,3519,3520,3521,-3522,3521,3522,3523,3524,-3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,-3539,3538,3539,3540,-3541,3540,3541,3542,-3543,3542,3543,3544,-3545,3544,3545,3546,-3547,3546,3547,3548,-3549,3548,3549,3550,-3551,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,-3565,3565,3566,-3567,3566,3567]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 19"},"id":"1219","arcs":[[-3561,3559,-3559,3557,-3557,3568,3569,3570,3571,3572,3573,3574,3575]]},{"type":"Polygon","properties":{"stateid":"23","name":"Congressional District 1"},"id":"2301","arcs":[[3576,3577,3578,3579,3580,-3581,3580,3581,3582,3583,3584,-3585,3584,3585,3586,-3587,3586,3587,3588,3589,-3590,3589,3590,3591,-3592,3591,3592,3593,3594,3595,3596,3597,-3598,3597,3598,3599,-3600,3599,3600,3601,3602,3603,3604,3605,3606,3607,-3608,3607,3608,3609,3610,3611,3612,3613,-3614,3613,3614,3615,-3616,3615,3616,3617,3618,3619,-3620,3620,3621,-3622,3621,3622,3623,3624,-3625,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,-3642,3641,3642,3643,3644,3645,-3646,3645,3646,3647,-3648,3647,3648,3649,-3650,3649,3650,-3651,3651,3652,-3653,3653,3654,3655,-3577]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 3"},"id":"1303","arcs":[[3656,-2976,-3016,3014,-3014,3012,-3012,3010,-3010,3008,-3008,3006,-3006,3004,-3004,3002,-3002,-3001,3000,-3001,-3000,2998,-2998,3657,3658,-3659,3658,3659,3660,3661,-3662,3661,3662,3663,3664,3665,-3666,3665,3666,3667,-3668,3667,3668,3669,-1312,1310,-1310,-1309,1308,-1309,1307,-1307,-1306,1305,-1306,-1305,-1303,1303,1302,-1303,-1302,1300,-1300,1298,-1298,1296,1295,-1295,1293,-1293,1291,-1291,1285,1288,1289,-1289,1288,-1289,-1288,1281,-1287,-1286,-1285,-1284,1283,3670,3671,3672,-3673,3672,3673]]},{"type":"Polygon","properties":{"stateid":"08","name":"Congressional District 1"},"id":"0801","arcs":[[3674,3675,3676,3676,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,-3693,3692,3693,-3694,3693,3694,3695,3695,3696,3697,3698,3699,3700,-3700,3699,-3700,3701,3702,3703,3704,-505,-504,503,3705,3706,3707]]},{"type":"Polygon","properties":{"stateid":"08","name":"Congressional District 7"},"id":"0807","arcs":[[3708,3709,3710,-3711,3711,3712,-3713,3713,3714,-3715,3714,3715,3716,-3717,3716,3717,3718,-3719,-3718,-3717,3719,3720,3721,-3689,3687,-3687,3685,-3685,3683,-3683,3681,-3681,-3680,-3679,-3678,3676,3676,3676,3722,3679,3723,3724,3725,-3726,3724,3726,3727]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 27"},"id":"3627","arcs":[[3728,3729,3730,-3731,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,-1425,3744,3745,3746,3747,-3748,3747,3748,3749,-3750,3749,3750,3751,-3752,3751,-3752,3751,3752,3753,-3754,3753,3754,3755,3756,3757,3758,3759,3760,3761,-3762,3761,3762,3763,3764,3765,-3766,3765,3766,3767,3768]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 25"},"id":"3625","arcs":[[3742,-3742,3769,-1426,-3744]]},{"type":"Polygon","properties":{"stateid":"23","name":"Congressional District 2"},"id":"2302","arcs":[[3770,3636,-3637,-3636,3634,-3634,3632,-3632,3630,-3630,3628,-3628,3626,-3626,3624,-3625,3623,-3623,-3622,3621,-3622,-3621,3619,-3620,-3619,3617,-3617,-3616,3615,-3616,-3615,-3614,3613,-3614,-3613,3611,-3611,3609,-3609,-3608,3607,-3608,-3607,3605,-3605,3603,-3603,3601,-3601,-3600,3599,-3600,-3599,-3598,3597,-3598,-3597,3595,-3595,3593,-3593,-3592,3591,-3592,-3591,-3590,3589,-3590,-3589,3587,-3587,3586,-3587,-3586,-3585,3584,-3585,-3584,3582,-3582,-3581,3580,-3581,-3580,3578,-3578,-3577,3771,3772,3773,3774,3775,3776]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 8"},"id":"0608","arcs":[[3777,3778,3779,3780,-1795,-1787,3781,3782,3783,3784,3785,3786,3787,3788,-3789,3789,3790,-3791,3790,-3791,3791,3792,3793,3794,3795,3796,3797,-3798,3798,-3799,3797,3799,-3800,3800,3801,3802,-3803,-3802,3803,3804,3805,3806,-3807,3806,3807,3808,-3809,3808,-3809,3808,3809,3810,3811,3812,-3812,3811,-3812,3813,3814,3815,-3815,3816,3817,3817,3818,3819,3820,3821,-3822,3822,3823,3824,-3825,3824,3825,-3826,3825,3826,3827,3828,3829,-3830,3830,3831,3832,3833,3834,3835,3836,3836,3837,3838,3839,3840,-3841,3840,3841,3842,3843,3844,-3845,3844,-3845,3844,3845,3846,3847,3848,-3849,3848,3849,3850,3851,3852,3853,3854,3855,-3856,3855,3856,3857,-3858,3857,3858,3859,3860,3861,-3862,3861,3862,3863,3864,3865,-3866,3865,3866,3867,3868,3869,3870,3871,3871,3872,3873,3874,3875,3876,-3877,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,-3889,3888,3889]]},{"type":"MultiPolygon","properties":{"stateid":"47","name":"Congressional District 2"},"id":"4702","arcs":[[[3890,3891,3892,3893,3894,3895,3896,3897,3898,-3899,3898,3899,3900,3901,3902,3903,3904,-3905,3904,3905,3906,3907,-3908,3908,3909,3910,3911,3912,-3913,3912,3913,3914,3915,-3916,3916,3917,-3918,3917,3918,3919,-3920,3919,3920,3921,3922,3923,3924,-3925,3925,3926,3927,-3928,3927,3928,3929,3930,3931,-3932,3932,3931,3933,3934,-3935,3934,3935,3936,3937,3938,3939,3940,3940,3941,3942,-3943,3942,3943,3944,3945,3946,3947,3948,-3949,3948,3949,3950,3951,-3948,3947,-3948,3952,3953,3954,-3951,3955,3956,3957,-1559,3958,3959,-3960,3959,3960,3961,3962,3963,-3964,3963,3964,3965,-3966,3965,3966,3967,-3968,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,-3978,3977,3978,3979,3980,3981,3981,3982,3983,-3984,3983,3984,3985,-3986,3985,-3986,3985,3986,3987,-3988,3987,3988,3989,-3990,3989,-3990,3989,3990,3991,3992,-3993,3993,3994,-3995,3994,3995,3996,3997,3998,3999,-4000,3999,4000,4001,-4002,4001,4002,4003,4004,4005,-4006,4006,4007,4008,4009,4010,4011,4012,4013,-4014,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,-4024,4023,-4024,4023,4024,4025,-4026,4026,4025,4027,4028,4029,4030,4031,-4030,4032,4033,4034]]]},{"type":"Polygon","properties":{"stateid":"25","name":"Congressional District 1"},"id":"2501","arcs":[[4035,4036,4037,4038,-4039,4038,4039,4040,4041,4041,4042,4043,4044,4045,-4046,4045,4046,4047,4048,4049,-4050,4049,4050,4051,4052,4053,4054,4055,-4056,4056,4057,-2288,4058]]},{"type":"Polygon","properties":{"stateid":"25","name":"Congressional District 2"},"id":"2502","arcs":[[4059,4060,4061,4062,-4063,4062,4063,4064,-4065,4064,4065,4066,-4067,4066,4067,4068,-4069,4069,4070,4071,4072,-4073,4073,4074,4075,-4076,4075,4076,4077,4078,-341,-394,392,-392,-390,390,389,-390,389,-390,-389,387,-387,-2586,4079,4080,-4056,-4055,4053,-4053,4051,-4051,-4050,4049,-4050,-4049,4047,-4047,-4046,4045,-4046,-4045,4043,-4043,4041,4041,-4041,4039,-4039,4038,-4039,4037,-4037]]},{"type":"Polygon","properties":{"stateid":"51","name":"Congressional District 3"},"id":"5103","arcs":[[4081,-4082,4081,4082,4083,-4084,4083,4084,4085,4086,4087,-4088,4087,-4088,4087,4088,4089,-4090,4089,4090,4091,-4092,4091,4092,4093,-4094,4093,4094,4095,4096,4097,-4098,4097,-4098,4097,4098,4099,4100,4101,4102,4103,2515,4104,-2516,4105,-2514,2512,-2513,-2512,2510,-2510,2508,-2509,-2508,-2507,2506,-2507,-2506,2504,-2504,2502,-2502,2500,-2500,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,-4117,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,-4127,4127,4128,-4129,4128,4129,4130,-4131,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,-4145,4144,-4141,4145,4146,4147,4148,4148,4149,4150,-4151,4150,4151,4152,4153,-4154,4153,4154,4155,4156,4157,-4158,4157,4158,4159,4160,4161,-4162,4161,4162,4163,-4164,4163,4164,4165,-4166,4165,4166,4167,-4168,4167,4168,-4169,4169,4170,-4171,4170,4171,4172,4173,-4173,4172,4174,4175,-4176,4175,4176,-4177,4176,4177,4178,4179,-4179,4178,-4179,4180,4181,-4182,4181,-4182,4181,-4182,4181,-4182,4181,-4182,4181,-4182,4181,-4182,4181,-4182,4181,4182,4183,4184,4185,4185,4186,4187,4187,4188,4189]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 11"},"id":"3611","arcs":[[3451,4190,4191,4192,4193,-4194,4193,4194,4195,4196,4197,4198,-4199,4198,-4199,4199,4200,4201,4202,4203,4204,-3453]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 17"},"id":"1717","arcs":[[4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,-4221,4221,4222,-4223,4222,4223,4224,4225,4226,4226,4227,4228,4229,4230,4231,4232,4233,4233,4234,4235,-4236,4236,4235,4237,4238,4239]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 18"},"id":"0618","arcs":[[4240,4241,4242,4243,-4244,4243,-4244,4243,4244,4245,4246,4247,4248,4249,-4250,4249,4250,4251,4252,4253,-4254,4253,4254,4255,4256,-4257,4256,-4257,4256,-4257,4256,4257,4258,-4259,4258,-4259,4258,4259,4260,4261,4262,4263,4264,4265,-4266,4265,4266,4267,4268,4269,4270,4271,-4272,4272,4273,4274,4275,4276,4277,-4278,4277,4278,4279,4280,4281,-4282,4282,4283,4283,4283,4284,4285,-4286,4285,4286,4287,-4288,4287,-4288,4287,-4288,4287,4288,4289,4290,4291,4292,4293,-4294,4293,4294,4295,-4296,4295,4296,4297]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 20"},"id":"0620","arcs":[[-4297,-4296,4295,-4296,-4295,-4294,4293,-4294,-4293,4291,-4291,4289,-4289,-4288,4287,-4288,4287,-4288,4287,-4288,-4287,-4286,4285,-4286,-4285,4283,4283,4283,-4283,4281,-4282,4281,4298,4299,4300,4301,-4302,4301,4302,4303,4303,4304,4305,4306,4307,4308,-4309,4309,4310,4311,4312,4313,4314,4315,-4316,4316,4317,4318,4319,-2136,2134,-2134,2132,2132,-2132,-2131,2130,-2131,-2130,2128,-2198,-2197,2196,-2197,-2196,2194,-2194,2192,-2192,-2191,2190,-2191,-2190,2188,2188,-2188,-2187,2186,-2187,-2186,-2185,2184,-2185,-2184,2183,-2184,-2183,2181,2181,-2181,-2180,2179,-2180,-2179,2177,-2177,-2176,2175,-2176,-2175,2173,-2173,4320,4321]]},{"type":"Polygon","properties":{"stateid":"01","name":"Congressional District 1"},"id":"0101","arcs":[[4322,4323,4324,4325,4326,4327,4328,4329,-4330,4329,4330,4331,-4332,4331,4332,4333,4334,4335,4336,-4337,4337,4338,-4339,4338,4339,4340,-4341,4340,4341,4342,-4343,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,-4359,4361,4362,4363,4364,-4365,4365,4366,4367,4368,4369,-4370,4369,4370,4371,4372,-4372,4373,4374,4375,-4376,-4375,4376,4375,4377,4378,-4379,4379,4380,4381,4382,-4383,4382,4383,4384,-4385,4384,4385,4386,4387,4388,4389,4390,4391,4392,-4393,4393,4394,4395,4396,4397,-4398,-4397,4398,4399,4400,4397,4401,4402,4403,4404,4405,4406,4407,4408,4409,4409,4409,4410,4411,4412,-4413,4412,4413,4414,-4415,4414,4415,4416,-4417,4416,4417,4418,-4419,4418,4419,4420,-4421,4420,4421,4422,-3339]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 11"},"id":"3911","arcs":[[4423,-3103,3101,-3102,3101,-3102,-3101,3099,-3100,-3131,4424,4425,4426,4427,4428,4429,4430,4431,-4432,-4431,4430,4431,-4432,4432,4433,4434,4435,-4436,4435,4436,-4437,4437,4438,4439,4440,-4441,4440,-4441,4440,-4441,4441,4442,4443,4444,4445,4446,4447,4448,4442,4442,4449,4450,4450,4451,4452,-4453,4453,4454,-4455,4455,4456,4457,-4458,4458,4459,4460,4461,4462,4463,4464,4465,-4466,4466,-4467,4465,4467,-4439,-4438,4437,4468,4469,-4470,4470,4471,-4434,4472,-4473,4473,4474,-4475,4474,4475,4476,4477]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 5"},"id":"3905","arcs":[[4478,4479,4480,-4481,4480,4481,4482,4483,4484,4485,-4485,4484,4486,4487,4488,4489,4490,4491]]},{"type":"Polygon","properties":{"stateid":"41","name":"Congressional District 3"},"id":"4103","arcs":[[-1432,1431,4492,4493,-4494,4494,4495,-4496,4495,4496,4497,4498,4499,-4500,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,-4510,4509,4510,4511,-4512,4511,4512,4513,-4514,4513,-4514,4513,4514,4515,4516,4517,4517,4517,4518,4519,4520,4521,-4522,4521,4522,4523,4524,4525,-4526,4525,4526,-1439,1437,-1437,1435,1435,-1435,1433,-1433]]},{"type":"Polygon","properties":{"stateid":"41","name":"Congressional District 5"},"id":"4105","arcs":[[-1452,1450,-1450,1448,-1448,-1447,1446,-1447,-1446,-1445,1444,-1445,-1444,1442,-1442,1440,-1440,-4527,-4526,4525,-4526,-4525,4523,-4523,-4522,4521,-4522,-4521,4519,-4519,4517,4517,4517,-4517,4515,-4515,-4514,4513,-4514,4513,-4514,-4513,-4512,4511,-4512,-4511,-4510,4509,-4510,-4509,-4508,4506,-4506,-4505,-4504,-4503,4501,-4501,4499,4527,4528,4529,4530,4531,4532,4533,4534,-4535,4534,4535,4536,-4537,4536,4537,4538,4539,4540,4540,4541,4542,4543,4544,4545,4546,4546,4547,4548,-4549,4548,4549,4550,4551,4552,4553,4554,-4555,4554,4555,4556,4557,4558,4559,-4560,4560,4561,-4562,4561,4562,4563]]},{"type":"Polygon","properties":{"stateid":"27","name":"Congressional District 4"},"id":"2704","arcs":[[4564,4565,4566,4567,4568,4569,4570,4571]]},{"type":"Polygon","properties":{"stateid":"27","name":"Congressional District 5"},"id":"2705","arcs":[[-1863,1863,1862,-1863,-1862,1860,-1860,4572,-4572,4573,-1869,1867,-1867,1865,-1865]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 4"},"id":"1304","arcs":[[4574,4575,-4576,4575,4576,4577,4578,4579,4580,4581,4582,-4581,4583,4584,-4585,4585,4586,4587,4588,4589,4590,4591,4592,-4593,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,-4604,4603,-4604,4603,4604,4605,-4606,4605,-4606,4605,4606,4607,4608,4609,4610,4611,-4612,4611,4612,-2994,2992,-2992,4613,4614,-4615,4614,4615,4616,4617,4618,-4619,4618,4619]]},{"type":"Polygon","properties":{"stateid":"18","name":"Congressional District 3"},"id":"1803","arcs":[[4620,4621,-4492,4622,4623,4624,4625]]},{"type":"Polygon","properties":{"stateid":"04","name":"Congressional District 4"},"id":"0404","arcs":[[-1767,1765,1764,-1764,1762,-1762,1760,-1760,4626,4627,4628,-4629,4628,4629,4630,-4631,4630,4631,4632,-4633,4632,4633,4634,4635,4636,4637,4638,4639,4640,-4641,4640,4641,4642,-4643,4642,4643,4644,4645,4646,-4647,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,-4657,4658,4659,4660,4661,4662,-4663,4662,4663,4663,4664,4665,4666,4667,-4668,4667,4668,4669,4670,4671,4672,4673,4674,4673,4675,4676,4676,4677,4678,4679,4680,4681,4682,4683,4684,-4685,4684,4685,4686,-4687,4686,4687,4688,-4689,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,-4698,4697,4698,4699,-4700,4699,4700,4701,4702,4703,-4704,4703,4704,4705,-4706,4706,4707,4708,4709,4710,-4711,4710,-4711,4711,-4712,4711,-4712,4711,4712,4713,4714,4715,4716,-4717,4716,4717,4718,4719,4720,4721,4722,4723,4724,-4725,4724,4725,-4726,4726,-4727,4726,4727,4728,-4729,4728,-4729,4729,4730,-4731,-4730,4729,4731,-4732,4731,4732,4733,-4734,4733,4734,-4735,4735,4736,4736,4737,4736,4738,4739,4740,4740,4741,4742,-4743,4742,4743,4744,4739,-4740,4745,4746,4747,4748,-4749,4748,4749,4750,-4747,4751,4752,-4753,4753,4754,-4755,4754,-4744,4755,4756,4757,4758,-4759,4759,4759,4758,4760,4761,-4762,4761,-4762,4761,4762,-4763,4762,-4763,4762,4763,4764,4764,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,-4775,4774,4775,4776,4777,-4773,4772,4778,4779,-4780,4779,4780,4781,4782,-4782,4781,4783,4784,4785,4785,4785,4786,4787,-4788,4788,4789,-4790,4789,4790,4791,-4792,4791,4792,4793,4794,-4795,4794,4795,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,-4808,4807,4808,-4809,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,-4823,4822,4823,4824,4825,4826,4827,4828,4829,-4830,4829,4830,4831,-4832,4831,4832,4833,-4834,4833,4834,4835,4836,4837,4838,4838,4839,4840,4841,4842,-4843,4842,4843,4844,4845,4846,-4847,4847,4848,4849,4850,4851,4852,4853,4854,-4855,4854,4855,4856,4857,4858,-4859,4858,4859,4860,4861,4862,4863,-4864,4863,4864,-3784,-3783,4865,4866,-4867,4866,4867,-1768]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 7"},"id":"2607","arcs":[[4868,4869,4870,-3392,4871,4872,-4873,4872,4873,4874,4875,4876,-4877,4876,4877,4878,4879,-4880,4879,4880,4881,4882,-4479,-4622,4883]]},{"type":"Polygon","properties":{"stateid":"45","name":"Congressional District 4"},"id":"4504","arcs":[[4884,4885,-4886,4885,4886,-4887,4886,-4887,4886,4887,4888,-4889,4888,4889,4890,4891,4892,-4893,4892,4893,4894,4895,4896,4897,4898,-4899,4898,-4899,4898,4899,4900,4901,4902,4903,-4903,4902,4904,4905,-4906,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,-4917,4916,4917,4918,4919,-4920,4919,4920,4921,-4922,4921,4922,4923,4924,-4925,4924,4925,4926,-4927,4926,4927,4928,-4929,4928,4929,4930,-4931,4930,4931,4932,4933,4934,4935,4936,4937,4938,-4939,4938,4939,4940,-4941,4940,4941,4942,-4943,4942,4943,4944,4945,4946,-4947,4946,4947,4948,4949,-4950,4950,4951,-4952,4951,-4952,4951,4952,4953,-4954,4953,4954,4955,-4956,4955,4956]]},{"type":"Polygon","properties":{"stateid":"55","name":"Congressional District 1"},"id":"5501","arcs":[[4957,-4958,4957,4958,4959,4960,4961,4962,-4963,4962,4963,4964,-4965,4964,4965,4966,4967,4968,4969,4970,-4971,4970,4971,4972,4973,4974,-4975,4974,4975,-4976,4975,4976,4977,4978,-4979,4978,-4979,4978,4979,4980,-4981,4980,4981,-4982,4982,4983,4984,4985,-4986,-4984,4986,4987,-4988,4988,4989,-4990,4989,4990,4991,4992,-4993,4992,4993,4994,4995,4996,4997,4998,4999,5000,-3226,5001,5002,5003,5004,5005,5006,5007,-5008,5007,5008,5009,-5010,5009,5010,5011,5012]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 5"},"id":"3605","arcs":[[5013,5014,5015,5016,5017,5018,5019,5020,5021,-5022,5021,5022,5023,-5023,5024,5025,-5026,5026,5027,5028,5029,5030,5031,-3454,-4205]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 2"},"id":"3602","arcs":[[5032,5033,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5043,5044]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 3"},"id":"3603","arcs":[[5045,5046,5047,5048,-2284,5049,5050,5051,5052,-5035,5033,5033,-5033,5053,5054,5055,5056,-5057,5056,5057,5058,5059,5060,5020,-5021,-5020,5061,5062,5063,5064,5065]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 4"},"id":"3604","arcs":[[5029,-5029,5027,-5027,5025,-5026,-5025,5022,5023,-5023,-5022,5021,-5022,-5021,-5061,-5060,5058,-5058,-5057,5056,-5057,-5056,5054,-5054,-5045,5043,5043,-5043,5066,-5031]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 4"},"id":"3904","arcs":[[-4490,4488,-4488,5067,5068,5069,5070,5071,5072,5073,5074,5075,5075,5076,5077,5078,-5079,5078,5079,5080,-5081,5080,-5081,5080,5081,5082,5083,5084,5085,5086,5087,-2733,5088,5089]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 18"},"id":"4218","arcs":[[5090,5091,5092,5093,5094,5095,5095,5096,5097,-5098,5097,5098,5099,-5100,5099,5100,5101,-5102,5101,5102,-5103,5102,5103,5104,-5105,5104,5105,5106,5107,-5108,5107,5108,5109,-5110,5109,-5110,5110,5111,-5112,5112,5113,-5114,5113,5114,5115,5115,5116,5117,-5118,5117,5118,5119,5120,-5121,5120,-5121,-5120,5121,5122,-5123,5122,5123,5124,5125,5126,5127,5128,-5129,5128,5129,5130,-5131,5130,5131,5132,5133,5134,-5135,5134,5135,5136,5137,5138,5139,-2763,-2762,2761,-2762,2761,-2762,-2761,2759,-2759,2757,2757,2756,-2756,2754,-2754,2752,-2753,-2752,2749,2750,-2750,2749,-2750,2749,-2750,-2749,-2748,2747,-2748,-2747,-2746,2745,-2746,-2745,2743,-2743,2741,-2741,2739,-2739,2737,-2737,2736,-2737,-2736,-2735,2733,-2734,-2858,5140]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 14"},"id":"4214","arcs":[[-5094,5093,5141,5142,-5143,5142,5143,5144,5145,5146,-5147,5146,5147,5148,5149,-5150,5149,5150,-5151,5150,5151,5152,5153,5154,-5155,5154,5155,5156,5157,-5158,5157,5158,5159,5160,5161,-5162,5161,-5162,5161,5162,5163,5164,5165,-5166,5165,5166,-5121,5120,-5121,-5120,-5119,-5118,5117,-5118,-5117,5115,5115,-5115,-5114,5113,-5114,-5113,5111,-5112,-5111,5109,-5110,5109,-5110,-5109,-5108,5107,-5108,-5107,-5106,-5105,5104,-5105,-5104,-5103,5102,-5103,-5102,5101,-5102,-5101,-5100,5099,-5100,-5099,-5098,5097,-5098,-5097,5095,5095,-5095]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 12"},"id":"4212","arcs":[[5167,5168,5169,5170,5171,-5172,5172,5173,5174,5175,-2814,2812,-2812,-2810,2810,2809,-2810,-2809,2807,-2807,-2806,2805,-2806,-2805,2803,-2803,-2802,2801,-2802,-2801,-2800,2799,-2800,-2799,2797,2797,-2797,-2796,2794,2793,-2793,2791,-2791,-2790,2789,-2790,-2789,-2788,2787,-2788,-2787,2785,-2785,2783,-2783,2781,-2781,-2780,2779,-2780,-2779,2777,-2777,2775,2775,-2775,2773,-2773,2771,-2771,2769,-2769,-2768,2767,-2768,2766,-2766,2764,2764,-2764,-5140,5138,-5138,5136,-5136,-5135,5134,-5135,-5134,5132,-5132,-5131,5130,-5131,-5130,-5129,5128,-5129,-5128,5126,-5126,5124,-5124,-5123,5122,-5123,-5122,5119,5120,-5167,-5166,5165,-5166,-5165,5163,-5163,-5162,5161,-5162,5161,-5162,-5161,5159,-5159,-5158,5157,-5158,-5157,5155,-5155,5154,-5155,-5154,5152,-5152,-5151,5150,-5151,-5150,5149,-5150,5148,-5148,-5147,5146,-5147,-5146,5144,-5144,-5143,5142,-5143,-5142,-5094,-5093,5091,-5091,5176]]},{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 6"},"id":"3706","arcs":[[-1553,5177,-18,-17,16,-17,16,-17,-16,-15,14,-15,-14,13,-14,-13,11,-11,9,9,-9,7,7,-7,6,-7,-6,-5,4,5178,5179,-5180,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,-5193,5192,5193,5194,5195,5196,5197,5198,5199,5200,-5201,5201,5202,5203,5204,5204,5205,5206,5207,5208,5209,5210,5211,-5211,5210,-5211,5210,5212,5213,-5214,5213,5214,5215,5216,-5217,5216,5217,5218,-5219,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,-5228,5227,5228,5229,5230,-5199,5198,5231,5232,5233,5234,-5235,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,-5247,5246,5247,5248,5249,5250,5251,5252,-5253,5252,5253]]},{"type":"MultiPolygon","properties":{"stateid":"69","name":"Delegate District (at Large)"},"id":"6998","arcs":[[[5254]],[[5255]],[[5256]],[[5257]],[[5258]],[[5259]],[[5260]],[[5261]],[[5262]],[[5263]],[[5264]],[[5265]]]},{"type":"Polygon","properties":{"stateid":"01","name":"Congressional District 2"},"id":"0102","arcs":[[4405,-4405,5266,5267,5268,5269,5270,5271,5272,-5273,5273,5274,-5275,5274,5275,5276,5277,5278,-5279,5279,-5280,5280,5281,5282,5283,5284,-5285,5285,5286,-5287,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,-5296,5297,5298,-5299,5298,5299,5300,-5301,5300,5301,5302,-5303,5302,5303,5304,5305,5306,-836,-835,-834,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,-5319,5318,5319,-5320,5320,5321,-5322,5322,5323,-5324,5323,5324,5325,5326,5327,5328,5329,5330,-5331,5330,5331,5332,-5333,5333,5334,5335,-5336,5335,5336,5337,-5338,5337,5338,5339,5340,5341,-5342,5341,5342,5343,5344,5345,5346,-1274,1272,-1366,1364,-1364,1362,1362,-1362,5347,5348,-4411,4409,4409,4409,-4409,4407,-4407]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 14"},"id":"1314","arcs":[[-1701,5349,5350,-5351,5350,5351,5352,5353,-5354,5353,5354,5355,-5356,5355,5356,5357,-5358,5357,5358,5359,5360,-5361,5360,5361,5362,5362,5363,5364,5365,5366,5367,5368,-5369,5368,5369,5370,5371,-5372,5371,5372,5373,-5374,5373,5374,5375,5376,5377,-5378,5377,5378,5379,-5380,5379,5380,-2977,2975,-3657,5381,5382,5383]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 5"},"id":"1205","arcs":[[5384,-5385,5384,5385,5386,5387,5388,-3065,3064,-3065,5389,-5390,3064,3065,5390,5391,5392,5393,5394,5395,5395,5396,5397,5398,5399,-5400,5399,5400,5401,5402,5403,5404,5405,5406,-5405,5407,5408,5409,5410,-5411,5410,5411,5412,5413,5414,5415,5416,-5417,5416,5417,5418,-5419,5419,-5420,5418,-5419,5419,5420,5421,5422,5423,5424,-5424,5425,5426,-5427,5427,-5428,5427,5428,5429,-5430,5429,-5430,5430,5431,-5422,5421,-5422,5432,5433,5434,5435,5436,5437,-5438,5438,5439,-5440,5439,-5440,5439,-5398,5440,5441,-5442,5441,-5442,5442,5443,-5444,5444,-5391,-3066,-3065,-3064,3062,-3062,3060,-3060,-3059,3058,-3059,-3058,-3056,3056,3055,-3056,3055,-3056,-3055,-3054,3053,-3054,-3053,-3052,3051,-3052,-3099,3097,-3097,-3096,3095,-3096,-3095,-3094,3093,-3094,-3093,-3092,3091,-3092,-3091,-3090,3089,-3090,-3089,3087,-3087,-3086,3085,-3086,-3085,3083,-3083,5445,5446,-5447,5446,5447,5448,5449,-5450,5449,5450,5451,-5452,5451,5452,5453,5454,5455,5456,5457,-5458,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,-5469,5468,5469,5470,5471,5472,-5473,5473,5474,5474,5475]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 10"},"id":"1210","arcs":[[5476,5477,5478,-5479,-5478,5477,5479,-5480,5478,5480,5481,-5482,5482,5483,-5484,5483,5484,5466,-5467,-5466,5464,-5464,-5463,-5462,5461,5485,5486,5487,5488,-5489,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,-5498,5497,5498,5499,-5500,5499,5500,5501,5502,-5503,5502,5503,5504,-5505,5504,-5505,5504,5505,-3530,3528,-3528,5506,5507,-5508,5507,5508,5509,5510,-5511,5511]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 27"},"id":"4827","arcs":[[5512,-5513,5512,-5513,5512,5513,5514,5514,5514,5515,5516,-5517,5517,5516,5518,-5519,5518,5519,5520,-5521,5520,5521,5522,-5523,5522,5523,5524,-5525,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,-5535,5534,5535,-5536,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,-5546,5545,5546,5547,5548,-5549,5548,-5549,5548,-5549,5548,-5549,5548,5549,-5550,5549,5550,5551,5552,5553,-5554,5553,5554,5555,5556,5557,-5558,5557,5558,5559,5560,5561,-5562,5561,5562,5563,5564,5565,5566,5567,5567,5568,5569,5570,5571,5572,5573,5574,5575,-5576,5576,5577,5578,5579,5580,5581,5582,5583,5584,-5585,5584,5585,5586,5587,5588,5589,-5590,5589,-5590,5589,5590,5591,-5592,5591,-5592,5591,5592,5593,-5594,5593,5594,5595,-5596,5595,5596,5597,5597,5598,5599,-5600,5600,5601,5602,5603,5604,5605,5606,-5607,5606,5607,5608,-5609,5608,5609,5610,5611,5612,-5613,5612,5613,5614,-5615,5614,5615,5616,-5617,5616,5617,5618,5619,5620,-5621,5620,5621,5622,5623,5624,-5625,5624,5625]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 34"},"id":"4834","arcs":[[5626,-5627,5626,5627,5628,-5629,5628,5629,-5630,5629,5630,5631,-5632,5631,5632,5633,5634,5543,-5544,-5543,5541,-5541,5539,-5539,5537,-5537,-5536,5535,-5536,-5535,5534,-5535,-5534,5532,-5532,5530,-5530,5528,-5528,5526,-5526,-5525,5524,-5525,-5524,-5523,5522,-5523,-5522,-5521,5520,-5521,-5520,-5519,5518,-5519,-5517,5517,5516,-5517,-5516,5514,5514,5514,-5514,-5513,5512,-5513,5512,-5513,-5626,-5625,5624,-5625,-5624,5635,5636,5637,5638,-5639,5638,-5639,5638,5639,5640,-5641,5640,5641,5642,5643,5644,-5645,5645,-5644,5646]]},{"type":"Polygon","properties":{"stateid":"18","name":"Congressional District 2"},"id":"1802","arcs":[[5647,5648,5649,-5650,5649,5650,5651,-4626,5652,5653]]},{"type":"Polygon","properties":{"stateid":"40","name":"Congressional District 5"},"id":"4005","arcs":[[5654,5655,-5656,5655,5656,5657,5658,-5659,5658,-5659,5658,-5659,5659,5658,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,-5673,5672,5673,5674]]},{"type":"Polygon","properties":{"stateid":"40","name":"Congressional District 4"},"id":"4004","arcs":[[5675,5676,5677,-5678,5677,5678,5679,5680,5681,5682,5683,-5684,5683,5684,5685,5686,5687,5688,5689,5690,-5674,-5673,5672,-5673,-5672,5670,-5670,5668,-5668,5666,-5666,5664,-5664,5662,-5662,5691,5692,5693,5694,5694,5695,-839,-838,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,-5706,5706,5707,5708,5709,-5707,5705,5710,-5709,5711,5712,5713,5714,5714,5715,5716,-5717,5716,5717,5718,5719,5720,5721,5722,5723,5724,-5725,5725,5726,5727,-5728,5728,5729,-5730,5730,5731,-5732,5731,5732,5733,5734,-5735,5735,5736,5737,5738,5739,5740,5740,5741,5742,5743,5744,5745,5746,5747,5748,-5749,5749,5748,5750,5751,-5752,5752,5751,5753,5754,5755,5756,-5757,5757,5758,5759,5760,-5761,5761,-5760,5762,5763,5764,-5765,5764,5765,5766,-5767,5766,5767,-5768,5767,5768,-5769,5769]]},{"type":"Polygon","properties":{"stateid":"27","name":"Congressional District 2"},"id":"2702","arcs":[[5770,-5771,5771,5772,-5773,5772,5773,5774,-5775,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,-5784,5783,5784,-1881,-1880,1878,-1878,1876,-1876,1874,-1874,1872,1872,-1872,1870,-1870,-4574,-4571,4569,-4569,4567,-4567,5785,5786,5787,5788,5789,5790,-5791,5791,5792,5793,-5771]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 7"},"id":"3907","arcs":[[5086,-5086,5084,-5084,5082,-5082,-5081,5080,-5081,5080,-5081,-5080,-5079,5078,-5079,-5078,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,-5806,5805,5806,5807,-5808,5808,5809,5810,5811,5812,5813,5814,-5810,5815,5816,5817,5818,5819,5820,5821,-5821,5820,-5821,5822,5823,5823,5824,5825,-5826,5826,5827,5828,5829,5830,-2714,2712,-2713,-2712,-2711,2710,-2711,-2710,2708,-2708,-2707,2706,-2707,2706,-2707,-2706,-2705,-2704,2702,-2699,2698,-2703,-2702,2700,-2700,-2699,-2698,-5088]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 16"},"id":"3916","arcs":[[-5806,5805,-5806,-5805,5803,-5803,5801,5800,-5800,5798,-5798,5796,-5796,5831,5832,5833,5834,-5835,5835,5836,5837,-5838,5837,5838,5839,5840,5841,5842,-5843,5842,5843,5844,5845,5846,5846,5846,5847,5848,5849,-4477,4476,-4477,-4476,-4475,4474,-4475,-4474,4472,-4473,4433,-4472,-4471,4469,-4470,-4469,-4438,4437,4438,-4468,-4466,4466,5850,5851,-5852,5851,5852,5853,5854,5855,5855,5855,-5854,5856,5857,5858,5858,5859,5860,-5861,5860,5861,5862,5863,-5819,5817,-5817,-5816,5809,-5815,5813,-5813,5811,-5811,-5810,-5809,5807,-5808,-5807]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 13"},"id":"3913","arcs":[[-5852,5851,-5852,-5851,-4467,4465,-4466,-4465,4463,-4463,4461,-4461,4459,-4459,4457,-4458,-4457,-4456,4454,-4455,-4454,4452,-4453,-4452,4450,4450,-4450,4442,4442,-4449,4447,4446,-4446,-4445,-4444,4442,-4442,4440,-4441,4440,-4441,4440,-4441,-4440,-4439,-4438,4436,-4437,-4436,4435,-4436,-4435,-4434,-4433,4431,-4432,-4431,4430,4431,-4432,-4431,-4430,-4429,-4428,-4427,4425,-4425,-3130,3128,-3129,-3128,-3127,-3126,3125,-3126,-3125,-3120,3119,-3124,3122,-3123,-3122,3120,-3121,-3120,-3119,-3118,3117,-3118,-3117,3115,-3115,-3114,3113,-3114,-3113,-3112,3110,-3111,-3110,3108,-3108,3106,-3107,-3106,5864,5865,-5826,-5825,5823,5823,-5823,5820,-5821,5820,5821,-5821,-5820,-5864,5862,-5862,-5861,5860,-5861,-5860,5858,5858,-5858,-5857,5853,5855,5855,5855,5854,-5854,-5853]]},{"type":"Polygon","properties":{"stateid":"16","name":"Congressional District 1"},"id":"1601","arcs":[[5866,-5867,5866,5867,5868,-5869,5868,5869,5870,5871,-5872,5872,5873,5874,5875,5876,5877,5878,-5879,5878,5879,5880,5881,5882,5883,5884,5885,5886,5886,5887,5888,5889,5890,5891,5892,5892,5893,5894,-5895,5894,5895,5896,5897,5898,5899,5900,5901,5902,-5903,5902,5903,5904,-5905,5904,5905,5906,5906,5906,5907,5908,-5909,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,-5933,5932,5933,5934,5935,5936,-5937,5936,5937,5938,-5939,5938,5939,5940,5941,5942,-5943,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,-5953,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,-5963,5962,5963,5964,5964,5964,5965,5966,-5967,5966,5967,5968,-5969,5968,5969,5970,-5971,5970,5971,5972,-5973,5972,5973,5974,-5975,5974,-5975,5974,5975,5976,-5977,5976,5977,5978,5979,5980,5981,5982,5983,5984,-5985,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5994,5995,-1791,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008]]},{"type":"Polygon","properties":{"stateid":"55","name":"Congressional District 8"},"id":"5508","arcs":[[6009,6010,6010,6010,6011,6012,6013,6014,6015,6015,6016,6017,-6018,6017,6018,6019,6020,6021,-6020,6019,-6022,6022,6023,6024,6025,6026,6027,6028,6029,6030,-6031,6030,6031,6032,6033,6034,-6035,6034,-6035,6034,6035,6036,6037,6038]]},{"type":"Polygon","properties":{"stateid":"53","name":"Congressional District 8"},"id":"5308","arcs":[[6039,6040,6041,-6042,6041,6042,6043,-6044,6043,-6044,6043,6044,6045,6046,6047,6048,6049,-6050,6049,6050,6051,-6052,6051,-6049,6052,6053,-6054,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,-6063,6062,-6063,6062,-6063,6064,6065,6066,6067,-6068,6067,6068,6069,-6070,6070,6071,-6072,6072,6073,6074,6075,6076,6077,6078,6079,6080,-6081,6081,6082,-6083,6082,-6083,6082,6083,-6084,6083,6084,6085,6086,6087,-6088,6087,-6088,6087,6088,6089,-6090,6089,6090,6091,-6092,6091,6092,6093,-6094,6093,-6094,6093,6094,6095,6096,6097,6098,6098,6099,6100,-6101,6100,6101,6102,-6103,6102,6103,6104,6105,6106,6107,6108,6109,6110,6110,6111,6112,6113,-6114,6113,6114,6115,-6116,6115,6116,6117,6118,6119,-6120,6119,6120,6121,-6122,6121,6122,6123,6124,6125,-6126,6125,6126,6127,-6128,6127,-6128,6127,6128,6129,6130,6131,6132,6133,-6134,6133,6134,6135,-6136,6135,6136,6137,6138,-6139,6138,6139,6140,6141,6142,-6143,6142,6143,6144,-6145,6144,6145,6146,6147,6148,6149,-6150,6149,6150,6151,-6152,6152,6153,-6154,6153,6154,6155,-6156,6155,6156,6157]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 9"},"id":"1309","arcs":[[-5356,5355,-5356,-5355,-5354,5353,-5354,-5353,6158,6159,6160,6161,-6162,6161,6162,-6163,6162,6163,-6164,6163,6164,6165,6166,-6167,6166,6167,6168,-6169,6168,6169,-6170,6169,6170,-6171,6170,6171,6172,6173,6174,-6175,6175,6176,-6177,6177,-6178,6177,6178,6179,6180,6181,6182,6183,-6184,6183,6184,6185,-6186,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,-6194,6196,6197,6198,6199,6200,6201,6202,6203,-6204,6203,6204,6205,6206,6207,-6208,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,-6220,6219,6220,6221,6222,6223,6223,6223,6223,6224,6225,6225,6226,6227,-6228,6227,-6228,6228,6229,6230,-6231,6231,-6232,-6230,6229,6231,-6232,6231,6232,6233,-6234,6233,6234,6235,6236,6237,6238,6239,-6240,6239,6240,6241,6242,6243,6244,6245,6246,6247,-6248,6248,6249,6250,-5374,5373,-5374,-5373,-5372,5371,-5372,5370,-5370,-5369,5368,-5369,-5368,5366,-5366,5364,-5364,5362,5362,-5362,-5361,5360,-5361,-5360,5358,-5358,5357,-5358,-5357]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 4"},"id":"0604","arcs":[[6251,-6252,6251,6252,6253,-6254,6254,6255,6256,6257,6257,6258,6259,-6260,6259,-6260,6259,6260,6261,6262,-6263,6263,-6264,6263,6264,6264,-6264,-6262,6265,6266,6267,6268,6269,6270,6271,6272,-6273,6272,6273,6274,-6275,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,-6285,6284,6285,-1796,-3781,3779,-3779,3777,-3890,-3889,3888,-3889,-3888,3886,-3886,3884,-3884,3882,-3882,3880,-3880,3878,-3878,-3877,3876,-3877,3875,-3875,3873,-3873,3871,3871,-3871,3869,-3869,3867,-3867,-3866,3865,-3866,-3865,3863,-3863,-3862,3861,-3862,-3861,3859,-3859,-3858,3857,-3858,-3857,-3856,3855,-3856,-3855,3853,-3853,6286,-2216,2214,-2214,-2213,2212,-2213,-2212,2210,2210,-2210,-2209,2208,-2209,2208,-2209,-2208,2206,-2206,-2205,2204,-2205,2203,-2203,2201,-2201,2199,-2199,-2093,-2092,2091,-2092,-2091,-2090,-2089,2088,-2089,-2088,6287,6288,6289,6290,6291,-6292,6291,6292,6293,6294]]},{"type":"Polygon","properties":{"stateid":"56","name":"Congressional District (at Large)"},"id":"5600","arcs":[[6295,6296,-527,6297,6298,6299,-6300,6299,6300,6301,6302,6303]]},{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 5"},"id":"3705","arcs":[[6304,6305,6306,-1555,-1554,-5254,-5253,5252,-5253,-5252,5250,-5250,5248,-5248,-5247,5246,-5247,-5246,5244,-5244,5242,-5242,5240,-5240,5238,-5238,5236,-5236,6307,6308,6309,6310,6311,6312,-6313,6313,6314,-6315,6314,6315,6316,-6317,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,-6323,6326,6327,6328,-6329,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,-6343,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,-6353,6353,6354,-6355,6354,6355,6356,6357,6358,6359,6360,6361,6362,-6363,6363,6364,6365,6366,6367,-6365,6364,-6368,6368,6369,-6370,6369,6370,6371,-6372,6371,6372,6373,-6374,6374,6375,6376,6377,6378,6379,6380,6381,-6382,6381,6382,-6383,6382,6383,6384,6385,6386,6387,6388,6389,6390,-6391,6390,-6385,6391,6392,6393,-6394,-6393,6394,6395,6396,-6380,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407]]},{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 9"},"id":"3709","arcs":[[-6374,-6373,-6372,6371,-6372,-6371,-6370,6369,-6370,-6369,6367,-6365,6364,-6368,-6367,-6366,-6365,-6364,6362,-6363,-6362,6360,-6360,6358,-6358,6356,-6356,-6355,6354,-6355,-6354,6352,6408,6409,6410,6411,6412,6413,6414,-6415,6415,6416,6417,6418,6419,6420,-6421,6420,6421,6422,6423,6424,-6425,6424,6425,6426,6427,6428,6429,6430,-6431,6430,6431,6432,-6433,6432,6433,6434,-6435,6434,6435,6436,6437,6438,-6439,6438,6439,6440,6441,-6442,6441,-6442,6441,6442,6443,6444,-6443,6445,6446,6447,6448,6449,-6450,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,-6463,6463,6464,6465,6466,6467]]},{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 8"},"id":"3708","arcs":[[6468,6468,6468,6469,6470,-6471,6471,-6410,6472,6473,6474,6475,6476,6477,6478,6479,6479,6480,6481,6482,6483,-6484,6483,6484,6485,6486,-6487,6487,6488,6489,6490,-6491,6490,6491,6492,-6493,6492,6493,-6494,6494,6495,-6496,6495,6496,-6497,6496,6497,6498,6499,6500,6500,6500,6500,6500,6501,6502,6503,-6504,6503,6504,6505,6506,6507,-6508,6507,-6508,6507,6508,6509,-6510,6509,6510,6511,-6512,6511,6512,6513,-6514,6513,6514,6515,6516,6517,-6518,6517,6518,-6519,6518,6519,6520,-6521,6520,6521,-6522,6521,6522,-6523,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,-6531,6532,6530,6533,6534,-6535,6534,6535,6536,6537,6538,-6539,6538,6539,6540,6541,6542,-6543,6542,6543,6544,6545,6546,-6547,6546,6547,6548,-6549,6548,6549,6550,6551,6552,-6553,6552,6553,-6554,6553,6554,-6555,6554,6555,6556,6557,6558,-6559,6558,-6559,6559,6560,-6453,6451,-6451,-6450,6449,-6450,-6449,6561]]},{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 12"},"id":"3712","arcs":[[-6425,6424,-6425,-6424,6422,-6422,-6421,6420,-6421,-6420,6418,-6418,6416,-6416,6414,-6415,-6414,6412,-6412,-6411,-6410,-6409,-6353,-6352,6350,-6350,6348,-6348,6346,-6346,-6345,-6344,-6343,6342,-6343,-6342,6340,-6340,-6339,6337,-6337,-6336,-6335,-6334,-6333,-6332,6330,-6330,-6329,6328,-6329,-6328,6326,6322,-6326,6324,-6324,-6323,-6322,6320,-6320,6318,-6318,-6317,6316,-6317,-6316,-6315,6314,-6315,-6314,6312,-6313,-6312,-6311,-6310,6308,-6308,-5235,5234,-5235,-5234,5232,-5232,-5199,5198,-5231,5229,-5229,-5228,5227,-5228,-5227,5225,-5225,5223,-5223,5221,-5221,5219,-5219,5218,-5219,-5218,-5217,5216,-5217,5215,-5215,-5214,5213,-5214,-5213,-5211,5210,-5211,5210,5211,-5211,-5210,5208,-5208,5206,-5206,5204,5204,-5204,5202,-5202,5200,-5201,-5200,-5199,-5198,6562,-6502,6500,6500,6500,6500,6500,-6500,6498,-6498,-6497,6496,-6497,-6496,6495,-6496,-6495,6493,-6494,-6493,6492,-6493,-6492,-6491,6490,-6491,-6490,6488,-6488,6486,-6487,-6486,-6485,-6484,6483,-6484,-6483,6481,-6481,6479,6479,-6479,6477,-6477,6475,-6475,6473,-6473,6409,-6472,6470,-6471,-6470,6468,6468,6468,-6562,-6448,6446,-6446,6442,6444,6443,-6443,-6442,6441,-6442,6441,-6442,-6441,-6440,-6439,6438,-6439,-6438,6436,-6436,-6435,6434,-6435,-6434,-6433,6432,-6433,-6432,-6431,6430,-6431,-6430,6428,-6428,6426,-6426]]},{"type":"Polygon","properties":{"stateid":"51","name":"Congressional District 8"},"id":"5108","arcs":[[-464,463,-464,-463,-462,460,-460,-459,-458,457,-458,-457,455,-455,453,-453,451,-451,-450,449,-450,6563,6564,6565,6566,-6567,6566,-6567,6566,-6567,6567,6568,-6569,6568,6569,6570,6571,6572,6573,6573,6574,-6573,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,-465]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 25"},"id":"4825","arcs":[[6585,-6586,6585,6586,6587,6588,6589,-6590,6589,6590,6591,6592,6593,-6594,6593,6594,6595,-6596,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,-6616,6616,6617,6618,6619,-6620,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,-6631,6630,6631,6632,6633,6634,-6635,6634,6635,6636,6637,6638,6639,6640,6641,6641,6642,6643,6644,6645,6645,6646,6647,-6648,6647,6648,6649,6650,6651,-6652,6652,6653,-6654,6653,6654,6655,6656,-6657,6657,6658,6659,6660,-6661,-6660,6659,6660,-6661,6661,6662,6663,6664,-6665,6664,6665,6666,-6667,6667,6666,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,-6678,6677,6678,6679,-6680,6679,-6680,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,-6688,6689,6690,6691,6692,6693,-6694,6693,6694,6695,-6696,6695,6696,6697,-6698,6697,6698,6699,6700,6701,6702]]},{"type":"Polygon","properties":{"stateid":"29","name":"Congressional District 3"},"id":"2903","arcs":[[6703,6704,6705,6706,6707,-6708,6708,6709,6710,6711,6712,6713,6714,-6715,6714,6715,6716,-6717,6717,6718,6719,6720,6721,6722,6723,6724,6725,-6726,6726,6727,6728,6729,6730,6731,6732,6733,-6734,6734,-6735,6734,6735,6736,6737,6738,-6735,6739,6733,6740,6741,-6742,6741,6742,-6743,6742,6743,-6744,6743,6744,6745,6746,6747,-6748,6747,-6748,6747,6748,-6746,6749,6750,-6751,6750,6751,6752,6752,6753,6754,-6755,6754,6755,6756,-6757,6757,6756,6758,6759,6760,6761,-6762,6761,6762,6763,-6764,6764,6765,-6766,6765,6766,6767,6767,6768,6769,-6770,6769,6770,6771,6772,6773,6774,6775,-6776,6776,-6777,6775,6777,6778,-6779,6779,6780,6781,6782,6783,6784,6785,-6786,6785,6786,6787,6788]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 2"},"id":"1202","arcs":[[6789,6790,6791,6792,-6793,6792,6793,6794,-6795,6794,6795,6796,6797,6798,-6799,6798,6799,6800,6801,6802,6803,6804,-6805,6804,6805,6806,-6807,6806,6807,6808,-6809,6808,6809,-6810,6809,6810,6811,-6812,6811,6812,6813,6814,6815,6816,-5348,-1361,1359,-1359,6817,6818,6819,-6820,6819,6820,6821,-6822,6821,6822,6823,-6824,6823,6824,6825,6826,6827,6828,6829,6830,6831]]},{"type":"Polygon","properties":{"stateid":"41","name":"Congressional District 2"},"id":"4102","arcs":[[6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,-6849,6848,6849,6850,-6851,6850,6851,6852,-6853,6852,6853,6854,6855,-6856,6856,6857,6858,6859,6860,6861,6862,6863,6864,-6865,6864,6865,6866,6867,4538,-4538,-4537,4536,-4537,-4536,-4535,4534,-4535,-4534,4532,-4532,4530,-4530,4528,-4528,-4500,-4499,4497,-4497,-4496,4495,-4496,-4495,4493,6868,6869,6870,6871,6872,6873,6874,-5875,5873,-5873,5871,-5872,-5871,-5870,-5869,5868,-5869,-5868,-5867,5866,-5867,-6009,6007,-6007,6005,-6005,6003,-6003,6001,-6001,5999,-5999,5997,-5997,-1790,6875,6876,6877,-6878,6878,6879,6880,6881,-6881,6880,6882,6883,6884,6885,-6886,6885,6886]]},{"type":"Polygon","properties":{"stateid":"27","name":"Congressional District 8"},"id":"2708","arcs":[[6887,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,-6905,6904,6905,6906,6907,6908,6909]]},{"type":"Polygon","properties":{"stateid":"50","name":"Congressional District (at Large)"},"id":"5000","arcs":[[6910,-6911,6910,6911,6912,6913,6914,6915,6916,-6917,6916,6917,6918,6919,6920,-6921,6920,6921,6922,-6923,6923,6924,6925,-6926,6926,6927,6928,6929,6930,6931,6932,-6933,6933,6934,-6935,6934,6935,6936,-6937,6936,6937,6938,6939,6940,6941,6942,6943,6944,-6945,6944,6945,6946,-6947,6946,-6947,6946,6947,6948,-6949,6948,-6949,6948,6949,6950,-6951,6950,6951,6952,-6953,6952,6953,6954,-6955,6954,6955,6956,6957,6958,6959,6960,6961,6962,-6963,-6961,6960,6962,6963,-4060,-4036,6964,6965,6966,6966,6967,6968,-6969,6968,6969,6970,6971]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 8"},"id":"3908","arcs":[[-4623,-4491,-5090,6972,6973,6974,6975,6976,6977,-1801,-1800,1799,-1800,-1799,1797,-1797,6978]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 21"},"id":"4821","arcs":[[6979,6980,6981,-6982,6981,6982,6983,-6690,6687,-6689,-6688,-6687,6685,-6685,6683,-6683,6681,-6681,-6680,6679,-6680,6679,-6680,-6679,-6678,6677,-6678,-6677,6675,-6675,-6674,-6673,6671,-6671,6669,-6669,-6667,6667,6666,-6667,-6666,-6665,6664,-6665,-6664,6662,-6662,6660,-6661,-6660,6659,6660,-6661,-6660,-6659,6984,6985,-6986,6985,6986,6673,6987,6988,6988,6989,6990,-6991,6991,6990,6992,6993,6994,6995,6996,6997,-6998,6997,-6998,6998,6999,-7000,6999,7000,7001,7002,-7003,7003,7004,-7005,7004,7005,7006,7007,7008,7009,-7010,7009,7010,7011,7012,7013,7014,7015,7016,7017,-7018,7017,7018,7019,-7020,7020,7021,-7022,7022,7023,7023,7024,7025,7026,7027,7028,7028,7029,7030,7031,7032,7033,7034,7035,-7036,7036,-7031,7037,7038,-7039,7039,7040,7041,7042,7043,7044,7045,7046,-7047,7046,7047,7048,7049,7050,7051,7052,7053,-7054,7054,7055,7056,-7057,7057,7058,7059,7060,7061,7062]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 22"},"id":"3622","arcs":[[7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,-1423,-1422,1421,-1422,-1421,-1420,1419,-1420,1419,-1420,-1419,1417,-1417,-1416,1415,-1416,1415,-1416,-1415,1413,1413,-1413,1411,-1411,-1410,1409,-1410,-1409,1407,-1407,-1406,1405,-1406,-1405,7074,7075,7076,7077,-7078,7077,7078,7079,-7080,7079,7080,7081,-7082,7081,7082,7083,-7084,7084,7085,7086,-7087,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7096,7096,-7095,7097,7097,-7094,7098,-7099,7098,-7099,7099,-7100,7098,7100,7101,-7102,7101,7102,7103,-7104,7103,7104,7105,-7106,7105,7106,7107,-7108,7107,7108,7109,-7110,7109,7110,7111,7112,7113,7114,7115,7116,7117]]},{"type":"Polygon","properties":{"stateid":"40","name":"Congressional District 1"},"id":"4001","arcs":[[7118,7119,7120,7121,7122,7123,-7124,7123,7124,7125,7125,7125,7126,7127,7128,7129,7130,7131,7132,-7132,7131,7133,7134,-7135,7134,7135,7136,-7137,7136,7137,7138,7139,-7140,7139,7140]]},{"type":"Polygon","properties":{"stateid":"21","name":"Congressional District 2"},"id":"2102","arcs":[[7141,-7142,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,-7156,7155,7156,7157,7158,7159,-7160,7159,7160,7161,7162,7163,7164,-7165,7165,7164,7166,-7167,7167,7168,7169,7170,7171,7172,-7173,7172,7173,-552,-551,-550,549,-550,549,-550,548,-548,546,-727,725,-725,-724,723,-724,723,-724,-723,722,-723,-721,721,720,-721,-720,-719,718,-719,-718,716,-716,714,-714,-713,-712,-711,709,-710,-709,707,-707,705,-705,703,-703,701,-702,-701,-700,-699,698,-699,-698,-697,696,-697,-696,694,-694,692,-692,-691,690,-691,-690,-689,688,-689,-688,-687,686,-687,-686,684,-684,-683,682,-683,-682,7174,7175,7176,7177,7178,-7179,7178,7179,7180,7181,-7181,7182,7183,-7184,7183,-7184,7184,7185,-7186,7186,7187,7188,7189,7190,7190,7191,7192,-7193,7192,7193,7194,-7195,7194,7195,-7196,7195,-7196,7195,7196,7197,-7198,7197,7198,7199,-7200,7199,7200,7201,-7202,7202,7201,7203,7204,7205,7206,7207,7208,7209,7210,7210,7211,7212,7213,7214,-7215,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,-7228,-7227,7228,7229,7227,7230,7231,-7232,7232,7233,-7234,7234,7233,7235,-7236,7235,7236,-7237,7236,7237,7238,7239,7240,-7241,7240,7241,7242,-7243,7242,7243,-7244,7243,-7244,7243,7244,7245,7246,-7247,7246,7247,7248,7249,7250,7251,7252,-7253,7252,-7253,7252,7253,7254,-7255,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,-7268,7267,7268,-7269,7268,7269,7270,-7271,7270,7271,7272,-7273,7272,7273,7274,7275]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 4"},"id":"1204","arcs":[[-3330,-3329,3328,-3329,-3328,-3327,3326,-3327,3326,-3327,-3326,-3325,3324,-3325,-3324,3322,-3322,-3321,3320,-3321,-3320,3318,-3318,-3317,3316,-3317,-3316,-3315,3314,-3315,-3314,3312,-3312,3310,-3310,-3309,3308,-3309,3307,-3307,3305,-3305,3303,-3303,-3302,3301,-3302,-3301,3299,-3299,-3298,3294,3296,-3297,3295,3295,-3295,3294,-3295,-3294,3292,3291,-3291,3289,3289,-3289,3287,-3287,7276,-3069,3067,-3067,5390,-5445,5443,-5444,-5443,5441,-5442,5441,-5442,-5441,5397,-5440,5439,-5440,5439,-5440,-5439,5437,-5438,-5437,-5436,5434,-5434,-5433,5421,-5422,5421,-5432,-5431,5429,-5430,5429,-5430,-5429,-5428,5427,-5428,5426,-5427,-5426,5423,5424,-5424,-5423,-5422,5420,-5420,5418,-5419,5419,-5420,5418,-5419,-5418,-5417,5416,-5417,-5416,5414,-5414,5412,-5412,-5411,5410,-5411,-5410,5408,-5408,5404,-5407,-5406,-5405,-5404,5402,-5402,-5401,-5400,5399,-5400,-5399,-5398,-5397,5395,5395,-5395,7277]]},{"type":"Polygon","properties":{"stateid":"24","name":"Congressional District 4"},"id":"2404","arcs":[[-6578,-6577,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,-7288,7288,7289,7290,-7291,7291,7292,7293,7294,7294,7295,7296,-7297,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,-7318,7317,7318,7319,7320,7321,7322,-7323,7322,7323,-7291,7324,7325,7326,-7286,7327,-7284,-7283,7328,7329,-7330,7329,7330,7331,-7332,7331,7332,-7332,7333,7334,-7335,7334,-7335,7334,7335,-7336,7335,7336,7337,7338,7339,7340,7341,7341,7342,7343,7344,7345,7346,7347,7348]]},{"type":"Polygon","properties":{"stateid":"24","name":"Congressional District 5"},"id":"2405","arcs":[[-467,-466,-6585,6583,-6583,6581,-6581,6579,-6579,-7349,7347,-7347,7345,-7345,7343,-7343,7341,7341,-7341,7339,-7339,7337,-7337,-7336,7335,-7336,-7335,7334,-7335,7334,-7335,-7334,7331,7332,-7332,7331,-7332,-7331,-7330,7329,-7330,-7329,7282,7283,-7328,7285,-7327,7325,-7325,7290,-7324,-7323,7322,-7323,-7322,7320,-7320,7318,-7318,7317,-7318,-7317,7315,-7315,7349,7350,2489,-2490,-2489,-2488,2487,-2488,-2487,-2486,2485,-2486,-2485]]},{"type":"Polygon","properties":{"stateid":"08","name":"Congressional District 5"},"id":"0805","arcs":[[7351,7352,-7353,7352,7353,7354,-7355,7354,7355,7356,7357,7358,-7359,7358,7359,-7359,7360,7361,-7362,7361,7362,-546,7363,7364,7365,7366,-7367,7366,7367,7368,-7369,7368,7369,7370,7371,7372,7373,7374,7375,7376,-7377,7376,7377,7378,7379,7380,-7381,7380,7381,7382,7383,7384,7385,7386,7387]]},{"type":"Polygon","properties":{"stateid":"51","name":"Congressional District 7"},"id":"5107","arcs":[[7388,7389,7390,-7391,7390,7391,7392,7393,7393,7394,7395,7396,7397,7398,7399,7400,-7401,7400,7401,7402,7403,7404,7405,7406,-7407,7406,7407,2458,-2585,2583,-2583,2581,-2581,2579,-2579,-2578,2577,-2578,-2577,-2576,2575,-2576,-2575,2573,-2574,-2573,2571,-2572,-2571,2569,-2569,2567,-2567,2565,-2565,2563,-2563,-2562,2561,-2562,-2561,-2560,2559,-2560,-2559,2556,-2558,-2557,2556,-2557,-2556,-2555,2554,-2555,-2554,-2553,2552,-2553,-2552,-2551,2550,-2551,-2550,2548,-2548,2546,-2546,2544,-2544,-2542,2542,-2543,2541,-2542,-2541,-2540,2538,2537,-2537,-2536,2535,-2536,-2535,2533,-2533,-2532,2531,-2532,-2531,2528,-2530,-2529,-2528,2526,-2526,2522,-2525,-2524,-2523,-2522,-2521,-2520,2519,-2520,-2519,2518,-2519,2518,-2519,2518,-2519,-2518,-2517,2516,-2517,-2516,-2515,-4106,2515,4104,-2516,-4104,4102,-4102,4100,4099,-4099,-4098,4097,-4098,4097,-4098,-4097,4095,-4095,-4094,4093,-4094,-4093,-4092,4091,-4092,-4091,-4090,4089,-4090,-4089,-4088,4087,-4088,4087,-4088,-4087,4085,-4085,-4084,4083,-4084,-4083,-4082,4081,-4082,-4190,7408,7409,7410,7411,-7412,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,-7425,7424,7425]]},{"type":"MultiPolygon","properties":{"stateid":"72","name":"Resident Commissioner District (at Large)"},"id":"7298","arcs":[[[7426]],[[7427]],[[7428]]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 1"},"id":"2601","arcs":[[-6897,6895,7429,7430,7431,7432,7432,7432,7433,7434,7435,-3201,-3200,3199,-3200,-3199,3198,3199,7436,7437,-6029,6027,-6027,6025,-6025,6023,-6023,6021,-6020,6019,-6022,-6021,-6020,-6019,-6018,6017,-6018,-6017,6015,6015,-6015,6013,-6013,7438,7439,-7440,7439,7440,7441,-7442,7441,7442,7443,7444,7445,-7446,7445,7446,7447,7448,7449,7450,7451,7452,7453,-7454,7453,7454,7455,-7456,7455,7456,7457,7458,7459,7460,7461,7462,7462,7463,7464,-7465,7465,7464,7466,7467,7468,7469,-7470,7469,7470,7471,-7472,7471,7472,7473,-7474,7473,7474,7475,7476,7477,-7478,7477,7478,7479,7480,7481,7482,7483,7484,7485,7485,7486]]},{"type":"MultiPolygon","properties":{"stateid":"60","name":"Delegate District (at Large)"},"id":"6098","arcs":[[[7487]],[[7488]],[[7489]],[[7490]]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 28"},"id":"4828","arcs":[[7491,7492,7493,7494,7495,7495,7496,7497,7498,7499,-7500,7500,7501,7502,7503,7504,-7505,7504,7505,7506,7507,7508,-7016,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,-7520,7520,7519,7521,7522,7523,-7524,7523,-7524,7523,7524,-7525,7524,7525,7526,7527,7528,7529,7530,7531,-7532,7531,7532,7533,-7534,7533,7534,7535,-7536,7535,7536,7537,7538,7539]]},{"type":"MultiPolygon","properties":{"stateid":"02","name":"Congressional District (at Large)"},"id":"0200","arcs":[[[7540]],[[7541]],[[7542]],[[7543]],[[7544]],[[7545,7546,7547]],[[7548,-7546,7549]],[[7550]],[[7551]],[[7552]],[[7553]],[[7554]],[[7555]],[[7556]],[[7557]],[[7558]],[[7559]],[[7560]],[[7561]],[[7562,7563]],[[7564]],[[7565]],[[7566]],[[7567]],[[7568]],[[7569]],[[7570]],[[7571]],[[7572]],[[7573]],[[7574]],[[7575]],[[7576]],[[7577,7578,7579]],[[7580]],[[7581,-7578,7582]],[[7583]],[[7584]],[[7585]],[[7586]],[[7587]],[[7588]],[[7589]],[[7590]],[[7591,7592]],[[-7592,7593]],[[7594]],[[7595]],[[7596]],[[7597]]]},{"type":"Polygon","properties":{"stateid":"35","name":"Congressional District 2"},"id":"3502","arcs":[[7598,7599,-7600,7599,7600,7601,7602,7603,7604,7605,-7606,7605,-7606,7605,7606,7607,7608,7609,7610,7611,-7609,7612,7613,-7614,7613,-7614,7613,-7614,7613,7614,7615,7616,7617,7617,7618,7619,7620,7621,7621,7621,7622,-7623,7622,7623,7624,7625,-7625,7624,7626,7627,-7628,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,-7637,7637,7636,-7637,7638,7639,7640,-7641,7640,7641,7642,7643,7644,7645,7646,7647]]},{"type":"Polygon","properties":{"stateid":"27","name":"Congressional District 6"},"id":"2706","arcs":[[7648,7649,7650,7651,7652,7653,7654,7655,-7656,7656,-6909,7657,-4565,-4573,-1859,-1858,1857,-1858,-1857,-1856,1855,-1856,-1855,1853,1852,-1853,-1852,1850,-1851,1850,-1851,-1850,-1849,1848,-1849,-1848,1846,1846,-1846,1844,-1844,1842,-1842,-1841,1840,-1841,-1840,-1839,1838,-1839,-1884,1882,-1882,-1881,1880,-5785,-5784,5783,-5784,-5783,5781,-5781,-5780,5779,7658,7659,7660]]},{"type":"MultiPolygon","properties":{"stateid":"47","name":"Congressional District 8"},"id":"4708","arcs":[[[7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,-7677,7677,7678,7679,7680,7681,7682,7683,-7684,7683,7684,7685,-7686,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,-7696,7695,7696,-7697,7696,7697,7698,7699,7700,-7701,7700,-7701,7700,7701,7702,-7703,7702,7703,7704,7705,7706,7706,7707,7708,7709,7710,-7711,7710,7711,7712,7713,7714,7715]],[[7716,7717,-7716,7718,7719]]]},{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 10"},"id":"3710","arcs":[[7720,7721,7722,7722,7723,-7724,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,-7743,7742,7743,7744,-7745,7744,-7745,7744,7745,7746,7747,7748,7749,6393,7750,6395,7751,-6398,6379,-6397,-6396,-6395,6392,6393,-6394,-6393,-6392,6384,-6391,6390,-6391,-6390,6388,-6388,6386,-6386,-6385,-6384,-6383,6382,-6383,-6382,6381,-6382,-6381,-6380,-6379,6377,-6377,6375,-6375,6373,-6468,6466,-6466,6464,-6464,6462,-6463,-6462,-6461,6459,-6459,7752,-4907,-4906,4905,-4906,7753,7754,7755,7756,-7757,7756,7757,7758,7759,7760,7761,7762,-7763,7763,7764,-7765,7764,-7765,7765]]},{"type":"Polygon","properties":{"stateid":"21","name":"Congressional District 4"},"id":"2104","arcs":[[7766,7767,-1837,-1836,-1835,7768,7769,7769,7770,7771,7772,7773,-7774,7773,7774,7775,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,-7785,7784,-7785,7784,7785,-7786,7785,7786,7787,-7788,7787,7788,7789,7790,7791,-7792,7791,7792,7793,-7794,7793,7794,7795,-7796,7795,7796,7797,-7798,7797,7798,7799,-7800,7799,7800,7801,7801,7802,7803,7804,7805,7806,7807,7808,-7809,7808,7809,7810,7811,7812,7813,601,-602,-601,-600,599,-600,-599,597,-597,595,-595,594,-595,-594,592,-592,-591,590,-591,-590,-589,588,-589,-588,586,-587,585,-585,-584,583,-584,-582,582,581,-582,-581,580,-581,580,-581,-580,578,-578,-577,576,-577,575,-575,573,-573,-572,571,-572,-571,-570,-569,-568,567,-568,-567,-566,565,-566,-565,563,-563,561,-561,-560,559,-560,-559,557,-557,555,-555,-554,553,-554,-553,-552,551,-7174,-7173,7172,-7173,7171,-7171,7169,-7169,-7168,7166,-7167,-7165,7165,7164,-7165,-7164,7162,-7162,7814,7815,7816,7817,-7818,7818,7819,-7820,7820,7821,7822,7823,-7824,7823,7824,7825]]},{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 11"},"id":"3711","arcs":[[7826,7827,-7828,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,-4006,-4005,4003,-4003,-4002,4001,-4002,-4001,-4000,3999,-4000,-3999,7838,7839,-7840,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,-7860,7859,7860,7861,7862,7863,7863,7864,7865,7866,7867,7868,7869,7869,7870,7871,7872,7873,7874,6407,-6408,-6407,6405,-6405,6403,-6403,6401,-6401,6399,-6399,-7752,-6396,-7751,-6394,-7750,7748,-7748,7746,-7746,-7745,7744,-7745,7744,-7745,-7744,-7743,7742,-7743,7741,-7741,7739,-7739,7737,-7737,7735,-7735,7733,-7733,7731,-7731,7729,-7729,7727,-7727,7725,-7725,-7724,7723,-7724,7722,7722,-7722,7720,-7766,7764,-7765,7764,-7765,-7764,7762,-7763,-7762,7760,-7760,7758,-7758,-7757,7756,-7757,-7756,7754,-7754,4905,-4906,-4905,-4903,4902,4903,-4903,-4902,4900,-4900,-4899,4898,-4899,4898,-4899,-4898,-4897,-4896,-4895,-4894,-4893,4892,-4893,-4892,4890,-4890,-4889,4888,-4889,-4888,-4887,4886,-4887,4886,-4887,-4886,4885,-4886,-4885,4884,7875,-6160]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 36"},"id":"4836","arcs":[[7876,7877,7878,7879,7880,7881,-7882,7881,7882,7883,-7884,7883,7884,-2381,2379,-2379,2377,-2377,-2376,2375,-2376,-2375,-2374,2373,-2374,-2373,2372,-2373,-2372,-2371,-2370,2369,-2370,-2369,-2368,2367,-2368,2367,-2368,2367,7885,7886,-7887,7886,7887,7888,7888,7888,7888,7888,7889,7890,-7891,7890,7891,7892,7893,-7894,7892,7893,7894,7895,-7896,7895,7896,7897,-7898,7897,7898,7899,7900,7901,-7902,7901,7902,-7903,7902,-7903,7902,7903,7904,7905,7906,7907,7908,-7909,7908,-7909,7908,-7909,7908,7909,7910,-7911,7910,7911,7912,7913,-7914,7913,7914,7915,-7916,7916,7917,-7918,7917,7918,7919,-7920,7919,7920,7921,7922,7923,-7924,7923,7924,7925,-7926,7925,7926,7927,7928,7929,7930,7931,-7932,7931,7932,7933,-7934,7933,-7934,7933,7934,7935,-7936,7935,-7936,7935,7936,7937,7938,7939,7940,-7941,7940,7941,7942,-7943,7942,7943,-7944,7943,7944,7945,-7946,7945,7946,7947,7948,7949,7950,7951,7952,-7953,7952,7953,7954,7955,7956,-7957,7956,7957,7958,7959,7960,-7961,7960,-7961,7960,7961,7962,7963,7964,7965,7966,-7966,7965,7967,7968,-7969,7968,7969,7970,7971,7972,7973,7974,7975,7976,-7977,7976,-7977,7976,7977,7978,7979,-7980,7980,7981,7982,7983,-7984,7984,-7982,7985,7986,7987,7988,7989,7990,7991,7992,7993,7993,7994,7995,-7996,7995,-7996,7995,7996,-7997,7997,7998,-7999,7999,8000,8001,8002,8003,8004,-8005,8005,8006,-8007,8007,-8008,8007,8008,8009,8010,-8011,8010,8011,8011,8011,8012,8013,-8014,8013,-8014,8013,-8014,8013,-8014,8014,8015,-8016,8016,8017,8018,-8019,8018,8019,8019,-8019,8020,8021,-8022,8021,8022,8023,-8024,8023,8024,8025,8026,8027,-8028,8027,8028,8029,-8030,8029,8030,8031,-8032,8031,-8032,8031,-8032,8031,-8032,8031,-8032,8031,8032,8033,-8034,8033,8034,8035,8036,8037,-8038,8037,8038,8039,-8040,8038,-8038,8040,8041,-8042,8041,8042,8043,8044,8045,-8046,8045,8046,8047,8048,-8049,8049]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 7"},"id":"0607","arcs":[[8050,8051,8052,8053,-8054,8054,8055,-8056,8056,-6293,-6292,6291,-6292,-6291,8057,8058,-8059,8058,8059,8060,-8061,8060,8061,8062,8063,8064,-8065,8064,-8065,8064,8065,8066,8067,8068,8069,8070,8071,8072]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 15"},"id":"0615","arcs":[[8073,8074,-8075,8074,-8075,8074,8075,8076,8077,8078,-8079,8078,8079,-8079,-8077,8080,8081,-8082,8081,8082,8083,-8084,8083,-8084,8083,8084,8085,-8086,8086,8087,-8088,8087,-8088,8087,8088,8089,-8090,8089,-8090,8089,-8090,8089,-8090,8089,8090,8091,-8092,8091,8092,8093,8094,8095,8096,8097,8098,8099,-8100,8099,8100,8101,-8102,8101,8102,8103,-8104,8103,8104,8105,8105,8106,8107,-8108,8107,-8108,8107,8108,8109,8110]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 10"},"id":"0610","arcs":[[8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,-8121,8120,8121,6288,-6289,-6288,-2087,-2086,2085,-2086,-2085,2084,-2085,-2084,-2083,2082,8122,8123,-8124,8123,8124,8125,-8126,8125,8126,-8097,8095,-8095]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 9"},"id":"0609","arcs":[[8127,-8128,8127,8128,8129,8130,8131,8132,8133,-8066,-8065,8064,-8065,8064,-8065,-8064,8062,-8062,-8061,8060,-8061,-8060,-8059,8058,-8059,-8058,-6290,-6289,-8122,-8121,8120,-8121,-8120,8118,-8118,8116,-8116,8114,-8114,8112,-8112,-8094,8134,8135,8136,8137,8138]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 10"},"id":"4210","arcs":[[8139,8140,-8141,8141,8142,8143,8144,8144,8145,8146,-8147,8146,8147,8148,8149,8150,-7118,8151,8152,8153,8154,-8155,8155,8154,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,-3192,-3191,3189,-3189,-3186,3187,3185,-3186,3185,3186,-3186,-3185,-3184,3182,-3183,-3182,3180,-3180,3178,-3178,-3177,3176,-3177,3175,-3175,3173,-3173,-3172,3170,-3171,3170,-3171,-3170,3168,3167,-3167,3165,-3165,3163,-3163,3161,-3161,3159,-3159,8168,8169,-8170,8169,8170,8171,8172,8173,8174,8175,-8176,8175,8176,8177,-8178,8177,8178,8179,8180,8181,8182,-8182,8183,8184,8185,8186,8187,2843,8188,-2844,-2843,2841,-2841,2839,-2839,2837,-2837,2835,-2835,8189,8190,8191]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 11"},"id":"4211","arcs":[[8188,-2844,-8188,-8187,-8186,-8185,-8184,8181,-8183,-8182,-8181,8179,-8179,-8178,8177,-8178,-8177,-8176,8175,-8176,-8175,8173,8172,-8172,-8171,-8170,8169,-8170,-8169,-3158,3156,-3156,-3155,3154,-3155,-3154,-3153,3152,-3153,-3152,3150,-3150,3148,-3148,-3147,3146,-3147,-3146,3145,-3146,-3145,3143,3143,-3143,3141,-3141,3139,-3139,3137,-3137,-3136,3135,-3136,-3135,3133,-3133,3131,-3197,-2080,-2079,2078,-2079,-2078,2076,-2077,-2076,-2075,-2073,2073,2072,-2073,-2072,2070,8192,8193,8194,8195,8196,8197,8198,-8199,-8198,8197,8198,-8199,8199,8198,8200,8201,8202,2853,-2854,-2853,2851,-2851,-2850,2849,-2850,2849,-2850,-2849,2847,-2847,2845,-2845]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 1"},"id":"0601","arcs":[[8203,-8204,8203,8204,8205,8206,8207,8208,8209,8209,8210,8211,-6876,-1789,-6286,-6285,6284,-6285,-6284,6282,-6282,6280,-6280,6278,-6278,6276,-6276,-6275,6274,-6275,-6274,-6273,6272,-6273,-6272,6270,-6270,6268,-6268,6266,-6266,6261,6263,6264,6264,-6264,6263,-6264,6262,-6263,-6262,-6261,-6260,6259,-6260,6259,-6260,-6259,6257,6257,-6257,6255,-6255,6253,8212,8213,8214,8215,8215,8216,8217,8218,8219,8220,8221,8222,8223,-8224,8223,8224,8225,8225,8226,8227,8228,8229,8230,8231,-8232,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,-8241,8240,8241,8242,-8243,8242,8243,8244,-8245,8244,8245,8246,8247,8248,8249,8250,8251,8252,-8253,8252,8253,8254,-8255,8254,8255,8256,8257,8258,-8259,8258,8259,8260,8261,8262,-8263,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 3"},"id":"0603","arcs":[[8288,8289,-8239,8237,-8237,8235,-8235,8233,-8233,-8232,8231,-8232,-8231,8229,-8229,8227,-8227,8225,8225,-8225,-8224,8223,-8224,-8223,8221,-8221,8219,-8219,8217,-8217,8215,8215,-8215,8213,-8213,-6254,-6253,-6252,6251,-6252,-6295,8290,8291,8292,-8292,8293,8294,8295,8296,8297,8298,-8299,8298,8299,8300,8300,8301,8302,8303,8304,-8305,8304,8305,-8073,8071,-8071,8069,-8069,8067,-8067,-8134,8132,-8132,8130,-8130,8306,8307,8308,8309,8310,-8311,8310,8311,8312,-8313,8312,8313,8314,-8315,8314,-8315,8314,8315,8316,8317,8318,-8319,8318,8319,8320,-8321,8320,8321,8322,8323,8324,8325,8326,8327,8328,-8329,8328,8329,8330,8331,8332,-8333,8332,8333,8334,8334,8335,8336,-8337,8336,8337,8338,-8339,8338,8339,8340,-8341,8340,8341,8342,-8343,8342,8343,8344,8344,8345,-8346,8345,8346,8347,-8348,8347,8348,8349,8350,8351,-8352,8351,-8352,8351,-8352,8351,-8352,8351,8352,8353,-8354,8353,8354,8355,-8356,8356]]},{"type":"Polygon","properties":{"stateid":"05","name":"Congressional District 1"},"id":"0501","arcs":[[8357,8358,8359,8360,-8360,8359,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,-8371,8370,8371,8372,-8373,8373,8374,-8375,8374,8375,-8376,8375,8376,-8377,8376,8377,-8378,8377,8378,8379,8380,8381,8382,8383,8384,8385,-8386,8385,8386,-7671,-7670,7668,-7668,7666,-7666,7664,-7664,7662,-7662,-7716,-7715,7714,7718,-7719,7715,-7718,7716,-7720,8387,8388,-8389,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,-8400,8404,8405,8406,8407,8408,8409,8410,8411,8412,-8410,8413,8414,8415,8416,8417,8418,-8419,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,-8435,8434,8436,8437,8438,-8439,8438,8439,8440,8441,8442,-8441,8443,8444,8445,-1105,-1104,8446,8447,8448,8449,8450,-8451,8450,-8451,8450,-8451,8450,-8451,8450,8451,8452,-8453,8452,-8453,8452,-8453,8452,8453,-8454,8453,8454,-8455,8454,8455,8455,8456,8457,-8458,8457,-8458,8457,-8458,8457,8458,8459,-8460,8459,-8460,8459,-8460,8459,8460,8461,8462,8463,8464,8464,8465,8466,-8467,8466,-8467,8466,-8467,8466,8467,8468,-8469,8468,8469,8470,-8471,8471,8470,8472,-8473,8473,8474,8475,8476,8477,8478,8479,-8480,8479,8480,8481,8482,8483,-8484,8483,8484,8485,-8486,8485,8486,8487,-8488,8487,8488,8489,8490,8491,8492,8493,-8492,8491,-8494,8494,8495,-8496,8495,8496,8497]]},{"type":"Polygon","properties":{"stateid":"08","name":"Congressional District 3"},"id":"0803","arcs":[[8498,8499,-6301,-6300,6299,-6300,-6299,8500,8501,-8502,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,-8512,8511,8512,8513,8514,8515,8516,8517,8517,8518,8519,-8520,8519,8520,8521,8522,8523,8523,8524,8525,8526,8527,8528,8529,-8530,8529,8530,8531,8532,8533,-8534,8533,8534,-7388,-7387,-7386,7384,-7384,7382,-7382,-7381,7380,-7381,-7380,7378,-7378,-7377,7376,-7377,-7376,7374,-7374,7372,-7372,7370,-7370,-7369,7368,-7369,-7368,-7367,7366,-7367,-7366,7364,-7364,-545,543,-543,541,-541,539,-539,537,-537,535,-535,533,-533,8535,8536]]},{"type":"Polygon","properties":{"stateid":"55","name":"Congressional District 2"},"id":"5502","arcs":[[8537,8538,-8539,8539,8540,8541,8542,8543,-4967,4965,-4965,4964,-4965,-4964,-4963,4962,-4963,4961,-4961,4959,4958,-4958,4957,-4958,-5013,5011,-5011,-5010,5009,-5010,-5009,-5008,5007,-5008,-5007,8544,-4213,8545]]},{"type":"Polygon","properties":{"stateid":"41","name":"Congressional District 4"},"id":"4104","arcs":[[-4563,-4562,4561,-4562,-4561,4559,-4560,-4559,-4558,4556,-4556,-4555,4554,-4555,-4554,4552,-4552,4550,-4550,-4549,4548,-4549,-4548,4546,4546,-4546,4544,-4544,4542,-4542,4540,4540,-4540,-6868,6866,-6866,-6865,6864,-6865,-6864,6862,-6862,6860,-6860,6858,-6858,-6857,6855,-6856,6854,-6854,-6853,6852,-6853,-6852,-6851,6850,-6851,-6850,-6849,6848,-6849,-6848,6846,-6846,6844,-6844,6842,-6842,6840,-6840,6838,-6838,6836,-6836,6834,-6834,6832,-6887,-6886,6885,-6886,-6885,6883,-6883,-6881,6880,6881,-6881,-6880,-6879,6877,-6878,-6877,-8212,8546,8547]]},{"type":"Polygon","properties":{"stateid":"18","name":"Congressional District 5"},"id":"1805","arcs":[[-5653,-4625,8548,8549,-8550,8550,8551,8552,8553,8554,8555,8556,8557,-8558,8558,-8559,8558,-8559,8557,8559,8560,-8561,8561,8562,-8563,8563,8564,8565,8566]]},{"type":"Polygon","properties":{"stateid":"16","name":"Congressional District 2"},"id":"1602","arcs":[[-5983,5981,-5981,-5980,5978,-5978,-5977,5976,-5977,-5976,-5975,5974,-5975,5974,-5975,-5974,-5973,5972,-5973,-5972,-5971,5970,-5971,-5970,-5969,5968,-5969,-5968,-5967,5966,-5967,-5966,5964,5964,5964,-5964,-5963,5962,-5963,-5962,5960,-5960,5958,-5958,5956,-5956,5954,-5954,-5953,5952,-5953,-5952,5950,-5950,5948,-5948,5946,-5946,5944,-5944,-5943,5942,-5943,-5942,5940,-5940,-5939,5938,-5939,-5938,-5937,5936,-5937,-5936,5934,-5934,-5933,5932,-5933,-5932,5930,-5930,5928,-5928,5926,-5926,-5925,8567,8568,8569,8570,8570,8571,8572,-8573,8573,8574,8575,-8576,8575,8576,8577,-8578,8577,8578,8579,-8580,8579,8580,8581,8582,8583,-8584,8583,8584,8585,-8586,8585,8586,8587,8588,8589,8590,8591,8592,8593,-8594,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,-8606,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,-8624,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,-8648,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,-6303,8657,8658,-8659,8658,8659,-1792,-5996,5994,5994,-5994,5992,-5992,5990,-5990,5988,-5988,5986,-5986,-5985,5984,-5985,-5984]]},{"type":"Polygon","properties":{"stateid":"19","name":"Congressional District 3"},"id":"1903","arcs":[[8660,8661,8662,8663,8664,8665,8666,-8666,8665,8667,8668,8669,8670]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 6"},"id":"4806","arcs":[[8671,-8672,8671,8672,8673,8674,8675,-8676,8676,8677,-8678,8677,8678,-8679,8678,8679,-8680,8679,8680,-8681,8680,-8681,8680,8681,8682,8683,8683,8684,8685,8685,8685,8686,8687,8688,8689,8690,-8691,8690,8691,8692,-8693,8692,8693,8694,8695,8696,8697,8698,-8699,8699,8700,-8697,8696,-8701,8701,8702,-8702,8700,-8701,8700,-8697,8703,8695,-8696,8695,-8696,8704,8705,-8706,8705,8706,-8707,8706,8707,8708,8709,8710,8711,-8712,8711,8712,-8713,8712,8713,8714,8715,8716,8717,8718,8719,8720,-8721,8720,-8721,8720,8721,8722,-8723,8722,8723,8724,-8725,8724,-8725,8724,8725,8726,-8727,8726,-8727,8726,-8727,8726,8727,8728,8729,8730,-8731,8730,-8731,8730,8731,8732,-8733,8733,8734,-8735,8734,8735,8736,8737,8738,-8737,8739,8740,8741,8742,8743,-8744,8743,8744,8745,8746,-6607,8747]]},{"type":"Polygon","properties":{"stateid":"22","name":"Congressional District 1"},"id":"2201","arcs":[[8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,-8781,8782,8783,8784,8785,8786,8787,-8788,8787,8788,8789,-8790,8789,8790,8791,-8792,8791,-8792,8791,8792,8793,8794,8795,8795,8796,8797,8798,8799,-8800,8800,8801,8802,8803,-8800,8804,8805,8806,8807,8808,8809,-8810,8810,-8811,8809,8811,8812,-8813,8812,8813,8814,-8815,8814,8815,-8816,8815,8816,8817,-8818,8817,8818,1195,-1196,-1195,1193,-1193,1191,-1191,-1190,1189,-1190,-1189,1187,1187,1186,-1186,-1185,1184,-1185,-1184,-3368,-3367,3366,-3367,-3366,3364,-3364,-3363,3362,-3363,-3362,3361,-3362,-3361,3359,-3359,3358,-3359,-3358,-3357,3356,-3357,-3355,3355,3354,-3355,3354,-3355,-3354,3353,-3354,-3353,3351,3351,-3351,-3350,3349,-3350,-3349,-3348,3347,-3348,-3347,-3346,3345,-3346,-3345,-3344,3343,-3344,-3343,3341,-3341,8819,8820]]},{"type":"Polygon","properties":{"stateid":"22","name":"Congressional District 6"},"id":"2206","arcs":[[1230,-1230,1228,-1228,1226,-1226,1224,-1224,1222,-1222,-1221,1220,-1221,-1220,1218,-1218,1216,-1216,1214,-1214,1212,-1211,1210,-1213,-1212,-1211,-1210,1208,-1208,1206,-1206,1204,-1204,1202,-1202,-1200,1199,1200,-1200,-1199,-1198,1197,-1198,-1197,-1196,-8819,-8818,8817,-8818,-8817,-8816,8815,-8816,-8815,8814,-8815,-8814,-8813,8812,-8813,-8812,-8810,8810,8821,8822,-8823,8822,8823,-8824,8823,8824,-8825,8824,8825,8826,8827,8828,8829,-8829,8828,-8829,8828,8830,8831,8832,8833,-8834,8833,8834,8835,-8832,8831,-8836,8836,8837,-8838,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,-8851,8854,8855,-8853,8852,8856,8857,-8858,8857,8858,8859,-8849,8860,8861,-8862,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,-8879,8879,8880,8881,8882,8883,-8884,8884,8885,8886,8887,-8888,8887,8888,8889,8890,8891,-8892,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,-8903,8902,8903,8904,8905,-8763,8761,8760,-8760,8758,-8758,8756,-8756,8754,-8754,-8753,8752,8906,8907,8908,8909,-8910,8909,8910,8911,8912,-1232]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 23"},"id":"3623","arcs":[[8913,-3769,3767,-3767,-3766,3765,-3766,-3765,3763,-3763,-3762,3761,-3762,-3761,3759,-3759,3757,-3757,3755,-3755,-3754,3753,-3754,-3753,-3752,3751,-3752,3751,-3752,-3751,-3750,3749,-3750,-3749,-3748,3747,-3748,-3747,3745,-3745,-1424,-7074,7072,-7072,7070,-7070,7068,-7068,7066,-7066,7064,-7064,-8151,8914,8915,8916,8917,8918,8919]]},{"type":"Polygon","properties":{"stateid":"34","name":"Congressional District 10"},"id":"3410","arcs":[[8920,8921,-8922,8921,8922,8923,8924,-8925,8925,8926,-8927,8926,8927,8928,8929,8930,8931,8932,8933,8934,-8935,8934,-8935,8934,-8935,8934,8935,8936,-8937,8936,-8937,8936,8937,8938,8939,8940,-8941,8941,8942,8943,8944,8945,8946,-8947,8946,8947,8948,8949,-8950,8949,8950,8951,-4191,-3452,-3451]]},{"type":"Polygon","properties":{"stateid":"34","name":"Congressional District 7"},"id":"3407","arcs":[[3194,-3194,8952,8953,8954,8955,-8956,8955,8956,8957,-8958,8957,8958,8959,8960,8961,8962,-8963,8962,8963,8964,-8965,8965,8964,8966,-8967,8966,8967,8968,-8969,8968,8969,-8970,8969,-8970,8969,8970,8971,-8972,8971,8972,8973,8974,8975,8976,8977,8978,8979,-8980,8979,-8980,8979,8980,8981,8982,-8928,-8927,8926,-8927,-8926,8924,-8925,-8924,-8923,-8922,8921,-8922,-8921,-3450,-3449,8983,8984,8985,-8986,8985,8986,8987,-8988,8988,8989,8990,8991,8992,-8990,8993,8994,8995,-8996,8995,8996,8997,8998,8999,9000,9001,9002,9003,-2068,-2067,2065,-3196]]},{"type":"Polygon","properties":{"stateid":"34","name":"Congressional District 11"},"id":"3411","arcs":[[9004,9005,9006,9007,-9008,9007,9008,9009,9010,9011,9012,-9013,9012,9013,-9014,9013,9014,9015,-9016,9015,9016,9017,9018,9019,9020,-9020,9019,9021,-1369,-1368,1366,-1402,9022,8931,-8932,-8931,8929,-8929,-8983,8981,-8981,-8980,8979,-8980,8979,-8980,-8979,8977,-8977,8975,-8975,8973,-8973,-8972,8971,-8972,-8971,-8970,8969,-8970,8969,-8970,-8969,8968,-8969,-8968,-8967,8966,-8967,-8965,8965,8964,-8965,-8964,-8963,8962,-8963,-8962,-8961,8960,9023]]},{"type":"Polygon","properties":{"stateid":"34","name":"Congressional District 8"},"id":"3408","arcs":[[-8951,-8950,8949,-8950,-8949,-8948,-8947,8946,-8947,-8946,8944,-8944,8942,-8942,8940,-8941,-8940,8938,-8938,-8937,8936,-8937,8936,-8937,-8936,-8935,8934,-8935,8934,-8935,8934,-8935,-8934,-8933,-8932,-9023,-1401,1399,-1399,1397,1397,-1397,1395,-1395,-1394,1393,-1394,1392,-1392,9024,9025,9026,9027,9028,9029,9030,-4192,-8952]]},{"type":"Polygon","properties":{"stateid":"22","name":"Congressional District 2"},"id":"2202","arcs":[[-8868,-8867,-8866,-8865,8863,-8863,8861,-8862,-8861,8848,-8860,-8859,-8858,8857,-8858,-8857,-8853,8852,-8856,-8855,8850,-8854,-8853,-8852,-8851,-8850,-8849,-8848,-8847,8845,-8845,8843,-8843,8841,-8841,8839,-8839,-8838,8837,-8838,-8837,8835,-8832,8831,-8836,-8835,-8834,8833,-8834,-8833,-8832,-8831,-8829,8828,-8829,8828,8829,-8829,-8828,8826,-8826,-8825,8824,-8825,-8824,8823,-8824,-8823,8822,-8823,-8822,-8811,8809,-8810,-8809,8807,-8807,8805,-8805,8799,-8804,8802,-8802,-8801,8799,-8800,-8799,8797,-8797,8795,8795,-8795,8793,-8793,-8792,8791,-8792,8791,-8792,-8791,-8790,8789,-8790,-8789,-8788,8787,-8788,-8787,8785,-8785,8783,-8783,8780,-8782,-8781,-8780,-8779,8777,-8777,-8776,8774,-8774,8772,-8772,8770,-8770,8768,-8768,8766,-8766,8764,-8764,-8906,8904,-8904,-8903,8902,-8903,-8902,8900,-8900,8898,8897,-8897,8895,-8895,8893,-8893,-8892,8891,-8892,-8891,8889,-8889,-8888,8887,-8888,-8887,8885,-8885,8883,-8884,-8883,8881,-8881,-8880,8878,-8879,-8878,-8877,8875,-8875,8873,-8873,8871,-8871,8869,-8869]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 8"},"id":"2608","arcs":[[9031,9032,9033,9034,-1734,-3372,-3371,3370,-3371,3369,-3393,-4871]]},{"type":"Polygon","properties":{"stateid":"45","name":"Congressional District 3"},"id":"4503","arcs":[[6179,-6179,-6178,6177,-6178,6176,-6177,-6176,6174,-6175,-6174,6172,-6172,-6171,6170,-6171,-6170,6169,-6170,-6169,6168,-6169,-6168,-6167,6166,-6167,-6166,6164,-6164,6163,-6164,-6163,6162,-6163,-6162,6161,-6162,-6161,-7876,-4885,-4957,-4956,4955,-4956,-4955,-4954,4953,-4954,-4953,-4952,4951,-4952,4951,-4952,-4951,4949,-4950,4948,-4948,-4947,4946,-4947,-4946,4944,-4944,-4943,4942,-4943,-4942,-4941,4940,-4941,-4940,-4939,4938,-4939,-4938,4936,-4936,4934,-4934,4932,-4932,-4931,4930,-4931,-4930,-4929,4928,-4929,-4928,-4927,4926,-4927,-4926,-4925,4924,-4925,-4924,4922,-4922,4921,-4922,-4921,-4920,4919,-4920,4918,-4918,-4917,4916,-4917,-4916,4914,-4914,-4913,4912,9035,9036,-9037,9036,9037,9038,9039,9040,9040,9041,9042,-9043,9042,9043,9044,-9045,9044,9045,9046,9047,-9048,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,-9058,9057,9058,9059,-9060,9060,9061,-9062,9062,9063,9064,9065,-6195,-6194,-6193,6191,-6191,6189,-6189,6187,-6187,-6186,6185,-6186,-6185,-6184,6183,-6184,-6183,6181,-6181]]},{"type":"Polygon","properties":{"stateid":"01","name":"Congressional District 7"},"id":"0107","arcs":[[9066,9067,9068,9069,9070,9071,9072,-9073,9073,9072,9074,9075,9076,9077,-9078,9077,9078,9079,9080,9081,9082,9083,9084,9084,9085,9086,-9087,9086,9087,9088,-9089,9088,9089,9090,9091,9092,9093,-776,-775,-774,773,-774,-773,771,-771,769,-769,767,-767,765,-765,764,-765,-764,763,-764,763,-764,-763,761,-761,759,-759,757,-757,-756,755,-756,-755,753,-753,-752,751,-752,-751,-750,749,-750,-749,-748,747,-748,747,-748,-747,746,-747,-746,744,-744,742,-742,-741,740,-741,-740,738,-738,-737,736,-737,-736,-735,734,-735,734,-735,-734,-733,732,-733,-732,-731,730,-731,-730,-729,728,-729,727,-837,-5307,5305,-5305,5303,-5303,5302,-5303,-5302,-5301,5300,-5301,-5300,-5299,5298,-5299,-5298,5295,-5297,-5296,-5295,5293,-5293,5291,-5291,5289,-5289,5287,-5287,5286,-5287,-5286,5284,-5285,-5284,-5283,5281,-5281,5279,-5280,5278,-5279,-5278,5276,-5276,-5275,5274,-5275,-5274,5272,-5273,-5272,-5271,5269,-5269,5267,-5267,-4404,4402,-4402,-4398,-4401,4399,-4399,4396,4397,-4398,-4397,-4396,4394,-4394,4392,-4393,-4392,-4391,4389,-4389,4387,4386,-4386,-4385,4384,-4385,-4384,-4383,4382,-4383,4381,-4381,-4380,4378,-4379,-4378,-4376,-4377,4374,4375,-4376,-4375,-4374,4371,4372,-4372,-4371,-4370,4369,-4370,-4369,-4368,4366,-4366,4364,-4365,-4364,4362,-4362,4358,-4361,-4360,-4359,-4358,4356,-4356,4354,-4354,4352,-4352,4350,-4350,4348,-4348,4346,-4346,-4345,4343,4342,-4343,-4342,-4341,4340,-4341,-4340,-4339,4338,-4339,-4338,4336,-4337,-4336,-4335,4333,-4333,-4332,4331,-4332,-4331,-4330,4329,-4330,-4329,4327,-4327,4325,-4325,4323,-4323,-3338]]},{"type":"MultiPolygon","properties":{"stateid":"78","name":"Delegate District (at Large)"},"id":"7898","arcs":[[[9094]],[[9095]]]},{"type":"Polygon","properties":{"stateid":"33","name":"Congressional District 1"},"id":"3301","arcs":[[9096,9097,3772,9098,3774,9099,-3775,-3774,-3773,-3772,3576,-3656,3654,-3654,3652,-3653,-3652,3650,-3651,-3650,3649,-3650,-3649,-3648,3647,-3648,-3647,-3646,3645,-3646,-3645,3643,-3643,-3642,3641,-3642,-3641,3639,-3639,9100,9101,9102,9103,9104,9105,9106,9107,-9108,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,-9125,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,-9135,9134,9135,9136,9137]]},{"type":"Polygon","properties":{"stateid":"33","name":"Congressional District 2"},"id":"3302","arcs":[[6958,-6958,6956,-6956,-6955,6954,-6955,-6954,-6953,6952,-6953,-6952,-6951,6950,-6951,-6950,-6949,6948,-6949,6948,-6949,-6948,-6947,6946,-6947,6946,-6947,-6946,-6945,6944,-6945,-6944,6942,-6942,6940,-6940,6938,-6938,-6937,6936,-6937,-6936,-6935,6934,-6935,-6934,6932,-6933,-6932,-6931,6929,-6929,6927,-6927,6925,-6926,-6925,-6924,6922,-6923,-6922,-6921,6920,-6921,-6920,6918,-6918,-6917,6916,-6917,-6916,6914,-6914,9138,3776,-3777,-3776,9099,-3775,-9099,-3773,-9098,9096,-9138,9136,-9136,-9135,9134,-9135,-9134,9132,-9132,9130,-9130,9128,-9128,9126,-9126,-9125,9124,-9125,-9124,9122,-9122,9120,9119,-9119,9117,-9117,9115,-9115,9113,-9113,9111,-9111,9109,-9109,9107,9139,9140,9141,-4061,-6964,-6963,-6961,6960,6962,-6963,6961,-6961,-6960]]},{"type":"Polygon","properties":{"stateid":"53","name":"Congressional District 4"},"id":"5304","arcs":[[-6137,-6136,6135,-6136,-6135,-6134,6133,-6134,-6133,6131,-6131,6129,-6129,-6128,6127,-6128,6127,-6128,-6127,-6126,6125,-6126,-6125,6123,-6123,-6122,6121,-6122,-6121,-6120,6119,-6120,-6119,6117,-6117,-6116,6115,-6116,-6115,-6114,6113,-6114,-6113,9142,9143,9144,9145,-9146,9146,9147,9148,-9149,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,-6874,6872,-6872,9160]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 12"},"id":"1712","arcs":[[-6772,9161,9162,9163,-6726,-6725,-6724,9164,9165,9166,-9167,9166,-9167,9166,9167,9168,-9169,9168,-9169,9168,9169,9170,9171,-9172,-9171,9170,9172,9173,9174,-9175,9174,9175,9176,-9177,9176,9177,9178,9179,-9180,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,-6773]]},{"type":"Polygon","properties":{"stateid":"18","name":"Congressional District 8"},"id":"1808","arcs":[[9197,9198,9199,9200,9201,9202,9203,-9204,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,-9216,9215,9216,9217,9218,9219,9220,9221,-9222,9221,9222,9223,9224,-9225,9224,9225,9226,-9227,9226,9227,9228,-9229,9228,9229,9230,9231,9232,-9233,9232,-9233,9232,-9233,9232,9233,9234,-9235,9234,9235,9236,9237,9238,9239,9240,-9241,9241,9242,9243,9244,-9243,9245,-9246,9245,9246,-7153,7151,-7151,7149,-7149,7147,-7147,7145,-7145,7143,-7143,7141,9247,9248,9249,9250,-9251,9250,9251,-9252,9251,9252,9253,9254,9255,9256,9257,-9258,9257,9258]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 15"},"id":"1215","arcs":[[-3042,-3041,9259,9260,9261,-5512,5510,-5511,-5510,-5509,-5508,5507,-5508,-5507,-3527,3525,3523,-3525,-3524,-3523,-3522,3521,-3522,-3521,-3520,3519,-3520,-3519,3518,-3519,-3518,-3517,3516,-3517,-3516,3513,-3514,3513,3514,3514,-3514,-3513,3511,3510,3509,-3510,-3509,3507,-3507,-3506,-3035,3034,3035,-3036,-3035,-3034,3032,-3032,3030,-3030,3028,-3028,3026,-3026,-3043]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 9"},"id":"1209","arcs":[[-5500,5499,-5500,-5499,-5498,5497,-5498,-5497,5495,-5495,5493,-5493,5491,-5491,5489,-5489,5488,-5489,-5488,9262,9263,9264,9265,9266,-9267,9266,9267,9268,-9269,9268,9269,9270,-9271,9270,9271,-3552,-3551,3550,-3551,-3550,-3549,3548,-3549,-3548,-3547,3546,-3547,-3546,-3545,3544,-3545,-3544,-3543,3542,-3543,-3542,-3541,3540,-3541,-3540,-3539,3538,-3539,3537,-3537,3535,-3535,3533,-3533,3531,-3531,-5506,-5505,5504,-5505,5504,-5505,-5504,-5503,5502,-5503,5501,-5501]]},{"type":"Polygon","properties":{"stateid":"24","name":"Congressional District 8"},"id":"2408","arcs":[[9272,9273,9274,9275,9276,9277,9278,-9279,9278,9279,9280,9281,9282,9283,9284,9285,-9286,9285,-9286,9285,9286,9287,9288,9289,9290,9291,-9292,9291,9292,9293,9294,9295,-9296,9295,9296,-9297,9296,9297,9298,-9299,9298,9299,-9300,9299,9300,9301,9302,9303,9304,9305,-9306,9305,-9306,9305,9306,9307,-9308,9307,-9308,9308,9309,9310,9311,-9312,9311,9312,9313,-9314,9313,9314,9315,-7284,9316,9317,-9318,9318,9319,-7281,-7280,9320,-6567,6566,9321,9322,-9323,9322,9323,9324,-9325,9324,9325,9326,-9327,9327,9328,9329,9330,-9331,9331,9332,9333,9334,-9334,9333,9335,9336,-9337,9336,9337,9338,-9339,9338,9339,9340,-9341,9340,-9341,9340,9341,-9341,9342,9343,9344,9345,9346,9347,9348,-9349,9348,9349,9350,9351,9352,9353,9354,-9355,9354,9355,9356,-9357,9356,9357,-9358,9358,9359,-9360,9359,9360,9361,9362,9363,-9364,9364,9365,-9366,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9376,9376,9377]]},{"type":"Polygon","properties":{"stateid":"21","name":"Congressional District 3"},"id":"2103","arcs":[[7157,9378,7825,-7826,-7825,-7824,7823,-7824,-7823,7821,-7821,7819,-7820,-7819,7817,-7818,-7817,7815,-7815,-7161,-7160,7159,-7160,-7159,-7158]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 5"},"id":"2605","arcs":[[-7431,9379,-1746,9380,-1737,-1736,1735,-1736,-1735,-9035,9033,-9033,9381]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 3"},"id":"2603","arcs":[[9382,9383,9384,9385,-9386,9385,9386,-9384,9387,-4869,9388,-3218,-3217,3216,-3217,3215,-3215,3213,-3213,3211,-3211,3209,-3209,3207,-3207,-3206,3205,-3206,-3205,3203,-3203]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 39"},"id":"0639","arcs":[[9389,9390,9391,9392,9393,9394,-9395,9395,9396,-9397,9396,9397,-9398,9397,9398,9399,-9400,9399,-9400,9400,9401,-9402,9402,9403,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,-9417,9417,9418,-9419,9418,-9419,9418,9419,9420,9421,9422,9423,9424]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 49"},"id":"0649","arcs":[[9425,-9426,9425,9426,9427,9428,9429,-9430,9429,9430,9431,9432,9433,9434,9435,9436,-9436,9437,9438,9439,9440,9441,-9442,9442,9443,9444,9445,-9446,9445,9446,-9447,9446,9447,9448,-9449,9448,9449,9450,-9451,9450,9451,9452,-9453,9452,9453,9454,9455,-9456,9455,9456,9457,-9458,9457,9458,9459,9460,-9461,9461,9462,9463,9464,-9465,-9464,-9463,9465,9466,9467,9468,-9469,9469,-9468,9470,9471,9472,9473,9474]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 46"},"id":"0646","arcs":[[9475,-9476,9475,9476,-9422,9420,-9420,-9419,9418,-9419,9418,-9419,-9418,9416,9477,9478,-9479,9478,9479,9480,9481,9482,9483,9484,9485]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 45"},"id":"0645","arcs":[[-9480,-9479,9478,-9479,-9478,-9417,-9416,9414,-9414,9412,-9412,9486,-9442,-9441,9439,9438,-9438,9435,-9437,-9436,-9435,9433,-9433,9431,-9431,-9430,9429,9487,9488,9489,-9490,9489,9490,9491,-9492,9492,9491,9493,9494,9495,9496,9497]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 38"},"id":"0638","arcs":[[9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,-9509,9508,-9509,9510,-9511,9510,-9511,9510,9511,9512,-9512,9511,9513,-9393,9392,-9393,-9392,9390,-9390,-9425,-9424,9423,9514,9515,9515,9516,9517]]},{"type":"MultiPolygon","properties":{"stateid":"06","name":"Congressional District 47"},"id":"0647","arcs":[[[9517,-9518,-9517,9515,9515,-9515,-9424,9423,9424,-9425,-9424,-9423,-9477,-9476,9475,-9476,9485,-9485,9483,-9483,-9482,9481,9518,9519,9520,9521,9522,9523,-9524,9523,9524,9525,9526,9527,9528]],[[9529]],[[9530]]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 48"},"id":"0648","arcs":[[-9527,9525,-9525,-9524,9523,-9524,-9523,9521,-9521,9519,-9519,-9482,-9481,-9498,9496,-9496,9494,-9494,-9492,9492,9491,-9492,-9491,-9490,9489,-9490,-9489,9487,-9430,-9429,9427,-9427,-9426,9425,-9426,-9475,9531]]},{"type":"Polygon","properties":{"stateid":"04","name":"Congressional District 3"},"id":"0403","arcs":[[9532,9533,9534,-4857,-4856,-4855,4854,-4855,-4854,4852,-4852,4850,-4850,4848,-4848,4846,9535,9536,9537,9538,-9539,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9550,9551,9552,9553,9554,9555,9556]]},{"type":"Polygon","properties":{"stateid":"04","name":"Congressional District 2"},"id":"0402","arcs":[[9554,-9554,-9553,9557,9558,-9559,9558,9559,9560,9561,9562,-9563,9562,9563,9564,9565,-7648,9566,-9556]]},{"type":"Polygon","properties":{"stateid":"35","name":"Congressional District 1"},"id":"3501","arcs":[[9567,9568,-9569,9568,-9569,9568,9569,9570,-9571,9570,-9571,9570,9571,9572,9573,9574,9575,9576,-9577,9576,9577,9578,9579,9580,9581,9582,9583,9584,-9585,9584,9585,-7633,7631,-7631,7629,-7629,-7628,7627,-7628,-7627,-7625,7624,7625,-7625,-7624,-7623,7622,-7623,7621,7621,7621,-7621,7619,-7619,7617,7617,-7617,7615,-7615,-7614,7613,-7614,7613,-7614,7613,-7614,-7613,7608,-7612,7610,-7610,-7609,-7608]]},{"type":"Polygon","properties":{"stateid":"31","name":"Congressional District 2"},"id":"3102","arcs":[[-8668,-8666,8665,8666,-8666,-8665,9586,9587,-9588,9587,9588,9589,-9590,9590,9591,-9592,9591,9592]]},{"type":"Polygon","properties":{"stateid":"29","name":"Congressional District 5"},"id":"2905","arcs":[[9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,-9609,9608,9609,9610,-9611,9610,9611,9612,-9613,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,-9623,9623,9624,9625]]},{"type":"Polygon","properties":{"stateid":"55","name":"Congressional District 5"},"id":"5505","arcs":[[9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,-9637,9637,9638,-9639,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,-9647,9646,9648,9649,9650,9651,9652,9651,9652,9653,9654,9655,9656,-9657,9657,-4997,-4996,4994,-4994,-4993,4992,-4993,4991,-4991,-4990,4989,-4990,-4989,4987,-4988,-4987,4983,4985,-4986,4984,-4984,-4983,4981,-4982,-4981,4980,-4981,-4980,-4979,4978,-4979,4978,-4979,-4978,-4977,-4976,4975,-4976,-4975,4974,-4975,-4974,4972,-4972,-4971,4970,-4971,-4970,4968,-4968,-8544]]},{"type":"MultiPolygon","properties":{"stateid":"09","name":"Congressional District 2"},"id":"0902","arcs":[[[-4057,4055,-4081,9658,9659,9660,9661,9662,9663,9664,9665,9666,-9667,9666,9667,2247,2247,-2247,9668]]]},{"type":"Polygon","properties":{"stateid":"09","name":"Congressional Districts not defined"},"id":"09ZZ","arcs":[[-2283,2281,-2281,-2269,2267,-2267,2264,2265,-2265,2264,-2265,-2264,-2263,2262,-2263,-2262,2260,-2260,-2259,2258,-2259,2258,-2259,-2258,2256,-2256,-2254,2254,2253,-2254,-2253,-2252,2251,-2252,2251,-2252,-2251,-2250,2249,-2250,-2249,2247,2247,-9668,-9667,9666,-9667,-9666,9664,-9664,9669,-5050]]},{"type":"Polygon","properties":{"stateid":"45","name":"Congressional District 7"},"id":"4507","arcs":[[-6560,6558,9670,9671,9672,9673,9674,9675,9676,9677,9678,-9679,9678,9679,-9680,9679,9680,9681,9682,9683,9684,9685,-9686,9685,-9686,9685,-9686,9685,9686,9687,9688,9689,-9690,9689,9690,9691,-9692,9691,9692,9693,9694,-9695,9694,9695,9696,9697,9698,-9699,9698,9699,9700,-9701,9701,9702,-9703,9703,-9704,9703,9704,9705,-9706,9705,9706,-9707,9706,9707,-9708,9707,9708,-9709,9708,9709,9710,-9711,9710,-9711,9710,9711,9712,-9713,9712,9713,9714,-9715,9714,9715,9716,9717,9718,-9719,9718,9719,-9720,9719,9720,-9721,9720,9721,9722,-9723,9722,9723,9724,-9725,9724,9725,9726,-9727,9726,9727,9728,-9729,9728,9729,9730,9731,9732,9733,9734,-9735,9734,9735,9736,9737,9738,-9739,9738,9739]]},{"type":"Polygon","properties":{"stateid":"01","name":"Congressional District 5"},"id":"0105","arcs":[[-1702,-5384,9740,9741,-9742,9741,9742,9743,-9744,9743,9744,9744,9745,9746,-9747,9746,9747,9748,9749,9750,-9751,9750,9751,-9752,9751,9752,9753,9754,9755,9756,9757,-9758,9757,9758,-9759,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,-9776,9775,-9776,9775,-9776,9775,9776,9776,9777,9778,9779]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 11"},"id":"1211","arcs":[[9780,9781,9781,9782,9783,9784,9785,9785,9786,9787,-9788,9787,9788,9789,-9790,9789,9790,-5473,-5472,5470,-5470,-5469,5468,-5469,-5468,-5467,-5485,-5484,5483,-5484,-5483,5481,-5482,-5481,-5479,5479,-5480,-5478,5477,5478,-5479,-5478,-5477,-9262,9260,-9260,3040,-3041,-3040,9791]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 10"},"id":"4810","arcs":[[6637,-6637,-6636,-6635,6634,6635,9792,9793,9794,9794,9794,9795,9796,9797,9798,-9799,9798,9799,9800,9800,9801,9802,9803,9804,-9805,9804,9805,9806,9807,9808,-9809,9808,9809,9810,9811,9812,-9813,9813,9814,9815,9816,-9816,9815,9817,9818,9819,9819,9820,9821,-9822,9821,9822,-9822,9823,9824,9825,9826,-9827,9826,9827,9828,-9829,9829,9830,-9831,9831,9832,-9833,9832,-9833,9832,9833,-9834,9833,9834,-9835,9834,9835,9836,-9837,9836,9837,9838,9838,9838,9839,9840,-9841,9840,9841,9842,-9843,9842,9843,9844,9845,9846,-9847,9846,9847,9848,-9849,9848,-9849,9848,9849,9850,9850,9851,9852,9852,9853,9854,9855,-2424,9856,-2422,9857,-2420,-2419,2418,-2419,-2418,2416,-2416,2414,-2414,2412,-2412,-2411,2410,-2411,-2410,-2409,-2408,-2407,2406,-2407,-2406,-2405,2404,-2405,2398,-2399,-2404,2402,-2403,2402,-2403,-2402,2400,-2400,-2399,-2398,2396,-2396,2392,-2395,9858,9859,-9860,9859,-9860,9859,-9860,9860,9861,9862,9863,9864,9865,-9866,9865,9866,9867,9868,9869,9870,-9871,9870,9871,9872,9873,9874,9875,9876,-9877,9876,9877,-5588,5586,-5586,-5585,5584,-5585,-5584,5582,-5582,5580,-5580,5578,-5578,-5577,5575,-5576,-5575,5573,-5573,5571,-5571,-5570,-5569,5567,5567,-5567,5565,9878,9879,-9880,9879,9880,9881,9882,9883,9884,9885,9886,-9887,9886,-9887,9886,9887,9888,9889,9890,9891,-9892,9891,9892,9893,-9894,9893,-9894,9893,9894,-9889,-6657,-6656,6654,-6654,6653,-6654,-6653,6651,-6652,-6651,6649,-6649,-6648,6647,-6648,-6647,6645,6645,-6645,6643,-6643,6641,6641,-6641,6639,-6639]]},{"type":"Polygon","properties":{"stateid":"45","name":"Congressional District 5"},"id":"4505","arcs":[[-7753,-6458,6456,-6456,6454,-6454,-6561,-9740,-9739,9738,-9739,-9738,9736,-9736,-9735,9734,-9735,-9734,9732,-9732,9730,-9730,-9729,9728,-9729,-9728,-9727,9726,-9727,-9726,-9725,9724,-9725,-9724,-9723,9722,-9723,-9722,-9721,9720,-9721,-9720,9719,-9720,-9719,9718,-9719,-9718,9716,-9716,-9715,9714,-9715,-9714,-9713,9712,-9713,-9712,-9711,9710,-9711,9710,-9711,-9710,-9709,9708,-9709,-9708,9707,-9708,-9707,9706,-9707,-9706,9705,-9706,-9705,-9704,9702,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,-9906,9906,9907,9908,9909,9910,9911,9912,9913,-9914,9913,9914,9915,9916,9917,9918,9919,-9920,9919,9920,9921,9922,9923,9924,9925,-9926,9926,9927,9928,9929,9930,9931,9932,-9933,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,-9060,9059,-9060,-9059,-9058,9057,-9058,-9057,9055,-9055,9053,-9053,9051,-9051,9049,-9049,9047,-9048,-9047,-9046,-9045,9044,-9045,-9044,-9043,9042,-9043,-9042,9040,9040,-9040,9038,-9038,-9037,9036,-9037,-9036,-4913,4912,4913,-4914,-4913,-4912,4910,-4910,4908,-4908]]},{"type":"Polygon","properties":{"stateid":"01","name":"Congressional District 3"},"id":"0103","arcs":[[-824,823,-824,-823,-822,821,-822,-821,9945,9946,9947,9948,-9949,9948,9949,9950,9951,9952,-9953,9952,9953,9954,9955,9956,-9957,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,-9965,9964,9966,-9965,9967,-5382,-3674,-3673,3672,-3673,-3672,-3671,-1284,-1283,-1282,-1281,-1280,1279,-1280,-1279,-1278,1277,-1278,1277,-1278,1277,-1278,-1277,1275,-1275,-5347,5345,-5345,5343,-5343,-5342,5341,-5342,-5341,5339,-5339,-5338,5337,-5338,-5337,-5336,5335,-5336,-5335,-5334,5332,-5333,-5332,-5331,5330,-5331,5329,-5329,-5328,-5327,5325,-5325,-5324,5323,-5324,-5323,5321,-5322,-5321,5319,-5320,-5319,5318,-5319,-5318,5316,-5316,5314,-5314,5312,-5312,5310,-5310,5308,-5308,-833,-832,831,-832,-831,829,-829,827,-827,825,-825]]},{"type":"Polygon","properties":{"stateid":"35","name":"Congressional District 3"},"id":"3503","arcs":[[-8536,-532,-531,9968,9969,9970,9971,9972,-7642,-7641,7640,-7641,-7640,-7639,7636,-7637,7637,7636,-7637,-7636,7634,-7634,-9586,-9585,9584,-9585,-9584,9582,-9582,9580,-9580,9578,-9578,-9577,9576,-9577,-9576,9574,-9574,9572,-9572,-9571,9570,-9571,9570,-9571,-9570,-9569,9568,-9569,9568,-9569,-9568,-7607,-7606,7605,-7606,7605,-7606,-7605,7603,-7603,7601,-7601,-7600,7599,9973]]},{"type":"Polygon","properties":{"stateid":"38","name":"Congressional District (at Large)"},"id":"3800","arcs":[[9974,9975,9976,9977,9978,-9979,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,-9989,9989,9990,9991,9992,9993,-9994,9993,9994,9995,-9996,9996,-9996,9995,9997,9998,9999,10000,10001,-10002,10002,-10003,10002,10003,10004,-10005,10004,10005,-10006,10005,10006,10007,-10008,10007,10008,10009,-10010,10009,10010,10011,-10012,10012,10013,-10014,10014,10015,-10016,10016,10017,10018,10019,-10020,10020,10021,-10022,10021,10022,10023,-10024,10023,10024,10025,-10026,10025,10026,10027,-10028,10028,10029,-10030,10029,10030,10031,-10032,10031,10032,10033,10034,10035,-10036,10035,10036,10037,-10038,10037,10038,10039,10040,-10041,10040,10041,10042,10043,-10044,10043,10044,10045,10046,10047,10048,-10049,10048,10049,10050,10051,10052,10053,10054,10055,10056,-10057,10056,10057,10058,10059,10060,-10061,10060,10061,10062,-10063,10062,10063,10064,10065,10066,-10067,10066,-10067,10067,10068,-10067,10066,-10069,10068,10069,10070,10071,10072,-10073,10072,10073,10074,-10075,10074,10075,10076,10077,-10078,10077,10078,10079,10080,-10081,10080,10081,-10082,10081,10082,-10083,10082,10083,10084,10085,10086,-10087,10086,10087,10088,-10089,10088,10089,10090,10091,10092,-10093,10092,-10093,10092,10093,10094,10095,10096,10097,10098,-10099,10098,10099,10100,10101,-10101,10100,10102,10103,10104,-10105,10104,10105,10106,10107,-10108,10107,10108,-10109,10108,10109,-10110,10110,10111,-10112,10112,10113,-10114,10113,10114,10115,-10116,10115,10116,10117,-10118,10117,10118,10119,10119,10120,10121,-10122,10121,10122,10123,10124,10125,10126,10127,10128]]},{"type":"Polygon","properties":{"stateid":"20","name":"Congressional District 1"},"id":"2001","arcs":[[10129,10130,10131,10132,10133,10134,10135,10136,10137,10138,10139,10140,10141,10142,10142,10142,10143,10144,10145,10146,10147,10148,10149,-10150,10150,10151,10152,10153,10154,-10155,10154,10155,10156,10157,-529]]},{"type":"Polygon","properties":{"stateid":"55","name":"Congressional District 7"},"id":"5507","arcs":[[-6905,6904,-6905,-6904,6902,-6902,6900,-6900,6898,-6898,-7487,7485,7485,-7485,7483,-7483,7481,-7481,7479,-7479,-7478,7477,-7478,-7477,7475,-7475,-7474,7473,-7474,-7473,-7472,7471,-7472,-7471,-7470,7469,-7470,-7469,7467,-7467,-7465,7465,7464,-7465,-7464,7462,7462,-7462,7460,-7460,7458,7457,-7457,-7456,7455,-7456,-7455,-7454,7453,-7454,7452,7451,-7451,7449,-7449,7447,-7447,-7446,7445,-7446,-7445,7443,-7443,-7442,7441,-7442,-7441,-7440,7439,-7440,-7439,-6012,6010,6010,6010,-6010,10158,10159,10160,-10161,10161,10162,-10163,10162,10163,10164,10165,-10166,10165,10166,10167,-10168,10167,10168,10169,10170,10171,10172,10173,-10174,10173,10174,10175,10176,10177,10178,10179,10180,10180,10181,-10182,10181,10182,10183,10184,-10185,10184,10185,-10185,10186,10187,-10188,10187,10188,10189,-10190,10189,10190,-4566,-7658,-6908,6906,-6906]]},{"type":"Polygon","properties":{"stateid":"55","name":"Congressional District 6"},"id":"5506","arcs":[[10191,-6038,6036,-6036,-6035,6034,-6035,6034,-6035,-6034,6032,-6032,-6031,6030,-6031,-6030,-7438,10192,10193,10194,-3228,10195,10196,10197,10198,-10199,10198,10199,10200,-10201,10200,10201,10202,-10203,10202,10203,10204,10205,-9644,9642,-9642,9640,-9640,-9639,9638,-9639,9637,9636,-9637,-9636,9634,-9634,-9633,9631,-9631,9629,-9629,9627,-9627,-8543,8541,-8541,-8540,8538,-8539,-8538]]},{"type":"Polygon","properties":{"stateid":"29","name":"Congressional District 6"},"id":"2906","arcs":[[-8663,10206,10207,10208,10209,-10210,10209,10210,10211,10212,10213,10214,10215,10216,-6722,10217,10218,10219,10220,-10221,10220,10221,10222,10223,10224,10225,-9623,9623,-9624,9622,-9623,-9622,9620,-9620,9618,-9618,9616,-9616,9614,-9614,-9613,9612,-9613,-9612,-9611,9610,-9611,-9610,-9609,9608,-9609,-9608,9606,-9606,9604,-9604,9602,-9602,9600,-9600,9598,-9598,-9597,-9596,9594,-9594,10226,9596,10227,10228,10229,10230,10231,10232,10233,10234,10235,10236,10237,10238,-10239,10238,10239,10240,10241,-10242,10242,10243,10244]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 11"},"id":"4811","arcs":[[10245,10246,10247,10248,-10248,-10247,10246,-10247,10246,10249,-10250,10249,10250,10251,10248,10248,-10252,10252,10252,-10251,10250,-10251,10253,10254,-10255,10254,10255,10256,-10257,10256,10257,10258,10259,-10260,10260,10261,-10262,10261,10262,10263,-10264,10263,10264,10265,10266,-6605,6603,-6603,6601,-6601,6599,-6599,6597,-6597,-6596,6595,-6596,-6595,-6594,6593,-6594,-6593,6591,-6591,-6590,6589,-6590,-6589,6587,-6587,-6586,6585,-6586,-6703,6701,-6701,6699,-6699,-6698,6697,-6698,-6697,-6696,6695,-6696,-6695,-6694,6693,-6694,-6693,6691,-6691,-6984,10267,-7644]]},{"type":"Polygon","properties":{"stateid":"11","name":"Delegate District (at Large)"},"id":"1198","arcs":[[6566,-9321,-7279,6576,-6577,-6576,6572,6574,6573,6573,-6573,-6572,6570,-6570,-6569,6568,-6569,-6568]]},{"type":"Polygon","properties":{"stateid":"19","name":"Congressional District 2"},"id":"1902","arcs":[[10268,10269,10270,10271,-4210,4208,-4208,4206,-4206,10272,10213,-10214,-10213,10211,-10211,-10210,10209,-10210,-10209,10207,-10207,-8662]]},{"type":"Polygon","properties":{"stateid":"47","name":"Congressional District 6"},"id":"4706","arcs":[[10273,-10274,10274,10273,10275,10276,-10277,10276,10277,10278,10279,10280,10281,10282,10283,-10284,10283,10284,10285,-10286,10285,10286,10287,10288,-10289,10289,10290,-10291,10290,10291,10292,10292,10293,10294,10295,10296,-10297,10296,10297,10298,10299,10300,10301,-1654,-1653,1652,-1653,-1652,1650,-1650,1648,-1648,-1647,-1646,1645,-1646,-1645,-1644,1643,-1644,-1643,1641,-1641,1639,-1639,1637,-1637,1634,1635,1634,-1634,-1633,1632,-1633,-1632,1630,-1630,1628,-1628,-1627,1626,-1627,1626,-1627,-1626,1624,-1624,1622,-1622,1620,-1620,1618,-1619,-1618,1616,-1617,-1616,1615,-1616,-1615,1613,-1613,1611,1611,-1611,1609,-1609,1607,-1607,1605,-1605,-1604,1603,-1604,-1603,1601,-1601,1599,-1599,1597,-1597,-1596,1595,-1596,-1595,1593,10302,10303,-10304,10303,-10304,10303,-10304,10303,-10304,10303,10304,10305,10306,10307,10308,10309,10310,10311,10312,10313,-10314,10313,10314,10315,10316,10317,10318,10319,-10320,10319,10320,10321],[10322,-10304]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 18"},"id":"1718","arcs":[[-10214,-10273,-4240,4238,-4238,-4236,4236,4235,-4236,-4235,4233,4233,-4233,10323,10324,10325,10326,10327,10328,-10329,10328,10329,10330,10331,10332,10332,10333,10334,-10335,10334,10335,10336,-10337,10336,10337,10338,10339,10340,10341,-10342,10341,10342,10343,-10344,10343,10344,10345,-10346,10345,10346,10347,-10348,10347,10348,10349,10350,10351,10352,10353,-10354,10353,10354,10355,10356,10215,-10216,-10215]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 16"},"id":"1716","arcs":[[-4232,4230,-4230,4228,-4228,4226,4226,-4226,4224,-4224,-4223,4222,-4223,-4222,4220,-4221,-4220,4218,-4218,4216,-4216,4214,-4214,-8545,-5006,10357,10358,10358,10359,10360,10361,10362,10363,10364,10365,10366,10367,10368,-10326,10324,-10324]]},{"type":"Polygon","properties":{"stateid":"47","name":"Congressional District 1"},"id":"4701","arcs":[[3992,-3993,-3992,-3991,-3990,3989,-3990,3989,-3990,-3989,-3988,3987,-3988,-3987,-3986,3985,-3986,3985,-3986,-3985,-3984,3983,-3984,-3983,3981,3981,-3981,3979,-3979,-3978,3977,-3978,-3977,3975,-3975,3973,-3973,3971,-3971,3969,-3969,-3968,3967,-3968,-3967,-3966,3965,-3966,-3965,-3964,3963,-3964,-3963,3961,-3961,-3960,3959,-3960,-3959,-1558,1556,-1556,1554,-6307,6305,-6305,-6408,-7875,7873,-7873,7871,-7871,7869,7869,-7869,7867,-7867,7865,-7865,7863,7863,-7863,7861,-7861,-7860,7859,-7860,-7859,7857,-7857,7855,-7855,7853,-7853,7851,-7851,7849,7849,-7849,7847,-7847,7845,-7845,7843,-7843,7841,-7841,-7840,7839,-7840,-7839,-3998,3996,-3996,-3995,3994,-3995,-3994]]},{"type":"Polygon","properties":{"stateid":"05","name":"Congressional District 3"},"id":"0503","arcs":[[10369,10370,-8368,8366,-8366,8364,-8364,8362,-8362,-8360,8359,8360,-8360,-8359,8357,-8498,10371,10372,10373,10374,10375,10376,10377,-10378,10377,10378,10379,-10380,10380,10381,-10382,10381,10382,10383,10384,10385,10386,10387,10387,10388,10389,10390,10391,-10392,10391,10392,10393,10394,10395,-10396,10395,10396,10397,10398]]},{"type":"Polygon","properties":{"stateid":"40","name":"Congressional District 2"},"id":"4002","arcs":[[5692,-5692,-5661,-5659,5659,5658,-5659,5658,-5659,5658,-5659,-5658,5656,-5656,5655,-5656,-5655,10399,10400,-10401,10400,10401,-7138,-7137,7136,-7137,-7136,-7135,7134,-7135,-7134,-7132,7131,7132,-7132,-7131,7129,-7129,7127,-7127,7125,7125,7125,-7125,-7124,7123,-7124,-7123,7121,-7121,10402,10403,10404,10405,-10406,10406,-10399,10407,-946,-945,-944,942,-943,941,-941,-940,-939,-938,-937,-936,934,-935,-934,932,-932,-931,-930,928,-928,926,-926,924,-924,-922,920,922,-921,921,-922,920,-921,-920,918,-918,-914,-917,915,-916,-915,913,-914,-913,910,911,-911,-910,-909,908,-909,-908,-904,904,906,905,-905,903,-904,-903,901,-901,-900,899,-900,-899,897,-898,-897,895,-895,-894,-893,892,-893,-892,890,-890,888,885,-886,-889,-888,-884,885,886,-886,883,884,-884,-883,881,-881,-880,879,-880,-879,877,-875,874,-878,876,-876,-875,-874,872,-872,870,-870,868,-868,866,-866,864,-864,862,862,-862,860,-860,858,-858,-857,856,-857,-856,853,-855,-854,-853,-851,850,851,-851,-850,848,-848,-847,846,-847,-846,844,-844,842,-842,840,-840,-5696,5694,5694,-5694]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 2"},"id":"3902","arcs":[[1826,-1826,1824,1824,-1824,1822,1822,-1822,1820,-1820,1818,-1818,1816,1816,-1816,1815,-1816,-1815,-1814,1813,-1814,-1813,1811,-1811,1809,-1809,-1808,1806,1806,1806,-1806,1804,-1805,-1804,10408,10409,-10410,10409,10410,10411,10412,10413,-10414,10414,10415,-10416,10416,10417,10417,10418,10419,-10420,10419,10420,10421,10422,-10423,10423,10424,10425,10426,10427,10427,10428,10429,10429,10430,7777,-7778,-7777,7775,7775,-7775,-7774,7773,-7774,-7773,7771,-7771,7769,7769,-7769,1834,-1835,-1834,-1832,1832,1831,-1832,-1831,-1830,1829,-1830,1828,-1828]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 6"},"id":"3906","arcs":[[-10424,10422,-10423,-10422,10431,10432,10433,-2720,-2719,2718,-2719,-2718,2717,-2718,-2717,2715,-2715,-5831,5829,-5829,5827,-5827,5825,-5866,10434,-5168,10435,10436,10437,10438,-10439,10438,10439,10440,-10441,10440,10441,10442,10443,10444,10445,10446,-10447,10446,10447,10448,-10449,10448,10449,10450,10451,10452,10453,10454,10455,10456,-10457,10456,10457,10458,10459,10460,10461,10462,-10463,10462,10463,10464,-10465,10464,10465,-7780,-7779,-7778,-10431,10429,10429,-10429,10427,10427,-10427,10425,-10425]]},{"type":"Polygon","properties":{"stateid":"18","name":"Congressional District 4"},"id":"1804","arcs":[[10466,-10366,10467,10468,10469,10470,10471,10472,10473,10474,5647,-5648,-5654,-8567,10475,10476,10477,10478,10479,10480,-9231]]},{"type":"Polygon","properties":{"stateid":"45","name":"Congressional District 1"},"id":"4501","arcs":[[10481,10482,10483,10484,10485,10486,10487,10488,10489,10490,-10491,10491,10492,10493,10494,-10495,10494,-10495,10494,10495,10496,10497,10498,-10499,10498,10499,10500,-10501,10501,10500,10502,10503,10504,10505,10506,10507,-10508,10507,10508,-10509,10508,-10509,10509,10510,10511,10512,-10513,10512,10513,-10513,10514,10515,10516,10517,10518,10519,-10520,10519,-10520,10519,10520,10521,10522,10523,-10524,10523,10524,10525,10526,-10527,10526,10527,10528,10529,10530,10531,10532,10533,10533,10534,10535,10536,10537,10538,-10539,10539,10540,10541,10542,-10543,10542,-10543,10542,10543,10544,-10545,10544,-10545,10544,10545,10546,10547,10548,10549,10550,-10551,10550,10551,10552,10553,-10553,10552,10554,10555,10556,10557,10558,-10559,10558,10559,10560,10561,10562,-10563,10562,-10563,10562,10563,10564,10565,10566,-10567,10566,10567,10568,-10569,10568,10569,10570,-10571,10570,10571,10572,-10573,10572,10573,-10574,10573,10574,9676,-9677,-9676,9674,-9674,10575,10576,10577,-10578,10577,-10578,10578,10579,10580,10581,10582,10583,10584,10585,10586,-10587,10586,10587,10588,-10589,10589]]},{"type":"Polygon","properties":{"stateid":"45","name":"Congressional District 6"},"id":"4506","arcs":[[10590,10591,10592,10593,10594,10595,-10596,10595,10596,10597,-10598,10597,10598,-10599,10598,10599,10600,-10601,10600,10601,10602,10603,10604,-10605,10605,-10606,10605,10606,-10607,10607,10608,-10609,10608,-10609,10608,10609,10610,-10611,10610,10611,10612,-10613,10612,10613,10614,10614,10615,10616,-10617,10616,10617,10618,10618,10619,10620,-10621,10620,10621,10622,10623,10624,10625,10626,10626,10627,10628,10629,10630,10631,10632,10633,10634,10635,-10636,10636,10637,10637,10638,10639,10640,10641,10642,10643,-10644,10643,10644,10645,10646,10647,10648,10649,10650,10651,10652,10653,10654,10655,-10656,10655,-10656,10655,10656,10657,10658,-9933,9932,-9933,-9932,-9931,9929,-9929,-9928,-9927,9925,-9926,-9925,9923,-9923,9921,-9921,-9920,9919,-9920,-9919,9917,-9917,9915,-9915,-9914,9913,-9914,-9913,9911,-9911,9909,-9909,9907,-9907,9905,-9906,-9905,-9904,-9903,-9902,9900,-9900,9898,-9898,9896,-9896,-9703,9703,-9704,9703,-9704,9702,-9703,-9702,9700,-9701,-9700,-9699,9698,-9699,-9698,9696,-9696,-9695,9694,-9695,-9694,9692,-9692,9691,-9692,-9691,-9690,9689,-9690,-9689,9687,-9687,-9686,9685,-9686,9685,-9686,9685,-9686,-9685,9683,-9683,9681,-9681,-9680,9679,-9680,-9679,9678,-9679,-9678,-9677,-10575,-10574,10573,-10574,-10573,10572,-10573,-10572,-10571,10570,-10571,-10570,-10569,10568,-10569,-10568,-10567,10566,-10567,-10566,10564,-10564,-10563,10562,-10563,10562,-10563,-10562,10560,-10560,-10559,10558,-10559,-10558,10556,-10556,-10555,-10553,10552,10553,-10553,-10552,-10551,10550,-10551,-10550,-10549,10547,-10547,-10546,-10545,10544,-10545,10544,-10545,-10544,-10543,10542,-10543,10542,-10543,-10542,-10541,-10540,10538,-10539,-10538,10536,10535,-10535,10533,10533,-10533,10531,-10531,10529,-10529,10527,-10527,10526,-10527,10525,-10525,-10524,10523,-10524,-10523,10521,-10521,-10520,10519,-10520,10519,-10520,-10519,-10518,10516,-10516,-10515,10512,10513,-10513,10512,-10513,-10512,-10511,-10510,10508,-10509,10508,-10509,-10508,10507,-10508,-10507,10505,-10505,10503,-10503,-10501,10501,10500,-10501,-10500,-10499,10498,-10499,-10498,10496,-10496,-10495,10494,-10495,10494,-10495,-10494,10492,-10492,10490,-10491,-10490,10488,-10488,-10487,10485,-10485,10483,-10483,10481,-10590,10588,-10589,-10588,-10587,10586,-10587,-10586,10584,-10584,-10583,10581,-10581,10579,-10579,10577,-10578,10577,-10578,-10577,10659,-3285,3283,-3283,3281,-3281,-3280,3279,-3280,-3279,3277,-3278,-3277,-3276,-3275,3274,-3275,-3274,3272,-3273,-3272,3270,10660,10661,10662,10663,10664,10665,10666,-10667,10666,10667,10668,-10669,10668,10669,10670,-10671,10670,10671,10672,-10673,10672,10673,10674,-10675,10674,10675,-10676,10675,10676,10677,10678,10679,10680,10681,10682,10683,10684,10685,10686,10687,10688,-10689,10689,10690,-10691,10690,10691,10692,10693,-10694,10693,10694,10695,-10696,10695,10696,10697,-10698,10697,10698,10699,10700,10701,10702,10703,-10704,10703,10704,10705,10706,10707,-10708,10708,10709,-10710,10709,10710,10711,10712,-10713,10713]]},{"type":"Polygon","properties":{"stateid":"54","name":"Congressional District 3"},"id":"5403","arcs":[[10714,-10715,10714,10715,10716,-10717,10716,10717,-7781,-7780,7779,-10466,-10465,10464,-10465,-10464,-10463,10462,-10463,-10462,10460,-10460,10458,-10458,-10457,10456,-10457,-10456,-10455,10718,10719,-10720,10719,10720,-10721,10720,10721,10722,10723,10724,10725,10726,10727,10728,10729,-10730,-10729,10728,10730,-10727,10731,10732,10733,10734,-10735,10734,-10735,10734,10735,10736,10736,10737,10738,10739,-10740,10739,10740,10741,-10742,10741,10742,10743,10744,10745,-10746,10745,10746,10747,10748,10749,-10750,10749,10750,10751,-10752,10751,10752,10753,10754,10755,10756,10757,10757,10757,10758,10759,10759,10759,10760,10761,10762,10763,10764,10765,10766,-10764,10767,10768,10769,10770,10771,10772,10773,10774,10775,10776,10777,10778,-10779,10778,10779,10780,10781,10782,-10783,10782,10783,-1517,1515,-1515,1514,-1515,-1514,-1513,1512,-1513,-1512,-1511,1510,-1511,-1510,1508,-1508,1506,-1506,1504,-1504,-1503,1502,-1503,-1502,1500,-1500,1498,-1498,1496,-1496,1494,-1494,1492,-1492,1490,-1490,-1489,1488,-1489,1488,-1489,-1488,-1487,1486,-1487,-1486,-1485,1484,-1485,-1484,1482,1482,-1482,1480,-1480,1478,-1478,-1477,1476,-1477,-1476,-1475,1474,-1475,-1474,-1473,1472,-1473,-1472,10784,-10785,10784,10785,10786,10787,10788,-10789,10789,10790,-10791,10791,10792,10793,10794,10795,10796,10797,10798,-10799,10799,10800,-10797,10796,-10797,10801,10802,10803,10804,10805,10806,10807,10808,10809,10810,10811,10812,10813,-10814,10813,10814,-10815,10814,10815,10816]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 1"},"id":"1201","arcs":[[-5349,-6817,6815,-6815,6813,-6813,-6812,6811,-6812,-6811,-6810,6809,-6810,-6809,6808,-6809,-6808,-6807,6806,-6807,-6806,-6805,6804,-6805,-6804,6802,-6802,6800,-6800,-6799,6798,-6799,-6798,6796,-6796,-6795,6794,-6795,-6794,-6793,6792,-6793,-6792,6790,-6790,10817,-4422,-4421,4420,-4421,-4420,-4419,4418,-4419,-4418,-4417,4416,-4417,-4416,-4415,4414,-4415,-4414,-4413,4412,-4413,-4412]]},{"type":"Polygon","properties":{"stateid":"55","name":"Congressional District 3"},"id":"5503","arcs":[[-10191,-10190,10189,-10190,-10189,-10188,10187,-10188,-10187,10184,10185,-10185,10184,-10185,-10184,10182,-10182,10181,-10182,10180,10180,-10180,10178,-10178,10176,-10176,-10175,-10174,10173,-10174,-10173,-10172,10170,-10170,-10169,-10168,10167,-10168,-10167,-10166,10165,-10166,-10165,-10164,-10163,10162,-10163,-10162,10160,-10161,-10160,-10159,-6039,-10192,-8546,-4212,10818,10819,10820,10821,10822,10823,-5791,-5790,5788,-5788,5786,-5786]]},{"type":"MultiPolygon","properties":{"stateid":"44","name":"Congressional District 2"},"id":"4402","arcs":[[[10824]],[[-9661,9659,-9659,-4080,-2599,2597,-2597,2595,-2595,-2594,2593,-2594,-2593,-2592,2591,-2592,-2591,-2590,2589,-2590,-2589,2587,10825,10826]]]},{"type":"Polygon","properties":{"stateid":"53","name":"Congressional District 1"},"id":"5301","arcs":[[-9146,9145,-9146,-9145,9143,-9143,-6112,6110,6110,-6110,6108,-6108,6106,-6106,6104,-6104,-6103,6102,-6103,-6102,-6101,6100,-6101,-6100,6098,6098,6097,-6097,6095,-6095,-6094,6093,-6094,6093,-6094,-6093,-6092,6091,-6092,-6091,-6090,6089,-6090,-6089,-6088,6087,-6088,6087,-6088,-6087,6085,-6085,-6084,6083,-6084,-6083,6082,-6083,6082,-6083,-6082,6080,-6081,-6080,6078,-6078,6076,-6076,6075,10827,10828,10829,10830,10831,10832,-10833,10832,10833,10834,10835,10836,10837,10838,-10839,10838,10839,10840,-10841,10841,10842,-10843,10842,-10843,10842,-10843,10843,10844,10845,10846,10847,-10848,10848,10849,10850,10851,10852,10853,10854,10855,-10856,10855,10856,10857,10857,10858,10859,10860,10861,10862,10863,10864,10865,-10866,10866,10867,10868,10869,10870,10871]]},{"type":"Polygon","properties":{"stateid":"53","name":"Congressional District 7"},"id":"5307","arcs":[[10872,10873,10874,-10837,10875,10876,10877,10878,10879,-10880,10879,10880,10881,-10882,10881,10882,10883,10883,10884,10885,10886,10887]]},{"type":"Polygon","properties":{"stateid":"53","name":"Congressional District 2"},"id":"5302","arcs":[[-10871,10869,-10869,10867,-10867,10865,-10866,-10865,10863,-10863,10861,-10861,10859,-10859,10857,10857,-10857,-10856,10855,-10856,-10855,10853,-10853,10851,-10851,10849,-10849,10847,-10848,-10847,-10846,10844,-10844,10842,-10843,10842,-10843,10842,-10843,-10842,10840,-10841,-10840,-10839,10838,-10839,-10838,-10875,10873,-10873,10888,10889]]},{"type":"Polygon","properties":{"stateid":"45","name":"Congressional District 2"},"id":"4502","arcs":[[-9062,-9061,9059,-9945,9943,-9943,9941,-9941,9939,-9939,9937,9936,-9936,9934,-9934,-10659,10657,-10657,-10656,10655,-10656,10655,-10656,-10655,10653,-10653,10651,-10651,10649,-10649,10647,-10647,10645,-10645,-10644,10643,-10644,-10643,10641,-10641,10639,-10639,10637,10637,-10637,10635,-10636,-10635,-10634,10632,-10632,10630,-10630,10628,-10628,10626,10626,-10626,10624,-10624,10622,-10622,-10621,10620,-10621,-10620,10618,10618,-10618,-10617,10616,-10617,-10616,10614,10614,-10614,-10613,10612,-10613,-10612,-10611,10610,-10611,-10610,-10609,10608,-10609,10608,-10609,-10608,10606,-10607,-10606,10605,-10606,10604,-10605,-10604,10602,-10602,-10601,10600,-10601,-10600,-10599,10598,-10599,-10598,10597,-10598,-10597,-10596,10595,-10596,-10595,10593,-10593,10591,-10591,10890,10891,-10892,10891,10892,10893,10894,10895,-10896,10895,-10896,10895,10896,10897,10898,10899,10900,-10901,10900,-10901,10901,-10902,10902,10903,-10904,10904,-10905,10904,10905,-10906,10905,10906,10907,10908,10909,10910]]},{"type":"Polygon","properties":{"stateid":"29","name":"Congressional District 7"},"id":"2907","arcs":[[10405,10911,10912,10913,10914,10915,10916,10917,-10918,10917,10918,10919,10920,-10921,10921,10922,-10370,-10407]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 13"},"id":"1713","arcs":[[-10216,-10357,10355,-10355,-10354,10353,-10354,-10353,10351,-10351,10349,-10349,-10348,10347,-10348,-10347,-10346,10345,-10346,-10345,-10344,10343,-10344,-10343,-10342,10341,-10342,-10341,10339,-10339,10337,-10337,10336,-10337,-10336,-10335,10334,-10335,-10334,10332,10332,-10332,10330,-10330,-10329,10328,-10329,-10328,10923,10924,10925,10926,-10927,10926,10927,10928,10929,-9173,-9171,9170,9171,-9172,-9171,-9170,-9169,9168,-9169,9168,-9169,-9168,-9167,9166,-9167,9166,-9167,-9166,-9165,6723,-6724,-6723,-10217]]},{"type":"MultiPolygon","properties":{"stateid":"12","name":"Congressional District 26"},"id":"1226","arcs":[[[10930,10931,10932,10933,10934,-10935,10934,10935,10936,-10937,10937,10938]],[[10939]]]},{"type":"Polygon","properties":{"stateid":"10","name":"Congressional District (at Large)"},"id":"1000","arcs":[[-2975,2973,10940,-3469,-3468,3466,-3466,3464,-3505,-3504,10941,10942]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 21"},"id":"3621","arcs":[[-6912,-6911,6910,-6911,-6972,6970,-6970,-6969,6968,-6969,-6968,6966,6966,-6966,10943,10944,10945,10946,10947,10948,10949,-7088,-7087,7086,-7087,-7086,-7085,7083,-7084,-7083,-7082,7081,-7082,-7081,-7080,7079,-7080,-7079,-7078,7077,-7078,-7077,7075,-7075,-1404,10950]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 19"},"id":"4819","arcs":[[-9973,10951,-10265,-10264,10263,-10264,-10263,-10262,10261,-10262,-10261,10259,-10260,-10259,10257,-10257,10256,-10257,-10256,-10255,10254,-10255,-10254,10250,-10251,10250,10252,10252,10251,10248,10248,-10252,-10251,-10250,10249,-10250,-10247,10246,-10247,10246,10247,10248,-10248,-10247,-10246,-7643]]},{"type":"Polygon","properties":{"stateid":"20","name":"Congressional District 4"},"id":"2004","arcs":[[10952,-7119,10953,10954,10955,10956,-10957,10956,10957,10958,10959,10960,-10961,10960,10961,10962,10963,-10157]]},{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 2"},"id":"3702","arcs":[[-6563,-5197,5195,-5195,10964,10965,10966,10967,10968,10969,-10970,10969,10970,10971,10972,10973,10974,10975,-10974,10976,-10977,10976,10977,10978,10979,10980,-10981,10980,10981,10982,10983,-10984,10983,10984,10985,10986,-10987,10986,10987,10988,-10989,10988,10989,-10989,10990,10991,-10992,10991,10992,10993,-10994,10993,10994,10995,-10996,10995,10996,10997,10998,10999,10999,11000,11001,11002,11003,11004,11005,-11006,11005,11006,11007,-11008,11007,11008,11009,-11010,11009,11010,11011,11012,-10979,11013,11014,-11015,11014,11015,11016,11017,11018,11019,11020,11021,-11019,11022,11023,11024,11025,11026,11027,11028,11029,11030,11031,11032,11033,11034,11035,11036,11037,-11038,11037,11038,11039,11040,-11041,11040,11041,11042,-11043,11042,11043,11044,11045,11046,11047,11048,11048,11048,11048,11049,11050,11051,11052,11053,11054,11055,11056,11057,11058,-11059,11058,11059,11060,11061,11062,11063,11064,-6516,-6515,-6514,6513,-6514,-6513,-6512,6511,-6512,-6511,-6510,6509,-6510,-6509,-6508,6507,-6508,6507,-6508,-6507,6505,-6505,-6504,6503,-6504,-6503]]},{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 4"},"id":"3704","arcs":[[5184,-5184,5182,-5182,-5181,5179,-5180,-5179,-5,-4,2,-2,0,-1,-286,-285,284,-285,-284,-283,282,-283,-282,281,-282,-281,-280,279,-280,-279,11065,11066,-11067,11066,-11067,11067,11068,11069,11070,-11071,11070,11071,11072,11073,11074,11075,11076,-11077,11077,11078,-11079,11079,-11069,11080,11081,-11082,11081,11082,11083,11084,11085,11086,11087,-11088,11087,11088,11089,-11090,11089,11090,11091,11092,11093,11094,11095,11096,-11097,11097,11098,-11099,11098,11099,11100,-11101,11100,11101,11102,11103,11104,11105,11106,11107,11108,11109,-11030,-11029,11027,-11027,11025,-11025,11023,-11023,11018,-11022,11020,-11020,-11019,-11018,11016,-11016,-11015,11014,-11015,-11014,10978,-11013,11011,-11011,-11010,11009,-11010,-11009,-11008,11007,-11008,-11007,-11006,11005,-11006,-11005,11003,-11003,11001,-11001,10999,10999,-10999,10997,-10997,-10996,10995,-10996,-10995,-10994,10993,-10994,-10993,-10992,10991,-10992,-10991,10988,10989,-10989,10988,-10989,-10988,-10987,10986,-10987,-10986,10984,-10984,10983,-10984,10982,-10982,-10981,10980,-10981,-10980,-10979,-10978,-10977,10976,-10977,10973,10975,10974,-10974,-10973,10971,-10971,-10970,10969,-10970,-10969,10967,-10967,10965,-10965,-5194,-5193,5192,-5193,-5192,5190,5189,-5189,5187,5186,-5186]]},{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 13"},"id":"3713","arcs":[[11035,-11035,11033,-11033,11031,-11031,-11030,11029,-11110,11108,-11108,11106,-11106,11104,-11104,11102,-11102,-11101,11100,-11101,-11100,-11099,11098,-11099,-11098,11096,-11097,-11096,-11095,-11094,-11093,11091,-11091,-11090,11089,-11090,-11089,-11088,11087,-11088,-11087,11085,-11085,11083,-11083,-11082,11081,-11082,-11081,11068,-11080,11078,-11079,-11078,11076,-11077,-11076,11074,-11074,11072,-11072,-11071,11070,-11071,-11070,-11069,-11068,11066,-11067,11066,-11067,-11066,-278,-277,276,-277,-276,274,-274,-273,272,-273,-272,270,-270,268,-268,266,-266,-265,264,-265,264,-265,-264,262,262,-262,260,-260,258,-258,256,-256,-254,253,254,-254,-253,-252,251,-252,-251,249,-249,247,-247,245,-245,242,-244,-243,-242,-241,240,-241,239,-239,237,-237,235,-235,-234,233,-234,-233,231,-231,229,-229,-228,226,-227,-226,-225,-224,222,221,-221,-220,219,-220,-219,-218,217,-218,-217,-216,215,-216,-215,213,-213,211,-211,-209,209,208,-209,-208,-207,198,-206,204,203,-204,-203,201,-202,-201,-200,-199,-198,-197,195,-195,-194,-188,-193,191,-192,-191,189,-189,186,187,-188,-187,-186,11110,11111,11112,11113,11114,11115,-11116,11115,11116,11117,-11118,11117,11118,200,11119,11120,11121,11122,11123,-11124,11123,-11124,11123,11124,11125,11126,11127,11128,11129,-11130,11129,11130,11131,-11132,11131,11132,-11039,-11038,11037,-11038,-11037]]},{"type":"Polygon","properties":{"stateid":"05","name":"Congressional District 4"},"id":"0504","arcs":[[-10408,-10398,10396,-10396,10395,-10396,-10395,10393,-10393,-10392,10391,-10392,-10391,10389,-10389,10387,10387,-10387,10385,-10385,-10384,-10383,-10382,10381,-10382,-10381,10379,-10380,-10379,-10378,10377,-10378,-10377,10375,-10375,-10374,-10373,11133,11134,11135,11135,11136,11137,11138,-11139,11138,11139,-8447,1103,-1104,-1103,1101,-1101,11140,-989,986,987,-987,986,-987,-986,984,-984,982,-982,980,-980,-979,970,-978,-977,-976,974,-974,-973,968,-972,-971,-970,-969,-968,-966,965,966,-966,-965,961,963,962,-962,-961,-960,959,-960,-959,957,-957,955,-956,-955,-954,953,-954,-953,951,-951,949,-950,-949,944,-948,-947]]},{"type":"Polygon","properties":{"stateid":"22","name":"Congressional District 4"},"id":"2204","arcs":[[-990,-11141,-1100,-1099,1098,-1099,-1098,1096,-1096,-1095,1094,-1095,-1094,-1093,1092,-1093,-1092,-1091,1090,-1091,-1090,-1089,1088,-1089,1088,-1089,-1088,-1087,1086,-1087,-1086,1084,-1084,-1083,1082,-1083,-1082,-1081,1080,-1081,-1080,-1079,1078,-1079,-1078,-1077,1076,-1077,-1076,1075,-1076,-1075,-1074,1073,-1074,-1073,1071,1070,-1070,-1069,1068,-1069,-1068,1066,-1066,-1065,1064,-1065,-1272,-1271,1270,-1271,1270,-1271,1270,-1271,-1270,1268,1268,-1268,-1267,1266,-1267,-1266,1264,-1264,1262,-1262,1260,-1260,1258,-1258,1256,1255,-1255,1253,-1253,1251,-1251,1250,-1251,-1250,1248,-1248,1246,-1246,1244,-1244,-1243,1242,-1243,-1242,1240,-1240,-1239,11141,11142,11143,11144,-11145,11144,11145,11146,11147,11148,11149,-11145,11150,7954,-7955,-7954,-7953,7952,-7953,7951,-7951,7949,-7949,7947,-7947,-7946,7945,-7946,-7945,-7944,7943,-7944,-7943,7942,-7943,-7942,-7941,7940,-7941,7939,-7939,7937,-7937,-7936,7935,-7936,7935,-7936,-7935,-7934,7933,-7934,7933,-7934,-7933,-7932,7931,-7932,-7931,7929,-7929,7927,-7927,-7926,7925,-7926,-7925,-7924,7923,-7924,-7923,7921,-7921,-7920,7919,-7920,-7919,-7918,7917,-7918,-7917,7915,-7916,-7915,-7914,7913,-7914,-7913,11151,11152,11153,11154,11155,11156,11157,11158,-11159,11159,11158,11160,11161,11162,-11163,11162,11163,11164,-11165,11165,11166,11167,11168,-11169,11168,11169,11170,-11171,11171,11172,11173,-11174,11173,-11174,11174,11175,11176,11177,11178,11179,11180,11181,11182,-11183,11182,11183,11184,11185,11186,-11187,-11185,11187,11188,11189,-11190,11189,11190,11191,-11192,11191,11192]]},{"type":"Polygon","properties":{"stateid":"04","name":"Congressional District 1"},"id":"0401","arcs":[[-4668,4667,-4668,-4667,4665,-4665,4663,4663,-4663,4662,-4663,4661,-4661,4659,-4659,4656,-4658,-4657,-4656,4654,-4654,4652,-4652,4650,-4650,4648,-4648,-4647,4646,-4647,-4646,4644,-4644,-4643,4642,-4643,-4642,-4641,4640,-4641,-4640,4638,-4638,4636,-4636,4634,-4634,-4633,4632,-4633,-4632,-4631,4630,-4631,-4630,-4629,4628,-4629,-4628,11193,11194,11195,-9974,-7600,-7599,-9566,9564,-9564,-9563,9562,-9563,-9562,9560,-9560,-9559,9558,-9559,-9558,9552,-9553,-9552,9550,9550,9549,-9549,9547,-9547,-9546,11196,11197,11198,-4826,4824,-4824,-4823,4822,-4823,-4822,4820,-4820,4818,-4818,4816,-4816,4814,-4814,4812,-4812,4810,-4810,-4809,4808,-4809,-4808,4807,-4808,-4807,4805,-4805,4803,-4803,4801,-4801,4799,-4799,4797,-4797,4795,4795,-4795,4794,-4795,-4794,-4793,-4792,4791,-4792,-4791,-4790,4789,-4790,-4789,4787,-4788,-4787,4785,4785,4785,-4785,4783,-4782,4781,4782,-4782,-4781,-4780,4779,-4780,-4779,-4773,4772,-4778,4776,-4776,-4775,4774,-4775,-4774,-4773,4771,-4771,4769,4768,-4768,4766,-4766,4764,4764,4764,-4764,-4763,4762,-4763,4762,-4763,-4762,4761,-4762,4761,-4762,-4761,-4759,4759,4759,4758,-4759,-4758,4756,-4756,4743,-4755,4754,-4755,-4754,4752,-4753,-4752,4746,-4751,-4750,-4749,4748,-4749,-4748,-4747,-4746,4739,-4740,-4745,-4744,-4743,4742,-4743,-4742,4740,4740,-4740,-4739,4736,4737,4736,4736,-4736,4734,-4735,-4734,4733,-4734,-4733,-4732,4731,-4732,-4730,4729,4730,-4731,-4730,4728,-4729,4728,-4729,-4728,-4727,4726,-4727,4725,-4726,-4725,4724,-4725,-4724,4722,-4722,-4721,-4720,-4719,-4718,-4717,4716,-4717,4715,-4715,4713,-4713,-4712,4711,-4712,4711,-4712,4710,-4711,4710,-4711,-4710,-4709,4707,-4707,4705,-4706,-4705,-4704,4703,-4704,-4703,4701,-4701,-4700,4699,-4700,-4699,-4698,4697,-4698,-4697,4695,-4695,4693,-4693,4691,-4691,4689,-4689,4688,-4689,-4688,-4687,4686,-4687,-4686,-4685,4684,-4685,-4684,4682,-4682,4680,-4680,4678,-4678,4676,4676,-4676,-4674,-4675,-4674,-4673,4671,-4671,4669,-4669]]},{"type":"Polygon","properties":{"stateid":"28","name":"Congressional District 1"},"id":"2801","arcs":[[11199,-7705,11200,11201,11202,-9779,11203,-9068,11204,11205,11206,11207,11208,11208,11208,11209,11210,11211,-11212,-11211,11212,11213,-11214,11213,-11212,11214,11215,11216,11217,11218,11219,-11220,11219,11220,11221,-11222,11221,11222,-8393]]},{"type":"MultiPolygon","properties":{"stateid":"47","name":"Congressional District 5"},"id":"4705","arcs":[[[10303,-10323]],[[11223,-11224,11223,11224,11225,11226,11227,11228,11229,-11230,11229,11230,11231,11232,-10321,-10320,10319,-10320,-10319,10317,-10317,10315,-10315,-10314,10313,-10314,-10313,10311,-10311,10309,-10309,10307,-10307,10305,-10305,-10304,10303,-10304,10303,-10304,10303,-10304,10303,-10304,-10303,-1594,-1593,-1590,-1592,1590,-1590,-1589,-1588,1587,-1588,-1587,11233,11234,11235,11236,11237,11238,11239]]]},{"type":"Polygon","properties":{"stateid":"51","name":"Congressional District 4"},"id":"5104","arcs":[[11240,-11241,11240,11241,7421,11242,7422,-7423,-7422,-7421,7419,-7419,7417,-7417,7415,-7415,7413,-7413,-7412,7411,-7412,-7411,7409,-7409,-4189,4187,4187,-4187,4185,4185,-4185,4183,-4183,-4182,4181,-4182,4181,-4182,4181,-4182,4181,-4182,4181,-4182,4181,-4182,4181,-4182,4181,-4182,-4181,4178,-4179,4178,4179,-4179,-4178,-4177,4176,-4177,-4176,4175,-4176,-4175,-4173,4172,4173,-4173,-4172,-4171,4170,-4171,-4170,4168,-4169,-4168,4167,-4168,-4167,-4166,4165,-4166,-4165,-4164,4163,-4164,-4163,-4162,4161,-4162,-4161,4159,-4159,-4158,4157,-4158,-4157,4155,-4155,-4154,4153,-4154,-4153,-4152,-4151,4150,-4151,-4150,4148,4148,-4148,4146,-4146,4140,-4145,4144,-4145,-4144,4142,-4142,-4141,-4140,4138,-4138,4136,-4136,4134,11243,-295,-20,11244,11245,11245,11245,11246,11247,-11248,11247,11248,11249,-11250,11249,-11250,11249,11250,11251,-11252,11251,11252,11253,-11254,11254,11253,11255,11256,-11257,11256,11257,11258,-11259,11258,11259,11260,11261]]},{"type":"Polygon","properties":{"stateid":"27","name":"Congressional District 7"},"id":"2707","arcs":[[11262,6893,-6894,-6893,6891,-6891,6889,-6889,6887,6887,-6910,-7657,7655,-7656,-7655,-7654,7652,-7652,7650,-7650,7648,-7661,7659,-7659,-5780,5778,-5778,5776,-5776,-5775,5774,-5775,-5774,-5773,5772,-5773,-5772,5770,-5771,5770,11263,11264,11265,11266,-11267,11266,11267,11268,-11269,11268,11269,-11270,11270,11271,11272,-11273,11272,11273,11274,-10123,-10122,10121,-10122,-10121,10119,10119,-10119,-10118,10117,-10118,-10117,-10116,10115,-10116,-10115,-10114,10113,-10114,-10113,10111,-10112,-10111,10109,-10110,-10109,10108,-10109,-10108,10107,-10108,-10107,10105,-10105,10104,-10105,10103,-10103,-10101,10100,10101,-10101,-10100,-10099,10098,-10099,-10098,10096,-10096,10094,-10094,-10093,10092,-10093,10092,-10093,-10092,10090,-10090,-10089,10088,-10089,-10088,-10087,10086,-10087,-10086,10084,-10084,-10083,10082,-10083,-10082,10081,-10082,-10081,10080,-10081,10079,-10079,-10078,10077,-10078,10076,-10076,-10075,10074,-10075,-10074,-10073,10072,-10073,-10072,10070,-10070,-10069,10068,-10067,10066,-10069,-10068,10066,-10067,10066,-10067,-10066,10064,-10064,-10063,10062,-10063,-10062,-10061,10060,-10061,-10060,10058,-10058,-10057,10056,-10057,-10056,10054,-10054,10052,-10052,10050,-10050,-10049,10048,-10049,-10048,10046,-10046,10044,-10044,10043,-10044,10042,-10042,-10041,10040,-10041,-10040,10038,-10038,10037,-10038,-10037,-10036,10035,-10036,-10035,10033,-10033,-10032,10031,-10032,-10031,-10030,10029,-10030,-10029,10027,-10028,-10027,-10026,10025,-10026,-10025,-10024,10023,-10024,-10023,-10022,10021,-10022,-10021,10019,-10020,-10019,-10018,-10017,10015,-10016,-10015,10013,-10014,-10013,10011,-10012,-10011,-10010,10009,-10010,-10009,-10008,10007,-10008,-10007,-10006,10005,-10006,-10005,10004,-10005,-10004,-10003,10002,-10003,10001,-10002,-10001,-10000,9998,-9998,-9996,9995,-9997,9995,-9996,-9995,-9994,9993,-9994,-9993,9991,-9991,-9990,9988,-9989,-9988,9986,-9986,9984,-9984,9982,-9982,9980,-9980,-9979,9978,-9979,-9978,9976,-9976]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 19"},"id":"3619","arcs":[[7115,-7115,7113,-7113,7111,-7111,-7110,7109,-7110,-7109,-7108,7107,-7108,-7107,-7106,7105,-7106,-7105,-7104,7103,-7104,-7103,-7102,7101,-7102,-7101,-7099,7099,-7100,7098,-7099,7098,-7099,7093,7097,7097,7094,7096,7096,7096,7095,-7095,-7094,-7093,7091,-7091,7089,-7089,-10950,11275,11276,11277,11278,11279,11280,11281,11282,11283,11284,11285,-11286,11286,11285,11287,11288,-11289,11288,11289,-10946,10944,-10944,-6965,-4059,-2287,11290,11291,11292,11293,-11294,11294,11295,11296,11297,11298,-11299,11298,11299,11300,11301,11302,-11303,11302,11303,11304,11305,11306,-11307,11306,11307,11308,-11309,11308,11309,11310,11311,11312,-11313,11312,-11313,11312,11313,11314,-11315,11314,11315,-8166,-8165,8163,-8163,8161,-8161,8159,-8159,8157,-8157,-8155,8155,8154,-8155,-8154,8152,-8152,-7117]]},{"type":"Polygon","properties":{"stateid":"47","name":"Congressional District 7"},"id":"4707","arcs":[[-7704,-7703,7702,-7703,-7702,-7701,7700,-7701,7700,-7701,-7700,7698,-7698,-7697,7696,-7697,-7696,7695,-7696,-7695,7693,-7693,7691,-7691,7689,-7689,7687,-7687,-7686,7685,-7686,-7685,-7684,7683,-7684,-7683,7681,-7681,11316,-10278,-10277,10276,-10277,-10276,-10274,10274,10273,-10274,-10322,-11233,11231,-11231,-11230,11229,-11230,-11229,11227,-11227,11225,-11225,-11224,11223,-11224,-11240,11238,-11238,11236,-11236,11234,-11234,-1586,1584,-1584,1582,-1582,-1581,1580,-1581,-1580,1578,-1578,1576,1575,-1575,1573,-1573,-1572,1571,-1572,-1571,1569,-1569,1567,-1567,1565,-1565,1563,-1563,1561,-1561,1559,-1723,1721,-1721,-1720,1719,-1720,-1719,1717,-1717,-1716,1715,-1716,1715,-1716,-1715,-1714,1713,-1714,-1713,-1712,1711,-1712,1711,-1712,-1711,-1710,1709,-1710,-1709,-1708,1707,-1708,-1707,-1706,1705,-1706,-1705,1703,-1703,-9780,-11203,11201,-11201]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 17"},"id":"4817","arcs":[[11317,11318,11319,11320,-11321,11320,11321,11322,-11323,11322,11323,11324,11325,11326,11327,11328,-6610,6608,-6608,-8747,-8746,8745,11329,11330,11331,-11332,11332,11333,11334,-11335,11334,11335,11336,-11337,11336,11337,-11338,11337,11338,11339,11340,11341,-11342,11341,-11342,11341,11342,11343,-11344,11343,11344,11345,11346,-11347,-11346,11347,11348,11346,11349,11350,11351,11352,11353,11354,11355,-11356,11355,11356,11357,-2332,-2331,2330,-2331,-2330,-2329,2328,-2329,-2328,2326,-2326,-2325,-2324,2323,-2324,-2323,-2322,2320,-2320,2318,-2318,-2317,2316,-2317,-2316,2314,-2314,2312,-2312,-2311,2310,-2311,-2458,2456,-2456,-2455,2454,-2455,-2454,-2453,2452,-2453,-2452,-2451,2450,-2451,-2450,2449,-2450,-2449,2447,-2447,-2446,2445,-2446,-2445,-2444,2443,-2444,-2443,-2442,2441,-2442,-2441,-2440,2439,-2440,-2439,2437,-2437,-2436,2435,-2436,-2435,-2434,2433,-2434,-2433,-2432,2431,-2432,-2431,2429,2429,-2429,2427,-2426,2426,2425,-2426,-2425,-2424,-2423,-2422,-2421,-9858,2421,-9857,2423,-9856,9854,-9854,9852,9852,-9852,9850,9850,-9850,-9849,9848,-9849,9848,-9849,-9848,-9847,9846,-9847,-9846,9844,-9844,-9843,9842,-9843,-9842,-9841,9840,-9841,-9840,9838,9838,9838,-9838,-9837,9836,-9837,-9836,-9835,9834,-9835,-9834,9833,-9834,-9833,9832,-9833,9832,-9833,-9832,9830,-9831,-9830,9828,-9829,-9828,-9827,9826,-9827,-9826,9824,-9824,9821,9822,-9822,9821,-9822,-9821,9819,9819,9818,-9818,-9816,9815,9816,-9816,-9815,-9814,9812,-9813,-9812,9810,-9810,-9809,9808,-9809,-9808,9806,-9806,-9805,9804,-9805,-9804,9802,-9802,9800,9800,-9800,-9799,9798,-9799,-9798,9796,-9796,9794,9794,9794,-9794]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 10"},"id":"1310","arcs":[[3659,-3659,3658,-3659,-3658,-2997,2995,-2995,-2994,2993,-4613,-4612,4611,-4612,-4611,4609,-4609,4607,-4607,-4606,4605,-4606,4605,-4606,-4605,-4604,4603,-4604,4603,-4604,-4603,4601,-4601,4599,-4599,4597,-4597,11358,11359,11360,6237,-6238,-6237,6235,-6235,-6234,6233,-6234,-6233,-6232,6231,-6232,-6230,6229,6231,-6232,6230,-6231,-6230,-6229,6227,-6228,6227,-6228,-6227,6225,6225,-6225,6223,6223,6223,6223,-6223,6221,-6221,-6220,6219,-6220,-6219,6217,-6217,6215,-6215,6213,-6213,6211,-6211,6209,-6209,-6208,6207,-6208,-6207,6205,-6205,-6204,6203,-6204,-6203,6201,-6201,6199,-6199,6197,-6197,6193,-6196,-9066,11361,11362,11363,11364,-11365,11364,11365,11366,11367,11368,11369,11370,-11371,11370,11371,11372,11373,11374,-11375,11374,11375,11376,11377,11378,11379,11380,11381,-11382,11382,11383,11384,11385,11386,11387,11388,-11389,11388,11389,11390,11391,11392,11393,11394,-11395,11394,11395,11396,-11397,11396,11397,11398,-11399,11398,11399,11400,-11401,11400,11401,11402,-11403,11402,11403,11404,11405,11406,11407,11408,11409,11410,11411,11412,11413,11414,-11415,11414,11415,-3669,-3668,3667,-3668,-3667,-3666,3665,-3666,-3665,3663,-3663,-3662,3661,-3662,-3661]]},{"type":"Polygon","properties":{"stateid":"29","name":"Congressional District 4"},"id":"2904","arcs":[[11416,11417,-9625,-9624,9622,-10226,10224,-10224,10222,-10222,-10221,10220,-10221,-10220,10218,-10218,-6721,6719,-6719,-6718,6716,-6717,-6716,-6715,6714,-6715,-6714,6712,-6712,6710,-6710,-6709,6707,-6708,-6707,6705,-6705,6703,-6789,6787,-6787,-6786,6785,-6786,-6785,6783,-6783,11418,11419,11420,-10922,10920,-10921,-10920,-10919,-10918,10917,-10918,-10917,10915,-10915,10913,-10913,11421]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 8"},"id":"1308","arcs":[[-11416,-11415,11414,-11415,-11414,11412,-11412,11410,-11410,11408,-11408,11406,-11406,11404,-11404,-11403,11402,-11403,-11402,-11401,11400,-11401,-11400,-11399,11398,-11399,-11398,-11397,11396,-11397,-11396,-11395,11394,-11395,-11394,11392,-11392,11390,-11390,-11389,11388,-11389,-11388,11422,11423,11424,11425,-11426,11425,11426,11427,11428,11429,-11430,11429,-11430,11429,-11430,11429,11430,11431,-11432,11431,11432,11433,-11434,11433,11434,11435,-11436,11435,11436,11437,11438,-11439,11438,11439,11440,11441,-11442,11441,11442,11443,11444,-11445,11444,11445,11446,-11447,11446,-11447,11446,11447,11448,-11449,11448,-11449,11448,11449,11450,11450,11450,11451,11452,11452,11453,-11454,11453,11454,-3243,3241,-3241,-3240,3239,-3240,3239,-3240,-3239,-3238,3237,-3238,3237,-3238,-3237,-3236,3235,-3236,-3235,3233,-3233,-3232,3231,-3232,-3231,3230,-3231,-3230,3228,-3334,-3333,-3332,11455,-6818,-1358,1356,1356,1356,-1356,1354,-1354,-1353,1352,-1353,-1352,-1351,1350,-1351,-1350,1349,-1350,-1349,-1348,1347,-1348,-1347,1345,-1345,1343,-1343,1341,-1341,1339,-1339,-1338,1336,-1337,-1336,1334,-1334,1332,-1332,-1331,1330,-1331,-1330,-1329,1328,-1329,-1328,1326,1326,-1326,-1325,1324,-1325,-1324,1322,-1322,-1321,1320,-1321,-1320,1317,1318,-1318,1317,-1318,-1317,1315,-1315,1313,-1313,-3670]]},{"type":"Polygon","properties":{"stateid":"29","name":"Congressional District 8"},"id":"2908","arcs":[[-11421,11419,-11419,-6782,6780,-6780,6778,-6779,-6778,-6776,6776,-6777,6775,-6776,6774,-6774,-9197,9195,-9195,9193,-9193,9191,-9191,9189,-9189,9187,-9187,9185,-9185,-9184,-9183,9182,11456,11457,11458,-7679,11459,-7677,-7676,7674,-7674,7672,-7672,-7671,7670,-8387,-8386,8385,-8386,-8385,8383,-8383,8381,-8381,8379,-8379,-8378,8377,-8378,-8377,8376,-8377,-8376,8375,-8376,-8375,8374,-8375,-8374,8372,-8373,-8372,-8371,8370,-8371,-8370,-8369,-10371,-10923]]},{"type":"Polygon","properties":{"stateid":"01","name":"Congressional District 4"},"id":"0104","arcs":[[-11204,-9778,9776,9776,-9776,9775,-9776,9775,-9776,9775,-9776,-9775,9773,-9773,9771,-9771,9769,-9769,9767,-9767,9765,-9765,9763,-9763,9761,-9761,9759,-9759,9758,-9759,-9758,9757,-9758,-9757,9755,-9755,9753,-9753,-9752,9751,-9752,-9751,9750,-9751,-9750,9748,-9748,-9747,9746,-9747,-9746,9744,9744,-9744,9743,-9744,-9743,-9742,9741,-9742,-9741,-5383,-9968,9964,9966,-9965,9964,9965,-9965,-9964,9962,-9962,9960,-9960,9958,-9958,-9957,9956,-9957,-9956,9954,-9954,-9953,9952,-9953,-9952,9950,-9950,-9949,9948,-9949,9947,-9947,-9946,-820,-819,817,-817,815,-815,813,-813,811,-811,809,-809,807,-807,-806,805,-806,-805,803,-804,802,-802,-801,799,-799,-798,797,-798,-797,795,-795,793,-793,791,-791,-790,789,-790,-789,-788,787,-788,-787,785,-785,784,-785,-784,-783,782,-783,-782,-780,780,779,-780,-779,777,-777,-9094,-9093,9091,-9091,9089,-9089,9088,-9089,-9088,-9087,9086,-9087,-9086,9084,9084,-9084,-9083,9081,-9081,9079,-9079,-9078,9077,-9078,-9077,9075,-9075,-9073,9073,9072,-9073,-9072,9070,9069,-9069]]},{"type":"Polygon","properties":{"stateid":"47","name":"Congressional District 3"},"id":"4703","arcs":[[-1699,1698,-1699,-1698,-1697,1696,-1697,1696,-1697,-1696,1694,-1694,1692,1692,-1692,1690,-1690,1688,-1688,1686,-1686,1684,-1684,-1683,1682,-1683,-1682,1680,-1680,-1679,1678,-1679,-1678,1676,-1676,1674,-1674,-1673,1672,-1673,1672,-1673,1672,-1673,1671,-1672,-1671,1669,-1670,-1669,-1668,1667,-1668,-1667,-1666,1665,-1666,-1665,1663,-1663,1661,-1661,1659,-1659,1657,-1657,1655,1655,1655,-1655,-10302,10300,-10300,10298,-10298,-10297,10296,-10297,-10296,10294,-10294,10292,10292,-10292,-10291,10290,-10291,-10290,10288,-10289,-10288,-10287,-10286,10285,-10286,-10285,-10284,10283,-10284,-10283,-10282,10281,11460,-3957,-3956,3950,-3955,-3954,3952,3947,-3948,3947,-3952,-3951,-3950,-3949,3948,-3949,-3948,-3947,3945,-3945,3943,-3943,3942,-3943,-3942,3940,3940,-3940,3938,-3938,3936,-3936,-3935,3934,-3935,-3934,-3932,3932,3931,-3932,-3931,3929,-3929,-3928,3927,-3928,-3927,3925,3924,-3925,-3924,-3923,3921,-3921,-3920,3919,-3920,-3919,-3918,3917,-3918,-3917,3915,-3916,-3915,-3914,-3913,3912,-3913,-3912,3910,-3910,3908,3907,-3908,-3907,-3906,-3905,3904,-3905,-3904,3902,-3902,3900,-3900,-3899,3898,-3899,-3898,3896,-3896,3894,-3894,3892,-3892,-3891,-4035,4033,-4033,4029,-4032,-4031,-4030,4028,-4028,-4026,4026,4025,-4026,-4025,-4024,4023,-4024,4023,-4024,4022,-4022,4020,-4020,-4019,4017,-4017,4015,-4015,-4014,4013,-4014,-4013,4011,-4011,4009,-4009,4007,-4007,4005,-7838,7836,-7836,7834,-7834,7832,-7832,7830,7829,-7829,-7828,7827,-7828,-7827,-6159,-5352,-5351,5350,-5351,-5350,-1700]]},{"type":"Polygon","properties":{"stateid":"53","name":"Congressional District 5"},"id":"5305","arcs":[[11461,-5876,-6875,-9160,9158,-9158,9156,-9156,9154,-9154,9152,-9152,9150,-9150,-9149,9148,-9149,-9148]]},{"type":"Polygon","properties":{"stateid":"18","name":"Congressional District 9"},"id":"1809","arcs":[[9236,-9236,-9235,9234,-9235,-9234,-9233,9232,-9233,9232,-9233,9232,-9233,-9232,-10481,10479,-10479,10477,-10477,11462,11463,11464,-11465,11464,11465,-7767,-7826,-9379,-7158,-7157,-7156,7155,-7156,-7155,7153,-9247,-9246,9245,-9246,9242,-9245,-9244,-9243,-9242,9240,-9241,-9240,9238,-9238]]},{"type":"Polygon","properties":{"stateid":"28","name":"Congressional District 3"},"id":"2803","arcs":[[1143,-1147,1145,-1145,-1144,-1143,1141,-1141,-1140,1139,-1140,-1139,1137,-1137,1135,-1135,-1134,11466,11467,11468,11469,-11470,11469,-11470,11469,-11470,11470,11471,-11472,11472,11473,-11474,11473,11474,11475,-11476,11475,11476,11477,11478,11479,-11480,11479,11480,11481,-11482,11481,11482,11483,-11484,11483,11484,-11485,11484,11485,11486,11487,11488,11489,11490,11491,11492,11493,11494,11495,-11496,11495,11496,11497,-11498,11497,11498,11498,11499,11500,-11501,11500,11501,-11502,11501,11502,11503,11504,11505,11506,11507,11508,11509,11510,11511,11512,11513,11514,11515,11516,-11517,11516,-11517,11516,-11517,11516,11517,-11518,11517,-11518,11517,11518,11519,-11520,11519,11520,11521,11522,11522,11523,11524,11525,11526,11527,-11207,11205,-11205,-9067,-3337,-3336,3335,-3336,3335,-3336,3334,-3369,-1148]]},{"type":"Polygon","properties":{"stateid":"20","name":"Congressional District 2"},"id":"2002","arcs":[[11528,-10240,-10239,10238,-10239,-10238,10236,-10236,10234,-10234,10232,-10232,10230,-10230,-10229,11529,11530,11531,11532,11533,11534,11535,11536,-11417,-11422,-10912,-10406,10405,-10406,-10405,10403,-10403,-7120,-10953,-10156,-10155,10154,-10155,-10154,-10153,10151,-10151,10149,-10150,-10149]]},{"type":"Polygon","properties":{"stateid":"40","name":"Congressional District 3"},"id":"4003","arcs":[[-9969,530,-531,-530,-10158,-10964,10962,-10962,-10961,10960,-10961,-10960,10958,-10958,-10957,10956,-10957,-10956,10954,-10954,-7141,-7140,7139,-7140,-7139,-10402,-10401,10400,-10401,-10400,-5675,-5691,5689,-5689,5687,-5687,5685,-5685,-5684,5683,-5684,-5683,5681,-5681,5679,-5679,-5678,5677,-5678,-5677,5675,-5770,5768,-5769,-5768,5767,-5768,-5767,5766,-5767,-5766,-5765,5764,-5765,-5764,11537,-11538,11537,11538,11539,-11540,11539,11540,-11541,11540,11541,11542,11543,11544,11545,11546,11547,11548,11549,-11550,11550,11549,11551,11552,11553,11554,11555,11556,11557,11558,-11559,11558,11559,11560,-11561,11560,-11561,11560,-11561,11560,11561,11562,11562,11562,11562,11562,11562,11563,11564,11564,11565,11566,-11567,11566,11567,11568,11569,11570,-11571,11570,-11571,11570,-11571,11570,11571]]},{"type":"Polygon","properties":{"stateid":"19","name":"Congressional District 4"},"id":"1904","arcs":[[11572,-11573,11572,11573,11574,-11575,11574,11575,11576,-11577,11577,11578,-11579,11578,11579,-11580,11580,11581,-11582,11581,11582,11583,-11584,11584,11585,11586,11587,-11588,11587,11588,11589,11590,11591,11592,11593,11594,11595,-11596,11595,11596,11597,11598,-10269,-8661,11599,11600,11601,11602,11603,11604,11605,11606,11607,11608,11609,-11610,11609,11610,-11611,11610,11611,11612,-11613,11612,11613,11614,-11615,11615,-11616,11614,11616,11617,-11618,11618,-11619,11618,11619,-11620,11619,11620,11621,-11622,11621,11622]]},{"type":"Polygon","properties":{"stateid":"31","name":"Congressional District 3"},"id":"3103","arcs":[[11623,11624,11625,11626,11627,-11608,-11607,11606,11628,11629,-11630,11629,11630,11631,-11632,11631,11632,11633,11634,-10244,11635,-10242,-10241,-11529,-10148,10146,-10146,10144,-10144,10142,10142,10142,-10142,10140,-10140,10138,-10138,10136,-10136,10134,-10134,10132,-10132,10130,-10130,-528,-6297]]},{"type":"Polygon","properties":{"stateid":"24","name":"Congressional District 1"},"id":"2401","arcs":[[11636,-2046,-10943,11637,11638,11639,11640,11641,11642,-2490,-7351,11643,11644,11645,-11646,11646,11647,11648,11649,11650,11651,-11650,-11649,11648,11652,11653,-11654,11653,11654,11654,-11654,11655,11656,11657,11658,11659,-11659,11658,11660,11661,11662,11663,11664,-11665,11664,11665,-11666,11665,11666,11667,11668,-11669,11669,11670,-11671,11671,11672,11673,11674,-11674,11675,11676,-11677,11676,11677,11678,11679,11680,-11681,11681,11682,-11683,11682,11683,11684,-11685,11684,11685,11686,11687,-11688,11688,11689,-11690,11689,11690,11691,-11692,11691,11692,11693,11694,11695,-11696,11695,11696,11697,-11698,11697,11698,11699,11700,11701,-11702,11701,11702,-9295,9293,-9293,-9292,9291,-9292,-9291,-9290,9288,-9288,-9287,-9286,9285,-9286,9285,-9286,-9285,9283,-9283,9281,-9281,9279,-9279,9278,-9279,-9278]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 23"},"id":"4823","arcs":[[11703,11704,-11705,11704,-11705,11705,11704,11706,-11705,11707,11708,11709,11710,11711,-7645,-10268,-6983,-6982,6981,-6982,-6981,6979,-7063,7061,-7061,7059,-7059,-7058,7056,-7057,-7056,7054,7053,-7054,-7053,7051,-7051,-7050,7048,-7048,-7047,7046,-7047,-7046,7044,-7044,7042,-7042,7040,-7040,7038,11712,11713,11714,11715,11716,11717,11717,11718,11719,11720,11721,11722,11723,11724,11725,11726,11727,11728,11728,11729,11730,-11731,11730,-11731,11731,11732,-7506,-7505,7504,-7505,-7504,7502,-7502,-7501,7499,-7500,-7499,7497,-7497,7495,7495,7494,-7494,7492,-7492,11733,11734]]},{"type":"Polygon","properties":{"stateid":"30","name":"Congressional District (at Large)"},"id":"3000","arcs":[[11735,-10129,10127,-10127,10125,-10125,11736,-6304,-8657,8655,-8655,8653,-8653,8651,-8651,8649,-8649,-8648,8647,-8648,-8647,8645,-8645,8643,-8643,8641,-8641,8639,-8639,8637,-8637,8635,-8635,8633,-8633,8631,-8631,8629,-8629,8627,-8627,8625,-8625,-8624,8623,-8624,-8623,8621,-8621,8619,-8619,8617,-8617,8615,-8615,8613,-8613,8611,-8611,8609,-8609,8607,-8607,-8606,8605,-8606,-8605,8603,-8603,8601,-8601,-8600,8598,-8598,-8597,8595,-8595,-8594,8593,-8594,-8593,8591,-8591,8589,-8589,8587,-8587,-8586,8585,-8586,-8585,-8584,8583,-8584,-8583,8581,-8581,-8580,8579,-8580,-8579,-8578,8577,-8578,-8577,-8576,8575,-8576,8574,-8574,8572,-8573,-8572,8570,8570,-8570,8568,-8568,5924,-5925,-5924,5922,-5922,5920,-5920,5918,-5918,5916,-5916,5914,-5914,5912,-5912,5910,-5910,-5909,5908,-5909,-5908,5906,5906,5906,-5906,-5905,5904,-5905,-5904,-5903,5902,-5903,-5902,5900,-5900,5898,-5898,5896,-5896,-5895,5894,-5895,-5894,5892,5892,-5892,5890,-5890,5888,-5888,5886,5886,-5886,5884,-5884,5882,-5882,5880,-5880,-5879,5878,-5879,-5878]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 4"},"id":"2604","arcs":[[7434,-7434,7432,7432,7432,-7432,-9382,-9032,-4870,-9388,9383,-9387,-9386,9385,-9386,-9385,-9384,-9383,-3202,-7436]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 3"},"id":"4203","arcs":[[11737,-8920,11738,11739,-11740,11739,11740,11741,-11742,11741,11742,11743,-11744,11743,11744,11745,-11746,11745,11746,11747,11748,11749,11750,11751,11752,11753,11754,11755,11756,-11753,11757,11758,11759,11760,11761,11762,11763,11764,11765,11766,11767,-11768,11767,11768,11769,11770,11771,11772,-11770,11773,11774,11775,-2815,-5176,5174,-5174,-5173,5171,-5172,-5171,5169,-5169,-10435,-5865,-3105]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 5"},"id":"4205","arcs":[[-11746,11745,-11746,-11745,-11744,11743,-11744,-11743,-11742,11741,-11742,-11741,-11740,11739,-11740,-11739,-8919,8917,-8917,8915,-8915,-8150,8148,-8148,-8147,8146,-8147,-8146,8144,8144,-8144,8142,-8142,8140,-8141,-8140,-8192,8190,-8190,-2834,-2833,2832,-2833,-2832,2830,-2830,2828,-2828,2826,2825,-2826,2825,-2826,-2825,-2824,-2823,2822,-2823,-2822,2820,-2820,2818,-2818,-2817,-2816,-11776,11774,-11774,11769,-11773,11771,-11771,-11770,-11769,-11768,11767,-11768,-11767,11765,-11765,11763,-11763,11761,-11761,11759,-11759,-11758,11752,-11757,-11756,11754,-11754,-11753,-11752,11750,-11750,11748,11747,-11747]]},{"type":"Polygon","properties":{"stateid":"49","name":"Congressional District 1"},"id":"4901","arcs":[[-8660,-8659,8658,-8659,-8658,-6302,-8500,-8499,11776,11777,11778,11779,-11780,11779,11780,11781,11782,11783,11784,-11784,11783,11785,11786,11787,11788,11789,11790,11791,11792,11793,11794,-11795,11794,11795,11796,11797,11798,-11799,11798,11799,11800,11801,11802,11803,11804,11805,11806,11807,-11808,11807,11808,11809,11810,11811,-11812,11811,11812,11813,11813,11814,11815,-11816,11815,11816,11816,11817,11818,11819,-1793]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 13"},"id":"4813","arcs":[[9970,-9970,-11572,-11571,11570,-11571,11570,-11571,11570,-11571,-11570,11568,-11568,-11567,11566,-11567,-11566,11564,11564,-11564,11562,11562,11562,11562,11562,11562,-11562,-11561,11560,-11561,11560,-11561,11560,-11561,-11560,-11559,11558,-11559,-11558,11556,-11556,11554,-11554,11552,-11552,-11550,11550,11549,-11550,-11549,11547,-11547,11545,-11545,11543,-11543,-11542,-11541,11540,-11541,-11540,11539,-11540,-11539,-11538,11537,-11538,-5763,5759,5761,5760,-5761,-5760,-5759,5757,5756,-5757,-5756,5754,-5754,-5752,5752,5751,-5752,-5751,-5749,5749,5748,-5749,-5748,5746,-5746,5744,-5744,5742,-5742,5740,5740,-5740,5738,-5738,5736,-5736,5734,-5735,-5734,-5733,-5732,5731,-5732,-5731,5729,-5730,-5729,5727,-5728,-5727,-5726,5724,-5725,-5724,5722,-5722,5720,-5720,5718,-5718,-5717,5716,-5717,-5716,5714,5714,-5714,5712,-5712,5708,-5711,-5706,5706,-5710,-5709,-5708,-5707,5705,-5706,-5705,5703,-5703,-5702,5700,-5700,-5699,5697,-5697,837,-838,-1064,11820,11821,11822,11823,11824,11825,-11826,11826,11827,11828,-11829,11829,11830,-11831,11831,11830,11832,11833,-11834,11833,11834,11835,11836,11837,11838,-10266,-10952,-9972]]},{"type":"Polygon","properties":{"stateid":"28","name":"Congressional District 2"},"id":"2802","arcs":[[1129,-1131,-1130,-1129,1127,-1127,1125,-1125,1123,-1123,1121,-1121,1119,-1119,1117,-1117,1115,-1115,1113,-1113,1111,-1111,1108,-1110,-1109,-1108,1106,-1106,-8446,8444,-8444,8440,-8443,-8442,-8441,-8440,-8439,8438,-8439,-8438,-8437,-8435,8434,-8436,-8435,-8434,8432,-8432,8430,-8430,8428,-8428,8426,-8426,8424,-8424,-8423,-8422,8420,-8420,-8419,8418,-8419,-8418,8416,-8416,8414,-8414,8409,-8413,8411,-8411,-8410,-8409,8407,-8407,8405,-8405,8399,-8404,8402,-8402,-8401,-8400,-8399,-8398,8396,-8396,8394,-8394,-11223,-11222,11221,-11222,-11221,-11220,11219,-11220,-11219,11217,-11217,11215,-11215,11211,-11214,11213,-11214,-11213,11210,11211,-11212,-11211,-11210,11208,11208,11208,-11208,-11528,11526,-11526,11524,-11524,11522,11522,-11522,11520,-11520,11519,-11520,-11519,-11518,11517,-11518,11517,-11518,-11517,11516,-11517,11516,-11517,11516,-11517,-11516,11514,-11514,11512,-11512,11510,-11510,11508,-11508,11506,-11506,11504,-11504,11502,-11502,11501,-11502,-11501,11500,-11501,-11500,11498,11498,-11498,11497,-11498,-11497,-11496,11495,-11496,-11495,11493,-11493,11491,-11491,11489,-11489,11487,-11487,11485,-11485,11484,-11485,-11484,11483,-11484,-11483,-11482,11481,-11482,-11481,-11480,11479,-11480,-11479,11477,-11477,-11476,11475,-11476,-11475,-11474,11473,-11474,-11473,11471,-11472,-11471,11469,-11470,11469,-11470,11469,-11470,-11469,11467,-11467,-1133,-1132]]},{"type":"Polygon","properties":{"stateid":"51","name":"Congressional District 5"},"id":"5105","arcs":[[-1536,1535,-1536,-1535,-1534,11839,11840,11841,11842,11843,11844,-11845,11844,11845,11846,11846,11846,11847,11848,11848,11849,11850,11851,-11852,11851,11852,11853,11854,11855,11856,11857,11858,11859,-11860,11859,11860,11861,11862,11863,-11864,11863,-11864,11863,11864,11865,-11866,11865,11866,11867,11868,11869,11870,11871,11871,11872,11873,-11874,11873,11874,11875,11875,11876,11877,-11878,11877,11878,11879,11880,11881,11882,11883,11884,11885,11886,11887,11888,-11889,11888,11889,11890,11891,11892,11893,11894,-11895,11894,11895,11896,11897,-11897,11896,11898,11899,-11900,11899,11900,11901,-11902,11901,11902,11903,-11904,11903,11904,11905,11905,11906,11907,11908,11909,-11910,11909,11910,11911,11912,11913,11913,11914,11915,11916,11917,11918,11919,11920,11921,11922,-11923,11922,11923,11924,-11925,11924,11925,11926,-11927,11926,11927,11928,-11929,11928,11929,11930,11931,11932,-2463,-2462,2460,-2460,-2459,11933,-7408,-7407,7406,-7407,-7406,7404,-7404,7402,-7402,-7401,7400,-7401,-7400,-7399,7397,-7397,7395,-7395,7393,7393,-7393,7391,-7391,7390,-7391,-7390,7388,-7426,-7425,7424,-7425,-7424,-7423,11242,-7422,-11242,-11241,11240,-11241,-11262,11260,-11260,-11259,11258,-11259,-11258,-11257,11256,-11257,-11256,-11254,11254,11253,-11254,-11253,-11252,11251,-11252,-11251,-11250,11249,-11250,11249,-11250,-11249,-11248,11247,-11248,-11247,11245,11245,11245,-11245,-19,-5178,-1552,-1551,1550,-1551,-1550,-1548,1548,1547,-1548,-1547,1545,-1545,1543,-1544,-1543,1539,-1542,-1541,-1540,-1539,-1538,1537,-1538,-1537]]},{"type":"Polygon","properties":{"stateid":"21","name":"Congressional District 5"},"id":"2105","arcs":[[-7189,7187,-7187,7185,-7186,-7185,7183,-7184,7183,-7184,-7183,7180,-7182,-7181,-7180,-7179,7178,-7179,7177,-7177,7175,-7175,-681,-680,679,-680,-679,677,677,-677,-676,675,-676,-675,673,673,-673,671,-671,669,-669,-668,667,-668,-667,665,-665,663,-663,661,661,-661,657,-658,657,659,658,-658,-657,-656,655,-656,-655,653,-653,652,-653,-652,-651,650,-651,-650,-649,648,-649,-648,646,-646,645,-646,645,-646,-645,-644,643,-644,642,-642,-640,638,640,-639,639,-640,638,-639,-638,-637,635,-635,633,-633,631,631,-631,629,-629,-628,627,-628,-627,625,-625,-624,623,-624,-623,-622,620,-620,618,-619,618,-619,-618,616,-616,615,-616,611,-615,614,-615,-614,609,-613,-612,-611,-610,-609,-608,607,-608,-607,-606,605,-606,-605,603,-603,-602,-7814,7812,-7812,7810,-7810,-7809,7808,-7809,-7808,7806,7805,-7805,7803,-7803,7801,7801,-7801,-7800,7799,-7800,-7799,-7798,7797,-7798,-7797,-7796,7795,-7796,-7795,-7794,7793,-7794,-7793,-7792,7791,-7792,-7791,7789,-7789,-7788,7787,-7788,-7787,-7786,7785,-7786,-7785,7784,-7785,7784,-7785,-7784,7782,-7782,-10718,-10717,10716,-10717,-10716,-10715,10714,-10715,10816,-10816,-10815,10814,-10815,-10814,10813,-10814,10812,-10812,10810,-10810,10808,-10808,10806,-10806,10804,-10804,10802,-10802,10796,-10797,10796,-10801,-10800,10798,-10799,-10798,-10797,-10796,10794,-10794,10792,-10792,10790,-10791,-10790,10788,-10789,-10788,10786,-10786,-10785,10784,-10785,-1471,-1470,1469,-1470,-1469,-1468,1467,-1468,-1467,1465,-1465,1463,-1463,-1462,1461,-1462,-1461,1459,-1459,1457,-1458,1457,-1458,-1457,-1456,-1455,1454,-1455,-1454,-3958,-11461,-10282,-10281,-10280,10279,11934,11935,-11936,11936]]},{"type":"Polygon","properties":{"stateid":"49","name":"Congressional District 2"},"id":"4902","arcs":[[-1794,-11820,11818,-11818,11816,11816,-11816,11815,-11816,-11815,11813,11813,-11813,-11812,11811,-11812,-11811,11809,-11809,-11808,11807,-11808,-11807,11805,-11805,11803,-11803,11937,11938,11939,11940,-11941,11940,11941,11942,11942,11943,11944,11945,11946,11947,-11948,11947,11948,11949,11950,11951,-11950,11952,11949,-11952,11953,11954,-11955,11955,11954,11956,11957,-11958,11957,11958,11959,11960,11961,11962,11963,11964,11965,11966,11967,11968,11969,11970,11971,11972,11973,11974,11975,11976,11977,11978,11979,-11980,11979,11980,11981,11982,11983,11984,11985,11986,11987,11988,11989,11990,11991,-11990,11992,11993,-11994,11993,11994,-11195,-11194,-4627,-1759]]},{"type":"Polygon","properties":{"stateid":"18","name":"Congressional District 6"},"id":"1806","arcs":[[11995,-8550,-8549,-4624,-6979,-1838,1836,-7768,-11466,-11465,11464,-11465,-11464]]},{"type":"MultiPolygon","properties":{"stateid":"21","name":"Congressional District 1"},"id":"2101","arcs":[[[-11459,11457,-11457,-9183,-9182,-9181,-9180,9179,-9180,-9179,11996,11997,-11998,11997,11998,11999,-12000,11999,-12000,11999,12000,12001,12002,12003,12004,12005,12006,12007,12008,9257,-9258,-9257,9255,-9255,9253,-9253,-9252,9251,-9252,-9251,9250,-9251,-9250,9248,-9248,-7142,-7276,7274,-7274,-7273,7272,-7273,-7272,-7271,7270,-7271,-7270,-7269,7268,-7269,-7268,7267,-7268,7266,-7266,-7265,7263,-7263,7261,-7261,7259,-7259,7257,-7257,-7256,7254,-7255,-7254,-7253,7252,-7253,7252,-7253,-7252,7250,-7250,7248,-7248,-7247,7246,-7247,-7246,7244,-7244,7243,-7244,7243,-7244,-7243,7242,-7243,-7242,-7241,7240,-7241,-7240,7238,-7238,-7237,7236,-7237,-7236,7235,-7236,-7234,7234,7233,-7234,-7233,7231,-7232,-7231,-7228,-7230,-7229,7226,7227,-7228,-7227,-7226,7224,-7224,7222,-7222,7220,-7220,7218,-7218,7216,-7216,-7215,7214,-7215,-7214,7212,-7212,7210,7210,-7210,7208,-7208,7206,-7206,7204,-7204,-7202,7202,7201,-7202,-7201,-7200,7199,-7200,-7199,-7198,7197,-7198,-7197,-7196,7195,-7196,7195,-7196,-7195,7194,-7195,-7194,-7193,7192,-7193,-7192,7190,7190,-7190,-11937,11935,-11936,-11935,-10280,10279,-10280,-10279,-11317,-7680]],[[-7678,7676,-11460]]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 3"},"id":"1203","arcs":[[-6822,6821,-6822,-6821,-6820,6819,-6820,-6819,-11456,-3331,-7278,-5394,5392,-5392,-5391,-3066,-3065,5389,-5390,3064,-3065,3064,-5389,5387,-5387,-5386,-5385,5384,-5385,-5476,5474,5474,-5474,5472,-9791,-9790,9789,-9790,-9789,-9788,9787,-9788,-9787,9785,9785,-9785,9783,-9783,9781,9781,-9781,12009,-6831,6829,-6829,6827,-6827,6825,-6825,-6824,6823,-6824,-6823]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 1"},"id":"4801","arcs":[[12010,12011,12012,-12013,12012,12013,12014,12014,12015,-12016,12015,12016,12017,-12018,12018,-12019,12018,12019,12020,-12021,12021,12022,12023,12024,12025,-12025,12026,12024,12027,12028,12029,12030,-12031,12030,12031,-1026,1024,-1024,1022,-1022,-1021,1020,-1021,-1020,-1019,1018,-1019,-1018,1014,-1015,1014,-1015,1014,1015,-1016,1015,1016,-1016,-1015,-1014,-1013,1012,-1013,-1012,1011,-1012,-1011,-1010,1009,-1010,-1009,1007,-1007,-1006,1005,-1006,-1005,1003,1003,-1003,1001,-1001,-1000,999,-1000,-999,997,-997,993,995,995,994,-994,-993,991,-991,-11193,-11192,11191,-11192,-11191,-11190,11189,-11190,-11189,-11188,11184,11186,-11187,11185,-11185,-11184,-11183,11182,-11183,-11182,11180,-11180,11178,-11178,11176,-11176,-11175,11173,-11174,11173,-11174,-11173,-11172,11170,-11171,-11170,-11169,11168,-11169,-11168,11166,-11166,11164,-11165,-11164,-11163,11162,-11163,11161,-11161,-11159,11159,11158,-11159,-11158,11156,-11156,11154,-11154,11152,-11152,-7912,-7911,7910,-7911,-7910,-7909,7908,-7909,7908,-7909,7908,-7909,-7908,7906,-7906,7904,-7904,-7903,7902,-7903,7902,-7903,-7902,7901,-7902,-7901,7899,-7899,-7898,7897,-7898,-7897,-7896,7895,-7896,-7895,-7894,7892,7893,-7894,7892,-7892,-7891,7890,-7891,-7890,7888,7888,7888,7888,7888,-7888,-7887,7886,-7887,-7886,-2368,2367,-2368,2367,-2368,-2367,2365,-2365,-2364,2362,-2363,-2362,-2361,2360,-2361,-2360,-2359,2358,-2359,-2358,-2357,2356,-2357,-2356,2354,-2354,-2353,2352,-2353,2352,-2353,-2352,-2351,2350,-2351,-2350,-2349,2348,-2349,-2348,-2347,2346,-2347,-2346,12032,12033,-12034,12033,12034,12035,12036,-12037,12036,12037,12038,-12039,12038,-12039,12038,12039,12040,-12041,12040,12041,12042,-12043,12042,-12043,12042,12043,12044,-12045,12044,12045,12046,-12047,12046,12047,-12048,12047,12048,12049,-12050,12049,12050,12051,12052,12053,-12054,12053,12054,12055,-12056,12055,12056,-12057,12056,12057,12058,-12059,12058,12059,12060,-12060,12059,-12060,12061,12062,12062,12063,12064,12065,12066,-12067,12066,-12067,12066,12067,12068,-12069,12068,12069]]},{"type":"Polygon","properties":{"stateid":"46","name":"Congressional District (at Large)"},"id":"4600","arcs":[[-11737,-10124,-11275,12070,-11597,-11596,11595,-11596,-11595,11593,-11593,11591,-11591,11589,-11589,-11588,11587,-11588,-11587,11585,-11585,11583,-11584,-11583,-11582,11581,-11582,-11581,11579,-11580,-11579,11578,-11579,-11578,11576,-11577,-11576,-11575,11574,-11575,-11574,-11573,11572,-11573,-11623,-11622,11621,-11622,-11621,-11620,11619,-11620,-11619,11618,-11619,11617,-11618,-11617,-11615,11615,-11616,11614,-11615,-11614,-11613,11612,-11613,-11612,-11611,11610,-11611,-11610,11609,-11610,-11609,-11628,11626,-11626,11624,-11624,-6296]]},{"type":"Polygon","properties":{"stateid":"51","name":"Congressional District 6"},"id":"5106","arcs":[[1531,-1531,-1530,1529,-1530,-1529,1527,-1527,1525,-1525,1523,-1523,-1522,1521,-1522,1521,-1522,-1521,1519,-1519,1517,-10784,-10783,10782,-10783,-10782,10780,-10780,-10779,10778,-10779,-10778,10776,-10776,-10775,10774,12071,12072,-12073,12072,12073,12074,-12075,12074,-12075,12074,12075,12076,12077,12078,12079,12080,12081,12082,12083,12084,12085,12086,-12087,12087,12088,12089,12090,-12091,12090,12091,12092,12093,12094,12095,-12096,12096,12097,12098,12099,12100,-11930,-11929,11928,-11929,-11928,-11927,11926,-11927,-11926,-11925,11924,-11925,-11924,-11923,11922,-11923,11921,-11921,11919,-11919,11917,-11917,11915,-11915,11913,11913,-11913,11911,-11911,-11910,11909,-11910,-11909,11907,-11907,11905,11905,-11905,-11904,11903,-11904,-11903,-11902,11901,-11902,-11901,-11900,11899,-11900,-11899,-11897,11896,11897,-11897,-11896,-11895,11894,-11895,-11894,11892,-11892,11890,-11890,-11889,11888,-11889,11887,-11887,11885,-11885,11883,-11883,11881,-11881,11879,-11879,-11878,11877,-11878,-11877,11875,11875,-11875,-11874,11873,-11874,-11873,11871,11871,-11871,11869,-11869,11867,-11867,-11866,11865,-11866,-11865,-11864,11863,-11864,11863,-11864,-11863,11861,-11861,-11860,11859,-11860,-11859,11857,-11857,11855,-11855,11853,-11853,-11852,11851,-11852,-11851,11849,11848,11848,-11848,11846,11846,11846,-11846,-11845,11844,-11845,-11844,11842,-11842,11840,-11840,1533,-1534,-1533]]},{"type":"Polygon","properties":{"stateid":"37","name":"Congressional District 7"},"id":"3707","arcs":[[6515,11064,-11064,11062,-11062,11060,-11060,-11059,11058,-11059,-11058,11056,-11056,11054,-11054,11052,-11052,11050,-11050,11048,11048,11048,11048,-11048,11046,-11046,11044,-11044,-11043,11042,-11043,-11042,-11041,11040,-11041,-11040,-11133,-11132,11131,-11132,-11131,-11130,11129,-11130,-11129,11127,-11127,11125,-11125,-11124,11123,-11124,11123,-11124,-11123,11121,-11121,-11120,-201,-11119,-11118,11117,-11118,-11117,-11116,11115,-11116,-11115,11113,-11113,11111,-11111,-185,183,-183,181,-181,179,-179,177,-177,175,-175,173,-173,-294,292,-293,292,-293,-292,290,-291,-290,-289,288,-289,288,-289,288,-289,288,-289,-288,286,-340,-339,338,-339,-338,-337,336,-337,-336,-335,334,-335,-334,332,-332,-331,330,-331,-330,-329,328,-329,327,-328,327,-328,-327,325,-326,325,-326,324,-324,-323,321,-321,319,319,318,-318,-317,316,-317,-316,314,-314,312,-312,-311,309,-308,307,308,-309,-308,-307,-306,305,-306,-305,303,-303,-302,301,-302,-301,299,-299,297,12101,9671,-9672,-9671,-6559,6558,-6559,-6558,6556,-6556,-6555,6554,-6555,-6554,6553,-6554,-6553,6552,-6553,-6552,6550,-6550,-6549,6548,-6549,-6548,-6547,6546,-6547,-6546,6544,-6544,-6543,6542,-6543,-6542,6540,-6540,-6539,6538,-6539,-6538,6536,-6536,-6535,6534,-6535,-6534,-6531,6532,6530,-6532,-6531,-6530,6528,-6528,6526,-6526,6524,-6524,-6523,6522,-6523,-6522,6521,-6522,-6521,6520,-6521,-6520,-6519,6518,-6519,-6518,6517,-6518,-6517,-6516]]},{"type":"Polygon","properties":{"stateid":"54","name":"Congressional District 2"},"id":"5402","arcs":[[10454,-10455,-10454,10452,-10452,-10451,12102,12103,12104,12105,12106,12107,12108,-12106,12109,12110,-12111,12110,12111,12112,-12113,12112,-12113,12112,12113,12114,12115,12116,12117,12118,-12119,12119,12120,12121,12122,12123,12124,12125,12126,12127,-12128,12127,12128,12129,12130,12131,12132,12133,-12134,12133,12134,12135,12136,12137,-12138,12137,12138,12139,12140,12141,12142,12143,12144,12145,-12146,12145,12146,12147,12148,12149,12150,12151,12152,12153,12154,12155,12156,12157,-12158,12158,12159,12160,12161,-12160,12162,12163,12164,12165,12166,12167,-12168,12168,12169,12170,12171,12172,-12173,12173,12174,12175,-12176,12176,12177,12178,12179,12180,12181,-12182,12181,12182,-12087,-12086,12084,-12084,12082,-12082,12080,-12080,12078,-12078,12076,-12076,-12075,12074,-12075,12074,-12075,-12074,-12073,12072,-12073,-12072,-10775,-10774,10772,-10772,10770,-10770,10768,-10768,10763,-10767,10765,-10765,-10764,-10763,10761,-10761,10759,10759,10759,-10759,10757,10757,10757,-10757,10755,-10755,10753,-10753,-10752,10751,-10752,-10751,-10750,10749,-10750,-10749,10747,-10747,-10746,10745,-10746,-10745,10743,-10743,-10742,10741,-10742,-10741,-10740,10739,-10740,-10739,10737,10736,10736,-10736,-10735,10734,-10735,10734,-10735,-10734,10732,-10732,10726,-10731,-10729,10728,10729,-10730,-10729,-10728,-10727,-10726,10724,-10724,10722,-10722,-10721,10720,-10721,-10720,10719,-10720,-10719]]},{"type":"Polygon","properties":{"stateid":"19","name":"Congressional District 1"},"id":"1901","arcs":[[12183,-10821,10819,-10819,-4211,-10272,10270,-10270,-11599]]},{"type":"Polygon","properties":{"stateid":"51","name":"Congressional District 10"},"id":"5110","arcs":[[-12183,-12182,12181,-12182,-12181,12179,-12179,12177,-12177,12175,12184,12185,12186,12187,12188,-9327,-9326,-9325,9324,-9325,-9324,-9323,9322,-9323,-9322,-6567,6566,-6567,6566,-6567,6566,-6567,-6566,6564,-6564,449,-450,-449,447,-447,-446,445,-446,-445,-444,443,-444,-443,441,-441,439,439,439,439,439,439,-439,437,-437,435,-436,-435,-433,433,-434,432,-433,-432,-430,429,430,-430,-492,-490,489,490,-491,-490,-489,-488,486,-486,484,-485,-484,-483,481,-481,-479,479,478,-479,-478,459,461,-477,475,-476,475,-2484,2482,2481,-2481,2479,2478,-2478,-2477,2476,-2477,2475,-2475,-2474,2473,-2474,-2473,2469,-2472,2471,-2472,-2471,-2470,-2469,-2468,2467,-2468,2466,-2466,-2465,2462,2463,-2464,-2463,2462,-11933,11931,-11931,-12101,12099,-12099,12097,-12097,12095,-12096,-12095,-12094,12092,-12092,-12091,12090,-12091,-12090,12088,-12088,12086]]},{"type":"Polygon","properties":{"stateid":"31","name":"Congressional District 1"},"id":"3101","arcs":[[-11607,-11606,11604,-11604,11602,-11602,11600,-11600,-8671,8669,-8669,-9593,-9592,9591,-9592,-9591,9589,-9590,-9589,-9588,9587,-9588,-9587,-8664,-10245,-10244,-10243,10241,-11636,10243,-11635,11633,-11633,-11632,11631,-11632,-11631,-11630,11629,-11630,-11629]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 14"},"id":"1714","arcs":[[10360,-10360,10358,10358,-10358,-5005,12189,12190,-12191,12190,12191,12192,12193,12194,-12195,12194,12195,12196,12197,12198,-12199,12198,12199,12200,-12201,12200,-12201,12201,12202,-12203,12203,12204,12205,12206,-12207,12206,12207,12208,-12209,12208,12209,12210,12211,-10362]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 15"},"id":"1715","arcs":[[-10930,10928,-10928,-10927,10926,-10927,-10926,10924,-10924,-10327,-10369,10367,-10367,-10467,-9230,-9229,9228,-9229,-9228,-9227,9226,-9227,-9226,-9225,9224,-9225,-9224,9222,-9222,9221,-9222,-9221,9219,-9219,9217,-9217,-9216,9215,-9216,-9215,9213,-9213,9211,-9211,9209,-9209,9207,-9207,9205,-9205,9203,-9204,-9203,-9202,9200,-9200,9198,9197,-9259,-9258,-12009,12007,-12007,12005,-12005,12003,-12003,12001,-12001,-12000,11999,-12000,11999,-12000,-11999,-11998,11997,-11998,-11997,-9178,-9177,9176,-9177,-9176,-9175,9174,-9175,-9174]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 6"},"id":"1706","arcs":[[-12197,12212,12213,12214,12215,12216,12217,12218,12219,12220,12221,-12220,12222,12223,12224,12225,-12226,12225,12226,12227,-12228,12227,12228,12229,12230,12231,12232,12233,12234,12235,12236,12237,12238,12239,-12240,12239,12240,12241,12242,12243,-12244,12244,12245,12246,-12247,12246,12247,12248,12249,12250,12251,-12252,12251,12252,12253,12254,-12255,12254,12255,12256,12257,12202,-12203,-12202,12200,-12201,12200,-12201,-12200,-12199,12198,-12199,-12198]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 10"},"id":"1710","arcs":[[12192,-12192,-12191,12190,-12191,-12190,-5004,12258,12259,12260,12261,-12262,12261,12262,12263,12264,12265,-12266,12265,12266,12267,-12268,12268,12269,-12270,12269,12270,-12213,12196,-12197,-12196,-12195,12194,-12195,-12194]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional Districts not defined"},"id":"17ZZ","arcs":[[-5003,12271,12272,12273,12274,12275,12276,12277,12278,12279,12280,12281,12282,-12283,12282,12283,12284,12285,-12286,12285,12286,12287,12288,12289,12290,-12291,12290,12291,12292,12293,-12260,-12259]]},{"type":"Polygon","properties":{"stateid":"54","name":"Congressional District 1"},"id":"5401","arcs":[[-10447,10446,-10447,-10446,10444,-10444,10442,-10442,-10441,10440,-10441,-10440,-10439,10438,-10439,-10438,10436,-10436,-5177,-5141,-2857,12294,12295,-12296,12295,12296,12297,-12298,12297,12298,12299,-12300,12299,12300,12301,-12302,12301,12302,12303,-12304,12303,12304,12305,12306,12307,12308,12309,-12310,12310,12311,12312,12313,-12312,12314,12315,12316,12317,12318,12309,12319,12320,-12321,12320,12321,12139,-12140,-12139,-12138,12137,-12138,-12137,12135,-12135,-12134,12133,-12134,12132,-12132,12130,-12130,12128,-12128,12127,-12128,-12127,12125,-12125,12123,-12123,-12122,12120,-12120,12118,-12119,-12118,12116,-12116,12114,-12114,-12113,12112,-12113,12112,-12113,-12112,-12111,12110,-12111,-12110,12105,-12109,12107,-12107,-12106,-12105,12103,-12103,10450,-10451,-10450,-10449,10448,-10449,-10448]]},{"type":"Polygon","properties":{"stateid":"27","name":"Congressional District 1"},"id":"2701","arcs":[[-11274,-11273,11272,-11273,-11272,-11271,11269,-11270,-11269,11268,-11269,-11268,-11267,11266,-11267,-11266,11264,-11264,-5794,5792,-5792,5790,-10824,10822,-10822,-12184,-11598,-12071]]},{"type":"Polygon","properties":{"stateid":"22","name":"Congressional District 3"},"id":"2203","arcs":[[-7984,-7983,-7982,-7981,7979,-7980,-7979,-7978,-7977,7976,-7977,7976,-7977,-7976,7974,-7974,7972,-7972,7970,-7970,-7969,7968,-7969,-7968,-7966,7965,7966,-7966,7964,-7964,7962,-7962,-7961,7960,-7961,7960,-7961,-7960,7958,-7958,-7957,7956,-7957,-7956,-7955,-11151,11144,-11150,11148,-11148,11146,-11146,-11145,11144,-11145,-11144,11142,-11142,1238,-1239,-1238,-1236,1236,1235,-1236,-1235,1233,-1233,-8913,8911,-8911,-8910,8909,-8910,-8909,8907,-8907,-8753,-8752,8750,-8750,8748,-8821,12322,12323]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 27"},"id":"1227","arcs":[[12324,12325,12326,12327,12328,12329,12330,-12331,12330,12331,12332,12333,12334,12335,-10938,10936,-10937,-10936,-10935,10934,-10935,-10934]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 24"},"id":"1224","arcs":[[12336,12337,-12338,12337,12338,-12334,12332,-12332,-12331,12330,-12331,-12330,12339,-12340,12339,12340,12341,12342]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 23"},"id":"1223","arcs":[[12343,12344,12345,12346,12347,12348,-12349,12348,12349,-12347,12350,12351,-12352,12351,-12352,12351,12352,12353,-12335,-12339,-12338,12337,-12338,-12337,12354]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 25"},"id":"1225","arcs":[[3569,-3569,-3556,12355,-12355,-12343,12341,-12341,-12340,12339,-12340,-12329,12327,-12327,12325,-12325,-10933,10931,-10931,12356,12357,-3575,3573,-3573,3571,-3571]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 19"},"id":"0619","arcs":[[12358,12359,-12359,12358,-12359,12358,12360,12361,-8098,-8127,-8126,8125,-8126,-8125,-8124,8123,-8124,-8123,-2083,-2082,2080,-2137,-4320,-4319,-4318,-4317,4315,-4316,-4315,-4314,4312,-4312,4310,-4310,4308,-4309,-4308,-4307,4305,-4305,4303,4303,-4303,-4302,4301,-4302,-4301,4299,-4299,-4282,-4281,4279,-4279,-4278,4277,-4278,-4277,4275,-4275,4273,-4273,4271,12362]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 17"},"id":"0617","arcs":[[-8110,8108,-8108,8107,-8108,8107,-8108,-8107,8105,8105,-8105,-8104,8103,-8104,-8103,-8102,8101,-8102,-8101,-8100,8099,-8100,-8099,-12362,12360,-12359,12358,-12359,12358,12359,-12359,-12363,-4272,-4271,4269,-4269,4267,-4267,-4266,4265,-4266,-4265,12363]]},{"type":"Polygon","properties":{"stateid":"09","name":"Congressional District 1"},"id":"0901","arcs":[[-4058,-9669,-2246,-2245,-2242,2243,-2244,2242,2241,-2242,-2241,2239,2238,2238,2238,-2238,-2309,2307,-2307,2305,-2305,2303,-2303,2301,-2301,2299,-2299,-2298,2297,-2298,-2297,2295,-2295,2293,-2293,2291,-2291,2289,-2289]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 6"},"id":"1306","arcs":[[12364,-12365,12364,12365,12366,12367,-12368,12367,12368,12369,12370,12371,12372,-4579,4577,-4577,-4576,4575,-4576,-4575,4574,4575,-4576,-4575,12373,12374,12375,12376,12377,12378,12379,12380,12381,-12382,12381,12382,12383,-12384,12383,12384,12385]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 11"},"id":"1311","arcs":[[-5378,5377,-5378,-5377,5375,-5375,-6251,6249,-6249,6247,12386,-12366,-12365,12364,-12365,-12386,12384,-12384,12383,-12384,-12383,-12382,12381,-12382,-12381,12379,-12379,12377,-12377,-12376,12375,-12376,-12375,12387,12388,12389,12390,12391,-2980,2978,-2978,-5381,-5380,5379,-5380,-5379]]},{"type":"Polygon","properties":{"stateid":"53","name":"Congressional District 3"},"id":"5303","arcs":[[12392,12393,12394,12395,12396,12397,-12398,12397,12398,12399,-12400,12399,12400,-6157,-6156,6155,-6156,-6155,-6154,6153,-6154,-6153,6151,-6152,-6151,-6150,6149,-6150,6148,-6148,6146,-6146,-6145,6144,-6145,-6144,-6143,6142,-6143,-6142,6140,-6140,-6139,6138,-6139,-6138,-9161,-6871,6869,-6869,-4494,-4493,-1432,-1431,-1430,1429,-1430,-1429,1427,-1427,12401]]},{"type":"Polygon","properties":{"stateid":"29","name":"Congressional District 2"},"id":"2902","arcs":[[-6755,6754,-6755,-6754,6752,6752,-6752,-6751,6750,-6751,-6750,6745,-6749,-6748,6747,-6748,6747,-6748,-6747,-6746,-6745,-6744,6743,-6744,-6743,6742,-6743,-6742,6741,-6742,-6741,-6734,6739,6734,-6739,6737,-6737,-6736,-6735,6734,-6735,6733,-6734,-6733,6731,-6731,6730,12402,12403,-12404,12404,12405,12406,12407,12408,-12409,12408,12409,12410,-12411,12411,12412,12413,12414,-12415,12414,-12415,12415,12416,12416,12417,12418,-12419,12418,12419,9162,-9163,-9162,6771,-6772,-6771,-6770,6769,-6770,-6769,6767,6767,-6767,-6766,6765,-6766,-6765,6763,-6764,-6763,-6762,6761,-6762,-6761,6759,-6759,-6757,6757,6756,-6757,-6756]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 8"},"id":"1208","arcs":[[-9267,9266,-9267,-9266,12420,-3071,12421,12422,-3553,-9272,-9271,9270,-9271,-9270,-9269,9268,-9269,-9268]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 18"},"id":"3618","arcs":[[-11315,11314,-11315,-11314,-11313,11312,-11313,11312,-11313,-11312,11310,-11310,-11309,11308,-11309,-11308,-11307,11306,-11307,-11306,11304,-11304,-11303,11302,-11303,-11302,-11301,-11300,-11299,11298,-11299,-11298,11296,-11296,-11295,11293,-11294,-11293,11291,-11291,-2310,-2271,-2270,2269,12423,12424,-12425,12424,12425,12426,12427,12428,12428,12429,12430,-8167,-8166,8165,-11316]]},{"type":"Polygon","properties":{"stateid":"25","name":"Congressional District 3"},"id":"2503","arcs":[[-9142,9140,-9140,-9108,-9107,9105,-9105,12431,12432,-12433,12432,12433,12434,12435,12436,12437,12438,12439,12440,12441,-12442,12441,12442,12443,-12444,12443,12444,12445,12446,12447,12447,12447,12448,-4077,-4076,4075,-4076,-4075,4073,4072,-4073,-4072,4070,-4070,4068,-4069,-4068,-4067,4066,-4067,-4066,-4065,4064,-4065,-4064,-4063,4062,-4063,-4062]]},{"type":"Polygon","properties":{"stateid":"25","name":"Congressional District 5"},"id":"2505","arcs":[[-12449,12447,12447,12447,-12447,12445,-12445,-12444,12443,-12444,-12443,-12442,12441,-12442,-12441,12449,12450,12451,12452,12453,12454,12455,-12456,12455,12456,12457,-12458,12457,12458,12459,12460,12461,12462,12463,12464,12465,12466,12467,12468,12469,12470,-352,351,-352,351,-352,351,-352,-351,349,-349,347,-347,-346,344,-345,344,-345,-344,342,-343,342,-343,-342,340,-4079,-4078]]},{"type":"Polygon","properties":{"stateid":"25","name":"Congressional District 7"},"id":"2507","arcs":[[351,-352,351,-352,351,-12471,12469,-12469,12467,-12467,12465,-12465,12463,-12463,12461,-12461,-12460,12471,-427,425,-425,423,-423,-422,420,420,-420,-419,418,-419,-418,416,-416,409,-415,413,-413,411,-411,-410,-409,407,-407,-406,-357,-356,354,-354,-353]]},{"type":"Polygon","properties":{"stateid":"25","name":"Congressional District 6"},"id":"2506","arcs":[[12438,-12438,12436,-12436,12434,-12434,-12433,12432,-12433,-12432,-9104,9102,-9102,12472,-428,-12472,-12459,-12458,12457,-12458,-12457,-12456,12455,-12456,-12455,12453,-12453,12451,-12451,12449,-12440]]},{"type":"Polygon","properties":{"stateid":"34","name":"Congressional District 1"},"id":"3401","arcs":[[3468,-10941,-2974,-2973,-2908,-2907,-2906,12473,12474,12475,12476,-12477,12476,12477,12478,-12479,12478,-12479,12478,12479,-12480,12479,12480,-3488,-3487,3485,-3485,3483,-3483,3481,-3481,3479,-3479,-3478,3477,-3478,-3477,3475,-3475,-3474,3473,-3474,3473,-3474,3473,-3474,-3473,3472,-3473,-3472,3470,-3470,-3469]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 4"},"id":"4204","arcs":[[-2854,-8203,8201,-8201,-8199,8199,8198,-8199,-8198,8197,8198,-8199,-8198,-8197,8195,-8195,8193,-8193,-2071,-2070,-1987,-2051,-2050,2049,-2050,-2049,2047,-2047,-11637,-9277,-2855]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 15"},"id":"4815","arcs":[[-7534,7533,-7534,-7533,-7532,7531,-7532,-7531,7529,7528,-7528,7526,-7526,-7525,7524,-7525,-7524,7523,-7524,7523,-7524,-7523,7521,-7520,7520,7519,-7520,-7519,7517,-7517,7515,-7515,-7514,-7513,7512,-7513,12481,12482,12483,12484,12485,12486,12487,12488,-12489,12489,12490,-12491,12491,12492,12493,12494,12495,-12496,-12495,12494,12495,-12496,12495,12496,5552,-5553,-5552,5550,-5550,5549,-5550,-5549,5548,-5549,5548,-5549,5548,-5549,5548,-5549,-5548,5546,-5546,5545,-5546,-5545,-5544,-5635,5633,-5633,-5632,5631,-5632,-5631,-5630,5629,-5630,-5629,5628,-5629,-5628,-5627,5626,-5627,-5647,5643,5645,5644,-5645,-5644,-5643,-5642,-5641,5640,-5641,-5640,-5639,5638,-5639,5638,-5639,5637,-5637,12497,12498,-7539,7537,-7537,-7536,7535,-7536,-7535]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 13"},"id":"0613","arcs":[[12499,12500,12501,12502,12503,12504,-12505,12504,12505,8085,-8086,-8085,-8084,8083,-8084,8083,-8084,-8083,-8082,8081,-8082,-8081,8076,8078,8079,-8079,8078,-8079,8077,-8077,-8076,-8075,8074,-8075,8074,-8075,-8074,12506,12507]]},{"type":"MultiPolygon","properties":{"stateid":"06","name":"Congressional District 14"},"id":"0614","arcs":[[[12508,12509,12510,12511,12512,-12513,12513,-12514,12513,12514,12515,-12507,-8111,-12364,-4264,4262,-4262,4260,-4260,-4259,4258,-4259,4258,-4259,-4258,-4257,4256,-4257,4256,-4257,4256,-4257,4255,-4255,-4254,4253,-4254,-4253,4251,-4251,-4250,4249,-4250,4248,-4248,-4247,4245,-4245,-4244,4243,-4244,4243,-4244,-4243,4241,-4241,12516]],[[12517]]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 12"},"id":"0612","arcs":[[12518,12519,12519,12520,12521,12522,12523,-12522,12524,-12508,-12516,-12515,-12514,12513,-12514,12512,-12513,12511,-12511,12509,-12509,12525]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 18"},"id":"1218","arcs":[[-12423,12526,12527,12528,-12529,12529,12530,12531,12532,12533,12534,12535,12536,12537,12538,12539,-3554]]},{"type":"Polygon","properties":{"stateid":"55","name":"Congressional District 4"},"id":"5504","arcs":[[-10206,10204,-10204,-10203,10202,-10203,-10202,-10201,10200,-10201,-10200,-10199,10198,-10199,-10198,10196,-10196,-3227,-5001,4999,-4999,4997,-9658,9656,-9657,-9656,9654,-9654,9652,9651,9652,9651,-9651,9649,-9649,-9647,9646,9647,-9647,9645,-9645]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 5"},"id":"4805","arcs":[[12540,12541,12542,12543,12544,12545,12546,12547,-12547,12546,-12547,12548,12549,12550,12551,-12551,12550,-12551,12552,12553,-12554,12553,12554,12555,12556,12557,12558,-1044,-1043,1042,-1043,-1042,1041,-1042,-1041,1039,1039,1039,1039,1039,-1039,1037,1037,-1037,1035,-1035,1034,-1035,1034,-1035,1034,-1035,-1034,-1033,1032,-1033,-1032,-1031,1030,-1031,1029,1029,1029,-1029,-1028,1027,-1028,-1027,-12032,-12031,12030,-12031,-12030,12028,-12028,-12025,12026,12024,12025,-12025,-12024,12022,-12022,12020,-12021,-12020,-12019,12018,-12019,12017,-12018,-12017,-12016,12015,-12016,12014,12014,-12014,-12013,12012,-12013,-12012,12010,-12070,-12069,12068,-12069,-12068,-12067,12066,-12067,12066,-12067,-12066,12064,-12064,12062,12062,-12062,12059,-12060,12059,12060,-12060,-12059,12058,-12059,-12058,-12057,12056,-12057,-12056,12055,-12056,-12055,-12054,12053,-12054,-12053,12051,-12051,-12050,12049,-12050,-12049,-12048,12047,-12048,-12047,12046,-12047,-12046,-12045,12044,-12045,-12044,-12043,12042,-12043,12042,-12043,-12042,-12041,12040,-12041,-12040,-12039,12038,-12039,12038,-12039,-12038,-12037,12036,-12037,12035,-12035,-12034,12033,-12034,-12033,-2345,2343,-2343,-2342,2341,-2342,-2341,-2340,2339,-2340,-2339,2337,-2337,-2336,2335,-2336,-2335,-2334,2333,-2334,-2333,-11358,11356,-11356,11355,-11356,11354,-11354,-11353,-11352,11350,-11350,-11347,-11349,-11348,11345,11346,-11347,-11346,-11345,-11344,11343,-11344,-11343,-11342,11341,-11342,11341,-11342,-11341,11339,-11339,-11338,11337,-11338,-11337,11336,-11337,-11336,-11335,11334,-11335,-11334,11332,11331,-11332,-11331,-11330,-8746,-8745,-8744,8743,-8744,8742,-8742,8740,-8740,8736,8738,8737,-8737,-8736,-8735,8734,-8735,-8734,8732,-8733,-8732,-8731,8730,-8731,8730,-8731,-8730,8728,-8728,-8727,8726,-8727,8726,-8727,8726,-8727,-8726,-8725,8724,-8725,8724,-8725,-8724,-8723,8722,-8723,-8722,-8721,8720,-8721,8720,-8721,-8720,8718,-8718,8716,-8716,8714,-8714,-8713,8712,-8713,-8712,8711,-8712,-8711,12559,12560,-12561,12560,12561,12562,12563,12564,-12565,12565,12564,12566,12567,-12568,12567,12568,12569,12569,12570,12571,12572,12573,12574,-12574,12575,12573,12576]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 23"},"id":"0623","arcs":[[-2170,2169,-2170,2169,-2170,2169,-2170,-2169,-2168,-2167,2165,-2165,2163,-2163,-2162,2160,-2161,-2160,2158,-2158,2156,-2156,-2155,2154,-2155,-2154,2152,-2152,-2151,-2221,-2220,2219,-2220,-2219,2217,-2217,-6287,-3852,3850,-3850,-3849,3848,-3849,-3848,3846,-3846,-3845,3844,-3845,3844,-3845,-3844,3842,-3842,-3841,3840,-3841,-3840,3838,-3838,3836,3836,-3836,12577,12578,12579,12580,12581,12582,12583,12584,-2171]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 5"},"id":"0605","arcs":[[-8356,8355,-8356,-8355,-8354,8353,-8354,-8353,-8352,8351,-8352,8351,-8352,8351,-8352,8351,-8352,-8351,8349,-8349,-8348,8347,-8348,-8347,-8346,8345,-8346,8344,8344,-8344,-8343,8342,-8343,-8342,-8341,8340,-8341,-8340,-8339,8338,-8339,-8338,-8337,8336,-8337,-8336,8334,8334,-8334,-8333,8332,-8333,-8332,8330,-8330,-8329,8328,-8329,-8328,8326,-8326,8324,-8324,8322,-8322,-8321,8320,-8321,-8320,-8319,8318,-8319,-8318,8316,-8316,-8315,8314,-8315,8314,-8315,-8314,-8313,8312,-8313,-8312,-8311,8310,-8311,-8310,12585,12586,12587,12588,12589,12590,12590,12590,12591,12592,-12593,12592,12593,-12594,12593,12594,12595,12596,-12596,12597,12598,12598,12599,12600,12601,-12602,12601,12602,12603,12604,12605,-12606,12605,12606,12607,-12608,12607,12608,12609,12610,12611,12612,12613,12614,12615,-12616,12615,12616,12617,-12618,12618,12619,12620,-12621,12620,12621,12622,12623]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 24"},"id":"4824","arcs":[[12624,12625,-12626,12625,12626,12627,12628,-12629,12628,12629,12630,12631,12632,12632,12633,12634,12635,12636,12637,12638,-12639,12638,12639,12640,-12641,12640,12641,12642,-12643,12643,-12644,12642,12644,12645,12646,12647,12648,12649,12650,-12651,12650,12651,12652,-12653,12652,-12649,12653,12654,12655,12656,12657,-12658,12657,-12658,12657,12658,12658,12659,12660,12661,12662,12663]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 33"},"id":"4833","arcs":[[12664,12665,-12664,12662,-12662,-12661,-12660,12658,12658,-12658,12657,-12658,12657,-12658,-12657,-12656,12654,-12654,12648,-12653,12666,12667,-12668,12668,12669,12670,12671,12672,12673,-12674,12673,12674,12675,12676,12677,12678,-12679,12678,12679,12680,12681,12682,12683,12683,12684,12685,12686,12687,12688,12689,-12690,12689,12690,12691,-12692,8708,-8709,-8708,-8707,8706,-8707,-8706,8705,-8706,-8705,8695,-8696,8695,-8696,-8704,8696,-8701,8700,-8701,8701,8702,-8702,8700,-8697,8696,-8701,-8700,8698,-8699,-8698,-8697,-8696,-8695,-8694,-8693,8692,-8693,-8692,-8691,8690,-8691,-8690,8688,-8688,-8687,8685,8685,8685,-8685,8683,8683,8682,-8682,-8681,8680,-8681,8680,-8681,-8680,8679,-8680,-8679,8678,-8679,-8678,8677,-8678,-8677,8675,12692,12693,12694,12695,-12696,12695,12696,12697,12698,12699,12700]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 12"},"id":"4812","arcs":[[-11839,11837,-11837,11835,-11835,-11834,11833,-11834,-11833,-11831,11831,11830,-11831,-11830,11828,-11829,-11828,-11827,11825,-11826,-11825,-11824,11822,-11822,12701,12702,12703,-12627,-12626,12625,-12626,-12625,-12666,12664,-12701,12699,-12699,12697,-12697,-12696,12695,-12696,-12695,12693,-12693,-8676,-8675,8673,-8673,-8672,8671,-8672,-8748,-6606,-10267]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 26"},"id":"4826","arcs":[[-11821,-1063,12704,-12644,12642,-12643,-12642,-12641,12640,-12641,-12640,-12639,12638,-12639,-12638,12636,-12636,12634,-12634,12632,12632,-12632,12630,-12630,-12629,12628,-12629,-12628,-12704,12702,-12702]]},{"type":"Polygon","properties":{"stateid":"34","name":"Congressional District 5"},"id":"3405","arcs":[[3191,-3192,3191,-8168,-12431,12705,12706,12707,1384,-1385,-1384,1382,-1382,1380,-1380,1379,-1380,-1379,1375,-1376,1375,1377,1376,-1376,1374,-1374,1372,-1372,1367,-1371,1369,-9022,-9020,9019,9020,-9020,-9019,9017,-9017,-9016,9015,-9016,-9015,-9014,9013,-9014,-9013,9012,-9013,-9012,9010,-9010,-9009,-9008,9007,-9008,-9007,-9006,9004,-9024,-8961,8959,-8959,-8958,8957,-8958,-8957,-8956,8955,-8956,-8955,8953,-8953,-3193]]},{"type":"Polygon","properties":{"stateid":"20","name":"Congressional District 3"},"id":"2003","arcs":[[11533,-11533,11531,-11531,-11530,-10228,-9597,-10227,-9626,-11418,-11417,11416,-11537,11535,-11535]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 20"},"id":"1220","arcs":[[-3555,-12540,12538,12537,-12537,12535,-12535,12533,12532,-12532,12530,-12530,12528,12708,12709,12710,12711,12712,-12713,12712,12713,12714,-12715,12715,12716,-12717,12717,12718,-12719,12718,12719,12720,12721,12722,12723,12724,-12710,12725,12726,-12727,12727,12728,12729,12730,12731,12732,-12733,12733,12734,-12735,12734,12735,12736,12737,-12349,-12348,-12347,-12346,12344,-12344,-12356]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 21"},"id":"1221","arcs":[[12726,12738,-12733,-12732,12730,-12730,12728,-12728]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 22"},"id":"1222","arcs":[[-12350,-12349,12348,-12738,12736,-12736,-12735,12734,-12735,-12734,12732,-12739,-12727,-12726,12709,-12725,-12724,-12723,-12722,-12721,12719,-12719,12718,-12719,-12718,12716,-12717,-12716,12714,-12715,-12714,-12713,12712,-12713,-12712,-12711,-12710,-12709,-12529,12528,-12529,-12528,12739,-12353,-12352,12351,-12352,12351,-12352,-12351,12346]]},{"type":"Polygon","properties":{"stateid":"34","name":"Congressional District 3"},"id":"3403","arcs":[[-12474,2905,-2906,-2905,-2904,12740,12741,12742,-3440,-3439,-3438,-3437,-3436,3434,3434,-3434,-3433,3432,-3433,-3432,3431,-3432,3431,-3432,-3431,-3430,3429,-3430,-3429,3427,-3427,-3426,3425,-3426,-3425,3421,3423,3422,-3422,-3421,-3456,12743,-3501,-3497,-3500,-3499,3498,-3499,3498,-3499,-3498,3495,3496,-3497,-3496,-3495,3493,3493,3493,-3493,3491,-3491,3489,-3489,3487,-12481,-12480,12479,-12480,-12479,12478,-12479,12478,-12479,-12478,-12477,12476,-12477,12475,-12475]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 14"},"id":"2614","arcs":[[3381,-3381,12744,12745,12746,12747,12748,12749,12750,12751,12752,12753,12754,12755,12756,12757,12758,12759,-3388,3383,-3387,-3386,3385,-3386,-3385,-3384,-3383]]},{"type":"MultiPolygon","properties":{"stateid":"26","name":"Congressional Districts not defined"},"id":"26ZZ","arcs":[[[-1725,12760,-12750,12761]],[[-1745,1743,-1743,-1742,1741,-1742,-1741,-1739,1738,1739,-1739,-1738,-9381]],[[-3225,12762,-12272,-5002]],[[10193,-10193,-7437,-3200,-3199,-3198,-10195]]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 9"},"id":"2609","arcs":[[-3380,3377,-3379,-3378,-3377,-3376,3375,-3376,-3375,3373,-3373,-1732,1730,-1730,1728,-1728,1726,-1726,-12762,-12749,12747,-12747,12745,-12745]]},{"type":"Polygon","properties":{"stateid":"49","name":"Congressional District 3"},"id":"4903","arcs":[[12763,12764,-11938,-11802,11800,-11800,-11799,11798,-11799,-11798,11796,-11796,-11795,11794,-11795,-11794,11792,-11792,11790,-11790,11788,-11788,11786,-11786,-11784,11783,11784,-11784,-11783,11781,-11781,-11780,11779,-11780,-11779,11777,-11777,8498,-8499,-8537,-11196,-11195,11194,-11995,-11994,11993,-11994,-11993,11989,11991,11990,-11990,-11989,11987,-11987,11985,-11985,11983,-11983,11981,-11981,-11980,11979,-11980,-11979,11977,-11977,11975,-11975,11973,-11973,11971,-11971,11969,-11969,11967,-11967,11965,-11965,11963,-11963,11961,-11961,11959,-11959,-11958,11957,-11958,-11957,-11955,11955,11954,-11955,-11954,11951,-11950,-11953,11949,-11952,-11951,-11950,-11949,-11948,11947,-11948,-11947,12765,12766,-12767,12766,12767]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 6"},"id":"0606","arcs":[[8291,-8293,-8292,-8291,-6294,-8057,8055,-8056,-8055,8053,-8054,-8053,8051,-8051,-8306,-8305,8304,-8305,8303,-8303,8301,8300,8300,-8300,-8299,8298,-8299,-8298,8296,-8296,8294,-8294]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 20"},"id":"4820","arcs":[[11719,-11719,11717,11717,-11717,11715,-11715,11713,-11713,-7039,-7038,7030,-7037,7035,-7036,7034,-7034,7032,-7032,-7031,-7030,7028,7028,7027,-7027,-7026,7025,12768,12769,-11732,11730,-11731,11730,-11731,-11730,11728,11728,11727,-11727,11725,-11725,11723,-11723,11721,-11721]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 35"},"id":"4835","arcs":[[-7026,-7025,7023,7023,-7023,7021,-7022,-7021,7019,-7020,-7019,-7018,7017,-7018,-7017,-7016,-7015,-7014,-7013,7011,-7011,-7010,7009,-7010,-7009,7007,-7007,7005,-7005,7004,-7005,-7004,7002,-7003,-7002,-7001,-7000,6999,-7000,-6999,6997,-6998,6997,-6998,-6997,6995,-6995,6993,-6993,-6991,6991,6990,-6991,-6990,6988,6988,-6988,-6674,-6987,-6986,6985,-6986,-6985,-6658,6656,9888,-9895,-9894,9893,-9894,9893,-9894,-9893,-9892,9891,-9892,9890,-9890,-9889,-9888,-9887,9886,-9887,9886,-9887,-9886,-9885,-9884,-9883,9881,-9881,-9880,9879,-9880,-9879,5565,-5565,5563,-5563,-5562,5561,-5562,-5561,5559,-5559,-5558,5557,-5558,-5557,5555,-5555,-5554,5553,-5554,-5553,-12497,-12496,12495,-12496,-12495,12494,12495,-12496,-12495,-12494,12492,-12492,12490,-12491,-12490,12488,-12489,-12488,12486,-12486,-12485,-12484,12482,-12482,7512,-7513,7512,7513,-7514,-7513,-7512,7510,-7510,7015,-7509,7507,-7507,-11733,-12770,-12769]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 16"},"id":"1216","arcs":[[-3038,-3568,-3567,3566,-3567,-3566,3564,-3565,-3564,-3563,12770]]},{"type":"Polygon","properties":{"stateid":"34","name":"Congressional District 12"},"id":"3412","arcs":[[-9003,9001,-9001,8999,-8999,8997,-8997,-8996,8995,-8996,-8995,-8994,8989,-8993,-8992,-8991,-8990,-8989,8987,-8988,-8987,-8986,8985,-8986,-8985,-8984,-3448,-3447,3445,-3446,-3445,-3444,-3464,3462,-3462,-3461,3459,-3460,-3459,3457,-3457,-3407,-3406,-3405,3404,-3405,-3404,3402,-3402,3400,-3400,3398,-3398,3396,-3396,-3395,3394,-3395,-3394,-3443,3442,12771]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 14"},"id":"3614","arcs":[[12772,12773,-12774,12773,12774,12775,12776,12777,12778,12779,12780,-12781,12781,12782,12783,12784,12785,-5048,5046,-5046,-5066,-5065,-5064,12786,12787]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 6"},"id":"3606","arcs":[[12788,-12787,5063,-5064,-5063,-5062,-5019,5017,-5017,-5016,5015,12789,12790]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 8"},"id":"3608","arcs":[[12791,-4201,12792,12793,12794,12795,12796,12797,12798,12799,12800,12801,12802,-12803,12802,12803,-5014,-4204]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 20"},"id":"3620","arcs":[[-10949,10947,-10947,-11290,-11289,11288,-11289,-11288,-11286,11286,11285,-11286,-11285,11283,11282,-11282,11280,-11280,11278,-11278,11276,-11276]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 9"},"id":"3909","arcs":[[-4883,12804,-4478,-4477,4476,-5850,5848,-5848,5846,5846,5846,-5846,5844,-5844,-5843,5842,-5843,-5842,5840,-5840,5838,-5838,5837,-5838,-5837,-5836,5834,-5835,-5834,5832,-5832,-5795,-5077,5075,5075,-5075,5073,5072,-5072,5070,-5070,5068,-5068,-4487,-4485,4484,4485,-4485,-4484,4482,-4482,-4481,4480,-4481,-4480]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 51"},"id":"0651","arcs":[[12805,12806,-12807,12806,12807,-12808,12807,-12808,12807,-12808,12807,12808,12809,12810,-12811,12810,12811,12812,-12813,12812,-12813,12812,12813,12814,-12815,12815,12816,-12817,12816,12817,12818,12819,12820,12821,12822,12823,12824,-12825,12824,12825,12826,-12827,12826,12827,12828,12829,12830,12831,12832,-4862,4860,-4860,-4859,4858,-4859,-4858,-4857,4856,-9535,9533,-9533,12833]]},{"type":"Polygon","properties":{"stateid":"49","name":"Congressional District 4"},"id":"4904","arcs":[[11942,11942,-11942,-11941,11940,-11941,-11940,11938,-12765,12763,-12768,-12767,12766,-12767,-12766,-11946,11944,-11944]]},{"type":"Polygon","properties":{"stateid":"24","name":"Congressional District 3"},"id":"2403","arcs":[[12834,12835,12836,12837,12838,12839,12840,12841,12841,12842,12843,12844,-12845,12844,12845,12846,-12847,12847,12848,12849,-12850,12849,12850,-12851,12850,12851,12852,12853,-12854,12853,12854,12855,12856,12857,12858,12859,12860,12861,-12862,12862,12863,12864,12865,-12866,12865,12866,12867,-12868,12867,-12868,12867,12868,12869,-12870,12869,12870,12871,12872,12873,12874,12875,12876,12877,12878,12879,12880,12881,12882,12883,-12860,12884,12885,12886,-11664,12887,12888,12889,-12858,12890,-12855,12891,12892,12893,12894,12895,-12896,12895,-12896,12895,-12896,12895,-12896,12896,-12897,12896,-12897,12896,-12897,12896,12897,-12898,12897,-12898,12897,-12898,12897,-12898,12897,-12898,12897,-12898,12897,-12898,12897,12898,12899,-12900,12899,-12900,12900,12901,12902,12903,12904,12905,12906,12907,12908,12909,12910,-12910,12909,12911,12912,-12913,12912,12913,12914,12915,-12916,12915,12916,12917,12918,12919,12920,-12921,12920,12921,7298,12922,12923,12924,-12925,12924,12925,12926,12927,-12928,12928,12929,12930,-11644,-7350,-7314,7312,-7312,7310,-7310,7308,-7308,7306,-7306,7304,-7304,7302,-7302,7300,-7300,-7299,-7298,-7297,7296,-7297,-7296,7294,7294,-7294,7292,-7292,7290,-7291,-7290,-7289,7287,-7288,-7287,-7286,-7285,-7284,-7283,-7282,-7281,7280,-9320,9318,9317,-9318,-9317,7283,-9316,-9315,-9314,9313,-9314,-9313,-9312,9311,-9312,-9311,9309,-9309,9307,-9308,9307,-9308,-9307,-9306,9305,-9306,9305,-9306,-9305,-9304]]},{"type":"Polygon","properties":{"stateid":"24","name":"Congressional District 2"},"id":"2402","arcs":[[-12913,12912,-12913,-12912,-12910,12909,12910,-12910,-12909,-12908,12906,-12906,12904,-12904,-12903,12901,-12901,12899,-12900,12899,-12900,-12899,-12898,12897,-12898,12897,-12898,12897,-12898,12897,-12898,12897,-12898,12897,-12898,12897,-12898,-12897,12896,-12897,12896,-12897,12896,-12897,12895,-12896,12895,-12896,12895,-12896,12895,-12896,-12895,12893,-12893,-12892,12854,-12891,12857,-12890,12888,-12888,11663,-12887,12885,-12885,12859,-12884,12882,-12882,-12881,12879,-12879,-12878,-12877,-12876,12874,-12874,-12873,-12872,12871,-12872,12931,12932,12933,12934,12935,12936,-12937,12936,12937,12938,-12939,12938,12939,12940,12941,-12942,12941,12942,12943,-12944,12943,12944,12945,-12946,12946,12877,12947,12880,12948,11674,-11674,-11673,-11672,11670,-11671,-11670,11668,-11669,11667,-11667,-11666,11665,-11666,-11665,11664,-11665,-11664,-11663,11661,-11661,-11659,11658,11659,-11659,-11658,11656,-11656,11653,11654,11654,-11654,11653,-11654,-11653,-11649,11648,11649,11651,11650,-11650,-11649,-11648,-11647,11645,-11646,-11645,-12931,12929,-12929,12927,-12928,-12927,-12926,-12925,12924,-12925,12923,-12923,-7299,-12922,-12921,12920,-12921,-12920,12918,-12918,-12917,-12916,12915,-12916,-12915,-12914]]},{"type":"Polygon","properties":{"stateid":"53","name":"Congressional District 6"},"id":"5306","arcs":[[-10889,-10888,-10887,12949,12950,12951,12952,-12953,12953,12954,-12955,12955,12956,12957,12958,12959,12960,12961,12962,-12963,12962,12963,12964,-12965,12964,12965,12966,12967,12968,-12393,12969]]},{"type":"Polygon","properties":{"stateid":"18","name":"Congressional District 1"},"id":"1801","arcs":[[-12274,12970,-5651,-5650,5649,-5650,-5649,-5648,-10475,10473,-10473,10471,-10471,10469,-10469,12971]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 6"},"id":"2606","arcs":[[-12763,-3224,3219,-3223,3221,-3221,3219,-3220,-3219,-9389,-4884,-4621,-5652,-12971,-12273]]},{"type":"Polygon","properties":{"stateid":"53","name":"Congressional District 9"},"id":"5309","arcs":[[-10887,-10886,10884,10883,10883,-10883,-10882,10881,-10882,-10881,-10880,10879,-10880,-10879,10877,-10877,10875,-10836,10834,-10834,-10833,10832,-10833,-10832,10830,-10830,10828,-10828,-6076,-6075,6073,-6073,6071,-6072,-6071,6069,-6070,-6069,-6068,6067,-6068,-6067,6065,-6065,6062,-6063,6062,-6063,6062,6063,-6063,6061,-6061,6059,-6059,6057,-6057,-6056,-6055,6053,-6054,6053,-6054,6054,-6055,6053,12972,12950,-12951,-12950,10886]]},{"type":"Polygon","properties":{"stateid":"53","name":"Congressional District 10"},"id":"5310","arcs":[[12967,-12967,12965,-12965,12964,-12965,-12964,-12963,12962,-12963,-12962,12960,-12960,12958,-12958,12956,-12956,12954,-12955,-12954,12952,-12953,-12952,-12951,-12973,-6054,6054,-6055,6053,-6054,6053,-6054,-6053,6048,-6052,6051,-6052,-6051,-6050,6049,-6050,-6049,-6048,-6047,6045,-6045,-6044,6043,-6044,6043,-6044,-6043,-6042,6041,-6042,-6041,6039,-6158,-12401,-12400,12399,-12400,-12399,-12398,12397,-12398,12396,-12396,12394,-12394,-12969]]},{"type":"MultiPolygon","properties":{"stateid":"15","name":"Congressional District 2"},"id":"1502","arcs":[[[12973]],[[12974]],[[12975]],[[12976]],[[12977,12978,12978,12979,12980,12981,12982,12983,12984]],[[12985]],[[12986]],[[12987]],[[12988]],[[12989]],[[12990]],[[12991]],[[12992]],[[12993]],[[12994]],[[12995]]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 2"},"id":"0602","arcs":[[-8547,-8211,8209,8209,-8209,8207,-8207,8205,-8205,-8204,8203,-8204,-8288,8286,-8286,8284,-8284,8282,-8282,8280,-8280,8278,-8278,8276,8276,-8276,8274,-8274,8272,-8272,8270,-8270,8268,-8268,8266,-8266,8264,-8264,-8263,8262,-8263,-8262,8260,-8260,-8259,8258,-8259,-8258,8256,-8256,-8255,8254,-8255,-8254,-8253,8252,-8253,-8252,8250,-8250,8248,-8248,8246,-8246,-8245,8244,-8245,-8244,-8243,8242,-8243,-8242,-8241,8240,-8241,-8240,-8290,8288,-8357,8355,-12624,12622,-12622,-12621,12620,-12621,-12620,-12619,12617,-12618,-12617,-12616,12615,-12616,-12615,12613,-12613,12611,-12611,12609,-12609,-12608,12607,-12608,-12607,-12606,12605,-12606,-12605,12603,-12603,-12602,12601,-12602,-12601,12996,-12523,-12522,-12521,12519,12519,-12519,12997]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 12"},"id":"1312","arcs":[[-11387,11385,-11385,11383,-11383,11381,-11382,-11381,-11380,11378,-11378,11376,-11376,-11375,11374,-11375,-11374,11372,-11372,-11371,11370,-11371,-11370,11368,-11368,11366,-11366,-11365,11364,-11365,-11364,11362,-11362,-9065,9063,-9063,9061,-10911,10909,-10909,10907,-10907,-10906,10905,-10906,-10905,10904,-10905,10903,-10904,-10903,10901,-10902,10900,-10901,10900,-10901,-10900,10898,-10898,-10897,-10896,10895,-10896,10895,-10896,-10895,10893,-10893,-10892,10891,-10892,-10891,-10714,10712,-10713,-10712,-10711,-10710,10709,-10710,-10709,10707,-10708,-10707,10705,-10705,-10704,10703,-10704,-10703,10701,-10701,10699,-10699,-10698,10697,-10698,-10697,-10696,10695,-10696,-10695,-10694,10693,-10694,-10693,10691,-10691,10690,-10691,-10690,10688,-10689,-10688,-10687,-10686,-10685,10683,-10683,10681,-10681,10679,-10679,10677,-10677,-10676,10675,-10676,-10675,10674,-10675,-10674,-10673,10672,-10673,-10672,-10671,10670,-10671,-10670,-10669,10668,-10669,-10668,-10667,10666,-10667,10665,-10665,10663,-10663,10661,-10661,-3271,-3270,-3269,3267,-3267,3265,-3265,-3264,3263,-3264,-3263,3262,-3263,-3262,-3256,3256,-3261,3258,-3259,3258,3259,-3259,-3258,-3257,3255,-3256,-3255,3253,-3253,3252,-3253,-3252,-3251,3250,-3251,-3250,3248,3248,-3248,3246,-3246,3244,-3244,-11455,-11454,11453,-11454,11452,11452,-11452,11450,11450,11450,-11450,-11449,11448,-11449,11448,-11449,-11448,-11447,11446,-11447,11446,-11447,-11446,-11445,11444,-11445,11443,-11443,-11442,11441,-11442,-11441,11439,-11439,11438,-11439,-11438,11436,-11436,11435,-11436,-11435,-11434,11433,-11434,-11433,-11432,11431,-11432,-11431,-11430,11429,-11430,11429,-11430,11429,-11430,-11429,11427,-11427,-11426,11425,-11426,-11425,11423,-11423]]},{"type":"Polygon","properties":{"stateid":"08","name":"Congressional District 6"},"id":"0806","arcs":[[-3704,3702,-3702,3699,-3700,3699,3700,-3700,-3699,3697,-3697,3695,3695,-3695,-3694,3693,-3694,-3693,3692,-3693,-3692,3690,-3690,-3722,3720,-3720,3716,3717,3718,12998,12999,-517,515,-515,513,-513,511,510,-510,-509,508,-509,-508,506,-506,-3705]]},{"type":"Polygon","properties":{"stateid":"24","name":"Congressional District 6"},"id":"2406","arcs":[[-2856,-9276,9274,-9274,9272,-9378,9376,9376,9376,-9376,9374,9373,-9373,9371,-9371,9369,-9369,9367,-9367,9365,-9366,-9365,9363,-9364,-9363,9361,-9361,-9360,9359,-9360,-9359,9357,-9358,-9357,9356,-9357,-9356,-9355,9354,-9355,-9354,9352,-9352,9350,-9350,-9349,9348,-9349,-9348,9346,-9346,-9345,-9344,-9343,9340,9341,-9341,9340,-9341,9340,-9341,-9340,-9339,9338,-9339,-9338,-9337,9336,-9337,-9336,-9334,9333,9334,-9334,-9333,-9332,9330,-9331,-9330,9328,-9328,9326,-9327,9326,-12189,12187,-12187,12185,-12185,-12176,-12175,-12174,12172,-12173,-12172,12170,-12170,-12169,12167,-12168,-12167,12165,-12165,12163,-12163,12159,-12162,-12161,-12160,-12159,12157,-12158,-12157,12155,-12155,12153,-12153,12151,-12151,12149,-12149,-12148,-12147,-12146,12145,-12146,-12145,12143,-12143,12141,-12141,-12140,-12322,-12321,12320,-12321,-12320,-12310,-12319,12317,-12317,12315,-12315,12311,12313,12312,-12312,-12311,12309,-12310,-12309,12307,-12307,12305,-12305,-12304,12303,-12304,-12303,-12302,12301,-12302,-12301,-12300,12299,-12300,-12299,-12298,12297,-12298,-12297,-12296,12295,-12296,-12295]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 7"},"id":"3607","arcs":[[13000,13001,-13002,13001,13002,13003,-13004,13003,13004,-9028,13005,-13006,13005,-13006,9027,13006,13007,13008,-13008,13009,-13010,13009,13010,-12791,-12790,-5016,-5015,-12804,-12803,12802,-12803,-12802,-12801,-12800,12798,-12798,12796,-12796,-12795,13011,13012,13013,4195,-4196,13014,13015]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 12"},"id":"3612","arcs":[[13016,13017,-13018,13017,13018,13019,13020,-13021,13021,13022,-13023,13023,-12774,-12773,-12788,-12789,-13011,-13010,13009,-13010,13007,13008,-13008,-13007,-9028,13005,-13006,13005,-13006,-9027]]},{"type":"MultiPolygon","properties":{"stateid":"36","name":"Congressional District 10"},"id":"3610","arcs":[[[-9031,-9030,-9029,-9028,-9027,-9026,-9025,-1391,-1390,1389,1390,-1391,1390,9024,-13019,-13018,13017,-13018,13016,9026,9027,-13005,-13004,13003,-13004,-13003,-13002,13001,-13002,-13001,-13016,13014,4195,-4196,-13014,-13013,13012,13024,-4199,4198,-4199,-4198,-4197,-4196,-4195,-4194,4193,-4194,-4193]]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 13"},"id":"3613","arcs":[[-1389,-1388,-1387,1386,13025,-12781,-12780,13026,-13027,13026,-13027,13026,13027,13028,-13029,13028,13029,-13023,-13022,13020,-13021,-13020,-9025,-1391,1390,-1391,-1390]]},{"type":"Polygon","properties":{"stateid":"51","name":"Congressional District 2"},"id":"5102","arcs":[[4109,-4109,4107,-4107,2499,2500,-2500,-2499,2497,2497,2497,-2497,2495,2495,-2495,-2494,2493,-2494,-2493,2491,-2491,-11643,11641,-11641,11639,-11639,13030,-296,-11244,4134,-4134,-4133,4131,-4131,4130,-4131,-4130,-4129,4128,-4129,-4128,4126,-4127,-4126,4124,-4124,4122,-4122,4120,-4120,4118,-4118,4116,-4117,-4116,4114,-4114,4112,-4112,-4111]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 15"},"id":"3915","arcs":[[-1803,13031,13032,13033,13034,13035,13036,13037,13038,13039,13040,-6975,6973,-6973,-5089,-2732,2730,-2730,2728,-2728,2724,2726,2725,-2725,-2724,-2723,2722,-2723,-2722,-2614,-2613,-2612,2601,-2611,-2610,2609,-2610,-2609,2607,-2607,2605,-2606,-2605,2603,-2604,-2603,-2602,-2601,2599,-2697,-2696,2695,-2696,-2695,2690,-2694,2692,-2692,-2691,-2690,2688,-2688,-2682,2682,-2687,2686,-2687,-2686,2685,-2686,-2685,2673,-2684,-2683,2681,-2682,-2681,2675,-2680,-2679,-2678,2676,-2677,-2676,-2675,-2674,-2673,-2672,2661,-2671,-2649,2649,-2670,2665,-2669,2650,-2668,2666,-2667,2666,-2667,2655,-2666,-2665,2663,-2664,-2663,-2662,-2661,2658,2659,-2660,-2659,2658,-2659,-2658,-2657,-2656,-2655,2653,-2654,-2653,2651,-2651,-2650,2648,-2649,-2648,2646,-2646,2644,-2644,2642,-2642,-2721,-10434,10432,-10432,-10421,-10420,10419,-10420,-10419,10417,10417,-10417,10415,-10416,-10415,10413,-10414,-10413,10411,-10411,-10410,10409,-10410,-10409]]},{"type":"Polygon","properties":{"stateid":"08","name":"Congressional District 2"},"id":"0802","arcs":[[-8526,-8525,8523,8523,-8523,8521,-8521,-8520,8519,-8520,-8519,8517,8517,-8517,8515,-8515,8513,-8513,-8512,8511,-8512,-8511,8509,-8509,8507,-8507,8505,-8505,8503,-8503,-8502,8501,-8502,-8501,-6298,-526,524,524,-524,522,-522,-521,520,-521,-520,518,-518,-13000,-12999,-3719,3718,-3719,-3718,-3717,3716,-3717,-3716,-3715,3714,-3715,-3714,3712,-3713,-3712,3710,-3711,-3710,-3709,-3728,-3727,3724,3725,-3726,3724,-3724,-3680,-3723,3676,-3676,3674,-3708,3706,-3706,-504,-503,-502,501,-502,-501,499,-499,-498,497,-498,-497,495,-495,-494,493,-494,-493,-7363,-7362,7361,-7362,-7361,7358,7359,-7359,7358,-7359,-7358,7356,-7356,-7355,7354,-7355,-7354,-7353,7352,-7353,-7352,-8535,-8534,8533,-8534,-8533,8531,-8531,-8530,8529,-8530,-8529,8527,-8527]]},{"type":"Polygon","properties":{"stateid":"32","name":"Congressional District 1"},"id":"3201","arcs":[[-1777,1775,-1775,-1774,13041,13042,13043,13044,13045]]},{"type":"Polygon","properties":{"stateid":"32","name":"Congressional District 3"},"id":"3203","arcs":[[1784,-1784,1782,-1782,1780,-1780,1778,1778,-1778,-13046,13044,-13044,13042,-13042,1773,-1774,-1773,-1772,1771,-1772,1770,-1770,-1769,-4868,-4867,4866,-4867,-4866,3782,-3783,-3782,-1786]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 3"},"id":"1703","arcs":[[13046,-13047,13046,13047,13048,13049,13050,-13051,13050,-13051,13050,13051,-12245,12243,13052,13053,13054,13055,13056,13057,13058,-13059,13059,13060,13061,-13057,13062,-13055,13063,13064,13065,13066,13067,13068,-13069,13068,13069,13070,13071,13072,13073,13074,13075,13076,-13077,13076,13077,13078,13079,13080,13081,13082]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 5"},"id":"1705","arcs":[[13083,13083,13084,13085,-13086,13086,13087,-13088,13087,13088,-12293,13089,-12290,13090,-12288,13091,13092,13092,13093,13094,13095,13096,13097,13098,13099,13100,13101,13102,13103,13104,13105,13106,-13053,-12244,-12243,-12242,13107,13108,13109,13110,13111]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 11"},"id":"1711","arcs":[[-12258,12256,-12256,-12255,12254,-12255,-12254,-12253,-12252,12251,-12252,12250,-12250,12248,-12248,-12247,12246,-12247,-12246,-13052,-13051,13050,-13051,13050,-13051,-13050,13048,-13048,-13047,13046,-13047,-13083,13081,-13081,13112,13113,-13114,13113,13114,-10363,-12212,12210,-12210,-12209,12208,-12209,-12208,-12207,12206,-12207,-12206,12204,-12204]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 8"},"id":"1708","arcs":[[-12226,12225,-12226,-12225,12223,-12223,12219,-12222,-12221,-12220,-12219,-12218,-12217,-12216,-12215,-12214,-12271,-12270,12269,-12270,-12269,12267,13115,-13116,13115,13116,12214,13117,12217,13118,13119,-13120,13119,-13120,13119,13120,-13086,-13085,13083,13083,-13112,13110,-13110,13108,-13108,12241,-12242,-12241,-12240,12239,-12240,-12239,12237,-12237,12235,-12235,12233,-12233,12231,-12231,12229,-12229,-12228,12227,-12228,-12227]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 14"},"id":"4814","arcs":[[-5605,13121,13122,13123,13124,13125,13126,13127,13128,-13129,13128,-13129,13128,-13129,13128,-13129,13128,13129,-13130,13129,13130,13131,13132,13133,-13134,13133,13134,13135,-13136,13136,13137,-13138,13138,-13139,13138,13139,13140,-13141,13140,13141,13142,13143,13144,13145,-13146,13145,-13146,13145,13146,-13147,13146,-13147,13146,13147,13148,-13149,13148,13149,13150,13151,-8040,8038,-8038,8037,-8038,-8037,8035,-8035,-8034,8033,-8034,-8033,-8032,8031,-8032,8031,-8032,8031,-8032,8031,-8032,8031,-8032,-8031,-8030,8029,-8030,-8029,-8028,8027,-8028,-8027,8025,-8025,-8024,8023,-8024,-8023,-8022,8021,-8022,-8021,8018,8019,8019,-8019,8018,-8019,-8018,8016,8015,-8016,-8015,8013,-8014,8013,-8014,8013,-8014,8013,-8014,-8013,8011,8011,8011,-8011,8010,-8011,-8010,8008,-8008,8007,-8008,8006,-8007,-8006,8004,-8005,-8004,8002,-8002,8000,-8000,7998,-7999,-7998,7996,-7997,-7996,7995,-7996,7995,-7996,-7995,7993,7993,-7993,7991,-7991,7989,7988,-7988,7986,-7986,7981,-7985,7983,-12324,13152,-5622,-5621,5620,-5621,-5620,5618,-5618,-5617,5616,-5617,-5616,-5615,5614,-5615,-5614,-5613,5612,-5613,-5612,5610,-5610,-5609,5608,-5609,-5608,-5607,5606,-5607,-5606]]},{"type":"Polygon","properties":{"stateid":"05","name":"Congressional District 2"},"id":"0502","arcs":[[-11137,11135,11135,-11135,-11134,-10372,-8497,-8496,8495,-8496,-8495,8493,-8492,8491,-8494,-8493,-8492,-8491,8489,-8489,-8488,8487,-8488,-8487,-8486,8485,-8486,-8485,-8484,8483,-8484,-8483,8481,-8481,-8480,8479,-8480,-8479,8477,-8477,8475,-8475,-8474,8472,-8473,-8471,8471,8470,-8471,-8470,-8469,8468,-8469,-8468,-8467,8466,-8467,8466,-8467,8466,-8467,-8466,8464,8464,8463,-8463,8461,-8461,-8460,8459,-8460,8459,-8460,8459,-8460,-8459,-8458,8457,-8458,8457,-8458,8457,-8458,-8457,8455,8455,-8455,8454,-8455,-8454,8453,-8454,-8453,8452,-8453,8452,-8453,8452,-8453,-8452,-8451,8450,-8451,8450,-8451,8450,-8451,8450,-8451,-8450,8448,-8448,-11140,-11139,11138,-11139,-11138]]},{"type":"Polygon","properties":{"stateid":"66","name":"Delegate District (at Large)"},"id":"6698","arcs":[[13153]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 26"},"id":"3626","arcs":[[-3740,3738,-3738,3736,-3736,3734,-3734,3732,-3732,-3731,3730,-3731,-3730,13154]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 12"},"id":"2612","arcs":[[-3391,-3390,3389,13155,13156,13157,-12753,13158,13159,13160,13161,-4881,-4880,4879,-4880,4878,-4878,-4877,4876,-4877,-4876,4874,-4874,-4873,4872,-4873,-4872]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 16"},"id":"3616","arcs":[[-1386,-1385,-12708,-12707,13162,13163,13164,13165,-13166,13165,13166,13167,13168,13169,13170,13171,-2285,-5049,-12786,12784,-12784,12782,-12782,12780,-13026,-1387]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 15"},"id":"3615","arcs":[[-13029,13028,-13029,-13028,-13027,13026,-13027,13026,-13027,-12779,-12778,-12777,12775,-12775,-12774,12773,-13024,13022,-13030]]},{"type":"Polygon","properties":{"stateid":"24","name":"Congressional District 7"},"id":"2407","arcs":[[9301,-9301,-9300,9299,-9300,-9299,9298,-9299,-9298,-9297,9296,-9297,-9296,9295,-9296,-11703,-11702,11701,-11702,-11701,11699,-11699,-11698,11697,-11698,-11697,-11696,11695,-11696,-11695,11693,-11693,-11692,11691,-11692,-11691,-11690,11689,-11690,-11689,11687,-11688,-11687,-11686,-11685,11684,-11685,-11684,-11683,11682,-11683,-11682,11680,-11681,-11680,11678,-11678,-11677,11676,-11677,-11676,11673,-12949,-12881,-12948,-12878,-12947,12945,-12946,-12945,-12944,12943,-12944,-12943,-12942,12941,-12942,-12941,-12940,-12939,12938,-12939,-12938,-12937,12936,-12937,-12936,12934,-12934,12932,-12932,12871,-12872,-12871,-12870,12869,-12870,-12869,-12868,12867,-12868,12867,-12868,-12867,-12866,12865,-12866,-12865,12863,-12863,12861,-12862,-12861,-12860,-12859,-12858,-12857,-12856,-12855,-12854,12853,-12854,-12853,-12852,-12851,12850,-12851,-12850,12849,-12850,-12849,-12848,12846,-12847,-12846,-12845,12844,-12845,-12844,-12843,12841,12841,-12841,12839,-12839,12837,-12837,12835,-12835,-9303]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 31"},"id":"4831","arcs":[[-6620,6619,-6620,-6619,6617,-6617,6615,-6616,-6615,6613,-6613,-6612,-6611,-11329,-11328,11326,-11326,11324,-11324,-11323,11322,-11323,-11322,-11321,11320,-11321,-11320,11318,-11318,-9793,-6636,-6635,-6634,6632,-6632,-6631,6630,-6631,-6630,6628,-6628,6626,-6626,6624,6623,-6623,6621,-6621]]},{"type":"MultiPolygon","properties":{"stateid":"06","name":"Congressional District 24"},"id":"0624","arcs":[[[13172]],[[13173,13174]],[[-4321,-2172,-12585,12583,-12583,13175,13176,13177,13178,13179,13180,-13181,13180,13181,13182,-13183,13182,13183,13184,13185]]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 17"},"id":"3617","arcs":[[-12430,12428,12428,-12428,12426,-12426,-12425,12424,-12425,-12424,-2270,-2286,-13172,13170,-13170,13168,-13168,13166,-13166,13165,-13166,-13165,13163,-13163,12706,-12707,-12706]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 9"},"id":"3609","arcs":[[12794,-12795,-12794,-12793,4200,-12792,-4203,-4202,-4201,-4200,4198,-13025,-13013,-13012]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 50"},"id":"0650","arcs":[[-9444,9443,-9444,13186,13187,13188,13189,13190,13191,13191,13192,13193,13194,-13194,13193,13195,13196,-13197,13196,13197,13198,13199,13200,13201,-13202,13201,13202,13203,13204,13205,-12832,12830,-12830,12828,-12828,-12827,12826,-12827,-12826,-12825,12824,-12825,-12824,12822,-12822,12820,-12820,12818,-12818,-12817,12816,-12817,-12816,12814,13206,13207,13208,13209,13210,13211,13212,-13213,13212,13213,13214,-13215,13214,13215,13216,13217,13218,-13219,13218,13219,-13220,13220,13221,13222,13223,13224,-13225,13224,13225,13226,13227,13228,13229,-13230,13230,13231,-13232,13231,13232,13233,13234,-13235,-13234,13235,-13235,13234,13236,13237,-13238,13237,13238,-13232,13239,13240,13241,-9464,9463,9464,13242,13243,9460,-9461,-9460,9458,-9458,9457,-9458,-9457,-9456,9455,-9456,-9455,9453,-9453,9452,-9453,-9452,-9451,9450,-9451,-9450,-9449,9448,-9449,-9448,-9447,9446,-9447,-9446,9445,-9446,-9445]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 52"},"id":"0652","arcs":[[-9473,9471,-9471,9467,9469,9468,-9469,-9468,-9467,-9466,9462,9463,9464,-9465,-9464,-9463,-9462,9460,-9461,9460,-9461,-13244,13242,-9465,-9464,9463,-13242,13240,-13240,13231,-13239,-13238,13237,-13238,-13237,-13235,13234,-13236,13233,13234,-13235,-13234,-13233,-13232,13231,-13232,-13231,13229,-13230,-13229,-13228,13226,-13226,-13225,13224,-13225,-13224,13222,-13222,-13221,13219,13244,13245,13245,13246,13247,13248,13249,13250,13251,13252,-13253,13252,13253,-12811,-12810,12808,-12808,12807,-12808,12807,-12808,12807,-12808,-12807,12806,-12807,-12806,13254]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 53"},"id":"0653","arcs":[[13250,-13250,13248,-13248,-13247,13245,13245,-13245,-13220,-13219,13218,-13219,-13218,13216,-13216,-13215,13214,-13215,-13214,-13213,13212,-13213,-13212,13210,-13210,13208,-13208,13206,-12815,-12814,-12813,12812,-12813,12812,-12813,-12812,-12811,12810,-13254,-13253,13252,-13253,-13252]]},{"type":"Polygon","properties":{"stateid":"26","name":"Congressional District 13"},"id":"2613","arcs":[[-12760,12758,-12758,12756,-12756,12754,-12754,-12753,-12752,13255,-13161,13159,-13159,12752,-13158,13156,-13156,-3390,-3389]]},{"type":"Polygon","properties":{"stateid":"29","name":"Congressional District 1"},"id":"2901","arcs":[[-6730,-6729,6727,-6727,6725,-9164,-9163,-12420,-12419,12418,-12419,-12418,12416,12416,-12416,12414,-12415,12414,-12415,-12414,12412,-12412,12410,-12411,-12410,-12409,12408,-12409,-12408,-12407,12405,-12405,12403,-12404,-12403,-6731]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 2"},"id":"1702","arcs":[[13256,13257,13258,13259,-13260,13259,13260,-13067,13261,13262,13262,13263,12277,-12278,-12277,12275,-12275,-12972,-10468,-10365]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 7"},"id":"1307","arcs":[[12371,-12371,12369,-12369,-12368,12367,-12368,-12367,-12387,-6248,6247,-6248,-6247,6245,-6245,6243,-6243,6241,-6241,-6240,6239,-6240,-6239,-6238,-11361,11359,-11359,-4596,4594,-4594,-4593,4592,-4593,-4592,4590,4589,-4589,4587,4586,-4586,4584,-4585,-4584,4580,-4583,-4582,-4581,-4580,-12373]]},{"type":"Polygon","properties":{"stateid":"15","name":"Congressional District 1"},"id":"1501","arcs":[[-12984,12982,-12982,12980,-12980,12978,12978,-12978,13264]]},{"type":"Polygon","properties":{"stateid":"39","name":"Congressional District 10"},"id":"3910","arcs":[[6976,-6976,-13041,13039,-13039,13037,-13037,13035,-13035,13033,13032,-13032,-1802,-6978]]},{"type":"Polygon","properties":{"stateid":"12","name":"Congressional District 7"},"id":"1207","arcs":[[-5458,5457,-5458,-5457,5455,-5455,5453,-5453,-5452,5451,-5452,-5451,-5450,5449,-5450,-5449,5447,-5447,5446,-5447,-5446,-3082,3080,-3080,3078,-3078,3074,-3075,3076,3074,3075,-3075,-3074,3072,3072,-3072,-12421,-9265,9263,-9263,-5487,-5486,-5462,5461,-5462,-5461,5459,-5459]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 1"},"id":"1701","arcs":[[-13115,-13114,13113,-13114,-13113,-13080,13078,-13078,-13077,13076,-13077,-13076,13074,-13074,13072,-13072,13070,-13070,-13069,13068,-13069,-13068,-13067,-13066,13265,13266,-13267,13267,13268,13269,13270,-13061,13271,-13272,13060,-13271,13272,-12279,-12278,-13264,13262,13262,-13262,13066,-13261,-13260,13259,-13260,-13259,13257,-13257,-10364]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 8"},"id":"4208","arcs":[[1913,-1913,1911,-1912,-1911,1909,-1909,-1908,-1907,-2069,-2068,2067,-9004,-12772,-3443,-3442,3436,-3441,3439,-12743,12741,-12741,2903,-2904,2902,13273,2923,13274,13275,13276,-2913,2912,2913,-2914,-2913,-2912,2910,-2910,-1918,-1917,1915,-1915]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 16"},"id":"4816","arcs":[[-11712,11710,-11710,11708,-11708,11704,11706,-11705,11705,11704,-11705,11704,-11705,-11704,13277,-7646]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 22"},"id":"4822","arcs":[[-9878,-9877,9876,-9877,-9876,9874,-9874,9872,-9872,-9871,9870,-9871,-9870,9868,-9868,13278,13279,13280,13280,13281,13282,-13283,13282,13283,13284,13285,13286,-13287,13286,13287,13288,-13289,13288,13289,13290,13291,13292,-13293,13292,13293,13294,13295,13296,13297,13298,13299,13300,13301,13302,-13303,13302,-13303,13302,13303,13304,13305,13306,-8049,-8048,-8047,-8046,8045,-8046,-8045,8043,-8043,-8042,8041,-8042,-8041,8037,8038,8039,-13152,13150,-13150,-13149,13148,-13149,-13148,-13147,13146,-13147,13146,-13147,-13146,13145,-13146,13145,-13146,-13145,13143,-13143,13141,-13141,13140,-13141,13139,-13139,13138,-13139,13137,-13138,-13137,13135,-13136,-13135,-13134,13133,-13134,-13133,13131,-13131,-13130,13129,-13130,-13129,13128,-13129,13128,-13129,13128,-13129,13128,-13129,-13128,13126,-13126,13124,-13124,13122,-13122,5604,-5605,-5604,5602,-5602,-5601,5599,-5600,-5599,5597,5597,-5597,-5596,5595,-5596,-5595,-5594,5593,-5594,-5593,-5592,5591,-5592,5591,-5592,-5591,-5590,5589,-5590,5589,-5590,-5589]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 9"},"id":"4809","arcs":[[13307,13308,13308,13309,13310,-13311,13310,13311,13312,-13313,13312,13313,13314,13315,13316,13317,13318,13319,13320,13321,-13322,13322,-13323,13321,13323,-13324,13323,13324,-13325,13324,-13325,13324,13325,13326,13327,13328,13329,-13330,13330,13331,-13332,13332,-13301,-13300,13298,-13298,13296,-13296,13294,-13294,-13293,13292,-13293,-13292,13290,-13290,-13289,13288,-13289,-13288,-13287,13286,-13287,-13286,13284,-13284,-13283,13282,-13283,-13282,13280,13280,-13280]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 30"},"id":"0630","arcs":[[13333,13334,13335,13336,13337,-13338,13338,13339,13340,-13341,13340,13341,13342,-13343,13342,13343,13344,13345,13345,13346,13347,-13348,13347,13348,13349,13350]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 25"},"id":"0625","arcs":[[12580,-12580,12578,-12578,-3835,-3834,3833,13351,13352,-13353,13352,13353,13354,13355,13356,13357,13358,13359,13360,13361,-13361,13360,13362,-13363,13362,13363,13364,13365,13365,13366,13367,-13368,13368,13369,-13338,-13337,13335,-13335,13333,-13351,13370,13371,-13372,13371,13372,13373,13374,13375,-13376,13375,13376,13377,-13378,13377,-13378,13377,-13378,13377,13378,-13177,-13176,-12582]]},{"type":"MultiPolygon","properties":{"stateid":"06","name":"Congressional District 26"},"id":"0626","arcs":[[[-13177,13176,-13379,-13378,13377,-13378,13377,-13378,13377,-13378,-13377,-13376,13375,-13376,-13375,13373,-13373,-13372,13371,-13372,-13371,-13350,13379,13380,13381,13382,13383,13384,13184,-13185,-13184,-13183,13182,-13183,-13182,-13181,13180,-13181,-13180,13178,-13178]],[[13385,-13174]],[[13386]]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 33"},"id":"0633","arcs":[[13382,-13382,13380,-13380,-13349,-13348,13347,-13348,-13347,13345,13345,-13345,13387,13388,-13389,13388,13389,13390,13391,-13392,13392,13393,13394,13395,13396,13396,13397,13398,-13399,13398,-13399,13398,13399,-13400,13399,13400,13401,13402,13403,-13404,13403,13404,13405,13406,13407,13408,13409,13410,-13384]]},{"type":"Polygon","properties":{"stateid":"18","name":"Congressional District 7"},"id":"1807","arcs":[[-8566,8564,-8564,8562,-8563,-8562,8560,-8561,-8560,-8558,8558,-8559,8558,-8559,8557,-8558,-8557,8555,-8555,8553,-8553,8551,-8551,8549,-8550,8549,-11996,-11463,-10476]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 29"},"id":"4829","arcs":[[13411,13412,13413,13414,13415,-13414,13416,-7880,7878,-7878,7876,-8050,8048,-13307,13305,-13305,13303,-13303,13302,-13303,13302,-13303,-13302,-13301,13300,-13333,13331,-13332,-13331,13329,-13330,-13329,13417,13418,-13419,13418,13419,13420,13421,13422,-13422,13423,13424,-13425,13425,13426,-13427,13426,13427,-13428,13427,13428,13429,13430,-13431,13430,13431,13432,-13433,13432,13433,13434,13435,-13435,13434,13436,13437,13438,13439,13440,13441,-13442,13441,13442]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 7"},"id":"4807","arcs":[[-9866,9865,-9866,-9865,9863,-9863,9861,-9861,9859,-9860,9859,-9860,9859,-9860,9859,13443,13444,13445,-13446,13446,13447,-13448,13448,13449,13450,13451,-13452,13452,13453,13453,13454,13455,-13456,13455,-13456,13455,-13456,13455,13456,13457,-13458,13457,13458,-13459,13459,-13319,13460,-13318,13316,-13316,13314,-13314,-13313,13312,-13313,13311,-13311,13310,-13311,-13310,13308,13308,-13308,-13279,-9867]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 18"},"id":"4818","arcs":[[13461,-13462,13462,13463,13463,13464,13465,13466,13467,13468,13469,13470,-13471,13470,13471,13472,-13473,13472,13473,13474,13474,13475,13476,13477,13478,13479,-2385,13480,13481,13481,13482,2382,13483,-13415,-13414,-13413,13411,-13443,-13442,13441,-13442,-13441,13439,-13439,13437,-13437,-13435,13434,13435,-13435,-13434,-13433,13432,-13433,-13432,-13431,13430,-13431,13429,-13429,-13428,13427,-13428,-13427,13426,-13427,-13426,13424,-13425,-13424,13421,-13423,-13422,-13421,-13420,-13419,13418,-13419,-13418,-13328,-13327,-13326,-13325,13324,-13325,13324,-13325,-13324,13323,-13324,-13322,13322,-13323,13321,-13322,-13321,13484,13485,-13486,13485,-13486,13485,13486,-13459,13458,13487,13488,13489,13490,13491]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 2"},"id":"4802","arcs":[[13451,-13452,-13451,-13450,13448,13447,-13448,-13447,13445,-13446,-13445,-13444,-9860,-9859,-2394,-2393,-2392,-2391,2390,-2391,2389,-2389,-2388,2387,-2388,-2387,-2386,2385,-2386,-2385,-2384,2382,-2383,-2382,-7885,-7884,7883,-7884,-7883,-7882,7881,-7882,-7881,-13417,13413,-13416,-13415,13414,-13484,-2383,-13483,13481,13481,-13481,2384,-13480,13478,-13478,13476,-13476,13474,13474,-13474,-13473,13472,-13473,-13472,-13471,13470,-13471,13469,-13469,13467,-13467,13465,-13465,13463,13463,-13463,13461,-13462,-13492,13490,-13490,13488,-13488,-13459,13458,-13487,-13486,13485,-13486,13485,-13486,-13485,-13320,-13319,13460,13318,-13460,13458,-13459,-13458,13457,-13458,-13457,-13456,13455,-13456,13455,-13456,13455,-13456,-13455,13453,13453,-13453]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 29"},"id":"0629","arcs":[[-13370,-13369,13367,-13368,-13367,13365,13365,-13365,13492,13493,13494,13495,-13496,13495,-13496,13496,13497,-13498,13497,13498,-13499,13498,13499,13500,-13501,13500,13501,-13339,13337]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 34"},"id":"0634","arcs":[[-13393,13391,13502,13503,13504,13505,-13506,13506,13507,13508,13509,13510,13511,-13512,13511,13512,13513,13514,13515,13516,13517,13518,13519,13520]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 32"},"id":"0632","arcs":[[13521,-13522,13521,13522,13523,-13524,13523,13524,13525,13526,-13527,13526,-13527,13527,13526,13528,13529,13530,13531,13532,-13532,13533,13534,13535,13536,13537,13538,13539,13540,13541,-13542,13541,-13542,13542,-9407,9405,-9405,9403,9403,-9403,9401,-9402,-9401,9399,-9400,9399,-9400,-9399,-9398,9397,-9398,-9397,9396,-9397,-9396,9394,-9395,-9394,-9393,9392,-9514,-9512,9511,-9513,-9512,-9511,9510,-9511,9510,-9511,9508,-9509,9508,9509,-9509,-9508,13543]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 43"},"id":"0643","arcs":[[13544,13545,-13546,13545,13546,13547,13548,13549,-13407,13405,-13405]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 35"},"id":"0635","arcs":[[-13543,13541,-13542,13541,-13542,-13541,13540,13541,13550,13551,-13552,13552,13551,13553,13554,13555,13556,-13557,13557,13558,13559,13560,-9410,9408,-9408]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 44"},"id":"0644","arcs":[[-13410,13408,-13408,-13550,-13549,13561,13562,13563,13564,13565,-13566,13565,-13566,13565,13566,13567,-13568,13568,13569,-13570,13569,13570,-9499,-9518,-9529,13571]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 28"},"id":"0628","arcs":[[-13364,13572,13573,-13574,13573,13574,13575,-13512,13511,-13512,-13511,-13510,13508,-13508,-13507,13505,-13506,-13505,13503,-13503,-13392,13391,-13392,-13391,13389,-13389,13388,-13389,-13388,-13344,-13343,13342,-13343,-13342,-13341,13340,-13341,-13340,-13502,-13501,13500,-13501,-13500,-13499,13498,-13499,-13498,13497,-13498,-13497,13495,-13496,13495,-13496,-13495,13493,-13493]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 27"},"id":"0627","arcs":[[-13363,13362,-13363,-13361,13360,13361,-13361,-13360,13358,-13358,13356,-13356,13354,-13354,-13353,13352,-13353,-13352,-3834,-3833,13576,13577,-13578,13577,-13578,13577,13578,-13552,13552,13551,-13552,-13551,-13542,-13541,-13540,13538,-13538,13536,-13536,13534,-13534,13531,-13533,-13532,-13531,13529,-13529,-13527,13527,13526,-13527,13526,-13527,-13526,13524,-13524,13523,-13524,-13523,-13522,13521,-13522,-13544,-9507,9505,-9505,9503,-9503,13579,-13514,-13513,-13576,-13575,-13574,13573,-13574,-13573]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 37"},"id":"0637","arcs":[[-13400,13399,-13400,-13399,13398,-13399,13398,-13399,-13398,13396,13396,-13396,13394,-13394,-13521,-13520,13580,-13547,-13546,13545,-13546,-13545,-13404,13403,-13404,-13403,13401,-13401]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 40"},"id":"0640","arcs":[[13519,-13520,-13519,13517,-13517,13515,-13515,-13514,13513,-13580,-9502,9500,-9500,-13571,-13570,13569,-13570,-13569,13567,-13568,-13567,-13566,13565,-13566,13565,-13566,13564,-13564,13562,-13562,13548,-13549,-13548,-13581]]},{"type":"Polygon","properties":{"stateid":"13","name":"Congressional District 5"},"id":"1305","arcs":[[-2982,2981,-2982,-2981,-12392,12390,-12390,12388,-12388,12374,12375,-12376,-12375,-12374,4574,4575,-4576,-4575,-4620,-4619,4618,-4619,-4618,4616,-4616,-4615,4614,-4615,-4614,-2991,2989,-2989,2987,-2987,2985,-2985,2983,-2983]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 2"},"id":"4202","arcs":[[-2969,2968,-2969,13581,13582,13583,-2951,2950,13584,13585,13586,-2891,-2890,-2889,2888,-2889,-2888,-2887,2885,-2886,-2885,-2972,2970,-2970]]},{"type":"Polygon","properties":{"stateid":"42","name":"Congressional District 13"},"id":"4213","arcs":[[-2966,2964,-2965,-2964,2957,-2963,-1920,-2962,2960,-2960,-2959,-2958,-2957,2955,-2956,2955,-2956,-2955,-2954,2953,-2954,-2953,2949,-2952,-2951,-2950,-2949,2947,-2947,2945,2943,-2944,2943,-2944,2943,2944,-2945,-2944,-2943,-2941,2941,-2942,2940,-2941,-2940,-2939,-2935,-2938,-2937,2936,-2937,-2936,2934,-2935,-2934,-2933,2932,-2933,-2932,2930,-2931,2929,-2929,2927,-2928,-2927,2926,-2927,-2926,2925,-2926,-2925,2922,2923,-2924,-2923,-2922,2917,-2921,2919,-2919,-2918,-2917,2915,-2916,-2915,-2914,-2913,2912,-13277,13275,-13275,-2924,-13274,-2903,-2902,-2901,2900,-2901,2900,-2901,-2900,-2899,-2898,-2897,2895,-2896,-2895,2894,-2895,-2894,2892,-2892,2890,-13587,13585,-13585,-2951,2950,-13584,13582,-13582,2968,-2969,-2968,-2967,-1924]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 42"},"id":"0642","arcs":[[-13561,13587,13588,13589,13590,13591,13592,-13593,13592,-13593,13592,13593,13594,13595,13596,13597,13598,13599,-13600,13600,13601,13602,13603,-13604,13603,13604,13605,13606,13607,-13608,13607,13608,13609,-13610,13609,13610,13611,-13612,13612,13611,13613,13614,13615,13616,13617,13618,13619,13620,13621,13622,13623,13624,13625,13626,13626,13626,13627,13628,13629,-13630,13629,13630,13631,13632,13633,13634,13635,13636,13637,13638,13637,13639,13640,13641,-13203,-13202,13201,-13202,-13201,13199,-13199,13197,-13197,13196,-13197,-13196,-13194,13193,13194,-13194,-13193,13191,13191,-13191,13189,13188,-13188,13186,9443,-9444,-9443,9441,-9487,-9411]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 41"},"id":"0641","arcs":[[-13559,13642,13643,13644,13645,-13616,13614,-13614,-13612,13612,13611,-13612,-13611,-13610,13609,-13610,-13609,-13608,13607,-13608,-13607,13605,-13605,-13604,13603,-13604,-13603,13601,-13601,13599,-13600,-13599,-13598,13596,-13596,13594,-13594,-13593,13592,-13593,13592,-13593,-13592,13590,-13590,13588,-13588,-13560]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 36"},"id":"0636","arcs":[[13646,-3787,3785,-3785,-4865,-4864,4863,-4864,-4863,-12833,-13206,13204,-13204,-13642,13640,-13640,-13638,-13639,-13638,-13637,13635,-13635,13633,-13633,13631,-13631,-13630,13629,-13630,13628,-13628,13626,13626,13626,-13626,13624,-13624,13622,-13622,13620,-13620,13618,-13618,13616,-13646,13644,-13644]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 31"},"id":"0631","arcs":[[-13579,-13578,13577,-13578,13577,-13578,-13577,3831,-3831,3829,-3830,-3829,3827,-3827,-3826,3825,-3826,-3825,3824,-3825,-3824,-3823,3821,-3822,-3821,3819,-3819,3817,3817,-3817,3814,-3816,-3815,-3814,3811,-3812,3811,3812,-3812,3810,-3810,-3809,3808,-3809,3808,-3809,-3808,-3807,3806,-3807,-3806,3804,-3804,3801,3802,-3803,-3802,-3801,3799,-3800,-3798,3798,-3799,3797,-3798,-3797,3795,-3795,3793,-3793,3791,3790,-3791,3790,-3791,-3790,3788,-3789,-3788,-13647,-13643,13558,-13559,-13558,13556,-13557,-13556,13554,-13554]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 7"},"id":"1707","arcs":[[13647,-13100,13648,-13094,13092,13092,-13092,-12287,-12286,12285,-12286,12284,-12284,-12283,12282,-12283,-12282,-12281,-12280,-13273,13270,-13061,13271,-13272,13060,-13271,-13270,13268,-13268,13266,-13267,-13266,-13065,-13064,13054,-13063,13056,-13062,-13061,-13060,13058,13649,13650,-13651,13651,13652,13653,-13653,13654,13652,13655,13656,13657,13658,-13105,13659,13102,-13103,-13102]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 4"},"id":"1704","arcs":[[-13101,-13100,-13099,13097,-13097,13095,-13095,-13649,13099,-13648,13101,13102,-13103,-13660,13104,-13659,-13658,13656,-13656,-13653,13654,13652,13653,-13653,-13652,13650,-13651,-13650,-13059,-13058,-13057,-13056,-13055,-13054,-13107,-13106,-13105,-13104,-13103,-13102]]},{"type":"Polygon","properties":{"stateid":"17","name":"Congressional District 9"},"id":"1709","arcs":[[-12218,-13118,-12215,-13117,-13116,13115,-13116,-12268,-12267,-12266,12265,-12266,-12265,12263,-12263,-12262,12261,-12262,-12261,-12260,12259,-12294,-12293,-12292,-12291,12290,-12291,-12290,-12289,-13091,12289,-13090,12292,-13089,-13088,13087,-13088,-13087,13085,-13121,-13120,13119,-13120,13119,-13120,-13119]]},{"type":"Polygon","properties":{"stateid":"06","name":"Congressional District 11"},"id":"0611","arcs":[[-12600,12598,12598,-12598,12595,-12597,-12596,-12595,-12594,12593,-12594,-12593,12592,-12593,-12592,12590,12590,12590,-12590,12588,-12588,12586,-12586,-8309,8307,-8307,-8129,-8128,8127,-8128,-8139,8137,-8137,8135,-8135,-8093,-8092,8091,-8092,-8091,-8090,8089,-8090,8089,-8090,8089,-8090,8089,-8090,-8089,-8088,8087,-8088,8087,-8088,-8087,-12506,-12505,12504,-12505,-12504,12502,-12502,12500,-12500,-12525,12521,-12524,-12997]]},{"type":"Polygon","properties":{"stateid":"47","name":"Congressional District 9"},"id":"4709","arcs":[[8390,-8390,-8389,8388,-8389,-8388,-7719,-7715,-7714,7712,-7712,-7711,7710,-7711,-7710,7708,-7708,7706,7706,-7706,-11200,-8392]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 32"},"id":"4832","arcs":[[12646,-12646,13660,13661,-13662,13661,13662,13663,-13664,13663,13664,13665,-13666,13665,13666,13667,-1046,-1045,12558,-12558,12556,-12556,-12555,-12554,12553,-12554,-12553,12550,-12551,12550,-12552,-12551,12549,-12549,12546,-12547,12546,12547,-12547,-12546,12544,-12544,12542,-12542,12540,-12577,-12574,12575,12573,12574,-12574,-12573,-12572,13668,13669,13670,13671,-13672,13671,13672,13673,-13674,13673,13674,-12670,13675,-13676,13675,13676,-12667,12652,-12653,-12652,-12651,12650,-12651,-12650,-12649,-12648]]},{"type":"Polygon","properties":{"stateid":"04","name":"Congressional District 5"},"id":"0405","arcs":[[13677,13678,13679,-13680,13679,13680,-4828,-4827,-11199]]},{"type":"Polygon","properties":{"stateid":"04","name":"Congressional District 7"},"id":"0407","arcs":[[13681,13682,13683,13684,13685,-11197,9545,-9546,-9545,9543,-9543]]},{"type":"Polygon","properties":{"stateid":"04","name":"Congressional District 9"},"id":"0409","arcs":[[-13686,13684,-13684,13686,13687,13688,13689,13690,13691,-13692,13691,13692,-13678,-11198]]},{"type":"Polygon","properties":{"stateid":"04","name":"Congressional District 6"},"id":"0406","arcs":[[13693,13694,-4837,4835,-4835,-4834,4833,-4834,-4833,-4832,4831,-4832,-4831,-4830,4829,-4830,-4829,-4828,4827,-13681,-13680,13679,-13680,-13679,-13693,-13692,13691,-13692,-13691,13689,-13689,13687,-13687,-13683,13695]]},{"type":"Polygon","properties":{"stateid":"04","name":"Congressional District 8"},"id":"0408","arcs":[[4844,-4844,-4843,4842,-4843,-4842,4840,-4840,4838,4838,-4838,-13695,13693,-13696,-13682,-9542,9540,-9540,-9539,9538,-9539,-9538,9536,-9536,-4847,-4846]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 3"},"id":"4803","arcs":[[-12643,12643,-12705,-1062,1060,-1060,-1059,1058,-1059,-1058,-1057,1055,-1056,-1055,-1054,1053,-1054,-1053,-1052,1051,-1052,-1051,-1050,1049,-1050,-1049,1047,-1047,-13668,13666,-13666,13665,-13666,-13665,-13664,13663,-13664,-13663,-13662,13661,-13662,-13661,-12645]]},{"type":"Polygon","properties":{"stateid":"48","name":"Congressional District 30"},"id":"4830","arcs":[[-8709,12691,-12692,-12691,-12690,12689,-12690,12688,-12688,-12687,12685,-12685,12683,12683,-12683,12681,12680,-12680,-12679,12678,-12679,-12678,12676,-12676,12674,-12674,12673,-12674,-12673,12671,-12671,-12670,-12669,12667,-12668,-12667,12652,-12653,12666,-13677,-13676,13675,-13676,12669,-13675,-13674,13673,-13674,-13673,-13672,13671,-13672,-13671,13669,-13669,12571,-12572,-12571,12569,12569,-12569,-12568,12567,-12568,-12567,-12565,12565,12564,-12565,-12564,12562,-12562,-12561,12560,-12561,-12560,8710,-8711,-8710]]},{"type":"Polygon","properties":{"stateid":"36","name":"Congressional District 1"},"id":"3601","arcs":[[-9670,-9663,9661,-10827,13696,5040,-5041,-5040,5038,-5038,5036,-5036,-5053,5051,-5051]]}]}},"arcs":[[[2792,5882],[0,1]],[[2792,5882],[1,0],[0,1]],[[2793,5883],[0,1],[0,-1]],[[2793,5883],[-1,0]],[[2792,5883],[0,1],[0,1]],[[2792,5885],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2793,5889],[1,0]],[[2794,5889],[0,1],[0,-1]],[[2794,5889],[1,0]],[[2795,5889],[0,-1],[0,1]],[[2795,5889],[1,0],[0,1]],[[2796,5890],[-1,0],[1,0]],[[2796,5890],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2805,5939],[0,1]],[[2805,5940],[0,1]],[[2805,5941],[1,0]],[[2806,5941],[0,1]],[[2806,5942],[0,1]],[[2806,5943],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2825,5944],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2849,5944],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0]],[[2853,5922],[0,1]],[[2853,5923],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2855,5940],[0,1],[0,-1]],[[2855,5940],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[2858,5934],[0,-1],[0,1]],[[2858,5934],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2856,5919],[0,-1]],[[2856,5918],[0,-1]],[[2856,5917],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,1],[0,1],[1,0]],[[2856,5894],[0,1]],[[2856,5895],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2868,5915],[0,1]],[[2868,5916],[0,1],[0,-1]],[[2868,5916],[1,0],[-1,0]],[[2868,5915],[1,0],[0,-1],[0,-1]],[[2869,5913],[0,-1]],[[2869,5912],[-1,0]],[[2868,5912],[0,1],[0,-1]],[[2868,5912],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0]],[[2865,5908],[0,1],[0,-1]],[[2865,5908],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1]],[[2864,5903],[-1,0],[1,0]],[[2864,5903],[0,-1],[0,-1],[0,-1],[-1,-2],[0,1],[0,1],[-1,1]],[[2862,5901],[0,1],[0,-1]],[[2862,5901],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2859,5863],[0,-1]],[[2859,5862],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2854,5862],[0,-1]],[[2854,5861],[0,-1],[-1,0],[0,-1],[0,-1]],[[2853,5858],[0,-1]],[[2853,5857],[0,-1],[0,-1],[-1,0],[0,-1]],[[2852,5854],[0,-1]],[[2852,5853],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2851,5860],[0,1],[0,-1]],[[2851,5860],[-1,0]],[[2850,5860],[0,-1],[-1,1],[1,0]],[[2850,5860],[0,1],[-1,0],[0,1],[0,1]],[[2849,5863],[1,0],[-1,0]],[[2849,5863],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2846,5862],[0,-1]],[[2846,5862],[-1,0],[0,-1]],[[2845,5861],[1,0]],[[2845,5861],[0,-1],[0,-1],[0,-1],[1,0]],[[2846,5858],[0,1],[0,-1]],[[2846,5858],[0,-1]],[[2846,5857],[0,-1]],[[2846,5856],[-1,0]],[[2845,5856],[0,-1],[0,1]],[[2845,5856],[-1,0]],[[2844,5856],[0,-1],[0,1]],[[2844,5856],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1]],[[2842,5870],[0,1],[0,-1]],[[2842,5870],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2841,5853],[0,-1]],[[2841,5852],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0]],[[2836,5860],[0,1],[0,-1]],[[2836,5860],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2837,5839],[0,-1],[0,1]],[[2837,5839],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1]],[[2842,5835],[1,0]],[[2843,5835],[0,-1]],[[2843,5834],[-1,0],[0,1]],[[2843,5834],[0,-1],[0,-1]],[[2843,5832],[0,-1]],[[2843,5832],[1,0],[0,-1]],[[2844,5831],[-1,0]],[[2844,5831],[0,-1],[-1,0],[1,0],[0,1]],[[2844,5831],[1,0],[0,1]],[[2845,5832],[0,1],[0,-1]],[[2845,5832],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1]],[[2845,5828],[1,0]],[[2846,5828],[0,-1]],[[2846,5827],[0,-1],[-1,0],[0,1],[0,1]],[[2845,5828],[-1,0],[-1,0]],[[2843,5828],[0,1],[0,-1]],[[2843,5828],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2842,5820],[0,-1],[0,1]],[[2842,5820],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2841,5831],[0,1]],[[2841,5831],[1,0],[0,1],[-1,0]],[[2841,5832],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2836,5831],[0,-1]],[[2836,5830],[-1,0]],[[2835,5830],[0,-1],[0,-1]],[[2835,5828],[1,0],[0,-1]],[[2836,5827],[-1,0]],[[2835,5827],[0,-1],[1,0],[0,1]],[[2835,5827],[0,1]],[[2835,5830],[0,1]],[[2835,5831],[0,1],[0,1],[0,1]],[[2835,5834],[-1,0],[1,0]],[[2835,5834],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0]],[[2834,5840],[0,-1],[0,1]],[[2834,5840],[-1,0],[0,1]],[[2833,5841],[0,1],[0,-1]],[[2833,5841],[-1,0],[0,-1],[0,-1],[-1,0]],[[2831,5839],[0,-1]],[[2831,5838],[-1,-1]],[[2830,5837],[0,-1],[0,1]],[[2830,5837],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2827,5835],[0,-1]],[[2827,5834],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2827,5823],[-1,0],[1,0]],[[2827,5823],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2827,5814],[0,1]],[[2827,5815],[0,1],[0,1]],[[2827,5817],[1,0]],[[2827,5817],[0,1]],[[2827,5818],[0,1],[0,-1]],[[2827,5818],[1,0]],[[2828,5818],[0,-1]],[[2828,5817],[1,0]],[[2829,5817],[0,-1]],[[2829,5816],[0,-1]],[[2829,5815],[1,0],[0,-1]],[[2830,5814],[0,-1]],[[2830,5813],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2831,5801],[0,-1]],[[2831,5800],[1,0]],[[2832,5800],[0,1],[0,-1]],[[2832,5800],[0,-1],[0,1]],[[2832,5800],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2835,5803],[0,1],[0,-1]],[[2835,5803],[0,-1]],[[2835,5802],[0,-1],[0,-1],[-1,0],[0,-1]],[[2834,5799],[0,-1],[0,1]],[[2834,5799],[1,0],[0,-1],[0,-1],[1,0]],[[2836,5797],[0,-1],[0,1]],[[2836,5797],[1,0],[0,-1],[0,-1],[0,-1]],[[2837,5794],[0,-1],[0,1]],[[2837,5794],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2839,5797],[0,1],[0,-1]],[[2839,5797],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2844,5787],[0,-1]],[[2844,5786],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2845,5780],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2845,5776],[0,-1]],[[2845,5775],[0,-1],[0,-1],[0,1],[0,1]],[[2845,5775],[-1,0]],[[2844,5775],[0,1]],[[2844,5776],[1,0]],[[2845,5776],[0,1],[0,1]],[[2845,5778],[0,1]],[[2845,5779],[0,1]],[[2845,5780],[-1,0],[0,-1],[0,-1]],[[2844,5778],[0,-1],[0,-1]],[[2844,5778],[-1,0],[0,1],[-1,-1],[0,-1]],[[2842,5777],[0,-1],[0,1]],[[2842,5777],[-1,0]],[[2841,5777],[0,-1]],[[2841,5776],[0,-1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[2832,5792],[0,1]],[[2832,5793],[0,1],[0,1],[0,-1],[0,-1]],[[2832,5793],[-1,0]],[[2831,5793],[0,-1],[0,1]],[[2831,5793],[-1,0],[0,1],[0,1]],[[2830,5795],[-1,0],[1,0]],[[2830,5795],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2829,5799],[0,-1],[0,1]],[[2829,5799],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2826,5795],[1,0],[-1,0]],[[2826,5795],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2826,5790],[0,-1],[0,1]],[[2826,5790],[-1,0],[0,1],[-1,0]],[[2824,5791],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0]],[[2821,5806],[0,-1]],[[2821,5805],[0,-1]],[[2821,5806],[-1,0]],[[2820,5806],[0,1],[0,-1]],[[2820,5806],[0,-1]],[[2820,5805],[0,-1]],[[2820,5805],[1,0]],[[2821,5804],[-1,0]],[[2820,5804],[0,-1],[0,-1],[-1,0]],[[2819,5802],[0,1],[0,-1]],[[2819,5802],[0,-1],[-1,0]],[[2818,5801],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2817,5789],[0,-1],[0,-1]],[[2817,5787],[0,-1]],[[2817,5786],[0,-1]],[[2817,5785],[-1,0]],[[2817,5785],[-1,1]],[[2816,5786],[0,-1]],[[2816,5786],[0,1],[0,-1]],[[2816,5786],[1,1]],[[2817,5789],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0]],[[2818,5801],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2818,5811],[0,1]],[[2818,5811],[1,0],[-1,0]],[[2818,5812],[1,0],[0,1],[0,1]],[[2819,5814],[0,1],[0,-1]],[[2819,5814],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0]],[[2821,5811],[0,-1],[0,-1],[0,1],[0,1]],[[2821,5811],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2824,5832],[0,1]],[[2824,5833],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2821,5849],[0,1]],[[2821,5850],[0,1]],[[2821,5851],[0,1]],[[2821,5852],[1,0],[0,1],[0,1],[0,1]],[[2822,5855],[-1,0],[1,0]],[[2822,5855],[0,1],[0,-1]],[[2822,5855],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2824,5850],[-1,-1],[1,0],[0,1]],[[2824,5850],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[1,0]],[[2827,5848],[0,-1]],[[2827,5848],[1,0],[-1,-1]],[[2827,5847],[0,-1],[1,-2],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2831,5862],[1,0],[-1,0]],[[2831,5862],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2830,5868],[0,1],[0,-1]],[[2830,5868],[1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0]],[[2829,5872],[0,-1]],[[2829,5871],[-1,0]],[[2828,5871],[0,-1],[0,1]],[[2828,5871],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1]],[[2825,5870],[0,-1],[0,1]],[[2825,5870],[-1,0]],[[2824,5870],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1]],[[2824,5870],[0,1]],[[2824,5871],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[2822,5878],[0,-1],[0,-1]],[[2822,5876],[1,0],[0,-1],[-1,0],[0,1]],[[2822,5878],[0,1]],[[2822,5879],[0,1],[0,-1]],[[2822,5879],[1,0]],[[2823,5879],[0,1],[0,-1]],[[2823,5879],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2823,5888],[-1,0],[1,0]],[[2823,5888],[0,1],[-1,0],[0,1]],[[2822,5890],[0,1]],[[2822,5891],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2817,5868],[0,-1]],[[2817,5867],[0,-1],[0,1]],[[2817,5867],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2815,5872],[0,1],[0,-1]],[[2815,5872],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,5],[0,1],[1,0]],[[2807,5900],[0,-1],[0,1]],[[2807,5900],[1,0],[1,0]],[[2809,5900],[0,-1],[0,1]],[[2809,5900],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2810,5922],[0,-1],[0,1]],[[2810,5922],[-1,0]],[[2809,5922],[0,-1]],[[2809,5921],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2808,5913],[0,-1],[0,1]],[[2808,5913],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2805,5916],[0,1],[0,-1]],[[2805,5916],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0]],[[2804,5902],[0,-1],[0,1]],[[2804,5902],[-1,0]],[[2803,5902],[0,1]],[[2803,5903],[-1,0]],[[2802,5903],[0,-1],[0,1]],[[2802,5903],[0,1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2800,5902],[0,-1]],[[2800,5901],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2796,5872],[-1,0],[0,1]],[[2795,5873],[0,1]],[[2795,5874],[-1,0]],[[2794,5874],[0,-1]],[[2794,5873],[0,-1]],[[2794,5872],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2793,5875],[0,1]],[[2793,5876],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2817,5732],[0,1],[0,-1]],[[2817,5732],[1,0]],[[2818,5732],[0,1]],[[2818,5733],[1,0],[0,-1],[0,-1]],[[2819,5731],[1,0]],[[2819,5731],[1,1]],[[2820,5732],[0,-1]],[[2820,5732],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,3],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2849,5944],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2871,5944],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2880,5944],[0,-5],[1,-9],[0,-6],[0,-2],[1,-2],[1,-11],[0,-7],[0,-1],[1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,-5],[1,-7],[0,-1],[0,-1],[1,-2],[1,-12],[0,-3],[1,-4],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-3],[0,-2],[1,-3],[0,-2],[0,-3],[0,-3],[0,-1],[0,-4],[0,-2],[0,-2],[0,-2],[0,-1],[0,-4],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-5],[-1,-2],[0,-1],[-1,-3],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[2833,5695],[0,-1]],[[2833,5695],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2829,5715],[0,1],[0,-1]],[[2829,5715],[0,-1],[-1,-4],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,1],[0,-1]],[[2825,5696],[0,-1]],[[2825,5695],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0]],[[2822,5692],[0,-1],[0,-1],[0,1],[0,1]],[[2822,5692],[-1,0],[0,-1]],[[2821,5691],[0,-1]],[[2821,5690],[-1,0]],[[2820,5690],[0,1]],[[2820,5691],[1,0]],[[2820,5691],[0,1],[0,-1]],[[2820,5691],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2819,5686],[1,0]],[[2820,5686],[0,-1],[0,1]],[[2820,5686],[1,0]],[[2821,5686],[0,-1],[0,1]],[[2821,5686],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2821,5679],[0,-1]],[[2821,5678],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[2822,5673],[0,1],[0,-1]],[[2822,5673],[0,-1],[0,1]],[[2822,5673],[-1,0]],[[2821,5673],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[2821,5673],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1]],[[2819,5686],[-1,0]],[[2818,5686],[0,-1],[0,1]],[[2818,5686],[0,1]],[[2818,5686],[-1,0],[0,1]],[[2817,5687],[1,0]],[[2817,5687],[0,1]],[[2817,5688],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2815,5691],[0,-1]],[[2815,5690],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2812,5692],[0,-1],[0,1]],[[2812,5692],[0,1]],[[2812,5693],[0,1]],[[2812,5694],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2814,5702],[0,1]],[[2814,5703],[-1,0],[0,1]],[[2813,5704],[0,1]],[[2813,5705],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0]],[[2998,6608],[0,1]],[[2998,6608],[1,0]],[[2999,6608],[0,1]],[[2999,6608],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0]],[[3002,6598],[0,1]],[[3002,6598],[1,0],[0,1],[-1,0]],[[3002,6599],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[3006,6617],[1,0],[-1,0]],[[3006,6617],[0,1],[1,0],[0,1]],[[3007,6619],[-1,0],[1,0]],[[3007,6619],[0,1],[1,0],[0,-1],[1,0]],[[3009,6619],[0,1]],[[3009,6619],[0,-1],[0,-1],[0,-1],[1,0]],[[3010,6616],[0,1],[0,1]],[[3010,6618],[0,1],[0,-1]],[[3010,6618],[1,0],[0,-1],[0,-1],[-1,0]],[[3010,6616],[0,-1]],[[3010,6615],[0,-1],[0,-1],[0,-1]],[[3010,6612],[-1,0]],[[3009,6612],[0,1],[0,-1]],[[3009,6612],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[3006,6589],[0,-1],[0,1]],[[3006,6589],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0]],[[3009,6595],[0,1]],[[3009,6596],[-1,0],[1,0]],[[3009,6596],[0,1],[0,-1]],[[3009,6595],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[3010,6587],[0,-1],[0,1]],[[3010,6587],[1,0],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[3012,6571],[0,1],[0,-1]],[[3012,6571],[0,-1],[1,0]],[[3013,6570],[0,1],[0,-1]],[[3013,6570],[0,-1],[0,-1],[0,-1],[1,0]],[[3014,6567],[0,1]],[[3014,6567],[0,-1]],[[3014,6566],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[3010,6543],[0,-1]],[[3010,6543],[-1,0]],[[3010,6542],[-1,0]],[[3009,6542],[0,1]],[[3009,6543],[0,1],[0,-1]],[[3009,6542],[-1,0]],[[3008,6542],[0,-1]],[[3008,6542],[0,2],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[3004,6565],[0,1],[0,-1]],[[3004,6565],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0]],[[3001,6580],[0,1],[0,1]],[[3001,6582],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[3001,6582],[-1,0]],[[3000,6582],[0,1]],[[3000,6582],[0,-1],[0,1]],[[3000,6583],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[3000,6589],[0,1],[0,-1]],[[3000,6589],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[3014,6568],[0,1],[0,1],[0,1],[1,0]],[[3015,6571],[0,-1],[0,1]],[[3015,6571],[1,0],[0,1]],[[3016,6572],[-1,0],[1,0]],[[3016,6572],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[1,0]],[[3021,6597],[0,-1],[0,1]],[[3021,6597],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[3023,6593],[0,-1]],[[3023,6592],[1,0],[0,4]],[[3024,6596],[1,-2],[3,-1],[2,-1],[1,0],[2,-1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-2],[1,-2],[1,-1],[0,-4],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,2],[-1,1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[1,-1],[1,-2],[0,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[1,1],[0,2],[1,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,2],[-1,0],[0,2],[-1,1],[0,1],[0,-1],[-1,0],[-1,1],[0,-1],[-1,-1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1]],[[3011,6512],[0,6],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[3010,6615],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[3010,6612],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[3009,6608],[0,-1],[0,1]],[[3009,6608],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[3011,6602],[0,-1]],[[3011,6601],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1]],[[3013,6594],[0,-1],[0,1]],[[3013,6594],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[3012,6601],[0,1],[0,-1]],[[3012,6601],[-1,0]],[[3011,6602],[0,1],[1,0],[-1,1]],[[3011,6604],[1,0],[-1,0]],[[3011,6604],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[3012,6614],[0,1]],[[3012,6615],[0,1],[0,1],[0,1],[0,1],[0,1]],[[3012,6620],[0,1],[0,-1]],[[3012,6620],[1,0]],[[3013,6620],[0,-1],[0,-2],[1,1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[3014,6613],[0,1],[0,-1]],[[3014,6613],[1,0]],[[3015,6613],[0,-1],[0,1]],[[3015,6613],[0,1],[1,0],[0,1],[0,1],[0,1],[1,3],[0,1],[1,0],[3,0],[0,3]],[[3021,6624],[3,1]],[[3024,6625],[-1,-2],[0,-2],[-1,-11],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2]],[[2834,6210],[0,1]],[[2834,6211],[0,1],[0,-1]],[[2834,6211],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2836,6214],[0,1]],[[2836,6214],[1,0]],[[2836,6215],[1,0]],[[2837,6215],[0,-1]],[[2837,6215],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2838,6219],[0,1],[0,-1]],[[2838,6219],[-1,0]],[[2837,6219],[0,-1],[0,1]],[[2837,6219],[-1,0],[0,1]],[[2836,6220],[0,1],[0,1],[0,-1],[0,-1]],[[2836,6220],[-1,0],[0,1],[0,1]],[[2835,6222],[0,1]],[[2835,6223],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2836,6227],[0,1]],[[2836,6228],[1,0]],[[2837,6228],[0,1],[0,-1]],[[2837,6228],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0]],[[2841,6221],[0,-1]],[[2841,6220],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2841,6215],[-1,0],[1,0]],[[2841,6215],[0,-1],[0,-1],[0,-1],[1,0],[0,1]],[[2842,6213],[0,1],[0,-1]],[[2842,6213],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2841,6206],[1,0],[-1,0]],[[2841,6206],[0,-1],[0,-1]],[[2841,6204],[0,-1]],[[2841,6203],[0,-1],[0,-1],[-1,0]],[[2840,6201],[0,-1]],[[2840,6200],[1,0],[-1,0]],[[2840,6200],[0,-1],[0,-1]],[[2840,6198],[1,0],[0,-1]],[[2841,6197],[0,-1]],[[2841,6196],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2840,6183],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2839,6176],[0,-1],[0,-1]],[[2839,6176],[-1,0]],[[2838,6176],[0,1],[0,-1]],[[2838,6176],[0,-1],[0,1]],[[2838,6176],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0]],[[2836,6188],[0,-1],[0,1]],[[2836,6188],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1]],[[2838,6193],[-1,0],[1,0]],[[2838,6193],[0,1]],[[2838,6194],[0,1]],[[2838,6194],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2840,6201],[-1,0]],[[2839,6201],[0,1]],[[2839,6201],[0,-1],[0,1]],[[2839,6202],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2837,6209],[0,1],[0,-1]],[[2837,6209],[-1,0],[-1,0]],[[2835,6209],[0,-1],[0,-1]],[[2835,6207],[-1,0]],[[2835,6207],[-1,-1]],[[2834,6206],[1,0],[-1,0]],[[2834,6206],[0,1]],[[2834,6207],[0,1]],[[2834,6208],[0,1]],[[2834,6209],[1,0]],[[2834,6209],[0,1]],[[2058,6244],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2059,6252],[0,1]],[[2059,6253],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2061,6264],[1,0],[-1,0]],[[2061,6264],[0,1]],[[2061,6265],[1,0]],[[2062,6265],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1]],[[2064,6280],[-1,0],[1,0]],[[2064,6280],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[2064,6285],[0,1]],[[2064,6286],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2065,6292],[0,1]],[[2065,6293],[0,1],[1,0]],[[2066,6294],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2067,6289],[0,-1],[0,1]],[[2067,6289],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0]],[[2076,6293],[0,1]],[[2076,6294],[0,1],[1,0],[0,1],[-1,0],[0,2],[1,1],[0,1],[0,1],[0,1],[-1,0]],[[2076,6302],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[2076,6302],[0,-1],[0,1]],[[2076,6302],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2075,6307],[0,1],[0,-1]],[[2075,6307],[1,0],[1,0],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2078,6315],[0,1],[0,1],[0,-1],[0,-1]],[[2078,6315],[1,0],[1,0],[1,0],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2068,6345],[0,1],[0,1],[0,1],[0,1]],[[2068,6349],[0,1],[0,-1]],[[2068,6349],[-1,0],[0,-1],[0,-1],[0,-1]],[[2067,6346],[0,-1]],[[2067,6345],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2065,6361],[0,1],[0,-1]],[[2065,6361],[-1,0],[0,-1],[-1,0]],[[2063,6360],[0,1],[0,-1]],[[2063,6360],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2069,6461],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2093,6462],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1]],[[2149,6346],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-6],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-4],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-4],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2149,5996],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[2123,5996],[0,1]],[[2123,5997],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2063,5996],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,3],[0,1],[0,1]],[[2063,6031],[0,1],[0,-1]],[[2063,6031],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2069,6042],[0,1],[0,-1]],[[2069,6042],[1,0]],[[2070,6042],[0,-1],[0,1]],[[2070,6042],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2076,6053],[-1,0],[1,0]],[[2076,6053],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[1,0],[0,1]],[[2085,6091],[0,1],[0,-1]],[[2085,6091],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[2093,6083],[0,-1],[0,1]],[[2093,6083],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2093,6174],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2619,6112],[0,1],[0,-1]],[[2619,6112],[1,0]],[[2620,6112],[0,-1],[0,1]],[[2620,6112],[0,1]],[[2620,6113],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2621,6117],[0,1]],[[2621,6118],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,2],[1,0],[0,-2],[1,0],[1,0]],[[2629,6154],[0,-1]],[[2629,6153],[1,0]],[[2630,6153],[0,-1],[0,1]],[[2630,6153],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1]],[[2636,6168],[0,1],[0,1],[0,-1],[0,-1]],[[2636,6168],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2639,6159],[0,-1]],[[2639,6158],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0]],[[2640,6146],[0,-1],[0,1]],[[2640,6146],[1,0]],[[2641,6146],[0,-1],[0,1]],[[2641,6146],[1,0]],[[2642,6146],[0,1]],[[2642,6147],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2643,6152],[0,1]],[[2643,6153],[0,1],[0,1]],[[2643,6155],[1,0],[0,1],[-1,-1]],[[2643,6155],[0,1],[0,1],[0,1],[0,1]],[[2643,6159],[1,0]],[[2644,6159],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2647,6168],[0,-1],[0,1]],[[2647,6168],[1,0],[0,1],[0,1],[-1,0]],[[2647,6170],[0,-1],[0,1]],[[2647,6170],[0,1]],[[2647,6171],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2649,6183],[0,1],[0,-1]],[[2649,6183],[1,0]],[[2650,6183],[0,-1]],[[2650,6182],[1,0]],[[2650,6182],[0,-1],[0,1]],[[2651,6182],[0,-1]],[[2651,6181],[1,0]],[[2652,6181],[0,1],[0,-1]],[[2652,6181],[1,0]],[[2652,6181],[0,-1],[1,1]],[[2653,6181],[0,-1]],[[2653,6180],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0]],[[2662,6174],[0,-1]],[[2662,6173],[0,-1],[0,-1],[1,0]],[[2663,6171],[0,1],[0,-1]],[[2663,6171],[0,-1],[0,-1],[0,-1],[0,-1]],[[2663,6167],[0,-1]],[[2663,6166],[1,0],[-1,0]],[[2663,6166],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[2665,6161],[0,-1],[0,1]],[[2665,6161],[1,0],[0,-1]],[[2666,6160],[0,-1]],[[2666,6159],[1,0],[0,-1]],[[2667,6158],[0,-1]],[[2667,6157],[0,-1],[0,-1],[0,-1],[-1,0]],[[2666,6154],[0,1],[0,-1]],[[2666,6154],[0,-1],[0,-1],[0,-1]],[[2666,6151],[0,-1]],[[2666,6150],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[2665,6143],[0,-1]],[[2665,6142],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[2662,6135],[0,-1]],[[2662,6134],[0,-1],[1,0]],[[2663,6133],[0,1]],[[2663,6134],[-1,0]],[[2662,6135],[1,0]],[[2663,6135],[0,-1]],[[2663,6133],[0,-1]],[[2663,6132],[0,-1],[0,1]],[[2663,6132],[-1,0],[0,-1],[0,-1],[0,-1]],[[2662,6129],[1,0]],[[2662,6129],[0,-1],[1,0]],[[2663,6128],[0,-1],[0,1]],[[2663,6128],[0,1]],[[2663,6129],[0,1],[1,0]],[[2664,6130],[0,-1]],[[2664,6129],[0,-1],[0,-1],[0,-1],[1,0]],[[2665,6126],[0,1],[0,-1]],[[2665,6126],[0,-1]],[[2665,6125],[0,-1]],[[2665,6124],[0,-1]],[[2665,6123],[0,-1],[0,-1],[0,1],[0,1]],[[2665,6123],[1,0]],[[2666,6123],[0,-1],[0,1]],[[2666,6123],[1,0],[0,-1],[0,-1]],[[2667,6121],[0,-1],[0,1]],[[2667,6121],[-1,0],[0,-1],[0,-1]],[[2666,6119],[0,-1],[0,1]],[[2666,6119],[1,0],[0,-1],[0,-1]],[[2667,6117],[-1,0],[0,-1],[1,0]],[[2667,6116],[0,1]],[[2667,6116],[0,-1]],[[2667,6117],[1,0],[-1,0]],[[2667,6115],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2666,6098],[-1,0],[1,0]],[[2666,6098],[0,-1]],[[2666,6097],[0,-1]],[[2666,6096],[0,-1]],[[2666,6095],[0,-1],[0,1]],[[2666,6095],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2668,6092],[0,-1]],[[2668,6091],[1,0],[0,-1]],[[2669,6090],[0,-1]],[[2669,6089],[1,0],[0,-1]],[[2670,6088],[0,-1]],[[2670,6087],[1,0],[-1,0]],[[2670,6087],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2672,6080],[0,-1]],[[2672,6079],[1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[2672,6076],[0,-1]],[[2672,6075],[1,0],[0,-1],[0,1],[-1,0]],[[2672,6075],[0,-1],[0,1]],[[2672,6076],[-1,0]],[[2671,6076],[0,-1],[0,1]],[[2671,6076],[-1,0]],[[2670,6076],[0,-1],[0,1]],[[2670,6076],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2667,6073],[1,0],[-1,0]],[[2667,6073],[0,-1]],[[2667,6072],[0,-1]],[[2667,6071],[0,-1],[-1,0]],[[2666,6070],[0,-1],[0,1]],[[2666,6070],[0,1],[0,1],[-1,-1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1]],[[2656,6068],[-1,0],[1,0]],[[2656,6068],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2646,6058],[0,-1],[0,1]],[[2646,6058],[-1,0]],[[2645,6058],[0,-1]],[[2645,6057],[-1,0]],[[2644,6057],[0,1],[0,-1]],[[2644,6057],[-1,0],[0,1]],[[2643,6058],[0,1]],[[2643,6059],[-1,0]],[[2642,6059],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2640,6071],[0,1]],[[2640,6072],[0,1]],[[2640,6073],[-1,0],[0,-1],[0,1],[1,0]],[[2640,6073],[0,1],[-1,0],[0,1]],[[2639,6075],[0,1]],[[2639,6076],[0,1]],[[2639,6077],[0,1]],[[2639,6078],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2638,6083],[0,1]],[[2638,6084],[-1,0]],[[2637,6084],[0,1],[0,1],[0,-1],[0,-1]],[[2637,6084],[-1,0],[0,-1],[0,-1]],[[2636,6082],[0,-1],[0,1]],[[2636,6082],[-1,0],[0,1]],[[2635,6083],[0,1]],[[2635,6084],[0,1],[0,1],[-1,0]],[[2634,6086],[0,1]],[[2634,6087],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0]],[[2633,6091],[1,1],[-1,0]],[[2633,6092],[0,-1]],[[2633,6092],[0,1],[0,1],[1,1],[0,1]],[[2634,6096],[-1,0],[1,0]],[[2634,6096],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2636,6104],[0,-1],[0,1]],[[2636,6104],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2635,6109],[0,1],[0,-1]],[[2635,6109],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1]],[[2630,6100],[0,1],[0,1]],[[2630,6100],[-1,0],[0,1],[1,1]],[[2630,6102],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1]],[[2629,6108],[1,1],[-1,0],[0,-1]],[[2629,6108],[-1,0],[0,-1],[0,-1],[-1,0]],[[2627,6106],[0,1],[0,-1]],[[2627,6106],[-1,0],[0,1]],[[2626,6107],[0,1],[0,-1]],[[2626,6107],[-1,0]],[[2625,6107],[0,-1]],[[2625,6106],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2623,6100],[0,1]],[[2623,6100],[0,-1],[0,1]],[[2623,6101],[-1,0]],[[2622,6101],[0,-1]],[[2622,6100],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2620,6103],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1]],[[2620,6103],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2569,5562],[-1,0],[1,0]],[[2569,5562],[0,1]],[[2569,5563],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0]],[[2569,5567],[0,1]],[[2569,5568],[0,1],[1,0],[0,1],[0,1]],[[2570,5571],[0,1]],[[2570,5572],[0,1]],[[2570,5573],[0,1]],[[2570,5574],[1,0]],[[2571,5574],[0,-1]],[[2571,5573],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2574,5590],[1,0],[-1,0]],[[2574,5590],[0,1],[0,1],[1,0],[0,1]],[[2575,5593],[0,1]],[[2575,5594],[1,0]],[[2576,5594],[0,-1],[0,1]],[[2576,5594],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2578,5603],[0,-1],[0,1]],[[2578,5603],[0,1]],[[2578,5604],[0,1]],[[2578,5605],[0,1]],[[2578,5606],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0]],[[2577,5610],[0,-1]],[[2577,5609],[-1,0],[0,-1],[0,-1],[0,-1]],[[2576,5606],[0,-1]],[[2576,5605],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2574,5600],[0,-1],[0,1]],[[2574,5600],[0,1],[-1,0]],[[2573,5601],[0,-1]],[[2573,5600],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2572,5604],[0,1],[0,-1]],[[2572,5604],[-1,0],[0,-1],[0,-1],[0,-1]],[[2571,5601],[0,-1],[0,1]],[[2571,5601],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1]],[[2570,5595],[0,1],[0,-1]],[[2570,5595],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2569,5587],[0,-1]],[[2569,5586],[0,-1]],[[2569,5585],[1,0],[-1,0]],[[2569,5585],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2568,5576],[0,-1],[0,-1],[0,1],[0,1]],[[2568,5576],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2565,5571],[0,-1],[0,1]],[[2565,5571],[0,1]],[[2565,5572],[0,1],[0,-1]],[[2565,5572],[-1,0]],[[2564,5572],[0,-1]],[[2564,5571],[-1,-1]],[[2563,5570],[0,2]],[[2563,5572],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2559,5588],[0,1],[0,-1]],[[2559,5588],[1,0]],[[2560,5588],[0,1]],[[2560,5588],[0,-1],[0,1]],[[2560,5589],[0,1],[1,0],[0,1],[0,1]],[[2561,5592],[0,1]],[[2561,5593],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1]],[[2569,5631],[0,1]],[[2569,5632],[0,1],[0,-1]],[[2569,5632],[1,0]],[[2570,5632],[0,1]],[[2570,5633],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2572,5640],[0,1]],[[2572,5641],[0,1],[1,0]],[[2573,5642],[0,-1],[0,1]],[[2573,5642],[0,1],[1,0]],[[2574,5643],[0,-1],[0,1]],[[2574,5643],[0,1]],[[2574,5644],[1,0],[-1,0]],[[2574,5644],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2576,5651],[0,1]],[[2576,5652],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[2577,5655],[0,-1],[0,1]],[[2577,5655],[0,1],[0,1]],[[2577,5657],[-1,0],[0,1],[1,0]],[[2577,5658],[0,1],[0,-1]],[[2577,5658],[0,-1]],[[2577,5658],[1,0],[0,1],[0,1]],[[2578,5660],[0,1]],[[2578,5661],[0,1],[1,0]],[[2579,5662],[0,-1],[0,1]],[[2579,5662],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2580,5667],[0,1],[0,-1]],[[2580,5667],[1,0]],[[2581,5667],[0,1],[0,-1]],[[2581,5667],[1,0]],[[2582,5667],[0,-1],[0,1]],[[2582,5667],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2585,5655],[0,1],[0,-1]],[[2585,5655],[0,-1],[1,0]],[[2586,5654],[0,1],[0,-1]],[[2586,5654],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2587,5644],[-1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2587,5641],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[2586,5634],[0,-1]],[[2586,5633],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2584,5628],[0,-1]],[[2584,5627],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1]],[[2586,5577],[-1,0],[1,0]],[[2586,5577],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2585,5564],[0,-1],[0,1]],[[2585,5564],[-1,0]],[[2584,5564],[0,1],[0,-1]],[[2584,5564],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2596,5512],[0,-1]],[[2596,5511],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2596,5503],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2587,5503],[0,1],[0,1],[0,-2]],[[2587,5503],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[2570,5493],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,3],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1]],[[2291,5641],[0,1]],[[2291,5642],[1,1]],[[2292,5643],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2294,5631],[0,-1],[0,1]],[[2294,5631],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0]],[[2303,5627],[0,1],[0,-1]],[[2303,5627],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[2305,5622],[0,1],[0,-1]],[[2305,5622],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2313,5625],[0,1]],[[2313,5626],[0,1],[0,1],[0,1],[1,0],[1,0]],[[2315,5629],[0,-1],[0,1]],[[2315,5629],[0,1],[1,0],[0,-1],[1,0]],[[2317,5629],[0,1]],[[2317,5630],[0,1],[0,-1]],[[2317,5630],[1,0],[0,1]],[[2318,5631],[0,1]],[[2318,5632],[-1,1],[1,0],[0,-1]],[[2318,5631],[1,0]],[[2319,5631],[0,1]],[[2319,5632],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1]],[[2323,5631],[0,1],[0,-1]],[[2323,5631],[1,0]],[[2324,5631],[0,-1],[0,1]],[[2324,5631],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1]],[[2327,5637],[0,1],[0,-1]],[[2327,5637],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2329,5640],[0,1],[0,-1]],[[2329,5640],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2331,5634],[0,1],[0,1],[0,-1],[0,-1]],[[2331,5634],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[2333,5633],[0,-1],[0,1]],[[2333,5633],[1,0]],[[2334,5633],[0,-1],[0,1]],[[2334,5633],[1,0]],[[2335,5633],[0,-1],[0,1]],[[2335,5633],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1]],[[2338,5635],[0,1]],[[2338,5636],[-1,1],[1,0]],[[2338,5637],[0,1],[0,-1]],[[2338,5637],[0,-1]],[[2338,5637],[1,0],[0,1],[0,1]],[[2339,5639],[-1,0]],[[2338,5639],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[2342,5640],[0,1],[0,-1]],[[2342,5640],[0,-1],[0,-1],[0,-1],[1,0]],[[2343,5637],[0,1]],[[2343,5638],[0,1],[0,-1]],[[2343,5637],[0,-1]],[[2343,5636],[0,-1],[0,-1],[0,1],[0,1]],[[2343,5638],[1,0],[0,-1]],[[2344,5637],[-1,0]],[[2344,5637],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2345,5632],[0,-1],[0,1]],[[2345,5632],[1,0]],[[2346,5632],[0,-1]],[[2346,5631],[0,-1],[0,-1],[1,0],[0,-1]],[[2347,5628],[0,-1],[0,-1]],[[2347,5626],[0,-1],[0,1]],[[2347,5626],[1,0]],[[2348,5626],[0,1],[0,1],[-1,0]],[[2348,5626],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2349,5621],[0,-1]],[[2349,5620],[0,-1],[0,-1],[1,0]],[[2350,5618],[0,-1],[0,1]],[[2350,5618],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[2351,5618],[0,-1]],[[2351,5618],[1,0],[0,1]],[[2352,5619],[0,1],[0,-1]],[[2352,5619],[0,-1],[0,1]],[[2351,5617],[1,0]],[[2352,5617],[0,-1]],[[2352,5616],[0,-1]],[[2352,5615],[1,0]],[[2353,5615],[0,1],[0,-1]],[[2352,5615],[0,-1],[1,-1]],[[2353,5613],[0,-1]],[[2353,5613],[0,1]],[[2353,5614],[0,1]],[[2353,5614],[1,0],[0,-1],[-1,0]],[[2353,5612],[1,0]],[[2354,5612],[0,-1],[0,1]],[[2354,5612],[1,0]],[[2355,5612],[0,1]],[[2355,5612],[0,-1]],[[2355,5613],[1,0],[-1,0]],[[2355,5611],[0,-1],[0,-1]],[[2355,5609],[0,-1],[0,1]],[[2355,5609],[1,0]],[[2356,5609],[0,1],[0,1],[0,-1],[0,-1]],[[2356,5609],[1,0]],[[2357,5609],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[2357,5609],[1,1],[0,-1]],[[2358,5609],[-1,0]],[[2357,5609],[0,-1]],[[2357,5608],[0,-1],[0,1]],[[2357,5608],[1,0]],[[2358,5608],[0,1]],[[2358,5608],[0,-1],[0,-1]],[[2358,5606],[-1,0],[0,-1],[1,0]],[[2358,5605],[0,1]],[[2358,5606],[1,0],[0,-1]],[[2359,5605],[-1,0]],[[2358,5605],[0,-1],[1,0]],[[2359,5604],[0,-1],[0,1]],[[2359,5604],[0,1]],[[2359,5604],[1,0]],[[2360,5604],[0,1]],[[2360,5605],[0,1]],[[2360,5606],[0,1],[1,0],[0,-1],[0,-1]],[[2361,5605],[-1,0]],[[2360,5604],[1,0]],[[2361,5604],[0,1]],[[2361,5604],[0,-1],[-1,0],[0,-1]],[[2360,5602],[0,-1],[0,1]],[[2360,5602],[1,0],[0,-1]],[[2361,5601],[0,-1]],[[2361,5600],[1,-1]],[[2362,5599],[0,-1]],[[2362,5599],[1,0]],[[2363,5599],[0,1],[0,-1]],[[2363,5599],[0,-1],[-1,0]],[[2362,5598],[0,-1]],[[2362,5597],[0,-1],[0,-1],[1,0],[1,0],[0,1]],[[2364,5596],[0,1]],[[2364,5597],[-1,0],[1,0]],[[2364,5597],[0,1],[0,-1]],[[2364,5596],[1,0]],[[2365,5596],[0,1]],[[2365,5597],[0,1],[0,1],[0,-1],[0,-1]],[[2365,5597],[1,0]],[[2366,5597],[0,1]],[[2366,5598],[0,1],[0,1],[1,0]],[[2367,5600],[0,-1]],[[2367,5599],[-1,-1]],[[2366,5597],[0,-1],[1,0],[0,1],[0,1]],[[2367,5598],[1,0]],[[2368,5598],[0,-1],[0,-1],[0,1],[0,1]],[[2368,5598],[0,1]],[[2368,5599],[-1,-1]],[[2367,5598],[0,1]],[[2367,5600],[1,-1]],[[2368,5599],[0,1]],[[2368,5600],[0,1],[0,-1]],[[2368,5600],[1,0],[0,-1],[0,-1]],[[2369,5598],[0,-1],[0,1]],[[2369,5598],[1,0]],[[2370,5598],[0,-1],[0,-1],[0,1],[0,1]],[[2370,5598],[1,0]],[[2371,5598],[0,1]],[[2371,5599],[0,1],[0,-1]],[[2371,5598],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4]],[[2372,5534],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2372,5496],[-1,0]],[[2371,5496],[0,-1],[0,1]],[[2371,5496],[0,1],[0,1]],[[2371,5498],[-1,0]],[[2370,5498],[0,-1],[0,1]],[[2370,5498],[0,1],[0,-1]],[[2371,5498],[0,1],[0,1]],[[2371,5500],[-1,0],[1,0]],[[2371,5500],[0,1],[-1,0]],[[2370,5501],[0,1]],[[2370,5502],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2368,5497],[0,-1],[0,1]],[[2368,5497],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2366,5503],[0,-1],[0,1]],[[2366,5503],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2364,5500],[0,-1]],[[2364,5499],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2354,5506],[0,1],[0,1],[0,-1],[0,-1]],[[2354,5506],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,1],[-1,0],[0,1],[-1,0]],[[2352,5493],[0,-1]],[[2352,5492],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2347,5498],[0,1]],[[2347,5499],[0,1]],[[2347,5500],[0,1],[0,1]],[[2347,5502],[0,1]],[[2347,5503],[1,0]],[[2348,5503],[0,-1],[0,1]],[[2347,5502],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1]],[[2344,5497],[0,-1]],[[2344,5496],[-1,0],[0,-1],[-1,0]],[[2342,5495],[0,-1]],[[2342,5494],[0,-1],[-1,0]],[[2341,5493],[0,-1],[0,1]],[[2341,5493],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2341,5527],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2341,5527],[-1,0],[-1,0]],[[2339,5527],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2328,5500],[0,-1]],[[2328,5499],[-1,0]],[[2327,5499],[0,-1],[0,1]],[[2327,5499],[0,1]],[[2327,5500],[-1,0]],[[2326,5500],[0,1]],[[2326,5501],[0,1],[-1,0]],[[2325,5502],[0,1]],[[2325,5503],[0,1],[0,-1]],[[2325,5503],[-1,1]],[[2324,5504],[0,-1],[0,1]],[[2324,5504],[0,1],[-1,0]],[[2323,5505],[0,1],[0,-1]],[[2323,5505],[-1,0],[0,1],[-1,0],[0,1]],[[2321,5507],[0,1]],[[2321,5508],[0,1]],[[2321,5509],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2303,5510],[0,2]],[[2303,5512],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,1],[1,0],[0,1],[0,1]],[[2305,5534],[0,1],[0,1]],[[2305,5536],[0,1],[0,-1]],[[2305,5536],[1,0]],[[2306,5536],[0,1]],[[2306,5537],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2306,5544],[0,1]],[[2306,5545],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2306,5562],[0,1]],[[2306,5563],[0,1],[0,1],[0,1],[0,1]],[[2306,5567],[0,1]],[[2306,5567],[1,0],[0,1],[-1,0]],[[2306,5568],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2304,5570],[0,1]],[[2304,5571],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2301,5567],[0,-1],[0,-1],[0,1],[0,1]],[[2301,5567],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2294,5562],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0]],[[2291,5580],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2402,5392],[1,0]],[[2403,5392],[0,1],[0,1],[0,1]],[[2403,5395],[-1,0],[1,0]],[[2403,5395],[0,1]],[[2403,5396],[0,1]],[[2403,5397],[0,1]],[[2403,5398],[-1,0],[1,0]],[[2403,5398],[0,1],[0,-1]],[[2403,5398],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2404,5413],[0,1]],[[2404,5414],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2404,5419],[0,1]],[[2404,5420],[0,1]],[[2404,5421],[0,1],[0,1]],[[2404,5423],[0,1]],[[2404,5424],[0,1],[0,1]],[[2404,5426],[0,1]],[[2404,5427],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1]],[[2406,5434],[0,1]],[[2406,5435],[1,0],[0,1]],[[2407,5436],[-1,0],[1,0]],[[2407,5436],[0,1]],[[2407,5437],[0,1]],[[2407,5438],[0,1],[0,1]],[[2407,5440],[0,1]],[[2407,5441],[0,1]],[[2407,5442],[0,1]],[[2407,5443],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2406,5498],[0,1]],[[2406,5499],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[2413,5503],[0,-1]],[[2413,5502],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[2421,5483],[0,1],[0,-1]],[[2421,5483],[1,0],[0,1],[1,0],[0,1],[0,1]],[[2423,5486],[0,1]],[[2423,5487],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2427,5533],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2443,5533],[0,-1],[0,1]],[[2443,5533],[1,0]],[[2444,5533],[0,-1]],[[2444,5532],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2452,5532],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2456,5490],[0,1],[0,-1]],[[2456,5490],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2455,5478],[0,-1]],[[2455,5477],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2455,5478],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0]],[[2457,5467],[0,1],[0,-1]],[[2457,5467],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[2459,5456],[0,-1],[0,1]],[[2459,5456],[1,0]],[[2460,5456],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[2460,5456],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2458,5449],[0,-1],[0,1]],[[2458,5449],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1]],[[2457,5442],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1]],[[2457,5442],[-1,0],[0,1],[0,1],[-1,-1],[0,-1]],[[2455,5442],[0,-1],[0,1]],[[2455,5442],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0]],[[2455,5431],[0,-1],[0,1]],[[2455,5431],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2455,5436],[0,1],[0,-1]],[[2455,5436],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,1]],[[2453,5424],[0,1],[0,-1]],[[2453,5424],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[2449,5399],[0,-1]],[[2449,5398],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2449,5399],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2447,5387],[0,1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[2448,5386],[0,1],[-1,0]],[[2447,5387],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2445,5371],[0,-1],[0,1]],[[2445,5371],[-1,0],[0,1],[-1,0],[0,1]],[[2443,5373],[0,1],[0,-1]],[[2443,5373],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2443,5369],[0,-1]],[[2443,5368],[0,-1],[1,0],[0,1],[1,0]],[[2445,5368],[0,1],[0,-1]],[[2445,5368],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[2442,5342],[0,1],[0,1]],[[2442,5344],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2441,5344],[0,-1],[0,1]],[[2441,5344],[1,0]],[[2442,5342],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2489,5300],[1,0],[1,0],[1,0]],[[2492,5300],[0,-1]],[[2492,5299],[0,-1],[0,-1],[0,-1]],[[2492,5296],[0,-1]],[[2492,5295],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2491,5289],[0,1],[0,-1]],[[2491,5289],[0,-1]],[[2491,5288],[0,-1]],[[2491,5287],[0,-1]],[[2491,5286],[0,-1]],[[2491,5285],[0,-1],[0,-1]],[[2491,5283],[0,-1]],[[2491,5282],[0,-1]],[[2491,5282],[-1,0],[1,0]],[[2491,5281],[0,-1]],[[2491,5280],[-1,0],[1,0]],[[2491,5280],[0,-1],[0,-1],[-1,0]],[[2490,5278],[0,1],[0,-1]],[[2490,5278],[0,-1]],[[2490,5277],[0,-1]],[[2490,5276],[0,-1]],[[2490,5275],[0,-1],[-1,0],[0,-1]],[[2489,5273],[0,-1]],[[2489,5272],[0,-1]],[[2489,5271],[1,0]],[[2489,5271],[0,-1],[0,1]],[[2490,5271],[0,-1],[0,-1]],[[2490,5269],[-1,0]],[[2489,5269],[0,-1]],[[2489,5268],[1,0],[-1,0]],[[2489,5268],[0,-1]],[[2489,5267],[0,-1]],[[2489,5266],[0,-1],[0,-1]],[[2489,5264],[0,-1]],[[2489,5263],[0,-1],[0,-1]],[[2489,5261],[-1,0]],[[2488,5261],[0,-1]],[[2488,5260],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0]],[[2478,5265],[0,1],[-1,0],[1,0],[0,-1]],[[2478,5265],[-1,0],[1,0]],[[2478,5265],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2478,5259],[0,-1]],[[2478,5258],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2473,5249],[1,0],[-1,0]],[[2473,5249],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2471,5256],[0,1],[0,-1]],[[2471,5256],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2469,5243],[0,1]],[[2469,5244],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1]],[[2467,5281],[0,1]],[[2467,5282],[-1,0]],[[2466,5282],[0,-1]],[[2466,5281],[0,-1],[0,1]],[[2466,5281],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1]],[[2461,5286],[0,-1],[0,-1],[0,1],[0,1]],[[2461,5286],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2458,5281],[0,-1],[0,1]],[[2458,5281],[-1,0]],[[2457,5281],[0,1],[0,-1]],[[2457,5281],[0,-1],[-1,0]],[[2456,5280],[0,-1],[0,1]],[[2456,5280],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2453,5275],[0,-1]],[[2453,5274],[1,0],[0,-1],[-1,0]],[[2453,5273],[0,1]],[[2453,5273],[-1,0]],[[2452,5273],[0,-1],[0,1]],[[2452,5273],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2452,5278],[0,1],[0,-1]],[[2452,5278],[-1,0]],[[2451,5278],[0,-1],[0,-1],[0,1],[0,1]],[[2451,5278],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2448,5265],[0,-1]],[[2448,5264],[0,-1],[0,-1],[0,-1],[0,-1]],[[2448,5260],[0,-1],[0,1]],[[2448,5260],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2441,5282],[0,-1],[0,-1],[0,1],[0,1]],[[2441,5282],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1]],[[2437,5301],[0,-1],[0,1]],[[2437,5301],[-1,0]],[[2436,5301],[0,1],[0,-1]],[[2436,5301],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[-1,-1],[0,-1]],[[2434,5285],[1,0],[-1,0]],[[2434,5285],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2436,5241],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1]],[[2433,5231],[0,1],[0,-1]],[[2433,5231],[-1,0],[0,-1],[-1,0]],[[2431,5230],[0,-1]],[[2431,5230],[0,1],[0,-1]],[[2431,5229],[-1,1]],[[2430,5230],[0,1]],[[2430,5231],[-1,0]],[[2429,5231],[0,-1],[0,1]],[[2429,5231],[0,1],[0,1],[-1,0],[0,1]],[[2428,5234],[0,1]],[[2428,5235],[-1,0]],[[2427,5235],[0,1],[0,-1]],[[2427,5235],[0,-1],[-1,0]],[[2426,5234],[0,-1],[0,1]],[[2426,5234],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2426,5241],[1,0],[-1,0]],[[2426,5241],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2426,5246],[0,1]],[[2426,5247],[1,0],[-1,0]],[[2426,5247],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2428,5250],[0,1],[0,-1]],[[2428,5250],[0,-1],[1,0]],[[2429,5249],[0,1],[0,-1]],[[2429,5249],[0,-1],[0,1]],[[2429,5249],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2428,5268],[1,0],[-1,0]],[[2428,5268],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2427,5275],[0,1],[0,-1]],[[2427,5275],[1,0]],[[2428,5275],[0,-1],[0,1]],[[2428,5275],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[2419,5297],[1,0],[-1,0]],[[2419,5297],[0,1]],[[2419,5298],[0,1]],[[2419,5299],[-1,0]],[[2418,5299],[0,1],[0,-1]],[[2418,5299],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2414,5287],[0,1]],[[2414,5288],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2622,5418],[1,0],[-1,0]],[[2622,5418],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2622,5423],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2625,5440],[-1,0],[1,0]],[[2625,5440],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2626,5444],[0,1]],[[2626,5445],[1,0]],[[2627,5445],[0,1]],[[2627,5446],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2624,5472],[0,1]],[[2624,5473],[0,1],[0,1]],[[2624,5475],[0,1],[0,1]],[[2624,5477],[1,0],[0,-1],[0,-1],[0,-1]],[[2625,5474],[0,-1]],[[2625,5473],[-1,0]],[[2624,5472],[1,1]],[[2625,5473],[0,-1]],[[2625,5472],[0,-1],[0,1]],[[2625,5474],[1,1],[0,1],[0,1],[0,1]],[[2626,5478],[1,0],[-1,0]],[[2626,5478],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2626,5483],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[2626,5483],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2638,5517],[0,1],[0,-1]],[[2638,5517],[1,0],[-1,0]],[[2638,5517],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2639,5512],[0,-1],[0,1]],[[2639,5512],[1,0]],[[2640,5512],[0,1],[0,-1]],[[2640,5512],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2642,5506],[0,-1]],[[2642,5506],[0,1],[0,-1]],[[2642,5505],[0,-1],[1,0]],[[2643,5504],[0,-1]],[[2643,5503],[1,0],[0,-1],[0,-1],[1,-1]],[[2645,5500],[0,1],[0,-1]],[[2645,5500],[0,-1]],[[2645,5499],[1,0]],[[2646,5499],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1]],[[2646,5499],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,2]],[[2648,5514],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[0,1]],[[2659,5515],[0,1],[0,-1]],[[2659,5515],[1,0]],[[2660,5515],[0,1],[0,-1]],[[2660,5515],[1,0]],[[2661,5515],[0,-1]],[[2661,5514],[0,-1],[0,1]],[[2661,5515],[0,1]],[[2661,5516],[0,1]],[[2661,5517],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2664,5516],[0,1],[0,1],[0,-1],[0,-1]],[[2664,5516],[0,-1],[1,0],[0,-1]],[[2665,5514],[0,-1]],[[2665,5513],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1]],[[2663,5501],[0,1],[0,-1]],[[2663,5501],[0,-1],[0,-1]],[[2663,5499],[0,-1]],[[2663,5498],[0,-1]],[[2663,5497],[0,-1]],[[2663,5496],[0,-1],[0,-1],[0,-1]],[[2663,5493],[0,-1],[0,1]],[[2663,5493],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[2660,5495],[0,1],[0,-1]],[[2660,5495],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2659,5477],[0,-1]],[[2659,5477],[0,1],[0,-2]],[[2659,5476],[0,-1],[0,-1],[-1,0]],[[2658,5474],[0,1],[0,-1]],[[2658,5474],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2657,5469],[0,-1],[0,-1],[0,1],[0,1]],[[2657,5469],[-1,0]],[[2656,5469],[0,1],[0,-1]],[[2656,5469],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,0],[1,0],[1,0],[1,0]],[[2660,5449],[0,-1],[0,1]],[[2660,5449],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2657,5393],[0,1]],[[2657,5394],[-1,0],[0,1]],[[2656,5395],[0,1]],[[2656,5396],[0,1]],[[2656,5397],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2648,5296],[1,0]],[[2649,5296],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2650,5285],[-1,0],[1,0]],[[2650,5285],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1]],[[2650,5281],[-1,0],[1,0]],[[2650,5281],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2649,5262],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2627,5270],[0,1],[0,-1]],[[2627,5270],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2624,5299],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2621,5340],[1,0],[-1,0]],[[2621,5340],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2622,5374],[-1,0],[1,0]],[[2622,5374],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2926,6456],[-1,0],[1,0]],[[2926,6456],[0,1]],[[2926,6457],[-1,0],[0,1],[0,1]],[[2925,6459],[0,1],[0,-1]],[[2925,6459],[1,0],[0,-1],[0,-1]],[[2926,6456],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2927,6452],[0,1],[0,-1]],[[2927,6452],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2928,6447],[-1,0],[1,0]],[[2928,6447],[0,-1]],[[2928,6446],[-1,0],[1,0]],[[2928,6446],[0,-1],[0,1]],[[2928,6447],[1,0]],[[2929,6447],[0,-1]],[[2929,6446],[0,-1],[0,1]],[[2929,6446],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2931,6455],[0,1],[0,-1]],[[2931,6455],[1,0],[0,-1],[0,-1],[0,-1]],[[2932,6452],[0,-1]],[[2932,6451],[0,-1],[0,-1],[0,-1]],[[2932,6448],[0,-1]],[[2932,6447],[0,-1],[0,-1],[0,-1]],[[2932,6444],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2931,6440],[0,-1]],[[2931,6439],[0,-1]],[[2931,6438],[-1,0],[0,1],[0,1]],[[2930,6440],[0,1],[0,-1]],[[2930,6440],[-1,0]],[[2929,6440],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2928,6434],[0,-1],[0,-1],[0,1],[0,1]],[[2928,6434],[-1,0],[0,1]],[[2927,6435],[0,1],[0,-1]],[[2927,6435],[-1,0]],[[2926,6435],[0,-1],[0,1]],[[2926,6435],[0,1],[0,1],[0,1],[0,1]],[[2926,6439],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,1]],[[2836,6767],[2,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,4],[1,1],[0,3]],[[2854,6776],[3,0],[4,-1],[3,-1],[4,-1]],[[2868,6773],[0,-6],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[2865,6754],[0,1]],[[2865,6755],[-1,0]],[[2864,6755],[0,1],[0,-1]],[[2864,6755],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2865,6748],[1,0]],[[2866,6748],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[2872,6719],[1,0],[-1,0]],[[2872,6719],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1]],[[2874,6715],[0,-1],[0,1]],[[2874,6715],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2876,6710],[0,-1]],[[2876,6709],[0,-1]],[[2876,6708],[0,-1],[0,1]],[[2876,6708],[-1,0],[0,-1],[0,-1],[0,-1]],[[2875,6705],[0,-1]],[[2875,6704],[1,0]],[[2876,6704],[1,0]],[[2877,6704],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1]],[[2867,6650],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1]],[[2840,6698],[-1,0],[-1,0],[-1,0],[-1,0]],[[2836,6698],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,6],[0,4],[0,29]],[[1533,7073],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1]],[[1545,7073],[0,1],[0,-1]],[[1545,7073],[1,0],[0,-1],[1,0],[1,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,0]],[[1556,7060],[0,-1]],[[1556,7059],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[1572,7003],[0,-1]],[[1572,7002],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1]],[[1573,6984],[0,-1],[0,1]],[[1573,6984],[1,0]],[[1574,6984],[0,1],[0,-1]],[[1574,6984],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[1573,6979],[1,0],[-1,0]],[[1573,6979],[0,-1]],[[1573,6978],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1569,6956],[1,0],[-1,0]],[[1569,6956],[-1,0],[0,1]],[[1568,6957],[0,1],[0,-1]],[[1568,6957],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0]],[[1565,6950],[0,-1]],[[1565,6949],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[1565,6937],[-1,0]],[[1564,6937],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0]],[[1547,6951],[0,1],[0,-1]],[[1547,6951],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[1555,6999],[0,-1],[0,1]],[[1555,6999],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0]],[[1536,7017],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2661,5950],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2663,5954],[0,1]],[[2663,5955],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2678,5979],[-1,0],[1,1]],[[2678,5980],[0,-1]],[[2678,5980],[1,0],[0,-1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1]],[[2683,5991],[1,0],[-1,0]],[[2683,5991],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2685,5997],[0,1]],[[2685,5998],[1,0],[0,1],[0,1],[1,0]],[[2687,6000],[0,-1],[0,1]],[[2687,6000],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2688,6012],[0,1],[0,-1]],[[2688,6012],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2693,6021],[0,1]],[[2693,6022],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1]],[[2698,6029],[0,1]],[[2698,6030],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1]],[[2708,6059],[1,0],[0,-1],[0,-1]],[[2709,6057],[0,-1]],[[2709,6056],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2708,6050],[0,-1]],[[2708,6049],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2710,6037],[0,-1]],[[2710,6036],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2711,6032],[1,0],[-1,0]],[[2711,6032],[0,-1]],[[2711,6031],[1,0],[-1,0]],[[2711,6031],[0,-1],[1,0],[0,-1],[1,0]],[[2713,6029],[0,1],[0,-1]],[[2713,6029],[1,0]],[[2714,6029],[0,-1]],[[2714,6028],[0,-1]],[[2714,6027],[1,0]],[[2715,6027],[0,-1],[0,-1]],[[2715,6025],[0,-1]],[[2715,6024],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2721,6026],[0,1],[0,-1]],[[2721,6026],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2725,6035],[0,1],[0,-1]],[[2725,6035],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2729,6025],[0,-1],[0,1]],[[2729,6025],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,-1]],[[2736,6031],[0,-1],[0,1]],[[2736,6031],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2739,6046],[0,1],[0,-1]],[[2739,6046],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2742,6041],[0,-1],[0,1]],[[2742,6041],[1,0]],[[2743,6041],[0,1]],[[2743,6042],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0]],[[2749,6052],[0,1],[0,-1]],[[2749,6052],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2754,6055],[1,0],[-1,0]],[[2754,6055],[1,1],[0,1],[0,1]],[[2755,6058],[0,1],[0,-1]],[[2755,6058],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2756,6084],[0,1]],[[2756,6085],[0,1],[1,0],[0,1]],[[2757,6087],[0,1]],[[2757,6088],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2759,6099],[0,1]],[[2759,6100],[1,0],[-1,0]],[[2759,6100],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2762,6107],[0,-1],[0,1]],[[2762,6107],[1,0],[0,1],[1,0],[0,-1],[1,1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0]],[[2770,6099],[0,1],[0,-1]],[[2770,6099],[1,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[1,0]],[[2773,6098],[0,-1]],[[2773,6097],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2772,6086],[0,-1],[0,1]],[[2772,6086],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[2768,6089],[0,1],[0,-1]],[[2768,6089],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2764,6039],[1,0],[-1,0]],[[2764,6039],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2762,6030],[1,0]],[[2763,6030],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[2761,6026],[0,1],[0,1],[0,-1],[0,-1]],[[2761,6026],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1]],[[2761,6016],[0,-1]],[[2761,6015],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2760,5998],[0,-1]],[[2760,5997],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1]],[[2761,5978],[0,-1]],[[2761,5977],[0,-1],[0,-1],[1,-1],[0,-1]],[[2762,5973],[0,-1]],[[2762,5972],[0,-1],[1,0],[0,1]],[[2763,5972],[-1,0]],[[2762,5973],[1,0]],[[2763,5973],[0,-1]],[[2763,5973],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0]],[[2769,5973],[0,-1],[0,1]],[[2769,5973],[1,0]],[[2770,5973],[0,-1]],[[2770,5973],[0,1],[0,-1]],[[2770,5972],[0,-1],[0,-1]],[[2770,5970],[0,-1]],[[2770,5969],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2766,5943],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0]],[[2738,5946],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[2717,5949],[-1,0]],[[2717,5949],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[2704,5950],[0,-1],[0,1]],[[2704,5950],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2666,5950],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2561,5828],[0,-1],[0,1]],[[2561,5828],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1]],[[2565,5834],[0,1],[0,1],[0,-1],[0,-1]],[[2565,5834],[1,0]],[[2566,5834],[0,1],[0,-1]],[[2566,5834],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2568,5841],[0,-1],[0,1]],[[2568,5841],[0,1],[0,1],[0,1],[0,1]],[[2568,5845],[1,0],[-1,0]],[[2568,5845],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2569,5855],[0,-1],[0,1]],[[2569,5855],[1,0]],[[2570,5855],[0,-1]],[[2570,5854],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1]],[[2573,5848],[0,1],[0,-1]],[[2573,5848],[0,-1],[1,0],[0,-1],[1,0]],[[2575,5846],[0,1],[0,-1]],[[2575,5846],[0,-1],[0,1]],[[2575,5846],[1,0]],[[2576,5846],[0,-1],[0,1]],[[2576,5846],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2577,5851],[0,1]],[[2577,5852],[0,1],[0,1],[1,0]],[[2578,5854],[0,-1],[0,1]],[[2578,5854],[0,1],[0,1],[0,1],[1,0]],[[2579,5857],[0,-1],[0,1]],[[2579,5857],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[2579,5877],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2580,5883],[0,1]],[[2580,5884],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2581,5888],[0,1]],[[2581,5889],[0,1],[0,1],[0,-1],[0,-1]],[[2581,5889],[0,-2],[0,1]],[[2581,5889],[1,0],[0,1]],[[2582,5890],[0,1],[0,1]],[[2582,5890],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2585,5885],[0,-1]],[[2585,5884],[0,-1],[1,-1]],[[2586,5882],[0,1],[0,-1]],[[2586,5882],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[2590,5876],[0,1],[0,-1]],[[2590,5876],[1,0]],[[2591,5876],[0,-1],[0,1]],[[2591,5876],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1]],[[2591,5864],[0,-1]],[[2591,5863],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2589,5817],[1,0],[-1,0]],[[2589,5817],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1]],[[2589,5807],[-1,0],[1,0]],[[2589,5807],[0,-1],[0,-1],[0,-1]],[[2589,5804],[0,-1],[0,1]],[[2589,5804],[1,0]],[[2590,5804],[0,1],[0,-1]],[[2590,5804],[0,-1],[1,0],[0,1],[0,1]],[[2591,5805],[0,1],[0,-1]],[[2591,5805],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[2597,5801],[0,-1]],[[2597,5800],[0,-1]],[[2597,5800],[1,0],[0,-1]],[[2598,5799],[-1,0]],[[2598,5799],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2598,5829],[0,-1],[0,1]],[[2598,5829],[0,1],[0,1]],[[2598,5831],[-1,0],[1,0]],[[2598,5831],[0,1],[-1,0],[0,1],[0,1]],[[2597,5834],[1,0],[-1,0]],[[2597,5834],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2600,5862],[0,1]],[[2600,5863],[1,0]],[[2601,5863],[0,-1],[0,1]],[[2601,5863],[1,0]],[[2602,5863],[0,-1],[0,1]],[[2602,5863],[1,0]],[[2603,5863],[0,-1]],[[2603,5862],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1]],[[2607,5857],[0,1],[0,-1]],[[2607,5857],[0,-1],[0,1]],[[2607,5857],[1,0]],[[2608,5857],[0,1],[0,-1]],[[2608,5857],[1,0],[0,-1],[0,-1],[0,-1]],[[2609,5854],[0,-1],[0,1]],[[2609,5854],[1,0],[0,1],[1,0],[0,1]],[[2611,5856],[0,1],[0,-1]],[[2611,5856],[1,0],[0,-1],[1,0]],[[2613,5855],[0,1]],[[2613,5856],[0,1]],[[2613,5857],[-1,0]],[[2612,5857],[0,1],[0,1],[1,-2]],[[2613,5857],[1,0],[0,1],[1,0],[0,1],[1,0]],[[2616,5859],[0,1],[1,0],[-1,0],[0,-1]],[[2616,5859],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0]],[[2623,5853],[0,1],[0,-1]],[[2623,5853],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[2626,5853],[0,1]],[[2626,5854],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2630,5860],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2631,5852],[0,-1],[0,1]],[[2631,5852],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2633,5847],[0,-1],[0,1]],[[2633,5847],[1,0]],[[2634,5847],[0,1],[0,-1]],[[2634,5847],[0,-1]],[[2634,5846],[1,0],[-1,0]],[[2634,5846],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2634,5835],[-1,0],[1,0]],[[2634,5835],[0,-1],[-1,0],[0,-1],[0,-1]],[[2633,5832],[0,-1]],[[2633,5831],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2631,5822],[0,-1]],[[2631,5821],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2631,5790],[0,-1]],[[2631,5790],[-1,0],[0,-1]],[[2630,5789],[1,0]],[[2630,5789],[0,-1]],[[2630,5788],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2629,5784],[0,-1],[0,1]],[[2629,5784],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2626,5772],[0,-1],[0,1]],[[2626,5772],[0,1],[0,1],[0,1],[0,1]],[[2626,5776],[-1,0]],[[2625,5776],[0,1],[-1,0]],[[2624,5777],[0,-1],[0,-1],[0,1],[0,1]],[[2624,5777],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2623,5781],[0,1]],[[2623,5782],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2625,5797],[1,0],[-1,0]],[[2625,5797],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2624,5808],[0,1],[0,-1]],[[2624,5808],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2622,5814],[0,1],[0,-1]],[[2622,5814],[-1,1]],[[2621,5815],[0,-1],[0,1]],[[2621,5815],[0,1],[0,1],[-1,0]],[[2620,5817],[0,1],[0,-1]],[[2620,5817],[0,-1],[-1,0]],[[2619,5816],[0,1],[0,-1]],[[2619,5816],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2613,5777],[0,-1]],[[2613,5776],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2612,5765],[0,-1]],[[2612,5764],[-1,0],[0,-1],[0,-1]],[[2611,5762],[-1,0],[-1,0],[-1,0],[-1,0]],[[2607,5762],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2573,5763],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[2572,5800],[0,-1],[0,1]],[[2572,5800],[-1,0],[0,1],[0,1],[0,1]],[[2571,5803],[0,1]],[[2571,5804],[0,1],[-1,0],[0,1]],[[2570,5806],[0,1]],[[2570,5807],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2570,5812],[0,1]],[[2570,5813],[-1,0]],[[2569,5813],[0,-1]],[[2569,5812],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[2566,5815],[0,1]],[[2566,5816],[-1,0]],[[2565,5816],[0,1]],[[2565,5817],[-1,0],[0,-1],[0,-1],[-1,0]],[[2563,5815],[0,-1],[0,1]],[[2563,5815],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1]],[[2560,5817],[0,1]],[[2560,5818],[0,1],[1,1],[-1,0],[0,1]],[[2560,5821],[1,0],[-1,0]],[[2560,5821],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2700,6829],[1,-16],[0,-1],[0,-2],[1,-5],[0,-5],[1,-19],[0,-6],[1,-7],[0,-1],[0,-3],[0,-1],[0,-1],[-1,-10],[-1,-7],[-1,-7],[0,-1],[-1,-4],[0,-3],[-1,-7],[0,-4],[-1,-5],[0,-3],[0,-3],[-1,0],[0,-4],[0,-3],[-1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2]],[[2687,6633],[0,1],[0,1],[0,1],[0,2],[0,1],[0,5],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1]],[[2684,6641],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2683,6646],[1,0],[-1,0]],[[2683,6646],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2680,6646],[0,-1],[0,1]],[[2680,6646],[-1,0]],[[2679,6646],[0,1],[0,-1]],[[2679,6646],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2677,6647],[0,1],[0,1],[0,1]],[[2677,6650],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2667,6680],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1]],[[2664,6739],[0,1]],[[2664,6740],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2660,6765],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2663,6771],[0,1]],[[2663,6772],[0,1],[0,-1]],[[2663,6772],[1,0]],[[2664,6772],[0,1]],[[2664,6773],[0,1],[0,1],[0,1],[1,0]],[[2665,6776],[0,1],[0,1],[0,-1],[0,-1]],[[2665,6776],[1,1],[0,1],[0,1],[0,1],[-1,1],[-3,5],[-2,4]],[[2660,6790],[0,1],[2,5],[0,1],[1,1],[0,2],[2,4],[1,2],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[1,1],[0,2],[1,3],[2,4],[1,2],[0,1],[1,4],[1,0],[1,0],[1,0],[3,0],[6,0],[14,-1]],[[1670,6232],[1,0]],[[1671,6232],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[1679,6238],[0,-1],[0,1]],[[1679,6238],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,3],[0,3],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2]],[[1763,6282],[0,1],[0,-1]],[[1763,6282],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1766,6304],[-1,0],[1,0]],[[1766,6304],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,-1]],[[1783,6359],[0,1],[0,-1]],[[1783,6359],[1,0],[1,0],[1,0]],[[1786,6359],[0,1],[0,-1]],[[1786,6359],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1815,6359],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1815,5997],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[1812,5884],[0,-1],[0,1]],[[1812,5884],[-1,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0]],[[1804,5896],[0,-1],[0,1]],[[1804,5896],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0]],[[1799,5896],[0,-1],[0,1]],[[1799,5896],[0,1],[0,-1]],[[1799,5896],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[1795,5890],[1,-1],[0,-1]],[[1796,5888],[-1,1],[0,1]],[[1795,5890],[-1,2],[0,1],[-1,1],[0,1],[-1,0]],[[1792,5895],[0,1],[0,-1]],[[1792,5895],[-1,0]],[[1791,5895],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0]],[[1788,5892],[0,1],[0,1]],[[1788,5894],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1]],[[1783,5903],[0,1],[0,-1]],[[1783,5903],[-1,0],[0,-1],[-1,0],[0,-1]],[[1781,5901],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1]],[[1777,5896],[0,-1],[0,1]],[[1777,5896],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1773,5895],[0,-1],[0,-1],[0,1],[0,1]],[[1773,5895],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0]],[[1770,5899],[0,1],[0,-1]],[[1770,5899],[0,-1],[-1,0],[0,-1],[-1,0]],[[1768,5897],[0,1],[0,-1]],[[1768,5897],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3]],[[1765,5876],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,5],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,2],[0,1],[-1,2],[0,1],[0,1],[-1,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[-1,3],[0,2],[-1,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,3],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,2],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,3],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[-1,4],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-2,4],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,2]],[[1668,6175],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,2],[0,1],[1,0]],[[1649,6266],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,2],[0,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,4],[0,1],[0,4],[0,1],[0,1],[0,2],[0,3],[0,4],[0,2],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,2],[0,2]],[[1649,6577],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1732,6578],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1787,6577],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1815,6577],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-7],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1815,6461],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1668,6175],[-1,2],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,2]],[[1661,6196],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1]],[[2629,6265],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[2638,6264],[0,1],[0,-1]],[[2638,6264],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2642,6292],[0,1]],[[2642,6293],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2642,6298],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[2652,6295],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2652,6259],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[2644,6261],[-1,0]],[[2644,6261],[0,1],[-1,0]],[[2643,6262],[0,1],[0,-1]],[[2643,6262],[0,-1]],[[2643,6261],[0,-1],[0,-1],[0,-1]],[[2643,6258],[1,0],[0,1],[0,-1],[-1,0]],[[2643,6258],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2644,6253],[0,1],[0,-1]],[[2644,6253],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2643,6249],[0,-1]],[[2643,6248],[0,-1],[-1,0]],[[2642,6247],[0,-1]],[[2642,6246],[0,-1],[0,1]],[[2642,6246],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2641,6261],[0,1],[0,-1]],[[2641,6261],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2640,6257],[0,-1],[0,1]],[[2640,6257],[-1,0]],[[2639,6257],[0,-1],[0,1]],[[2639,6257],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2638,6261],[0,-1],[0,1]],[[2638,6261],[-1,0],[-1,0]],[[2636,6261],[0,1],[0,-1]],[[2636,6261],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2637,6253],[0,1],[0,-1]],[[2637,6253],[0,-1]],[[2637,6252],[1,0],[0,1],[1,0]],[[2639,6253],[0,-1]],[[2639,6253],[0,1],[0,-1]],[[2639,6252],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2638,6243],[0,-1],[0,-1]],[[2638,6241],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2629,6242],[0,-1]],[[2629,6242],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2380,6907],[0,1]],[[2380,6908],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2380,6935],[0,1]],[[2380,6936],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2382,6943],[0,1],[0,-1]],[[2382,6943],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2383,6950],[0,1],[0,-1]],[[2383,6950],[1,0]],[[2384,6950],[0,1],[0,-1]],[[2384,6950],[1,0],[0,1]],[[2385,6951],[0,1]],[[2385,6952],[1,0]],[[2386,6952],[0,1]],[[2386,6952],[1,1]],[[2387,6953],[-1,0]],[[2387,6953],[0,1],[0,1],[0,-1],[0,-1]],[[2387,6953],[1,0]],[[2388,6953],[0,-1]],[[2388,6952],[1,0]],[[2389,6952],[0,-1]],[[2389,6951],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2394,6941],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2393,6936],[0,-1],[0,1]],[[2393,6936],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2390,6920],[0,-1]],[[2390,6920],[-1,0],[1,0]],[[2390,6919],[-1,0],[0,-1],[0,-1]],[[2389,6917],[0,1],[0,-1]],[[2389,6917],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2392,6913],[0,1],[0,-1]],[[2392,6913],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[2396,6910],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2392,6902],[0,-1],[0,1]],[[2392,6902],[-1,0]],[[2391,6902],[0,-1],[0,1]],[[2391,6902],[-1,0],[0,1],[0,1],[-1,0]],[[2389,6904],[0,1],[0,-1]],[[2389,6904],[0,-1],[-1,0],[0,1],[-1,0]],[[2387,6904],[0,-1],[0,1]],[[2387,6904],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[2385,6901],[-1,0],[1,0]],[[2385,6901],[0,-1]],[[2385,6900],[-1,0]],[[2384,6900],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0]],[[2380,6904],[0,-1],[0,1]],[[2380,6904],[0,1],[0,1],[0,1]],[[2863,6382],[0,1]],[[2863,6383],[-1,0]],[[2862,6383],[0,1]],[[2862,6384],[0,1]],[[2862,6385],[1,0],[-1,0]],[[2862,6385],[0,1],[0,1],[1,0],[0,-1],[1,0]],[[2864,6386],[0,-1],[0,1]],[[2864,6386],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2865,6390],[0,1],[0,-1]],[[2865,6390],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1]],[[2865,6395],[0,1],[0,-1]],[[2865,6395],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,1]],[[2870,6393],[0,1],[0,-1]],[[2870,6393],[1,0]],[[2871,6393],[0,1]],[[2871,6394],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2879,6407],[0,1],[0,-1]],[[2879,6407],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1]],[[2882,6401],[0,1],[0,1],[0,-1],[0,-1]],[[2882,6401],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2885,6395],[0,-1],[0,1]],[[2885,6395],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0]],[[2889,6395],[0,-1]],[[2889,6394],[0,-1],[-1,0],[0,-1]],[[2888,6392],[1,0],[0,-1],[0,-1]],[[2889,6390],[0,-1],[0,-1],[0,1],[0,1]],[[2889,6390],[-1,0],[0,1]],[[2888,6391],[0,1]],[[2888,6391],[-1,0]],[[2887,6391],[0,1],[0,1],[0,-1],[0,-1]],[[2887,6391],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[1,-1],[0,-1],[1,-1]],[[2889,6375],[0,-1],[0,1]],[[2889,6375],[0,1],[1,0],[0,-1]],[[2890,6375],[0,-1]],[[2890,6374],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1]],[[2892,6361],[0,-1],[0,-1]],[[2892,6359],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0]],[[2890,6356],[0,-1],[0,1]],[[2890,6356],[1,1]],[[2891,6357],[0,-1],[0,-1]],[[2891,6355],[0,-1],[0,-1],[0,-1],[1,0]],[[2892,6352],[0,1],[0,1]],[[2892,6352],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2890,6345],[0,-1]],[[2890,6344],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2888,6338],[0,-1]],[[2888,6337],[0,-1],[0,1]],[[2888,6337],[-1,0],[0,-1],[0,-1]],[[2887,6335],[0,-1],[0,1]],[[2887,6335],[-1,0]],[[2886,6335],[0,-1],[0,1]],[[2886,6335],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2884,6339],[0,1],[0,-1]],[[2884,6339],[0,-1],[-1,0]],[[2883,6338],[0,-1],[0,-1],[0,1],[0,1]],[[2883,6338],[0,1],[0,1],[0,1],[-1,0]],[[2882,6341],[0,-1],[0,1]],[[2882,6341],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2881,6345],[0,-1]],[[2881,6345],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2881,6359],[0,1],[0,-1]],[[2881,6359],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2881,6363],[0,-1],[0,1]],[[2881,6363],[1,0]],[[2882,6363],[0,-1],[0,1]],[[2882,6363],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2880,6377],[0,-1]],[[2880,6376],[0,-1],[-1,0],[0,1],[1,0]],[[2880,6377],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1]],[[2876,6379],[0,1],[0,-1]],[[2876,6379],[-1,0]],[[2875,6379],[0,-1],[0,1]],[[2875,6379],[0,1]],[[2875,6380],[0,1]],[[2875,6381],[0,1]],[[2875,6381],[1,0]],[[2876,6381],[0,1]],[[2876,6381],[1,0]],[[2877,6381],[0,-1],[0,1]],[[2877,6381],[0,1]],[[2877,6382],[0,1],[0,-1]],[[2877,6382],[1,0],[0,1],[0,1],[0,1]],[[2878,6385],[-1,0]],[[2877,6385],[0,1],[0,1],[0,1]],[[2877,6388],[0,1]],[[2877,6389],[0,1]],[[2877,6390],[0,1],[0,-1]],[[2877,6390],[-1,0],[0,-1],[0,-1]],[[2876,6388],[1,0]],[[2876,6388],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2876,6383],[0,-1]],[[2876,6383],[-1,0]],[[2875,6383],[0,-1]],[[2875,6383],[0,1],[-1,1],[0,-1]],[[2874,6384],[0,-1]],[[2874,6383],[-1,0],[0,-1]],[[2873,6382],[0,-1],[0,-1],[0,-1]],[[2873,6379],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[-1,1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1]],[[2862,6372],[-1,0]],[[2861,6372],[0,1],[0,1]],[[2861,6374],[1,0],[-1,0]],[[2861,6374],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1]],[[2854,6359],[0,1]],[[2854,6360],[1,0],[0,1],[0,1]],[[2855,6362],[0,1]],[[2855,6363],[0,1],[0,-1]],[[2855,6363],[1,0],[0,1]],[[2856,6364],[0,1],[0,-1]],[[2856,6364],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1]],[[2875,6383],[-1,0]],[[2874,6383],[0,-1]],[[2874,6382],[0,-1],[0,1]],[[2874,6382],[-1,0]],[[2873,6379],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1]],[[2876,6357],[-1,0]],[[2875,6357],[0,-1],[-1,0],[0,-1]],[[2874,6355],[1,0],[-1,0]],[[2874,6355],[0,-1]],[[2874,6354],[0,-1],[-1,0],[0,-1]],[[2873,6352],[0,-1],[0,1]],[[2873,6352],[-1,0],[0,1]],[[2872,6353],[0,1],[0,-1]],[[2872,6353],[-1,0]],[[2871,6353],[0,1],[0,-1]],[[2871,6353],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1]],[[2870,6347],[1,0],[0,-1],[-1,0]],[[2870,6346],[0,1]],[[2870,6346],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2871,6340],[0,-1]],[[2871,6339],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1]],[[2870,6330],[1,0]],[[2871,6330],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2872,6326],[0,-1]],[[2872,6325],[0,-1]],[[2872,6324],[1,0],[0,-1]],[[2873,6323],[0,-1],[0,1]],[[2873,6323],[1,0],[0,1],[0,1]],[[2874,6325],[-1,0],[1,0]],[[2874,6325],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2879,6337],[-1,0],[1,0]],[[2879,6337],[0,1],[-1,0]],[[2878,6338],[0,1]],[[2878,6339],[0,1],[-1,0]],[[2877,6340],[0,-1],[0,1]],[[2877,6340],[-1,0],[1,0]],[[2877,6340],[-1,1],[1,0]],[[2877,6341],[0,1]],[[2877,6342],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0]],[[2881,6344],[0,-1]],[[2881,6343],[0,-1],[0,-1]],[[2881,6341],[0,-1]],[[2881,6340],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0]],[[2884,6332],[0,1],[0,-1]],[[2884,6332],[0,-1],[0,-1]],[[2884,6330],[1,0],[0,-1],[0,-1],[-1,0],[0,1]],[[2884,6329],[0,1]],[[2884,6329],[-1,0],[0,-1]],[[2883,6328],[0,-1],[0,-1],[-1,0],[0,1],[0,1]],[[2882,6328],[1,0]],[[2882,6328],[0,1],[0,-1]],[[2882,6328],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2880,6313],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2868,6313],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2866,6323],[0,1],[0,-1]],[[2866,6323],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2861,6339],[0,1]],[[2861,6340],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2860,6410],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0]],[[2873,6412],[0,1]],[[2873,6413],[1,-1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[2894,6443],[0,-1],[0,1]],[[2894,6443],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2895,6434],[0,-1]],[[2895,6433],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2894,6430],[0,1],[0,-1]],[[2894,6430],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2893,6419],[0,-1],[0,-1]],[[2893,6417],[-1,0],[0,-1],[1,0],[0,1]],[[2893,6419],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1]],[[2896,6423],[0,1],[0,-1]],[[2896,6423],[1,0]],[[2897,6423],[0,1]],[[2897,6423],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2897,6416],[0,-1]],[[2897,6415],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2854,6360],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2854,6366],[-1,0]],[[2854,6366],[0,1],[0,1],[0,1],[0,1]],[[2854,6370],[0,1]],[[2854,6370],[1,0],[-1,0]],[[2854,6371],[0,1],[0,1],[0,1]],[[2854,6374],[1,0],[0,1],[-1,0]],[[2854,6375],[0,-1]],[[2854,6375],[0,1],[0,1],[0,1]],[[2854,6378],[0,1]],[[2854,6379],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,2],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1]],[[1615,6001],[0,-1],[0,1]],[[1615,6001],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1615,6012],[0,1]],[[1615,6013],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1622,6040],[0,1]],[[1622,6041],[0,1]],[[1622,6042],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0]],[[1639,6070],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[1653,6000],[0,-1]],[[1653,5999],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[1656,5992],[0,1],[0,1],[1,0]],[[1657,5994],[0,1]],[[1657,5995],[0,1]],[[1657,5994],[0,-1],[0,-1],[-1,0]],[[1656,5992],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0]],[[1653,5980],[0,-1],[0,1]],[[1653,5980],[-1,0]],[[1652,5980],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1]],[[1654,5973],[0,1]],[[1654,5974],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0]],[[1658,5972],[0,-1]],[[1658,5971],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1658,5962],[-1,0],[0,-1],[0,-1],[-1,0]],[[1656,5960],[0,1],[0,-1]],[[1656,5960],[0,-1]],[[1656,5959],[1,0],[0,-1],[-1,0],[0,1]],[[1656,5960],[-1,0]],[[1655,5960],[0,1]],[[1655,5961],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0]],[[1652,5959],[0,-1],[0,-1],[0,1],[0,1]],[[1652,5959],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1]],[[1649,5970],[0,1]],[[1649,5971],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[1645,5974],[0,-1],[0,1]],[[1645,5974],[-1,0],[0,-1],[0,-1]],[[1644,5972],[0,-1],[0,1]],[[1644,5972],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0]],[[1641,5970],[0,-1],[0,1]],[[1641,5970],[0,1],[-1,0]],[[1640,5971],[0,1]],[[1640,5972],[0,1],[0,-1]],[[1640,5972],[-1,0],[0,1],[0,1]],[[1639,5974],[0,1]],[[1639,5975],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1]],[[1637,5987],[-1,0],[1,0]],[[1637,5987],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1634,5999],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[1634,5999],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[1624,5967],[0,-1]],[[1624,5967],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[1618,5978],[-1,0]],[[1617,5978],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[1616,5986],[0,1],[0,-1]],[[1616,5986],[-1,1]],[[1615,5987],[0,-1],[0,1]],[[1615,5987],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0]],[[1615,5992],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1658,5962],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1664,5951],[0,-1]],[[1664,5950],[0,-1],[0,-1]],[[1664,5948],[0,-1]],[[1664,5947],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1663,5886],[0,1]],[[1663,5887],[1,0],[0,1]],[[1664,5888],[0,1]],[[1664,5889],[1,0],[0,1]],[[1665,5890],[0,1]],[[1665,5891],[1,0]],[[1666,5891],[0,1],[0,-1]],[[1666,5891],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0]],[[1673,5893],[0,-1]],[[1673,5892],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1675,5878],[0,1],[0,-1]],[[1675,5878],[1,0],[0,1],[1,0]],[[1677,5879],[0,1]],[[1677,5880],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[1682,5856],[1,0],[-1,0]],[[1682,5856],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[1670,5800],[0,-1],[0,1]],[[1670,5800],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-2],[1,0],[0,1],[0,1],[1,0],[0,-2],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1677,5809],[1,0]],[[1677,5809],[0,1],[1,0],[0,-1]],[[1678,5809],[0,-1],[1,0]],[[1679,5808],[0,1],[0,-1]],[[1679,5808],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1]],[[1682,5803],[0,1],[0,-1]],[[1682,5803],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1679,5765],[0,-1],[0,-1],[0,2]],[[1679,5765],[-1,0],[0,1],[0,1],[0,3],[0,1],[0,2],[0,2],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,3],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[1654,5821],[0,-1]],[[1654,5820],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[1652,5815],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1643,5856],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1642,5865],[1,0],[-1,0]],[[1642,5865],[1,1]],[[1643,5866],[-1,0]],[[1642,5866],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1641,5870],[0,-1],[0,1]],[[1641,5870],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[1639,5876],[0,1]],[[1639,5877],[-1,0]],[[1638,5877],[0,1],[0,-1]],[[1638,5877],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[1635,5883],[0,1]],[[1635,5884],[0,1]],[[1635,5885],[-1,-1]],[[1634,5884],[0,1]],[[1634,5885],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1632,5892],[0,-1],[0,1]],[[1632,5892],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1631,5899],[0,1]],[[1631,5900],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1]],[[1630,5912],[1,0],[-1,0]],[[1630,5912],[0,1]],[[1630,5913],[1,0],[-1,0]],[[1630,5913],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[1632,5917],[0,1]],[[1632,5918],[1,0],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[1657,5996],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[1660,5984],[0,1],[0,-1]],[[1660,5984],[0,-1]],[[1660,5983],[0,-1],[0,1]],[[1660,5983],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,0]],[[1665,5970],[0,-1],[0,1]],[[1665,5970],[0,1]],[[1665,5971],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-7]],[[1669,5965],[0,-1],[0,1]],[[1669,5965],[0,1],[1,1]],[[1670,5967],[0,1]],[[1670,5968],[1,0]],[[1671,5968],[0,-1],[0,1]],[[1671,5968],[1,0],[1,0],[0,-1],[1,0]],[[1674,5967],[0,-1]],[[1674,5966],[0,-1],[0,-1],[1,0],[0,-1]],[[1675,5963],[-1,0],[1,0]],[[1675,5963],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1675,5957],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[1673,5929],[0,-1],[0,1]],[[1673,5929],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[1675,5907],[0,-1]],[[1675,5906],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2953,6479],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2955,6492],[0,1],[0,-1]],[[2955,6492],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2955,6499],[1,0],[-1,0]],[[2955,6499],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1]],[[2955,6518],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2956,6523],[0,1]],[[2956,6524],[1,0]],[[2957,6524],[0,1],[0,-1]],[[2957,6524],[1,0],[0,-1]],[[2958,6523],[0,-1],[0,1]],[[2958,6523],[1,0]],[[2959,6523],[0,1],[0,-1]],[[2959,6523],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0]],[[2961,6515],[0,-1],[0,1]],[[2961,6515],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2965,6529],[0,1],[0,1],[1,0]],[[2966,6531],[0,1],[0,-1]],[[2966,6531],[1,0],[-1,0]],[[2966,6531],[0,-1],[0,-1],[0,-1],[1,0]],[[2967,6528],[0,1]],[[2967,6528],[0,-1],[0,1]],[[2967,6528],[1,0]],[[2967,6529],[1,0],[0,-1]],[[2968,6528],[0,-1],[1,0],[0,-1],[1,0]],[[2970,6526],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2968,6493],[0,-1],[0,1]],[[2968,6493],[-1,0]],[[2967,6493],[0,-1]],[[2967,6492],[0,-1]],[[2967,6491],[0,-1]],[[2967,6490],[-1,0],[-1,0]],[[2965,6490],[0,1]],[[2965,6490],[0,-1],[0,1]],[[2965,6491],[-1,0],[0,-1],[-1,-1],[0,1]],[[2963,6490],[0,1],[0,-1]],[[2963,6490],[-1,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1]],[[2960,6493],[0,-1]],[[2960,6492],[0,-1],[-1,0],[0,-1],[0,-1]],[[2959,6489],[-1,0],[1,0]],[[2959,6489],[0,-1],[-1,-1]],[[2958,6487],[0,-1]],[[2958,6486],[0,-1],[-1,0]],[[2957,6485],[0,1]],[[2957,6486],[-1,0],[1,0]],[[2957,6485],[0,-1],[0,-1],[-1,0]],[[2956,6483],[0,1],[0,-1]],[[2956,6483],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,1],[-1,0]],[[2939,6475],[0,1],[0,1]],[[2939,6477],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2943,6505],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[0,-1]],[[2945,6500],[0,-1],[0,1]],[[2945,6500],[1,0],[0,1],[1,0],[1,0]],[[2948,6501],[0,1],[0,-1]],[[2948,6501],[1,-1]],[[2949,6500],[0,-1],[0,-1],[0,1],[0,1]],[[2949,6500],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2952,6504],[0,1]],[[2952,6505],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2953,6479],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2950,6475],[0,1],[0,-1]],[[2950,6475],[0,-3],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-3]],[[2945,6460],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[2941,6456],[-1,3],[0,1]],[[2940,6460],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2943,6523],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2944,6583],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2954,6583],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,1],[1,-1],[0,1],[0,1],[0,1]],[[2954,6556],[0,1],[0,-1]],[[2954,6556],[1,0]],[[2955,6556],[0,1],[0,1],[0,-1],[0,-1]],[[2955,6556],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2960,6559],[0,1],[0,-1]],[[2960,6559],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1]],[[2961,6568],[0,1],[0,-1]],[[2961,6568],[1,0],[1,0],[1,0]],[[2964,6568],[1,0]],[[2965,6568],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1]],[[2964,6547],[0,-1],[0,1]],[[2964,6547],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[2963,6537],[0,-1],[0,1]],[[2963,6537],[0,1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2960,6527],[0,-1],[0,1]],[[2960,6527],[1,0],[1,0]],[[2962,6527],[0,-1],[0,-1],[0,1],[0,1]],[[2962,6527],[0,1],[1,0],[0,-1]],[[2963,6527],[0,-1],[0,1]],[[2963,6527],[1,1],[0,1],[1,0]],[[2943,6505],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2310,5312],[1,0]],[[2311,5312],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,3],[0,1],[1,0],[1,0],[0,1],[0,1],[0,2],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2317,5332],[0,1],[0,-1]],[[2317,5332],[1,0]],[[2318,5332],[0,-1],[0,1]],[[2318,5332],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[2319,5334],[0,-1]],[[2319,5333],[0,-1]],[[2319,5332],[0,-1],[0,1]],[[2319,5332],[1,0]],[[2320,5332],[0,1],[0,1],[0,-1],[0,-1]],[[2320,5332],[1,0],[0,1],[0,1],[0,1]],[[2321,5335],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[2321,5337],[0,-1]],[[2321,5336],[0,-1]],[[2321,5335],[1,0],[0,1],[0,1]],[[2322,5337],[0,1],[0,-1]],[[2322,5337],[1,0]],[[2323,5337],[0,1]],[[2323,5338],[1,0],[1,0],[1,0],[1,0],[0,1]],[[2327,5339],[0,1]],[[2327,5340],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2325,5358],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0]],[[2342,5362],[0,-1]],[[2342,5361],[0,-1],[1,0],[0,-1]],[[2343,5359],[0,-1]],[[2343,5358],[0,-1]],[[2343,5357],[-1,0],[1,0]],[[2343,5357],[0,-1],[-1,0]],[[2342,5356],[0,-1]],[[2342,5355],[1,0]],[[2343,5355],[0,-1]],[[2343,5354],[0,-1],[1,0]],[[2344,5353],[0,1],[0,-1]],[[2344,5353],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2345,5349],[0,-1],[1,0]],[[2346,5348],[0,-1]],[[2346,5347],[0,-1]],[[2346,5346],[0,-1]],[[2346,5345],[1,0],[0,-1]],[[2347,5344],[0,-1]],[[2347,5343],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2348,5339],[0,-1]],[[2348,5338],[0,-1],[0,-1],[0,-1],[0,-1]],[[2348,5334],[0,-1],[0,1]],[[2348,5334],[1,0]],[[2349,5334],[0,-1]],[[2349,5333],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2349,5325],[0,-1]],[[2349,5324],[0,-1],[0,-1],[0,-1]],[[2349,5321],[1,0]],[[2350,5321],[0,-1]],[[2350,5320],[0,-1]],[[2350,5320],[-1,0],[0,-1],[1,0]],[[2350,5319],[0,-1],[0,-1]],[[2350,5317],[-1,0],[1,0]],[[2350,5317],[0,-1]],[[2350,5316],[0,-1]],[[2350,5315],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0]],[[2344,5261],[0,1]],[[2344,5262],[1,-1],[-1,0]],[[2344,5261],[0,-1],[1,0]],[[2345,5260],[0,-1]],[[2345,5259],[0,-1]],[[2345,5258],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2345,5253],[0,-1]],[[2345,5252],[-1,0],[0,-1],[1,0]],[[2345,5251],[0,-1],[0,1]],[[2345,5251],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1]],[[2350,5246],[0,1],[0,-1]],[[2350,5246],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2343,5203],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0]],[[2337,5187],[0,-1]],[[2337,5187],[0,1],[0,1],[-1,0]],[[2336,5189],[0,1]],[[2336,5190],[0,1]],[[2336,5191],[0,1],[-1,0],[0,1],[-1,0]],[[2334,5193],[0,1]],[[2334,5194],[-1,0]],[[2333,5194],[0,1],[0,-1]],[[2333,5194],[0,-1]],[[2333,5193],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2329,5186],[0,-1],[0,-1]],[[2329,5184],[0,-1]],[[2329,5183],[-1,0],[0,1],[1,0]],[[2329,5186],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2327,5193],[0,1],[0,-1]],[[2327,5193],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2330,5196],[0,-1]],[[2330,5195],[1,0]],[[2331,5195],[0,-1],[0,1]],[[2331,5195],[0,1]],[[2331,5196],[0,1]],[[2331,5196],[-1,0]],[[2330,5196],[0,1]],[[2330,5197],[1,0]],[[2331,5197],[0,1]],[[2331,5198],[0,1],[-1,0],[0,-1],[-1,0],[0,1]],[[2329,5199],[0,2],[0,-1],[0,-1]],[[2329,5199],[-1,0],[0,-1],[0,-1],[-1,0]],[[2327,5197],[0,-1]],[[2327,5196],[0,-1],[-1,0]],[[2326,5195],[0,1],[0,-1]],[[2326,5195],[-1,0],[0,-1],[-1,0]],[[2324,5194],[0,-1],[0,1]],[[2324,5194],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0]],[[2315,5210],[0,-1],[0,1]],[[2315,5210],[0,1],[0,1]],[[2315,5212],[0,1]],[[2315,5213],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1]],[[2313,5222],[1,0],[0,1],[-1,0]],[[2313,5223],[0,1]],[[2313,5224],[1,0],[0,1],[0,1],[0,1],[-1,0]],[[2313,5227],[0,1]],[[2313,5228],[1,0],[0,1]],[[2314,5229],[0,1]],[[2314,5229],[1,0],[-1,0]],[[2314,5230],[1,0],[0,1],[0,-1],[-1,0]],[[2314,5230],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0]],[[2314,5235],[0,-1],[0,1]],[[2314,5235],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2314,5240],[0,1]],[[2314,5241],[0,1]],[[2314,5242],[0,1]],[[2314,5243],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2313,5249],[0,1]],[[2313,5250],[0,1],[-1,0],[0,1]],[[2312,5252],[1,0],[-1,0]],[[2312,5252],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2313,5266],[0,1]],[[2313,5267],[0,1],[0,1],[0,1],[0,1]],[[2313,5271],[0,1]],[[2313,5272],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2312,5276],[1,0]],[[2313,5276],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2313,5281],[0,1]],[[2313,5282],[0,1]],[[2313,5283],[-1,0],[1,0]],[[2313,5283],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2312,5290],[0,1]],[[2312,5291],[0,1]],[[2312,5292],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2311,5304],[0,1]],[[2311,5305],[0,1]],[[2311,5306],[0,1]],[[2311,5307],[-1,0],[0,1]],[[2310,5308],[1,0],[-1,0]],[[2310,5308],[0,1],[0,1],[0,1],[0,1]],[[2824,6175],[0,-1],[0,-1]],[[2824,6173],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2829,6195],[0,-1],[0,1]],[[2829,6195],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1]],[[2828,6203],[0,1]],[[2828,6204],[1,0]],[[2828,6203],[1,0],[0,1]],[[2829,6204],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0]],[[2833,6206],[0,1],[0,-1]],[[2833,6206],[0,-1]],[[2833,6205],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2832,6198],[0,-1]],[[2832,6197],[0,-1],[1,-1],[0,1],[0,1]],[[2833,6197],[-1,0]],[[2832,6198],[1,1],[0,-1]],[[2833,6198],[0,-1]],[[2833,6197],[1,0],[0,-1],[0,-1],[1,0]],[[2835,6195],[0,-1],[0,1]],[[2835,6195],[0,1]],[[2835,6196],[0,1],[1,-1]],[[2836,6196],[0,1],[0,1],[0,-1],[0,-1]],[[2836,6196],[0,-1],[0,1]],[[2836,6196],[1,0]],[[2837,6196],[0,1],[0,-1]],[[2837,6196],[0,-1],[0,1]],[[2837,6196],[1,0],[0,-1]],[[2839,6174],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1]],[[2843,6155],[0,1]],[[2843,6156],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[2855,6132],[0,-1]],[[2855,6131],[1,0],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2868,6101],[0,-1]],[[2868,6100],[0,-2],[0,-5],[1,-3],[0,-3],[0,-3],[0,-3],[1,-6],[0,-2],[0,-1],[0,-3],[0,-4],[1,-5],[0,-5],[0,-4],[0,-5],[0,-1],[0,-3],[0,-2],[0,-10],[0,-1],[0,-2],[0,-1],[0,-2],[0,-5],[0,-4],[0,-4],[0,-1],[-1,0],[-2,0],[-1,0]],[[2867,6010],[0,1],[0,-1]],[[2867,6010],[-1,0],[0,-1]],[[2866,6009],[0,-1]],[[2866,6008],[-1,0],[0,1],[-1,0]],[[2864,6009],[0,1],[0,-1]],[[2864,6009],[-1,0],[0,-1]],[[2863,6008],[0,-1],[0,1]],[[2863,6008],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2860,6014],[0,1],[0,1]],[[2860,6016],[0,1],[0,-1]],[[2860,6016],[-1,0]],[[2859,6016],[0,-1],[0,1]],[[2859,6016],[0,1],[0,1],[0,1],[-1,1]],[[2858,6020],[0,1],[0,-1]],[[2858,6020],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2856,6022],[0,1]],[[2856,6023],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2850,6039],[0,1]],[[2850,6039],[-1,-1]],[[2849,6038],[0,-1],[0,1]],[[2849,6038],[0,1],[0,1]],[[2849,6040],[1,0]],[[2849,6040],[0,1]],[[2849,6041],[1,0],[0,1],[-1,0]],[[2849,6042],[0,1]],[[2849,6043],[1,0]],[[2850,6043],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0]],[[2853,6047],[0,1]],[[2853,6048],[0,1]],[[2853,6049],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2851,6061],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1]],[[2850,6060],[0,1]],[[2850,6061],[1,0]],[[2851,6061],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2850,6060],[-1,0],[0,1],[0,1]],[[2849,6062],[0,1],[0,-1]],[[2849,6062],[-1,0]],[[2848,6062],[0,-1],[0,-1]],[[2848,6060],[0,-1],[-1,0],[0,1],[1,0]],[[2848,6062],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1]],[[2846,6064],[0,1]],[[2846,6065],[-1,0],[0,1]],[[2845,6066],[0,1],[0,-1]],[[2845,6066],[-1,0],[0,1],[0,1]],[[2844,6068],[0,1]],[[2844,6069],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0]],[[2843,6074],[0,-1],[0,1]],[[2843,6074],[0,1],[0,-1]],[[2843,6074],[-1,0],[0,-1],[-1,0],[0,1],[0,1]],[[2841,6075],[1,0],[0,1],[-1,0]],[[2841,6076],[0,1]],[[2841,6076],[0,-1]],[[2841,6077],[-1,0]],[[2840,6077],[0,-1],[0,1]],[[2840,6077],[0,1],[0,1]],[[2840,6079],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[2840,6079],[-1,1]],[[2839,6080],[0,1],[0,-1]],[[2839,6080],[-1,0],[0,1],[0,1]],[[2838,6082],[0,1]],[[2838,6083],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1]],[[2838,6087],[-1,0]],[[2837,6087],[0,1]],[[2837,6088],[0,1]],[[2837,6089],[-1,0]],[[2836,6089],[0,-1]],[[2836,6088],[0,-1],[-1,0],[0,1],[1,0]],[[2836,6089],[0,1],[-1,0],[0,1],[0,1]],[[2835,6092],[0,1]],[[2835,6093],[0,1],[0,1],[0,1]],[[2835,6096],[0,1]],[[2835,6097],[0,1],[0,1],[0,1],[-1,0]],[[2834,6100],[0,1],[0,-1]],[[2834,6100],[-1,0]],[[2833,6100],[0,-1],[0,1]],[[2833,6100],[0,1],[0,1],[-1,0],[0,1]],[[2832,6103],[0,1],[0,-1]],[[2832,6103],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2831,6107],[0,1],[0,-1]],[[2831,6107],[-1,0]],[[2830,6107],[0,1]],[[2830,6107],[-1,0],[0,1]],[[2829,6108],[1,0]],[[2829,6108],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2835,6139],[0,1]],[[2835,6140],[-1,0]],[[2834,6140],[0,1]],[[2834,6141],[-1,0]],[[2833,6141],[0,-1],[0,1]],[[2833,6141],[0,1],[-1,0]],[[2832,6142],[0,-1],[0,1]],[[2832,6142],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0]],[[2826,6162],[0,-1],[0,1]],[[2826,6162],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2997,6579],[1,0],[1,0],[0,1],[1,0],[1,0]],[[3011,6512],[0,-2],[-1,-1],[-3,-4],[-4,-4],[-3,-3]],[[3000,6498],[0,-1]],[[3000,6498],[0,4],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,2],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1]],[[3005,6543],[-1,0]],[[3004,6543],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0]],[[3002,6555],[0,1]],[[3002,6556],[0,1],[0,1]],[[3002,6558],[0,1]],[[3002,6559],[0,1],[-1,0]],[[3001,6560],[0,1],[0,-1]],[[3001,6560],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0]],[[2998,6562],[0,-1],[0,1]],[[2998,6562],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2677,6345],[0,1],[0,1],[-1,0],[1,0],[0,-1],[0,-1]],[[2677,6345],[1,0]],[[2678,6345],[0,-1]],[[2678,6344],[-1,-1]],[[2677,6343],[0,1],[0,1]],[[2677,6343],[1,0]],[[2678,6343],[0,1]],[[2678,6343],[0,-1],[0,-1],[1,0],[0,1]],[[2679,6342],[1,0],[-1,0]],[[2679,6342],[0,1]],[[2679,6343],[0,1]],[[2679,6344],[-1,0]],[[2678,6345],[0,1],[1,0]],[[2679,6346],[0,1],[0,1]],[[2679,6348],[0,1]],[[2679,6346],[0,-1],[1,0],[0,1],[0,1],[0,1]],[[2680,6348],[0,1]],[[2680,6348],[-1,0]],[[2679,6349],[1,0]],[[2680,6349],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2681,6358],[1,0]],[[2681,6358],[0,1],[1,0],[0,-1]],[[2682,6358],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1]],[[2684,6353],[0,-1]],[[2684,6353],[1,0],[0,-1]],[[2685,6352],[-1,0]],[[2685,6352],[0,-1],[0,-1]],[[2685,6350],[-1,0]],[[2684,6350],[0,1],[0,1]],[[2684,6350],[-1,0]],[[2683,6350],[0,-1]],[[2683,6350],[0,1],[0,-1]],[[2683,6349],[-1,0]],[[2682,6349],[0,-1]],[[2682,6348],[1,0],[0,-1]],[[2683,6347],[0,-1],[0,1]],[[2683,6347],[1,0],[1,0]],[[2685,6347],[0,1]],[[2685,6348],[0,1],[0,1]],[[2685,6350],[1,0]],[[2686,6350],[0,1],[0,-1]],[[2686,6350],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2686,6338],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2684,6329],[0,1],[0,-1]],[[2684,6329],[0,-1],[-1,0]],[[2683,6328],[0,1],[0,1],[0,-1],[0,-1]],[[2683,6328],[-1,0]],[[2682,6328],[0,1],[0,-1]],[[2682,6328],[0,-1],[-1,0]],[[2681,6327],[0,1],[0,1]],[[2681,6327],[0,-1]],[[2681,6326],[0,-1]],[[2681,6325],[1,0],[-1,0]],[[2681,6325],[0,-2],[-1,0]],[[2680,6323],[0,1]],[[2680,6323],[-1,0],[0,1],[0,1],[1,0]],[[2680,6325],[0,1]],[[2680,6326],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2679,6333],[1,0]],[[2680,6333],[0,-1]],[[2680,6332],[0,-1]],[[2680,6333],[1,0]],[[2681,6333],[0,-1],[0,-1],[0,-1]],[[2681,6330],[-1,0]],[[2680,6330],[0,1]],[[2680,6330],[0,-1],[0,-1],[0,-1]],[[2680,6327],[0,-1]],[[2680,6325],[0,-1]],[[2680,6325],[1,0]],[[2681,6326],[-1,0]],[[2680,6327],[1,-1]],[[2681,6329],[0,1]],[[2681,6333],[0,1],[-1,0]],[[2680,6334],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[2679,6338],[0,-1],[0,-1]],[[2679,6336],[0,-1]],[[2679,6335],[0,-1]],[[2679,6334],[1,0]],[[2679,6334],[0,-1]],[[2679,6333],[-1,0],[0,1]],[[2678,6334],[1,0]],[[2679,6335],[-1,0]],[[2678,6335],[0,-1]],[[2678,6335],[0,1]],[[2678,6336],[1,0]],[[2679,6338],[-1,0]],[[2678,6338],[0,-1]],[[2678,6337],[0,-1]],[[2678,6334],[-1,0]],[[2677,6334],[0,-1],[0,1]],[[2677,6334],[0,1],[-1,0]],[[2676,6335],[0,-1]],[[2676,6334],[0,-1]],[[2676,6333],[0,-1],[0,1]],[[2676,6333],[-1,0],[0,1],[1,0]],[[2676,6335],[-1,0]],[[2675,6335],[0,1]],[[2675,6336],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0]],[[2687,6428],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2692,6436],[0,1]],[[2692,6437],[-1,0],[0,1]],[[2691,6438],[0,1],[0,-1]],[[2691,6438],[1,0]],[[2692,6438],[0,-1]],[[2692,6438],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2693,6442],[-1,0],[0,1],[1,0],[0,-1]],[[2693,6442],[1,0],[0,-1]],[[2694,6441],[0,-1]],[[2694,6440],[0,-1],[0,-1],[0,-1],[0,-1]],[[2694,6436],[-1,0],[1,0]],[[2694,6436],[0,-1],[0,-1],[0,-1],[0,-1]],[[2694,6432],[1,0]],[[2695,6432],[0,-1],[-1,0]],[[2694,6431],[0,1]],[[2694,6431],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1]],[[2702,6365],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[2707,6347],[0,1],[0,-1]],[[2707,6347],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2708,6342],[0,-1]],[[2708,6341],[0,-1]],[[2708,6340],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2716,6317],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[2679,6349],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2678,6354],[0,1]],[[2678,6355],[-1,0]],[[2677,6355],[0,1],[0,1]],[[2677,6357],[1,0],[-1,0]],[[2677,6357],[0,1],[0,-1]],[[2677,6355],[0,-1],[0,-1],[-1,0]],[[2676,6353],[0,1],[0,-1]],[[2676,6353],[0,-1],[-1,0],[-1,0]],[[2674,6352],[0,-1],[0,1]],[[2674,6352],[0,1],[0,1],[0,2],[0,1],[0,1]],[[2674,6358],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0]],[[2760,6335],[0,1]],[[2760,6335],[1,0],[-1,1]],[[2760,6336],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2761,6346],[1,0]],[[2762,6346],[0,-1],[0,1]],[[2762,6346],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2763,6352],[0,1],[0,-1]],[[2763,6352],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0]],[[2763,6358],[0,-1],[0,1]],[[2763,6358],[0,1]],[[2763,6359],[-1,0],[1,0]],[[2763,6359],[-1,1],[1,0],[0,1],[0,1],[0,2],[0,1]],[[2763,6365],[0,1],[0,1]],[[2763,6367],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2767,6362],[0,-1]],[[2767,6361],[-1,0]],[[2766,6361],[0,1]],[[2766,6362],[0,1],[0,-1]],[[2766,6361],[0,-1],[1,0]],[[2767,6360],[0,1]],[[2767,6360],[1,0],[1,0],[1,0],[1,-1]],[[2771,6359],[0,1],[0,-1]],[[2771,6359],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[2773,6356],[0,1],[0,-1]],[[2773,6356],[0,-1],[0,1]],[[2773,6356],[1,0]],[[2774,6356],[0,-1],[0,1]],[[2774,6356],[1,0],[0,1]],[[2775,6357],[0,1]],[[2775,6358],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[2783,6350],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[2783,6326],[0,-1],[0,1]],[[2783,6326],[1,0]],[[2784,6326],[0,-1],[0,1]],[[2784,6326],[0,1]],[[2784,6327],[0,1],[1,0]],[[2785,6328],[0,1],[0,-1]],[[2785,6328],[0,-1],[0,-1],[0,-1],[1,0]],[[2786,6325],[0,-1],[0,-1],[0,1],[0,1]],[[2786,6325],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2787,6332],[0,1],[1,0],[-1,0],[0,-1]],[[2787,6332],[1,0]],[[2788,6332],[0,-1],[0,1]],[[2788,6332],[1,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[2797,6351],[0,-1],[0,1]],[[2797,6351],[0,1],[1,0],[0,1]],[[2798,6353],[0,1]],[[2798,6354],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[-1,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2800,6415],[0,-1],[0,1]],[[2800,6415],[-1,0]],[[2799,6415],[0,1],[0,1],[0,-1],[0,-1]],[[2799,6415],[0,-1],[0,-1],[-1,0]],[[2798,6413],[0,-1],[0,-1],[0,1],[0,1]],[[2798,6413],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2797,6420],[0,1]],[[2797,6421],[0,1]],[[2797,6422],[-1,0]],[[2796,6422],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2792,6392],[0,-1],[0,1]],[[2792,6392],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2789,6390],[0,-1],[0,1]],[[2789,6390],[0,1],[0,-1]],[[2789,6390],[-1,0]],[[2788,6390],[0,-1]],[[2788,6389],[0,-1],[0,1]],[[2788,6389],[-1,0],[0,1],[1,0]],[[2788,6390],[0,1]],[[2788,6391],[-1,0]],[[2787,6391],[0,1]],[[2787,6392],[0,1],[-1,0]],[[2786,6393],[0,1],[0,-1]],[[2786,6393],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1]],[[2783,6396],[0,1]],[[2783,6397],[0,1],[0,1],[-1,0]],[[2782,6399],[0,-1],[0,1]],[[2782,6399],[0,1],[-1,0]],[[2781,6400],[0,-1],[0,-1]],[[2781,6400],[0,1],[0,-1]],[[2781,6398],[-1,0],[0,1],[0,1],[-1,0],[0,1]],[[2779,6401],[0,1],[0,-1]],[[2779,6401],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2778,6407],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2785,6451],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2815,6431],[0,1],[1,-1],[-1,0]],[[2815,6431],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[2814,6408],[0,-1],[0,1]],[[2814,6408],[1,0]],[[2815,6408],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2815,6408],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2815,6403],[0,-1]],[[2815,6402],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2814,6391],[-1,0],[1,-1]],[[2814,6390],[0,1]],[[2814,6390],[1,0],[-1,0]],[[2814,6390],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[2816,6385],[0,1],[0,-1]],[[2816,6385],[1,0],[0,-1],[1,0],[1,-1]],[[2819,6383],[0,1],[0,-1]],[[2819,6383],[1,0],[0,-1],[0,-1],[1,-1],[0,-1]],[[2821,6379],[0,-1]],[[2821,6378],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,3],[0,1],[1,5]],[[2825,6388],[1,0]],[[2826,6388],[0,1],[0,-1]],[[2826,6388],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2]],[[2827,6377],[0,-1],[0,1]],[[2827,6377],[1,0]],[[2828,6377],[0,1],[0,1],[0,-1],[0,-1]],[[2828,6377],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2829,6372],[0,-1],[0,1]],[[2829,6372],[1,0],[0,-1],[0,-1],[0,-1]],[[2830,6369],[0,-1]],[[2830,6368],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2832,6355],[-1,0],[1,0]],[[2832,6355],[0,-1]],[[2832,6354],[-1,0],[1,0]],[[2832,6354],[0,-1],[0,-1],[0,-1]],[[2832,6351],[0,-1]],[[2832,6350],[0,-1],[1,0],[0,-1]],[[2833,6348],[-1,0],[1,0]],[[2833,6348],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2834,6341],[0,-1],[0,-1]],[[2834,6339],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2834,6313],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2778,6313],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2762,6313],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2891,6329],[0,-1],[0,1]],[[2891,6329],[1,0]],[[2892,6329],[0,1]],[[2892,6330],[0,1]],[[2892,6331],[0,1]],[[2892,6332],[-1,0],[0,1],[0,1],[1,0],[0,1]],[[2892,6335],[0,1],[0,1],[0,-1],[0,-1]],[[2892,6335],[1,0],[0,-1],[0,-1]],[[2893,6333],[0,-1]],[[2893,6333],[-1,0],[0,-1]],[[2892,6332],[1,0]],[[2893,6332],[0,-1]],[[2893,6331],[-1,0]],[[2892,6330],[1,0]],[[2893,6330],[0,-1],[0,1]],[[2893,6330],[0,1]],[[2893,6331],[1,0]],[[2894,6331],[0,-1]],[[2894,6330],[1,0],[0,1]],[[2895,6331],[0,1],[0,-1]],[[2895,6331],[-1,0]],[[2894,6331],[0,1],[0,1],[0,1]],[[2894,6334],[0,1]],[[2894,6335],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1]],[[2895,6340],[-1,0]],[[2894,6340],[0,1],[0,1],[1,0],[0,1]],[[2895,6343],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2896,6338],[0,-1]],[[2896,6338],[1,0],[0,-1],[-1,0]],[[2896,6337],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1]],[[2898,6343],[0,1]],[[2898,6344],[0,1],[0,1],[1,0],[0,1]],[[2899,6347],[0,1]],[[2899,6347],[1,0]],[[2900,6347],[0,-1],[0,-1],[0,1],[0,1]],[[2900,6347],[0,1]],[[2900,6348],[0,1]],[[2900,6349],[0,1]],[[2900,6349],[1,0],[0,1]],[[2901,6350],[-1,0]],[[2900,6350],[1,1],[0,-1]],[[2901,6350],[1,0],[0,1]],[[2902,6351],[0,1]],[[2902,6352],[1,0]],[[2903,6352],[0,1]],[[2903,6352],[0,-1]],[[2903,6351],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2902,6347],[-1,0]],[[2901,6347],[0,-1],[0,-1],[0,-1]],[[2901,6344],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2891,6324],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2890,6374],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2893,6376],[0,1],[0,-1]],[[2893,6376],[1,0]],[[2894,6376],[0,-1]],[[2894,6375],[0,-1]],[[2894,6374],[0,-1],[0,-1],[0,-1],[0,-1]],[[2894,6370],[1,0]],[[2894,6370],[0,-1],[1,0]],[[2895,6369],[0,1]],[[2895,6370],[0,1]],[[2895,6371],[0,1],[0,-1]],[[2895,6371],[1,0],[-1,-1]],[[2895,6369],[0,-1],[1,0],[0,1],[0,1],[1,1]],[[2897,6371],[0,1]],[[2897,6372],[0,1]],[[2897,6371],[0,-1],[0,-1],[1,0],[0,-1]],[[2898,6368],[0,-1]],[[2898,6367],[0,-1]],[[2898,6366],[0,-1]],[[2898,6366],[1,0],[0,-1],[0,-1],[-1,0]],[[2898,6364],[0,-1],[0,1]],[[2898,6364],[0,1]],[[2898,6364],[-1,0]],[[2897,6364],[0,1]],[[2897,6365],[0,1],[-1,-1]],[[2896,6365],[0,-1]],[[2896,6365],[0,1]],[[2896,6366],[0,1]],[[2896,6367],[-1,0],[0,-1],[0,-1],[1,0]],[[2896,6364],[0,-1]],[[2896,6363],[-1,0],[0,-1],[1,0]],[[2896,6362],[0,-1]],[[2896,6362],[0,1]],[[2896,6361],[1,0]],[[2897,6361],[0,1]],[[2897,6362],[0,1],[0,1]],[[2897,6361],[1,0],[-1,0]],[[2897,6361],[1,-1],[0,-1]],[[2898,6359],[-1,0],[1,0]],[[2898,6359],[0,-1],[-1,-1],[0,1],[-1,0],[0,-1]],[[2896,6357],[0,-1]],[[2896,6356],[0,-1]],[[2896,6355],[-1,0],[0,1],[1,0]],[[2896,6357],[-1,0],[0,1]],[[2895,6358],[0,1]],[[2895,6359],[-1,0]],[[2894,6359],[0,1]],[[2894,6359],[0,-1],[-1,0]],[[2893,6358],[0,1]],[[2893,6359],[1,1]],[[2894,6360],[0,1],[0,1],[0,1],[0,1]],[[2894,6364],[0,1],[0,-1]],[[2894,6364],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2892,6359],[1,0]],[[2893,6358],[-1,0]],[[2892,6358],[0,1]],[[2892,6358],[0,-1],[-1,0]],[[2891,6355],[1,0],[0,-1]],[[2892,6354],[1,0],[0,-1]],[[2893,6353],[0,-1]],[[2893,6352],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2894,6347],[0,1],[0,-1]],[[2894,6347],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2891,6324],[0,-1]],[[2891,6323],[0,-1]],[[2891,6323],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2627,5622],[0,1]],[[2627,5622],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2632,5637],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2636,5638],[0,1],[0,-1]],[[2636,5638],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2638,5627],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2635,5617],[0,-1]],[[2635,5616],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2638,5605],[0,-1],[0,1]],[[2638,5605],[1,0]],[[2639,5605],[0,1],[0,-1]],[[2639,5605],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2640,5600],[0,1],[0,-1]],[[2640,5600],[1,0]],[[2641,5600],[0,1],[0,-1]],[[2641,5600],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2644,5607],[1,0],[0,-1],[0,-1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2649,5597],[0,1],[0,-1]],[[2649,5597],[0,-1]],[[2649,5596],[0,-1],[0,-1]],[[2649,5594],[0,-1],[0,1]],[[2649,5594],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2648,5589],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2644,5580],[0,1],[0,-1]],[[2644,5580],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0]],[[2642,5578],[0,-1]],[[2642,5577],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[2640,5586],[0,-1],[0,1]],[[2640,5586],[-1,0],[0,1]],[[2639,5587],[0,1],[0,1],[0,-1],[0,-1]],[[2639,5587],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2637,5584],[0,-1],[0,1]],[[2637,5584],[0,1],[0,1],[-1,0]],[[2636,5586],[0,-1],[0,1]],[[2636,5586],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2636,5592],[0,1],[0,-1]],[[2636,5592],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2629,5591],[-1,0],[0,1],[0,-1],[1,0]],[[2629,5591],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2629,5598],[0,1],[0,-1]],[[2629,5598],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2685,4910],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2687,4906],[0,-1],[0,1]],[[2687,4906],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,2],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1]],[[2689,4948],[0,1],[0,3]],[[2689,4952],[0,1]],[[2689,4953],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2692,4961],[0,1],[0,-1]],[[2692,4961],[1,0]],[[2693,4961],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1]],[[2695,4958],[0,1],[0,1]],[[2695,4960],[0,1],[0,-1]],[[2695,4960],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2697,4954],[0,-1],[0,-1],[0,1],[0,1]],[[2697,4954],[1,0]],[[2698,4954],[0,1],[0,-1]],[[2698,4954],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2698,4938],[0,1],[0,-1]],[[2698,4938],[0,-1],[0,-1]],[[2698,4936],[0,-1]],[[2698,4935],[0,-1]],[[2698,4934],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1]],[[2695,4910],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[-1,0]],[[2685,4901],[-1,0],[0,2],[1,2],[0,2],[0,1],[0,2]],[[2686,5001],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1]],[[2706,4988],[0,-1]],[[2706,4987],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2693,4961],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2689,4948],[0,3],[0,1]],[[2689,4953],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2687,4956],[0,1],[0,-1]],[[2687,4956],[-1,0],[0,1]],[[2686,4957],[0,1],[0,-1]],[[2686,4957],[-1,0],[0,2],[0,3],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0]],[[2682,4960],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2685,4910],[0,1],[0,2],[0,2],[0,2],[0,1],[-1,4],[0,1],[-1,4],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1]],[[2711,5148],[0,1]],[[2711,5149],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2716,5141],[0,-1]],[[2716,5140],[0,-1],[1,0]],[[2717,5139],[0,1]],[[2717,5139],[0,-1],[0,1]],[[2717,5140],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2717,5145],[0,1]],[[2717,5146],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2718,5153],[1,0],[-1,0]],[[2718,5153],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0]],[[2720,5156],[0,-1],[0,1]],[[2720,5156],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2716,5184],[0,1]],[[2716,5185],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2716,5197],[1,0],[0,1],[1,0]],[[2718,5198],[0,1],[0,-1]],[[2718,5198],[1,0],[0,-1],[1,0],[0,-2],[1,0],[1,0],[1,0],[0,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0]],[[2726,5213],[0,-1],[0,-1],[1,-7],[0,-6],[1,-11],[0,-4],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[1,-6],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[1,-3],[0,-1],[1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-3],[1,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[1,-2],[0,-3],[1,-2]],[[2745,5043],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2736,5043],[-1,-1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,-1],[-1,0]],[[2729,5063],[0,-1],[0,1]],[[2729,5063],[-1,0]],[[2728,5063],[0,1]],[[2728,5064],[0,1],[0,-1]],[[2728,5063],[0,-1],[0,1]],[[2728,5063],[-1,0]],[[2727,5063],[0,1],[0,-1]],[[2727,5063],[-1,0],[0,1]],[[2726,5064],[0,1],[0,-1]],[[2726,5064],[-1,0]],[[2725,5064],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2719,5090],[0,1],[0,-1]],[[2719,5090],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[2717,5106],[0,1]],[[2717,5107],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2712,5127],[0,1],[0,-1]],[[2712,5127],[-1,0]],[[2711,5127],[0,-1]],[[2711,5126],[-1,0]],[[2710,5126],[0,1]],[[2710,5127],[-1,0]],[[2709,5127],[0,-1]],[[2709,5126],[-1,0]],[[2708,5126],[0,-1]],[[2708,5125],[-1,0],[0,-1],[-1,0]],[[2706,5124],[0,-1],[0,-1],[0,1],[0,1]],[[2706,5124],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[1,0],[0,1]],[[2719,6506],[1,0]],[[2719,6506],[0,-1],[1,0]],[[2720,6505],[0,1]],[[2720,6505],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,14],[0,14],[0,11],[0,4],[0,7],[-1,4]],[[2721,6589],[2,2],[0,1],[2,4],[1,2],[1,2],[1,2],[0,1],[1,0],[1,1],[2,1],[1,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,1],[1,0],[2,1],[1,1],[1,1],[1,1],[1,0]],[[2749,6616],[0,-9],[0,-6],[0,-5],[0,-4],[0,-6],[0,-8],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2749,6500],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2]],[[2744,6502],[-1,0]],[[2744,6502],[0,1]],[[2744,6503],[0,1],[0,-1]],[[2744,6503],[-1,1],[0,-1]],[[2743,6503],[1,0]],[[2743,6503],[0,-1]],[[2743,6502],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2723,6476],[0,1]],[[2723,6477],[-1,0],[0,1]],[[2722,6478],[1,0],[0,1],[0,-1],[-1,0]],[[2722,6478],[0,1],[0,1]],[[2722,6480],[0,1]],[[2722,6481],[-1,0]],[[2721,6481],[0,-1]],[[2721,6480],[1,0]],[[2721,6480],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[-1,0]],[[2720,6478],[0,-1]],[[2720,6478],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1]],[[2721,6480],[-1,0],[0,1]],[[2720,6481],[0,1]],[[2720,6482],[1,0],[0,1],[0,1],[0,1]],[[2721,6485],[0,1],[1,0]],[[2722,6486],[0,-1],[-1,0]],[[2722,6486],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2719,6494],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2869,6455],[0,1],[0,-1]],[[2869,6455],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,-1],[1,0]],[[2881,6449],[0,-1],[0,1]],[[2881,6449],[1,0],[0,1],[0,1]],[[2882,6451],[0,1]],[[2882,6452],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2883,6447],[0,-1],[0,1]],[[2883,6447],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2888,6460],[1,0],[-1,0]],[[2888,6460],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2886,6468],[1,0],[-1,0]],[[2886,6468],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2885,6472],[1,0],[-1,0]],[[2885,6472],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0]],[[2885,6480],[0,1]],[[2885,6481],[0,1]],[[2885,6482],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[-1,0],[-1,0],[-1,0],[-1,-2]],[[2880,6489],[0,-1],[0,1]],[[2880,6489],[-1,0],[0,-1],[-1,0],[0,-1]],[[2878,6487],[0,-1],[0,1]],[[2878,6487],[-1,0],[0,1],[0,1],[0,1]],[[2877,6490],[0,1]],[[2877,6491],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[1,0]],[[2879,6501],[0,1]],[[2879,6502],[1,1]],[[2880,6503],[0,-1],[0,1]],[[2880,6503],[0,1],[0,1]],[[2880,6505],[1,0]],[[2881,6505],[0,-1],[0,-1],[0,1],[0,1]],[[2881,6505],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2884,6516],[0,-1],[0,1]],[[2884,6516],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2885,6520],[0,1],[0,-1]],[[2885,6520],[1,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0]],[[2889,6529],[0,1],[0,-1]],[[2889,6529],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,1],[0,1],[-1,1]],[[2886,6515],[0,1],[0,1],[0,-1],[0,-1]],[[2886,6515],[-1,0],[1,0]],[[2886,6515],[0,-1],[0,-1]],[[2886,6513],[0,-1]],[[2886,6513],[-1,0],[0,-1],[1,0]],[[2886,6512],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1]],[[2887,6487],[0,-1],[0,-1],[0,1],[0,1]],[[2887,6487],[0,1],[1,0]],[[2888,6488],[0,-1],[0,1]],[[2888,6488],[0,1]],[[2888,6489],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0]],[[2892,6477],[0,1],[0,-1]],[[2892,6477],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1]],[[2895,6462],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,-1]],[[2895,6462],[0,-1],[1,0],[0,-1]],[[2896,6460],[1,0]],[[2896,6460],[0,-1],[1,0],[0,1]],[[2897,6460],[1,0],[0,1],[0,1],[0,1],[-1,0]],[[2897,6463],[0,1]],[[2897,6464],[1,0],[-1,0]],[[2897,6463],[0,-1],[0,-1],[0,1],[0,1]],[[2897,6464],[0,1],[-1,0],[0,1]],[[2896,6466],[1,0],[-1,0]],[[2896,6466],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0]],[[2903,6472],[0,1]],[[2903,6472],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2899,6437],[0,-1],[0,-1],[-1,0]],[[2898,6435],[0,1],[0,-1]],[[2898,6435],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2860,6410],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,2],[1,0]],[[2566,6789],[1,0],[1,0],[0,1],[1,0],[2,-1],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2583,6809],[0,1]],[[2583,6810],[0,1]],[[2583,6811],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2601,6829],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2608,6728],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2604,6694],[0,-1],[0,1]],[[2604,6694],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2605,6687],[0,-1]],[[2605,6686],[0,-1],[0,-1],[0,-1],[1,0]],[[2606,6683],[0,1],[0,-1]],[[2606,6683],[0,-1],[0,-1]],[[2606,6681],[0,-1],[0,1]],[[2606,6681],[1,0]],[[2607,6681],[0,-1],[0,1]],[[2607,6681],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2608,6685],[0,-1],[0,1]],[[2608,6685],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2603,6677],[0,-1],[0,-1],[0,1],[0,1]],[[2603,6677],[-1,0]],[[2602,6677],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2602,6667],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[2593,6666],[0,-1]],[[2593,6666],[1,0],[0,-1],[0,-1],[0,-1]],[[2594,6663],[0,-1],[0,1]],[[2594,6663],[-1,0],[0,1],[0,1]],[[2593,6666],[-1,0],[0,1],[-1,0],[-1,0]],[[2590,6667],[-1,0],[-3,0],[-4,0],[-3,0],[-4,0],[-3,0],[-4,0],[-1,0]],[[2567,6667],[-1,4],[0,5]],[[2566,6676],[0,3],[0,3],[0,6],[0,4],[0,2],[0,2],[-1,3],[0,3],[0,3],[0,2],[0,1],[0,8]],[[2565,6716],[0,2],[0,2],[0,1],[0,2],[-1,6],[0,8],[0,1],[0,10],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,8],[0,2],[0,2],[0,2],[0,1],[0,7],[0,2],[0,2],[1,4],[0,2]],[[2679,5291],[-1,0],[1,0]],[[2679,5291],[0,-1]],[[2679,5290],[0,-1]],[[2679,5289],[0,-1]],[[2679,5288],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2679,5283],[0,-1],[0,-1],[0,1],[0,1]],[[2679,5283],[1,0],[0,1]],[[2680,5284],[0,1]],[[2680,5285],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2688,5332],[0,1]],[[2688,5333],[1,0]],[[2689,5333],[0,-1]],[[2689,5332],[1,0]],[[2690,5332],[0,-1],[0,1]],[[2690,5332],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2690,5342],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2696,5374],[0,-1],[0,1]],[[2696,5374],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2705,5395],[0,1],[0,-1]],[[2705,5395],[1,0]],[[2706,5395],[0,1],[0,-1]],[[2706,5395],[1,0]],[[2707,5395],[0,-1]],[[2707,5394],[0,-1],[0,-1]],[[2707,5392],[1,0]],[[2708,5392],[0,-1],[0,-1],[0,1],[0,1]],[[2708,5392],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[2723,5443],[0,1]],[[2723,5443],[0,-1],[0,-1],[1,0]],[[2724,5441],[-1,-1],[1,0]],[[2724,5440],[0,-1]],[[2724,5439],[0,-1],[0,1]],[[2724,5440],[0,1]],[[2723,5444],[0,1],[0,1],[0,1]],[[2723,5447],[0,1]],[[2723,5448],[0,1]],[[2723,5449],[1,0]],[[2724,5449],[0,1],[0,-1]],[[2724,5449],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2725,5443],[0,-1],[0,-1],[0,1],[0,1]],[[2725,5443],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1]],[[2730,5458],[0,1]],[[2730,5459],[0,1]],[[2730,5459],[1,0],[0,-1]],[[2731,5458],[-1,0]],[[2731,5458],[0,-1],[0,-1]],[[2731,5456],[0,-1]],[[2731,5455],[1,0],[0,-1]],[[2732,5454],[-1,0],[0,-1],[1,0]],[[2732,5453],[0,1]],[[2732,5453],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2732,5436],[0,-1]],[[2732,5435],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[1,0]],[[2734,5426],[0,-1],[0,1]],[[2734,5426],[1,0]],[[2735,5426],[0,1],[0,-1]],[[2735,5426],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0]],[[2742,5419],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[1,-3],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[2726,5266],[-1,0],[-1,0],[-1,0],[-1,0],[0,1]],[[2722,5267],[0,1],[0,-1]],[[2722,5267],[-1,0],[-1,0]],[[2720,5267],[0,-1],[0,1]],[[2720,5267],[-1,0],[0,1],[-1,0]],[[2718,5268],[0,-1],[0,-1],[0,1],[0,1]],[[2718,5268],[0,1],[0,-1]],[[2718,5268],[-1,0],[0,1]],[[2717,5269],[0,1]],[[2717,5270],[0,1],[0,-1]],[[2717,5270],[-1,0]],[[2717,5269],[-1,0],[0,1]],[[2716,5270],[-1,0],[0,1],[0,1],[-1,0]],[[2714,5272],[0,1],[0,-1]],[[2714,5272],[-1,0],[0,1],[0,1]],[[2713,5274],[0,1]],[[2713,5275],[-1,0]],[[2712,5275],[0,1],[0,-1]],[[2712,5275],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2710,5278],[0,1],[0,1],[0,-1],[0,-1]],[[2710,5278],[-1,0]],[[2709,5278],[0,1],[0,1],[0,-1],[0,-1]],[[2709,5278],[-1,0]],[[2708,5278],[0,-1],[0,-1],[0,-1]],[[2708,5275],[0,-1],[0,-1],[0,1],[0,1]],[[2708,5275],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2707,5271],[0,-1],[0,1]],[[2707,5271],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2706,5256],[1,0]],[[2707,5256],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2707,5244],[0,-1]],[[2707,5243],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2707,5235],[0,-1],[0,1]],[[2707,5235],[-1,0],[0,-1],[0,-1],[0,-1]],[[2706,5232],[0,-1]],[[2706,5231],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2706,5225],[0,-1],[0,1]],[[2706,5225],[-1,0]],[[2705,5225],[0,1]],[[2705,5226],[-1,0]],[[2704,5226],[0,-1]],[[2704,5225],[-1,0],[0,1],[-1,0]],[[2702,5226],[0,1]],[[2702,5227],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[2695,5251],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1]],[[2676,5256],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2674,5289],[1,0],[0,1],[-1,0],[0,-1]],[[2674,5289],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1]],[[2521,5404],[0,-1],[0,-1],[0,1],[0,1]],[[2521,5404],[1,0]],[[2522,5404],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0]],[[2528,5422],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2527,5380],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[1,-5],[0,-2],[0,-3],[0,-1],[0,-2],[0,-2],[0,-2]],[[2530,5202],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-4]],[[2516,5199],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-2,3],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,2],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2495,5217],[-1,0],[1,0]],[[2495,5217],[0,1],[0,1],[0,1]],[[2495,5220],[0,1]],[[2495,5221],[0,1],[0,1]],[[2495,5223],[0,1]],[[2495,5224],[-1,0]],[[2494,5224],[0,1]],[[2494,5225],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2493,5231],[1,0]],[[2494,5231],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2493,5235],[1,0],[-1,0]],[[2493,5235],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2492,5240],[0,1]],[[2492,5241],[0,1]],[[2492,5241],[-1,0],[1,0]],[[2492,5242],[-1,0]],[[2491,5242],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1]],[[2490,5248],[0,1]],[[2490,5249],[1,0],[-1,0]],[[2490,5249],[0,1],[0,1],[0,1]],[[2490,5252],[0,1]],[[2490,5253],[0,1]],[[2490,5254],[0,1]],[[2490,5255],[-1,0],[1,0]],[[2490,5255],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2489,5259],[0,1]],[[2489,5260],[0,1]],[[2489,5300],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1]],[[2675,6652],[0,1],[0,-1]],[[2675,6652],[0,-1]],[[2675,6651],[0,-1],[1,0],[1,0]],[[2677,6647],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2676,6640],[0,-1],[0,1]],[[2676,6640],[-1,0],[-1,0],[0,-1],[-1,0]],[[2673,6639],[0,1]],[[2673,6640],[0,1],[0,1]],[[2673,6642],[0,1]],[[2673,6643],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2673,6642],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2673,6650],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2669,6647],[0,1],[0,-1]],[[2669,6647],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[2669,6629],[0,1],[0,1]],[[2669,6631],[-1,0],[0,1],[1,0],[1,0],[0,-1]],[[2670,6631],[0,-1]],[[2670,6630],[-1,1]],[[2669,6629],[1,0],[1,0]],[[2671,6629],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2668,6609],[0,-1]],[[2668,6608],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2664,6618],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0]],[[2661,6628],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2909,6368],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2911,6376],[0,1]],[[2911,6377],[1,0],[0,-1],[0,-1],[0,-1]],[[2912,6374],[0,-1],[0,1]],[[2912,6374],[1,0]],[[2913,6374],[0,1],[0,-1]],[[2913,6374],[1,0],[0,1]],[[2914,6375],[0,1],[0,-1]],[[2914,6375],[1,-1],[0,-1],[0,-1],[0,-1]],[[2915,6371],[0,-1],[0,1]],[[2915,6371],[1,0],[0,1],[0,1],[1,0],[0,1]],[[2917,6374],[0,1]],[[2917,6375],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2921,6384],[0,1]],[[2921,6384],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2922,6380],[0,-1],[0,1]],[[2922,6380],[1,0]],[[2923,6380],[0,-1]],[[2923,6379],[1,0]],[[2924,6379],[0,-1],[0,-1],[0,1],[0,1]],[[2924,6379],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2926,6394],[0,1],[0,-1]],[[2926,6394],[0,-1],[1,0],[0,-1],[1,0]],[[2928,6392],[0,1],[0,-1]],[[2928,6392],[0,-1],[0,-1],[0,-1],[0,-1]],[[2928,6388],[0,-1]],[[2928,6387],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[1,-2]],[[2930,6357],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2927,6359],[0,1]],[[2927,6360],[1,0],[-1,0]],[[2927,6360],[0,1],[0,-1]],[[2927,6359],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2923,6347],[1,0]],[[2924,6347],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1]],[[2918,6329],[0,-1],[0,1]],[[2918,6329],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2913,6361],[0,1]],[[2913,6362],[0,1],[-1,0],[0,1]],[[2912,6364],[0,1]],[[2912,6365],[-1,0]],[[2911,6365],[0,1]],[[2911,6366],[0,1],[0,-1]],[[2911,6366],[-1,0]],[[2910,6366],[0,-1]],[[2910,6365],[1,0]],[[2911,6365],[0,-1],[-1,0]],[[2910,6364],[0,-1],[0,-1]],[[2910,6364],[0,1]],[[2910,6366],[-1,0],[0,1]],[[2909,6367],[0,1]],[[2916,6411],[1,0],[0,1],[0,1]],[[2917,6413],[1,0],[0,1]],[[2918,6414],[-1,0]],[[2918,6414],[0,1]],[[2918,6415],[1,0],[1,0]],[[2920,6415],[1,1]],[[2921,6416],[1,0]],[[2922,6416],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1]],[[2924,6414],[1,0]],[[2924,6414],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0]],[[2929,6404],[1,1],[1,1],[1,0],[1,-4]],[[2933,6402],[0,-1],[0,-3],[0,-3],[0,-6],[0,-4],[0,-4],[0,-4],[0,-3],[0,-1],[-1,-2],[0,-3],[0,-1],[0,-4],[-1,-3],[0,-1],[0,-1],[0,-1]],[[2931,6357],[-1,0]],[[2921,6385],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2920,6395],[0,-1],[0,1]],[[2920,6395],[0,1],[0,1],[0,1]],[[2920,6398],[0,1]],[[2920,6398],[-1,1],[1,0]],[[2920,6399],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0]],[[2917,6401],[0,-1],[0,1]],[[2917,6401],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2888,6292],[-1,0],[1,0]],[[2888,6292],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2888,6297],[0,1],[0,-1]],[[2888,6297],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2890,6319],[0,1]],[[2890,6320],[1,0]],[[2891,6320],[0,1],[0,-1]],[[2891,6320],[0,-1]],[[2891,6319],[0,-1]],[[2891,6318],[0,-1]],[[2891,6317],[0,-1],[1,0]],[[2892,6316],[0,1],[0,-1]],[[2892,6316],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[2895,6321],[0,-1]],[[2895,6320],[1,0],[0,-1]],[[2896,6319],[0,-1],[0,-1],[0,1],[0,1]],[[2896,6319],[1,1],[0,1]],[[2897,6321],[0,1],[0,-1]],[[2897,6321],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2898,6310],[0,-1],[0,1]],[[2898,6310],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2905,6297],[0,-1],[0,1]],[[2905,6297],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[2905,6320],[0,1]],[[2905,6320],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,0]],[[2915,6318],[0,-1],[0,1]],[[2915,6318],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,0]],[[2922,6309],[0,-1],[0,1]],[[2922,6309],[0,1],[1,0]],[[2923,6310],[0,-1],[0,1]],[[2923,6310],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,-1]],[[2926,6312],[0,-1]],[[2926,6311],[0,-1]],[[2926,6312],[0,3],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[2927,6318],[0,-1]],[[2927,6317],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2926,6310],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-2],[0,-1],[1,0],[1,0]],[[2924,6284],[-1,-2],[0,-1],[0,-1],[0,-2],[-1,-3],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-3],[-2,-6]],[[2902,6206],[0,-2]],[[2902,6204],[0,1],[0,1]],[[2902,6206],[0,1],[-1,3],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,2],[-1,6],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,4],[0,2],[-1,1],[0,1],[0,1],[-1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2698,4935],[1,0]],[[2699,4935],[0,1]],[[2699,4936],[0,1],[0,-1]],[[2699,4936],[1,-1]],[[2700,4935],[-1,0]],[[2700,4935],[0,-1],[0,1]],[[2700,4935],[0,1],[0,-1]],[[2700,4935],[1,0],[0,1],[1,0]],[[2702,4936],[0,1]],[[2702,4937],[0,1],[0,-1]],[[2702,4936],[1,0]],[[2703,4936],[0,-1]],[[2703,4935],[1,0],[0,1],[0,1]],[[2704,4937],[1,0]],[[2705,4937],[0,1]],[[2705,4938],[0,1],[1,0]],[[2706,4939],[0,1]],[[2706,4940],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0]],[[2712,4931],[0,-1],[0,-1]],[[2712,4929],[0,-1],[0,-1],[0,2]],[[2712,4931],[0,1],[0,-1]],[[2712,4931],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2]],[[2713,4952],[0,-1],[1,0],[1,0]],[[2715,4951],[0,-1],[0,1]],[[2715,4951],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1]],[[2717,4955],[1,0],[1,0]],[[2719,4955],[0,1],[0,-1]],[[2719,4955],[1,0]],[[2720,4955],[0,1],[0,-1]],[[2720,4955],[1,0],[0,-1],[1,0],[0,2]],[[2722,4956],[0,1],[1,0],[-1,0],[0,-1]],[[2722,4956],[1,0],[0,-1]],[[2723,4955],[-1,0],[1,0]],[[2723,4955],[0,-1]],[[2723,4954],[0,-1],[0,-1],[1,0],[0,-1]],[[2724,4951],[1,0]],[[2725,4951],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2726,4946],[0,-1]],[[2726,4945],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2729,4929],[1,0]],[[2730,4929],[0,-1],[0,-1],[0,-1],[0,-1]],[[2730,4925],[0,-1]],[[2730,4924],[0,-1],[0,-1],[0,-1]],[[2730,4921],[1,0]],[[2731,4921],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[2731,4910],[0,-1]],[[2731,4909],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0]],[[2739,4909],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[1,0],[1,0]],[[2744,4899],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1]],[[2738,4830],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,-5],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2730,4808],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2720,4788],[-1,0],[-1,0]],[[2718,4788],[0,1],[0,-1]],[[2718,4788],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[2711,4796],[0,-1],[0,1]],[[2711,4796],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0]],[[2698,4810],[0,1],[0,1],[0,1],[-1,4],[-1,3],[0,1],[0,1],[0,4],[-1,1],[0,1]],[[2695,4828],[2,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2698,4898],[-1,0],[0,1]],[[2697,4899],[1,0],[0,-1]],[[2697,4899],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[1,0]],[[2699,4904],[0,1]],[[2699,4905],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[2720,4788],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0]],[[2715,4755],[-1,0],[1,0]],[[2715,4755],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2715,4732],[-1,0],[1,0]],[[2715,4732],[0,-1]],[[2715,4731],[-1,0],[1,0]],[[2715,4731],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-11]],[[2718,4692],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,2],[0,2],[0,2],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1]],[[3014,6786],[0,-1]],[[3014,6785],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[3018,6788],[0,-1],[0,1]],[[3018,6788],[1,0],[1,0]],[[3020,6788],[0,1]],[[3020,6789],[0,1],[0,1],[-1,0],[0,1]],[[3019,6792],[1,0],[-1,0]],[[3019,6792],[0,1],[0,1],[1,1]],[[3020,6795],[0,1]],[[3020,6796],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[3020,6813],[0,1]],[[3020,6814],[-1,0],[1,0]],[[3020,6814],[0,1]],[[3020,6815],[-1,0]],[[3019,6815],[-1,1],[0,1],[0,1],[0,1]],[[3018,6819],[-1,0]],[[3017,6819],[0,1],[1,0]],[[3018,6820],[0,1],[0,-1]],[[3018,6820],[1,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1]],[[3024,6829],[0,1],[0,-1]],[[3024,6829],[1,-1]],[[3025,6828],[0,-1]],[[3025,6827],[0,-1],[0,-1]],[[3025,6825],[0,-1]],[[3025,6824],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[3025,6818],[-1,0],[1,0]],[[3025,6818],[0,-1]],[[3025,6817],[-1,0],[1,0]],[[3025,6817],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[3026,6812],[0,1],[0,-1]],[[3026,6812],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1]],[[3029,6812],[0,-1]],[[3029,6811],[1,0],[0,-1]],[[3030,6810],[0,-1],[0,1]],[[3030,6810],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[3033,6813],[0,1],[0,-1]],[[3033,6813],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1]],[[3040,6810],[1,0]],[[3041,6810],[0,1],[0,1],[0,1]],[[3041,6813],[0,1]],[[3041,6814],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[3046,6829],[0,1],[0,-1]],[[3046,6829],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[3048,6836],[0,1]],[[3048,6836],[1,0]],[[3049,6836],[0,1]],[[3049,6837],[0,1],[-1,0]],[[3048,6838],[0,1],[0,-1]],[[3048,6838],[0,-1]],[[3048,6838],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0]],[[3058,6849],[0,-1],[0,1]],[[3058,6849],[0,1],[1,-1],[0,-1],[0,-1],[1,0]],[[3060,6847],[0,-1],[0,1]],[[3060,6847],[0,1],[1,1],[0,1],[0,1],[1,0]],[[3062,6851],[0,1],[0,-1]],[[3062,6851],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-2],[0,-2],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0]],[[3074,6834],[0,1],[0,-1]],[[3074,6834],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[3077,6824],[0,-1],[0,1]],[[3077,6824],[1,0],[1,0],[1,-1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-4]],[[3084,6814],[0,-1]],[[3084,6813],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[-1,0],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,1],[-1,-1],[-1,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[3026,6684],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,2],[0,2],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[3021,6703],[0,-1],[0,1]],[[3021,6703],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[3019,6720],[0,1]],[[3019,6721],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[3017,6728],[-1,0],[1,0]],[[3017,6728],[0,1],[-1,0]],[[3016,6729],[0,1]],[[3016,6730],[0,1]],[[3016,6731],[0,1]],[[3016,6732],[0,1],[-1,0]],[[3015,6733],[0,1]],[[3015,6734],[0,1]],[[3015,6734],[-1,0],[0,1]],[[3014,6735],[1,0]],[[3014,6735],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[3015,6749],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[1,0]],[[3015,6749],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2614,5608],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,-1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[2648,5589],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2648,5584],[0,-1]],[[2648,5583],[-1,0],[1,0]],[[2648,5583],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[1,0]],[[2649,5577],[0,-1]],[[2649,5576],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2651,5571],[-1,0],[1,0]],[[2651,5571],[0,-1],[-1,0],[0,-1]],[[2650,5569],[0,-1]],[[2650,5568],[0,-1],[-1,0]],[[2649,5567],[0,-1]],[[2649,5566],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[1,0],[1,0]],[[2651,5555],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2624,5477],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1]],[[2621,5489],[1,0],[0,1],[-1,-1]],[[2621,5489],[0,1]],[[2621,5490],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,2],[-1,1],[0,1]],[[2063,6298],[1,0],[-1,0]],[[2063,6298],[0,1],[0,1],[0,1],[1,0]],[[2064,6301],[0,-1],[0,1]],[[2064,6301],[1,0]],[[2065,6301],[0,1],[-1,0]],[[2064,6302],[0,1]],[[2064,6303],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2065,6307],[1,0],[-1,0]],[[2065,6307],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2066,6314],[-1,0],[1,0]],[[2066,6314],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0]],[[2068,6321],[0,1],[0,-1]],[[2068,6321],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[1,0]],[[2076,6334],[0,1],[0,-1]],[[2076,6334],[1,0]],[[2077,6334],[1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2074,6319],[0,-1],[0,1]],[[2074,6319],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[2070,6310],[0,-1]],[[2070,6309],[0,-1]],[[2070,6308],[0,-1]],[[2070,6307],[0,-1],[0,1]],[[2070,6307],[1,0],[0,-1],[0,-1],[-1,-1]],[[2070,6304],[0,1],[0,-1]],[[2070,6304],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0]],[[2067,6302],[0,-1]],[[2067,6301],[1,0],[-1,0]],[[2067,6302],[-1,0],[0,-1]],[[2066,6301],[0,-1],[0,1]],[[2066,6301],[-1,0]],[[2065,6301],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2065,6293],[-1,-1]],[[2064,6292],[0,-1],[0,1]],[[2064,6292],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2057,6334],[0,1]],[[2057,6335],[1,-1]],[[2058,6334],[-1,0]],[[2058,6334],[0,1]],[[2058,6335],[-1,0]],[[2058,6335],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-1]],[[2063,6332],[0,1]],[[2063,6333],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2067,6339],[0,1]],[[2067,6340],[0,1],[0,1]],[[2067,6342],[0,1]],[[2067,6339],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2073,6337],[0,1],[0,-1]],[[2073,6337],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1]],[[2064,6301],[0,1]],[[2064,6303],[-1,0],[-1,0],[0,1],[0,1]],[[2062,6305],[0,1],[0,-1]],[[2062,6305],[0,1],[0,1]],[[2062,6305],[-1,0],[0,1],[0,1],[1,0]],[[2062,6307],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2782,6657],[2,3],[3,5],[0,1],[3,3],[0,1],[1,1],[1,3],[1,2],[0,4],[0,1],[1,1]],[[2794,6682],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2795,6675],[0,-1]],[[2795,6674],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2799,6697],[-1,0],[1,0]],[[2799,6697],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,-1],[0,-1],[-1,0]],[[2797,6702],[0,-1],[0,1]],[[2797,6702],[-1,0],[0,-1]],[[2796,6701],[0,-1],[0,1]],[[2796,6701],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,2]],[[2792,6702],[1,0],[-1,0]],[[2792,6702],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1]],[[2790,6709],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,3],[0,2],[-1,1],[0,4],[-2,9],[1,1],[1,1],[0,1],[2,3],[2,3],[3,5],[3,4],[1,0],[0,1],[1,2],[1,1],[1,0],[4,0],[0,-1],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0]],[[2819,6767],[0,-15],[0,-15]],[[2819,6737],[0,-1],[0,1]],[[2819,6737],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2840,6698],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2836,6651],[0,-1],[0,1]],[[2836,6651],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2804,6638],[0,-1]],[[2804,6637],[-1,0]],[[2803,6637],[-1,0]],[[2802,6637],[0,-1],[-1,0]],[[2801,6636],[0,-1]],[[2801,6635],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,0]],[[2798,6634],[0,-1]],[[2798,6633],[0,-1],[0,-1],[-1,0]],[[2797,6631],[0,1],[0,-1]],[[2797,6631],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0]],[[2793,6630],[0,-1],[0,1]],[[2793,6630],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2791,6637],[0,-1],[0,1]],[[2791,6637],[0,1],[0,1]],[[2791,6639],[0,1]],[[2791,6640],[-1,0]],[[2790,6640],[0,1],[0,-1]],[[2790,6640],[-1,0],[0,1],[0,1]],[[2789,6642],[-1,0]],[[2788,6642],[0,1]],[[2788,6643],[0,1],[0,-1]],[[2788,6643],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-2,5],[0,1],[-1,0]],[[2819,6767],[3,0],[2,0],[2,0],[1,0],[3,0],[2,0],[1,0],[3,0]],[[3011,6962],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[-1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[1,0],[0,1],[0,-1],[0,1],[0,1],[1,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,1],[-1,0],[1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,1],[0,1],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,-7],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1]],[[3014,6786],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[3013,6839],[0,1]],[[3013,6840],[0,1],[0,1]],[[3013,6842],[0,1]],[[3013,6843],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[3011,6958],[0,1],[0,1],[0,1],[0,1]],[[1660,6154],[-1,0],[1,0]],[[1660,6154],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1661,6160],[0,-1],[0,1]],[[1661,6160],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1765,5876],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-2],[1,-1],[1,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1799,5765],[0,-1]],[[1799,5764],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[1804,5657],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0]],[[1732,5648],[0,1],[0,-1]],[[1732,5648],[-1,0],[-1,0]],[[1730,5648],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1729,5656],[1,0]],[[1729,5656],[0,1],[1,0]],[[1730,5657],[0,-1]],[[1730,5657],[1,0],[0,-1],[0,-1],[0,1],[0,1],[-1,0]],[[1730,5657],[0,1],[0,1],[-1,0]],[[1729,5659],[0,1],[0,-1]],[[1729,5659],[-1,0],[-1,0],[0,1],[0,1],[-1,0]],[[1726,5661],[0,-1],[0,1]],[[1726,5661],[0,1]],[[1726,5662],[0,1]],[[1726,5662],[1,0]],[[1726,5663],[1,0]],[[1726,5663],[0,1],[1,0]],[[1727,5664],[0,-1]],[[1727,5663],[0,-1]],[[1727,5664],[1,0]],[[1728,5664],[0,-1],[0,1]],[[1728,5664],[0,1],[-1,0]],[[1727,5665],[0,1]],[[1727,5666],[0,1],[-1,0]],[[1726,5667],[0,1]],[[1726,5668],[-1,0],[0,1]],[[1725,5669],[1,0],[-1,0]],[[1725,5669],[0,1]],[[1725,5670],[0,1],[0,-1]],[[1725,5669],[-1,1],[0,1],[0,1]],[[1724,5672],[0,1],[0,1]],[[1724,5674],[0,1],[-1,0],[0,-1],[1,0]],[[1724,5672],[-1,0],[0,1],[-1,0],[0,1]],[[1722,5674],[0,1],[0,-1]],[[1722,5674],[-1,0]],[[1721,5674],[0,1],[0,-1]],[[1721,5674],[0,-1],[0,-1],[0,-1]],[[1721,5671],[0,-1]],[[1721,5671],[-1,0],[1,-1]],[[1721,5670],[0,-1]],[[1721,5669],[-1,0]],[[1720,5669],[0,-1]],[[1720,5668],[-1,0]],[[1719,5668],[0,1],[0,-1]],[[1719,5668],[0,-1]],[[1719,5667],[0,-1],[0,-1]],[[1719,5667],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0]],[[1715,5667],[0,1],[0,-1]],[[1715,5667],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1715,5694],[0,1]],[[1715,5695],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1714,5744],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1705,5865],[1,0],[-1,0]],[[1705,5865],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1705,5876],[-1,0],[1,0]],[[1705,5876],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[1701,5914],[1,0]],[[1702,5914],[0,1]],[[1702,5915],[-1,0],[1,0]],[[1702,5915],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[1701,5924],[0,1]],[[1701,5925],[0,1]],[[1701,5926],[-1,0],[1,0]],[[1701,5926],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0]],[[1699,5930],[0,1]],[[1699,5931],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1697,5945],[0,-1],[0,1]],[[1697,5945],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[1695,5967],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1692,6005],[0,-1],[0,1]],[[1692,6005],[-1,1],[0,1]],[[1691,6007],[0,1]],[[1691,6008],[-1,0],[0,1]],[[1690,6009],[0,1]],[[1690,6010],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[1688,6013],[0,-1],[0,1]],[[1688,6013],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1]],[[1686,6021],[0,1]],[[1686,6022],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[1685,6033],[0,1],[0,1],[0,-1],[0,-1]],[[1685,6033],[-1,0],[0,1],[0,1],[-1,0]],[[1683,6035],[0,1]],[[1683,6036],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[1682,6053],[0,-1],[0,1]],[[1682,6053],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[1679,6061],[0,-1],[0,1]],[[1679,6061],[0,1],[-1,0]],[[1678,6062],[0,-1],[0,1]],[[1678,6062],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0]],[[1672,6082],[0,1],[0,-1]],[[1672,6082],[0,-1],[-1,0]],[[1671,6081],[0,-1],[0,1]],[[1671,6081],[-1,0]],[[1670,6081],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1671,6095],[1,0],[-1,0]],[[1671,6095],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[1670,6103],[0,-1],[0,1]],[[1670,6103],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[1667,6123],[0,-1],[0,1]],[[1667,6123],[0,1],[-1,0],[0,1],[-1,0]],[[1665,6125],[0,1],[0,-1]],[[1665,6125],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1663,6130],[0,1],[0,-1]],[[1663,6130],[0,-1],[-1,0]],[[1662,6129],[0,1]],[[1662,6130],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2636,5842],[1,0],[0,1]],[[2637,5843],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1]],[[2639,5851],[0,1],[0,-1]],[[2639,5851],[1,0],[0,1],[0,1],[0,1]],[[2640,5854],[0,1],[0,-1]],[[2640,5854],[1,0]],[[2641,5854],[0,-1],[0,1]],[[2641,5854],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2642,5866],[0,1]],[[2642,5867],[1,0]],[[2643,5867],[0,1],[0,-1]],[[2643,5867],[1,0]],[[2644,5867],[0,-1],[0,1]],[[2644,5867],[0,1]],[[2644,5868],[0,1]],[[2644,5869],[0,1],[1,1],[0,1]],[[2645,5872],[-1,0],[0,1],[0,1],[1,0]],[[2645,5874],[0,-1],[0,-1]],[[2645,5874],[0,1],[0,-1]],[[2645,5874],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1]],[[2648,5880],[0,1],[0,-1]],[[2648,5880],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2653,5901],[0,1]],[[2653,5902],[1,-1],[0,-1]],[[2654,5900],[0,-1],[1,0],[0,1]],[[2655,5900],[-1,0]],[[2655,5900],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2660,5909],[0,1]],[[2660,5910],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2661,5919],[0,1]],[[2661,5920],[0,1],[0,1],[-1,0]],[[2660,5922],[0,1],[0,-1]],[[2660,5922],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2657,5929],[1,0],[0,1],[-1,0]],[[2657,5930],[0,-1]],[[2657,5930],[0,1],[0,-1]],[[2657,5930],[-1,-1],[0,1],[0,1],[-1,0]],[[2655,5931],[0,-1],[0,-1]],[[2655,5929],[-1,0],[0,-1],[0,-1],[0,-1]],[[2654,5926],[0,-1],[0,1]],[[2654,5926],[-1,0]],[[2653,5926],[0,1]],[[2653,5926],[0,-1],[0,1]],[[2653,5927],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2653,5935],[0,1]],[[2653,5936],[0,1],[0,1]],[[2653,5938],[0,1],[0,-1]],[[2653,5938],[-1,0],[0,1]],[[2652,5939],[0,1],[0,-1]],[[2652,5939],[-1,0],[-1,0]],[[2650,5939],[0,-1],[0,1]],[[2650,5939],[0,1],[-1,0],[1,1],[0,1],[0,1]],[[2650,5943],[-1,0]],[[2649,5943],[0,1],[0,-1]],[[2649,5943],[-1,1]],[[2648,5944],[0,1],[0,-1]],[[2648,5944],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1]],[[2646,5940],[0,-1]],[[2646,5939],[0,-1]],[[2646,5938],[-1,0]],[[2645,5938],[0,1]],[[2645,5939],[1,0]],[[2646,5940],[0,1],[0,-1]],[[2646,5940],[-1,0]],[[2645,5940],[0,-1]],[[2645,5938],[-1,0],[0,1],[0,1],[1,0]],[[2645,5940],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2644,5949],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1]],[[2666,5950],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2669,5931],[0,-1]],[[2669,5930],[0,-1]],[[2669,5929],[0,-1],[0,1]],[[2669,5929],[1,0],[0,-1],[1,0]],[[2671,5928],[0,-1]],[[2671,5927],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2672,5913],[0,-1]],[[2672,5912],[0,-1],[-1,0],[0,1]],[[2671,5912],[0,1]],[[2671,5913],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[2669,5912],[1,0],[-1,0]],[[2669,5912],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2667,5905],[0,1],[0,-1]],[[2667,5905],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2667,5898],[1,0],[-1,0]],[[2667,5898],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2668,5894],[0,-1],[0,1]],[[2668,5894],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2670,5885],[0,1]],[[2670,5886],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2671,5870],[0,-1],[0,-1],[0,1],[0,1]],[[2671,5870],[-1,0],[0,1],[-1,0]],[[2669,5871],[0,-1],[0,1]],[[2669,5871],[0,1],[0,1],[-1,0]],[[2668,5873],[0,-1]],[[2668,5872],[-1,0]],[[2667,5872],[0,-1]],[[2667,5871],[-1,0]],[[2666,5871],[0,1]],[[2666,5872],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2661,5885],[0,-1]],[[2661,5884],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2660,5874],[1,0],[0,-1],[-1,0]],[[2660,5873],[0,1]],[[2660,5873],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2659,5859],[0,-1]],[[2659,5858],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2660,5847],[0,-1],[0,1]],[[2660,5847],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2661,5830],[-1,0],[-1,-1]],[[2659,5829],[0,1]],[[2659,5830],[-1,0]],[[2658,5830],[0,-1]],[[2658,5829],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1]],[[2655,5822],[-1,0],[1,0]],[[2655,5822],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2653,5819],[0,-1]],[[2653,5819],[0,1],[0,1],[0,1],[-1,0]],[[2652,5822],[0,-1],[0,1]],[[2652,5822],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2650,5827],[0,1],[0,-1]],[[2650,5827],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2648,5832],[0,-1],[0,1]],[[2648,5832],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[2645,5836],[0,1]],[[2645,5837],[0,1],[-1,0],[0,1],[-1,0],[1,1],[-1,0],[0,1]],[[2643,5841],[0,1],[0,-1]],[[2643,5841],[-1,0]],[[2642,5841],[0,1],[0,-1]],[[2642,5841],[0,-1],[0,-1]],[[2642,5839],[-1,0],[0,1]],[[2641,5840],[-1,0],[1,0]],[[2641,5840],[-1,1]],[[2640,5841],[1,0],[-1,0]],[[2640,5841],[0,1]],[[2640,5842],[-1,0],[0,-1],[-1,0]],[[2638,5841],[0,-1]],[[2638,5841],[0,1],[0,-1]],[[2638,5840],[-1,0],[0,-1]],[[2637,5839],[1,0],[-1,0]],[[2637,5839],[0,-1]],[[2637,5838],[1,0],[0,-1],[0,-1],[-1,0]],[[2637,5836],[0,1],[0,1]],[[2637,5839],[-1,0],[0,-1]],[[2636,5838],[0,-1],[0,1]],[[2636,5838],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2951,6664],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1]],[[2971,6662],[1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[0,-3],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[2967,6611],[0,1],[0,-1]],[[2967,6611],[1,0]],[[2968,6611],[0,1],[0,-1]],[[2968,6611],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[0,-2],[0,-3],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[2977,6602],[0,-1],[0,1]],[[2977,6602],[1,0],[0,1],[0,1]],[[2978,6604],[0,1],[0,-1]],[[2978,6604],[1,0],[0,1],[0,1],[1,0]],[[2980,6606],[0,1]],[[2980,6607],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[2982,6602],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1]],[[2982,6602],[0,1],[1,0],[0,1]],[[2983,6604],[0,1]],[[2983,6605],[1,0],[0,-1],[1,0]],[[2985,6604],[0,1],[0,1],[0,-1],[0,-1]],[[2985,6604],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0]],[[2989,6588],[0,1],[0,-1]],[[2989,6588],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2989,6581],[0,-1]],[[2989,6581],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2964,6578],[-1,-1],[0,1],[0,1],[0,3],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[2944,6583],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,3],[0,4],[0,1],[0,1],[0,1],[1,2]],[[2971,6662],[1,0],[1,0]],[[2973,6662],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2984,6661],[0,-1],[0,-1],[0,-1]],[[2984,6658],[0,-1]],[[2984,6657],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2985,6645],[0,-1]],[[2985,6644],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2990,6637],[0,1]],[[2990,6638],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[2992,6642],[0,1]],[[2992,6642],[1,0]],[[2993,6642],[0,-1],[0,1]],[[2993,6642],[0,1]],[[2993,6643],[-1,0]],[[2993,6643],[0,1],[0,-1]],[[2993,6643],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2994,6624],[0,-1]],[[2994,6623],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1]],[[2997,6614],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[2999,6609],[-1,0]],[[2997,6579],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2991,6579],[0,1],[-1,0],[-1,0]],[[2832,6056],[0,1]],[[2832,6057],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2833,6064],[1,0]],[[2834,6064],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2835,6069],[0,1],[0,1],[0,-1],[0,-1]],[[2835,6069],[0,-1],[0,-1],[1,0],[0,-1]],[[2836,6066],[0,-1]],[[2836,6065],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1]],[[2839,6061],[0,-1]],[[2839,6060],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2841,6055],[0,-1]],[[2841,6054],[1,0],[0,-1]],[[2842,6053],[0,-1]],[[2842,6052],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1]],[[2845,6047],[0,-1],[0,1]],[[2845,6047],[1,0]],[[2846,6047],[0,-1]],[[2846,6046],[0,-1],[1,0]],[[2847,6045],[0,1],[0,-1]],[[2847,6045],[1,0],[-1,0]],[[2847,6045],[0,-1],[1,0],[0,-1],[0,-1]],[[2848,6042],[0,-1],[0,1]],[[2848,6042],[1,0]],[[2849,6043],[0,1],[0,-1]],[[2849,6042],[0,-1]],[[2860,6014],[0,-1],[0,-1],[0,-1],[0,-1]],[[2860,6010],[0,-1],[0,1]],[[2860,6010],[-1,0]],[[2859,6010],[0,-1],[0,1]],[[2859,6010],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[2859,6010],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[2862,6000],[0,-1],[0,1]],[[2862,6000],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2863,6004],[0,-1],[0,1]],[[2863,6004],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[2864,6003],[0,-1],[1,0]],[[2864,6003],[1,0],[0,-1]],[[2865,6002],[0,-1],[0,1]],[[2865,6002],[1,0]],[[2866,6002],[0,1],[0,1],[0,-1],[0,-1]],[[2866,6002],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1]],[[2866,5983],[0,-1],[0,1]],[[2866,5983],[0,1],[1,0]],[[2867,5984],[0,-1],[0,-1],[0,1],[0,1]],[[2867,5984],[0,1]],[[2867,5985],[0,1],[0,1]],[[2867,5985],[-1,0],[0,1],[0,1],[0,1]],[[2866,5988],[0,1]],[[2866,5989],[0,1]],[[2866,5990],[1,0]],[[2867,5990],[0,1],[0,1],[0,-1],[0,-1]],[[2867,5990],[0,-1],[0,-1],[0,-1]],[[2867,5987],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2868,5977],[0,1],[0,-1]],[[2868,5977],[-1,-1]],[[2867,5976],[0,1],[0,-1]],[[2867,5976],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1]],[[2862,5985],[0,-1],[0,-1],[0,1],[0,1]],[[2862,5985],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2856,6007],[0,1]],[[2856,6008],[0,1]],[[2856,6009],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2856,6009],[-1,0],[0,-1]],[[2855,6008],[1,0]],[[2856,6007],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1]],[[2848,5991],[0,-1],[0,1]],[[2848,5991],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2847,6003],[0,-1],[0,1]],[[2847,6003],[-1,0],[0,1],[0,1],[-1,0]],[[2845,6005],[0,-1]],[[2845,6004],[-1,1],[1,0]],[[2845,6005],[0,1],[-1,0]],[[2844,6006],[0,1]],[[2844,6007],[0,1],[-1,0]],[[2843,6008],[0,1],[0,-1]],[[2843,6008],[-1,1]],[[2842,6009],[0,1]],[[2842,6010],[-1,0],[0,1],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2836,6017],[0,1],[0,-1]],[[2836,6017],[0,-1],[-1,0],[0,1],[0,1],[-1,0]],[[2834,6018],[0,1]],[[2834,6019],[0,1],[0,1],[0,1]],[[2834,6022],[0,1]],[[2834,6023],[1,0],[0,1],[1,0]],[[2836,6024],[0,1]],[[2836,6025],[1,0]],[[2837,6025],[0,-1]],[[2837,6024],[0,-1],[1,0]],[[2837,6024],[1,0],[0,-1]],[[2838,6023],[0,-1]],[[2838,6022],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2840,6032],[0,1]],[[2840,6033],[0,1],[0,-1]],[[2840,6033],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[2840,6040],[0,1]],[[2840,6041],[-1,0]],[[2839,6041],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1]],[[2838,6040],[0,1]],[[2838,6041],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[2838,6040],[-1,0]],[[2837,6040],[0,1]],[[2837,6041],[0,1],[-1,0]],[[2836,6042],[0,-1],[0,1]],[[2836,6042],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2835,6046],[0,-1],[0,1]],[[2835,6046],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2834,6050],[0,1],[0,-1]],[[2834,6050],[-1,0]],[[2833,6050],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2925,6414],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2925,6419],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0]],[[2929,6421],[0,-1]],[[2929,6420],[0,-1]],[[2929,6419],[1,0]],[[2930,6419],[0,-1]],[[2930,6418],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2931,6414],[0,1]],[[2931,6415],[0,1]],[[2931,6415],[1,0]],[[2932,6415],[0,-1]],[[2932,6414],[-1,0]],[[2931,6414],[0,-1]],[[2931,6413],[-1,0],[-1,1],[0,-2],[0,-2],[0,-1]],[[2929,6409],[0,-1],[0,-4]],[[2452,6419],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2456,6481],[0,-1],[0,1]],[[2456,6481],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0]],[[2459,6511],[0,-1],[0,1]],[[2459,6511],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2480,6582],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2467,6637],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2473,6637],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2501,6636],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2502,6613],[0,1],[0,-1]],[[2502,6613],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2505,6616],[0,1],[0,-1]],[[2505,6616],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,0]],[[2509,6615],[0,-1],[0,1]],[[2509,6615],[1,0]],[[2510,6615],[0,-1]],[[2510,6615],[1,0],[0,-1]],[[2511,6614],[-1,0]],[[2510,6614],[0,-1],[0,-1]],[[2510,6612],[1,0],[-1,0]],[[2510,6612],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2512,6605],[0,1],[0,-1]],[[2512,6605],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[2512,6602],[0,-1],[0,1]],[[2512,6602],[-1,0],[-1,0]],[[2510,6602],[0,1],[0,-1]],[[2510,6602],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2488,6479],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[2495,6431],[0,1],[0,-1]],[[2495,6431],[1,0]],[[2496,6431],[0,-1]],[[2496,6431],[0,1],[0,-1]],[[2496,6430],[1,0],[0,-1]],[[2497,6429],[-1,0],[1,0]],[[2497,6429],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[1580,6033],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1]],[[1584,6037],[0,1],[0,-1]],[[1584,6037],[1,0],[0,1]],[[1585,6038],[0,1]],[[1585,6039],[1,0]],[[1586,6039],[0,-1],[0,1]],[[1586,6039],[1,-1],[0,1],[-1,0]],[[1586,6039],[0,1]],[[1586,6040],[1,0],[-1,0]],[[1586,6040],[0,1]],[[1586,6041],[0,1],[0,1]],[[1586,6043],[1,0],[-1,0]],[[1586,6043],[0,1],[0,1]],[[1586,6045],[-1,0]],[[1585,6045],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1587,6053],[0,1],[0,-1]],[[1587,6053],[0,-1]],[[1587,6052],[1,0]],[[1588,6052],[0,1]],[[1588,6053],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[1590,6050],[0,-1],[0,1]],[[1590,6050],[0,1],[1,0]],[[1591,6051],[0,-1],[0,1]],[[1591,6051],[0,1]],[[1591,6052],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1592,6036],[0,-1]],[[1592,6035],[-1,0]],[[1591,6035],[0,1],[0,-1]],[[1591,6035],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[1592,6031],[0,-1],[0,-1],[0,1],[0,1]],[[1592,6031],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1]],[[1595,6035],[0,1],[1,0]],[[1595,6035],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1597,6028],[0,1],[0,-1]],[[1597,6028],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1]],[[1600,6021],[0,1],[0,-1]],[[1600,6021],[0,-1],[0,-1]],[[1600,6019],[0,-1]],[[1600,6018],[-1,0]],[[1599,6018],[0,1],[0,-1]],[[1599,6018],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[1599,6005],[0,-1]],[[1599,6005],[-1,0]],[[1598,6005],[0,-1],[0,1]],[[1598,6005],[-1,1]],[[1597,6006],[0,-1]],[[1597,6005],[0,-1]],[[1597,6004],[0,-1]],[[1597,6003],[-1,0]],[[1596,6003],[0,1],[0,-1]],[[1596,6003],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1594,6006],[0,1],[0,-1]],[[1594,6006],[0,-1],[0,-1],[0,-1]],[[1594,6003],[0,-1]],[[1594,6002],[-1,0],[0,-1]],[[1593,6001],[0,-1]],[[1593,6000],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1591,5987],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1]],[[1599,6004],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1601,5996],[0,-1],[0,1]],[[1601,5996],[1,0]],[[1602,5996],[0,-1]],[[1602,5995],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1604,5989],[0,1],[0,-1]],[[1604,5989],[0,-1],[1,0],[0,-1],[0,-2]],[[1605,5985],[0,-1],[0,1]],[[1605,5985],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1606,5995],[-1,0],[0,1],[1,0]],[[1606,5996],[0,-1]],[[1606,5996],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[1605,6001],[0,1],[0,-1]],[[1605,6001],[1,0]],[[1606,6001],[0,1],[0,1],[0,-1],[0,-1]],[[1606,6001],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[1608,5995],[-1,0],[0,-1],[0,-1],[1,1]],[[1608,5994],[0,1]],[[1608,5994],[1,0]],[[1609,5994],[-1,1]],[[1608,5995],[1,0],[0,-1]],[[1609,5994],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1643,5856],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[1609,5857],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,3],[0,1],[0,1],[-1,2],[0,3],[0,2],[0,1],[-1,1],[-1,1],[0,1],[-1,2],[0,3],[0,2],[0,3],[-1,2],[0,2],[-1,3],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,12],[-1,5],[0,3],[0,2],[0,1],[0,3],[0,2],[-1,2],[0,1]],[[2527,5380],[1,0],[1,0],[0,1],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1]],[[2538,5379],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1]],[[2538,5379],[1,0]],[[2539,5379],[0,1],[0,1],[0,-1],[0,-1]],[[2539,5379],[1,-2],[0,-3],[0,-1],[0,-1],[1,-1],[0,-1]],[[2541,5370],[0,-1],[0,-1],[0,1],[0,1]],[[2541,5370],[1,0],[0,1],[0,1]],[[2542,5372],[0,1]],[[2542,5373],[1,0],[0,1]],[[2543,5374],[0,1]],[[2543,5375],[1,0]],[[2544,5375],[0,-1],[0,1]],[[2544,5375],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1]],[[2543,5387],[-1,0],[0,1],[1,0]],[[2543,5388],[0,-1]],[[2543,5388],[1,0]],[[2544,5388],[0,1]],[[2544,5389],[1,0],[0,1]],[[2545,5390],[0,1]],[[2545,5391],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2547,5388],[0,-1],[0,-1]],[[2547,5388],[0,1],[0,-1]],[[2547,5388],[1,0],[0,-1],[0,-1],[-1,0]],[[2547,5386],[0,-1]],[[2547,5385],[1,0],[-1,0]],[[2547,5385],[0,-1],[0,-1]],[[2547,5383],[1,0],[-1,0]],[[2547,5383],[0,-1],[0,-1],[0,-1],[-1,0]],[[2546,5380],[0,1],[0,1],[0,-1],[0,-1]],[[2546,5380],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2548,5373],[1,0],[-1,0]],[[2548,5373],[0,-1]],[[2548,5372],[1,0],[-1,0]],[[2548,5372],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[0,1]],[[2546,5368],[0,1],[0,-1]],[[2546,5368],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2545,5361],[0,-1]],[[2545,5360],[0,-1],[-1,0]],[[2544,5359],[0,1],[1,0]],[[2545,5361],[-1,0],[0,1]],[[2544,5362],[0,1],[0,-1]],[[2544,5362],[-1,0],[0,-1],[0,-1],[0,-1]],[[2543,5359],[1,0]],[[2543,5359],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0]],[[2543,5346],[0,1],[0,-1]],[[2543,5346],[0,-1]],[[2543,5345],[-1,0],[0,-1]],[[2542,5344],[0,-1]],[[2542,5343],[1,0]],[[2543,5343],[0,1],[0,1]],[[2543,5345],[0,-1],[0,1]],[[2543,5343],[0,-1],[0,-1],[0,-1],[0,-1]],[[2543,5339],[0,-1]],[[2543,5338],[0,-1]],[[2543,5339],[-1,-1],[1,0]],[[2543,5337],[-1,0],[0,-1]],[[2542,5336],[0,-1]],[[2542,5336],[-1,0],[0,-1],[1,0]],[[2542,5335],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2541,5330],[0,1],[0,-1]],[[2541,5330],[0,-1]],[[2541,5329],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1]],[[2543,5322],[0,1]],[[2543,5323],[1,0]],[[2544,5323],[0,-1],[0,1]],[[2544,5323],[0,1],[0,-1]],[[2544,5323],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,0]],[[2545,5327],[0,-1],[0,1]],[[2545,5327],[0,1],[0,1]],[[2545,5329],[-1,0],[0,1],[1,0]],[[2545,5330],[0,-1]],[[2545,5330],[0,1],[0,1],[1,0]],[[2546,5332],[0,-1],[0,1]],[[2546,5332],[0,1],[0,1]],[[2546,5334],[0,1]],[[2546,5335],[0,1]],[[2546,5334],[1,0]],[[2547,5334],[0,-1],[0,1]],[[2547,5334],[0,1],[-1,0]],[[2546,5336],[0,1],[0,1],[1,0]],[[2547,5338],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2547,5338],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[1,0],[1,0],[0,1],[0,1],[0,2],[0,3],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2571,5396],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[2567,5382],[0,1],[0,-1]],[[2567,5382],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2575,5322],[0,-1],[0,-1],[0,1],[0,1]],[[2575,5322],[1,0]],[[2576,5322],[0,-1],[0,1]],[[2576,5322],[1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2577,5299],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2554,5269],[0,-1]],[[2554,5268],[0,-1],[1,0]],[[2555,5267],[0,-1]],[[2555,5266],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2557,5260],[0,-1]],[[2557,5259],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2557,5251],[0,-1]],[[2557,5250],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2556,5245],[0,-1]],[[2556,5244],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2554,5210],[-2,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1]],[[2713,6573],[1,3],[2,2],[1,1],[1,2],[2,4],[1,4]],[[2719,6494],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1]],[[2719,6479],[0,-1],[0,1]],[[2719,6479],[-1,0],[0,-1],[0,-1]],[[2718,6477],[1,0]],[[2719,6477],[1,0]],[[2720,6477],[0,-1],[0,-1],[-1,0]],[[2719,6475],[0,1]],[[2719,6476],[0,1]],[[2719,6476],[-1,0]],[[2718,6476],[0,-1]],[[2718,6475],[1,0]],[[2719,6475],[0,-1]],[[2719,6474],[1,0]],[[2719,6474],[0,-1]],[[2719,6473],[0,-1]],[[2719,6472],[1,0]],[[2720,6472],[0,1]],[[2720,6472],[1,0]],[[2721,6472],[0,1],[0,-1]],[[2721,6472],[0,1],[-1,0]],[[2720,6473],[0,1]],[[2720,6474],[1,0]],[[2721,6474],[0,-1],[0,1]],[[2721,6474],[0,1],[0,-1]],[[2721,6474],[0,-1],[0,-1]],[[2721,6472],[1,0]],[[2722,6472],[0,1],[0,-1]],[[2722,6472],[0,-1],[0,-1],[-1,0]],[[2721,6470],[0,1],[0,1]],[[2721,6470],[0,-1],[1,0],[0,-1],[0,-1]],[[2722,6467],[0,-1]],[[2722,6467],[1,0],[0,-1],[-1,0]],[[2722,6466],[0,-1]],[[2722,6465],[0,-1]],[[2722,6465],[-1,0],[0,1],[0,1]],[[2721,6467],[0,1],[0,-1]],[[2721,6467],[-1,0]],[[2720,6467],[0,-1],[0,1]],[[2720,6467],[0,1]],[[2720,6468],[0,1],[0,-1]],[[2720,6468],[-1,0]],[[2719,6468],[0,1]],[[2719,6468],[0,-1],[0,-1]],[[2719,6469],[0,1],[0,1],[0,1]],[[2719,6473],[-1,0],[0,1]],[[2718,6474],[0,1]],[[2718,6474],[-1,0],[0,1]],[[2717,6475],[1,0]],[[2718,6476],[-1,0],[0,-1]],[[2718,6476],[0,1]],[[2718,6477],[-1,0]],[[2717,6477],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2716,6506],[0,1]],[[2716,6507],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,50],[0,3]],[[2629,6542],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2663,6546],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2661,6533],[0,-1]],[[2661,6532],[1,0]],[[2662,6532],[0,1],[0,-1]],[[2662,6532],[0,-1],[1,0]],[[2663,6531],[0,1]],[[2663,6532],[0,1],[0,-1]],[[2663,6532],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[2678,6515],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[0,-1],[0,-1]],[[2637,6409],[0,-1],[0,1]],[[2637,6409],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2636,6405],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0]],[[2629,6399],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1572,7002],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0]],[[1596,7001],[0,1]],[[1596,7001],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0]],[[1601,6973],[0,-1]],[[1601,6972],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1602,6955],[1,0],[-1,0]],[[1602,6955],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1601,6947],[0,-1]],[[1601,6947],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[0,3],[0,3]],[[1594,6953],[-1,0],[1,0]],[[1594,6953],[0,3],[0,1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[1587,6953],[0,-2]],[[1587,6951],[0,1],[0,1]],[[1587,6953],[-1,0]],[[1586,6953],[0,1],[0,-1]],[[1586,6953],[0,-1],[0,-1],[1,0]],[[1587,6951],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[1585,6945],[0,-1]],[[1585,6944],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[1580,6946],[0,-1]],[[1580,6945],[-1,0],[0,1]],[[1579,6946],[0,1]],[[1579,6947],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1577,6953],[0,-1],[0,1]],[[1577,6953],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[1578,6966],[1,0],[-1,0]],[[1578,6966],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1578,6972],[0,1],[0,-1]],[[1578,6972],[1,0],[0,1],[0,1],[0,1],[0,1]],[[1579,6976],[0,1]],[[1579,6977],[0,1],[0,1],[0,1],[-1,0]],[[1578,6980],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,-1]],[[1578,6980],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[1576,6977],[-1,0]],[[1575,6977],[-1,0],[0,1],[-1,0]],[[1601,6946],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[1602,6941],[0,-1],[0,1]],[[1602,6941],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[1600,6930],[0,1],[0,-1]],[[1600,6930],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1601,6910],[-1,0],[1,0]],[[1601,6910],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0]],[[1599,6905],[0,-1]],[[1599,6904],[0,-1],[0,-1],[0,-1]],[[1599,6901],[0,-1]],[[1599,6900],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1599,6890],[1,0],[-1,0]],[[1599,6890],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[1594,6890],[0,1],[0,-1]],[[1594,6890],[-1,0],[-1,0],[0,1],[0,1],[-1,0]],[[1591,6892],[0,-1],[0,1]],[[1591,6892],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0]],[[1583,6898],[0,-1],[0,1]],[[1583,6898],[-1,0]],[[1582,6898],[0,-1],[0,1]],[[1582,6898],[-1,0],[-1,0]],[[1580,6898],[0,-1]],[[1580,6897],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[1567,6893],[0,1],[0,-1]],[[1567,6893],[0,-1]],[[1567,6892],[-1,0],[1,0]],[[1567,6892],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1563,6889],[0,-1]],[[1563,6888],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[1563,6885],[0,-1],[0,1]],[[1563,6885],[-1,0],[0,-1],[-1,0],[0,1],[-1,0]],[[1560,6885],[-1,-1],[0,1]],[[1559,6885],[1,0]],[[1559,6885],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1]],[[1559,6890],[0,1]],[[1559,6891],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[1533,6842],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,5],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,3],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1]],[[2395,6941],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2408,6941],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2408,6910],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[2402,6909],[0,-1],[0,1]],[[2402,6909],[-1,0]],[[2401,6909],[0,-1],[0,1]],[[2401,6909],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1]],[[2396,6913],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2394,6941],[1,0]],[[2396,6913],[0,-1],[0,-1],[0,-1]],[[2643,5629],[0,1]],[[2643,5630],[0,1]],[[2643,5631],[1,0],[0,-1]],[[2644,5630],[0,-1],[0,1]],[[2644,5630],[1,0],[1,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2645,5637],[1,0]],[[2646,5637],[0,1]],[[2646,5638],[0,1],[1,-1]],[[2647,5638],[-1,0]],[[2646,5637],[1,0]],[[2647,5637],[0,1]],[[2647,5637],[0,-1],[0,-1],[0,-1],[1,0]],[[2648,5634],[0,1],[0,-1]],[[2648,5634],[0,-1],[0,1]],[[2648,5634],[1,0]],[[2649,5634],[0,1],[0,-1]],[[2649,5634],[0,-1],[0,1]],[[2649,5634],[1,0]],[[2650,5634],[0,-1]],[[2650,5633],[1,0],[0,-1],[0,-1],[1,0],[0,1]],[[2652,5632],[0,1],[0,1],[0,-1],[0,-1]],[[2652,5632],[1,0],[0,-1],[1,0],[0,-1]],[[2654,5630],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2657,5602],[-1,0],[1,0]],[[2657,5602],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2656,5596],[0,1],[0,-1]],[[2656,5596],[0,-1],[0,-1]],[[2656,5594],[0,-1],[0,1]],[[2656,5594],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0]],[[2652,5588],[0,1]],[[2652,5589],[-1,0]],[[2651,5589],[0,1]],[[2651,5590],[0,1],[0,1],[-1,0]],[[2650,5592],[0,-1],[0,1]],[[2650,5592],[0,1]],[[2650,5593],[1,0],[-1,0]],[[2650,5593],[0,1],[0,1]],[[2650,5595],[0,1]],[[2650,5596],[-1,0]],[[2644,5607],[0,1],[0,1],[1,0]],[[2645,5609],[0,1]],[[2645,5610],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2644,5618],[1,0],[-1,0]],[[2644,5618],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2643,5623],[0,1]],[[2643,5624],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2606,6550],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2616,6550],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2629,6399],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2629,6381],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1]],[[2618,6389],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2606,6421],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1815,5997],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1849,5997],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1]],[[1855,5974],[0,-1]],[[1855,5973],[0,-1],[0,-1]],[[1855,5971],[0,-1]],[[1855,5970],[0,-1],[0,-1],[0,-1]],[[1855,5967],[0,-1]],[[1855,5966],[0,-1],[0,-1],[0,-1],[0,-1]],[[1855,5962],[-1,0],[1,0]],[[1855,5962],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1854,5947],[0,1],[0,-1]],[[1854,5947],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[1855,5935],[-1,0],[1,0]],[[1855,5935],[0,-1],[-1,0]],[[1854,5934],[0,-1]],[[1854,5933],[0,-1]],[[1854,5932],[0,-1]],[[1854,5931],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[1855,5927],[-1,0],[1,0]],[[1855,5927],[0,-1]],[[1855,5926],[-1,0]],[[1854,5926],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1853,5921],[0,-1],[0,1]],[[1853,5921],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[1852,5918],[0,-1],[0,1]],[[1852,5918],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[1850,5914],[0,-1],[0,1]],[[1850,5914],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[1840,5900],[0,1],[0,-1]],[[1840,5900],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0]],[[1819,5888],[0,1]],[[1819,5889],[0,1],[0,1],[0,-2]],[[1819,5888],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1819,5856],[0,-1],[0,1]],[[1819,5856],[-1,0],[0,-1],[0,-1]],[[1818,5854],[0,-1],[0,1]],[[1818,5854],[-1,0]],[[1817,5854],[0,1],[0,-1]],[[1817,5854],[0,-1]],[[1817,5853],[-1,0],[1,0]],[[1817,5853],[0,-1]],[[1817,5852],[-1,0]],[[1816,5852],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[1818,5840],[0,-1],[0,1]],[[1818,5840],[1,0],[0,1],[0,1],[0,1]],[[1819,5843],[0,1],[0,-1]],[[1819,5843],[1,0]],[[1820,5843],[0,-1]],[[1820,5842],[0,-1],[0,2]],[[1820,5842],[1,0],[0,1],[0,1],[0,1]],[[1821,5845],[0,1],[0,-1]],[[1821,5845],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0]],[[1839,5823],[0,1],[0,-1]],[[1839,5823],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0]],[[1854,5799],[0,-1],[0,1]],[[1854,5799],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1871,5761],[1,0],[-1,0]],[[1871,5761],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1871,5755],[0,-1]],[[1871,5754],[-1,0],[0,-1],[0,-1],[0,-1]],[[1870,5751],[0,-1]],[[1870,5750],[0,-1],[0,-1],[0,-1]],[[1870,5747],[0,-1]],[[1870,5746],[1,0],[-1,0]],[[1870,5746],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0]],[[1871,5742],[0,-1],[0,1]],[[1871,5742],[1,0],[0,1],[1,1],[0,-1],[0,-1],[1,0],[0,1]],[[1874,5743],[0,1],[0,-1]],[[1874,5743],[1,0]],[[1875,5743],[0,1],[0,-1]],[[1875,5743],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[1873,5725],[0,-1]],[[1873,5724],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[1878,5703],[0,-1]],[[1878,5702],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1878,5694],[1,0],[-1,0]],[[1878,5694],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[1880,5691],[0,-1]],[[1880,5690],[0,-1],[0,-1]],[[1880,5688],[1,0]],[[1880,5688],[0,-1],[1,0]],[[1881,5687],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1]],[[1881,5687],[0,1]],[[1881,5688],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0]],[[1885,5703],[0,-1]],[[1885,5703],[0,1]],[[1885,5704],[0,1]],[[1885,5705],[0,1],[0,-1]],[[1885,5705],[1,0]],[[1886,5705],[0,1],[0,-1]],[[1886,5705],[0,-1]],[[1886,5704],[0,-1],[0,-1]],[[1886,5702],[-1,0]],[[1885,5702],[0,-1],[1,0]],[[1886,5701],[0,1]],[[1886,5702],[1,0],[0,-1]],[[1887,5701],[0,-1],[0,1]],[[1887,5701],[-1,0]],[[1886,5701],[0,-1]],[[1886,5700],[0,-1]],[[1886,5700],[-1,0]],[[1885,5700],[0,-1]],[[1885,5699],[1,0]],[[1885,5699],[0,-1]],[[1885,5698],[1,0]],[[1885,5698],[0,-1]],[[1885,5697],[0,-1],[1,0],[0,1]],[[1886,5697],[0,1]],[[1886,5698],[0,1]],[[1886,5698],[1,0]],[[1887,5698],[0,1],[0,-1]],[[1887,5698],[0,-1],[0,-1],[0,1],[0,1]],[[1887,5698],[1,0]],[[1888,5698],[0,1]],[[1888,5699],[0,1],[0,-1]],[[1888,5699],[1,1]],[[1889,5700],[0,-1]],[[1889,5699],[0,-1]],[[1889,5698],[-1,0]],[[1888,5698],[0,-1],[0,-1]],[[1888,5696],[0,-1]],[[1888,5695],[0,-1]],[[1888,5694],[0,-1]],[[1888,5693],[0,-1],[1,0],[0,1],[0,1],[0,1]],[[1889,5695],[-1,0]],[[1888,5696],[1,0]],[[1889,5696],[0,-1]],[[1889,5696],[0,1]],[[1889,5697],[0,1]],[[1889,5699],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1]],[[1892,5699],[0,1],[0,-1]],[[1892,5699],[1,1]],[[1893,5700],[0,-1]],[[1893,5700],[0,1],[0,-1]],[[1893,5699],[0,-1],[1,0],[0,-1]],[[1894,5697],[0,-1]],[[1894,5696],[0,-1]],[[1894,5695],[1,0]],[[1895,5695],[0,1],[0,-1]],[[1895,5695],[0,-1],[1,0],[0,-1]],[[1896,5693],[0,-1],[0,1]],[[1896,5693],[1,0]],[[1897,5693],[0,-1],[0,1]],[[1897,5693],[0,1],[1,0],[-1,0],[0,-1]],[[1897,5693],[1,0],[0,-1],[0,-1],[1,0]],[[1899,5691],[0,1],[0,-1]],[[1899,5691],[0,-1]],[[1899,5690],[-1,0]],[[1898,5690],[0,-1]],[[1898,5689],[1,0]],[[1899,5689],[0,-1],[0,1]],[[1899,5689],[0,1]],[[1899,5690],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[1901,5685],[0,-1]],[[1901,5684],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[-1,1],[1,0],[0,1]],[[1905,5682],[0,1]],[[1905,5683],[-1,0],[0,1],[0,-1],[1,0]],[[1905,5683],[0,1],[0,-1]],[[1905,5683],[1,0]],[[1906,5683],[0,1],[0,-1]],[[1906,5683],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[1906,5610],[0,-1]],[[1906,5610],[-1,0],[0,-1]],[[1905,5609],[1,0]],[[1906,5609],[0,-1],[0,-1],[0,-1],[-1,0],[0,1]],[[1905,5607],[0,1]],[[1905,5608],[0,1]],[[1905,5609],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[1903,5606],[0,-1]],[[1903,5605],[0,-1],[0,1]],[[1903,5605],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[1901,5600],[0,-1],[0,-1],[0,1],[0,1]],[[1901,5600],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1899,5615],[0,-1],[0,1]],[[1899,5615],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[1898,5625],[0,1],[0,1],[0,-1],[0,-1]],[[1898,5625],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1897,5621],[-1,0],[1,0]],[[1897,5621],[0,-1],[0,-1],[0,-1]],[[1897,5618],[0,-1],[0,1]],[[1897,5618],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0]],[[1894,5613],[0,-1]],[[1894,5612],[0,-1]],[[1894,5611],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[1894,5603],[0,-1],[0,1]],[[1894,5603],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[1896,5610],[0,1],[0,-1]],[[1896,5610],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-3],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,2],[-1,0],[-1,0],[0,1],[0,1]],[[1899,5568],[0,1],[0,-1]],[[1899,5568],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-2],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1894,5543],[0,-1],[0,1]],[[1894,5543],[-1,0],[0,1],[-1,-1]],[[1892,5543],[0,1],[0,-1]],[[1892,5543],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[1890,5532],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,1]],[[1890,5532],[-1,0],[0,-1],[0,-1],[-1,0]],[[1888,5530],[0,1]],[[1888,5531],[-1,0]],[[1887,5531],[0,-1],[0,1]],[[1887,5531],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1881,5556],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1]],[[1881,5590],[0,1]],[[1881,5591],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1882,5595],[0,1]],[[1882,5596],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[1880,5620],[0,1]],[[1880,5621],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1877,5632],[0,1]],[[1877,5633],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1]],[[1875,5632],[0,-1],[0,1]],[[1875,5632],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1]],[[1871,5637],[-1,0],[0,3],[0,2],[0,1],[0,2]],[[1870,5645],[0,-1],[0,1]],[[1870,5645],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1868,5639],[0,-1],[0,1]],[[1868,5639],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1864,5617],[0,-1]],[[1864,5616],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1858,5618],[0,-1],[0,-1],[0,1],[0,1]],[[1858,5618],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1859,5586],[0,-1]],[[1859,5586],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[1855,5582],[0,-1],[0,1]],[[1855,5582],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0]],[[1835,5597],[0,1],[0,-1]],[[1835,5597],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-3],[0,-2],[0,-2],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-6],[0,-4],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,2],[-1,0],[-1,0],[-1,0],[-1,0]],[[1802,5488],[0,1],[0,-1]],[[1802,5488],[-1,0]],[[1801,5488],[0,-1]],[[1801,5487],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[1799,5500],[0,1]],[[1799,5501],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1803,5528],[0,1]],[[1803,5529],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0]],[[1798,5537],[0,-1],[0,1]],[[1798,5537],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1]],[[1799,5582],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1802,5636],[0,1]],[[1802,5637],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1799,5765],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1797,5872],[0,1]],[[1797,5873],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2616,6586],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2628,6667],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2635,6667],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,1],[1,0],[1,0]],[[2664,6618],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2658,6601],[0,-1]],[[2658,6600],[0,-1],[1,-1]],[[2659,6598],[0,-1],[0,1]],[[2659,6598],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1]],[[2672,6587],[0,-1]],[[2672,6586],[1,0],[0,-1]],[[2673,6585],[-1,0],[1,0]],[[2673,6585],[0,-1]],[[2673,6584],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0]],[[2676,6581],[0,-2],[0,-1],[0,-2],[0,-3]],[[2676,6573],[0,-1],[-2,-5],[-1,-4],[0,-2],[-2,-4],[0,-1],[-2,-6],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0]],[[2616,6550],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2686,5772],[0,1]],[[2686,5773],[1,0]],[[2687,5773],[0,1]],[[2687,5774],[0,1],[1,0]],[[2688,5775],[0,1]],[[2688,5776],[0,1],[0,1],[0,1],[1,0]],[[2689,5779],[0,-1],[0,1]],[[2689,5779],[1,0]],[[2690,5779],[0,1]],[[2690,5780],[1,0],[0,1],[1,0],[0,1]],[[2692,5782],[0,1],[1,0]],[[2693,5783],[-1,-1]],[[2692,5782],[1,0],[0,1]],[[2693,5783],[1,0],[0,1]],[[2694,5784],[0,1]],[[2694,5785],[1,0]],[[2695,5785],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,1]],[[2695,5785],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[2697,5787],[0,-1]],[[2697,5786],[0,-1],[0,1]],[[2697,5786],[1,1]],[[2698,5787],[0,-1]],[[2698,5786],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0]],[[2706,5786],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1]],[[2712,5770],[0,1],[0,-1]],[[2712,5770],[1,0]],[[2713,5770],[0,1],[0,-1]],[[2713,5770],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2712,5718],[0,-1]],[[2712,5717],[-1,0]],[[2711,5717],[0,-1],[0,-1],[0,1],[0,1]],[[2711,5717],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2709,5723],[0,1]],[[2709,5724],[-1,0]],[[2708,5724],[0,-1],[0,1]],[[2708,5724],[0,1]],[[2708,5725],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2706,5729],[0,1]],[[2706,5730],[-1,0],[1,0]],[[2706,5730],[0,1],[0,1],[-1,0]],[[2705,5732],[0,1]],[[2705,5733],[0,1]],[[2705,5734],[0,1]],[[2705,5735],[-1,0]],[[2704,5735],[0,1]],[[2704,5736],[0,1],[0,1]],[[2704,5738],[0,1]],[[2704,5739],[-1,0],[0,1]],[[2703,5740],[0,1],[0,-1]],[[2703,5740],[-1,0]],[[2702,5740],[0,1],[0,-1]],[[2702,5740],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2695,5740],[0,-1],[0,1]],[[2695,5740],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2694,5744],[0,1]],[[2694,5745],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2692,5761],[0,1]],[[2692,5762],[1,0],[0,1],[-1,0],[0,1],[0,1]],[[2692,5765],[0,1]],[[2692,5766],[-1,0]],[[2691,5766],[0,-1],[0,1]],[[2691,5766],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2691,5771],[0,1]],[[2691,5772],[1,0],[-1,1]],[[2691,5773],[1,0],[-1,0]],[[2691,5773],[0,-1]],[[2691,5773],[-1,0],[0,-1],[0,-1],[-1,0]],[[2689,5771],[0,1]],[[2689,5772],[-1,0]],[[2688,5772],[0,-1]],[[2688,5771],[-1,0]],[[2687,5771],[0,-1]],[[2687,5770],[-1,0],[0,1],[0,1]],[[2511,6663],[1,0]],[[2512,6663],[0,-1],[0,1]],[[2512,6663],[0,1],[0,-1]],[[2512,6663],[1,0]],[[2513,6663],[0,-1],[0,1]],[[2513,6663],[0,1]],[[2513,6664],[0,1],[0,1],[0,1],[0,1]],[[2513,6668],[0,1]],[[2513,6669],[0,1],[0,-1]],[[2513,6669],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2515,6676],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1]],[[2519,6673],[0,-1],[0,1]],[[2519,6673],[1,0],[1,0],[0,1]],[[2521,6674],[0,1]],[[2521,6675],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0]],[[2527,6696],[0,1],[0,1],[0,-1],[0,-1]],[[2527,6696],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,-1]],[[2532,6693],[1,0]],[[2533,6693],[0,-1]],[[2533,6692],[0,-1]],[[2533,6691],[-1,0],[0,-1]],[[2532,6690],[0,-1]],[[2532,6689],[1,-1]],[[2533,6688],[0,1]],[[2533,6689],[0,1],[0,1]],[[2533,6689],[1,0],[0,1],[0,1]],[[2534,6691],[0,1]],[[2534,6692],[0,1],[0,-1]],[[2534,6692],[1,0]],[[2534,6691],[1,0]],[[2535,6691],[0,1]],[[2535,6691],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1]],[[2536,6687],[0,1]],[[2536,6688],[1,0]],[[2537,6688],[0,-1],[0,1]],[[2537,6688],[0,1]],[[2537,6689],[1,0],[0,-1],[1,0],[1,0]],[[2540,6688],[0,1],[0,-1]],[[2540,6688],[1,0],[0,-1]],[[2541,6687],[0,-1],[1,0]],[[2542,6686],[0,-1],[0,1]],[[2542,6686],[1,0]],[[2543,6686],[0,-1],[0,1]],[[2543,6686],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[2,0],[4,0],[1,0],[2,0],[3,0],[2,0],[2,0],[1,0],[1,0],[1,0]],[[2567,6667],[0,-2],[0,-1],[0,-9],[0,-5],[0,-1],[0,-10],[1,-3],[0,-1]],[[2568,6635],[-3,0],[-1,0],[-2,0],[-1,0],[-3,0],[-4,0],[-3,0],[-4,0],[-1,0]],[[2546,6635],[-1,0],[-1,0],[-1,0]],[[2543,6635],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2521,6635],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2513,6635],[0,1],[0,1],[1,0]],[[2514,6637],[0,1]],[[2514,6638],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[2512,6649],[0,-1]],[[2512,6648],[-1,0],[0,1],[0,1],[0,1]],[[2511,6651],[0,1],[0,-1]],[[2511,6651],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1]],[[2929,6409],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2935,6425],[0,1]],[[2935,6426],[0,1]],[[2935,6427],[1,0],[0,1],[0,1]],[[2936,6429],[0,1],[0,-1]],[[2936,6429],[1,1]],[[2937,6430],[1,0]],[[2938,6430],[0,-1]],[[2938,6429],[0,-1]],[[2938,6428],[1,0]],[[2939,6428],[0,1],[0,-1]],[[2938,6428],[0,-1],[1,0]],[[2939,6427],[0,1]],[[2939,6427],[0,-1],[0,-1],[0,-1],[0,-1]],[[2939,6423],[0,-1],[0,1]],[[2939,6423],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2937,6414],[1,0],[-1,0]],[[2937,6414],[0,-1],[0,-1],[0,1],[1,0],[0,-4],[0,-2]],[[2938,6407],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[2943,6432],[1,0],[0,-1],[0,-1],[1,0]],[[2945,6430],[0,1],[0,-1]],[[2945,6430],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2951,6439],[1,0]],[[2952,6439],[0,-1],[0,1]],[[2952,6439],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[2955,6429],[0,1],[0,-1]],[[2955,6429],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2]],[[2955,6416],[0,-1]],[[2955,6415],[-4,-4],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1]],[[2945,6406],[0,3],[0,5],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2944,6421],[0,-1],[0,1]],[[2944,6421],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2935,6439],[1,0]],[[2936,6439],[0,-1],[0,1]],[[2936,6439],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2]],[[2937,6447],[1,1],[0,1],[1,1],[2,5],[0,1]],[[2945,6460],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0]],[[2950,6463],[0,-3],[0,-6],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1]],[[2951,6440],[-1,0],[1,0]],[[2951,6440],[0,-1]],[[2943,6432],[0,1],[0,1],[0,1],[-1,0]],[[2942,6435],[0,1],[0,-1]],[[2942,6435],[0,-1],[-1,0]],[[2941,6434],[0,-1]],[[2941,6433],[-1,0],[-1,0]],[[2939,6433],[-1,0],[1,0]],[[2939,6433],[0,-1],[0,-1],[-1,0]],[[2938,6431],[0,-1]],[[2937,6430],[0,1],[1,0]],[[2938,6431],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0]],[[2935,6435],[0,1]],[[2935,6436],[0,1],[0,1]],[[2935,6438],[0,1]],[[2945,6406],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-3,0]],[[2678,6515],[1,0],[1,0],[1,0],[0,-2],[0,-2],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,3],[0,1],[0,1],[0,1],[0,1]],[[2700,6509],[0,1],[0,-1]],[[2700,6509],[1,0],[0,1]],[[2701,6510],[0,1],[0,-1]],[[2701,6510],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,-1]],[[2704,6511],[0,-1],[0,1]],[[2704,6511],[1,0],[-1,0]],[[2704,6511],[1,1]],[[2705,6512],[-1,0],[1,0]],[[2705,6512],[0,1],[-1,0],[0,1],[0,1],[0,2],[1,0],[0,1],[1,0],[0,-1]],[[2706,6517],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2706,6502],[0,-1]],[[2706,6501],[0,-1]],[[2706,6500],[-1,0]],[[2705,6500],[0,-1]],[[2705,6499],[1,0],[-1,0]],[[2705,6499],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2706,6495],[0,-1],[0,1]],[[2706,6495],[1,0]],[[2707,6495],[0,1],[0,-1]],[[2707,6495],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[2674,6358],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[2665,6346],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2749,6401],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2757,6413],[0,1],[0,-1]],[[2757,6413],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2758,6407],[0,-1]],[[2758,6406],[0,-1],[0,-1]],[[2758,6404],[0,1],[0,-1]],[[2758,6404],[1,0],[0,-1],[0,-1]],[[2759,6402],[0,-1]],[[2759,6401],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2761,6394],[0,-1]],[[2761,6393],[0,-1],[1,0],[0,-1]],[[2762,6391],[0,-1]],[[2762,6390],[1,0]],[[2763,6390],[-1,-1],[1,0]],[[2763,6389],[1,0]],[[2764,6389],[0,-1]],[[2764,6388],[-1,0]],[[2763,6388],[0,-1]],[[2763,6387],[1,0]],[[2764,6387],[0,1]],[[2764,6387],[0,-1]],[[2764,6386],[0,-1]],[[2764,6386],[-1,0],[0,-1],[0,-1],[1,0]],[[2764,6384],[0,1]],[[2764,6385],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2767,6378],[0,-1],[0,1]],[[2767,6378],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2770,6390],[0,1]],[[2770,6391],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2770,6396],[0,1]],[[2770,6397],[0,1]],[[2770,6396],[1,0]],[[2771,6396],[0,-1]],[[2771,6395],[0,-1],[0,-1],[0,-1],[1,0]],[[2772,6392],[0,-1],[0,1]],[[2772,6392],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[2779,6388],[0,1],[0,-1]],[[2779,6388],[1,0],[0,-1]],[[2780,6387],[0,-1]],[[2780,6386],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2781,6380],[0,-1]],[[2781,6379],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2784,6383],[0,1],[0,-1]],[[2784,6383],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2788,6371],[0,-1]],[[2788,6370],[0,-1],[-1,0],[0,-1]],[[2787,6368],[1,0],[-1,0]],[[2787,6368],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2786,6359],[0,-1],[0,1]],[[2786,6359],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2762,6313],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[2758,6406],[1,0],[1,0],[0,-1],[1,0]],[[2761,6405],[0,-1]],[[2761,6404],[1,0],[0,-1]],[[2762,6403],[0,-1],[0,1]],[[2762,6403],[1,0],[0,-1],[0,-1]],[[2763,6401],[0,-1]],[[2763,6400],[1,0]],[[2764,6400],[0,-1],[0,1]],[[2764,6400],[0,1]],[[2764,6401],[0,1],[0,1]],[[2764,6403],[1,0]],[[2765,6403],[0,1],[-1,0],[1,0],[0,-1]],[[2765,6403],[1,0]],[[2766,6403],[0,-1]],[[2766,6402],[-1,0],[1,0]],[[2766,6402],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2770,6416],[0,1]],[[2770,6417],[1,0]],[[2771,6417],[0,1],[0,-1]],[[2771,6417],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[2770,6410],[0,-1]],[[2770,6409],[0,-1],[-1,0]],[[2769,6408],[0,-1],[0,1]],[[2769,6408],[-1,0],[0,-1],[0,-1],[0,-1]],[[2768,6405],[1,0]],[[2769,6405],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2749,6419],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2749,6450],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2774,6419],[0,-1],[0,1]],[[2774,6419],[1,0],[0,-1],[0,-1],[0,-1]],[[2775,6416],[0,-1]],[[2775,6416],[1,0],[0,-1],[-1,0]],[[2775,6415],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[2777,6407],[0,-1],[0,1]],[[2777,6407],[1,1],[0,-1]],[[2749,6401],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2766,5943],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2792,5885],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2788,5888],[0,1]],[[2788,5888],[1,0],[0,1],[-1,0]],[[2788,5889],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0]],[[2780,5894],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[0,1]],[[2780,5894],[0,1],[-1,1]],[[2779,5896],[0,1],[0,-1]],[[2779,5896],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0]],[[2779,5889],[0,-1],[0,1]],[[2779,5889],[0,1],[0,-1]],[[2779,5889],[1,0]],[[2780,5889],[0,-1],[0,1]],[[2780,5889],[0,1],[0,-1]],[[2780,5889],[1,0],[0,1],[1,0],[0,1],[0,1]],[[2782,5892],[0,1]],[[2782,5893],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2784,5862],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0]],[[2776,5876],[0,1],[0,-1]],[[2776,5876],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[2763,5871],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0]],[[2764,5879],[0,1]],[[2764,5880],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2766,5888],[0,1]],[[2766,5888],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2767,5880],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1]],[[2767,5880],[1,0],[1,0]],[[2769,5880],[0,1],[0,-1]],[[2769,5880],[0,-1],[1,1]],[[2770,5880],[0,-1],[0,1]],[[2770,5880],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0]],[[2771,5886],[0,1],[0,-1]],[[2771,5886],[-1,0],[0,1],[0,1],[1,0]],[[2771,5888],[0,1]],[[2771,5889],[-1,0],[1,0]],[[2771,5889],[0,1]],[[2771,5890],[0,1]],[[2771,5891],[0,1],[0,1]],[[2771,5893],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,-1]],[[2771,5893],[-1,0]],[[2770,5893],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2771,5901],[0,1]],[[2771,5902],[0,1],[0,-1]],[[2771,5902],[-1,0]],[[2770,5902],[0,1],[0,-1]],[[2770,5902],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0]],[[2769,5895],[0,1],[0,-1]],[[2769,5895],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1]],[[2767,5889],[0,1],[0,-1]],[[2767,5889],[-1,0]],[[2766,5889],[0,1]],[[2766,5890],[0,1],[-1,0]],[[2765,5891],[0,-1],[0,1]],[[2765,5891],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2764,5880],[-1,0]],[[2763,5880],[0,1],[0,-1]],[[2763,5880],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2763,5874],[-1,0]],[[2762,5874],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[-1,1],[0,1]],[[2750,5910],[0,1],[0,-1]],[[2750,5910],[-1,0]],[[2749,5910],[0,1],[0,-1]],[[2749,5910],[-1,0],[0,1],[0,1],[0,1]],[[2748,5913],[0,1],[0,-1]],[[2748,5913],[-1,0],[0,-1],[-1,0]],[[2746,5912],[0,1],[0,1],[0,-1],[0,-1]],[[2746,5912],[-1,0],[0,-1],[0,-1],[-1,0],[0,1]],[[2744,5911],[0,1],[0,-1]],[[2744,5911],[-1,0]],[[2743,5911],[0,1]],[[2743,5912],[0,1],[-1,0],[0,-1]],[[2742,5912],[0,-1],[0,1]],[[2742,5912],[-1,0],[0,-1],[0,-1]],[[2741,5910],[0,-1],[0,1]],[[2741,5910],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[2738,5922],[0,1]],[[2738,5923],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,2],[0,1]],[[9056,3560],[1,3],[0,2],[1,2],[1,1],[0,-1],[1,-1],[0,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-2,-1],[-1,3],[0,3],[0,1],[0,2],[0,1]],[[9050,3712],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[9049,3742],[0,1],[0,1],[0,1],[1,2],[0,1],[0,2],[1,2],[0,1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-4],[0,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[9048,3640],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,-2],[-1,-1],[0,-3],[0,-2],[0,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[0,1],[-1,1],[0,1],[-1,0],[0,2],[0,2],[0,3],[0,1]],[[9046,3795],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[9044,3879],[0,2],[0,3],[1,4],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-3],[0,-1],[0,-2],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,0],[0,1],[0,1],[-1,1],[0,2],[-1,3],[0,1],[0,2],[0,3]],[[9044,3600],[0,3],[1,2],[1,3],[1,1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,4],[0,4]],[[9041,3423],[0,1],[1,1],[0,1],[0,2],[0,1],[1,2],[1,1],[0,1],[-1,1],[0,1],[0,2],[0,2],[0,1],[0,3],[0,4],[0,3],[1,5],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,3],[0,2],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-1],[0,-2],[-1,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-4],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,2],[0,2],[0,2]],[[9037,3986],[0,2],[0,2],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2]],[[9032,4026],[0,2],[0,2],[1,1],[0,1],[1,1],[1,0],[1,-1],[0,-1],[1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,2],[0,2],[0,1]],[[9030,3338],[0,2],[0,2],[1,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[0,-2],[1,-1],[0,-2],[0,-3],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,1],[-1,-1],[0,1],[-1,0],[-1,2],[0,1],[0,1],[0,2],[0,2],[0,1]],[[9023,4086],[0,2],[1,2],[0,1],[1,1],[1,1],[0,-1],[1,0],[0,-2],[1,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,2],[0,2]],[[2571,5396],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2586,5442],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,1]],[[2586,5442],[0,1]],[[2586,5443],[0,1],[0,-1]],[[2586,5443],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0]],[[2588,5448],[-1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[2588,5449],[0,-1]],[[2588,5449],[1,0],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2588,5457],[0,1]],[[2588,5458],[-1,0]],[[2587,5458],[0,1],[0,1],[0,-1],[0,-1]],[[2587,5458],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2583,5450],[0,-1],[-1,0]],[[2583,5450],[-1,0],[0,-1]],[[2583,5450],[0,1]],[[2583,5451],[-1,0],[1,0]],[[2583,5451],[0,1]],[[2583,5452],[-1,0],[0,1],[1,0]],[[2583,5453],[0,-1]],[[2583,5453],[0,1],[0,1]],[[2583,5455],[-1,0]],[[2582,5455],[0,1],[0,-1]],[[2582,5455],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2580,5458],[0,1],[0,-1]],[[2580,5458],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2579,5462],[0,1],[0,-1]],[[2579,5462],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2576,5461],[0,1],[0,1],[0,-1],[0,-1]],[[2576,5461],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2574,5457],[0,-1]],[[2574,5456],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2574,5457],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0]],[[2572,5466],[0,1]],[[2572,5467],[0,1],[0,1],[0,1]],[[2572,5470],[0,1]],[[2572,5471],[-1,0]],[[2571,5471],[0,1]],[[2571,5472],[1,0],[-1,0]],[[2571,5472],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2570,5491],[1,0],[-1,0]],[[2570,5491],[0,1],[0,1]],[[2596,5503],[1,0]],[[2597,5503],[0,1],[0,1],[0,-1],[0,-1]],[[2597,5503],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[2597,5467],[0,1],[0,-1]],[[2597,5467],[-1,0]],[[2596,5467],[0,1],[0,-1]],[[2596,5467],[0,-1],[0,-1],[0,-1],[-1,0]],[[2595,5464],[0,1],[0,-1]],[[2595,5464],[0,-1],[-1,0],[0,1]],[[2594,5464],[0,1],[0,-1]],[[2594,5464],[-1,0]],[[2593,5464],[0,1]],[[2593,5465],[-1,0]],[[2593,5465],[0,1],[-1,0]],[[2592,5466],[0,-1]],[[2592,5466],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2591,5456],[0,-1]],[[2591,5455],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2594,5434],[0,1],[0,-1]],[[2594,5434],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0]],[[2599,5447],[0,1]],[[2599,5448],[0,1]],[[2599,5449],[0,1],[0,1],[0,-1],[0,-1]],[[2599,5449],[1,0]],[[2600,5449],[0,-1]],[[2600,5448],[-1,0]],[[2600,5448],[0,-1],[-1,0]],[[2599,5447],[0,-1],[0,-1],[0,-1]],[[2599,5444],[1,0]],[[2600,5444],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1]],[[2617,5431],[0,-1]],[[2617,5430],[0,-1]],[[2617,5429],[1,0],[-1,0]],[[2617,5429],[0,-1]],[[2617,5428],[1,0]],[[2618,5428],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2619,5424],[-1,0],[1,0]],[[2619,5424],[0,-1],[1,0],[1,0]],[[2621,5423],[0,1],[0,-1]],[[2621,5423],[1,0]],[[2624,5299],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2608,5299],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2611,5762],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2617,5762],[0,1]],[[2617,5763],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2634,5763],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1]],[[2635,5746],[0,-1]],[[2635,5745],[0,-1]],[[2635,5744],[1,0]],[[2636,5744],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1]],[[2637,5713],[1,0]],[[2638,5713],[0,-1],[0,1]],[[2638,5713],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0]],[[2640,5710],[0,-1]],[[2640,5709],[-1,0],[0,-1],[0,-1],[0,-1]],[[2639,5706],[0,-1],[0,1]],[[2639,5706],[-1,0]],[[2638,5706],[0,1],[0,-1]],[[2638,5706],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[2638,5702],[0,1],[0,-1]],[[2638,5702],[0,-1],[0,-1]],[[2638,5700],[0,-1]],[[2638,5699],[0,-1],[1,0]],[[2639,5698],[0,-1],[0,-1],[0,1],[0,1]],[[2639,5698],[0,1]],[[2639,5699],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2640,5694],[0,-1]],[[2640,5693],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2625,5694],[0,-1],[0,1]],[[2625,5694],[-1,0]],[[2624,5694],[0,-1]],[[2624,5693],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0]],[[2626,5658],[0,-1]],[[2626,5657],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2614,5608],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2]],[[2611,5688],[0,2],[0,2],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2608,5748],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2716,5180],[0,1]],[[2716,5181],[0,1],[0,1]],[[2716,5183],[-1,0]],[[2715,5183],[0,-1],[0,1]],[[2715,5183],[0,1],[0,1],[1,0]],[[2716,5184],[0,-1]],[[2716,5197],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2716,5205],[-1,0]],[[2715,5205],[0,1],[0,-1]],[[2715,5205],[-1,0]],[[2714,5205],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1]],[[2713,5216],[0,1],[0,-1]],[[2713,5216],[0,-1],[0,-1],[1,0]],[[2714,5214],[0,1]],[[2714,5215],[0,1],[0,1],[0,1]],[[2714,5218],[0,1],[0,1]],[[2714,5220],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2714,5231],[-1,1],[0,1],[0,1]],[[2713,5234],[0,1],[0,-1]],[[2713,5234],[1,0]],[[2714,5234],[0,-1]],[[2714,5233],[0,-1],[0,-1]],[[2714,5231],[1,0],[0,1],[0,1],[-1,0]],[[2714,5234],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0]],[[2714,5242],[0,1],[0,-1]],[[2714,5242],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2716,5238],[0,-1]],[[2716,5237],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2718,5229],[0,-1],[0,1]],[[2718,5229],[0,1],[1,0],[0,-1],[0,-1],[0,-1]],[[2719,5227],[-1,0],[1,0]],[[2719,5227],[0,-1],[0,-1],[0,-1]],[[2719,5224],[0,-1]],[[2719,5223],[-1,0],[0,-1],[1,0]],[[2719,5222],[0,1]],[[2719,5222],[0,-1]],[[2719,5221],[1,0],[-1,0]],[[2719,5221],[0,-1]],[[2719,5220],[1,0],[0,-1],[0,-1],[-1,0]],[[2719,5218],[0,1],[0,1]],[[2719,5220],[0,-1],[0,1]],[[2719,5218],[0,-1],[-1,0]],[[2718,5217],[0,1]],[[2718,5217],[0,-1]],[[2718,5216],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2718,5219],[0,-1]],[[2718,5219],[0,1]],[[2718,5220],[1,0]],[[2719,5221],[-1,-1]],[[2718,5220],[-1,0]],[[2717,5220],[0,1],[0,-1]],[[2717,5220],[-1,0]],[[2716,5220],[0,-1],[-1,0]],[[2715,5219],[0,1],[1,0]],[[2715,5219],[0,-1],[0,-1],[0,-1],[0,-1]],[[2715,5215],[-1,0]],[[2714,5214],[0,-1],[0,-1],[1,0],[1,0]],[[2716,5212],[0,-1]],[[2716,5212],[0,-2]],[[2716,5210],[0,1]],[[2716,5210],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2725,5064],[0,-1],[0,-1],[0,-1]],[[2725,5061],[0,-1]],[[2725,5060],[1,0],[-1,0]],[[2725,5060],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2725,5051],[0,-1]],[[2725,5050],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[2729,5048],[0,-1]],[[2729,5047],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2726,5044],[0,-1],[0,1]],[[2726,5044],[0,1],[0,1],[0,1],[-1,0]],[[2725,5047],[0,1],[0,-1]],[[2725,5047],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2724,5040],[0,-1]],[[2724,5039],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2722,5025],[1,0],[-1,0]],[[2722,5025],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2724,5019],[0,-1]],[[2724,5018],[0,-1],[0,-1],[0,-1],[1,0]],[[2725,5015],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2719,5053],[0,-1],[0,1]],[[2719,5053],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2719,5062],[0,1]],[[2719,5063],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1]],[[2710,5115],[0,1]],[[2710,5116],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2702,5108],[0,1],[0,-1]],[[2702,5108],[-1,0]],[[2701,5108],[0,-1]],[[2701,5108],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1]],[[2701,5137],[-1,0],[1,0]],[[2701,5137],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2709,4987],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2]],[[2709,5051],[0,1],[0,1]],[[2709,5053],[0,1]],[[2709,5053],[1,0]],[[2709,5054],[1,0]],[[2710,5054],[0,-1]],[[2710,5054],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2710,5062],[1,0]],[[2711,5062],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0]],[[2724,5018],[1,0],[0,-1],[0,-1],[0,-1]],[[2725,5015],[1,0]],[[2726,5015],[0,-1],[0,-1],[0,-1]],[[2726,5012],[0,-1]],[[2726,5011],[0,-1],[0,1]],[[2726,5011],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2725,5002],[0,1],[0,-1]],[[2725,5002],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2723,4996],[0,-1],[0,1]],[[2723,4996],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2722,4992],[-1,0],[1,0]],[[2722,4992],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2717,4972],[0,-1]],[[2717,4971],[0,-1],[0,-1],[0,-1],[0,-1]],[[2717,4967],[0,-1]],[[2717,4966],[0,-1],[0,-1],[-1,0],[0,-1],[1,0]],[[2717,4963],[0,1],[0,-1]],[[2717,4963],[0,-1]],[[2717,4962],[0,-1],[1,0],[0,-1]],[[2718,4960],[0,-1]],[[2718,4959],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2713,4952],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2712,4959],[0,1]],[[2712,4960],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2712,4969],[-1,-1],[0,1]],[[2711,4969],[1,0]],[[2711,4969],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2267,4955],[1,0]],[[2268,4955],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1]],[[2273,4943],[0,-1],[0,1]],[[2273,4943],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1]],[[2276,4953],[0,1]],[[2276,4953],[1,0],[-1,0]],[[2276,4954],[0,1]],[[2276,4955],[0,1]],[[2276,4956],[0,1]],[[2276,4957],[-1,0],[0,1],[0,1]],[[2275,4959],[0,1]],[[2275,4960],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,2],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1]],[[2285,5017],[0,1]],[[2285,5018],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2284,5046],[1,0],[-1,0]],[[2284,5046],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,2],[1,0],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,2],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2283,5110],[0,1],[0,1],[0,-1],[0,-1]],[[2283,5110],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2279,5107],[-1,0],[1,0]],[[2279,5107],[0,1]],[[2279,5108],[-1,0],[1,0]],[[2279,5108],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2277,5114],[0,1]],[[2277,5115],[-1,0]],[[2276,5115],[0,1],[0,1],[0,1]],[[2276,5118],[0,1],[0,-1]],[[2276,5118],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2273,5130],[0,-1],[0,1]],[[2273,5130],[0,1],[0,1],[-1,0]],[[2272,5132],[0,-1],[0,1]],[[2272,5132],[0,1],[0,1],[0,1],[-1,1]],[[2271,5136],[0,1],[0,1]],[[2271,5138],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2272,5143],[0,1]],[[2272,5144],[0,1],[0,-1]],[[2272,5144],[-1,0]],[[2271,5144],[0,1]],[[2271,5145],[-1,0]],[[2270,5145],[0,-1],[0,1]],[[2270,5145],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1]],[[2268,5154],[0,1]],[[2268,5155],[0,1]],[[2268,5156],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2269,5169],[-1,0],[1,0]],[[2269,5169],[-1,1],[1,0],[1,0]],[[2270,5170],[0,-1]],[[2270,5169],[0,-1],[0,-1]],[[2270,5167],[0,-1],[0,1]],[[2270,5167],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2270,5185],[0,1]],[[2270,5186],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2272,5192],[0,-1],[0,1]],[[2272,5192],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1]],[[2276,5206],[0,1],[0,1],[0,-1],[0,-1]],[[2276,5206],[0,-1],[1,0]],[[2277,5205],[0,-1],[0,1]],[[2277,5205],[1,0],[0,-1],[0,-1]],[[2278,5203],[-1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1]],[[2278,5203],[1,0]],[[2279,5203],[0,1],[0,1],[0,-1],[0,-1]],[[2279,5203],[0,-1],[1,0]],[[2280,5202],[0,1],[0,-1]],[[2280,5202],[0,-1]],[[2280,5201],[0,-1]],[[2280,5201],[-1,0],[0,-1],[1,0]],[[2280,5200],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0]],[[2281,5192],[0,1],[0,-1]],[[2281,5192],[0,-1],[1,0]],[[2282,5191],[0,1],[0,-1]],[[2282,5191],[1,0]],[[2283,5191],[0,1],[0,1],[0,-1],[0,-1]],[[2283,5191],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2293,5140],[1,0]],[[2294,5140],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1]],[[2300,5097],[0,-1],[0,1]],[[2300,5097],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1]],[[2315,5137],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2316,5130],[0,-1]],[[2316,5129],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2317,5125],[0,-1]],[[2317,5124],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2316,5120],[1,0]],[[2317,5120],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2318,5116],[0,-1]],[[2318,5115],[0,-1],[0,-1],[0,-1]],[[2318,5112],[1,0],[-1,0]],[[2318,5112],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2320,5104],[0,-1]],[[2320,5104],[1,0],[0,-1],[-1,0]],[[2320,5103],[0,-1]],[[2320,5102],[1,0],[-1,0]],[[2320,5102],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2322,5098],[0,-1]],[[2322,5097],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2322,5087],[0,-1]],[[2322,5086],[0,-1],[0,-1]],[[2322,5084],[0,-1]],[[2322,5083],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2323,5077],[0,1],[0,-1]],[[2323,5077],[0,-1],[0,-1],[1,0]],[[2324,5075],[0,-1]],[[2324,5074],[0,-1],[0,-1],[0,-1],[0,-1]],[[2324,5070],[0,-1]],[[2324,5069],[0,-1]],[[2324,5068],[0,-1]],[[2324,5067],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[2326,5063],[0,-1],[0,1]],[[2326,5063],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0]],[[2331,5048],[0,-1]],[[2331,5047],[0,-2],[1,-3],[0,-2]],[[2332,5040],[0,-1],[-1,-1],[-2,-3],[-1,-3],[-1,-2],[-2,-5],[-1,-2],[-1,-2],[-2,-3],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-2,-3],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-2],[-1,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-2],[-1,-4],[0,-3],[0,-1],[-1,-5],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,-11],[0,-1],[0,-2],[0,-2],[-1,-3],[0,-1]],[[2285,4901],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1]],[[2266,4901],[0,1]],[[2266,4902],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2265,4959],[0,1]],[[2265,4960],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,3],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1]],[[2265,5033],[0,-1]],[[2265,5032],[0,-1]],[[2265,5031],[1,0],[0,-1],[1,0]],[[2267,5030],[0,-1]],[[2267,5029],[1,0]],[[2268,5029],[0,-1],[0,1]],[[2268,5029],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1]],[[2285,4901],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-7],[0,-2],[0,-2],[0,-1],[-1,-8],[0,-2],[0,-1],[0,-2],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[1,-1],[0,-3],[0,-2],[0,-1],[0,-1],[1,-10],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[1,-2],[0,-1],[0,-2],[0,-5],[0,-4],[1,-15],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-3],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,1],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[1,0],[-1,1],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1]],[[2256,4726],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1]],[[2258,4745],[0,1],[0,1],[0,-1],[0,-1]],[[2258,4745],[0,-1]],[[2258,4744],[0,-1],[0,-1],[0,-1],[1,0]],[[2259,4741],[0,-1]],[[2259,4740],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[2265,4733],[0,1],[1,0]],[[2266,4734],[0,-1]],[[2266,4733],[-1,0]],[[2266,4733],[0,-1],[0,1]],[[2266,4734],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1]],[[2570,6488],[0,1]],[[2570,6489],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2578,6545],[0,1]],[[2578,6546],[0,1],[0,1],[0,1],[0,1]],[[2578,6550],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2606,6421],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0]],[[2596,6411],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2300,5818],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2301,5810],[0,1]],[[2301,5811],[0,1],[0,-1]],[[2301,5811],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2305,5818],[0,-1]],[[2305,5818],[0,1],[0,-1]],[[2305,5817],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2304,5754],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2303,5750],[0,-1],[0,1]],[[2303,5750],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[-1,0]],[[2300,5753],[0,-1],[0,1]],[[2300,5753],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2296,5753],[0,-1],[0,1]],[[2296,5753],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2289,5754],[0,-1],[0,1]],[[2289,5754],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[2286,5757],[0,-1],[0,-1],[0,1],[0,1]],[[2286,5757],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2281,5822],[0,-1]],[[2281,5821],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1]],[[2271,5811],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2228,5698],[0,-1],[0,1]],[[2228,5698],[0,1],[0,1]],[[2228,5700],[0,1]],[[2228,5701],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2230,5716],[0,1],[0,-1]],[[2230,5716],[1,0]],[[2231,5716],[0,1],[0,-1]],[[2231,5716],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1]],[[2262,5807],[0,-1]],[[2262,5806],[1,0]],[[2263,5806],[0,-1],[0,-1],[0,1],[0,1]],[[2263,5806],[0,1],[0,1],[1,0],[0,-1],[0,-1]],[[2264,5806],[0,-1],[0,1]],[[2264,5806],[1,0]],[[2265,5806],[0,-1],[0,-1],[0,1],[0,1]],[[2265,5806],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0]],[[2304,5754],[1,0],[0,-1],[1,0]],[[2306,5753],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[2306,5753],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[2291,5650],[0,-1],[0,1]],[[2291,5650],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1]],[[2291,5641],[-1,0]],[[2290,5641],[0,1],[0,1],[0,-1],[0,-1]],[[2290,5641],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2288,5629],[0,1],[0,1]],[[2288,5631],[0,1],[0,-1]],[[2288,5631],[-1,0],[0,-1],[0,-1],[1,0]],[[2288,5629],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2282,5632],[0,-1],[0,1]],[[2282,5632],[0,1],[0,1],[-1,0]],[[2281,5634],[0,1]],[[2281,5634],[0,-1]],[[2281,5633],[0,-1],[0,-1],[-1,0]],[[2280,5631],[0,1]],[[2280,5632],[1,1]],[[2281,5635],[-1,0],[0,-1],[0,-1],[0,-1]],[[2280,5631],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2276,5638],[0,1],[0,-1]],[[2276,5638],[-1,0],[0,-1],[0,-1],[-1,0]],[[2274,5636],[0,1],[0,-1]],[[2274,5636],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2270,5642],[0,-1]],[[2270,5641],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2268,5638],[0,1],[0,-1]],[[2268,5638],[0,-1],[0,-1]],[[2268,5636],[0,-1],[0,1]],[[2268,5636],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[2263,5638],[0,-1],[0,1]],[[2263,5638],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1]],[[2259,5652],[0,1]],[[2259,5652],[1,0],[0,1],[-1,0]],[[2259,5653],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,1],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2251,5660],[0,-1]],[[2251,5660],[-1,0],[0,-1]],[[2250,5659],[1,0]],[[2250,5659],[0,-1],[0,-1],[-1,0]],[[2249,5657],[0,-1]],[[2249,5656],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2246,5663],[1,0],[0,1],[-1,0]],[[2246,5664],[0,-1]],[[2246,5664],[0,1],[0,1],[-1,0]],[[2245,5666],[0,1],[0,-1]],[[2245,5666],[-1,0]],[[2244,5666],[0,1],[0,-1]],[[2244,5666],[-1,0],[0,-1],[0,-1]],[[2243,5664],[0,-1],[0,1]],[[2243,5664],[-1,0]],[[2242,5664],[0,-1],[0,1]],[[2242,5664],[-1,0]],[[2241,5664],[0,-1],[0,-1],[0,1],[0,1]],[[2241,5664],[-1,0],[0,1],[0,1],[-1,0]],[[2239,5666],[0,1],[0,-1]],[[2239,5666],[-1,0]],[[2238,5666],[0,1]],[[2238,5666],[0,-1],[0,1]],[[2238,5667],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2235,5672],[0,1]],[[2235,5672],[0,-1],[0,1]],[[2235,5673],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1]],[[2232,5672],[0,1],[0,-1]],[[2232,5672],[-1,0]],[[2231,5672],[0,1]],[[2231,5672],[0,-1],[0,1]],[[2231,5672],[-1,0]],[[2230,5672],[0,1]],[[2230,5673],[1,0]],[[2230,5673],[0,1],[0,-1]],[[2230,5672],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2228,5687],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2228,5691],[0,1]],[[2228,5692],[0,1]],[[2228,5693],[0,1]],[[2228,5694],[0,1]],[[2228,5695],[-1,0]],[[2228,5695],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[2376,6874],[0,-1]],[[2376,6874],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2377,6880],[0,1]],[[2377,6881],[0,1],[1,0]],[[2378,6882],[0,1]],[[2378,6883],[0,1],[1,0]],[[2379,6884],[0,-1],[0,1]],[[2379,6884],[1,0]],[[2380,6884],[0,-1],[0,1]],[[2380,6884],[0,1]],[[2380,6885],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2383,6891],[0,-1],[0,1]],[[2383,6891],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2384,6897],[0,1]],[[2384,6898],[0,1],[0,1]],[[2408,6910],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2414,6877],[0,-1],[0,1]],[[2414,6877],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[2417,6875],[0,1],[0,-1]],[[2417,6875],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2432,6833],[1,0]],[[2432,6833],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2426,6823],[0,-1],[0,1]],[[2426,6823],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2706,6517],[1,0],[1,0]],[[2708,6517],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2713,6487],[0,1],[0,-1]],[[2713,6487],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2710,6479],[0,1],[0,-1]],[[2710,6479],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1]],[[2711,6475],[0,1],[0,-1]],[[2711,6475],[0,-1],[0,1]],[[2711,6475],[1,0]],[[2712,6475],[0,-1],[0,1]],[[2712,6475],[0,1]],[[2712,6476],[0,1]],[[2712,6477],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[2722,6440],[1,0]],[[2722,6440],[0,-1],[1,0]],[[2723,6439],[0,-1],[0,-1],[0,-1],[0,-1]],[[2723,6435],[0,-1]],[[2723,6434],[0,-1],[0,1]],[[2723,6434],[1,0],[0,1]],[[2724,6435],[0,1],[0,-1]],[[2724,6435],[-1,0]],[[2723,6439],[0,1]],[[2723,6440],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2724,6445],[0,1],[0,-1]],[[2724,6445],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2730,6460],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2731,6450],[0,-1]],[[2731,6449],[0,-1],[0,1]],[[2731,6450],[1,0],[0,-1]],[[2732,6449],[0,-1],[0,1]],[[2732,6449],[1,0]],[[2733,6449],[0,1]],[[2733,6449],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[2726,6401],[0,1],[0,-1]],[[2726,6401],[-1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[-1,0]],[[2725,6396],[0,1],[0,-1]],[[2725,6396],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[2708,6517],[1,0],[1,0],[1,0],[1,0]],[[2712,6517],[0,1],[0,-1]],[[2712,6517],[0,-1]],[[2712,6516],[0,-1]],[[2712,6516],[1,0],[0,-1],[-1,0]],[[2712,6515],[0,-1],[0,-1],[0,-1]],[[2712,6512],[0,-1]],[[2712,6511],[-1,0],[1,0]],[[2712,6511],[-1,-1]],[[2711,6510],[1,0],[-1,0]],[[2711,6510],[0,-1],[0,-1],[0,-1],[0,-1]],[[2711,6506],[-1,0]],[[2710,6506],[0,-1]],[[2710,6505],[1,0],[-1,0]],[[2710,6505],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2713,6507],[0,-1],[0,1]],[[2713,6507],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1]],[[2715,6507],[0,-1],[0,1]],[[2715,6507],[1,0]],[[2719,6466],[0,-1],[-1,0],[0,-1]],[[2718,6464],[0,-1]],[[2718,6463],[-1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2718,6460],[0,1]],[[2718,6461],[-1,0],[1,0]],[[2718,6461],[0,1],[0,-1]],[[2718,6460],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2722,6464],[1,0],[0,1],[1,0]],[[2724,6465],[0,-1],[0,1]],[[2724,6465],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2725,6473],[0,1]],[[2725,6474],[1,0],[0,1],[0,1],[0,1]],[[2726,6477],[-1,0],[1,0]],[[2726,6477],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2749,6500],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2749,6460],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1727,6866],[0,1]],[[1727,6867],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[1736,6909],[0,1]],[[1736,6910],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[1737,6923],[1,0],[0,1],[-1,0]],[[1737,6924],[0,-1]],[[1737,6924],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[1743,7017],[0,1],[0,-1]],[[1743,7017],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[1735,7042],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1]],[[1732,7391],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1759,7391],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1760,7268],[1,0]],[[1761,7268],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1766,7246],[0,1],[0,-1]],[[1766,7246],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1770,7215],[0,1],[0,-1]],[[1770,7215],[0,-1],[1,0]],[[1771,7214],[0,1],[0,-1]],[[1771,7214],[0,-1],[0,-1],[-1,0]],[[1770,7212],[0,-1],[0,1]],[[1770,7212],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[1771,7203],[-1,0],[1,0]],[[1771,7203],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1]],[[1775,7192],[0,-1],[0,1]],[[1775,7192],[1,0],[0,-1],[1,0],[0,-1]],[[1777,7190],[0,-1],[0,1]],[[1777,7190],[1,0]],[[1778,7190],[0,-1]],[[1778,7189],[1,0],[1,0],[0,-1],[0,-1]],[[1780,7187],[-1,0],[1,0]],[[1780,7187],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1788,7155],[0,1],[0,-1]],[[1788,7155],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1792,7136],[0,1],[0,-1]],[[1792,7136],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[1794,7133],[1,0]],[[1795,7133],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1795,7128],[0,-1]],[[1795,7127],[0,-1],[-1,0],[0,-1],[1,0],[0,-1]],[[1795,7124],[0,-1],[0,1]],[[1795,7124],[1,0],[0,1]],[[1796,7125],[0,1]],[[1796,7126],[1,0],[0,1],[0,1]],[[1797,7128],[0,1],[0,-1]],[[1797,7128],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1799,7121],[-1,0],[1,0]],[[1799,7121],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[1806,7120],[0,-1],[0,1]],[[1806,7120],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[1804,7076],[1,0],[-1,0]],[[1804,7076],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1803,7062],[0,-1],[0,1]],[[1803,7062],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[1805,7026],[0,-1],[0,1]],[[1805,7026],[-1,0]],[[1804,7026],[0,1],[0,-1]],[[1804,7026],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1801,6992],[0,-1]],[[1801,6991],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1]],[[1797,6983],[0,1],[0,-1]],[[1797,6983],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[1789,6894],[0,1],[0,-1]],[[1789,6894],[-1,0]],[[1788,6894],[0,-1],[0,1]],[[1788,6894],[0,1]],[[1788,6895],[0,1],[0,1]],[[1788,6897],[-1,0],[0,1],[0,1],[-1,0]],[[1786,6899],[0,1],[0,-1]],[[1786,6899],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1]],[[1781,6881],[0,-1]],[[1781,6880],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[1781,6871],[0,-1]],[[1781,6870],[1,0]],[[1782,6870],[0,1],[0,-1]],[[1782,6870],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[1780,6848],[1,0]],[[1781,6848],[0,-1],[0,-1],[1,0]],[[1782,6846],[0,-1],[0,-1],[0,1],[0,1]],[[1782,6846],[1,0],[0,-1],[0,-1]],[[1783,6844],[0,-1],[0,1]],[[1783,6844],[1,0]],[[1784,6844],[0,1],[0,-1]],[[1784,6844],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1]],[[1786,6830],[0,1],[0,-1]],[[1786,6830],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[1788,6822],[0,-1]],[[1788,6821],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1]],[[1787,6804],[0,-1],[0,1]],[[1787,6804],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[1784,6811],[1,0],[-1,0]],[[1784,6811],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[1783,6821],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[1,0]],[[1783,6821],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[1779,6801],[0,1],[0,-1]],[[1779,6801],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[1774,6794],[0,-1]],[[1774,6793],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[1772,6786],[0,1],[0,-1]],[[1772,6786],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[1771,6782],[0,-1]],[[1771,6781],[0,-1],[0,-1]],[[1771,6779],[0,-1]],[[1771,6778],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[1769,6772],[0,-1]],[[1769,6771],[-1,0],[0,-1],[0,-1]],[[1768,6769],[-1,0]],[[1767,6769],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[1765,6765],[0,-1]],[[1765,6764],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0]],[[1762,6765],[0,-1]],[[1762,6764],[0,-1],[0,-1],[-1,1]],[[1761,6763],[0,-1],[0,1]],[[1761,6763],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1752,6771],[1,0],[0,-1]],[[1753,6770],[0,-1],[0,1]],[[1753,6770],[-1,0],[0,1]],[[1752,6771],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1]],[[1757,6696],[0,-1]],[[1757,6695],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[1762,6688],[0,-1],[0,1]],[[1762,6688],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0]],[[1764,6692],[0,1],[0,-1]],[[1764,6692],[0,-1],[1,0]],[[1765,6691],[0,-1],[0,1]],[[1765,6691],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[1771,6688],[0,1],[0,-1]],[[1771,6688],[1,0],[0,-1],[1,-1],[0,1],[1,0],[0,-1],[1,0]],[[1775,6686],[0,-1],[0,1]],[[1775,6686],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1]],[[1732,6578],[0,2],[0,2],[0,2],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1732,6791],[0,1],[0,-1]],[[1732,6791],[1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[1733,6798],[1,0],[-1,0]],[[1733,6798],[0,1]],[[1733,6799],[1,0],[-1,0]],[[1733,6799],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1734,6820],[-1,0],[1,0]],[[1734,6820],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[1734,6833],[0,-1],[0,1]],[[1734,6833],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[1730,6842],[0,1],[0,-1]],[[1730,6842],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2506,6889],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,2],[-1,1],[0,1],[1,1]],[[2529,7001],[-1,0],[1,0]],[[2529,7001],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[0,1],[0,2],[0,2],[0,2]],[[2539,7017],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2542,7014],[0,1],[0,-1]],[[2542,7014],[1,0]],[[2543,7014],[0,1],[0,-1]],[[2543,7014],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2545,6980],[0,-1]],[[2545,6979],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2544,6969],[0,-1]],[[2544,6968],[-1,0],[0,-1],[1,0]],[[2544,6967],[0,1]],[[2544,6967],[1,0]],[[2545,6967],[0,-1],[-1,0],[1,0],[0,1]],[[2545,6967],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2549,6971],[0,1],[0,-1]],[[2549,6971],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1]],[[2552,6937],[0,1],[0,-1]],[[2552,6937],[2,-1],[1,0],[1,-1],[0,1],[0,4],[0,1],[0,1],[1,8],[1,1],[1,3],[1,1],[1,5],[1,1],[0,1],[1,3],[0,2],[1,2],[0,1],[1,4],[0,1],[0,3],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-2],[2,-4],[1,0],[1,-2],[2,-4],[1,-2],[3,-4],[2,-5],[1,-1],[-2,-6],[-1,-3],[-2,-4],[-2,-5],[-1,-4],[-1,-5],[0,-1],[-1,-4],[0,-2],[-2,-8],[-1,-12],[-1,-3],[0,-1],[-1,-7],[0,-1],[0,-5],[-2,-13],[0,-2],[0,-7],[-1,-7],[-1,-6]],[[2570,6848],[-2,0],[-1,0],[-2,0],[-4,0],[-3,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[2537,6798],[0,-1]],[[2537,6797],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,3],[0,2],[0,2],[0,4],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2522,6821],[1,0],[-1,0]],[[2522,6821],[0,-3],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1]],[[2519,6831],[-1,0]],[[2518,6831],[0,1],[0,1],[0,1],[0,1]],[[2518,6835],[0,1],[0,-1]],[[2518,6835],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2506,6838],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1]],[[1582,7165],[0,1],[0,1],[0,-1],[0,-1]],[[1582,7165],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[1587,7175],[0,1]],[[1587,7176],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1588,7181],[0,1]],[[1588,7182],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1587,7187],[0,1],[0,1],[0,-1],[0,-1]],[[1587,7187],[-1,0],[0,1],[0,1],[-1,0]],[[1585,7189],[0,-1]],[[1585,7188],[0,-1]],[[1585,7187],[0,-1]],[[1585,7186],[-1,0],[0,1]],[[1584,7187],[1,0]],[[1585,7188],[-1,0]],[[1584,7188],[0,-1]],[[1584,7188],[0,1]],[[1584,7189],[1,0]],[[1585,7189],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1585,7196],[0,-1],[0,1]],[[1585,7196],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[1586,7202],[0,1],[0,-1]],[[1586,7202],[1,0]],[[1587,7202],[0,1],[0,-1]],[[1587,7202],[0,-1]],[[1587,7201],[0,-1],[0,1]],[[1587,7202],[1,0]],[[1588,7202],[0,-1],[0,1]],[[1588,7202],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1589,7210],[0,1]],[[1589,7211],[0,1]],[[1589,7212],[1,0]],[[1589,7212],[0,1],[1,0]],[[1590,7213],[0,-1]],[[1590,7213],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1590,7218],[-1,0],[1,0]],[[1590,7218],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1591,7232],[0,1],[0,1]],[[1591,7234],[0,1],[0,-1]],[[1591,7234],[1,0],[0,-1],[1,0],[0,-1]],[[1593,7232],[1,0],[-1,0]],[[1593,7232],[0,-1],[0,-1]],[[1593,7230],[1,0],[0,-1]],[[1593,7230],[0,-1]],[[1593,7229],[1,0]],[[1594,7229],[0,-1]],[[1594,7228],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1]],[[1600,7218],[-1,0],[1,0]],[[1600,7218],[0,-1],[0,-1],[0,-1],[1,0]],[[1601,7215],[0,-1]],[[1601,7214],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0]],[[1610,7208],[0,1]],[[1610,7209],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[1614,7219],[0,1]],[[1614,7220],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1616,7225],[0,-1]],[[1616,7224],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1618,7228],[0,-1],[0,1]],[[1618,7228],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[1619,7255],[1,0],[-1,0]],[[1619,7255],[0,1],[0,-1]],[[1619,7255],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[1617,7261],[0,1]],[[1617,7262],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1]],[[1621,7285],[1,0]],[[1622,7285],[0,1],[0,1],[0,1],[1,0]],[[1623,7288],[0,-1],[0,1]],[[1623,7288],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[1624,7294],[0,-1],[0,1]],[[1624,7294],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[1620,7312],[-1,0],[1,0]],[[1620,7312],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1]],[[1623,7336],[0,1],[0,-1]],[[1623,7336],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1]],[[1630,7337],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1632,7333],[0,-1]],[[1632,7332],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0]],[[1639,7301],[0,-1]],[[1639,7300],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[1641,7289],[0,1],[0,-1]],[[1641,7289],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[1645,7283],[0,-1]],[[1645,7282],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0]],[[1648,7271],[0,-1]],[[1648,7270],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[1647,7248],[0,-1],[0,1]],[[1647,7248],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1]],[[1615,7166],[0,1]],[[1615,7167],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,1]],[[1612,7168],[0,-1]],[[1612,7167],[-1,0]],[[1611,7167],[0,1],[0,1],[0,-1],[0,-1]],[[1611,7167],[0,-1],[0,-1],[0,-1],[-1,-1]],[[1610,7163],[1,0],[-1,0]],[[1610,7163],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1609,7151],[0,-1]],[[1609,7150],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[1608,7140],[0,-1]],[[1608,7139],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[1609,7134],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[1595,7129],[0,1]],[[1595,7130],[-1,0]],[[1594,7130],[0,-1],[0,1]],[[1594,7130],[-1,0],[0,-1],[-1,0]],[[1592,7129],[0,1]],[[1592,7130],[-1,0],[-1,0],[-1,0]],[[1589,7130],[0,1]],[[1589,7131],[-1,0],[0,1],[-1,0]],[[1587,7132],[0,1],[0,-1]],[[1587,7132],[-1,0]],[[1586,7132],[0,-1],[0,1]],[[1586,7132],[0,1]],[[1586,7133],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1585,7140],[-1,0]],[[1585,7140],[0,1],[-1,0]],[[1584,7141],[0,-1]],[[1584,7140],[-1,0]],[[1583,7140],[0,1]],[[1583,7141],[-1,0],[-1,0],[0,1],[0,1],[-1,0]],[[1580,7143],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2634,5763],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2643,5763],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2677,5764],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2676,5759],[0,-1]],[[2676,5758],[0,-1]],[[2676,5757],[0,-1]],[[2676,5756],[0,-1],[0,1]],[[2676,5756],[-1,0],[0,-1]],[[2675,5755],[0,-1]],[[2675,5754],[0,-1],[-1,0]],[[2674,5753],[0,-1]],[[2674,5752],[0,-1]],[[2674,5751],[0,-1]],[[2674,5750],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2672,5746],[0,1],[0,-1]],[[2672,5746],[0,-1],[0,-1]],[[2672,5744],[0,-1]],[[2672,5744],[-1,0],[0,-1]],[[2671,5743],[1,0]],[[2671,5743],[0,-1]],[[2671,5742],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2670,5735],[1,0],[-1,0]],[[2670,5735],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2674,5719],[0,-1],[0,1]],[[2674,5719],[1,0],[0,-1],[0,-1]],[[2675,5717],[0,-1]],[[2675,5716],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2678,5707],[0,-1]],[[2678,5706],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0]],[[2681,5704],[0,1],[0,-1]],[[2681,5704],[1,0]],[[2682,5704],[0,1],[0,-1]],[[2682,5704],[1,0],[0,-1],[0,-1],[0,-1]],[[2683,5701],[1,0],[-1,0]],[[2683,5701],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2691,5646],[0,-1]],[[2691,5645],[1,0],[0,-1],[0,-1]],[[2692,5643],[-1,0],[0,1],[0,1]],[[2691,5646],[-1,0]],[[2690,5646],[0,-1],[0,1]],[[2690,5646],[-1,0]],[[2689,5646],[0,1],[0,-1]],[[2689,5646],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0]],[[2684,5646],[0,1],[0,-1]],[[2684,5646],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0]],[[2679,5652],[0,-1]],[[2679,5651],[-1,0]],[[2678,5651],[0,-1],[0,1]],[[2678,5651],[-1,0]],[[2677,5651],[0,1]],[[2677,5652],[-1,0],[0,1]],[[2676,5653],[0,1],[0,-1]],[[2676,5653],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2673,5648],[0,1],[0,1],[0,-1],[0,-1]],[[2673,5648],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2672,5643],[0,-1],[0,1]],[[2672,5643],[-1,0]],[[2671,5643],[0,1],[0,1],[0,-1],[0,-1]],[[2671,5643],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1]],[[2667,5648],[0,1],[0,-1]],[[2667,5648],[-1,0]],[[2666,5648],[0,-1]],[[2666,5647],[0,-1],[-1,0],[0,-1]],[[2665,5645],[0,-1],[0,1]],[[2665,5645],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2663,5653],[0,-1],[0,1]],[[2663,5653],[-1,0]],[[2662,5653],[0,1],[0,-1]],[[2662,5653],[-1,0]],[[2661,5653],[0,1]],[[2661,5653],[-1,0]],[[2660,5653],[0,1]],[[2660,5654],[1,0]],[[2660,5654],[0,1]],[[2660,5655],[-1,0]],[[2659,5655],[0,1]],[[2659,5656],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2657,5662],[0,1],[0,-1]],[[2657,5662],[-1,0],[0,-1],[0,-1],[-1,-1]],[[2655,5659],[0,1]],[[2655,5660],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2649,5678],[0,-1]],[[2649,5677],[-1,0]],[[2648,5677],[0,1],[0,-1]],[[2648,5677],[-1,0],[0,-1]],[[2647,5676],[0,-1],[0,1]],[[2647,5676],[-1,0]],[[2646,5676],[0,-1],[0,1]],[[2646,5676],[-1,0]],[[2645,5676],[0,-1]],[[2645,5676],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[2641,5692],[0,-1],[0,1]],[[2641,5692],[-1,0],[0,1]],[[1610,6229],[0,1]],[[1610,6230],[1,0],[0,1],[0,1],[0,1],[1,0]],[[1612,6233],[0,1]],[[1612,6233],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1613,6221],[0,-1],[0,1]],[[1613,6221],[1,0]],[[1614,6221],[0,-1],[0,1]],[[1614,6221],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1]],[[1619,6219],[0,1]],[[1619,6220],[0,1],[1,0]],[[1620,6221],[0,-1]],[[1620,6220],[-1,0]],[[1620,6220],[0,-1]],[[1620,6219],[0,-1],[0,1]],[[1620,6221],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1624,6231],[0,-1],[0,1]],[[1624,6231],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1625,6243],[0,-1],[0,1]],[[1625,6243],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[1628,6250],[0,1],[0,-1]],[[1628,6250],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0]],[[1631,6253],[0,-1]],[[1631,6252],[1,0]],[[1632,6252],[0,1]],[[1632,6253],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1634,6264],[1,0],[-1,0]],[[1634,6264],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0]],[[1645,6273],[0,-1],[0,1]],[[1645,6273],[1,0]],[[1646,6273],[0,-1],[0,1]],[[1646,6273],[1,0]],[[1647,6273],[0,1],[0,-1]],[[1647,6273],[0,-1]],[[1647,6272],[0,-1]],[[1647,6271],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1695,5967],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0]],[[1639,6070],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[1624,6119],[0,1],[0,1],[0,1]],[[1624,6122],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1]],[[1621,6148],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1]],[[1618,6195],[0,1]],[[1618,6196],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[1613,6197],[-1,0],[-1,0]],[[1611,6197],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2093,6926],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2093,6694],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2069,6461],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2034,6461],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1]],[[1977,6462],[0,-1]],[[1977,6461],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[1954,6462],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1]],[[1899,6578],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,6],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,3],[0,4],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1899,6865],[0,1],[0,1],[0,1],[0,2],[-1,3],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2710,5914],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[2713,5921],[0,1],[0,1],[0,-1],[0,-1]],[[2713,5921],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2762,5874],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2761,5878],[-1,0],[1,0]],[[2761,5878],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2757,5886],[0,1]],[[2757,5887],[1,0],[0,1]],[[2758,5888],[-1,0]],[[2758,5888],[0,1],[0,1],[0,1]],[[2758,5891],[0,1]],[[2758,5892],[1,0],[0,1],[-1,0]],[[2758,5893],[0,1]],[[2758,5894],[0,1],[-1,0],[1,1],[0,1]],[[2758,5897],[0,1],[0,-1]],[[2758,5897],[-1,0]],[[2757,5897],[0,1],[0,1],[0,-1],[0,-1]],[[2757,5897],[-1,0]],[[2756,5897],[0,1],[0,1]],[[2756,5899],[0,1]],[[2756,5900],[0,1],[0,-1]],[[2756,5900],[-1,0],[1,-1]],[[2756,5897],[-1,0],[1,0]],[[2756,5897],[0,-1],[0,-1],[0,-1],[0,-1]],[[2756,5893],[0,-1]],[[2756,5892],[0,-1],[1,0],[0,-1]],[[2757,5890],[-1,0],[1,0]],[[2757,5890],[0,-1],[0,-1]],[[2757,5888],[0,-1]],[[2757,5887],[-1,0],[0,-1],[1,0]],[[2757,5886],[0,-1],[0,-1],[0,-1]],[[2757,5883],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1]],[[2757,5883],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2757,5865],[0,-1],[0,-1],[0,1],[0,1]],[[2757,5865],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2756,5860],[-1,0]],[[2755,5860],[0,1],[0,-1]],[[2755,5860],[-1,0]],[[2754,5860],[0,-1]],[[2754,5859],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2751,5844],[0,-1]],[[2751,5843],[-1,0]],[[2750,5843],[0,-1],[0,1]],[[2750,5843],[-1,0]],[[2749,5843],[0,1],[0,-1]],[[2749,5843],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1]],[[2745,5839],[0,1],[0,-1]],[[2745,5839],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[2742,5836],[0,-1]],[[2742,5836],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2742,5849],[0,1]],[[2742,5850],[0,1]],[[2742,5851],[0,1],[0,-1]],[[2742,5851],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2739,5848],[0,1],[0,-1]],[[2739,5848],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2738,5859],[0,1],[0,-1]],[[2738,5859],[1,0]],[[2739,5859],[0,1]],[[2739,5859],[1,0]],[[2740,5859],[0,1]],[[2740,5860],[-1,0]],[[2739,5860],[0,1],[1,0]],[[2740,5861],[0,-1]],[[2740,5861],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2741,5870],[-1,0]],[[2740,5870],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2740,5875],[0,1]],[[2740,5876],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2732,5856],[0,-1],[0,-1]],[[2732,5856],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2731,5860],[0,1],[0,-1]],[[2731,5860],[-1,0],[-1,0],[0,-1]],[[2729,5859],[0,-1],[0,1]],[[2729,5859],[-1,0],[0,-1],[0,-1],[-1,0]],[[2727,5857],[0,-1]],[[2727,5856],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2727,5851],[0,-1]],[[2727,5850],[0,-1]],[[2727,5849],[0,-1],[-1,0]],[[2726,5848],[0,-1]],[[2726,5847],[0,-1]],[[2726,5846],[0,-1],[0,-1],[0,1],[0,1]],[[2726,5846],[-1,0]],[[2725,5846],[0,-1],[0,1]],[[2725,5846],[0,1]],[[2725,5847],[1,0]],[[2726,5848],[-1,0],[0,1]],[[2725,5849],[0,1]],[[2725,5850],[0,1]],[[2725,5849],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2726,5855],[0,1]],[[2726,5856],[1,0]],[[2727,5857],[-1,0]],[[2726,5857],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1]],[[2725,5885],[0,1],[0,-1]],[[2725,5885],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2722,5891],[0,-1],[0,1]],[[2722,5891],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0]],[[2713,5894],[0,-1],[0,1]],[[2713,5894],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[2711,5903],[0,-1],[0,1]],[[2711,5903],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2710,5913],[0,1]],[[2742,5835],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2743,5808],[0,-1]],[[2743,5807],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1]],[[2741,5804],[-1,0]],[[2740,5804],[0,-1],[0,1]],[[2740,5804],[0,1],[1,0]],[[2741,5805],[0,-1]],[[2741,5805],[0,1],[0,1]],[[2741,5807],[0,1],[0,1],[0,-1],[0,-1]],[[2741,5807],[-1,0]],[[2740,5807],[0,-1],[0,1]],[[2740,5807],[-1,0],[0,-1],[0,-1],[-1,0]],[[2738,5805],[0,-1]],[[2738,5804],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1]],[[2738,5797],[0,-1],[0,1]],[[2738,5797],[-1,0],[0,-1],[0,-1]],[[2737,5795],[0,-1]],[[2737,5794],[-1,0],[0,-1],[0,-1],[0,-1]],[[2736,5791],[1,0],[-1,0]],[[2736,5791],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2737,5786],[0,1],[0,-1]],[[2737,5786],[0,-1],[0,-1]],[[2737,5784],[0,-1]],[[2737,5783],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2738,5779],[0,-1]],[[2738,5778],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1]],[[2739,5779],[0,1]],[[2739,5780],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2740,5790],[0,-1],[0,1]],[[2740,5790],[0,1],[1,0]],[[2741,5791],[0,1]],[[2741,5792],[1,0],[0,-1],[-1,0]],[[2741,5791],[0,-1],[0,-1]],[[2741,5789],[0,-1]],[[2741,5788],[0,-1]],[[2741,5787],[-1,0],[1,0]],[[2741,5787],[0,-1],[0,1]],[[2741,5788],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2743,5781],[0,-1],[0,1]],[[2743,5781],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2743,5787],[1,0]],[[2744,5787],[0,1]],[[2744,5788],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2745,5777],[0,1],[0,-1]],[[2745,5777],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2746,5743],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2737,5775],[0,1],[0,1],[0,-1],[0,-1]],[[2737,5775],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0]],[[2734,5770],[0,-1],[0,1]],[[2734,5770],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2734,5781],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0]],[[2736,5808],[0,-1],[0,1]],[[2736,5808],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1]],[[2737,5825],[-1,0],[1,1]],[[2737,5826],[0,-1]],[[2737,5826],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0]],[[2734,5847],[0,-1],[0,1]],[[2734,5847],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2733,5853],[0,1],[0,-1]],[[2733,5853],[-1,0],[0,1]],[[2743,5789],[0,1],[0,-1]],[[2743,5789],[1,0]],[[2744,5789],[0,-1]],[[2744,5789],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2743,5808],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2745,5831],[0,-1],[0,1]],[[2745,5831],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2747,5834],[0,1],[0,-1]],[[2747,5834],[1,0]],[[2748,5834],[0,-1],[0,1]],[[2748,5834],[1,0]],[[2749,5834],[0,-1],[0,1]],[[2749,5834],[0,1],[0,1],[1,0],[0,1]],[[2750,5837],[0,1],[0,-1]],[[2750,5837],[1,1]],[[2751,5838],[0,1]],[[2751,5839],[0,1],[0,1],[0,1],[0,1]],[[2751,5843],[1,0],[0,1]],[[2752,5844],[-1,0]],[[2752,5844],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2753,5848],[0,-1],[0,1]],[[2753,5848],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2756,5855],[0,1],[0,1]],[[2756,5857],[0,1]],[[2756,5858],[0,1]],[[2756,5859],[0,1]],[[2756,5859],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0]],[[2761,5866],[0,1]],[[2761,5867],[0,1]],[[2761,5868],[0,1]],[[2761,5869],[-1,0],[1,0]],[[2761,5869],[0,1],[0,1]],[[2761,5871],[0,1],[0,-1]],[[2761,5871],[1,0]],[[2762,5871],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2763,5856],[0,1]],[[2763,5857],[1,0]],[[2764,5857],[0,1],[0,-1]],[[2764,5857],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2766,5847],[0,-1]],[[2766,5846],[1,0],[0,-1],[0,-1]],[[2767,5844],[1,0]],[[2768,5844],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[2777,5772],[0,-1]],[[2777,5771],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2780,5764],[0,-1]],[[2780,5763],[0,-1],[0,-1]],[[2780,5761],[1,0]],[[2781,5761],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2782,5748],[0,-1]],[[2782,5747],[-1,0]],[[2781,5747],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2781,5741],[0,-1]],[[2781,5740],[1,0]],[[2782,5740],[0,-1]],[[2782,5739],[0,-1],[0,-1],[0,-1]],[[2782,5736],[0,-1],[0,1]],[[2782,5736],[1,0]],[[2783,5736],[0,1],[0,-1]],[[2783,5736],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[2787,5744],[0,-1],[0,1]],[[2787,5744],[1,0],[0,1],[1,0]],[[2789,5745],[0,1]],[[2789,5746],[-1,0],[0,1],[1,0],[0,-1]],[[2789,5745],[0,-1],[0,1]],[[2789,5746],[1,0]],[[2790,5746],[0,1]],[[2790,5747],[0,1],[0,1],[1,0]],[[2791,5749],[0,1],[0,-1]],[[2791,5749],[1,0]],[[2792,5749],[0,-1]],[[2792,5748],[0,-1],[1,0]],[[2793,5747],[0,1],[0,-1]],[[2793,5747],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2795,5732],[0,-1]],[[2795,5731],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2795,5717],[1,0],[-1,0]],[[2795,5717],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2793,5701],[0,-1]],[[2793,5700],[-1,0]],[[2792,5700],[0,-1]],[[2792,5699],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2792,5694],[0,-1],[0,1]],[[2792,5694],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2791,5689],[-1,0]],[[2790,5689],[0,-1]],[[2790,5688],[0,-1]],[[2790,5687],[0,-1],[0,-1]],[[2790,5685],[0,-1],[0,1]],[[2790,5685],[-1,0],[0,-1]],[[2789,5684],[0,-1]],[[2789,5684],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[-1,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2747,5743],[-1,0]],[[2743,5787],[0,1],[0,1]],[[2763,5871],[-1,0]],[[2841,6221],[1,0]],[[2842,6221],[0,1],[0,-1]],[[2842,6221],[1,0]],[[2843,6221],[0,1]],[[2843,6221],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2845,6215],[0,-1]],[[2845,6214],[1,0],[0,-1]],[[2846,6213],[-1,0],[1,0]],[[2846,6213],[0,-1],[0,-1],[0,-1]],[[2846,6210],[-1,0]],[[2845,6210],[0,1],[0,-1]],[[2845,6210],[0,-1],[0,1]],[[2846,6210],[0,-1],[0,-1]],[[2846,6208],[0,-1],[0,-1],[0,-1]],[[2846,6205],[0,-1],[0,-2],[0,-1],[-1,-1]],[[2845,6200],[0,-1],[0,-1]],[[2845,6198],[1,0],[-1,0]],[[2845,6198],[0,-1]],[[2845,6197],[1,0],[-1,0]],[[2845,6197],[0,-1]],[[2845,6196],[0,-1],[0,1]],[[2845,6196],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1]],[[2254,5419],[0,1]],[[2254,5420],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2254,5428],[-1,0],[0,-1],[0,1],[1,0]],[[2254,5428],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2253,5432],[1,0]],[[2254,5432],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[2253,5448],[0,1],[0,-1]],[[2253,5448],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2256,5443],[0,-1]],[[2256,5442],[0,-1]],[[2256,5441],[0,-1]],[[2256,5440],[1,0],[0,1],[0,1],[1,0]],[[2258,5442],[0,-1],[0,1]],[[2258,5442],[1,0]],[[2259,5442],[0,-1],[0,1]],[[2259,5442],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2262,5442],[0,-1],[0,1]],[[2262,5442],[0,1],[1,0]],[[2263,5443],[0,1],[0,-1]],[[2263,5443],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2273,5480],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2279,5480],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[2298,5394],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,2]],[[2289,5399],[0,1],[0,-1]],[[2289,5399],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,-3],[0,-1],[0,-1]],[[2278,5337],[0,-2]],[[2278,5335],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2268,5314],[-1,0],[0,-1]],[[2267,5313],[0,-1],[0,1]],[[2267,5313],[1,0]],[[2268,5313],[0,1]],[[2268,5313],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1]],[[2267,5309],[0,1],[0,-1]],[[2267,5309],[-1,0]],[[2266,5309],[0,1]],[[2266,5310],[0,1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2261,5255],[0,-1],[0,1]],[[2261,5255],[1,0]],[[2262,5255],[0,1],[0,-1]],[[2262,5255],[0,-1],[0,1]],[[2262,5255],[1,0]],[[2263,5255],[0,1],[0,-1]],[[2263,5255],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2265,5249],[0,1],[0,-1]],[[2265,5249],[0,-1]],[[2265,5248],[0,-1]],[[2265,5247],[1,0],[0,-1],[0,-1],[0,-1]],[[2266,5244],[-1,0],[1,0]],[[2266,5244],[0,-1],[0,-1]],[[2266,5242],[0,-1]],[[2266,5241],[0,-1],[0,-1]],[[2266,5239],[-1,0]],[[2265,5239],[0,1],[0,-1]],[[2265,5239],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2264,5232],[0,-1],[0,1]],[[2264,5232],[1,0]],[[2265,5232],[0,1],[0,-1]],[[2265,5232],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1]],[[2269,5223],[0,-1],[0,1]],[[2269,5223],[-1,0]],[[2268,5223],[0,-1],[0,1]],[[2268,5223],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[2267,5220],[0,-1]],[[2267,5219],[1,0]],[[2268,5219],[0,-1],[0,-1],[0,1],[0,1]],[[2268,5219],[1,0]],[[2269,5219],[0,-1]],[[2269,5219],[1,0]],[[2270,5219],[0,1]],[[2270,5220],[0,1],[0,-1]],[[2270,5220],[1,0]],[[2271,5220],[0,1]],[[2271,5220],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0]],[[2269,5214],[0,1],[0,1]],[[2269,5216],[0,1]],[[2269,5217],[0,1]],[[2269,5217],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2267,5213],[0,-1],[0,-1],[0,1],[0,1]],[[2267,5213],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2265,5220],[0,-1]],[[2265,5219],[-1,0],[0,-1],[0,-1],[0,-1]],[[2264,5216],[0,-1]],[[2264,5216],[-1,0],[1,0]],[[2264,5215],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2264,5211],[0,-1],[0,1]],[[2264,5211],[1,0],[0,-1],[0,-1],[1,0]],[[2266,5209],[0,-1],[0,1]],[[2266,5209],[1,-1],[0,-1]],[[2267,5207],[0,-1]],[[2267,5206],[-1,0]],[[2266,5206],[0,1],[0,-1]],[[2266,5206],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0]],[[2266,5200],[0,-1]],[[2266,5199],[0,-1],[-1,0],[0,-1]],[[2265,5197],[0,-1]],[[2265,5196],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,-3],[0,-1],[1,0],[0,-1]],[[2263,5192],[-1,0],[1,0]],[[2263,5192],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0]],[[2260,5180],[0,1],[0,-1]],[[2260,5180],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[2259,5176],[1,0],[-1,0]],[[2259,5176],[-1,0]],[[2258,5176],[0,-1],[0,-1]],[[2258,5174],[1,0],[0,-1],[-1,0],[0,1]],[[2258,5176],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[2252,5240],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2251,5250],[0,-1],[0,1]],[[2251,5250],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2250,5261],[0,1]],[[2250,5262],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0]],[[2250,5270],[0,1]],[[2250,5271],[0,1],[0,1],[0,1],[0,1]],[[2250,5275],[0,1]],[[2250,5276],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2251,5280],[0,1],[0,-1]],[[2251,5280],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2248,5318],[0,1],[0,-1]],[[2248,5318],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2407,6122],[0,1],[0,-1]],[[2407,6122],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1]],[[2407,6130],[0,-1],[0,1]],[[2407,6130],[0,1],[0,1],[0,1]],[[2407,6133],[-1,0],[0,1]],[[2407,6133],[0,1],[-1,0]],[[2406,6134],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2409,6139],[0,-1],[0,1]],[[2409,6139],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2418,6198],[0,1],[0,-1]],[[2418,6198],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2425,6205],[0,1]],[[2425,6206],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2425,6213],[0,1]],[[2425,6213],[-1,0],[0,1],[1,0]],[[2425,6214],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[0,1]],[[2425,6220],[-1,0],[1,0]],[[2425,6220],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2439,6246],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2465,6255],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0]],[[2479,6218],[0,-1]],[[2479,6217],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1]],[[2481,6208],[0,-1],[0,-1]],[[2481,6208],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2474,6209],[0,-1],[0,1]],[[2474,6209],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2471,6204],[0,-2]],[[2471,6202],[0,-1]],[[2471,6201],[0,-1],[0,1]],[[2471,6201],[-1,1]],[[2470,6202],[0,-1]],[[2470,6202],[0,1]],[[2470,6203],[1,0],[0,1]],[[2471,6204],[-1,0]],[[2470,6204],[0,1],[0,1],[0,-1],[0,-1]],[[2470,6204],[0,-1]],[[2470,6202],[-1,0],[1,0]],[[2470,6201],[-1,0],[-1,0],[0,1]],[[2468,6202],[0,1]],[[2468,6203],[-1,0]],[[2467,6203],[0,-1]],[[2467,6202],[-1,0]],[[2466,6202],[0,1]],[[2466,6203],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[2465,6204],[0,-1]],[[2465,6203],[1,0]],[[2466,6202],[-1,0]],[[2465,6202],[0,1]],[[2465,6203],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2464,6199],[0,-1],[0,1]],[[2464,6199],[-1,0]],[[2463,6199],[0,-1]],[[2463,6198],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[2464,6189],[0,-1]],[[2464,6189],[0,1],[0,-1]],[[2464,6188],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2464,6169],[0,-1],[0,-1],[0,1],[0,1]],[[2464,6169],[1,0],[0,-1]],[[2465,6168],[0,-1]],[[2465,6167],[0,-1]],[[2465,6166],[1,0]],[[2465,6166],[0,-1],[1,0]],[[2466,6165],[0,1]],[[2466,6166],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2472,6165],[0,-1],[0,1]],[[2472,6165],[1,0],[0,-1],[0,-1]],[[2473,6163],[0,-1]],[[2473,6162],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[2475,6159],[0,-1]],[[2475,6158],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2475,6138],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2467,6151],[0,-1],[0,1]],[[2467,6151],[0,1]],[[2467,6151],[-1,0]],[[2467,6152],[-1,0]],[[2466,6152],[0,-1]],[[2466,6152],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[2431,6118],[0,-1],[0,-1],[0,1],[0,1]],[[2431,6118],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[2428,6114],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,-1]],[[2408,6112],[0,-1],[0,1]],[[2408,6112],[-1,0]],[[2407,6112],[0,1]],[[2407,6113],[0,1],[0,1]],[[2407,6115],[0,1],[0,-1]],[[2407,6115],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2596,5208],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2596,5232],[1,0],[-1,0]],[[2596,5232],[0,1],[1,0]],[[2597,5233],[0,1]],[[2597,5234],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1]],[[2599,5237],[0,1]],[[2599,5238],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2599,5253],[-1,0],[0,-1],[0,1],[1,0]],[[2599,5253],[0,1],[0,1]],[[2599,5255],[-1,0]],[[2598,5255],[1,1]],[[2599,5256],[-1,0],[1,0]],[[2599,5256],[0,1]],[[2599,5257],[-1,0],[1,0]],[[2599,5257],[0,1]],[[2599,5258],[0,1]],[[2599,5259],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2600,5264],[0,1]],[[2600,5265],[0,1],[1,0]],[[2601,5266],[0,1]],[[2601,5267],[0,1]],[[2601,5268],[0,1],[0,1],[0,1]],[[2601,5271],[0,1]],[[2601,5272],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2602,5277],[1,0],[-1,0]],[[2602,5277],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2604,5284],[0,1],[0,-1]],[[2604,5284],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2649,5262],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[2667,5258],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2667,5253],[0,-1]],[[2667,5252],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2667,5234],[0,-1]],[[2667,5233],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2666,5222],[0,-1]],[[2666,5221],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2670,5163],[0,-1],[0,1]],[[2670,5163],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2671,5157],[-1,0],[1,0]],[[2671,5157],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2669,5145],[0,-1],[0,1]],[[2669,5145],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1]],[[2666,5140],[-1,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1]],[[1554,6628],[1,0],[-1,0]],[[1554,6628],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[1555,6635],[0,1],[0,-1]],[[1555,6635],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0]],[[1559,6635],[0,-1],[0,1]],[[1559,6635],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1]],[[1562,6665],[0,1],[0,-1]],[[1562,6665],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1573,6674],[0,-1],[0,1]],[[1573,6674],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[1583,6693],[0,1],[0,-1]],[[1583,6693],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1591,6702],[1,0],[-1,0]],[[1591,6702],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[1593,6717],[-1,0],[1,0]],[[1593,6717],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[1594,6726],[0,1]],[[1594,6727],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1593,6735],[0,1]],[[1593,6736],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[1591,6743],[0,1]],[[1591,6744],[0,1],[-1,0]],[[1590,6745],[0,-1],[0,1]],[[1590,6745],[0,1]],[[1590,6745],[-1,0],[0,1],[1,0]],[[1590,6746],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1]],[[1594,6767],[1,0],[-1,0]],[[1594,6767],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1]],[[1595,6787],[-1,0],[1,0]],[[1595,6787],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[1595,6798],[1,0],[-1,0]],[[1595,6798],[0,1],[1,0]],[[1596,6799],[0,1]],[[1596,6800],[1,0]],[[1597,6800],[0,-1],[0,1]],[[1597,6800],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1596,7002],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,2],[0,1],[1,0],[1,0],[1,0],[1,0]],[[1623,7002],[0,1],[0,-1]],[[1623,7002],[1,-1],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[1653,7023],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[0,2],[0,1],[1,2],[0,1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[1670,7035],[0,1],[0,-1]],[[1670,7035],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,2],[1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1688,7043],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1649,6577],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0]],[[1559,6578],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1559,6614],[-1,0],[0,1]],[[1559,6614],[0,1],[-1,0]],[[1558,6615],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[1556,6618],[0,1]],[[1556,6619],[0,1],[0,-1]],[[1556,6619],[-1,0]],[[1555,6619],[0,-1],[0,1]],[[1555,6619],[-1,0],[0,1],[0,1],[-1,0]],[[1553,6621],[0,1]],[[1553,6622],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2349,7217],[0,1],[0,-1]],[[2349,7217],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2362,7287],[-1,0],[1,0]],[[2362,7287],[0,1],[-1,1],[0,1],[0,1]],[[2361,7291],[1,0],[-1,0]],[[2361,7291],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,2],[0,3],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[2361,7355],[0,1]],[[2361,7356],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,1],[1,0],[1,-2],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-2],[0,-1],[1,-1],[1,-1],[3,-5],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,0],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[1,1],[0,2],[1,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,-1],[1,1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[1,1],[1,0]],[[2499,7276],[0,1],[0,-1]],[[2499,7276],[0,-1],[0,-1],[-2,-9],[-1,-5],[-1,-8],[0,-3],[-1,-3],[0,-4],[-1,-5],[-1,-6],[0,-2],[-2,-7],[0,-5],[-1,-3],[-1,-9],[-1,-3],[0,-2],[-1,-6],[0,-1]],[[2486,7193],[-1,0],[-2,0],[-2,0],[-2,0],[-1,1],[-1,0],[-3,0],[-1,0],[-2,0],[-4,1],[-1,0],[0,-1],[-2,-4],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-2,-3],[0,-1],[-2,-3],[-1,-3],[-4,-8],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[-2,-5],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,0],[-3,-6],[-1,-2],[-1,-1],[-1,-2],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0]],[[2422,7118],[0,1],[0,-1]],[[2422,7118],[-1,0]],[[2421,7118],[0,1],[0,1],[0,-1],[0,-1]],[[2421,7118],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2416,7040],[0,-1],[0,1]],[[2416,7040],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2413,7037],[0,-1]],[[2413,7036],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[2406,6992],[0,-1],[0,1]],[[2406,6992],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2408,6961],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2359,7016],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[2947,6886],[1,0]],[[2948,6886],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2948,6928],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[3000,6928],[1,0],[0,-1],[-1,0]],[[3000,6927],[0,-1],[0,1]],[[3000,6927],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[3000,6914],[-1,0]],[[2999,6914],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2997,6888],[1,0],[-1,0]],[[2997,6888],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2998,6883],[1,0]],[[2999,6883],[0,-1],[-1,0]],[[2998,6882],[0,1]],[[2998,6882],[0,-1],[0,-1],[0,-1]],[[2998,6879],[1,1],[0,-1]],[[2999,6879],[-1,0]],[[2999,6879],[0,-1],[0,-1],[-1,0]],[[2998,6877],[0,1],[0,-1]],[[2998,6877],[0,-1]],[[2998,6876],[0,-1],[0,1]],[[2998,6876],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2997,6869],[1,0],[0,-1],[-1,0]],[[2997,6868],[0,1]],[[2997,6868],[0,-1]],[[2997,6867],[0,-1]],[[2997,6866],[-1,0]],[[2996,6866],[0,-1]],[[2996,6865],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0]],[[2985,6847],[0,1],[0,-1]],[[2985,6847],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2985,6821],[0,1],[0,-1]],[[2985,6821],[0,-1],[0,-1]],[[2985,6819],[-1,0],[1,0]],[[2985,6819],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2983,6812],[0,-1]],[[2983,6811],[0,-1],[0,-1],[0,-1],[0,-1]],[[2983,6807],[0,-1]],[[2983,6806],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2979,6781],[0,-1]],[[2979,6780],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2977,6776],[0,-1]],[[2977,6775],[0,-1],[0,-1],[0,-1]],[[2977,6772],[0,-1]],[[2977,6771],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[2975,6760],[0,-1]],[[2975,6759],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2973,6715],[1,0],[-1,0]],[[2973,6715],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2970,6680],[1,0],[-1,0]],[[2970,6680],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2972,6668],[0,-1]],[[2972,6667],[-1,0],[1,0]],[[2972,6667],[0,-1]],[[2972,6666],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2951,6664],[-1,0],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2950,6687],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2949,6767],[0,-1],[0,1]],[[2949,6767],[-1,0]],[[2948,6767],[0,-1]],[[2948,6766],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2947,6761],[0,-1],[0,1]],[[2947,6761],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2665,6346],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[2663,6319],[0,-1],[0,1]],[[2663,6319],[-1,0]],[[2662,6319],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1]],[[2657,6322],[-1,0],[1,0]],[[2657,6322],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[2629,6265],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2205,5163],[1,0],[-1,0]],[[2205,5163],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[2208,5192],[1,0]],[[2209,5192],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,6]],[[2213,5217],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,-1],[0,-1],[1,0]],[[2269,5214],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1]],[[2269,5209],[0,1]],[[2269,5210],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2267,5206],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2267,5201],[0,-1],[0,1]],[[2267,5201],[1,0]],[[2268,5201],[0,-1]],[[2268,5201],[0,1],[0,-1]],[[2268,5200],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2268,5193],[0,-1],[0,1]],[[2268,5193],[-1,1]],[[2267,5194],[0,1],[0,-1]],[[2267,5194],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2264,5171],[0,-1]],[[2264,5171],[-1,0]],[[2263,5171],[0,-1]],[[2263,5170],[1,0]],[[2264,5170],[0,-1],[-1,0]],[[2263,5169],[0,1]],[[2263,5169],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2259,5151],[0,-1]],[[2259,5150],[0,-1],[0,1]],[[2259,5150],[-1,0]],[[2258,5150],[0,1],[0,-1]],[[2258,5150],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2255,5140],[-1,0]],[[2254,5140],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[2252,5136],[0,-1],[0,1]],[[2252,5136],[-1,0]],[[2251,5136],[0,1],[-1,0],[0,-1],[1,0]],[[2251,5136],[0,-1],[0,-1],[0,-1],[0,-1]],[[2251,5132],[0,-1]],[[2251,5131],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2250,5121],[1,0]],[[2251,5121],[0,-1],[-1,0],[0,-1],[0,-1]],[[2250,5118],[-1,0]],[[2250,5118],[-1,1]],[[2249,5119],[0,-1]],[[2249,5119],[0,1]],[[2249,5120],[0,1],[0,-1]],[[2249,5120],[-1,0]],[[2248,5120],[0,1]],[[2248,5121],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0]],[[2248,5127],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1]],[[2248,5127],[0,-1],[0,1]],[[2248,5127],[-1,0],[0,1],[-1,0]],[[2246,5128],[0,-1]],[[2246,5127],[0,-1]],[[2246,5126],[0,-1],[0,1]],[[2246,5126],[-1,0],[0,1],[0,1]],[[2245,5128],[0,1],[0,-1]],[[2245,5128],[1,0]],[[2245,5128],[1,-1]],[[2246,5128],[0,1],[0,1]],[[2246,5130],[0,1],[0,1],[0,1],[0,1]],[[2246,5130],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2247,5134],[0,1],[0,1],[0,-1],[0,-1]],[[2247,5134],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2249,5144],[0,-1],[0,1]],[[2249,5144],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0]],[[2249,5152],[0,1],[0,-1]],[[2249,5152],[-1,0],[0,1],[-1,0]],[[2247,5153],[0,1]],[[2247,5154],[0,1],[-1,0],[0,-1]],[[2246,5154],[0,-1],[0,1]],[[2246,5154],[-1,0],[0,-1],[-1,0]],[[2244,5153],[0,1]],[[2244,5154],[0,1],[0,-1]],[[2244,5154],[-1,0],[0,-1]],[[2243,5153],[1,0]],[[2243,5153],[0,-1],[0,1]],[[2243,5153],[-1,0],[0,-1]],[[2242,5152],[0,-1]],[[2242,5152],[-1,0],[1,-1]],[[2242,5151],[-1,0]],[[2241,5151],[0,-1],[0,1]],[[2241,5151],[-1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2235,5132],[0,-1],[0,1]],[[2235,5132],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2861,6578],[0,1],[1,0],[0,1],[0,1]],[[2862,6581],[0,1],[0,-1]],[[2862,6581],[1,0],[1,0],[1,0]],[[2865,6581],[0,-1],[0,1]],[[2865,6581],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2866,6585],[0,-1],[0,1]],[[2866,6585],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2868,6589],[0,1],[0,-1]],[[2868,6589],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2871,6586],[0,-1],[0,1]],[[2871,6586],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1]],[[2868,6773],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,2],[1,1]],[[2899,6764],[0,1],[0,-1]],[[2899,6764],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[2900,6732],[0,-1]],[[2900,6731],[-1,0],[0,-1]],[[2899,6730],[0,-1]],[[2899,6729],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2898,6724],[0,-1]],[[2898,6723],[1,0],[0,-1],[0,-1],[1,0]],[[2900,6721],[0,-1],[1,0]],[[2900,6721],[1,0],[0,-1]],[[2901,6720],[1,0],[0,1],[0,1],[0,1],[0,2],[0,2],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[2908,6702],[0,-1]],[[2908,6701],[1,0],[0,-1],[0,-1]],[[2909,6699],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2910,6694],[-1,0],[1,0]],[[2910,6694],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[-1,0]],[[2906,6681],[0,1],[0,-1]],[[2906,6681],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0]],[[2896,6677],[0,1]],[[2896,6678],[0,1]],[[2896,6679],[0,1],[0,-1]],[[2896,6679],[-1,0],[1,0]],[[2896,6678],[-1,0],[1,0]],[[2896,6677],[-1,0]],[[2896,6677],[0,-1]],[[2895,6677],[0,-1]],[[2895,6676],[1,0]],[[2896,6676],[0,-1],[0,-1],[-1,0],[0,-1]],[[2895,6673],[1,0]],[[2896,6673],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2893,6650],[0,-1]],[[2893,6649],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2893,6644],[0,-1]],[[2893,6643],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2891,6637],[0,-1]],[[2891,6636],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[2889,6600],[-1,0],[1,0]],[[2889,6600],[0,-1],[0,-1],[0,-1]],[[2889,6597],[0,-1],[0,1]],[[2889,6597],[-1,0]],[[2888,6597],[0,-1],[0,1]],[[2888,6597],[0,-3],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1]],[[2887,6578],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[2318,5996],[0,1],[1,0]],[[2319,5997],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2324,5997],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2324,5919],[0,1],[0,-1]],[[2324,5919],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2324,5910],[0,-1]],[[2324,5909],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2325,5904],[0,1],[0,-1]],[[2325,5904],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[2329,5896],[0,-1],[0,1]],[[2329,5896],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0]],[[2335,5859],[0,1],[0,-1]],[[2335,5859],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[2329,5855],[0,-1]],[[2329,5854],[0,-1],[0,1]],[[2329,5854],[-1,0]],[[2328,5854],[0,1]],[[2328,5855],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2328,5861],[0,1]],[[2328,5862],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2314,5864],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2313,5868],[0,1]],[[2313,5869],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2560,6099],[0,1],[0,1]],[[2560,6099],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2573,6112],[0,1],[0,-1]],[[2573,6112],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2576,6101],[0,-1],[0,1]],[[2576,6101],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2578,6095],[0,-1],[0,1]],[[2578,6095],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[2581,6104],[0,-1],[0,1]],[[2581,6104],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0]],[[2585,6126],[0,-1],[0,1]],[[2585,6126],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2586,6135],[0,1],[0,-1]],[[2586,6135],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,-1]],[[2594,6113],[0,-1]],[[2594,6112],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0]],[[2598,6113],[0,1],[0,1]],[[2598,6115],[1,0]],[[2599,6115],[0,1]],[[2599,6116],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,1],[0,1]],[[2609,6123],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2612,6126],[0,1],[0,-1]],[[2612,6126],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2614,6115],[0,-1]],[[2614,6115],[0,1],[0,-1]],[[2614,6114],[0,-1]],[[2614,6114],[-1,0],[0,-1],[0,-1],[1,0],[0,1]],[[2614,6113],[1,0]],[[2615,6113],[0,-1],[0,1]],[[2615,6113],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1]],[[2617,6118],[0,-1],[0,1]],[[2617,6118],[0,1]],[[2617,6119],[1,0],[0,1],[0,1],[0,1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[2642,6059],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[2641,6052],[0,1],[0,-1]],[[2641,6052],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2634,6067],[0,-1],[0,1]],[[2634,6067],[0,1]],[[2634,6068],[0,1]],[[2634,6069],[0,1]],[[2634,6070],[0,1],[-1,-1],[1,0]],[[2634,6069],[-1,0]],[[2633,6069],[0,-1]],[[2633,6069],[-1,0],[0,-1]],[[2632,6068],[1,0]],[[2632,6068],[0,-1],[0,-1],[0,-1],[-1,0]],[[2631,6065],[0,1],[0,-1]],[[2631,6065],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[2628,6060],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0]],[[2623,6061],[0,-1],[0,1]],[[2623,6061],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2623,6073],[0,1]],[[2623,6074],[-1,0],[0,1]],[[2622,6075],[0,1]],[[2622,6076],[0,1]],[[2622,6077],[0,1],[-1,0],[0,-1]],[[2621,6077],[0,-1]],[[2621,6076],[-1,0]],[[2620,6076],[0,-1]],[[2620,6075],[1,0],[0,-1],[-1,0]],[[2620,6074],[0,-1]],[[2620,6074],[-1,0],[1,0]],[[2620,6073],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1]],[[2614,6075],[-1,0],[1,0]],[[2614,6075],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2613,6081],[0,1],[0,-1]],[[2613,6081],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2610,6051],[0,1],[0,1],[0,-1],[0,-1]],[[2610,6051],[-1,0],[0,-1]],[[2609,6050],[0,-1],[0,1]],[[2609,6050],[-1,0]],[[2608,6050],[0,1],[0,-1]],[[2608,6050],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0]],[[2613,6023],[0,-1]],[[2613,6022],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0]],[[2609,6010],[0,-1],[0,1]],[[2609,6010],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-3],[0,-1],[1,0]],[[2603,6009],[0,1],[0,-1]],[[2603,6009],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0]],[[2597,5966],[0,-1],[0,-1],[0,1],[0,1]],[[2597,5966],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2593,5985],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1]],[[2593,5985],[-1,0]],[[2592,5985],[0,-1],[0,1]],[[2592,5985],[0,1]],[[2592,5986],[0,1],[0,1]],[[2592,5988],[0,1]],[[2592,5986],[-1,0],[0,1],[0,1]],[[2591,5988],[1,0]],[[2592,5989],[-1,0]],[[2591,5989],[0,-1]],[[2591,5989],[-1,0],[0,-1],[0,-1],[0,-1]],[[2590,5986],[0,-1]],[[2590,5986],[-1,0],[1,0]],[[2590,5985],[-1,0]],[[2589,5985],[0,-1]],[[2589,5984],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0]],[[2585,5973],[0,-1],[0,-1],[0,1],[0,1]],[[2585,5973],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1],[1,0]],[[2571,6006],[0,1]],[[2571,6007],[0,1]],[[2571,6008],[0,1]],[[2571,6009],[0,1]],[[2571,6010],[1,0],[-1,0]],[[2571,6010],[0,1]],[[2571,6011],[0,1]],[[2571,6012],[0,1],[-1,0]],[[2570,6013],[0,-1],[0,1]],[[2570,6013],[0,1],[0,1],[0,1],[0,1]],[[2570,6017],[0,1],[0,-1]],[[2570,6017],[1,0]],[[2571,6017],[0,1]],[[2571,6018],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2573,6030],[0,1]],[[2573,6030],[1,0],[0,1],[-1,0]],[[2573,6031],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2574,6035],[0,1],[0,-1]],[[2574,6035],[0,-1]],[[2574,6034],[1,0],[-1,0]],[[2574,6034],[1,-1]],[[2575,6033],[0,-1],[0,1]],[[2575,6033],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[1,0],[0,1]],[[2578,6062],[0,1],[0,-1]],[[2578,6062],[1,0]],[[2579,6062],[0,-1],[0,-1]],[[2579,6060],[0,-1],[0,1]],[[2579,6060],[1,0]],[[2580,6060],[0,1]],[[2580,6061],[0,1]],[[2580,6062],[-1,0]],[[2579,6062],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2570,6069],[0,1]],[[2570,6070],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2567,6063],[0,-1],[0,1]],[[2567,6063],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1]],[[2726,5266],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3]],[[2714,5205],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-3],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,4],[0,1],[0,3],[0,1],[0,1]],[[2846,6208],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2847,6225],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2847,6231],[0,1]],[[2847,6232],[1,0]],[[2848,6232],[0,1]],[[2848,6233],[0,1]],[[2848,6234],[0,1],[0,1],[0,1],[1,0]],[[2849,6237],[0,1],[0,1]],[[2849,6239],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2850,6243],[0,1]],[[2850,6243],[0,-1],[1,0]],[[2851,6242],[0,-1],[0,-1],[0,-1],[0,-1]],[[2851,6238],[0,-1]],[[2851,6238],[1,0]],[[2852,6238],[0,1],[0,-1]],[[2852,6238],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[2854,6235],[0,1],[0,-1]],[[2854,6235],[1,0],[0,1]],[[2855,6236],[0,1]],[[2855,6237],[0,1],[1,0],[0,1],[0,1],[-1,0]],[[2855,6240],[0,1]],[[2855,6241],[1,0],[0,1],[0,1],[0,1]],[[2856,6244],[0,1],[0,-1]],[[2856,6244],[1,0]],[[2857,6244],[0,-1],[1,0],[-1,0],[0,1]],[[2857,6244],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2860,6247],[0,1],[0,-1]],[[2860,6247],[0,-1],[0,-1]],[[2860,6245],[0,-1],[0,1]],[[2860,6245],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2862,6234],[-1,0],[1,0]],[[2862,6234],[0,-1]],[[2862,6233],[-1,0],[1,0]],[[2862,6233],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2860,6230],[0,1],[0,-1]],[[2860,6230],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2859,6223],[0,-1],[0,-1],[-1,0],[-1,0]],[[2857,6221],[0,-1],[0,1]],[[2857,6221],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2854,6232],[0,1]],[[2854,6233],[0,1],[0,-1]],[[2854,6233],[-1,0],[0,1],[-1,0]],[[2852,6234],[0,1],[0,-1]],[[2852,6234],[0,-1],[-1,0],[0,1],[0,1]],[[2851,6235],[0,1]],[[2851,6236],[0,1]],[[2851,6238],[-1,0]],[[2850,6238],[0,-1],[0,-1],[0,1],[0,1]],[[2850,6238],[0,1],[-1,0]],[[2849,6237],[0,-1],[0,-1],[0,-1],[-1,0]],[[2848,6232],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2848,6225],[0,-1]],[[2848,6224],[0,-1],[1,0]],[[2849,6223],[0,1]],[[2849,6224],[0,1],[0,-1]],[[2849,6223],[1,0]],[[2850,6223],[0,1]],[[2850,6224],[0,1]],[[2850,6225],[1,0],[0,1],[0,1],[1,0]],[[2852,6227],[0,1],[0,-1]],[[2852,6227],[0,-1],[0,-1]],[[2852,6225],[0,-1],[0,1]],[[2852,6225],[1,0]],[[2853,6225],[0,1],[0,-1]],[[2853,6225],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2850,6205],[0,-1],[0,1]],[[2850,6205],[-1,0]],[[2849,6205],[0,1],[0,-1]],[[2849,6205],[0,-1],[-1,0]],[[2848,6204],[0,1],[0,-1]],[[2848,6204],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[2859,6223],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[2863,6215],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,-6],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-2],[0,-1],[0,-4],[0,-1],[1,-3],[0,-5],[1,-1],[0,-1],[0,-3],[0,-2],[1,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-3],[-1,-3],[0,-4],[0,-2],[0,-3]],[[2035,6273],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2042,6284],[0,1]],[[2042,6285],[1,0],[0,1]],[[2043,6286],[0,1]],[[2043,6287],[0,1],[0,1],[0,1]],[[2043,6290],[0,1],[0,-1]],[[2043,6290],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1]],[[2054,6277],[0,1]],[[2054,6278],[0,1],[0,-1]],[[2054,6277],[1,0]],[[2055,6277],[0,1]],[[2055,6278],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[1,0],[1,0]],[[2093,6174],[-1,-1],[-1,0],[-1,0]],[[2090,6173],[0,1],[0,-1]],[[2090,6173],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2044,6144],[0,1]],[[2044,6145],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2030,6170],[0,1]],[[2030,6171],[0,1],[-1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2029,6179],[1,0],[-1,0]],[[2029,6179],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1]],[[2027,6199],[1,0],[-1,0]],[[2027,6199],[0,1],[1,0],[0,1],[0,1]],[[2028,6202],[-1,0],[1,0]],[[2028,6202],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1]],[[2028,6208],[0,1]],[[2028,6209],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2030,6218],[0,1],[0,-1]],[[2030,6218],[-1,0]],[[2029,6218],[0,1]],[[2029,6219],[0,1],[-1,0]],[[2028,6220],[0,-1],[0,1]],[[2028,6220],[-1,0]],[[2027,6220],[0,1],[0,-1]],[[2027,6220],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2023,6229],[0,-1],[-1,1],[1,0]],[[2023,6229],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2811,6143],[0,1],[0,-1]],[[2811,6143],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,1],[0,1]],[[2814,6143],[0,1]],[[2814,6144],[1,0],[-1,0]],[[2814,6144],[0,1],[1,1]],[[2815,6146],[0,-1],[0,1]],[[2815,6146],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2816,6151],[1,0],[-1,0]],[[2816,6151],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2815,6163],[1,0],[-1,0]],[[2815,6163],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[2813,6174],[-1,0],[0,1],[1,0]],[[2813,6175],[0,-1]],[[2813,6174],[1,0]],[[2814,6174],[0,-1],[0,1]],[[2814,6174],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,-1]],[[2821,6193],[1,0],[-1,0]],[[2821,6193],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2823,6178],[0,-1]],[[2823,6177],[0,-1],[0,-1],[1,0]],[[2833,6050],[-1,0],[0,-1]],[[2832,6049],[0,-1],[0,1]],[[2832,6049],[-1,0]],[[2831,6049],[0,-1]],[[2831,6048],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0]],[[2825,6042],[0,1],[0,-1]],[[2825,6042],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2822,6042],[1,0],[-1,0]],[[2822,6042],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0]],[[2824,6068],[0,-1],[0,1]],[[2824,6068],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2821,6076],[0,1],[0,-1]],[[2821,6076],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0]],[[2817,6071],[0,1]],[[2817,6072],[0,1]],[[2817,6073],[0,1],[-1,0]],[[2816,6074],[0,1]],[[2816,6075],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[3116,3831],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,-1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,-1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1]],[[3110,3834],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[3097,3808],[0,2],[1,1],[0,1],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,1]],[[2499,7276],[1,0],[0,-1],[1,0],[-1,0],[2,-2],[1,-1],[2,3],[1,1],[3,6],[4,6],[0,1],[3,5],[2,3],[1,3],[1,2],[1,1],[1,1],[1,1],[3,2],[4,3],[1,-1],[1,-1],[0,-1],[1,-2],[1,0],[0,-1],[2,-2],[1,-2],[3,-6],[0,-1],[3,-4],[1,-1],[3,-5],[0,-1],[1,-1],[2,-3],[1,-1],[1,-2],[2,-4],[4,-5],[1,-3],[2,-3],[4,-6],[1,-2],[2,-3],[2,-3],[2,-3],[3,-5],[0,-1],[3,-6],[1,0],[3,-6],[4,-5],[0,-1],[1,-2],[1,0],[1,-3],[4,-6],[0,-1],[2,-5],[1,-1],[4,-6],[0,-1],[3,-5],[1,-1],[2,-5],[4,-6],[2,-4],[1,-2],[4,-6],[0,-1],[3,-5],[8,-13],[0,-2],[0,-4],[1,-4],[0,-4],[0,-2],[1,-6],[0,-5],[0,-3],[1,-1],[1,-3],[1,-3],[0,-3],[1,-2],[0,-1],[1,-2],[0,-2],[1,-3],[2,-1],[1,1],[0,1],[0,2],[1,2],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,1],[0,4],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,-4],[0,-6],[0,-5],[0,-3],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-4],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-3],[1,-2],[1,-2],[0,-3],[0,-1],[0,-2],[1,-5],[1,0],[0,1],[1,1],[0,1],[2,4],[1,-1],[0,-1],[1,1],[2,2],[1,-1],[2,-1],[1,-6],[1,-1],[1,-5],[1,-1],[-2,-8],[-1,-2],[-1,-4],[-2,-12],[4,0],[1,-3],[2,-3],[4,-6],[2,-5],[1,-2],[2,-4],[2,-2],[3,-7],[4,-6],[2,-5],[2,-3],[2,-5],[0,-10],[1,0],[0,-4],[0,-10],[1,-15],[1,-14],[0,-2],[1,-13],[0,-4],[0,-1],[0,-3],[1,-6],[0,-13]],[[2698,6870],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-4,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2655,6869],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2635,6869],[0,1],[0,-1]],[[2635,6869],[-1,0]],[[2634,6869],[0,1],[0,-1]],[[2634,6869],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[2583,6811],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-3,0],[-3,0],[-4,0],[-3,0],[-3,0]],[[2569,6831],[0,8],[1,7],[0,1],[0,1]],[[2539,7017],[-1,0]],[[2538,7017],[0,1]],[[2538,7018],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[2536,7035],[0,1]],[[2536,7036],[-1,0]],[[2535,7036],[0,1],[0,-1]],[[2535,7036],[-1,0]],[[2534,7036],[0,1]],[[2534,7037],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0]],[[2531,7038],[0,-1],[0,1]],[[2531,7038],[0,1],[0,1],[-1,0]],[[2530,7040],[0,1],[0,1],[0,-1],[0,-1]],[[2530,7040],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[2527,7042],[0,1],[0,-1]],[[2527,7042],[0,-1],[0,1]],[[2527,7042],[-1,0]],[[2526,7042],[0,1],[0,1],[0,1]],[[2526,7045],[-1,0]],[[2525,7045],[0,-1],[-1,0]],[[2524,7044],[0,-1],[0,1]],[[2524,7044],[0,1],[0,-1]],[[2524,7044],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2521,7044],[0,1],[0,-1]],[[2521,7044],[-1,0],[0,1]],[[2520,7045],[0,1],[0,-1]],[[2520,7045],[-1,0]],[[2519,7045],[0,1]],[[2519,7045],[0,-1],[0,1]],[[2519,7046],[-1,0]],[[2518,7046],[0,-1],[0,1]],[[2518,7046],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1]],[[2481,7084],[0,1]],[[2481,7085],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2480,7089],[0,1]],[[2480,7090],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2479,7097],[0,1]],[[2479,7098],[0,1],[0,1],[0,1],[-1,0]],[[2478,7101],[0,1],[0,-1]],[[2478,7101],[-1,0]],[[2477,7101],[0,1]],[[2477,7102],[0,1],[-1,0]],[[2476,7103],[0,-1],[0,1]],[[2476,7103],[0,1],[0,1],[0,1]],[[2476,7106],[0,1],[0,-1]],[[2476,7106],[-1,0]],[[2475,7106],[0,1],[0,-1]],[[2475,7106],[0,-1],[-1,0]],[[2474,7105],[0,-1],[0,1]],[[2474,7105],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,3],[0,1],[1,4],[2,12],[0,4],[1,4],[0,2],[1,3],[2,14],[0,1],[0,2],[1,3],[0,4],[1,5],[1,7],[1,4],[0,1],[1,6],[0,2]],[[306,8],[0,1],[1,0],[0,1],[0,2],[0,1],[1,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,2],[0,2],[-1,1],[0,2]],[[265,51],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[232,33],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[225,413],[0,2],[1,2],[0,1],[1,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-3],[0,-1],[0,-3],[0,-1],[-1,-2],[-1,0],[-1,0],[0,1],[-1,1],[0,2],[0,2],[0,1]],[[2200,4974],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2223,4974],[0,1],[0,-1]],[[2223,4974],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2232,4974],[0,1],[0,-1]],[[2232,4974],[0,-1],[0,1]],[[2232,4974],[1,0]],[[2233,4974],[0,1],[0,1],[0,-1],[0,-1]],[[2233,4974],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2239,5095],[1,0]],[[2239,5095],[0,1],[1,0],[0,-1]],[[2240,5095],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1]],[[2250,5094],[0,1],[0,-1]],[[2250,5094],[1,0],[0,1],[0,1],[0,1]],[[2251,5097],[0,1],[0,1]],[[2251,5099],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0]],[[2250,5114],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1]],[[2252,5124],[0,1],[0,-1]],[[2252,5124],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0]],[[2251,5132],[1,0],[0,1],[0,1],[1,0]],[[2253,5134],[0,1],[0,1],[0,-1],[0,-1]],[[2253,5134],[0,-1],[1,0]],[[2254,5133],[0,-1]],[[2254,5132],[0,-1]],[[2254,5131],[0,-1],[1,0],[0,1]],[[2255,5131],[0,1],[0,-1]],[[2255,5131],[1,-1]],[[2256,5130],[0,1],[0,-1]],[[2256,5130],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2257,5125],[0,-1],[0,-1]],[[2257,5125],[0,-1],[0,1]],[[2257,5123],[0,-1],[0,1]],[[2257,5123],[1,0]],[[2258,5123],[0,-1]],[[2258,5122],[1,0]],[[2259,5122],[0,-1],[0,-1],[-1,0],[0,-1]],[[2258,5119],[1,0],[-1,0]],[[2258,5119],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2259,5111],[-1,0],[1,0]],[[2259,5111],[0,-1],[0,-1],[0,1],[0,1]],[[2259,5111],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[2261,5097],[0,-1]],[[2261,5096],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2262,5084],[0,-1]],[[2262,5083],[0,-1],[-1,-1],[1,0],[-1,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-4],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2252,4764],[0,-1]],[[2252,4763],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2251,4754],[1,0],[-1,0]],[[2251,4754],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2253,4731],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1]],[[9986,7733],[0,3],[0,1],[0,3],[1,3],[1,0],[1,1],[1,2],[0,1],[1,1],[2,1],[1,0],[1,-2],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[0,-2],[0,-3],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,2],[0,1],[-1,3],[0,2],[0,2]],[[9962,7699],[0,3],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,-1],[1,0],[1,-2],[1,1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[1,-1],[0,-1],[1,-2],[0,-2],[-1,-1],[1,-1],[1,-2],[0,-2],[1,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,0],[1,-1],[0,1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,1],[-2,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,1],[0,2],[-1,3],[0,1],[-1,2],[-1,2],[0,1],[-1,2],[-1,0],[0,2],[0,2],[-1,1],[0,1],[-1,2],[0,-1],[-1,1],[-1,-1],[-1,1],[-1,2],[0,1],[-1,2],[-1,1],[-1,1],[0,2],[-1,1],[-1,1],[0,1],[-1,3],[0,3]],[[9951,7722],[0,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,0],[1,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,-2],[0,-1],[1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,1],[-1,1],[0,1],[-1,-1],[-1,1],[0,1],[-1,1],[0,2],[0,1],[-1,0],[0,2],[-1,1],[0,2],[0,2],[0,2]],[[9947,7746],[1,2],[1,2],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[1,-2],[2,-1],[1,0],[0,-1],[1,1],[0,1],[1,1],[1,0],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[0,-3],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-2],[-1,-2],[-1,-1],[-1,0],[0,1],[-1,1],[-1,1],[-1,2],[0,2],[-1,0],[-1,-1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[0,2],[0,3],[0,2],[-1,0],[0,2],[0,2]],[[9945,7725],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,-1],[1,-2],[0,-3],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1]],[[9932,7754],[0,-1],[0,-1],[0,-1]],[[9932,7751],[-1,-1],[0,-1]],[[9931,7749],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[9931,7749],[1,1],[0,1]],[[9932,7754],[1,1],[0,1],[0,1],[1,1],[0,2],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[1,1],[0,2],[0,2],[1,2],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,2],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,2]],[[9885,7785],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[9830,7831],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1]],[[9816,7787],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,2],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[9790,7847],[0,2],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-2],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,-1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,3],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,2]],[[911,8599],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[745,8543],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,-1],[1,-1],[0,-1],[1,0],[1,-2],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[677,8355],[0,1],[0,2],[0,2],[0,1],[0,2],[1,2],[1,2],[1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,3],[1,0],[0,1],[0,2],[0,2],[1,2],[1,2],[1,1],[0,2],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,4],[1,1],[0,1],[0,1],[1,0],[1,0],[1,2],[1,1],[1,0],[1,2],[2,4],[1,2],[2,8],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[2,-2],[0,1],[1,2],[1,2],[2,2],[2,3],[0,1],[1,1],[1,0],[0,1],[-1,2],[0,1],[0,2],[0,1],[1,2],[0,2],[1,1],[0,1],[1,1],[0,2],[1,1],[0,2],[1,1],[1,0],[0,1],[0,2],[0,1],[1,2],[0,1],[1,1],[1,1],[0,2],[2,5],[2,7],[2,6],[1,2],[1,2],[0,1],[0,1],[1,0],[0,2],[0,1],[1,2],[0,1],[1,1],[1,0],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[1,1],[0,2],[1,1],[1,1],[0,1],[1,1],[0,2],[0,1],[1,2],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,1],[1,1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-2],[1,-1],[0,-1],[1,1],[0,2],[1,0],[1,1],[1,-1],[1,-1],[0,-2],[0,-1],[1,-2],[-1,-1],[0,-1],[0,-2],[-1,0],[0,-1],[1,-2],[0,-2],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-2,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-2],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[1,-8],[0,-4],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-4],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-2,-4],[0,-1],[-1,-3],[0,-2],[-1,-2],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,1],[0,-2],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-2],[-1,-2],[0,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,-3],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,-2],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[-3,-4],[0,-2],[-1,-3],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[1,2],[0,1],[1,3],[0,1],[1,5],[1,0],[1,2],[0,1],[1,1],[1,1],[1,4],[1,1],[1,1],[1,0],[1,-1],[0,1],[1,0],[0,-1],[1,-1],[1,-1],[0,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[-3,8],[-2,4],[0,1],[0,1],[0,1],[0,6],[-2,3],[-1,2],[-1,0],[-2,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[1,4],[-1,15],[-1,1],[0,3],[-1,2],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,3],[0,1],[0,1],[0,1]],[[651,8181],[1,3],[0,2],[2,2],[1,3],[1,3],[1,2],[1,1],[1,0],[1,-1],[2,-1],[0,-4],[0,-4],[-1,-3],[1,-5],[0,-4],[-2,-5],[-1,0],[-2,0],[-2,1],[-2,2],[-1,4],[-1,2],[0,2]],[[622,8224],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[1,0],[1,0],[1,-1],[1,-2],[0,-2],[0,-1],[0,-1],[1,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-2],[-1,-3],[-1,0],[-2,-1],[-1,0],[-1,2],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[538,8067],[0,1],[0,1],[1,2],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,1],[1,1],[1,-1],[1,-2],[1,-2],[1,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-2],[-1,-1],[-1,-1],[0,-1],[0,1],[-1,0],[-1,0],[-1,2],[0,1],[-1,2],[0,2],[0,-1],[-1,0],[0,-2],[-1,0],[-1,0],[-1,1],[0,1],[-1,2],[-1,2],[0,2],[0,1]],[[533,8507],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1]],[[520,8517],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[1,1],[1,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[-1,1],[-1,1],[0,2],[0,2],[0,2],[0,1],[1,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,2]],[[505,8113],[0,-1],[0,1]],[[505,8113],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,2],[0,1],[1,1],[1,1]],[[495,9150],[1,3],[1,1],[1,2],[1,0],[1,0],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-2,-1],[0,1],[-2,0],[-1,2],[0,3],[-1,3]],[[484,9089],[0,1],[0,2],[1,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,2],[0,1]],[[457,8066],[0,2],[0,1],[1,1],[0,1],[1,1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[452,8017],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[-1,1],[1,2],[0,1],[1,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,1],[-1,1],[0,-1],[-1,-1],[-1,0],[-1,2],[-1,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[-1,-1],[-1,0],[-1,1],[0,2],[0,2],[0,2]],[[444,8139],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1]],[[325,8696],[0,1],[1,1],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,0],[0,-1],[1,-2],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,2],[1,1],[0,1],[1,1],[1,0],[1,-1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[-1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-3],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,1],[-1,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[-1,-3],[-1,-1],[0,-2],[-2,-3],[-1,-2],[-1,-1],[-1,0],[-2,0],[-1,1],[-1,2],[-1,2],[-1,1],[0,2],[-1,1],[-1,1],[0,1],[-2,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,2],[-1,2],[0,1],[-1,0],[-2,1],[0,1],[0,1],[-1,2],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,2],[-1,1],[-1,3],[-2,0],[0,1],[0,2],[-1,0],[-1,0],[-1,0],[0,1],[-1,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,1],[-1,3],[0,3]],[[309,7967],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[307,9249],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,2],[-1,2],[0,2],[0,2]],[[505,8113],[-1,0],[-1,1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,0],[-1,1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,-1],[-1,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[0,2],[-1,-1],[-1,0],[0,1],[0,-1],[0,-2],[0,-2],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,2],[0,2],[0,1],[0,1],[1,1],[0,1],[-1,2],[0,2],[0,2],[1,1],[0,1],[0,1],[-1,2],[-1,1],[0,1],[0,2],[-1,3],[1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[0,2],[0,2],[0,2],[0,2],[0,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-2,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,0],[-1,0],[-1,1],[0,-1],[-1,1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,2],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-2,-1],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,-1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,2],[0,2],[-1,2],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,3],[-1,1],[0,1],[0,1],[0,1],[0,2],[1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,2],[1,1],[1,1],[1,1],[1,1],[0,2],[0,1],[1,2],[0,1],[0,2],[1,2],[0,1],[0,2],[0,1],[1,0],[0,2],[0,3],[0,2],[0,2],[1,1],[0,2],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,-1],[1,1],[1,2],[0,1],[1,1],[0,2],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[2,4],[1,2],[1,1],[1,1],[1,2],[1,1],[1,0],[0,1],[1,1],[0,2],[3,8],[1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,2],[0,2],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,2],[0,2],[1,2],[0,1],[1,2],[0,2],[1,1],[1,1],[0,1],[1,2],[1,1],[0,2],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,2],[0,1],[1,1],[0,2],[2,3],[1,1],[1,0],[1,1],[3,3],[1,1],[1,1],[1,0],[0,1],[1,0],[2,1],[1,1],[1,1],[1,1],[1,2],[2,1],[1,1],[2,0],[1,0],[2,0],[2,1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,-1],[0,1],[1,1],[1,2],[0,2],[0,2],[1,3],[0,2],[0,3],[1,2],[0,1],[0,1],[0,1],[1,1],[0,5],[1,2],[0,1],[1,2],[0,1],[1,1],[1,2],[0,1],[1,0],[0,3],[1,3],[2,2],[1,2],[2,1],[1,2],[1,3],[0,2],[1,1],[0,1],[0,1],[1,2],[1,1],[1,1],[1,2],[1,1],[1,0],[0,1],[2,2],[1,1],[1,2],[1,1],[1,2],[1,2],[1,3],[2,1],[1,1],[1,2],[2,2],[1,2],[2,3],[1,1],[0,1],[1,2],[1,3],[1,1],[0,2],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,2],[1,2],[1,7],[4,23],[1,11],[2,12],[0,3],[0,2],[1,6],[1,3],[0,5],[1,4],[0,7],[1,5],[3,29],[1,5],[1,12],[1,5],[0,2],[0,3],[1,1],[0,2],[0,2],[0,1],[0,1],[2,10],[0,2],[0,5],[0,1],[0,1],[-1,4],[-1,1],[-1,0],[-1,0],[-4,-3],[-1,-2],[-6,-5],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[0,2],[-1,1],[0,2],[0,1],[0,1],[0,1],[-7,29],[-1,2],[-3,11],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,-2],[0,-2],[-2,-3],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,2],[-1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,3],[0,2],[0,1],[0,1],[0,1],[-2,-1],[-4,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-3],[-1,-2],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-2],[0,-3],[-1,-2],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,2],[0,2],[-1,2],[0,1],[1,0],[0,2],[0,1],[-2,4],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,-1],[-1,1],[-1,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,2],[0,2],[0,2],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,4],[0,1],[-1,3],[0,-1],[-1,0],[0,2],[-1,3],[-1,2],[0,1],[0,1],[-1,3],[0,2],[0,1],[-1,4],[0,3],[0,1],[0,2],[1,2],[0,2],[0,1],[1,1],[0,1],[0,2],[1,1],[0,1],[0,3],[0,2],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[-3,12],[-1,0],[0,1],[0,2],[-1,4],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,2],[-1,3],[0,2],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,-1],[-2,2],[0,2],[-1,4],[0,1],[-1,1],[-1,0],[-1,0],[-1,-1],[-2,1],[-1,0],[0,-1],[0,-1],[-1,-2],[-2,-2],[0,-2],[0,-1],[0,-2],[-1,-2],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,1],[-1,1],[0,1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-2,-1],[-2,-1],[-2,0],[-2,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,1],[1,0],[1,-1],[1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[-1,1],[0,1],[-1,1],[0,-1],[-1,0],[-1,0],[-2,4],[-1,3],[0,2],[-1,1],[-1,2],[-1,1],[0,1],[-2,3],[-1,3],[0,1],[0,2],[-1,2],[0,1],[-1,1],[0,2],[-1,3],[0,2],[0,1],[0,2],[0,2],[0,1],[1,0],[0,1],[1,1],[1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,3],[-1,4],[-1,2],[-1,3],[0,2],[-1,1],[0,1],[-1,1],[-1,2],[-1,2],[0,2],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,2],[-1,1],[-1,1],[0,1],[-1,2],[-1,2],[-1,2],[-1,1],[-1,3],[0,2],[0,1],[-1,0],[0,2],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,2],[0,1],[0,1],[-1,1],[0,1],[0,2],[1,0],[-1,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,2],[1,1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[-2,0],[-2,1],[-1,0],[-1,1],[-2,1],[0,1],[-1,1],[-1,2],[-1,3],[0,3],[-1,4],[0,1],[-1,4],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,0],[-2,4],[-1,1],[0,1],[-1,0],[0,1],[0,2],[-1,2],[-1,3],[0,3],[0,2],[-1,2],[0,3],[1,2],[0,3],[0,1],[0,2],[0,2],[0,2],[1,2],[0,2],[0,1],[0,1],[0,2],[0,2],[0,3],[1,2],[1,2],[0,1],[1,1],[0,2],[0,2],[1,5],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,2],[1,2],[1,4],[1,2],[1,1],[1,-1],[1,0],[0,1],[0,1],[1,1],[1,2],[1,1],[0,2],[1,1],[1,1],[0,2],[1,2],[1,1],[0,2],[1,3],[1,3],[2,4],[1,3],[1,1],[0,1],[0,2],[1,3],[0,1],[1,2],[0,1],[-1,1],[1,2],[0,1],[1,2],[0,3],[0,3],[1,2],[0,1],[1,1],[1,0],[0,3],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,2],[1,2],[1,1],[1,0],[1,1],[1,0],[1,-1],[0,1],[0,1],[1,1],[1,0],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[1,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,2],[1,2],[2,1],[0,2],[1,2],[1,2],[1,2],[1,4],[3,6],[1,1],[2,3],[4,2],[4,2],[2,0],[1,0],[2,-2],[2,-2],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[2,-1],[1,-2],[1,-3],[1,-1],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1],[1,-3],[3,-3],[4,1],[0,1],[1,2],[1,3],[1,0],[1,1],[0,2],[0,1],[1,3],[0,2],[2,3],[1,1],[2,0],[1,3],[1,3],[3,8],[0,1],[1,2],[3,9],[-1,0],[0,1],[-1,-1],[-2,-1],[0,1],[-1,-1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[-1,2],[0,1],[0,2],[-1,2],[0,1],[0,2],[1,3],[1,1],[0,2],[1,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,-2],[0,-2],[0,-1],[1,-1],[0,-2],[1,-1],[1,0],[1,-1],[3,-1],[0,-1],[1,0],[1,-1],[0,-2],[0,-2],[1,-1],[0,-1],[1,0],[0,-1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[0,1],[0,1],[1,1],[0,2],[1,2],[0,1],[1,1],[1,0],[0,2],[0,1],[0,1],[1,2],[1,1],[0,1],[1,0],[0,1],[1,1],[2,6],[0,2],[1,2],[0,3],[0,1],[0,2],[-1,1],[0,2],[0,1],[0,3],[-1,3],[0,1],[0,2],[-1,1],[0,2],[-1,2],[0,1],[0,1],[-1,3],[0,1],[0,4],[0,2],[0,3],[0,1],[0,1],[0,1],[-1,0],[1,3],[0,5],[-1,1],[-1,3],[-1,2],[-2,5],[-2,4],[-3,3],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-2,2],[-1,2],[-1,1],[-1,0],[-1,2],[-5,7],[-1,0],[-1,1],[0,1],[-3,3],[-2,2],[-1,2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-3],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[-2,-2],[-2,1],[-2,2],[-2,2],[-3,3],[-2,1],[-1,0],[-1,1],[-1,2],[0,2],[-1,2],[0,1],[-1,2],[0,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,0],[0,1],[-2,1],[-1,1],[-2,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-2,1],[-4,1],[-2,0],[-3,-2],[-1,0],[0,-1],[-2,-1],[-1,-2],[-3,-3],[-2,-2],[-2,-2],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-4,3],[-3,3],[-1,1],[-3,1],[-1,0],[0,1],[-1,0],[-3,2],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-2,0],[-1,1],[-3,1],[-1,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,2],[-1,3],[0,2],[0,1],[0,2],[1,2],[1,1],[-1,0],[-1,2],[-1,1],[-2,3],[-1,2],[0,1],[-1,1],[0,3],[-1,4],[-1,3],[0,2],[0,1],[0,2],[0,2],[0,2],[0,3],[1,1],[0,2],[1,1],[0,2],[-2,4],[-3,4],[-2,2],[0,2],[-2,2],[0,3],[-1,1],[-3,5],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,3],[-1,2],[1,5],[0,5],[1,4],[1,2],[1,1],[-3,3],[-2,0],[-2,1],[-2,0],[-4,1],[-2,1],[-3,3],[-1,2],[-1,1],[-1,2],[-1,2],[-2,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,4],[-1,2],[0,1],[0,3],[1,3],[0,3],[1,3],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[2,3],[5,4],[1,1],[3,3],[1,1],[6,7],[2,3],[2,4],[4,6],[1,0],[4,7],[3,3],[0,1],[3,3],[4,4],[4,4],[1,1],[2,3],[4,4],[5,6],[4,4],[5,5],[4,4],[4,3],[4,3],[4,3],[2,1],[2,1],[1,1],[2,2],[2,0],[2,2],[2,0],[2,1],[1,1],[1,0],[1,0],[1,0],[1,1],[2,0],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,2],[1,3],[4,5],[5,9],[5,7],[2,3],[2,3],[1,2],[0,1],[1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-4,2],[-2,1],[-1,0],[-3,1],[-3,2],[-1,0],[-2,1],[-1,1],[-1,0],[-2,3],[-1,1],[-2,4],[-1,1],[0,3],[1,2],[0,1],[1,1],[1,1],[0,3],[0,1],[-1,6],[-1,2],[0,2],[-1,6],[0,1],[-1,4],[-2,8],[-2,6],[-1,3],[-2,2],[-1,1],[-2,2],[-3,3],[-1,2],[-3,3],[0,1],[-3,5],[-7,11],[-5,8],[-9,13],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,-2],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,2],[-1,1],[-2,2],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-2,1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[1,2],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[3,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,2],[2,0],[2,0],[3,1],[1,0],[2,0],[1,1],[2,1],[2,2],[1,1],[1,1],[1,1],[1,1],[1,2],[0,1],[1,0],[1,1],[0,1],[1,1],[1,2],[1,0],[0,1],[1,0],[0,2],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[3,6],[1,2],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[1,1],[0,2],[0,1],[0,3],[1,2],[0,2],[0,2],[1,2],[0,1],[0,1],[0,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,2],[1,3],[1,2],[0,1],[1,2],[2,4],[1,2],[2,7],[0,1],[3,6],[5,8],[2,4],[3,3],[3,4],[3,3],[2,2],[1,1],[2,-1],[1,0],[3,-1],[3,-1],[3,-1],[5,0],[3,1],[5,5],[7,7],[7,9],[2,3],[5,9],[4,7],[4,6],[1,2],[2,3],[2,3],[0,1],[1,1],[1,1],[4,3],[3,2],[5,3],[2,2],[3,0],[1,1],[2,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,3],[1,0],[0,2],[1,1],[1,2],[1,2],[1,1],[0,2],[1,2],[1,1],[0,2],[1,1],[0,1],[1,1],[1,2],[0,1],[0,1],[1,2],[1,2],[1,2],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,2],[2,2],[1,0],[1,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[2,-1],[0,-1],[2,0],[1,-1],[0,-1],[1,-1],[1,-2],[1,-1],[0,-2],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-2],[2,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-2],[1,-1],[2,-2],[1,-2],[1,-1],[3,-5],[1,0],[0,-1],[6,-4],[1,-1],[4,-2],[1,-1],[1,0],[1,0],[1,0],[0,1],[2,0],[3,-1],[3,0],[1,0],[1,0],[2,2],[2,2],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,1],[1,1],[1,-1],[1,0],[0,-1],[2,1],[2,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[2,-2],[1,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-1],[5,-12],[5,-10],[2,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[3,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,2],[0,1],[1,1],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,1],[1,1],[1,1],[1,1],[1,0],[1,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,-1],[2,-1],[2,-2],[1,-2],[0,-2],[1,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[3,-2],[2,-2],[2,0],[2,0],[2,-1],[1,-1],[2,-1],[1,-1],[0,-1],[1,0],[1,-1],[2,-2],[0,-1],[2,-2],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,-2],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-2],[0,-2],[0,-1],[1,0],[1,1],[1,0],[2,1],[2,-1],[1,-2],[1,0],[1,-1],[0,1],[1,0],[0,2],[1,1],[0,1],[1,0],[0,1],[1,1],[1,2],[1,0],[1,1],[1,0],[0,-1],[1,1],[1,0],[0,1],[1,0],[2,1],[0,1],[1,0],[1,1],[1,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-2],[3,-4],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[2,-2],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[2,-1],[2,-2],[2,-2],[4,-5],[1,-2],[1,-1],[5,-2],[1,0],[1,0],[2,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[0,-2],[0,-3],[0,-4],[0,-5],[0,-2],[0,-1],[0,-14],[0,-1],[0,-2],[0,-1],[0,-2],[0,-7],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-11],[0,-1],[0,-2],[0,-1],[0,-4],[0,-1],[0,-4],[0,-1],[0,-1],[0,-14],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-4],[0,-2],[0,-2],[0,-4],[0,-2],[0,-15],[0,-1],[0,-2],[0,-1],[0,-6],[0,-2],[0,-1],[0,-2],[0,-15],[0,-15],[0,-4],[0,-2],[0,-2],[0,-6],[0,-1],[0,-15],[0,-15],[0,-1],[0,-3],[0,-11],[0,-1],[0,-1],[0,-13],[0,-15],[0,-15],[0,-15],[0,-15],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-15],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-4],[0,-2],[0,-6],[0,-1],[0,-1],[0,-1],[0,-6],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-15],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-4],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-6],[0,-3],[0,-2],[0,-1],[0,-3],[0,-2],[0,-7],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-3],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-4],[0,-3],[0,-1],[0,-1],[0,-2],[0,-9],[0,-2],[0,-13],[0,-1],[0,-4],[0,-1],[0,-2],[0,-4],[0,-1],[0,-3],[0,-3],[0,-7],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-5],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-4],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-5],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-6],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-14],[0,-1],[0,-2],[0,-3],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[7,-5],[6,-5],[1,8],[0,3],[1,-1],[1,-1],[1,-1],[0,-1],[2,-1],[2,-2],[7,-8],[7,15],[1,3],[2,0],[1,0],[2,1],[1,0],[3,0],[2,0],[4,1],[2,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[-1,-3],[0,-1],[0,-1],[0,-3],[-1,0],[0,-1],[0,-4],[0,-1],[0,-1],[2,-6],[1,-3],[1,0],[0,-1],[0,-1],[3,-3],[4,-5],[3,-2],[0,-7],[1,-4],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[9,-18],[5,-11],[1,-1],[1,-2],[0,-1],[4,-8],[7,-17],[1,-5],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[1,-3],[0,-1],[0,-3],[0,-2],[0,-1],[1,-1],[0,-1],[0,-3],[0,-1],[-1,-9],[0,-1],[2,1],[6,11],[0,1],[4,5],[4,6],[3,3],[0,2],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,4],[0,1],[1,5],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[1,-1],[1,-1],[1,0],[0,1],[1,1],[1,2],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[-2,4],[1,1],[2,2],[1,1],[0,1],[1,0],[3,1],[2,1],[1,0],[2,2],[1,1],[0,1],[1,0],[2,3],[1,1],[2,3],[4,5],[3,-5],[3,-5],[0,-1],[1,0],[0,-1],[0,-2],[1,-1],[0,-1],[1,-3],[0,-1],[1,0],[3,-7],[0,-3],[0,-1],[0,-7],[-1,-1],[0,-1],[-1,-3],[3,-4],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,-1],[2,-1],[2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[1,0],[1,-3],[0,-1],[1,0],[0,-2],[1,-1],[1,0],[1,0],[1,-4],[0,-1],[0,-1],[2,-4],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,-4],[1,-3],[1,-2],[0,-1],[0,-1],[1,0],[0,-1],[2,-2],[0,-1],[1,-1],[1,-2],[2,-2],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-2],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[1,-3],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[2,-2],[-2,-4],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-3],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[6,-18],[3,-15],[0,-1],[3,-10],[2,-13],[1,-1],[1,-3],[3,-11],[1,-4],[0,-1],[1,-3],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[1,0],[0,-3],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,-2],[0,-2],[7,-4],[2,-1],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-6],[0,-2],[2,-3],[1,0],[2,-2],[2,-3],[-1,-2],[0,-1],[0,-2],[0,-1],[1,-4],[0,-2],[0,-4],[0,-1],[0,-1],[0,-1],[1,0],[0,-3],[0,-1],[1,0],[1,0],[4,1],[1,0],[2,-5],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[4,-6],[0,-1],[1,0],[0,-1],[1,-3],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-4],[1,-2],[1,-1],[0,-1],[2,-2],[1,0],[1,0],[0,-1],[0,-4],[1,-5],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[3,-3],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,-2],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-4],[-1,0],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-3],[-1,-5],[0,-2],[1,-2],[0,-2],[0,-3],[0,-1],[0,-2],[1,-4],[1,-1],[0,-3],[0,-2],[0,-4],[0,-1],[0,-3],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-2],[-1,-3],[-2,-4],[-1,-5],[-1,-1],[0,-2],[-2,-3],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,-1],[-4,0],[-2,0],[-3,0],[-8,-1],[-2,0],[-2,0],[-5,0],[-2,-1],[-3,0],[-10,-1],[-4,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-4,-1],[-1,0],[-3,-1],[-8,-1],[-3,0],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,2],[0,3],[-1,7],[0,3],[-1,3],[0,3],[0,3],[0,4],[0,1],[-1,1],[0,3],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,2],[1,1],[0,2],[1,2],[0,2],[1,2],[0,1],[0,2],[1,2],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,2],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[-1,0],[0,-1],[-1,1],[-1,1],[0,1],[-1,1],[0,2],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,2],[0,1],[0,2],[0,2],[0,1],[-1,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,0],[0,-2],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-3],[-1,-6],[0,-2],[-1,-3],[-1,-2],[0,-1],[-1,1],[-2,2],[-1,1],[-1,1],[-1,1],[-2,3],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,2],[-2,7],[0,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[0,2],[-1,2],[-1,1],[-3,12],[-3,9],[0,1],[-3,9],[-3,10],[-2,5],[-5,16],[-3,9],[0,1],[-3,9],[-1,2],[-1,3],[0,1],[-1,0],[0,1],[-1,7],[0,5],[-4,20],[-5,30],[0,1],[0,1],[0,1],[-1,0],[-1,11],[-1,2],[0,1],[-1,3],[0,1],[0,2],[-1,2],[0,1],[0,5],[-1,1],[0,2],[0,1],[-2,1],[-1,1],[0,1],[-1,0],[0,1],[-1,2],[-1,2],[0,2],[0,2],[1,2],[0,3],[0,1],[-1,1],[0,2],[0,2],[0,2],[0,1],[0,3],[1,2],[1,2],[0,1],[1,0],[1,2],[1,1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,2],[-1,3],[0,2],[0,1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,2],[-2,3],[-1,3],[-1,1],[-1,1],[-1,2],[0,1],[-1,1],[-1,0],[-1,2],[-1,3],[-1,2],[-1,1],[0,1],[-1,2],[-1,1],[-1,0],[-1,2],[-1,2],[0,1],[0,4],[-1,1],[0,2],[-2,4],[-2,4],[-2,3],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,1],[-3,5],[-2,4],[-1,2],[-1,3],[0,1],[-1,1],[-1,1],[-2,1],[-2,1],[-2,3],[-2,2],[-2,2],[-1,3],[-1,1],[-1,1],[-1,3],[-1,1],[-1,2],[-2,2],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-2,2],[-2,1],[-1,2],[-2,2],[-1,1],[-2,3],[-1,3],[-2,2],[-1,1],[0,2],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[-3,3],[0,1],[-4,5],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,2],[-5,4],[-6,5],[-3,3],[-2,2],[-2,2],[-4,3],[-8,6],[-1,1],[-8,5],[-8,3],[-5,0],[-6,-4],[-8,-2],[-10,-3],[-2,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-6,0],[-3,-8],[-4,-12],[-4,-3],[-2,0],[-2,1],[-3,6],[0,3],[0,3],[4,11],[3,10],[-2,8],[-2,3],[-1,1],[-2,1],[-9,2],[0,1],[-6,3],[-3,3],[-2,3],[-1,1],[-1,1],[-1,1],[-1,1],[-5,6],[-4,0],[-6,-4],[-6,-6],[-2,-2],[-7,-6],[0,-1],[-1,-1],[-4,-3],[0,-1],[-1,0],[0,-1],[-2,0],[-2,-2],[-2,-3],[-2,-7],[-1,-4],[0,-4],[0,-6],[-2,-5],[-2,-2],[-3,-5],[-3,-3],[-2,-1],[-3,0],[-3,0],[-1,1],[-1,0],[-1,3],[-2,5],[-3,7],[-7,2],[-4,-1],[-10,1],[-1,0],[-2,-1],[-6,-5],[-2,-5],[-1,-2],[-2,-5],[-1,-4],[-1,-4],[-1,-7],[0,-1],[-2,-8],[-2,-4],[-1,0],[-1,-1],[-1,-1],[-4,-5],[-1,-1],[-8,-8],[-4,-5],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-3,-4],[-1,0],[0,-1],[-1,-1],[-6,-6],[-7,-5],[-1,-1],[-1,0],[-1,-2],[-2,-1],[-2,-1],[-1,0],[-4,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-5,-1],[-5,-2],[-11,-3],[-3,0],[-1,-1],[-5,-1],[-1,0],[0,-1],[-1,-1],[-1,-4],[-1,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[0,1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,1],[-1,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-2],[0,-1],[-1,0],[-1,-1],[0,-4],[-1,-2],[0,-1],[-1,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-4,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,-1],[-1,1],[-1,0],[0,2],[-2,-1],[0,-2],[0,-1],[0,-2],[-1,-4],[0,-4],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[0,-1],[1,-1],[0,-3],[-1,-2],[-1,-2],[-1,-2],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,1],[-1,0],[-1,1],[-4,-4],[0,1],[-1,-1],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-2],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,-1],[-1,-3],[-1,-4],[0,-1],[0,-1],[-2,-2],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-3],[0,-2],[0,-1],[1,-2],[0,-3],[0,-3],[-1,-4],[-1,-1],[-1,-2],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-5],[0,-15],[0,-5],[-2,-4],[0,-2],[-1,-2],[-3,-7],[-3,-8],[-1,-3],[-1,-2],[0,-1],[-1,-3],[-1,-1],[-1,-3],[0,-1],[-1,-1],[-1,-4],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-2,-7],[-1,-2],[-1,-1],[0,-2],[-4,-9],[-1,-3],[-1,-3],[-4,-9],[-1,-3],[-1,-2],[-2,-7],[-1,-2],[0,-1],[-2,-4],[0,-1],[-2,-4],[-3,-8],[-2,-5],[-5,-16],[-16,0],[-5,0],[-4,0],[-1,0],[-2,0],[-1,0],[-4,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[-6,-2],[-2,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-4],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[1,0],[0,1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,1],[-1,0],[-1,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,1],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[0,1],[-1,2],[0,1],[-1,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,3],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,2],[1,2],[0,2],[1,1],[1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[-1,-4],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[1,-2],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[0,1],[-1,-1],[-1,1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[-1,1],[0,1],[-1,1],[0,3],[0,1],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,2],[1,2],[0,2],[-1,2],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[0,2],[1,1],[-1,0],[-1,0],[0,-1],[-2,-3],[-3,-4],[0,-1],[-1,0],[0,-2],[-1,0],[-1,-2],[-1,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1]],[[289,9323],[0,1],[0,1],[0,1],[1,2],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1]],[[286,9333],[0,9],[0,3],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[-1,1],[0,2]],[[276,7829],[0,2],[0,1],[0,1],[1,1],[1,2],[0,1],[1,0],[0,1],[1,1],[-1,0],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[1,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[3,3],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[1,2],[0,2],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,2],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,-1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,1],[1,1],[1,0],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,2],[1,0],[2,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,2],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[-1,5],[0,3],[0,1],[-1,0],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,2],[1,1],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,2],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,1],[0,2],[0,2],[1,2],[0,2],[1,2],[0,1],[0,1],[1,1],[1,0],[1,-1],[1,1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-2],[0,-1],[0,-2],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,0],[1,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,2],[1,2],[0,1],[2,1],[0,1],[1,0],[1,0],[1,-1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-3],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-2,1],[0,3],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-2],[0,-3],[0,-1],[0,-2],[1,-5],[-1,-3],[-1,-4],[0,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,-3],[-1,-2],[0,-2],[-1,-3],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,0],[-4,-5],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-3],[-1,-2],[-1,-1],[-2,-2],[-2,0],[-3,1],[-1,1],[-1,0],[-1,2],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,-1],[0,-3],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[0,2],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,0],[0,1],[-1,1],[0,1],[0,1],[0,2]],[[260,8276],[0,2],[1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-2],[-1,-2],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,2],[-1,2],[0,1],[-1,1],[-1,0],[0,2],[0,1],[-1,1],[0,1],[-1,2],[0,1]],[[256,8345],[0,1]],[[256,8346],[1,1],[0,1]],[[257,8348],[1,0],[1,1],[1,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[249,7827],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[1,1],[-1,1],[0,1],[0,1],[-1,2],[0,2],[1,2],[0,2],[1,1],[0,1],[0,1],[1,1],[1,1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,2]],[[257,8348],[-1,-2]],[[256,8345],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[1,2],[1,1],[-1,1],[-1,2],[0,2],[0,2],[0,1],[0,1],[-1,1],[1,2],[0,2],[1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[0,-2]],[[231,7805],[0,2],[1,1],[0,2],[0,2],[0,3],[1,1],[0,2],[1,1],[0,1],[1,1],[0,2],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-3],[-1,-3],[-1,-2],[-1,-1],[-1,0],[-1,-1],[0,1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,1],[0,1],[-1,0],[0,2],[-1,3],[0,1]],[[218,7796],[0,1],[0,3],[1,2],[1,2],[0,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,2],[0,1],[1,2],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,1],[0,1],[0,2],[-1,2],[0,2],[0,2]],[[203,9079],[0,5],[0,5],[1,1],[0,2],[0,2],[1,2],[0,2],[0,2],[1,3],[0,1],[0,2],[0,1],[-1,2],[1,2],[0,2],[1,2],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,-1],[0,-1],[1,-2],[1,-3],[0,-3],[0,-2],[-1,-1],[8,-6],[3,-1],[0,-1],[5,-3],[2,1],[1,2],[0,1],[3,4],[1,2],[2,1],[1,0],[1,2],[1,0],[1,2],[1,0],[2,0],[2,0],[1,0],[1,-1],[2,-3],[2,-4],[2,-5],[1,-3],[1,-4],[1,-7],[2,-2],[2,-2],[1,0],[3,-1],[1,0],[1,-1],[1,-2],[1,-1],[0,-1],[1,-2],[0,-1],[3,-1],[3,-2],[6,0],[4,-1],[0,-1],[5,-2],[2,-1],[1,-1],[0,-1],[1,-2],[-1,-4],[0,-3],[0,-2],[-1,-3],[0,-2],[-1,0],[-1,-3],[-1,-4],[1,-2],[1,-3],[-1,-3],[-2,-4],[-1,-1],[-1,0],[-2,2],[0,1],[-1,2],[0,2],[1,1],[0,2],[-2,1],[-1,2],[-1,0],[-2,0],[-3,-1],[-1,-1],[-1,-3],[-1,-3],[-1,-1],[-1,-1],[-1,0],[0,-2],[1,-3],[0,-3],[0,-3],[-1,-2],[-1,0],[-1,-1],[0,-2],[-2,-2],[-1,0],[-2,1],[-3,2],[0,1],[-1,3],[0,1],[0,3],[-1,2],[0,2],[0,2],[-2,4],[-2,3],[-1,2],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,2],[0,1],[0,2],[0,1],[0,1],[-1,4],[-2,5],[-3,2],[-2,3],[-4,2],[-2,2],[-3,1],[-1,-1],[-1,0],[-1,-2],[-1,0],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,-1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,2],[-1,2],[-1,4],[0,3],[0,1],[-1,1],[1,6]],[[181,7770],[0,1],[1,1],[-1,0],[0,2],[1,2],[0,2],[1,2],[0,1],[0,1],[0,1],[1,2],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,2],[0,1]],[[177,8694],[0,1],[1,2],[1,0],[0,1],[0,1],[1,0],[1,1],[1,-1],[1,-1],[0,-1],[1,-2],[0,-2],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,2],[0,2],[0,3]],[[167,8745],[0,3],[1,2],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[0,-2],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-4],[0,-2],[1,-3],[2,-3],[0,-1],[1,-1],[3,-3],[1,-1],[1,0],[1,0],[1,0],[2,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,1],[-1,-1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,2],[0,1],[-1,2],[0,3],[0,1],[-1,1],[-1,2],[-1,2],[-1,0],[-1,0],[-1,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,3],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,3],[0,1],[0,1]],[[112,7767],[0,3],[1,1],[1,1],[1,0],[1,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[0,1],[0,2],[0,1],[0,2]],[[101,7761],[0,2],[1,2],[0,2],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,2],[0,2]],[[47,7725],[0,1],[0,1]],[[47,7727],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1]],[[47,7725],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,0],[1,-1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,2],[0,3],[0,2],[0,1],[1,1],[0,1],[0,2],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,3],[0,1],[1,2],[1,1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,-1],[-1,-1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[1,0],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,2],[1,1],[1,1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,1],[1,0],[1,0],[1,-1],[0,-2],[0,-1],[0,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,1],[1,1],[1,0],[0,-1],[1,2],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[2,1],[0,-1],[0,2],[1,2],[1,0],[1,0],[1,2],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,1],[1,1],[0,1],[1,2],[0,2],[1,2],[1,1],[1,0],[0,-1],[1,2],[0,2],[1,1],[1,0],[0,1],[-1,1],[0,2],[0,2],[0,1],[0,2],[0,1],[1,1],[1,1],[1,0],[0,1],[0,1],[1,2],[0,2],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,2],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,2],[1,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,-1],[1,-2],[0,-2],[0,-1],[1,1],[0,-1],[1,0],[1,0],[1,-1],[1,1],[1,-1],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-1],[-1,0],[-1,0],[0,1],[-1,2],[0,1],[0,2],[0,1],[-1,-1],[-1,0],[-1,-2],[-1,-1],[-1,1],[-1,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[-1,1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[1,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[0,-1],[-1,-1],[-1,-1],[-1,1],[0,1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,2],[0,2],[1,1],[0,1],[-1,1],[0,1],[0,2],[0,2],[0,1],[0,1],[1,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,1],[-1,1],[-1,2],[0,1],[-1,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,-1]],[[22,7680],[0,1],[1,2],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-2],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,1],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[8,7714],[0,2],[0,1],[0,2],[0,1],[0,2],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1]],[[2,7691],[0,2],[1,1],[0,2],[0,1],[1,0],[0,1],[1,1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-2],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,1],[0,1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,1],[-1,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,1],[0,2],[-1,2],[0,1],[0,2]],[[0,7657],[0,1],[0,2],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[1,0],[0,1],[1,1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-3],[-2,-4],[-1,0],[-2,1],[0,2],[-1,3],[0,3],[0,1],[0,1],[0,2]],[[1954,5465],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,3],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,1],[0,3],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,3],[0,1],[0,4],[0,3],[0,1],[0,2],[0,1],[0,2]],[[1954,5784],[0,1]],[[1954,5785],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1960,5778],[0,-1],[0,1]],[[1960,5778],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1]],[[1963,5772],[1,0],[-1,0]],[[1963,5772],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[1970,5799],[0,1]],[[1970,5800],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2]],[[2006,5790],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2010,5754],[0,-1]],[[2010,5753],[0,-2],[0,-1],[1,0]],[[2011,5750],[0,-1],[0,1]],[[2011,5750],[0,1],[0,1],[-1,0],[0,1]],[[2010,5754],[1,0],[0,1],[0,1],[0,1],[1,1]],[[2012,5758],[0,1]],[[2012,5759],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2023,5767],[0,1],[0,-1]],[[2023,5767],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1]],[[2026,5764],[0,1],[0,-1]],[[2026,5764],[1,0]],[[2027,5764],[0,1],[0,-1]],[[2027,5764],[1,0]],[[2028,5764],[0,1],[0,-1]],[[2028,5764],[0,-1]],[[2028,5763],[1,0]],[[2029,5763],[0,-1],[0,-1]],[[2029,5761],[-1,0],[1,0]],[[2029,5761],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[2028,5752],[0,-1]],[[2028,5751],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0]],[[2020,5738],[0,-1],[0,1]],[[2020,5738],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[2022,5735],[-1,0],[1,0]],[[2022,5735],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,2],[0,2],[0,1],[0,3],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2059,5769],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2109,5658],[0,-1],[0,1]],[[2109,5658],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1]],[[2113,5668],[0,1]],[[2113,5668],[0,-1],[0,-1],[0,1],[0,1]],[[2113,5668],[1,0],[0,1],[-1,0]],[[2113,5669],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[2118,5665],[0,-1]],[[2118,5664],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2121,5661],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2]],[[2121,5476],[0,-2],[0,-1],[0,-5],[0,-3],[0,-1],[0,-1],[0,-4],[0,-4],[0,-1],[0,-3],[0,-4],[0,-2],[0,-1],[0,-2],[0,-7],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1]],[[2121,5426],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2039,5416],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2024,5390],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-4],[0,-1],[0,-5],[0,-2],[0,-2],[0,-1],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0]],[[1954,5338],[0,1],[0,1],[0,3],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1]],[[2357,6974],[0,1],[0,-1]],[[2357,6974],[1,0],[0,1],[0,1]],[[2358,6976],[-1,0],[1,0]],[[2358,6976],[0,1]],[[2358,6977],[-1,0],[1,0]],[[2358,6977],[0,1],[1,0],[0,1]],[[2359,6979],[-1,0],[0,1],[1,0]],[[2359,6980],[0,-1]],[[2359,6980],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2408,6961],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2380,6885],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2358,6964],[0,1],[0,-1]],[[2358,6964],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0]],[[2483,5813],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1]],[[2488,5851],[0,-1],[0,1]],[[2488,5851],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2492,5869],[0,1],[0,-1]],[[2492,5869],[1,0]],[[2493,5869],[0,1],[0,-1]],[[2493,5869],[0,-1],[1,0]],[[2494,5868],[0,-1],[0,1]],[[2494,5868],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2492,5880],[0,1]],[[2492,5881],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2493,5909],[0,1],[0,-1]],[[2493,5909],[1,0],[0,1],[1,-1],[0,-1],[1,0],[0,1],[1,0]],[[2497,5909],[0,1],[0,-1]],[[2497,5909],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2498,5938],[-1,0]],[[2498,5938],[1,0]],[[2499,5938],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2501,5938],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2539,5938],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2539,5916],[0,1],[0,-1]],[[2539,5916],[-1,0],[0,-1],[0,-1]],[[2538,5914],[0,-1]],[[2538,5913],[0,-1]],[[2538,5912],[0,-1]],[[2538,5911],[0,-1]],[[2538,5910],[-1,0],[1,0]],[[2538,5910],[0,-1]],[[2538,5909],[-1,0],[1,0]],[[2538,5909],[0,-1]],[[2538,5908],[-1,0],[1,0]],[[2538,5908],[0,-1],[-1,0],[0,-1],[0,-1]],[[2537,5905],[-1,0],[1,0]],[[2537,5905],[0,-1]],[[2537,5904],[-1,0]],[[2536,5904],[0,-1]],[[2536,5903],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2535,5898],[1,0],[-1,0]],[[2535,5898],[0,-1],[0,-1]],[[2535,5896],[0,-1]],[[2535,5895],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1]],[[2524,5858],[0,-1]],[[2524,5857],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2507,5764],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2491,5764],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2488,5781],[0,1],[0,-1]],[[2488,5781],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[2491,5777],[0,1],[0,-1]],[[2491,5777],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[2489,5787],[0,-1]],[[2489,5786],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2489,5801],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[1,0]],[[2489,5801],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[2484,5810],[-1,0]],[[2483,5810],[0,1],[0,1],[0,1]],[[2482,5819],[0,1],[0,-1]],[[2482,5819],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[2483,5810],[0,-1]],[[2483,5809],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2691,5840],[0,1],[0,-1]],[[2691,5840],[1,0]],[[2692,5840],[0,-1],[0,1]],[[2692,5840],[0,1]],[[2692,5841],[1,0],[1,1]],[[2694,5842],[0,-1],[0,1]],[[2694,5842],[1,0],[0,1],[0,1],[1,-1],[0,1],[0,1]],[[2696,5845],[0,1],[0,-1]],[[2696,5845],[1,1]],[[2697,5846],[0,-1],[0,1]],[[2697,5846],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2698,5850],[0,1],[0,-1]],[[2698,5850],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[2703,5825],[0,-1],[0,1]],[[2703,5825],[1,0],[1,1],[0,1],[1,0],[1,0]],[[2707,5827],[0,-1],[0,1]],[[2707,5827],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2712,5831],[0,1],[0,-1]],[[2712,5831],[1,0],[0,1],[0,1],[1,0],[0,1]],[[2714,5834],[0,1],[0,-1]],[[2714,5834],[1,0]],[[2715,5834],[0,1],[0,-1]],[[2715,5834],[0,-1]],[[2715,5833],[1,0],[0,-1]],[[2716,5832],[0,-1]],[[2716,5831],[0,-1],[1,0]],[[2717,5830],[0,-1],[0,1]],[[2717,5830],[1,0],[1,0]],[[2719,5830],[0,1],[0,-1]],[[2719,5830],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2725,5851],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2726,5856],[0,1]],[[2734,5781],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2698,5787],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[2697,5819],[0,-1],[0,1]],[[2697,5819],[-1,0],[-1,0],[0,-1],[0,-1]],[[2695,5817],[0,-1]],[[2695,5816],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2693,5824],[0,1],[0,-1]],[[2693,5824],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2691,5830],[0,-1],[0,1]],[[2691,5830],[0,1]],[[2691,5831],[-1,0]],[[2691,5831],[0,1],[-1,0]],[[2690,5832],[0,-1]],[[2690,5832],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[2606,6157],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2612,6181],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1]],[[2638,6243],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[2665,6194],[0,1],[0,-1]],[[2665,6194],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[2673,6185],[0,1],[0,-1]],[[2673,6185],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[2679,6197],[0,1]],[[2679,6198],[1,0]],[[2680,6198],[0,-1],[0,1]],[[2680,6198],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0]],[[2683,6201],[0,-1],[0,-1]],[[2683,6199],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2691,6162],[0,-1],[0,-1]],[[2691,6160],[0,-1],[0,-1],[0,-1]],[[2691,6157],[-1,0],[-1,0],[0,1]],[[2689,6158],[0,1],[0,-1]],[[2689,6158],[-1,0]],[[2688,6158],[0,1]],[[2688,6159],[0,1]],[[2688,6160],[0,1],[-1,0]],[[2687,6161],[0,1],[0,1]],[[2687,6163],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0]],[[2681,6159],[0,1],[0,-1]],[[2681,6159],[-1,0],[0,1]],[[2680,6160],[0,1]],[[2680,6161],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[2676,6170],[0,1]],[[2676,6171],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2674,6166],[0,-1]],[[2674,6165],[0,-1],[0,-1],[-1,0]],[[2673,6163],[0,-1]],[[2673,6162],[0,-1],[0,-1],[0,-1],[0,-1]],[[2673,6158],[0,-1]],[[2673,6157],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2672,6151],[0,-1],[0,1]],[[2672,6151],[-1,0]],[[2671,6151],[0,1],[0,-1]],[[2671,6151],[-1,0]],[[2670,6151],[0,-1],[0,1]],[[2670,6151],[-1,0],[1,0]],[[2670,6151],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2669,6155],[0,1]],[[2669,6156],[-1,0],[0,1]],[[2668,6157],[1,0],[-1,0]],[[2668,6157],[0,1]],[[2668,6158],[0,1],[0,-1]],[[2668,6158],[-1,0]],[[2609,6123],[-1,1],[0,1],[1,0]],[[2609,6125],[0,-1],[0,1]],[[2609,6125],[0,1],[0,1],[0,1]],[[2609,6128],[0,1]],[[2609,6128],[1,0],[0,1]],[[2610,6129],[-1,0]],[[2610,6129],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2610,6135],[-1,0],[0,1],[0,-1],[1,0]],[[2610,6135],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2610,6140],[0,1]],[[2610,6141],[0,1],[0,1],[1,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2606,6156],[0,1]],[[2643,5763],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2647,5792],[0,1]],[[2647,5793],[1,0]],[[2648,5793],[0,-1],[0,1]],[[2648,5793],[0,1],[0,-1]],[[2648,5793],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2651,5807],[1,0],[-1,0]],[[2651,5807],[0,1]],[[2651,5808],[1,0],[-1,0]],[[2651,5808],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2652,5816],[1,0],[-1,0]],[[2652,5816],[0,1],[1,0],[0,1]],[[2661,5830],[1,0]],[[2662,5830],[0,1]],[[2662,5831],[1,0]],[[2663,5831],[0,1],[0,-1]],[[2663,5831],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[2670,5841],[0,1],[0,-1]],[[2670,5841],[1,0]],[[2671,5841],[0,-1],[0,1]],[[2671,5841],[0,1],[1,1],[0,1],[0,1]],[[2672,5845],[1,0],[-1,0]],[[2672,5845],[0,1],[1,0],[0,1],[-1,0],[1,1],[0,1],[1,0]],[[2674,5849],[0,-1],[0,1]],[[2674,5849],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2678,5856],[0,-1],[0,1]],[[2678,5856],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[2683,5874],[0,1],[0,-1]],[[2683,5874],[1,0]],[[2684,5874],[0,1],[0,-1]],[[2684,5874],[0,-1],[0,-1],[1,0]],[[2685,5872],[0,-1],[0,1]],[[2685,5872],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2686,5880],[0,1]],[[2686,5881],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1]],[[2691,5882],[-1,0],[1,0]],[[2691,5882],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1]],[[2691,5876],[0,1],[0,-1]],[[2691,5876],[1,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0]],[[2700,5896],[0,-1],[0,1]],[[2700,5896],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0]],[[2703,5897],[0,1],[0,-1]],[[2703,5897],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2704,5893],[0,-1],[0,1]],[[2704,5893],[1,0]],[[2705,5893],[0,-1],[0,1]],[[2705,5893],[1,0],[0,1]],[[2706,5894],[0,1],[0,-1]],[[2706,5894],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1]],[[2686,5773],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1]],[[2341,5159],[1,0],[-1,0]],[[2341,5159],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0]],[[2341,5164],[0,1],[0,-1]],[[2341,5164],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2340,5170],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0]],[[2343,5174],[0,1]],[[2343,5175],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[2345,5182],[0,1]],[[2345,5183],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2350,5315],[1,0]],[[2351,5315],[0,-1]],[[2351,5314],[1,0],[0,-1],[0,-1],[1,0]],[[2353,5312],[0,-1],[0,1]],[[2353,5312],[1,0],[0,-1]],[[2354,5311],[0,-1]],[[2354,5310],[1,0]],[[2355,5310],[0,1],[0,-1]],[[2355,5310],[0,-1]],[[2355,5309],[1,1]],[[2356,5310],[0,-1]],[[2356,5309],[0,-1],[1,0]],[[2357,5308],[0,-1]],[[2357,5307],[1,0],[0,-1]],[[2358,5306],[0,-1],[0,1]],[[2358,5306],[1,0]],[[2359,5306],[0,-1]],[[2359,5305],[0,-1]],[[2359,5304],[1,0]],[[2360,5304],[0,1],[0,-1]],[[2360,5304],[0,-1]],[[2360,5303],[0,-1],[0,1]],[[2360,5303],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0]],[[2372,5312],[0,1]],[[2372,5313],[0,1]],[[2372,5314],[0,1]],[[2372,5315],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0]],[[2384,5320],[1,-1],[0,1],[1,1],[0,-1],[0,-1],[0,-1]],[[2386,5318],[0,-1]],[[2386,5317],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2386,5311],[0,-1]],[[2386,5311],[-1,0],[0,-1],[1,0]],[[2386,5310],[0,-1]],[[2386,5309],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2386,5301],[0,-1]],[[2386,5300],[-1,0]],[[2385,5300],[0,1],[0,-1]],[[2385,5300],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2386,5295],[0,-1]],[[2386,5294],[0,-1],[0,-1],[0,-1]],[[2386,5291],[0,-1]],[[2386,5290],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2386,5283],[-1,0],[1,0]],[[2386,5283],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2385,5277],[1,0],[-1,0]],[[2385,5277],[0,-1],[0,-1],[0,-1]],[[2385,5274],[0,-1]],[[2385,5273],[0,-1],[-1,0]],[[2384,5272],[0,-1]],[[2384,5271],[0,-1],[0,-1],[0,-1],[0,-1]],[[2384,5267],[0,-1]],[[2384,5266],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2382,5252],[0,-1],[0,1]],[[2382,5252],[-1,-1]],[[2381,5251],[0,1],[0,-1]],[[2381,5251],[0,-1]],[[2381,5250],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2381,5244],[0,-1]],[[2381,5243],[0,-1]],[[2381,5242],[0,-1],[0,-1]],[[2381,5240],[0,-1]],[[2381,5239],[0,-1],[0,-1],[1,0],[0,-1]],[[2382,5236],[-1,0],[1,0]],[[2382,5236],[0,-1]],[[2382,5235],[-1,0],[1,0]],[[2382,5235],[0,-1],[0,-1],[-1,0]],[[2381,5233],[0,1],[0,-1]],[[2381,5233],[0,-1]],[[2381,5232],[0,-1],[0,-1]],[[2381,5230],[-1,0]],[[2380,5230],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2380,5222],[0,-1]],[[2380,5221],[0,-1],[0,-1]],[[2380,5219],[1,0],[-1,0]],[[2380,5219],[0,-1],[1,0]],[[2381,5218],[0,-1]],[[2381,5217],[1,0],[-1,-1],[1,0],[-1,-1],[0,-1],[0,-1]],[[2381,5213],[1,0],[-1,0]],[[2381,5213],[0,-1],[0,-1]],[[2381,5211],[1,0],[-1,0]],[[2381,5211],[0,-1]],[[2381,5210],[1,0],[-1,0]],[[2381,5210],[0,-1],[0,-1],[0,-1],[0,-1]],[[2381,5206],[0,-1]],[[2381,5205],[0,-1],[0,-1],[1,0]],[[2382,5203],[0,1],[0,-1]],[[2382,5203],[0,-1],[-1,0],[0,-1],[0,-1],[1,0]],[[2382,5200],[0,1],[0,-1]],[[2382,5200],[0,-1],[0,-1],[0,-1]],[[2382,5197],[-1,0],[1,0]],[[2382,5197],[0,-1],[-1,0],[0,-1],[0,-1]],[[2381,5194],[0,-1]],[[2381,5193],[0,-1],[0,-1]],[[2381,5191],[1,0],[0,-1],[0,-1],[-1,0]],[[2381,5189],[0,1],[0,1]],[[2381,5189],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2378,5176],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2378,5170],[0,-1],[0,-1],[-1,0]],[[2377,5168],[0,-1]],[[2377,5168],[0,1],[0,1],[1,0]],[[2378,5176],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2375,5183],[0,-1],[0,1]],[[2375,5183],[0,1],[-1,1]],[[2374,5185],[0,-1],[0,1]],[[2374,5185],[0,1],[0,-1]],[[2374,5185],[-1,0],[0,1]],[[2373,5186],[0,1],[0,-1]],[[2373,5186],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2369,5203],[0,-1],[0,1]],[[2369,5203],[0,1],[-1,0]],[[2368,5204],[0,1]],[[2368,5205],[-1,0]],[[2368,5205],[-1,-1]],[[2367,5204],[0,1]],[[2367,5204],[0,-1]],[[2367,5203],[0,-1],[0,1]],[[2367,5203],[-1,0],[0,-1],[0,-1]],[[2366,5201],[-1,0],[1,0]],[[2366,5201],[0,-1],[0,-1]],[[2366,5199],[-1,0]],[[2366,5199],[0,-1],[-1,0]],[[2365,5198],[0,1]],[[2365,5198],[0,-1]],[[2365,5197],[0,-1],[0,1]],[[2365,5197],[-1,0]],[[2364,5197],[0,-1]],[[2364,5196],[0,-1],[0,1]],[[2364,5196],[-1,0]],[[2363,5196],[0,-1]],[[2363,5196],[-1,0],[0,-1]],[[2362,5195],[1,0]],[[2362,5195],[0,-1],[0,1]],[[2362,5195],[-1,0]],[[2361,5195],[0,1]],[[2361,5196],[0,1],[0,-1]],[[2361,5195],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2363,5139],[0,-1],[0,-1]],[[2363,5137],[-1,-1],[0,-1],[0,-1]],[[2362,5134],[0,-1]],[[2362,5133],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[2359,5131],[0,-1],[0,1]],[[2359,5131],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2356,5132],[0,-1]],[[2356,5131],[-1,0]],[[2355,5131],[0,-1]],[[2355,5130],[-1,0]],[[2354,5130],[0,-1]],[[2354,5129],[-1,0]],[[2353,5129],[0,-1]],[[2353,5128],[-1,0],[0,1],[-1,0]],[[2351,5129],[0,1],[0,1],[0,-1],[0,-1]],[[2351,5129],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[2343,5128],[0,-1]],[[2343,5127],[-1,0],[1,0]],[[2343,5127],[0,-1],[-1,0]],[[2343,5128],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2342,5133],[0,1]],[[2342,5134],[-1,0]],[[2341,5134],[0,-1],[0,1]],[[2341,5134],[0,1],[0,1],[0,1],[0,1]],[[2341,5138],[0,1]],[[2341,5139],[-1,0]],[[2340,5139],[1,1],[-1,0]],[[2340,5140],[0,-1]],[[2340,5140],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1]],[[1609,6164],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[1609,6171],[0,1],[0,-1]],[[1609,6171],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1611,6178],[0,1]],[[1611,6178],[-1,0],[0,1]],[[1610,6179],[1,0]],[[1610,6179],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1]],[[1621,6148],[-1,0]],[[1620,6148],[0,-1]],[[1620,6147],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[1617,6143],[0,-1]],[[1617,6142],[-1,0]],[[1616,6142],[0,1],[0,-1]],[[1616,6142],[-1,0]],[[1615,6142],[0,-1]],[[1615,6141],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[1613,6148],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0]],[[1609,6157],[0,-1],[0,1]],[[1609,6157],[0,1],[0,1]],[[1609,6159],[0,1],[0,-1]],[[1609,6159],[-1,0]],[[1608,6159],[0,-1],[0,1]],[[1608,6159],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[1588,6070],[0,1],[0,2],[0,1],[1,0],[0,1],[1,1],[0,1]],[[1590,6077],[0,1]],[[1590,6078],[0,1],[0,1],[0,1]],[[1590,6081],[1,0]],[[1591,6081],[0,-1],[0,1]],[[1591,6081],[0,1]],[[1591,6082],[1,0],[-1,0]],[[1590,6081],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1590,6088],[0,1]],[[1590,6089],[-1,0]],[[1589,6089],[0,1]],[[1589,6090],[1,0]],[[1590,6090],[0,-1]],[[1590,6090],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1]],[[1594,6087],[0,1]],[[1594,6088],[1,0]],[[1595,6088],[0,1]],[[1595,6089],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[1597,6084],[0,-1]],[[1597,6083],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1]],[[1605,6091],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1606,6083],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1]],[[1608,6057],[-1,0],[1,0]],[[1608,6057],[0,-1],[0,-1],[0,-1],[0,-1]],[[1608,6053],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[1598,6053],[0,1]],[[1598,6054],[-1,0]],[[1597,6054],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1596,6059],[0,1]],[[1596,6060],[0,1]],[[1596,6061],[0,1]],[[1596,6062],[0,1],[-1,0],[0,-1],[-1,0]],[[1594,6062],[0,1],[0,-1]],[[1594,6062],[0,-1]],[[1594,6061],[-1,0]],[[1593,6061],[0,-1],[0,-1],[0,1],[0,1]],[[1593,6061],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[1590,6056],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1606,6083],[1,0],[1,0],[0,1],[0,2],[1,0]],[[1609,6086],[0,-1],[0,1]],[[1609,6086],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[1613,6086],[0,-1],[0,1]],[[1613,6086],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[1616,6089],[1,0],[-1,0]],[[1616,6089],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1]],[[1621,6090],[0,1],[0,-1]],[[1621,6090],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1623,6083],[0,-1]],[[1623,6082],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,4],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1]],[[1615,6013],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0]],[[1612,6016],[0,1]],[[1612,6017],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1609,6042],[0,1]],[[1609,6043],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[1598,6111],[1,0]],[[1599,6111],[0,1],[0,1],[0,1],[0,1]],[[1599,6115],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0]],[[1603,6123],[0,1],[0,-1]],[[1603,6123],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1609,6143],[0,-1],[0,1]],[[1609,6143],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0]],[[1605,6091],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1600,6104],[0,-1],[0,1]],[[1600,6104],[-1,0],[0,1],[0,1]],[[1599,6106],[-1,0],[1,0]],[[1599,6106],[0,1],[0,1],[0,1],[-1,0],[0,2]],[[2827,6424],[1,0],[0,1],[-1,0]],[[2827,6425],[0,-1]],[[2827,6425],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,2],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,2],[1,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[2838,6484],[1,0],[-1,0]],[[2838,6484],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2836,6489],[0,-1],[0,1]],[[2836,6489],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[2831,6509],[0,1]],[[2831,6510],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,4],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0]],[[2835,6544],[0,-1],[0,1]],[[2835,6544],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,4],[0,2],[0,2],[0,1]],[[2830,6578],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2887,6578],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2896,6562],[0,-1],[0,1]],[[2896,6562],[1,0]],[[2897,6562],[0,1]],[[2897,6562],[0,-1],[0,1]],[[2897,6563],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2902,6521],[0,-1],[0,1]],[[2902,6521],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2904,6517],[0,1],[0,-1]],[[2904,6517],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0]],[[2907,6513],[0,-1],[0,-1],[0,1],[0,1]],[[2907,6513],[1,0],[0,-1],[0,-1]],[[2908,6511],[0,-1],[0,1]],[[2908,6511],[1,0]],[[2909,6511],[0,1]],[[2909,6512],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2911,6503],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[2880,6505],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2853,6456],[-1,0]],[[2852,6456],[0,-1],[1,0],[0,1]],[[2853,6456],[1,0],[1,1],[1,0]],[[2856,6457],[0,1],[0,-1]],[[2856,6457],[1,0],[-1,0]],[[2856,6457],[0,-1]],[[2856,6456],[0,-1]],[[2856,6455],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1]],[[2845,6397],[0,-1]],[[2845,6396],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0]],[[2838,6377],[0,-1],[0,1]],[[2838,6377],[-1,0]],[[2837,6377],[0,1]],[[2837,6378],[1,0],[0,1],[-1,0],[0,-1]],[[2837,6377],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1]],[[2835,6378],[1,0],[0,1],[0,1]],[[2836,6380],[1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[2836,6380],[-1,0],[0,-1],[0,-1]],[[2835,6378],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[2830,6368],[0,-1],[0,1]],[[2825,6388],[-1,0]],[[2824,6388],[0,-1],[0,1]],[[2824,6388],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[2853,6366],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[2851,6375],[0,-1],[0,1]],[[2851,6375],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2849,6383],[0,1],[0,-1]],[[2849,6383],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1]],[[2847,6370],[0,-1]],[[2847,6369],[0,-1]],[[2847,6369],[1,0],[-1,0]],[[2847,6368],[0,-1],[0,-1],[-1,0]],[[2846,6366],[0,1],[0,-1]],[[2846,6366],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-2]],[[1547,6554],[0,1]],[[1547,6555],[-1,0],[1,1],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[1547,6559],[0,-1],[0,1]],[[1547,6559],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[1548,6564],[0,1],[0,-1]],[[1548,6564],[1,0],[0,1],[0,1],[0,1],[1,0]],[[1550,6567],[0,-1],[0,1]],[[1550,6567],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1551,6578],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1612,6234],[1,0]],[[1613,6234],[0,1],[0,-1]],[[1613,6234],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[1620,6275],[0,-1],[0,1]],[[1620,6275],[1,0]],[[1621,6275],[0,-1],[0,1]],[[1621,6275],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1]],[[1621,6302],[0,1],[0,-1]],[[1621,6302],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0]],[[1614,6289],[0,1],[0,-1]],[[1614,6289],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1612,6284],[0,-1]],[[1612,6283],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[1609,6268],[0,-1],[0,1]],[[1609,6268],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1]],[[1606,6265],[0,-1],[0,1]],[[1606,6265],[-1,0],[0,1],[-1,0],[0,-1]],[[1604,6265],[0,-1],[0,-1],[0,1],[0,1]],[[1604,6265],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0]],[[1589,6290],[0,1]],[[1589,6291],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,-1]],[[1593,6312],[0,-1],[0,1]],[[1593,6312],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0]],[[1594,6315],[0,-1],[0,1]],[[1594,6315],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[1593,6321],[0,1],[0,-1]],[[1593,6321],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[1568,6322],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1568,6344],[-1,0]],[[1567,6344],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[1566,6390],[0,1]],[[1566,6391],[0,1],[0,1],[0,1],[1,0]],[[1567,6394],[0,1]],[[1567,6395],[1,0],[0,1]],[[1568,6396],[-1,0],[1,0]],[[1568,6396],[0,1]],[[1568,6397],[0,1],[0,-1]],[[1568,6397],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[1574,6412],[0,-1],[0,1]],[[1574,6412],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1573,6426],[1,0]],[[1574,6426],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[1576,6447],[0,1]],[[1576,6448],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1577,6459],[0,1],[0,-1]],[[1577,6459],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1]],[[1580,6471],[0,1]],[[1580,6472],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1577,6500],[0,-1],[0,1]],[[1577,6500],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[1573,6490],[0,-1]],[[1573,6489],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[1571,6486],[0,-1],[0,1]],[[1571,6486],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[1567,6482],[0,1],[0,-1]],[[1567,6482],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1567,6474],[-1,0],[1,0]],[[1567,6474],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[1569,6464],[-1,0],[1,0]],[[1569,6464],[-1,-1]],[[1568,6463],[1,0],[-1,0]],[[1568,6463],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[1562,6470],[0,1],[0,-1]],[[1562,6470],[-1,0]],[[1561,6470],[0,1],[0,-1]],[[1561,6470],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[1555,6480],[0,-1],[0,1]],[[1555,6480],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1]],[[1552,6504],[1,0],[-1,0]],[[1552,6504],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[1547,6526],[-1,0],[1,0]],[[1547,6526],[0,1],[0,1],[0,1],[0,1]],[[1547,6530],[0,1],[0,-1]],[[1547,6530],[-1,0]],[[1546,6530],[0,1],[0,-1]],[[1546,6530],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1568,6316],[-1,0],[1,0]],[[1568,6316],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1611,6197],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0]],[[1608,6191],[0,-1],[0,-1],[0,-1]],[[1608,6188],[0,-1],[-1,0],[0,1],[1,0]],[[1608,6191],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[1605,6188],[0,-1],[0,1]],[[1605,6188],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1606,6182],[-1,0],[1,0]],[[1606,6182],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1]],[[1605,6172],[0,-1]],[[1605,6171],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1]],[[1608,6166],[-1,0],[1,0]],[[1608,6166],[0,-1],[0,1]],[[1608,6166],[1,0]],[[1609,6166],[0,1],[0,-1]],[[1609,6166],[0,-1]],[[1609,6165],[0,-1]],[[1599,6115],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0]],[[1594,6120],[0,1],[0,-1]],[[1594,6120],[-1,0],[-1,0]],[[1592,6120],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1591,6127],[0,1],[0,1]],[[1591,6129],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1588,6132],[0,1]],[[1588,6133],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1588,6144],[0,1]],[[1588,6145],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1]],[[1591,6174],[-1,0],[1,0]],[[1591,6174],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[1588,6193],[0,1]],[[1588,6194],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1585,6210],[0,1]],[[1585,6211],[-1,0]],[[1584,6211],[0,-1],[0,1]],[[1584,6211],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[1581,6223],[0,-1],[0,1]],[[1581,6223],[0,1],[0,1],[0,1],[-1,0]],[[1580,6226],[0,1],[0,1],[0,-1],[0,-1]],[[1580,6226],[-1,0]],[[1579,6226],[0,-1]],[[1579,6225],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[1578,6221],[0,-1],[0,1]],[[1578,6221],[-1,0]],[[1577,6221],[0,-1]],[[1577,6220],[0,-1],[0,-1]],[[1577,6218],[0,-1],[0,1]],[[1577,6218],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[1575,6222],[0,1]],[[1575,6223],[-1,0],[0,1]],[[1574,6224],[0,1]],[[1574,6225],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1573,6231],[0,1]],[[1573,6232],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[1571,6229],[0,1]],[[1571,6230],[0,1],[-1,0]],[[1570,6231],[0,-1],[0,1]],[[1570,6231],[0,1]],[[1570,6232],[-1,0]],[[1569,6232],[-1,0]],[[1568,6232],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[1567,6237],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1]],[[1567,6237],[-1,0],[0,-1],[0,-1]],[[1566,6235],[0,-1]],[[1566,6234],[-1,0]],[[1565,6234],[0,1]],[[1565,6235],[-1,0]],[[1564,6235],[0,-1]],[[1564,6235],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2406,5888],[0,1],[0,-1]],[[2406,5888],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0]],[[2417,5899],[0,1]],[[2417,5900],[0,1],[0,-1]],[[2417,5900],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[2414,5912],[0,-1],[0,1]],[[2414,5912],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2413,5917],[0,-1],[0,1]],[[2413,5917],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0]],[[2413,5921],[0,-1],[0,1]],[[2413,5921],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2414,5938],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[2481,5935],[-1,0]],[[2480,5935],[0,-1]],[[2480,5934],[1,0]],[[2481,5934],[0,1]],[[2481,5934],[0,-1],[0,-1],[0,-1],[0,-1]],[[2481,5930],[0,-1]],[[2481,5929],[0,-1]],[[2481,5928],[1,0]],[[2482,5928],[0,-1]],[[2482,5927],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2483,5921],[-1,0],[1,0]],[[2483,5921],[0,-1],[-1,0],[0,-1]],[[2482,5919],[1,0],[-1,0]],[[2482,5919],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2483,5914],[-1,0],[1,0]],[[2483,5914],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2480,5905],[0,-1]],[[2480,5904],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0]],[[2483,5809],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2481,5800],[0,-1]],[[2481,5799],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0]],[[2482,5788],[0,1],[0,-1]],[[2482,5788],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2476,5764],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2476,5748],[0,-1]],[[2476,5747],[0,-1],[0,1]],[[2476,5747],[-1,0]],[[2475,5747],[0,1],[0,-1]],[[2475,5747],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2471,5740],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1]],[[2470,5734],[0,1],[0,1]],[[2470,5736],[1,1],[0,1],[0,1],[0,1]],[[2471,5740],[-1,0]],[[2470,5740],[0,1],[0,-1]],[[2470,5740],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1]],[[2470,5734],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0]],[[2471,5729],[0,1],[0,-1]],[[2471,5729],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0]],[[2469,5728],[0,1],[0,-1]],[[2469,5728],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1]],[[2466,5691],[0,-1],[0,-1],[0,-1]],[[2466,5688],[0,-1],[0,-1],[0,-1]],[[2466,5685],[0,-1],[0,1]],[[2466,5685],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[2466,5691],[-1,0],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2461,5673],[0,-1],[0,1]],[[2461,5673],[-1,0],[0,1],[0,1],[0,1],[-1,0]],[[2459,5676],[0,1],[0,-1]],[[2459,5676],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2460,5670],[0,-1]],[[2460,5669],[1,0]],[[2461,5669],[0,1],[0,-1]],[[2461,5669],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[2457,5647],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[2457,5647],[-1,0]],[[2456,5647],[0,1],[0,-1]],[[2456,5647],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2456,5621],[0,-1],[0,1]],[[2456,5621],[-1,1],[-1,0]],[[2454,5622],[0,-1],[0,1]],[[2454,5622],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0]],[[2455,5614],[0,1],[0,-1]],[[2455,5614],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2452,5599],[0,1],[0,-1]],[[2452,5599],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[2452,5590],[0,-1]],[[2452,5589],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2452,5589],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[2454,5584],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2452,5581],[0,-1]],[[2452,5580],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0]],[[2454,5577],[0,1]],[[2454,5578],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2454,5584],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2454,5577],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2454,5562],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1]],[[2454,5562],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1]],[[2444,5533],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-2],[1,0],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,3],[0,2],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[-1,0],[-1,0]],[[2428,5705],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[0,1],[1,0]],[[2427,5772],[0,1],[0,-1]],[[2427,5772],[1,0]],[[2428,5772],[0,1]],[[2428,5773],[1,0],[0,-1]],[[2429,5772],[0,-1]],[[2429,5771],[1,0]],[[2430,5771],[0,-1]],[[2430,5770],[0,-1],[0,1]],[[2430,5770],[1,0]],[[2431,5770],[0,-1]],[[2431,5769],[0,-1],[1,0]],[[2432,5768],[0,-1]],[[2432,5767],[1,0],[0,1],[1,0]],[[2434,5768],[0,-1],[0,1]],[[2434,5768],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[2437,5771],[0,-1],[0,1]],[[2437,5771],[0,1],[0,-1]],[[2437,5771],[1,0]],[[2438,5771],[0,-1]],[[2438,5770],[1,0]],[[2439,5770],[0,-1]],[[2439,5769],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0]],[[2444,5775],[0,1]],[[2444,5775],[0,-1],[0,1]],[[2444,5776],[1,0],[0,1]],[[2444,5776],[0,1],[1,0]],[[2445,5777],[0,1],[-1,1],[0,1]],[[2444,5780],[0,1],[0,-1]],[[2444,5780],[1,0],[0,1],[0,1],[-1,0],[0,1]],[[2444,5783],[0,1],[0,-1]],[[2444,5783],[1,0],[0,1],[0,1]],[[2445,5785],[0,1]],[[2445,5786],[0,1],[0,1],[0,1],[1,0]],[[2446,5789],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1]],[[2446,5789],[0,1],[0,1],[0,1],[0,1]],[[2446,5793],[0,1],[0,1]],[[2446,5795],[-1,0],[0,1],[0,1],[0,1]],[[2445,5798],[0,1],[0,1]],[[2445,5800],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1]],[[2445,5806],[0,1]],[[2445,5807],[0,1],[0,1],[1,0]],[[2446,5809],[0,-1],[0,1]],[[2446,5809],[0,1],[0,1],[1,0],[0,1]],[[2447,5812],[0,1]],[[2447,5813],[-1,0],[1,1]],[[2447,5814],[0,-1]],[[2447,5814],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2434,5817],[0,-1]],[[2434,5816],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2406,5848],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[1,1],[0,1],[0,4],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1]],[[1954,6286],[0,1]],[[1954,6287],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,5],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1]],[[2034,6461],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[2035,6449],[1,0]],[[2036,6449],[0,-1],[0,-1]],[[2036,6447],[-1,0],[1,0]],[[2036,6447],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[2042,6406],[0,-1],[0,1]],[[2042,6406],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[2040,6387],[0,-1],[0,1]],[[2040,6387],[0,1],[-1,0]],[[2039,6388],[0,-1],[0,1]],[[2039,6388],[0,1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2031,6387],[0,-1]],[[2031,6386],[0,-1],[0,-1]],[[2031,6384],[0,-1],[0,1]],[[2031,6384],[-1,0],[0,1],[0,1],[-1,0]],[[2029,6386],[0,1],[0,-1]],[[2029,6386],[-1,0]],[[2028,6386],[0,-1],[0,1]],[[2028,6386],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1]],[[2025,6391],[0,-1]],[[2025,6390],[-1,0],[0,-1]],[[2024,6389],[0,-1],[0,1]],[[2024,6389],[-1,0]],[[2023,6389],[0,1],[0,-1]],[[2023,6389],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1]],[[2021,6395],[0,1],[0,1],[0,-2]],[[2021,6395],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[2023,6316],[0,1],[0,-1]],[[2023,6316],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[2025,6301],[1,0]],[[2026,6301],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[2027,6294],[1,0],[-1,0]],[[2027,6294],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2024,6281],[0,-1]],[[2024,6280],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0]],[[2063,5996],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[1954,5997],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1]],[[2491,6768],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[2492,6764],[0,-1]],[[2492,6764],[1,-1],[-1,0]],[[2492,6763],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0]],[[2495,6759],[0,1],[0,-1]],[[2495,6759],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[2512,6727],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[1,0],[1,0],[1,0]],[[2513,6635],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2473,6637],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[1551,6578],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0]],[[1529,6577],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,2],[1,0],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[1,2],[0,1],[0,1],[1,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,3],[0,2],[0,2],[0,1],[0,2],[0,1],[1,2],[0,2],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,6],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[0,2],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2618,6389],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[2597,6329],[0,-1]],[[2597,6329],[-1,0]],[[2596,6329],[0,-1],[0,-1],[0,1],[0,1]],[[2596,6329],[0,1],[-1,0]],[[2595,6330],[0,1],[0,-1]],[[2595,6330],[0,-1],[-1,0]],[[2594,6329],[0,1],[0,-1]],[[2594,6329],[0,-1],[-1,0]],[[2593,6328],[0,-1]],[[2593,6328],[-1,0]],[[2593,6327],[-1,0]],[[2592,6327],[0,1]],[[2592,6327],[-1,0],[0,1]],[[2591,6328],[1,0]],[[2591,6328],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[2590,6332],[0,-1],[0,1]],[[2590,6332],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[2587,6325],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[1801,6992],[1,0]],[[1802,6992],[0,1],[0,-1]],[[1802,6992],[0,-1],[1,0]],[[1803,6991],[0,1],[0,-1]],[[1803,6991],[1,1],[0,-1]],[[1804,6991],[-1,0]],[[1804,6991],[0,-1]],[[1804,6990],[-1,0],[1,0]],[[1804,6990],[0,-1]],[[1804,6989],[0,-1],[0,-1],[0,-1],[1,0]],[[1805,6986],[0,-1]],[[1805,6985],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,1]],[[1818,7007],[0,-1]],[[1818,7006],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1820,6998],[0,1],[0,-1]],[[1820,6998],[1,0]],[[1821,6998],[0,-1]],[[1821,6997],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1828,6944],[0,-1]],[[1828,6943],[0,-1],[0,-1],[1,-1]],[[1829,6940],[0,-1],[0,1]],[[1829,6940],[1,-1]],[[1830,6939],[0,1],[0,-1]],[[1830,6939],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[1831,6934],[0,-1],[0,1]],[[1831,6934],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[1831,6921],[0,-1]],[[1831,6920],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[1833,6907],[0,1],[0,-1]],[[1833,6907],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[1835,6903],[-1,0],[0,-1],[1,0]],[[1835,6902],[0,-1],[0,1]],[[1835,6902],[0,1]],[[1835,6903],[1,0],[0,1],[0,1],[1,0]],[[1837,6905],[0,1],[0,-1]],[[1837,6905],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[1844,6868],[-1,0],[1,0]],[[1844,6868],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[1847,6857],[0,-1]],[[1847,6856],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1]],[[1852,6868],[0,1],[0,-1]],[[1852,6868],[1,0],[0,-1],[1,0],[1,0]],[[1855,6867],[0,-1],[0,1]],[[1855,6867],[1,0],[0,-1],[1,0]],[[1857,6866],[0,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment